@soat/cli 0.7.1 → 0.8.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 -1
- package/package.json +2 -2
package/dist/index.mjs
CHANGED
|
@@ -11,7 +11,7 @@ import yaml from "js-yaml";
|
|
|
11
11
|
import * as os from "node:os";
|
|
12
12
|
|
|
13
13
|
//#region package.json
|
|
14
|
-
var version = "0.
|
|
14
|
+
var version = "0.8.1";
|
|
15
15
|
|
|
16
16
|
//#endregion
|
|
17
17
|
//#region src/cli-wrappers/wrappers/formations.ts
|
|
@@ -2245,6 +2245,21 @@ var routes = {
|
|
|
2245
2245
|
"in": "path"
|
|
2246
2246
|
}]
|
|
2247
2247
|
},
|
|
2248
|
+
"get-generation": {
|
|
2249
|
+
serviceClass: "Generations",
|
|
2250
|
+
operationId: "getGeneration",
|
|
2251
|
+
description: "Returns a single generation record by ID, including its status and the structured `error` payload when the generation failed (e.g. because the upstream AI provider returned an error).",
|
|
2252
|
+
moduleDocsUrl: "https://soat.ttoss.dev/docs/modules/generations",
|
|
2253
|
+
pathParams: ["generation_id"],
|
|
2254
|
+
queryParams: [],
|
|
2255
|
+
flags: [{
|
|
2256
|
+
"name": "generation_id",
|
|
2257
|
+
"description": "Public ID of the generation",
|
|
2258
|
+
"required": true,
|
|
2259
|
+
"type": "string",
|
|
2260
|
+
"in": "path"
|
|
2261
|
+
}]
|
|
2262
|
+
},
|
|
2248
2263
|
"search-knowledge": {
|
|
2249
2264
|
serviceClass: "Knowledge",
|
|
2250
2265
|
operationId: "searchKnowledge",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@soat/cli",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.8.1",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"dependencies": {
|
|
6
6
|
"@inquirer/input": "^5.1.2",
|
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
"@ttoss/logger": "^0.8.16",
|
|
9
9
|
"commander": "^15.0.0",
|
|
10
10
|
"js-yaml": "^4.2.0",
|
|
11
|
-
"@soat/sdk": "0.
|
|
11
|
+
"@soat/sdk": "0.8.1"
|
|
12
12
|
},
|
|
13
13
|
"devDependencies": {
|
|
14
14
|
"@ttoss/config": "^1.37.15",
|