Spaces:
Build error
Build error
twenty / packages /twenty-shared /src /logic-function /constants /SeedWorkflowActionTriggerSettings.ts
| import { type WorkflowActionTriggerSettings } from '@/application'; | |
| import { jsonSchemaToInputSchema } from '@/logic-function/json-schema-to-input-schema'; | |
| export const SEED_WORKFLOW_ACTION_TRIGGER_SETTINGS: WorkflowActionTriggerSettings = | |
| { | |
| inputSchema: jsonSchemaToInputSchema({ | |
| type: 'object', | |
| properties: { | |
| a: { type: 'string' }, | |
| b: { type: 'number' }, | |
| }, | |
| }), | |
| }; | |