@bctrl/cli 0.1.3 → 0.1.5

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.
Files changed (50) hide show
  1. package/README.md +95 -95
  2. package/dist/api/auth.d.ts +5 -6
  3. package/dist/api/auth.js +4 -5
  4. package/dist/api/client.d.ts +1 -0
  5. package/dist/api/client.js +3 -0
  6. package/dist/api/errors.js +2 -2
  7. package/dist/bin/bctrl.js +0 -0
  8. package/dist/commands/ai/index.js +71 -106
  9. package/dist/commands/{browser → api-key}/index.d.ts +1 -1
  10. package/dist/commands/api-key/index.js +47 -0
  11. package/dist/commands/auth/login.js +2 -1
  12. package/dist/commands/auth/status.js +5 -0
  13. package/dist/commands/browser-extension/index.d.ts +3 -0
  14. package/dist/commands/browser-extension/index.js +85 -0
  15. package/dist/commands/file/index.js +26 -21
  16. package/dist/commands/{invocation → help}/index.d.ts +1 -1
  17. package/dist/commands/help/index.js +17 -0
  18. package/dist/commands/proxy/index.d.ts +3 -0
  19. package/dist/commands/proxy/index.js +72 -0
  20. package/dist/commands/run/index.js +227 -160
  21. package/dist/commands/runtime/index.js +343 -118
  22. package/dist/commands/shared/help.d.ts +1 -0
  23. package/dist/commands/shared/help.js +10 -6
  24. package/dist/commands/shared/operation.d.ts +83 -0
  25. package/dist/commands/shared/{rest.js → operation.js} +81 -32
  26. package/dist/commands/space/index.js +62 -68
  27. package/dist/commands/space/list.d.ts +1 -11
  28. package/dist/commands/space/list.js +12 -20
  29. package/dist/commands/subaccount/index.js +56 -125
  30. package/dist/commands/tool/index.js +28 -22
  31. package/dist/commands/tool-call/index.js +11 -6
  32. package/dist/commands/toolset/index.js +16 -15
  33. package/dist/commands/usage/index.d.ts +3 -0
  34. package/dist/commands/usage/index.js +13 -0
  35. package/dist/commands/vault/index.js +115 -34
  36. package/dist/config/auth-store.d.ts +10 -12
  37. package/dist/config/auth-store.js +4 -5
  38. package/dist/generated/help.d.ts +5992 -71
  39. package/dist/generated/help.js +7918 -123
  40. package/dist/generated/openapi-routes.d.ts +391 -0
  41. package/dist/generated/openapi-routes.js +100 -0
  42. package/dist/generated/openapi-types.d.ts +13755 -0
  43. package/dist/generated/openapi-types.js +5 -0
  44. package/dist/openapi.d.ts +20 -0
  45. package/dist/openapi.js +1 -0
  46. package/dist/root.js +10 -4
  47. package/package.json +47 -45
  48. package/dist/commands/browser/index.js +0 -53
  49. package/dist/commands/invocation/index.js +0 -36
  50. package/dist/commands/shared/rest.d.ts +0 -54
