(data: {
workflowId: string;
[key: string]: any;
})
| 50 | }; |
| 51 | |
| 52 | export const sendWorkflowExecution = async (data: { |
| 53 | workflowId: string; |
| 54 | [key: string]: any; |
| 55 | }) => { |
| 56 | return inngest.send({ |
| 57 | name: "workflows/execute.workflow", |
| 58 | data, |
| 59 | id: createId(), |
| 60 | }); |
| 61 | }; |
no outgoing calls
no test coverage detected