asteroid-odyssey 1.7.270 → 1.7.274

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
@@ -784,7 +784,8 @@ type AgentsGraphModelsNodesPropertiesIrisProperties = {
784
784
  * runtime substitutes with the execution's `variant_key` so a single
785
785
  * workflow can target per-tenant script trees (e.g.
786
786
  * `{{variant_key}}/scripts/main.js` →
787
- * `shared/<node-key>/<variant-key>/scripts/main.js`).
787
+ * `shared/<node-key>/<variant-key>/scripts/main.js`). Requires the
788
+ * agent to have `variant_mode` enabled.
788
789
  */
789
790
  script_filepath?: string;
790
791
  /**
@@ -916,7 +917,7 @@ type AgentsWorkflowExecuteWorkflowRequest = {
916
917
  */
917
918
  type AgentsAgentExecutionOptions = {
918
919
  /**
919
- * Identifies which variant this execution is for, scoping its shared files and scripts to a per-variant subdirectory under each node's shared folder. It does not change which agent or workflow runs. Normalised to a filesystem-safe slug by the server.
920
+ * Identifies which variant this execution is for, scoping its shared files and scripts to a per-variant subdirectory under each node's shared folder. It does not change which agent or workflow runs. Normalised to a filesystem-safe slug by the server. Requires the agent to have `variant_mode` enabled, and a variant-mode agent requires it on every execution.
920
921
  */
921
922
  variantKey?: string;
922
923
  /**
package/dist/index.d.ts CHANGED
@@ -784,7 +784,8 @@ type AgentsGraphModelsNodesPropertiesIrisProperties = {
784
784
  * runtime substitutes with the execution's `variant_key` so a single
785
785
  * workflow can target per-tenant script trees (e.g.
786
786
  * `{{variant_key}}/scripts/main.js` →
787
- * `shared/<node-key>/<variant-key>/scripts/main.js`).
787
+ * `shared/<node-key>/<variant-key>/scripts/main.js`). Requires the
788
+ * agent to have `variant_mode` enabled.
788
789
  */
789
790
  script_filepath?: string;
790
791
  /**
@@ -916,7 +917,7 @@ type AgentsWorkflowExecuteWorkflowRequest = {
916
917
  */
917
918
  type AgentsAgentExecutionOptions = {
918
919
  /**
919
- * Identifies which variant this execution is for, scoping its shared files and scripts to a per-variant subdirectory under each node's shared folder. It does not change which agent or workflow runs. Normalised to a filesystem-safe slug by the server.
920
+ * Identifies which variant this execution is for, scoping its shared files and scripts to a per-variant subdirectory under each node's shared folder. It does not change which agent or workflow runs. Normalised to a filesystem-safe slug by the server. Requires the agent to have `variant_mode` enabled, and a variant-mode agent requires it on every execution.
920
921
  */
921
922
  variantKey?: string;
922
923
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "asteroid-odyssey",
3
- "version": "1.7.270",
3
+ "version": "1.7.274",
4
4
  "description": "SDK for interacting with Asteroid Agents API",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",