Spaces:
Build error
Build error
twenty / packages /twenty-server /src /engine /metadata-modules /front-component /dtos /create-front-component.input.ts
| import { Field, HideField, InputType } from '@nestjs/graphql'; | |
| import { | |
| IsBoolean, | |
| IsNotEmpty, | |
| IsOptional, | |
| IsString, | |
| IsUUID, | |
| } from 'class-validator'; | |
| import { UUIDScalarType } from 'src/engine/api/graphql/workspace-schema-builder/graphql-types/scalars'; | |
| () | |
| export class CreateFrontComponentInput { | |
| () | |
| () | |
| (() => UUIDScalarType, { nullable: true }) | |
| id?: string; | |
| () | |
| () | |
| () | |
| universalIdentifier?: string; | |
| () | |
| () | |
| () | |
| isHeadless?: boolean; | |
| () | |
| () | |
| () | |
| name?: string; | |
| () | |
| () | |
| ({ nullable: true }) | |
| description?: string; | |
| () | |
| () | |
| () | |
| sourceComponentPath: string; | |
| () | |
| () | |
| () | |
| builtComponentPath: string; | |
| () | |
| () | |
| componentName: string; | |
| () | |
| () | |
| () | |
| builtComponentChecksum: string; | |
| } | |