twenty / packages /twenty-shared /src /logic-function /constants /SeedWorkflowActionTriggerSettings.ts
Jules
Initial clean CRM deployment with prebuilt assets
d9494a5
Raw
History Blame Contribute Delete
414 Bytes
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' },
},
}),
};