@soat/cli 0.14.8 → 0.14.10
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 +5 -5
- 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.10";
|
|
15
15
|
|
|
16
16
|
//#endregion
|
|
17
17
|
//#region src/cli-wrappers/wrappers/formations.ts
|
|
@@ -4515,7 +4515,7 @@ var routes = {
|
|
|
4515
4515
|
"in": "body"
|
|
4516
4516
|
}, {
|
|
4517
4517
|
"name": "actions",
|
|
4518
|
-
"description": "SOAT platform
|
|
4518
|
+
"description": "Allowlist of actions. For `soat` tools: SOAT platform action names (required). For `mcp` tools: an optional allowlist of MCP tool names to scope the server surface — omit or set `null` to expose every tool the MCP server offers. Ignored for other tool types.",
|
|
4519
4519
|
"required": false,
|
|
4520
4520
|
"type": "array",
|
|
4521
4521
|
"in": "body"
|
|
@@ -4611,7 +4611,7 @@ var routes = {
|
|
|
4611
4611
|
"in": "body"
|
|
4612
4612
|
}, {
|
|
4613
4613
|
"name": "actions",
|
|
4614
|
-
"description": "",
|
|
4614
|
+
"description": "Allowlist of actions. For `soat` tools: SOAT platform action names. For `mcp` tools: an optional allowlist of MCP tool names to scope the server surface (`null` exposes every tool). Ignored for other tool types.",
|
|
4615
4615
|
"required": false,
|
|
4616
4616
|
"type": "array",
|
|
4617
4617
|
"in": "body"
|
|
@@ -4659,7 +4659,7 @@ var routes = {
|
|
|
4659
4659
|
"call-tool": {
|
|
4660
4660
|
serviceClass: "Tools",
|
|
4661
4661
|
operationId: "callTool",
|
|
4662
|
-
description: "Directly invokes a tool and returns its output. Supported for `http`, `soat`, `mcp`, and `pipeline` tools. `client` tools cannot be invoked server-side and will return 422. A `pipeline` tool runs its declared steps in order and returns the mapped `output` (or the last step's output); `action` is ignored and `input` is the pipeline input. For `soat` and `mcp` tools the `action` field is required and identifies which action (SOAT) or tool name (MCP) to invoke. For `http` tools `action` is ignored. `preset_parameters` stored on the tool are merged with the caller-supplied `input` before execution; preset keys take lower precedence.",
|
|
4662
|
+
description: "Directly invokes a tool and returns its output. Supported for `http`, `soat`, `mcp`, and `pipeline` tools. `client` tools cannot be invoked server-side and will return 422. A `pipeline` tool runs its declared steps in order and returns the mapped `output` (or the last step's output); `action` is ignored and `input` is the pipeline input. For `soat` and `mcp` tools the `action` field is required and identifies which action (SOAT) or tool name (MCP) to invoke. For `http` tools `action` is ignored. When a `soat` or `mcp` tool declares an `actions` allowlist, an action outside it is rejected with `400 VALIDATION_FAILED` (\"not available on this tool\") before any outbound request is made. `preset_parameters` stored on the tool are merged with the caller-supplied `input` before execution; preset keys take lower precedence.",
|
|
4663
4663
|
moduleDocsUrl: "https://soat.ttoss.dev/docs/modules/tools",
|
|
4664
4664
|
pathParams: ["tool_id"],
|
|
4665
4665
|
queryParams: [],
|
|
@@ -4671,7 +4671,7 @@ var routes = {
|
|
|
4671
4671
|
"in": "path"
|
|
4672
4672
|
}, {
|
|
4673
4673
|
"name": "action",
|
|
4674
|
-
"description": "For `soat` tools: the action name (must be in the tool's `actions` list). For `mcp` tools: the MCP tool name to invoke. Ignored for `http` tools.\n",
|
|
4674
|
+
"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",
|
|
4675
4675
|
"required": false,
|
|
4676
4676
|
"type": "string",
|
|
4677
4677
|
"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.10",
|
|
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.10"
|
|
12
12
|
},
|
|
13
13
|
"devDependencies": {
|
|
14
14
|
"@ttoss/config": "^1.37.17",
|