Disable linter on generated code (#363)

This commit is contained in:
Félix Malfait
2023-06-23 08:43:41 -07:00
committed by GitHub
parent ceaf482f62
commit 1c7980b270
976 changed files with 14917 additions and 15292 deletions

View File

@ -5,30 +5,31 @@ import { HideField } from '@nestjs/graphql';
@ObjectType()
export class PipelineProgressMinAggregate {
@Field(() => String, { nullable: true })
id?: string;
@Field(() => Date, { nullable: true })
createdAt?: Date | string;
@Field(() => String, {nullable:true})
id?: string;
@Field(() => Date, { nullable: true })
updatedAt?: Date | string;
@Field(() => Date, {nullable:true})
createdAt?: Date | string;
@Field(() => Date, { nullable: true })
deletedAt?: Date | string;
@Field(() => Date, {nullable:true})
updatedAt?: Date | string;
@Field(() => String, { nullable: true })
pipelineId?: string;
@Field(() => Date, {nullable:true})
deletedAt?: Date | string;
@Field(() => String, { nullable: true })
pipelineStageId?: string;
@Field(() => String, {nullable:true})
pipelineId?: string;
@Field(() => PipelineProgressableType, { nullable: true })
progressableType?: keyof typeof PipelineProgressableType;
@Field(() => String, {nullable:true})
pipelineStageId?: string;
@Field(() => String, { nullable: true })
progressableId?: string;
@Field(() => PipelineProgressableType, {nullable:true})
progressableType?: keyof typeof PipelineProgressableType;
@HideField()
workspaceId?: string;
@Field(() => String, {nullable:true})
progressableId?: string;
@HideField()
workspaceId?: string;
}