@@ -0,0 +1,391 @@
1
+ export declare const CLI_OPENAPI_ROUTES: {
2
+ readonly "ai.credentials.create": {
3
+ readonly method: "post";
4
+ readonly path: "/ai/credentials";
5
+ };
6
+ readonly "ai.credentials.delete": {
7
+ readonly method: "delete";
8
+ readonly path: "/ai/credentials/{credentialId}";
9
+ };
10
+ readonly "ai.credentials.get": {
11
+ readonly method: "get";
12
+ readonly path: "/ai/credentials/{credentialId}";
13
+ };
14
+ readonly "ai.credentials.list": {
15
+ readonly method: "get";
16
+ readonly path: "/ai/credentials";
17
+ };
18
+ readonly "ai.credentials.test": {
19
+ readonly method: "post";
20
+ readonly path: "/ai/credentials/{credentialId}/test";
21
+ };
22
+ readonly "ai.credentials.update": {
23
+ readonly method: "patch";
24
+ readonly path: "/ai/credentials/{credentialId}";
25
+ };
26
+ readonly "ai.models.list": {
27
+ readonly method: "get";
28
+ readonly path: "/ai/models";
29
+ };
30
+ readonly "api-keys.create": {
31
+ readonly method: "post";
32
+ readonly path: "/api-keys";
33
+ };
34
+ readonly "api-keys.delete": {
35
+ readonly method: "delete";
36
+ readonly path: "/api-keys/{keyId}";
37
+ };
38
+ readonly "api-keys.list": {
39
+ readonly method: "get";
40
+ readonly path: "/api-keys";
41
+ };
42
+ readonly "auth.whoami": {
43
+ readonly method: "get";
44
+ readonly path: "/auth/whoami";
45
+ };
46
+ readonly "browser-extensions.delete": {
47
+ readonly method: "delete";
48
+ readonly path: "/browser-extensions/{extensionId}";
49
+ };
50
+ readonly "browser-extensions.get": {
51
+ readonly method: "get";
52
+ readonly path: "/browser-extensions/{extensionId}";
53
+ };
54
+ readonly "browser-extensions.import": {
55
+ readonly method: "post";
56
+ readonly path: "/browser-extensions/import";
57
+ };
58
+ readonly "browser-extensions.list": {
59
+ readonly method: "get";
60
+ readonly path: "/browser-extensions";
61
+ };
62
+ readonly "browser-extensions.update": {
63
+ readonly method: "patch";
64
+ readonly path: "/browser-extensions/{extensionId}";
65
+ };
66
+ readonly "browser-extensions.upload": {
67
+ readonly method: "post";
68
+ readonly path: "/browser-extensions/upload";
69
+ };
70
+ readonly "files.content": {
71
+ readonly method: "get";
72
+ readonly path: "/files/{fileId}/content";
73
+ };
74
+ readonly "files.delete": {
75
+ readonly method: "delete";
76
+ readonly path: "/files/{fileId}";
77
+ };
78
+ readonly "files.get": {
79
+ readonly method: "get";
80
+ readonly path: "/files/{fileId}";
81
+ };
82
+ readonly "files.list": {
83
+ readonly method: "get";
84
+ readonly path: "/files";
85
+ };
86
+ readonly "files.update": {
87
+ readonly method: "patch";
88
+ readonly path: "/files/{fileId}";
89
+ };
90
+ readonly "files.upload": {
91
+ readonly method: "post";
92
+ readonly path: "/files";
93
+ };
94
+ readonly help: {
95
+ readonly method: "get";
96
+ readonly path: "/help";
97
+ };
98
+ readonly "proxies.create": {
99
+ readonly method: "post";
100
+ readonly path: "/proxies";
101
+ };
102
+ readonly "proxies.delete": {
103
+ readonly method: "delete";
104
+ readonly path: "/proxies/{proxyId}";
105
+ };
106
+ readonly "proxies.get": {
107
+ readonly method: "get";
108
+ readonly path: "/proxies/{proxyId}";
109
+ };
110
+ readonly "proxies.list": {
111
+ readonly method: "get";
112
+ readonly path: "/proxies";
113
+ };
114
+ readonly "proxies.pools.get": {
115
+ readonly method: "get";
116
+ readonly path: "/proxies/pools/{poolId}";
117
+ };
118
+ readonly "proxies.pools.list": {
119
+ readonly method: "get";
120
+ readonly path: "/proxies/pools";
121
+ };
122
+ readonly "proxies.test": {
123
+ readonly method: "post";
124
+ readonly path: "/proxies/{proxyId}/test";
125
+ };
126
+ readonly "proxies.update": {
127
+ readonly method: "patch";
128
+ readonly path: "/proxies/{proxyId}";
129
+ };
130
+ readonly "runs.activity.list": {
131
+ readonly method: "get";
132
+ readonly path: "/runs/{runId}/activity";
133
+ };
134
+ readonly "runs.activity.stream": {
135
+ readonly method: "get";
136
+ readonly path: "/runs/{runId}/activity/stream";
137
+ };
138
+ readonly "runs.events.list": {
139
+ readonly method: "get";
140
+ readonly path: "/runs/{runId}/events";
141
+ };
142
+ readonly "runs.events.stream": {
143
+ readonly method: "get";
144
+ readonly path: "/runs/{runId}/events/stream";
145
+ };
146
+ readonly "runs.files.export": {
147
+ readonly method: "post";
148
+ readonly path: "/runs/{runId}/files/export";
149
+ };
150
+ readonly "runs.files.list": {
151
+ readonly method: "get";
152
+ readonly path: "/runs/{runId}/files";
153
+ };
154
+ readonly "runs.get": {
155
+ readonly method: "get";
156
+ readonly path: "/runs/{runId}";
157
+ };
158
+ readonly "runs.invocations.get": {
159
+ readonly method: "get";
160
+ readonly path: "/runs/{runId}/invocations/{invocationId}";
161
+ };
162
+ readonly "runs.invocations.list": {
163
+ readonly method: "get";
164
+ readonly path: "/runs/{runId}/invocations";
165
+ };
166
+ readonly "runs.list": {
167
+ readonly method: "get";
168
+ readonly path: "/runs";
169
+ };
170
+ readonly "runs.live": {
171
+ readonly method: "post";
172
+ readonly path: "/runs/{runId}/live";
173
+ };
174
+ readonly "runs.recording": {
175
+ readonly method: "post";
176
+ readonly path: "/runs/{runId}/recording";
177
+ };
178
+ readonly "runtimes.create": {
179
+ readonly method: "post";
180
+ readonly path: "/runtimes";
181
+ };
182
+ readonly "runtimes.delete": {
183
+ readonly method: "delete";
184
+ readonly path: "/runtimes/{runtimeId}";
185
+ };
186
+ readonly "runtimes.files.collect": {
187
+ readonly method: "post";
188
+ readonly path: "/runtimes/{runtimeId}/files/collect";
189
+ };
190
+ readonly "runtimes.files.list": {
191
+ readonly method: "get";
192
+ readonly path: "/runtimes/{runtimeId}/files";
193
+ };
194
+ readonly "runtimes.files.stage": {
195
+ readonly method: "post";
196
+ readonly path: "/runtimes/{runtimeId}/files/stage";
197
+ };
198
+ readonly "runtimes.files.upload": {
199
+ readonly method: "post";
200
+ readonly path: "/runtimes/{runtimeId}/files/upload";
201
+ };
202
+ readonly "runtimes.get": {
203
+ readonly method: "get";
204
+ readonly path: "/runtimes/{runtimeId}";
205
+ };
206
+ readonly "runtimes.invocations.cancel": {
207
+ readonly method: "post";
208
+ readonly path: "/runtimes/{runtimeId}/invocations/{invocationId}/cancel";
209
+ };
210
+ readonly "runtimes.invocations.create": {
211
+ readonly method: "post";
212
+ readonly path: "/runtimes/{runtimeId}/invocations";
213
+ };
214
+ readonly "runtimes.invocations.wait": {
215
+ readonly method: "post";
216
+ readonly path: "/runtimes/{runtimeId}/invocations/{invocationId}/wait";
217
+ };
218
+ readonly "runtimes.list": {
219
+ readonly method: "get";
220
+ readonly path: "/runtimes";
221
+ };
222
+ readonly "runtimes.start": {
223
+ readonly method: "post";
224
+ readonly path: "/runtimes/{runtimeId}/start";
225
+ };
226
+ readonly "runtimes.stop": {
227
+ readonly method: "post";
228
+ readonly path: "/runtimes/{runtimeId}/stop";
229
+ };
230
+ readonly "runtimes.targets.activate": {
231
+ readonly method: "post";
232
+ readonly path: "/runtimes/{runtimeId}/targets/{targetId}/activate";
233
+ };
234
+ readonly "runtimes.targets.create": {
235
+ readonly method: "post";
236
+ readonly path: "/runtimes/{runtimeId}/targets";
237
+ };
238
+ readonly "runtimes.targets.delete": {
239
+ readonly method: "delete";
240
+ readonly path: "/runtimes/{runtimeId}/targets/{targetId}";
241
+ };
242
+ readonly "runtimes.targets.get": {
243
+ readonly method: "get";
244
+ readonly path: "/runtimes/{runtimeId}/targets/{targetId}";
245
+ };
246
+ readonly "runtimes.targets.list": {
247
+ readonly method: "get";
248
+ readonly path: "/runtimes/{runtimeId}/targets";
249
+ };
250
+ readonly "runtimes.update": {
251
+ readonly method: "patch";
252
+ readonly path: "/runtimes/{runtimeId}";
253
+ };
254
+ readonly "spaces.create": {
255
+ readonly method: "post";
256
+ readonly path: "/spaces";
257
+ };
258
+ readonly "spaces.delete": {
259
+ readonly method: "delete";
260
+ readonly path: "/spaces/{spaceId}";
261
+ };
262
+ readonly "spaces.environment.get": {
263
+ readonly method: "get";
264
+ readonly path: "/spaces/{spaceId}/environment";
265
+ };
266
+ readonly "spaces.environment.update": {
267
+ readonly method: "patch";
268
+ readonly path: "/spaces/{spaceId}/environment";
269
+ };
270
+ readonly "spaces.get": {
271
+ readonly method: "get";
272
+ readonly path: "/spaces/{spaceId}";
273
+ };
274
+ readonly "spaces.list": {
275
+ readonly method: "get";
276
+ readonly path: "/spaces";
277
+ };
278
+ readonly "spaces.update": {
279
+ readonly method: "patch";
280
+ readonly path: "/spaces/{spaceId}";
281
+ };
282
+ readonly "subaccounts.archive": {
283
+ readonly method: "post";
284
+ readonly path: "/subaccounts/{subaccountId}/archive";
285
+ };
286
+ readonly "subaccounts.create": {
287
+ readonly method: "post";
288
+ readonly path: "/subaccounts";
289
+ };
290
+ readonly "subaccounts.get": {
291
+ readonly method: "get";
292
+ readonly path: "/subaccounts/{subaccountId}";
293
+ };
294
+ readonly "subaccounts.list": {
295
+ readonly method: "get";
296
+ readonly path: "/subaccounts";
297
+ };
298
+ readonly "subaccounts.update": {
299
+ readonly method: "patch";
300
+ readonly path: "/subaccounts/{subaccountId}";
301
+ };
302
+ readonly "subaccounts.usage.list": {
303
+ readonly method: "get";
304
+ readonly path: "/subaccounts/usage";
305
+ };
306
+ readonly "tool-calls.get": {
307
+ readonly method: "get";
308
+ readonly path: "/tool-calls/{id}";
309
+ };
310
+ readonly "tool-calls.list": {
311
+ readonly method: "get";
312
+ readonly path: "/tool-calls";
313
+ };
314
+ readonly "tools.create": {
315
+ readonly method: "post";
316
+ readonly path: "/tools";
317
+ };
318
+ readonly "tools.delete": {
319
+ readonly method: "delete";
320
+ readonly path: "/tools/{id}";
321
+ };
322
+ readonly "tools.get": {
323
+ readonly method: "get";
324
+ readonly path: "/tools/{id}";
325
+ };
326
+ readonly "tools.list": {
327
+ readonly method: "get";
328
+ readonly path: "/tools";
329
+ };
330
+ readonly "tools.test": {
331
+ readonly method: "post";
332
+ readonly path: "/tools/{id}/test";
333
+ };
334
+ readonly "tools.update": {
335
+ readonly method: "patch";
336
+ readonly path: "/tools/{id}";
337
+ };
338
+ readonly "toolsets.create": {
339
+ readonly method: "post";
340
+ readonly path: "/toolsets";
341
+ };
342
+ readonly "toolsets.delete": {
343
+ readonly method: "delete";
344
+ readonly path: "/toolsets/{id}";
345
+ };
346
+ readonly "toolsets.get": {
347
+ readonly method: "get";
348
+ readonly path: "/toolsets/{id}";
349
+ };
350
+ readonly "toolsets.list": {
351
+ readonly method: "get";
352
+ readonly path: "/toolsets";
353
+ };
354
+ readonly "toolsets.update": {
355
+ readonly method: "patch";
356
+ readonly path: "/toolsets/{id}";
357
+ };
358
+ readonly "usage.get": {
359
+ readonly method: "get";
360
+ readonly path: "/usage";
361
+ };
362
+ readonly "vault.secrets.delete": {
363
+ readonly method: "delete";
364
+ readonly path: "/vault/secrets/{key}";
365
+ };
366
+ readonly "vault.secrets.get": {
367
+ readonly method: "get";
368
+ readonly path: "/vault/secrets/{key}";
369
+ };
370
+ readonly "vault.secrets.list": {
371
+ readonly method: "get";
372
+ readonly path: "/vault/secrets";
373
+ };
374
+ readonly "vault.secrets.totp": {
375
+ readonly method: "get";
376
+ readonly path: "/vault/secrets/{key}/totp";
377
+ };
378
+ readonly "vault.secrets.update": {
379
+ readonly method: "patch";
380
+ readonly path: "/vault/secrets/{key}";
381
+ };
382
+ readonly "vault.secrets.upsert": {
383
+ readonly method: "put";
384
+ readonly path: "/vault/secrets/{key}";
385
+ };
386
+ readonly "vault.secrets.value": {
387
+ readonly method: "get";
388
+ readonly path: "/vault/secrets/{key}/value";
389
+ };
390
+ };
391
+ export type CliOpenApiRouteId = keyof typeof CLI_OPENAPI_ROUTES;
@@ -0,0 +1,100 @@
1
+ // Generated by scripts/generate/cli-contracts.mjs. Do not edit by hand.
2
+ export const CLI_OPENAPI_ROUTES = {
3
+ "ai.credentials.create": { method: "post", path: "/ai/credentials" },
4
+ "ai.credentials.delete": { method: "delete", path: "/ai/credentials/{credentialId}" },
5
+ "ai.credentials.get": { method: "get", path: "/ai/credentials/{credentialId}" },
6
+ "ai.credentials.list": { method: "get", path: "/ai/credentials" },
7
+ "ai.credentials.test": { method: "post", path: "/ai/credentials/{credentialId}/test" },
8
+ "ai.credentials.update": { method: "patch", path: "/ai/credentials/{credentialId}" },
9
+ "ai.models.list": { method: "get", path: "/ai/models" },
10
+ "api-keys.create": { method: "post", path: "/api-keys" },
11
+ "api-keys.delete": { method: "delete", path: "/api-keys/{keyId}" },
12
+ "api-keys.list": { method: "get", path: "/api-keys" },
13
+ "auth.whoami": { method: "get", path: "/auth/whoami" },
14
+ "browser-extensions.delete": { method: "delete", path: "/browser-extensions/{extensionId}" },
15
+ "browser-extensions.get": { method: "get", path: "/browser-extensions/{extensionId}" },
16
+ "browser-extensions.import": { method: "post", path: "/browser-extensions/import" },
17
+ "browser-extensions.list": { method: "get", path: "/browser-extensions" },
18
+ "browser-extensions.update": { method: "patch", path: "/browser-extensions/{extensionId}" },
19
+ "browser-extensions.upload": { method: "post", path: "/browser-extensions/upload" },
20
+ "files.content": { method: "get", path: "/files/{fileId}/content" },
21
+ "files.delete": { method: "delete", path: "/files/{fileId}" },
22
+ "files.get": { method: "get", path: "/files/{fileId}" },
23
+ "files.list": { method: "get", path: "/files" },
24
+ "files.update": { method: "patch", path: "/files/{fileId}" },
25
+ "files.upload": { method: "post", path: "/files" },
26
+ "help": { method: "get", path: "/help" },
27
+ "proxies.create": { method: "post", path: "/proxies" },
28
+ "proxies.delete": { method: "delete", path: "/proxies/{proxyId}" },
29
+ "proxies.get": { method: "get", path: "/proxies/{proxyId}" },
30
+ "proxies.list": { method: "get", path: "/proxies" },
31
+ "proxies.pools.get": { method: "get", path: "/proxies/pools/{poolId}" },
32
+ "proxies.pools.list": { method: "get", path: "/proxies/pools" },
33
+ "proxies.test": { method: "post", path: "/proxies/{proxyId}/test" },
34
+ "proxies.update": { method: "patch", path: "/proxies/{proxyId}" },
35
+ "runs.activity.list": { method: "get", path: "/runs/{runId}/activity" },
36
+ "runs.activity.stream": { method: "get", path: "/runs/{runId}/activity/stream" },
37
+ "runs.events.list": { method: "get", path: "/runs/{runId}/events" },
38
+ "runs.events.stream": { method: "get", path: "/runs/{runId}/events/stream" },
39
+ "runs.files.export": { method: "post", path: "/runs/{runId}/files/export" },
40
+ "runs.files.list": { method: "get", path: "/runs/{runId}/files" },
41
+ "runs.get": { method: "get", path: "/runs/{runId}" },
42
+ "runs.invocations.get": { method: "get", path: "/runs/{runId}/invocations/{invocationId}" },
43
+ "runs.invocations.list": { method: "get", path: "/runs/{runId}/invocations" },
44
+ "runs.list": { method: "get", path: "/runs" },
45
+ "runs.live": { method: "post", path: "/runs/{runId}/live" },
46
+ "runs.recording": { method: "post", path: "/runs/{runId}/recording" },
47
+ "runtimes.create": { method: "post", path: "/runtimes" },
48
+ "runtimes.delete": { method: "delete", path: "/runtimes/{runtimeId}" },
49
+ "runtimes.files.collect": { method: "post", path: "/runtimes/{runtimeId}/files/collect" },
50
+ "runtimes.files.list": { method: "get", path: "/runtimes/{runtimeId}/files" },
51
+ "runtimes.files.stage": { method: "post", path: "/runtimes/{runtimeId}/files/stage" },
52
+ "runtimes.files.upload": { method: "post", path: "/runtimes/{runtimeId}/files/upload" },
53
+ "runtimes.get": { method: "get", path: "/runtimes/{runtimeId}" },
54
+ "runtimes.invocations.cancel": { method: "post", path: "/runtimes/{runtimeId}/invocations/{invocationId}/cancel" },
55
+ "runtimes.invocations.create": { method: "post", path: "/runtimes/{runtimeId}/invocations" },
56
+ "runtimes.invocations.wait": { method: "post", path: "/runtimes/{runtimeId}/invocations/{invocationId}/wait" },
57
+ "runtimes.list": { method: "get", path: "/runtimes" },
58
+ "runtimes.start": { method: "post", path: "/runtimes/{runtimeId}/start" },
59
+ "runtimes.stop": { method: "post", path: "/runtimes/{runtimeId}/stop" },
60
+ "runtimes.targets.activate": { method: "post", path: "/runtimes/{runtimeId}/targets/{targetId}/activate" },
61
+ "runtimes.targets.create": { method: "post", path: "/runtimes/{runtimeId}/targets" },
62
+ "runtimes.targets.delete": { method: "delete", path: "/runtimes/{runtimeId}/targets/{targetId}" },
63
+ "runtimes.targets.get": { method: "get", path: "/runtimes/{runtimeId}/targets/{targetId}" },
64
+ "runtimes.targets.list": { method: "get", path: "/runtimes/{runtimeId}/targets" },
65
+ "runtimes.update": { method: "patch", path: "/runtimes/{runtimeId}" },
66
+ "spaces.create": { method: "post", path: "/spaces" },
67
+ "spaces.delete": { method: "delete", path: "/spaces/{spaceId}" },
68
+ "spaces.environment.get": { method: "get", path: "/spaces/{spaceId}/environment" },
69
+ "spaces.environment.update": { method: "patch", path: "/spaces/{spaceId}/environment" },
70
+ "spaces.get": { method: "get", path: "/spaces/{spaceId}" },
71
+ "spaces.list": { method: "get", path: "/spaces" },
72
+ "spaces.update": { method: "patch", path: "/spaces/{spaceId}" },
73
+ "subaccounts.archive": { method: "post", path: "/subaccounts/{subaccountId}/archive" },
74
+ "subaccounts.create": { method: "post", path: "/subaccounts" },
75
+ "subaccounts.get": { method: "get", path: "/subaccounts/{subaccountId}" },
76
+ "subaccounts.list": { method: "get", path: "/subaccounts" },
77
+ "subaccounts.update": { method: "patch", path: "/subaccounts/{subaccountId}" },
78
+ "subaccounts.usage.list": { method: "get", path: "/subaccounts/usage" },
79
+ "tool-calls.get": { method: "get", path: "/tool-calls/{id}" },
80
+ "tool-calls.list": { method: "get", path: "/tool-calls" },
81
+ "tools.create": { method: "post", path: "/tools" },
82
+ "tools.delete": { method: "delete", path: "/tools/{id}" },
83
+ "tools.get": { method: "get", path: "/tools/{id}" },
84
+ "tools.list": { method: "get", path: "/tools" },
85
+ "tools.test": { method: "post", path: "/tools/{id}/test" },
86
+ "tools.update": { method: "patch", path: "/tools/{id}" },
87
+ "toolsets.create": { method: "post", path: "/toolsets" },
88
+ "toolsets.delete": { method: "delete", path: "/toolsets/{id}" },
89
+ "toolsets.get": { method: "get", path: "/toolsets/{id}" },
90
+ "toolsets.list": { method: "get", path: "/toolsets" },
91
+ "toolsets.update": { method: "patch", path: "/toolsets/{id}" },
92
+ "usage.get": { method: "get", path: "/usage" },
93
+ "vault.secrets.delete": { method: "delete", path: "/vault/secrets/{key}" },
94
+ "vault.secrets.get": { method: "get", path: "/vault/secrets/{key}" },
95
+ "vault.secrets.list": { method: "get", path: "/vault/secrets" },
96
+ "vault.secrets.totp": { method: "get", path: "/vault/secrets/{key}/totp" },
97
+ "vault.secrets.update": { method: "patch", path: "/vault/secrets/{key}" },
98
+ "vault.secrets.upsert": { method: "put", path: "/vault/secrets/{key}" },
99
+ "vault.secrets.value": { method: "get", path: "/vault/secrets/{key}/value" },
100
+ };