asteroid-odyssey 1.6.855 → 1.6.858

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.
package/dist/index.d.mts CHANGED
@@ -1709,17 +1709,6 @@ type AgentsGraphModelsNodesPropertiesIrisProperties = {
1709
1709
  * IDs of preceding nodes whose outputs are excluded from this node's execution data.
1710
1710
  */
1711
1711
  excluded_execution_data_node_ids?: Array<string>;
1712
- /**
1713
- * Optional custom JSON schema for the node's structured output. When
1714
- * present (non-empty), the `prepare_handoff` tool's free-form `variables`
1715
- * field is replaced by a required `output` field matching this schema, and
1716
- * the resulting object is stored as the node's `output` variable. When
1717
- * absent, the node emits free-form key/value variables as before. Validated
1718
- * against the same OpenAI structured-output restrictions as output nodes.
1719
- */
1720
- schema?: {
1721
- [key: string]: unknown;
1722
- };
1723
1712
  /**
1724
1713
  * Relative path (within the node's own shared directory) of the
1725
1714
  * Playwright script that the runtime should execute before the LLM.
@@ -1879,6 +1868,10 @@ type AgentsGraphModelsTransitionsTransition = {
1879
1868
  to: CommonUuid;
1880
1869
  type: AgentsGraphModelsTransitionsTransitionType;
1881
1870
  require_confirmation: boolean;
1871
+ description?: string;
1872
+ schema?: {
1873
+ [key: string]: unknown;
1874
+ };
1882
1875
  properties: AgentsGraphModelsTransitionsTransitionPropertiesUnion;
1883
1876
  };
1884
1877
  type AgentsGraphModelsTransitionsTransitionPropertiesUnion = ({
package/dist/index.d.ts CHANGED
@@ -1709,17 +1709,6 @@ type AgentsGraphModelsNodesPropertiesIrisProperties = {
1709
1709
  * IDs of preceding nodes whose outputs are excluded from this node's execution data.
1710
1710
  */
1711
1711
  excluded_execution_data_node_ids?: Array<string>;
1712
- /**
1713
- * Optional custom JSON schema for the node's structured output. When
1714
- * present (non-empty), the `prepare_handoff` tool's free-form `variables`
1715
- * field is replaced by a required `output` field matching this schema, and
1716
- * the resulting object is stored as the node's `output` variable. When
1717
- * absent, the node emits free-form key/value variables as before. Validated
1718
- * against the same OpenAI structured-output restrictions as output nodes.
1719
- */
1720
- schema?: {
1721
- [key: string]: unknown;
1722
- };
1723
1712
  /**
1724
1713
  * Relative path (within the node's own shared directory) of the
1725
1714
  * Playwright script that the runtime should execute before the LLM.
@@ -1879,6 +1868,10 @@ type AgentsGraphModelsTransitionsTransition = {
1879
1868
  to: CommonUuid;
1880
1869
  type: AgentsGraphModelsTransitionsTransitionType;
1881
1870
  require_confirmation: boolean;
1871
+ description?: string;
1872
+ schema?: {
1873
+ [key: string]: unknown;
1874
+ };
1882
1875
  properties: AgentsGraphModelsTransitionsTransitionPropertiesUnion;
1883
1876
  };
1884
1877
  type AgentsGraphModelsTransitionsTransitionPropertiesUnion = ({
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "asteroid-odyssey",
3
- "version": "1.6.855",
3
+ "version": "1.6.858",
4
4
  "description": "SDK for interacting with Asteroid Agents API",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",