asteroid-odyssey 1.7.286 → 1.7.288

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
@@ -783,9 +783,10 @@ type AgentsGraphModelsNodesPropertiesIrisProperties = {
783
783
  * - May contain a single `{{variant_key}}` placeholder, which the
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
- * `{{variant_key}}/scripts/main.js` →
787
- * `shared/<node-key>/<variant-key>/scripts/main.js`). Requires the
788
- * agent to have `variant_mode` enabled.
786
+ * `./variants/{{variant_key}}/scripts/main.js` →
787
+ * `shared/<node-key>/variants/<variant-key>/scripts/main.js`).
788
+ * Requires the agent to have `variant_mode` enabled, and the
789
+ * placeholder must be the segment directly under `variants/`.
789
790
  */
790
791
  script_filepath?: string;
791
792
  /**
@@ -2920,7 +2921,7 @@ type AgentsEnvironmentExplicitEnvironmentSource = {
2920
2921
  */
2921
2922
  viewportHeight?: number;
2922
2923
  /**
2923
- * Session lifetime in minutes before the reaper tears the env down. Clamped server-side to the astro session cap. Omit for the default.
2924
+ * Session lifetime in minutes before the reaper tears the env down. Clamped server-side to the owner's ceiling: 60 minutes for an astro-owned env, which lives only as long as its build conversation, and 1440 for a standalone one, which is parked deliberately. Omit for the owner's default — 60 and 720 respectively.
2924
2925
  */
2925
2926
  sessionTimeoutMins?: number;
2926
2927
  };
package/dist/index.d.ts CHANGED
@@ -783,9 +783,10 @@ type AgentsGraphModelsNodesPropertiesIrisProperties = {
783
783
  * - May contain a single `{{variant_key}}` placeholder, which the
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
- * `{{variant_key}}/scripts/main.js` →
787
- * `shared/<node-key>/<variant-key>/scripts/main.js`). Requires the
788
- * agent to have `variant_mode` enabled.
786
+ * `./variants/{{variant_key}}/scripts/main.js` →
787
+ * `shared/<node-key>/variants/<variant-key>/scripts/main.js`).
788
+ * Requires the agent to have `variant_mode` enabled, and the
789
+ * placeholder must be the segment directly under `variants/`.
789
790
  */
790
791
  script_filepath?: string;
791
792
  /**
@@ -2920,7 +2921,7 @@ type AgentsEnvironmentExplicitEnvironmentSource = {
2920
2921
  */
2921
2922
  viewportHeight?: number;
2922
2923
  /**
2923
- * Session lifetime in minutes before the reaper tears the env down. Clamped server-side to the astro session cap. Omit for the default.
2924
+ * Session lifetime in minutes before the reaper tears the env down. Clamped server-side to the owner's ceiling: 60 minutes for an astro-owned env, which lives only as long as its build conversation, and 1440 for a standalone one, which is parked deliberately. Omit for the owner's default — 60 and 720 respectively.
2924
2925
  */
2925
2926
  sessionTimeoutMins?: number;
2926
2927
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "asteroid-odyssey",
3
- "version": "1.7.286",
3
+ "version": "1.7.288",
4
4
  "description": "SDK for interacting with Asteroid Agents API",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",