asteroid-odyssey 1.6.434 → 1.6.435

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
@@ -964,6 +964,14 @@ type AgentsExecutionListItem = {
964
964
  * Per-execution runtime options (e.g. shared storage key)
965
965
  */
966
966
  executionOptions?: AgentsAgentExecutionOptions;
967
+ /**
968
+ * Whether this execution has been rerun at least once
969
+ */
970
+ hasBeenRerun: boolean;
971
+ /**
972
+ * ID of the execution this was rerun from, if applicable
973
+ */
974
+ parentExecutionId?: CommonUuid;
967
975
  };
968
976
  type AgentsExecutionNavToCompletedDetails = {
969
977
  actionName: 'nav_to';
@@ -2248,6 +2256,10 @@ type AgentsWorkflowExecuteWorkflowRequest = {
2248
2256
  * Per-execution runtime options that override or extend the agent's default settings.
2249
2257
  */
2250
2258
  executionOptions?: AgentsAgentExecutionOptions;
2259
+ /**
2260
+ * ID of the execution this is a rerun of. Sets parent_execution_id on the new execution and has_been_rerun on the parent.
2261
+ */
2262
+ parentExecutionId?: CommonUuid;
2251
2263
  };
2252
2264
  /**
2253
2265
  * Response after starting workflow execution
package/dist/index.d.ts CHANGED
@@ -964,6 +964,14 @@ type AgentsExecutionListItem = {
964
964
  * Per-execution runtime options (e.g. shared storage key)
965
965
  */
966
966
  executionOptions?: AgentsAgentExecutionOptions;
967
+ /**
968
+ * Whether this execution has been rerun at least once
969
+ */
970
+ hasBeenRerun: boolean;
971
+ /**
972
+ * ID of the execution this was rerun from, if applicable
973
+ */
974
+ parentExecutionId?: CommonUuid;
967
975
  };
968
976
  type AgentsExecutionNavToCompletedDetails = {
969
977
  actionName: 'nav_to';
@@ -2248,6 +2256,10 @@ type AgentsWorkflowExecuteWorkflowRequest = {
2248
2256
  * Per-execution runtime options that override or extend the agent's default settings.
2249
2257
  */
2250
2258
  executionOptions?: AgentsAgentExecutionOptions;
2259
+ /**
2260
+ * ID of the execution this is a rerun of. Sets parent_execution_id on the new execution and has_been_rerun on the parent.
2261
+ */
2262
+ parentExecutionId?: CommonUuid;
2251
2263
  };
2252
2264
  /**
2253
2265
  * Response after starting workflow execution
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "asteroid-odyssey",
3
- "version": "1.6.434",
3
+ "version": "1.6.435",
4
4
  "description": "SDK for interacting with Asteroid Agents API",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",