Spaces:
Build error
Build error
twenty / packages /twenty-server /src /engine /metadata-modules /front-component /dtos /update-front-component.input.ts
| import { Field, HideField, InputType } from '@nestjs/graphql'; | |
| import { Type } from 'class-transformer'; | |
| import { | |
| IsNotEmpty, | |
| IsOptional, | |
| IsString, | |
| IsUUID, | |
| ValidateNested, | |
| } from 'class-validator'; | |
| import { UUIDScalarType } from 'src/engine/api/graphql/workspace-schema-builder/graphql-types/scalars'; | |
| () | |
| export class UpdateFrontComponentInputUpdates { | |
| () | |
| () | |
| ({ nullable: true }) | |
| name?: string; | |
| () | |
| () | |
| ({ nullable: true }) | |
| description?: string; | |
| () | |
| () | |
| () | |
| builtComponentChecksum?: string; | |
| } | |
| () | |
| export class UpdateFrontComponentInput { | |
| () | |
| () | |
| (() => UUIDScalarType, { | |
| description: 'The id of the front component to update', | |
| }) | |
| id: string; | |
| (() => UpdateFrontComponentInputUpdates) | |
| () | |
| (() => UpdateFrontComponentInputUpdates, { | |
| description: 'The front component fields to update', | |
| }) | |
| update: UpdateFrontComponentInputUpdates; | |
| } | |