@output.ai/cli 0.2.3 → 0.2.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -37,6 +37,8 @@ export type PostWorkflowRunBody = {
37
37
  workflowName: string;
38
38
  /** The payload to send to the workflow */
39
39
  input: unknown;
40
+ /** (Optional) The workflowId to use. Must be unique */
41
+ workflowId?: string;
40
42
  /** The name of the task queue to send the workflow to */
41
43
  taskQueue?: string;
42
44
  };
@@ -59,6 +61,8 @@ export type PostWorkflowStartBody = {
59
61
  workflowName: string;
60
62
  /** The payload to send to the workflow */
61
63
  input: unknown;
64
+ /** (Optional) The workflowId to use. Must be unique */
65
+ workflowId?: string;
62
66
  /** The name of the task queue to send the workflow to */
63
67
  taskQueue?: string;
64
68
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@output.ai/cli",
3
- "version": "0.2.3",
3
+ "version": "0.2.4",
4
4
  "description": "CLI for Output.ai workflow generation",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",