@soat/cli 0.29.5 → 0.30.1
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 +16 -4
- 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.30.1";
|
|
17
17
|
|
|
18
18
|
//#endregion
|
|
19
19
|
//#region src/cli-wrappers/wrappers/formations.ts
|
|
@@ -4172,11 +4172,11 @@ var routes = {
|
|
|
4172
4172
|
"list-generations": {
|
|
4173
4173
|
serviceClass: "Generations",
|
|
4174
4174
|
operationId: "listGenerations",
|
|
4175
|
-
description: "Returns generations the caller can access, optionally filtered by agent, trace, and status. Replaces the former per-trace generations endpoint (use the trace_id query filter).",
|
|
4175
|
+
description: "Returns generations the caller can access, optionally filtered by agent, trace, orchestration run, node, and status. Replaces the former per-trace generations endpoint (use the trace_id query filter). Filtering by `orchestration_run_id` is the supported way to get from an orchestration run to the generations its agent nodes produced: a node execution record carries no generation id, so the pointer lives here, alongside the run's other attribution columns.",
|
|
4176
4176
|
moduleDocsUrl: "https://soat.ttoss.dev/docs/modules/generations",
|
|
4177
4177
|
httpMethod: "get",
|
|
4178
4178
|
pathParams: [],
|
|
4179
|
-
queryParams: ["agent_id", "trace_id", "initiator_generation_id", "status", "limit", "offset"],
|
|
4179
|
+
queryParams: ["agent_id", "trace_id", "initiator_generation_id", "orchestration_run_id", "node_id", "status", "limit", "offset"],
|
|
4180
4180
|
flags: [{
|
|
4181
4181
|
"name": "agent_id",
|
|
4182
4182
|
"description": "Filter by agent public ID",
|
|
@@ -4195,6 +4195,18 @@ var routes = {
|
|
|
4195
4195
|
"required": false,
|
|
4196
4196
|
"type": "string",
|
|
4197
4197
|
"in": "query"
|
|
4198
|
+
}, {
|
|
4199
|
+
"name": "orchestration_run_id",
|
|
4200
|
+
"description": "Filter by the orchestration run that dispatched the generation. This is how a run is traced back to what its agent nodes did — a node execution record stores no generation id.\n",
|
|
4201
|
+
"required": false,
|
|
4202
|
+
"type": "string",
|
|
4203
|
+
"in": "query"
|
|
4204
|
+
}, {
|
|
4205
|
+
"name": "node_id",
|
|
4206
|
+
"description": "Filter by the orchestration node that dispatched the generation. Combine with `orchestration_run_id` to narrow to one node of one run; a retried node returns one generation per `node_attempt`.\n",
|
|
4207
|
+
"required": false,
|
|
4208
|
+
"type": "string",
|
|
4209
|
+
"in": "query"
|
|
4198
4210
|
}, {
|
|
4199
4211
|
"name": "status",
|
|
4200
4212
|
"description": "Filter by lifecycle status",
|
|
@@ -4256,7 +4268,7 @@ var routes = {
|
|
|
4256
4268
|
"purge-generation-content": {
|
|
4257
4269
|
serviceClass: "Generations",
|
|
4258
4270
|
operationId: "purgeGenerationContent",
|
|
4259
|
-
description: "Clears the generation's content — `metadata`, `error`, `extraction`, and the internal recovery state of a paused run — and stamps `content_redacted_at`. The usage and audit skeleton is preserved: ids, timestamps, status, stop reason, and the attribution fields (`action_id`, `trigger_id`, `orchestration_run_id`, `node_id`, `agent_version`, `routing`) the billing ledger reads. A purged generation reads back as that skeleton, not a 404. This does **not** delete the parent trace's steps object, which holds this generation's content alongside its siblings'. To erase the run's content completely, purge the trace (`DELETE /api/v1/traces/{trace_id}/content`), which cascades here. Idempotent — purging an already-purged generation succeeds and leaves the original `content_redacted_at` in place.",
|
|
4271
|
+
description: "Clears the generation's content — `metadata`, `error`, `extraction`, and the internal recovery state of a paused run — and stamps `content_redacted_at`. The usage and audit skeleton is preserved: ids, timestamps, status, stop reason, and the attribution fields (`action_id`, `trigger_id`, `orchestration_run_id`, `node_id`, `node_attempt`, `agent_version`, `routing`) the billing ledger reads. A purged generation reads back as that skeleton, not a 404. This does **not** delete the parent trace's steps object, which holds this generation's content alongside its siblings'. To erase the run's content completely, purge the trace (`DELETE /api/v1/traces/{trace_id}/content`), which cascades here. Idempotent — purging an already-purged generation succeeds and leaves the original `content_redacted_at` in place.",
|
|
4260
4272
|
moduleDocsUrl: "https://soat.ttoss.dev/docs/modules/generations",
|
|
4261
4273
|
httpMethod: "delete",
|
|
4262
4274
|
pathParams: ["generation_id"],
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@soat/cli",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.30.1",
|
|
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.30.1",
|
|
26
26
|
"@ttoss/logger": "^0.8.19",
|
|
27
27
|
"commander": "^15.0.0",
|
|
28
28
|
"js-yaml": "^5.2.1"
|