asteroid-odyssey 1.6.644 → 1.6.668

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
@@ -1534,7 +1534,36 @@ type AgentsGraphModelsNodesPropertiesIrisProperties = {
1534
1534
  batch_actions: boolean;
1535
1535
  playwright_script_properties?: AgentsGraphModelsNodesPropertiesIrisPlaywrightScriptProperties;
1536
1536
  learn_and_compile?: boolean;
1537
- execution_mode?: 'default' | 'scripted';
1537
+ /**
1538
+ * Relative path (within the node's own shared directory) of the
1539
+ * Playwright script that the runtime should execute before the LLM.
1540
+ * Setting this turns the node into a fast-path scripted node — combine
1541
+ * with `freeze: true` to skip the LLM entirely on success.
1542
+ *
1543
+ * The path is resolved at runtime against the node's shared
1544
+ * directory — i.e. `shared/<node-key>/<script_filepath>` on disk in
1545
+ * the sandbox. `<node-key>` is owned by the runtime (currently the
1546
+ * node's slug, may move to its UUID), so authors do not have to
1547
+ * encode it and renaming a node does not break the path.
1548
+ *
1549
+ * Examples (typical):
1550
+ * - `scripts/main.js`
1551
+ * - `scripts/login.js`
1552
+ *
1553
+ * Constraints:
1554
+ * - Must be relative (no leading `/`).
1555
+ * - Must NOT start with `shared/` — it is already relative to the
1556
+ * node's shared directory; the runtime adds the `shared/<node-key>/`
1557
+ * prefix.
1558
+ * - Must end in `.js`.
1559
+ * - Must not contain `..` segments or duplicate slashes.
1560
+ * - May contain a single `{{shared_storage_key}}` placeholder, which
1561
+ * the runtime substitutes with the execution's `shared_storage_key`
1562
+ * so a single workflow can target per-tenant script trees (e.g.
1563
+ * `{{shared_storage_key}}/scripts/main.js` →
1564
+ * `shared/<node-key>/<storage-key>/scripts/main.js`).
1565
+ */
1566
+ script_filepath?: string;
1538
1567
  freeze?: boolean;
1539
1568
  thinking_mode?: 'adaptive' | 'enabled' | 'disabled';
1540
1569
  thinking_budget_tokens?: number;
package/dist/index.d.ts CHANGED
@@ -1534,7 +1534,36 @@ type AgentsGraphModelsNodesPropertiesIrisProperties = {
1534
1534
  batch_actions: boolean;
1535
1535
  playwright_script_properties?: AgentsGraphModelsNodesPropertiesIrisPlaywrightScriptProperties;
1536
1536
  learn_and_compile?: boolean;
1537
- execution_mode?: 'default' | 'scripted';
1537
+ /**
1538
+ * Relative path (within the node's own shared directory) of the
1539
+ * Playwright script that the runtime should execute before the LLM.
1540
+ * Setting this turns the node into a fast-path scripted node — combine
1541
+ * with `freeze: true` to skip the LLM entirely on success.
1542
+ *
1543
+ * The path is resolved at runtime against the node's shared
1544
+ * directory — i.e. `shared/<node-key>/<script_filepath>` on disk in
1545
+ * the sandbox. `<node-key>` is owned by the runtime (currently the
1546
+ * node's slug, may move to its UUID), so authors do not have to
1547
+ * encode it and renaming a node does not break the path.
1548
+ *
1549
+ * Examples (typical):
1550
+ * - `scripts/main.js`
1551
+ * - `scripts/login.js`
1552
+ *
1553
+ * Constraints:
1554
+ * - Must be relative (no leading `/`).
1555
+ * - Must NOT start with `shared/` — it is already relative to the
1556
+ * node's shared directory; the runtime adds the `shared/<node-key>/`
1557
+ * prefix.
1558
+ * - Must end in `.js`.
1559
+ * - Must not contain `..` segments or duplicate slashes.
1560
+ * - May contain a single `{{shared_storage_key}}` placeholder, which
1561
+ * the runtime substitutes with the execution's `shared_storage_key`
1562
+ * so a single workflow can target per-tenant script trees (e.g.
1563
+ * `{{shared_storage_key}}/scripts/main.js` →
1564
+ * `shared/<node-key>/<storage-key>/scripts/main.js`).
1565
+ */
1566
+ script_filepath?: string;
1538
1567
  freeze?: boolean;
1539
1568
  thinking_mode?: 'adaptive' | 'enabled' | 'disabled';
1540
1569
  thinking_budget_tokens?: number;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "asteroid-odyssey",
3
- "version": "1.6.644",
3
+ "version": "1.6.668",
4
4
  "description": "SDK for interacting with Asteroid Agents API",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",