@soat/cli 0.6.1 → 0.6.2
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/esm/index.js +26 -11
- package/package.json +2 -2
package/dist/esm/index.js
CHANGED
|
@@ -16,7 +16,7 @@ import { program } from "commander";
|
|
|
16
16
|
// package.json
|
|
17
17
|
var package_default = {
|
|
18
18
|
name: "@soat/cli",
|
|
19
|
-
version: "0.6.
|
|
19
|
+
version: "0.6.2",
|
|
20
20
|
type: "module",
|
|
21
21
|
scripts: {
|
|
22
22
|
generate: "tsx scripts/generate.ts",
|
|
@@ -2320,9 +2320,9 @@ var routes = {
|
|
|
2320
2320
|
"in": "path"
|
|
2321
2321
|
}]
|
|
2322
2322
|
},
|
|
2323
|
-
"list-runs": {
|
|
2323
|
+
"list-orchestration-runs": {
|
|
2324
2324
|
serviceClass: "Orchestrations",
|
|
2325
|
-
operationId: "
|
|
2325
|
+
operationId: "listOrchestrationRuns",
|
|
2326
2326
|
description: "Returns all runs for an orchestration.",
|
|
2327
2327
|
moduleDocsUrl: "https://soat.ttoss.dev/docs/modules/orchestrations",
|
|
2328
2328
|
pathParams: ["orchestration_id"],
|
|
@@ -2335,9 +2335,9 @@ var routes = {
|
|
|
2335
2335
|
"in": "path"
|
|
2336
2336
|
}]
|
|
2337
2337
|
},
|
|
2338
|
-
"start-run": {
|
|
2338
|
+
"start-orchestration-run": {
|
|
2339
2339
|
serviceClass: "Orchestrations",
|
|
2340
|
-
operationId: "
|
|
2340
|
+
operationId: "startOrchestrationRun",
|
|
2341
2341
|
description: "Creates and immediately executes a new run for the orchestration.",
|
|
2342
2342
|
moduleDocsUrl: "https://soat.ttoss.dev/docs/modules/orchestrations",
|
|
2343
2343
|
pathParams: ["orchestration_id"],
|
|
@@ -2350,9 +2350,9 @@ var routes = {
|
|
|
2350
2350
|
"in": "path"
|
|
2351
2351
|
}]
|
|
2352
2352
|
},
|
|
2353
|
-
"cancel-run": {
|
|
2353
|
+
"cancel-orchestration-run": {
|
|
2354
2354
|
serviceClass: "Orchestrations",
|
|
2355
|
-
operationId: "
|
|
2355
|
+
operationId: "cancelOrchestrationRun",
|
|
2356
2356
|
description: "Cancels a running or paused orchestration run.",
|
|
2357
2357
|
moduleDocsUrl: "https://soat.ttoss.dev/docs/modules/orchestrations",
|
|
2358
2358
|
pathParams: ["orchestration_id", "run_id"],
|
|
@@ -2392,9 +2392,9 @@ var routes = {
|
|
|
2392
2392
|
"in": "path"
|
|
2393
2393
|
}]
|
|
2394
2394
|
},
|
|
2395
|
-
"resume-run": {
|
|
2395
|
+
"resume-orchestration-run": {
|
|
2396
2396
|
serviceClass: "Orchestrations",
|
|
2397
|
-
operationId: "
|
|
2397
|
+
operationId: "resumeOrchestrationRun",
|
|
2398
2398
|
description: "Resumes a paused orchestration run from its last checkpoint.",
|
|
2399
2399
|
moduleDocsUrl: "https://soat.ttoss.dev/docs/modules/orchestrations",
|
|
2400
2400
|
pathParams: ["orchestration_id", "run_id"],
|
|
@@ -2413,9 +2413,9 @@ var routes = {
|
|
|
2413
2413
|
"in": "path"
|
|
2414
2414
|
}]
|
|
2415
2415
|
},
|
|
2416
|
-
"get-run": {
|
|
2416
|
+
"get-orchestration-run": {
|
|
2417
2417
|
serviceClass: "Orchestrations",
|
|
2418
|
-
operationId: "
|
|
2418
|
+
operationId: "getOrchestrationRun",
|
|
2419
2419
|
description: "Returns the status, state, and artifacts of a specific run.",
|
|
2420
2420
|
moduleDocsUrl: "https://soat.ttoss.dev/docs/modules/orchestrations",
|
|
2421
2421
|
pathParams: ["orchestration_id", "run_id"],
|
|
@@ -3112,6 +3112,21 @@ var routes = {
|
|
|
3112
3112
|
"in": "path"
|
|
3113
3113
|
}]
|
|
3114
3114
|
},
|
|
3115
|
+
"get-trace-generations": {
|
|
3116
|
+
serviceClass: "Traces",
|
|
3117
|
+
operationId: "getTraceGenerations",
|
|
3118
|
+
description: "Returns all generation IDs associated with the trace.",
|
|
3119
|
+
moduleDocsUrl: "https://soat.ttoss.dev/docs/modules/traces",
|
|
3120
|
+
pathParams: ["trace_id"],
|
|
3121
|
+
queryParams: [],
|
|
3122
|
+
flags: [{
|
|
3123
|
+
"name": "trace_id",
|
|
3124
|
+
"description": "Public ID of the trace",
|
|
3125
|
+
"required": true,
|
|
3126
|
+
"type": "string",
|
|
3127
|
+
"in": "path"
|
|
3128
|
+
}]
|
|
3129
|
+
},
|
|
3115
3130
|
"list-users": {
|
|
3116
3131
|
serviceClass: "Users",
|
|
3117
3132
|
operationId: "listUsers",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@soat/cli",
|
|
3
|
-
"version": "0.6.
|
|
3
|
+
"version": "0.6.2",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"dependencies": {
|
|
6
6
|
"@inquirer/input": "^5.0.12",
|
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
"@ttoss/logger": "^0.8.10",
|
|
9
9
|
"commander": "^14.0.3",
|
|
10
10
|
"js-yaml": "^4.1.1",
|
|
11
|
-
"@soat/sdk": "0.6.
|
|
11
|
+
"@soat/sdk": "0.6.2"
|
|
12
12
|
},
|
|
13
13
|
"devDependencies": {
|
|
14
14
|
"@ttoss/config": "^1.37.10",
|