@soat/cli 0.5.1 → 0.5.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 +58 -2
- 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.5.
|
|
19
|
+
version: "0.5.2",
|
|
20
20
|
type: "module",
|
|
21
21
|
scripts: {
|
|
22
22
|
generate: "tsx scripts/generate.ts",
|
|
@@ -165,6 +165,62 @@ var routes = {
|
|
|
165
165
|
pathParams: ["actor_id"],
|
|
166
166
|
queryParams: []
|
|
167
167
|
},
|
|
168
|
+
"validate-agent-formation": {
|
|
169
|
+
serviceClass: "AgentFormations",
|
|
170
|
+
operationId: "validateAgentFormation",
|
|
171
|
+
description: "Validate a formation template",
|
|
172
|
+
pathParams: [],
|
|
173
|
+
queryParams: []
|
|
174
|
+
},
|
|
175
|
+
"plan-agent-formation": {
|
|
176
|
+
serviceClass: "AgentFormations",
|
|
177
|
+
operationId: "planAgentFormation",
|
|
178
|
+
description: "Plan a formation deployment",
|
|
179
|
+
pathParams: [],
|
|
180
|
+
queryParams: []
|
|
181
|
+
},
|
|
182
|
+
"list-agent-formations": {
|
|
183
|
+
serviceClass: "AgentFormations",
|
|
184
|
+
operationId: "listAgentFormations",
|
|
185
|
+
description: "List agent formations",
|
|
186
|
+
pathParams: [],
|
|
187
|
+
queryParams: ["project_id"]
|
|
188
|
+
},
|
|
189
|
+
"create-agent-formation": {
|
|
190
|
+
serviceClass: "AgentFormations",
|
|
191
|
+
operationId: "createAgentFormation",
|
|
192
|
+
description: "Create a new agent formation",
|
|
193
|
+
pathParams: [],
|
|
194
|
+
queryParams: []
|
|
195
|
+
},
|
|
196
|
+
"get-agent-formation": {
|
|
197
|
+
serviceClass: "AgentFormations",
|
|
198
|
+
operationId: "getAgentFormation",
|
|
199
|
+
description: "Get a specific agent formation",
|
|
200
|
+
pathParams: ["formation_id"],
|
|
201
|
+
queryParams: []
|
|
202
|
+
},
|
|
203
|
+
"update-agent-formation": {
|
|
204
|
+
serviceClass: "AgentFormations",
|
|
205
|
+
operationId: "updateAgentFormation",
|
|
206
|
+
description: "Update an agent formation",
|
|
207
|
+
pathParams: ["formation_id"],
|
|
208
|
+
queryParams: []
|
|
209
|
+
},
|
|
210
|
+
"delete-agent-formation": {
|
|
211
|
+
serviceClass: "AgentFormations",
|
|
212
|
+
operationId: "deleteAgentFormation",
|
|
213
|
+
description: "Delete an agent formation",
|
|
214
|
+
pathParams: ["formation_id"],
|
|
215
|
+
queryParams: []
|
|
216
|
+
},
|
|
217
|
+
"list-agent-formation-events": {
|
|
218
|
+
serviceClass: "AgentFormations",
|
|
219
|
+
operationId: "listAgentFormationEvents",
|
|
220
|
+
description: "List formation operation events",
|
|
221
|
+
pathParams: ["formation_id"],
|
|
222
|
+
queryParams: []
|
|
223
|
+
},
|
|
168
224
|
"list-agent-tools": {
|
|
169
225
|
serviceClass: "AgentTools",
|
|
170
226
|
operationId: "listAgentTools",
|
|
@@ -618,7 +674,7 @@ var routes = {
|
|
|
618
674
|
operationId: "listMemories",
|
|
619
675
|
description: "List memories",
|
|
620
676
|
pathParams: [],
|
|
621
|
-
queryParams: ["project_id"]
|
|
677
|
+
queryParams: ["project_id", "tags"]
|
|
622
678
|
},
|
|
623
679
|
"create-memory": {
|
|
624
680
|
serviceClass: "Memories",
|
package/package.json
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@soat/cli",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.2",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"dependencies": {
|
|
6
6
|
"@inquirer/input": "^5.0.12",
|
|
7
7
|
"@inquirer/password": "^5.0.12",
|
|
8
8
|
"@ttoss/logger": "^0.8.10",
|
|
9
9
|
"commander": "^14.0.3",
|
|
10
|
-
"@soat/sdk": "0.5.
|
|
10
|
+
"@soat/sdk": "0.5.2"
|
|
11
11
|
},
|
|
12
12
|
"devDependencies": {
|
|
13
13
|
"@ttoss/config": "^1.37.10",
|