Spaces:
Build error
Build error
twenty / packages /twenty-server /src /engine /metadata-modules /message-folder /dtos /update-message-folder.input.ts
| import { Field, InputType } from '@nestjs/graphql'; | |
| import { Type } from 'class-transformer'; | |
| import { IsBoolean, IsNotEmpty, IsUUID, ValidateNested } from 'class-validator'; | |
| import { UUIDScalarType } from 'src/engine/api/graphql/workspace-schema-builder/graphql-types/scalars'; | |
| () | |
| export class UpdateMessageFolderInputUpdates { | |
| () | |
| () | |
| isSynced: boolean; | |
| } | |
| () | |
| export class UpdateMessageFolderInput { | |
| () | |
| () | |
| (() => UUIDScalarType) | |
| id: string; | |
| (() => UpdateMessageFolderInputUpdates) | |
| () | |
| (() => UpdateMessageFolderInputUpdates) | |
| update: UpdateMessageFolderInputUpdates; | |
| } | |
| () | |
| export class UpdateMessageFoldersInput { | |
| ('4', { each: true }) | |
| ({ each: true }) | |
| (() => [UUIDScalarType]) | |
| ids: string[]; | |
| (() => UpdateMessageFolderInputUpdates) | |
| () | |
| (() => UpdateMessageFolderInputUpdates) | |
| update: UpdateMessageFolderInputUpdates; | |
| } | |