@soat/cli 0.14.11 → 0.14.12
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 +14 -2
- package/package.json +2 -2
package/dist/index.mjs
CHANGED
|
@@ -11,7 +11,7 @@ import { load } from "js-yaml";
|
|
|
11
11
|
import * as os from "node:os";
|
|
12
12
|
|
|
13
13
|
//#region package.json
|
|
14
|
-
var version = "0.14.
|
|
14
|
+
var version = "0.14.12";
|
|
15
15
|
|
|
16
16
|
//#endregion
|
|
17
17
|
//#region src/cli-wrappers/wrappers/formations.ts
|
|
@@ -4525,6 +4525,12 @@ var routes = {
|
|
|
4525
4525
|
"required": false,
|
|
4526
4526
|
"type": "array",
|
|
4527
4527
|
"in": "body"
|
|
4528
|
+
}, {
|
|
4529
|
+
"name": "denied_actions",
|
|
4530
|
+
"description": "For `mcp` tools: an optional denylist of MCP tool names to hide. Applied after `actions` and taking precedence over it. Use it to scope a read+write MCP server read-only by denying just the write tools. Omit or set `null` to deny nothing. Ignored for other tool types.",
|
|
4531
|
+
"required": false,
|
|
4532
|
+
"type": "array",
|
|
4533
|
+
"in": "body"
|
|
4528
4534
|
}, {
|
|
4529
4535
|
"name": "preset_parameters",
|
|
4530
4536
|
"description": "Fixed parameters merged into every soat tool call. Keys matching fields in the action's input schema are removed from the schema shown to the model and injected automatically at execution time.",
|
|
@@ -4621,6 +4627,12 @@ var routes = {
|
|
|
4621
4627
|
"required": false,
|
|
4622
4628
|
"type": "array",
|
|
4623
4629
|
"in": "body"
|
|
4630
|
+
}, {
|
|
4631
|
+
"name": "denied_actions",
|
|
4632
|
+
"description": "For `mcp` tools: an optional denylist of MCP tool names to hide. Applied after `actions` and taking precedence over it. Use it to scope a read+write MCP server read-only by denying just the write tools. `null` denies nothing. Ignored for other tool types.",
|
|
4633
|
+
"required": false,
|
|
4634
|
+
"type": "array",
|
|
4635
|
+
"in": "body"
|
|
4624
4636
|
}, {
|
|
4625
4637
|
"name": "preset_parameters",
|
|
4626
4638
|
"description": "Fixed parameters merged into every soat tool call. Keys matching fields in the action's input schema are removed from the schema shown to the model and injected automatically at execution time.",
|
|
@@ -4677,7 +4689,7 @@ var routes = {
|
|
|
4677
4689
|
"in": "path"
|
|
4678
4690
|
}, {
|
|
4679
4691
|
"name": "action",
|
|
4680
|
-
"description": "For `soat` tools: the action name (must be in the tool's `actions` list). For `mcp` tools: the MCP tool name to invoke (must be in the tool's `actions` allowlist when one is set). Ignored for `http` tools.\n",
|
|
4692
|
+
"description": "For `soat` tools: the action name (must be in the tool's `actions` list). For `mcp` tools: the MCP tool name to invoke (must be in the tool's `actions` allowlist when one is set, and must not be in its `denied_actions` denylist). Ignored for `http` tools.\n",
|
|
4681
4693
|
"required": false,
|
|
4682
4694
|
"type": "string",
|
|
4683
4695
|
"in": "body"
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@soat/cli",
|
|
3
|
-
"version": "0.14.
|
|
3
|
+
"version": "0.14.12",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"dependencies": {
|
|
6
6
|
"@inquirer/input": "^5.1.2",
|
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
"@ttoss/logger": "^0.8.19",
|
|
9
9
|
"commander": "^15.0.0",
|
|
10
10
|
"js-yaml": "^5.2.1",
|
|
11
|
-
"@soat/sdk": "0.14.
|
|
11
|
+
"@soat/sdk": "0.14.12"
|
|
12
12
|
},
|
|
13
13
|
"devDependencies": {
|
|
14
14
|
"@ttoss/config": "^1.37.17",
|