asteroid-odyssey 1.6.644 → 1.6.658

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