@soat/cli 0.30.1 → 0.31.0
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.mjs +31 -1
- package/package.json +2 -2
package/dist/index.mjs
CHANGED
|
@@ -13,7 +13,7 @@ import * as os from "node:os";
|
|
|
13
13
|
import { createHmac, timingSafeEqual } from "node:crypto";
|
|
14
14
|
|
|
15
15
|
//#region package.json
|
|
16
|
-
var version = "0.
|
|
16
|
+
var version = "0.31.0";
|
|
17
17
|
|
|
18
18
|
//#endregion
|
|
19
19
|
//#region src/cli-wrappers/wrappers/formations.ts
|
|
@@ -3421,6 +3421,12 @@ var routes = {
|
|
|
3421
3421
|
"required": false,
|
|
3422
3422
|
"type": "string",
|
|
3423
3423
|
"in": "body"
|
|
3424
|
+
}, {
|
|
3425
|
+
"name": "metadata",
|
|
3426
|
+
"description": "Caller-supplied key/value metadata attached to the run record for attribution — what this measurement was of (the commit or release candidate being scored, the CI job that asked for it). Round-trips verbatim on every read of the run, the list included.\n\nThe bag is caller-owned and no key is reserved: everything the platform decides about a run (`status`, `agent_version`, `baseline_run_id`, `aggregate_scores`, `passed`, the counts) is a field of its own and cannot be written from here. Nothing in the scoring path reads it. A non-object is rejected with `400 VALIDATION_FAILED` and no run is created.",
|
|
3427
|
+
"required": false,
|
|
3428
|
+
"type": "object",
|
|
3429
|
+
"in": "body"
|
|
3424
3430
|
}]
|
|
3425
3431
|
},
|
|
3426
3432
|
"get-eval-run": {
|
|
@@ -5633,6 +5639,12 @@ var routes = {
|
|
|
5633
5639
|
"required": false,
|
|
5634
5640
|
"type": "object",
|
|
5635
5641
|
"in": "body"
|
|
5642
|
+
}, {
|
|
5643
|
+
"name": "metadata",
|
|
5644
|
+
"description": "Caller-supplied key/value metadata attached to the run record for per-run attribution (e.g. which of your own tenants this run belongs to, or the dispatch batch that started it). Round-trips verbatim on every read of the run, on the list as well as the single read.\n\nThe bag is caller-owned and no key is reserved: server-owned state (status, the pinned orchestration version, the trace, usage, artifacts, the run's own `input` and accumulated `state`) lives in its own top-level field and cannot be written from here.\n\nIt is **not** merged into run state: no graph node sees it, and an `input_schema` never has to tolerate it — which is what makes it the place for an infrastructural label, rather than `input`. Keys are never transformed. It is not inherited by the child runs a `loop` or `sub_orchestration` node starts; each child carries whatever the graph gives it, which today is nothing.",
|
|
5645
|
+
"required": false,
|
|
5646
|
+
"type": "object",
|
|
5647
|
+
"in": "body"
|
|
5636
5648
|
}, {
|
|
5637
5649
|
"name": "wait",
|
|
5638
5650
|
"description": "When true, block until the run reaches a terminal (succeeded/failed) or awaiting_input state and return the settled run. When false (default), return immediately with status \"queued\" and execute the run in the background.",
|
|
@@ -6769,6 +6781,12 @@ var routes = {
|
|
|
6769
6781
|
"required": false,
|
|
6770
6782
|
"type": "object",
|
|
6771
6783
|
"in": "body"
|
|
6784
|
+
}, {
|
|
6785
|
+
"name": "metadata",
|
|
6786
|
+
"description": "Caller-supplied key/value metadata attached to the task record for attribution — which of your own tenants the task belongs to, the ticket that raised it, the import batch that created it. Round-trips verbatim on every read of the task, the list included, and survives every transition (a transition supplies no metadata of its own).\n\nThe bag is caller-owned and no key is reserved: everything the engine decides about a task (`state`, `status`, `workflow_version`, `last_result`, `active_dispatch`, the automation fields) is a field of its own and cannot be written from here.\n\nPrefer this over `payload` for anything that is not task data: `payload` is read by every guard as `task.payload` and may be written by the workflow's declared `payload_writes`, so a label parked there is neither invisible to the state machine nor safe from it. A non-object is rejected with `400 VALIDATION_FAILED` and no task is created.",
|
|
6787
|
+
"required": false,
|
|
6788
|
+
"type": "object",
|
|
6789
|
+
"in": "body"
|
|
6772
6790
|
}]
|
|
6773
6791
|
},
|
|
6774
6792
|
"get-task": {
|
|
@@ -7347,6 +7365,12 @@ var routes = {
|
|
|
7347
7365
|
"required": false,
|
|
7348
7366
|
"type": "string",
|
|
7349
7367
|
"in": "body"
|
|
7368
|
+
}, {
|
|
7369
|
+
"name": "event_pattern",
|
|
7370
|
+
"description": "Internal-event subscription pattern. Required when type is event, rejected otherwise. `*` matches every event, `prefix.*` a namespace, or give an exact event name such as `documents.ingested`",
|
|
7371
|
+
"required": false,
|
|
7372
|
+
"type": "string",
|
|
7373
|
+
"in": "body"
|
|
7350
7374
|
}, {
|
|
7351
7375
|
"name": "active",
|
|
7352
7376
|
"description": "",
|
|
@@ -7433,6 +7457,12 @@ var routes = {
|
|
|
7433
7457
|
"required": false,
|
|
7434
7458
|
"type": "string",
|
|
7435
7459
|
"in": "body"
|
|
7460
|
+
}, {
|
|
7461
|
+
"name": "event_pattern",
|
|
7462
|
+
"description": "",
|
|
7463
|
+
"required": false,
|
|
7464
|
+
"type": "string",
|
|
7465
|
+
"in": "body"
|
|
7436
7466
|
}, {
|
|
7437
7467
|
"name": "active",
|
|
7438
7468
|
"description": "",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@soat/cli",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.31.0",
|
|
4
4
|
"description": "CLI for SOAT — open-source infrastructure for production-ready AI agents.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ai-agents",
|
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
"dependencies": {
|
|
23
23
|
"@inquirer/input": "^5.1.2",
|
|
24
24
|
"@inquirer/password": "^5.1.1",
|
|
25
|
-
"@soat/sdk": "0.
|
|
25
|
+
"@soat/sdk": "0.31.0",
|
|
26
26
|
"@ttoss/logger": "^0.8.19",
|
|
27
27
|
"commander": "^15.0.0",
|
|
28
28
|
"js-yaml": "^5.2.1"
|