Files
twenty/packages/twenty-server/src/engine/metadata-modules/logic-function-layer/dtos/create-logic-function-layer.input.ts
T
2026-02-03 12:11:10 +01:00

18 lines
434 B
TypeScript

import { ArgsType, Field } from '@nestjs/graphql';
import { IsString } from 'class-validator';
import GraphQLJSON from 'graphql-type-json';
@ArgsType()
export class CreateLogicFunctionLayerInput {
@Field(() => GraphQLJSON, { nullable: false })
packageJsonChecksum: string;
@IsString()
@Field(() => String, { nullable: false })
yarnLockChecksum: string;
@Field(() => String)
applicationUniversalIdentifier: string;
}