* Add card rows * WIP - add amount * Refactor board state to separate pipeline progress data and company data * Add migration and generated code * Pass pipeline progress properties to the comapny card * WIP-editable * Enable amount edition * Nits * Remove useless import * Fix empty board bug * Use cell for editable values on company card * Add fields * Enable edition for closeDate * Add dummy edits for recurring and probability * Nits * remove useless fields * Nits * Fix user provider * Add generated code * Fix nits, reorder migrations, fix login * Fix tests * Fix lint
41 lines
881 B
TypeScript
41 lines
881 B
TypeScript
import { Field } from '@nestjs/graphql';
|
|
import { InputType } from '@nestjs/graphql';
|
|
import { HideField } from '@nestjs/graphql';
|
|
|
|
@InputType()
|
|
export class PipelineProgressMaxAggregateInput {
|
|
|
|
@Field(() => Boolean, {nullable:true})
|
|
id?: true;
|
|
|
|
@Field(() => Boolean, {nullable:true})
|
|
amount?: true;
|
|
|
|
@Field(() => Boolean, {nullable:true})
|
|
closeDate?: true;
|
|
|
|
@Field(() => Boolean, {nullable:true})
|
|
pipelineId?: true;
|
|
|
|
@Field(() => Boolean, {nullable:true})
|
|
pipelineStageId?: true;
|
|
|
|
@Field(() => Boolean, {nullable:true})
|
|
progressableType?: true;
|
|
|
|
@Field(() => Boolean, {nullable:true})
|
|
progressableId?: true;
|
|
|
|
@HideField()
|
|
workspaceId?: true;
|
|
|
|
@HideField()
|
|
deletedAt?: true;
|
|
|
|
@Field(() => Boolean, {nullable:true})
|
|
createdAt?: true;
|
|
|
|
@Field(() => Boolean, {nullable:true})
|
|
updatedAt?: true;
|
|
}
|