asteroid-odyssey 1.0.23 → 1.0.24

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.
@@ -55,7 +55,7 @@ export type CreateWorkflowRequest = {
55
55
  * Used to assign the workflow to a user. Do not use this field.
56
56
  */
57
57
  user_id?: string;
58
- result_schema: ResultSchema;
58
+ result_schema?: ResultSchema;
59
59
  /**
60
60
  * Field for custom configuration. Do not use.
61
61
  */
@@ -66,7 +66,7 @@ export type CreateWorkflowRequest = {
66
66
  * The prompts for the workflow. They can have variables in them. They will be merged with the dynamic data passed when the workflow is executed.
67
67
  */
68
68
  prompts: Array<string>;
69
- workflow_options: UnresolvedWorkflowOptions;
69
+ workflow_options?: UnresolvedWorkflowOptions;
70
70
  /**
71
71
  * The Language Model Provider for the Workflow
72
72
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "asteroid-odyssey",
3
- "version": "v1.0.23",
3
+ "version": "v1.0.24",
4
4
  "description": "SDK for interacting with Asteroid Agents API",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",