asteroid-odyssey 1.6.853 → 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 +5 -13
- package/dist/index.d.ts +5 -13
- package/package.json +1 -1
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.
|
|
@@ -1871,8 +1860,7 @@ type AgentsGraphModelsTransitionsPropertiesOutcomeSuccessProperties = {
|
|
|
1871
1860
|
type AgentsGraphModelsTransitionsPropertiesSelectorProperties = {
|
|
1872
1861
|
type: 'selector';
|
|
1873
1862
|
name: string;
|
|
1874
|
-
|
|
1875
|
-
selectors?: Array<string>;
|
|
1863
|
+
selectors: Array<string>;
|
|
1876
1864
|
};
|
|
1877
1865
|
type AgentsGraphModelsTransitionsTransition = {
|
|
1878
1866
|
id: CommonUuid;
|
|
@@ -1880,6 +1868,10 @@ type AgentsGraphModelsTransitionsTransition = {
|
|
|
1880
1868
|
to: CommonUuid;
|
|
1881
1869
|
type: AgentsGraphModelsTransitionsTransitionType;
|
|
1882
1870
|
require_confirmation: boolean;
|
|
1871
|
+
description?: string;
|
|
1872
|
+
schema?: {
|
|
1873
|
+
[key: string]: unknown;
|
|
1874
|
+
};
|
|
1883
1875
|
properties: AgentsGraphModelsTransitionsTransitionPropertiesUnion;
|
|
1884
1876
|
};
|
|
1885
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.
|
|
@@ -1871,8 +1860,7 @@ type AgentsGraphModelsTransitionsPropertiesOutcomeSuccessProperties = {
|
|
|
1871
1860
|
type AgentsGraphModelsTransitionsPropertiesSelectorProperties = {
|
|
1872
1861
|
type: 'selector';
|
|
1873
1862
|
name: string;
|
|
1874
|
-
|
|
1875
|
-
selectors?: Array<string>;
|
|
1863
|
+
selectors: Array<string>;
|
|
1876
1864
|
};
|
|
1877
1865
|
type AgentsGraphModelsTransitionsTransition = {
|
|
1878
1866
|
id: CommonUuid;
|
|
@@ -1880,6 +1868,10 @@ type AgentsGraphModelsTransitionsTransition = {
|
|
|
1880
1868
|
to: CommonUuid;
|
|
1881
1869
|
type: AgentsGraphModelsTransitionsTransitionType;
|
|
1882
1870
|
require_confirmation: boolean;
|
|
1871
|
+
description?: string;
|
|
1872
|
+
schema?: {
|
|
1873
|
+
[key: string]: unknown;
|
|
1874
|
+
};
|
|
1883
1875
|
properties: AgentsGraphModelsTransitionsTransitionPropertiesUnion;
|
|
1884
1876
|
};
|
|
1885
1877
|
type AgentsGraphModelsTransitionsTransitionPropertiesUnion = ({
|