@soat/cli 0.9.1 → 0.11.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 +28 -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.11.0";
|
|
15
15
|
|
|
16
16
|
//#endregion
|
|
17
17
|
//#region src/cli-wrappers/wrappers/formations.ts
|
|
@@ -605,6 +605,12 @@ var routes = {
|
|
|
605
605
|
"required": false,
|
|
606
606
|
"type": "object",
|
|
607
607
|
"in": "body"
|
|
608
|
+
}, {
|
|
609
|
+
"name": "reasoning",
|
|
610
|
+
"description": "Deep-thinking configuration. `effort` forwards provider-native reasoning; `mode: reflect` critiques and revises; `mode: debate` runs multiple perspectives then synthesizes.",
|
|
611
|
+
"required": false,
|
|
612
|
+
"type": "object",
|
|
613
|
+
"in": "body"
|
|
608
614
|
}, {
|
|
609
615
|
"name": "max_context_messages",
|
|
610
616
|
"description": "Maximum number of recent messages included in the context window. Null means no limit.",
|
|
@@ -725,6 +731,12 @@ var routes = {
|
|
|
725
731
|
"required": false,
|
|
726
732
|
"type": "object",
|
|
727
733
|
"in": "body"
|
|
734
|
+
}, {
|
|
735
|
+
"name": "reasoning",
|
|
736
|
+
"description": "Deep-thinking configuration. `effort` forwards provider-native reasoning; `mode: reflect` critiques and revises; `mode: debate` runs multiple perspectives then synthesizes.",
|
|
737
|
+
"required": false,
|
|
738
|
+
"type": "object",
|
|
739
|
+
"in": "body"
|
|
728
740
|
}, {
|
|
729
741
|
"name": "max_context_messages",
|
|
730
742
|
"description": "Maximum number of recent messages included in the context window. Null means no limit.",
|
|
@@ -809,6 +821,12 @@ var routes = {
|
|
|
809
821
|
"required": false,
|
|
810
822
|
"type": "object",
|
|
811
823
|
"in": "body"
|
|
824
|
+
}, {
|
|
825
|
+
"name": "reasoning",
|
|
826
|
+
"description": "Per-generation deep-thinking override. Replaces the agent's stored reasoning config for this request (object replace, not merge). Same shape as the agent `reasoning` field.",
|
|
827
|
+
"required": false,
|
|
828
|
+
"type": "object",
|
|
829
|
+
"in": "body"
|
|
812
830
|
}]
|
|
813
831
|
},
|
|
814
832
|
"submit-agent-tool-outputs": {
|
|
@@ -3763,6 +3781,15 @@ var routes = {
|
|
|
3763
3781
|
"in": "path"
|
|
3764
3782
|
}]
|
|
3765
3783
|
},
|
|
3784
|
+
"get-current-user": {
|
|
3785
|
+
serviceClass: "Users",
|
|
3786
|
+
operationId: "getCurrentUser",
|
|
3787
|
+
description: "Returns the profile of the currently authenticated user",
|
|
3788
|
+
moduleDocsUrl: "https://soat.ttoss.dev/docs/modules/users",
|
|
3789
|
+
pathParams: [],
|
|
3790
|
+
queryParams: [],
|
|
3791
|
+
flags: []
|
|
3792
|
+
},
|
|
3766
3793
|
"list-users": {
|
|
3767
3794
|
serviceClass: "Users",
|
|
3768
3795
|
operationId: "listUsers",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@soat/cli",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.11.0",
|
|
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.11.0"
|
|
12
12
|
},
|
|
13
13
|
"devDependencies": {
|
|
14
14
|
"@ttoss/config": "^1.37.15",
|