File size: 414 Bytes
d9494a5
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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' },
      },
    }),
  };