asteroid-odyssey 1.7.261 → 1.7.269
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 -3
- package/dist/index.d.ts +5 -3
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -747,9 +747,7 @@ type AgentsGraphModelsNodesPropertiesIrisProperties = {
|
|
|
747
747
|
type: 'iris';
|
|
748
748
|
instructions: string;
|
|
749
749
|
capabilities?: AgentsGraphModelsNodesPropertiesNodeCapabilities;
|
|
750
|
-
snapshot_compression: boolean;
|
|
751
750
|
compression_strategies?: Array<string>;
|
|
752
|
-
temperature: number;
|
|
753
751
|
playwright_script_properties?: AgentsGraphModelsNodesPropertiesIrisPlaywrightScriptProperties;
|
|
754
752
|
input_schema?: {
|
|
755
753
|
[key: string]: unknown;
|
|
@@ -1838,7 +1836,7 @@ type AgentsExecutionTerminalPayload = {
|
|
|
1838
1836
|
reason: 'unsubscribe' | 'complete' | 'error';
|
|
1839
1837
|
message?: string;
|
|
1840
1838
|
};
|
|
1841
|
-
type AgentsExecutionStatus = 'starting' | 'running' | 'paused' | 'awaiting_confirmation' | 'completed' | 'cancelled' | 'failed' | 'paused_by_agent';
|
|
1839
|
+
type AgentsExecutionStatus = 'queued' | 'starting' | 'running' | 'paused' | 'awaiting_confirmation' | 'completed' | 'cancelled' | 'failed' | 'paused_by_agent';
|
|
1842
1840
|
/**
|
|
1843
1841
|
* Fields that can be used for sorting executions
|
|
1844
1842
|
*/
|
|
@@ -2182,6 +2180,10 @@ type AgentsExecutionListItem = {
|
|
|
2182
2180
|
* Live view URL for debugging (if an environment is active and execution is running)
|
|
2183
2181
|
*/
|
|
2184
2182
|
liveViewUrl?: string;
|
|
2183
|
+
/**
|
|
2184
|
+
* Deep link to this execution in the Asteroid platform UI
|
|
2185
|
+
*/
|
|
2186
|
+
platformUrl?: string;
|
|
2185
2187
|
/**
|
|
2186
2188
|
* Deprecated: Use 'recordingUrl' instead.
|
|
2187
2189
|
*
|
package/dist/index.d.ts
CHANGED
|
@@ -747,9 +747,7 @@ type AgentsGraphModelsNodesPropertiesIrisProperties = {
|
|
|
747
747
|
type: 'iris';
|
|
748
748
|
instructions: string;
|
|
749
749
|
capabilities?: AgentsGraphModelsNodesPropertiesNodeCapabilities;
|
|
750
|
-
snapshot_compression: boolean;
|
|
751
750
|
compression_strategies?: Array<string>;
|
|
752
|
-
temperature: number;
|
|
753
751
|
playwright_script_properties?: AgentsGraphModelsNodesPropertiesIrisPlaywrightScriptProperties;
|
|
754
752
|
input_schema?: {
|
|
755
753
|
[key: string]: unknown;
|
|
@@ -1838,7 +1836,7 @@ type AgentsExecutionTerminalPayload = {
|
|
|
1838
1836
|
reason: 'unsubscribe' | 'complete' | 'error';
|
|
1839
1837
|
message?: string;
|
|
1840
1838
|
};
|
|
1841
|
-
type AgentsExecutionStatus = 'starting' | 'running' | 'paused' | 'awaiting_confirmation' | 'completed' | 'cancelled' | 'failed' | 'paused_by_agent';
|
|
1839
|
+
type AgentsExecutionStatus = 'queued' | 'starting' | 'running' | 'paused' | 'awaiting_confirmation' | 'completed' | 'cancelled' | 'failed' | 'paused_by_agent';
|
|
1842
1840
|
/**
|
|
1843
1841
|
* Fields that can be used for sorting executions
|
|
1844
1842
|
*/
|
|
@@ -2182,6 +2180,10 @@ type AgentsExecutionListItem = {
|
|
|
2182
2180
|
* Live view URL for debugging (if an environment is active and execution is running)
|
|
2183
2181
|
*/
|
|
2184
2182
|
liveViewUrl?: string;
|
|
2183
|
+
/**
|
|
2184
|
+
* Deep link to this execution in the Asteroid platform UI
|
|
2185
|
+
*/
|
|
2186
|
+
platformUrl?: string;
|
|
2185
2187
|
/**
|
|
2186
2188
|
* Deprecated: Use 'recordingUrl' instead.
|
|
2187
2189
|
*
|