@bytevion/cli 0.1.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/bin/run.js +7 -0
- package/dist/base.d.ts +20 -0
- package/dist/base.js +49 -0
- package/dist/commands/batch/list.d.ts +5 -0
- package/dist/commands/batch/list.js +22 -0
- package/dist/commands/batch/poll.d.ts +13 -0
- package/dist/commands/batch/poll.js +42 -0
- package/dist/commands/batch/submit.d.ts +13 -0
- package/dist/commands/batch/submit.js +74 -0
- package/dist/commands/doctor.d.ts +5 -0
- package/dist/commands/doctor.js +65 -0
- package/dist/commands/env.d.ts +10 -0
- package/dist/commands/env.js +35 -0
- package/dist/commands/init.d.ts +12 -0
- package/dist/commands/init.js +58 -0
- package/dist/commands/integrate.d.ts +20 -0
- package/dist/commands/integrate.js +133 -0
- package/dist/commands/keys/create.d.ts +11 -0
- package/dist/commands/keys/create.js +33 -0
- package/dist/commands/keys/list.d.ts +5 -0
- package/dist/commands/keys/list.js +21 -0
- package/dist/commands/keys/revoke.d.ts +11 -0
- package/dist/commands/keys/revoke.js +19 -0
- package/dist/commands/keys/rotate.d.ts +11 -0
- package/dist/commands/keys/rotate.js +24 -0
- package/dist/commands/login.d.ts +9 -0
- package/dist/commands/login.js +76 -0
- package/dist/commands/logout.d.ts +5 -0
- package/dist/commands/logout.js +24 -0
- package/dist/commands/opt/preset.d.ts +8 -0
- package/dist/commands/opt/preset.js +23 -0
- package/dist/commands/opt/set.d.ts +10 -0
- package/dist/commands/opt/set.js +22 -0
- package/dist/commands/opt/show.d.ts +5 -0
- package/dist/commands/opt/show.js +24 -0
- package/dist/commands/providers/add.d.ts +12 -0
- package/dist/commands/providers/add.js +40 -0
- package/dist/commands/providers/list.d.ts +5 -0
- package/dist/commands/providers/list.js +22 -0
- package/dist/commands/providers/rotate.d.ts +14 -0
- package/dist/commands/providers/rotate.js +28 -0
- package/dist/commands/providers/test.d.ts +11 -0
- package/dist/commands/providers/test.js +22 -0
- package/dist/commands/run.d.ts +13 -0
- package/dist/commands/run.js +32 -0
- package/dist/commands/sessions/index.d.ts +5 -0
- package/dist/commands/sessions/index.js +21 -0
- package/dist/commands/sessions/revoke.d.ts +8 -0
- package/dist/commands/sessions/revoke.js +19 -0
- package/dist/commands/stats.d.ts +5 -0
- package/dist/commands/stats.js +27 -0
- package/dist/commands/usage.d.ts +8 -0
- package/dist/commands/usage.js +32 -0
- package/dist/commands/whoami.d.ts +5 -0
- package/dist/commands/whoami.js +19 -0
- package/dist/lib/api.d.ts +40 -0
- package/dist/lib/api.js +147 -0
- package/dist/lib/config.d.ts +20 -0
- package/dist/lib/config.js +52 -0
- package/dist/lib/credentials.d.ts +5 -0
- package/dist/lib/credentials.js +50 -0
- package/dist/lib/errors.d.ts +7 -0
- package/dist/lib/errors.js +30 -0
- package/dist/lib/integrations.d.ts +23 -0
- package/dist/lib/integrations.js +145 -0
- package/dist/lib/output.d.ts +4 -0
- package/dist/lib/output.js +37 -0
- package/dist/lib/paths.d.ts +3 -0
- package/dist/lib/paths.js +19 -0
- package/dist/lib/shell.d.ts +4 -0
- package/dist/lib/shell.js +25 -0
- package/dist/lib/util.d.ts +4 -0
- package/dist/lib/util.js +101 -0
- package/oclif.manifest.json +1516 -0
- package/package.json +59 -0
|
@@ -0,0 +1,1516 @@
|
|
|
1
|
+
{
|
|
2
|
+
"commands": {
|
|
3
|
+
"doctor": {
|
|
4
|
+
"aliases": [],
|
|
5
|
+
"args": {},
|
|
6
|
+
"description": "Check connectivity, auth, provider, and gateway health in one shot.",
|
|
7
|
+
"flags": {
|
|
8
|
+
"json": {
|
|
9
|
+
"description": "Format output as json.",
|
|
10
|
+
"helpGroup": "GLOBAL",
|
|
11
|
+
"name": "json",
|
|
12
|
+
"allowNo": false,
|
|
13
|
+
"type": "boolean"
|
|
14
|
+
},
|
|
15
|
+
"profile": {
|
|
16
|
+
"description": "Configuration profile to use",
|
|
17
|
+
"env": "BYTE_PROFILE",
|
|
18
|
+
"name": "profile",
|
|
19
|
+
"hasDynamicHelp": false,
|
|
20
|
+
"multiple": false,
|
|
21
|
+
"type": "option"
|
|
22
|
+
},
|
|
23
|
+
"base-url": {
|
|
24
|
+
"description": "Override the API base URL",
|
|
25
|
+
"env": "BYTE_BASE_URL",
|
|
26
|
+
"name": "base-url",
|
|
27
|
+
"hasDynamicHelp": false,
|
|
28
|
+
"multiple": false,
|
|
29
|
+
"type": "option"
|
|
30
|
+
}
|
|
31
|
+
},
|
|
32
|
+
"hasDynamicHelp": false,
|
|
33
|
+
"hiddenAliases": [],
|
|
34
|
+
"id": "doctor",
|
|
35
|
+
"pluginAlias": "@bytevion/cli",
|
|
36
|
+
"pluginName": "@bytevion/cli",
|
|
37
|
+
"pluginType": "core",
|
|
38
|
+
"strict": true,
|
|
39
|
+
"enableJsonFlag": true,
|
|
40
|
+
"isESM": false,
|
|
41
|
+
"relativePath": [
|
|
42
|
+
"dist",
|
|
43
|
+
"commands",
|
|
44
|
+
"doctor.js"
|
|
45
|
+
]
|
|
46
|
+
},
|
|
47
|
+
"env": {
|
|
48
|
+
"aliases": [],
|
|
49
|
+
"args": {},
|
|
50
|
+
"description": "Print shell environment exports that point an SDK or tool at Byte.",
|
|
51
|
+
"examples": [
|
|
52
|
+
"eval \"$(<%= config.bin %> env)\"",
|
|
53
|
+
"<%= config.bin %> env --sdk anthropic --shell powershell"
|
|
54
|
+
],
|
|
55
|
+
"flags": {
|
|
56
|
+
"json": {
|
|
57
|
+
"description": "Format output as json.",
|
|
58
|
+
"helpGroup": "GLOBAL",
|
|
59
|
+
"name": "json",
|
|
60
|
+
"allowNo": false,
|
|
61
|
+
"type": "boolean"
|
|
62
|
+
},
|
|
63
|
+
"profile": {
|
|
64
|
+
"description": "Configuration profile to use",
|
|
65
|
+
"env": "BYTE_PROFILE",
|
|
66
|
+
"name": "profile",
|
|
67
|
+
"hasDynamicHelp": false,
|
|
68
|
+
"multiple": false,
|
|
69
|
+
"type": "option"
|
|
70
|
+
},
|
|
71
|
+
"base-url": {
|
|
72
|
+
"description": "Override the API base URL",
|
|
73
|
+
"env": "BYTE_BASE_URL",
|
|
74
|
+
"name": "base-url",
|
|
75
|
+
"hasDynamicHelp": false,
|
|
76
|
+
"multiple": false,
|
|
77
|
+
"type": "option"
|
|
78
|
+
},
|
|
79
|
+
"shell": {
|
|
80
|
+
"description": "Shell syntax",
|
|
81
|
+
"name": "shell",
|
|
82
|
+
"hasDynamicHelp": false,
|
|
83
|
+
"multiple": false,
|
|
84
|
+
"options": [
|
|
85
|
+
"bash",
|
|
86
|
+
"zsh",
|
|
87
|
+
"fish",
|
|
88
|
+
"powershell",
|
|
89
|
+
"cmd"
|
|
90
|
+
],
|
|
91
|
+
"type": "option"
|
|
92
|
+
},
|
|
93
|
+
"sdk": {
|
|
94
|
+
"description": "Target SDK",
|
|
95
|
+
"name": "sdk",
|
|
96
|
+
"default": "openai",
|
|
97
|
+
"hasDynamicHelp": false,
|
|
98
|
+
"multiple": false,
|
|
99
|
+
"options": [
|
|
100
|
+
"openai",
|
|
101
|
+
"anthropic"
|
|
102
|
+
],
|
|
103
|
+
"type": "option"
|
|
104
|
+
}
|
|
105
|
+
},
|
|
106
|
+
"hasDynamicHelp": false,
|
|
107
|
+
"hiddenAliases": [],
|
|
108
|
+
"id": "env",
|
|
109
|
+
"pluginAlias": "@bytevion/cli",
|
|
110
|
+
"pluginName": "@bytevion/cli",
|
|
111
|
+
"pluginType": "core",
|
|
112
|
+
"strict": true,
|
|
113
|
+
"enableJsonFlag": true,
|
|
114
|
+
"isESM": false,
|
|
115
|
+
"relativePath": [
|
|
116
|
+
"dist",
|
|
117
|
+
"commands",
|
|
118
|
+
"env.js"
|
|
119
|
+
]
|
|
120
|
+
},
|
|
121
|
+
"init": {
|
|
122
|
+
"aliases": [
|
|
123
|
+
"onboard"
|
|
124
|
+
],
|
|
125
|
+
"args": {},
|
|
126
|
+
"description": "Guided setup: add a provider key, choose a preset, and create your Byte API key.",
|
|
127
|
+
"flags": {
|
|
128
|
+
"json": {
|
|
129
|
+
"description": "Format output as json.",
|
|
130
|
+
"helpGroup": "GLOBAL",
|
|
131
|
+
"name": "json",
|
|
132
|
+
"allowNo": false,
|
|
133
|
+
"type": "boolean"
|
|
134
|
+
},
|
|
135
|
+
"profile": {
|
|
136
|
+
"description": "Configuration profile to use",
|
|
137
|
+
"env": "BYTE_PROFILE",
|
|
138
|
+
"name": "profile",
|
|
139
|
+
"hasDynamicHelp": false,
|
|
140
|
+
"multiple": false,
|
|
141
|
+
"type": "option"
|
|
142
|
+
},
|
|
143
|
+
"base-url": {
|
|
144
|
+
"description": "Override the API base URL",
|
|
145
|
+
"env": "BYTE_BASE_URL",
|
|
146
|
+
"name": "base-url",
|
|
147
|
+
"hasDynamicHelp": false,
|
|
148
|
+
"multiple": false,
|
|
149
|
+
"type": "option"
|
|
150
|
+
},
|
|
151
|
+
"provider-key": {
|
|
152
|
+
"description": "Upstream provider API key (BYOK)",
|
|
153
|
+
"env": "BYTE_PROVIDER_KEY",
|
|
154
|
+
"name": "provider-key",
|
|
155
|
+
"hasDynamicHelp": false,
|
|
156
|
+
"multiple": false,
|
|
157
|
+
"type": "option"
|
|
158
|
+
},
|
|
159
|
+
"preset": {
|
|
160
|
+
"description": "Optimization preset",
|
|
161
|
+
"name": "preset",
|
|
162
|
+
"default": "balanced",
|
|
163
|
+
"hasDynamicHelp": false,
|
|
164
|
+
"multiple": false,
|
|
165
|
+
"options": [
|
|
166
|
+
"balanced",
|
|
167
|
+
"max_savings",
|
|
168
|
+
"lowest_latency",
|
|
169
|
+
"reliability_first"
|
|
170
|
+
],
|
|
171
|
+
"type": "option"
|
|
172
|
+
},
|
|
173
|
+
"key-name": {
|
|
174
|
+
"description": "Name for the Byte API key",
|
|
175
|
+
"name": "key-name",
|
|
176
|
+
"default": "cli",
|
|
177
|
+
"hasDynamicHelp": false,
|
|
178
|
+
"multiple": false,
|
|
179
|
+
"type": "option"
|
|
180
|
+
},
|
|
181
|
+
"skip-provider": {
|
|
182
|
+
"description": "Skip adding a provider key",
|
|
183
|
+
"name": "skip-provider",
|
|
184
|
+
"allowNo": false,
|
|
185
|
+
"type": "boolean"
|
|
186
|
+
}
|
|
187
|
+
},
|
|
188
|
+
"hasDynamicHelp": false,
|
|
189
|
+
"hiddenAliases": [],
|
|
190
|
+
"id": "init",
|
|
191
|
+
"pluginAlias": "@bytevion/cli",
|
|
192
|
+
"pluginName": "@bytevion/cli",
|
|
193
|
+
"pluginType": "core",
|
|
194
|
+
"strict": true,
|
|
195
|
+
"enableJsonFlag": true,
|
|
196
|
+
"isESM": false,
|
|
197
|
+
"relativePath": [
|
|
198
|
+
"dist",
|
|
199
|
+
"commands",
|
|
200
|
+
"init.js"
|
|
201
|
+
]
|
|
202
|
+
},
|
|
203
|
+
"integrate": {
|
|
204
|
+
"aliases": [],
|
|
205
|
+
"args": {
|
|
206
|
+
"target": {
|
|
207
|
+
"description": "Target to wire (run --list to see all)",
|
|
208
|
+
"name": "target",
|
|
209
|
+
"required": false
|
|
210
|
+
}
|
|
211
|
+
},
|
|
212
|
+
"description": "Wire a coding harness or SDK to Byte (Claude Code, Codex, Cursor, Cline, Aider, OpenAI/Anthropic SDK).",
|
|
213
|
+
"examples": [
|
|
214
|
+
"<%= config.bin %> integrate --list",
|
|
215
|
+
"<%= config.bin %> integrate codex",
|
|
216
|
+
"<%= config.bin %> integrate claude-code --write --preset lowest_latency"
|
|
217
|
+
],
|
|
218
|
+
"flags": {
|
|
219
|
+
"json": {
|
|
220
|
+
"description": "Format output as json.",
|
|
221
|
+
"helpGroup": "GLOBAL",
|
|
222
|
+
"name": "json",
|
|
223
|
+
"allowNo": false,
|
|
224
|
+
"type": "boolean"
|
|
225
|
+
},
|
|
226
|
+
"profile": {
|
|
227
|
+
"description": "Configuration profile to use",
|
|
228
|
+
"env": "BYTE_PROFILE",
|
|
229
|
+
"name": "profile",
|
|
230
|
+
"hasDynamicHelp": false,
|
|
231
|
+
"multiple": false,
|
|
232
|
+
"type": "option"
|
|
233
|
+
},
|
|
234
|
+
"base-url": {
|
|
235
|
+
"description": "Override the API base URL",
|
|
236
|
+
"env": "BYTE_BASE_URL",
|
|
237
|
+
"name": "base-url",
|
|
238
|
+
"hasDynamicHelp": false,
|
|
239
|
+
"multiple": false,
|
|
240
|
+
"type": "option"
|
|
241
|
+
},
|
|
242
|
+
"list": {
|
|
243
|
+
"description": "List supported targets and live readiness",
|
|
244
|
+
"name": "list",
|
|
245
|
+
"allowNo": false,
|
|
246
|
+
"type": "boolean"
|
|
247
|
+
},
|
|
248
|
+
"shell": {
|
|
249
|
+
"description": "Shell syntax for env output",
|
|
250
|
+
"name": "shell",
|
|
251
|
+
"hasDynamicHelp": false,
|
|
252
|
+
"multiple": false,
|
|
253
|
+
"options": [
|
|
254
|
+
"bash",
|
|
255
|
+
"zsh",
|
|
256
|
+
"fish",
|
|
257
|
+
"powershell",
|
|
258
|
+
"cmd"
|
|
259
|
+
],
|
|
260
|
+
"type": "option"
|
|
261
|
+
},
|
|
262
|
+
"write": {
|
|
263
|
+
"description": "Write tool config files (a timestamped .bak is kept)",
|
|
264
|
+
"name": "write",
|
|
265
|
+
"allowNo": false,
|
|
266
|
+
"type": "boolean"
|
|
267
|
+
},
|
|
268
|
+
"yes": {
|
|
269
|
+
"char": "y",
|
|
270
|
+
"description": "Skip confirmation prompts",
|
|
271
|
+
"name": "yes",
|
|
272
|
+
"allowNo": false,
|
|
273
|
+
"type": "boolean"
|
|
274
|
+
},
|
|
275
|
+
"key": {
|
|
276
|
+
"description": "Byte API key to use (defaults to the saved profile key)",
|
|
277
|
+
"name": "key",
|
|
278
|
+
"hasDynamicHelp": false,
|
|
279
|
+
"multiple": false,
|
|
280
|
+
"type": "option"
|
|
281
|
+
},
|
|
282
|
+
"preset": {
|
|
283
|
+
"description": "Apply this optimization preset to the org before wiring",
|
|
284
|
+
"name": "preset",
|
|
285
|
+
"hasDynamicHelp": false,
|
|
286
|
+
"multiple": false,
|
|
287
|
+
"options": [
|
|
288
|
+
"balanced",
|
|
289
|
+
"max_savings",
|
|
290
|
+
"lowest_latency",
|
|
291
|
+
"reliability_first"
|
|
292
|
+
],
|
|
293
|
+
"type": "option"
|
|
294
|
+
}
|
|
295
|
+
},
|
|
296
|
+
"hasDynamicHelp": false,
|
|
297
|
+
"hiddenAliases": [],
|
|
298
|
+
"id": "integrate",
|
|
299
|
+
"pluginAlias": "@bytevion/cli",
|
|
300
|
+
"pluginName": "@bytevion/cli",
|
|
301
|
+
"pluginType": "core",
|
|
302
|
+
"strict": true,
|
|
303
|
+
"enableJsonFlag": true,
|
|
304
|
+
"isESM": false,
|
|
305
|
+
"relativePath": [
|
|
306
|
+
"dist",
|
|
307
|
+
"commands",
|
|
308
|
+
"integrate.js"
|
|
309
|
+
]
|
|
310
|
+
},
|
|
311
|
+
"login": {
|
|
312
|
+
"aliases": [],
|
|
313
|
+
"args": {},
|
|
314
|
+
"description": "Sign in from this terminal by approving a device code in the dashboard.",
|
|
315
|
+
"examples": [
|
|
316
|
+
"<%= config.bin %> login",
|
|
317
|
+
"<%= config.bin %> login --no-browser"
|
|
318
|
+
],
|
|
319
|
+
"flags": {
|
|
320
|
+
"json": {
|
|
321
|
+
"description": "Format output as json.",
|
|
322
|
+
"helpGroup": "GLOBAL",
|
|
323
|
+
"name": "json",
|
|
324
|
+
"allowNo": false,
|
|
325
|
+
"type": "boolean"
|
|
326
|
+
},
|
|
327
|
+
"profile": {
|
|
328
|
+
"description": "Configuration profile to use",
|
|
329
|
+
"env": "BYTE_PROFILE",
|
|
330
|
+
"name": "profile",
|
|
331
|
+
"hasDynamicHelp": false,
|
|
332
|
+
"multiple": false,
|
|
333
|
+
"type": "option"
|
|
334
|
+
},
|
|
335
|
+
"base-url": {
|
|
336
|
+
"description": "Override the API base URL",
|
|
337
|
+
"env": "BYTE_BASE_URL",
|
|
338
|
+
"name": "base-url",
|
|
339
|
+
"hasDynamicHelp": false,
|
|
340
|
+
"multiple": false,
|
|
341
|
+
"type": "option"
|
|
342
|
+
},
|
|
343
|
+
"no-browser": {
|
|
344
|
+
"description": "Do not try to open the browser automatically",
|
|
345
|
+
"name": "no-browser",
|
|
346
|
+
"allowNo": false,
|
|
347
|
+
"type": "boolean"
|
|
348
|
+
}
|
|
349
|
+
},
|
|
350
|
+
"hasDynamicHelp": false,
|
|
351
|
+
"hiddenAliases": [],
|
|
352
|
+
"id": "login",
|
|
353
|
+
"pluginAlias": "@bytevion/cli",
|
|
354
|
+
"pluginName": "@bytevion/cli",
|
|
355
|
+
"pluginType": "core",
|
|
356
|
+
"strict": true,
|
|
357
|
+
"enableJsonFlag": true,
|
|
358
|
+
"isESM": false,
|
|
359
|
+
"relativePath": [
|
|
360
|
+
"dist",
|
|
361
|
+
"commands",
|
|
362
|
+
"login.js"
|
|
363
|
+
]
|
|
364
|
+
},
|
|
365
|
+
"logout": {
|
|
366
|
+
"aliases": [],
|
|
367
|
+
"args": {},
|
|
368
|
+
"description": "Sign out of this terminal and revoke the stored session token.",
|
|
369
|
+
"flags": {
|
|
370
|
+
"json": {
|
|
371
|
+
"description": "Format output as json.",
|
|
372
|
+
"helpGroup": "GLOBAL",
|
|
373
|
+
"name": "json",
|
|
374
|
+
"allowNo": false,
|
|
375
|
+
"type": "boolean"
|
|
376
|
+
},
|
|
377
|
+
"profile": {
|
|
378
|
+
"description": "Configuration profile to use",
|
|
379
|
+
"env": "BYTE_PROFILE",
|
|
380
|
+
"name": "profile",
|
|
381
|
+
"hasDynamicHelp": false,
|
|
382
|
+
"multiple": false,
|
|
383
|
+
"type": "option"
|
|
384
|
+
},
|
|
385
|
+
"base-url": {
|
|
386
|
+
"description": "Override the API base URL",
|
|
387
|
+
"env": "BYTE_BASE_URL",
|
|
388
|
+
"name": "base-url",
|
|
389
|
+
"hasDynamicHelp": false,
|
|
390
|
+
"multiple": false,
|
|
391
|
+
"type": "option"
|
|
392
|
+
}
|
|
393
|
+
},
|
|
394
|
+
"hasDynamicHelp": false,
|
|
395
|
+
"hiddenAliases": [],
|
|
396
|
+
"id": "logout",
|
|
397
|
+
"pluginAlias": "@bytevion/cli",
|
|
398
|
+
"pluginName": "@bytevion/cli",
|
|
399
|
+
"pluginType": "core",
|
|
400
|
+
"strict": true,
|
|
401
|
+
"enableJsonFlag": true,
|
|
402
|
+
"isESM": false,
|
|
403
|
+
"relativePath": [
|
|
404
|
+
"dist",
|
|
405
|
+
"commands",
|
|
406
|
+
"logout.js"
|
|
407
|
+
]
|
|
408
|
+
},
|
|
409
|
+
"run": {
|
|
410
|
+
"aliases": [],
|
|
411
|
+
"args": {
|
|
412
|
+
"prompt": {
|
|
413
|
+
"description": "The prompt to send",
|
|
414
|
+
"name": "prompt",
|
|
415
|
+
"required": true
|
|
416
|
+
}
|
|
417
|
+
},
|
|
418
|
+
"description": "Send a one-off prompt through the Byte gateway using your Byte API key.",
|
|
419
|
+
"examples": [
|
|
420
|
+
"<%= config.bin %> run \"summarize this release note\"",
|
|
421
|
+
"<%= config.bin %> run \"hi\" --model gpt-4o"
|
|
422
|
+
],
|
|
423
|
+
"flags": {
|
|
424
|
+
"json": {
|
|
425
|
+
"description": "Format output as json.",
|
|
426
|
+
"helpGroup": "GLOBAL",
|
|
427
|
+
"name": "json",
|
|
428
|
+
"allowNo": false,
|
|
429
|
+
"type": "boolean"
|
|
430
|
+
},
|
|
431
|
+
"profile": {
|
|
432
|
+
"description": "Configuration profile to use",
|
|
433
|
+
"env": "BYTE_PROFILE",
|
|
434
|
+
"name": "profile",
|
|
435
|
+
"hasDynamicHelp": false,
|
|
436
|
+
"multiple": false,
|
|
437
|
+
"type": "option"
|
|
438
|
+
},
|
|
439
|
+
"base-url": {
|
|
440
|
+
"description": "Override the API base URL",
|
|
441
|
+
"env": "BYTE_BASE_URL",
|
|
442
|
+
"name": "base-url",
|
|
443
|
+
"hasDynamicHelp": false,
|
|
444
|
+
"multiple": false,
|
|
445
|
+
"type": "option"
|
|
446
|
+
},
|
|
447
|
+
"model": {
|
|
448
|
+
"description": "Model or Byte alias",
|
|
449
|
+
"name": "model",
|
|
450
|
+
"default": "byte-default",
|
|
451
|
+
"hasDynamicHelp": false,
|
|
452
|
+
"multiple": false,
|
|
453
|
+
"type": "option"
|
|
454
|
+
},
|
|
455
|
+
"max-tokens": {
|
|
456
|
+
"description": "Maximum output tokens",
|
|
457
|
+
"name": "max-tokens",
|
|
458
|
+
"hasDynamicHelp": false,
|
|
459
|
+
"multiple": false,
|
|
460
|
+
"type": "option"
|
|
461
|
+
}
|
|
462
|
+
},
|
|
463
|
+
"hasDynamicHelp": false,
|
|
464
|
+
"hiddenAliases": [],
|
|
465
|
+
"id": "run",
|
|
466
|
+
"pluginAlias": "@bytevion/cli",
|
|
467
|
+
"pluginName": "@bytevion/cli",
|
|
468
|
+
"pluginType": "core",
|
|
469
|
+
"strict": true,
|
|
470
|
+
"enableJsonFlag": true,
|
|
471
|
+
"isESM": false,
|
|
472
|
+
"relativePath": [
|
|
473
|
+
"dist",
|
|
474
|
+
"commands",
|
|
475
|
+
"run.js"
|
|
476
|
+
]
|
|
477
|
+
},
|
|
478
|
+
"stats": {
|
|
479
|
+
"aliases": [],
|
|
480
|
+
"args": {},
|
|
481
|
+
"description": "Headline usage and savings summary for the current org.",
|
|
482
|
+
"flags": {
|
|
483
|
+
"json": {
|
|
484
|
+
"description": "Format output as json.",
|
|
485
|
+
"helpGroup": "GLOBAL",
|
|
486
|
+
"name": "json",
|
|
487
|
+
"allowNo": false,
|
|
488
|
+
"type": "boolean"
|
|
489
|
+
},
|
|
490
|
+
"profile": {
|
|
491
|
+
"description": "Configuration profile to use",
|
|
492
|
+
"env": "BYTE_PROFILE",
|
|
493
|
+
"name": "profile",
|
|
494
|
+
"hasDynamicHelp": false,
|
|
495
|
+
"multiple": false,
|
|
496
|
+
"type": "option"
|
|
497
|
+
},
|
|
498
|
+
"base-url": {
|
|
499
|
+
"description": "Override the API base URL",
|
|
500
|
+
"env": "BYTE_BASE_URL",
|
|
501
|
+
"name": "base-url",
|
|
502
|
+
"hasDynamicHelp": false,
|
|
503
|
+
"multiple": false,
|
|
504
|
+
"type": "option"
|
|
505
|
+
}
|
|
506
|
+
},
|
|
507
|
+
"hasDynamicHelp": false,
|
|
508
|
+
"hiddenAliases": [],
|
|
509
|
+
"id": "stats",
|
|
510
|
+
"pluginAlias": "@bytevion/cli",
|
|
511
|
+
"pluginName": "@bytevion/cli",
|
|
512
|
+
"pluginType": "core",
|
|
513
|
+
"strict": true,
|
|
514
|
+
"enableJsonFlag": true,
|
|
515
|
+
"isESM": false,
|
|
516
|
+
"relativePath": [
|
|
517
|
+
"dist",
|
|
518
|
+
"commands",
|
|
519
|
+
"stats.js"
|
|
520
|
+
]
|
|
521
|
+
},
|
|
522
|
+
"usage": {
|
|
523
|
+
"aliases": [],
|
|
524
|
+
"args": {},
|
|
525
|
+
"description": "Show usage and savings over time for the current org.",
|
|
526
|
+
"flags": {
|
|
527
|
+
"json": {
|
|
528
|
+
"description": "Format output as json.",
|
|
529
|
+
"helpGroup": "GLOBAL",
|
|
530
|
+
"name": "json",
|
|
531
|
+
"allowNo": false,
|
|
532
|
+
"type": "boolean"
|
|
533
|
+
},
|
|
534
|
+
"profile": {
|
|
535
|
+
"description": "Configuration profile to use",
|
|
536
|
+
"env": "BYTE_PROFILE",
|
|
537
|
+
"name": "profile",
|
|
538
|
+
"hasDynamicHelp": false,
|
|
539
|
+
"multiple": false,
|
|
540
|
+
"type": "option"
|
|
541
|
+
},
|
|
542
|
+
"base-url": {
|
|
543
|
+
"description": "Override the API base URL",
|
|
544
|
+
"env": "BYTE_BASE_URL",
|
|
545
|
+
"name": "base-url",
|
|
546
|
+
"hasDynamicHelp": false,
|
|
547
|
+
"multiple": false,
|
|
548
|
+
"type": "option"
|
|
549
|
+
},
|
|
550
|
+
"granularity": {
|
|
551
|
+
"description": "Bucket size",
|
|
552
|
+
"name": "granularity",
|
|
553
|
+
"default": "day",
|
|
554
|
+
"hasDynamicHelp": false,
|
|
555
|
+
"multiple": false,
|
|
556
|
+
"options": [
|
|
557
|
+
"day",
|
|
558
|
+
"hour"
|
|
559
|
+
],
|
|
560
|
+
"type": "option"
|
|
561
|
+
}
|
|
562
|
+
},
|
|
563
|
+
"hasDynamicHelp": false,
|
|
564
|
+
"hiddenAliases": [],
|
|
565
|
+
"id": "usage",
|
|
566
|
+
"pluginAlias": "@bytevion/cli",
|
|
567
|
+
"pluginName": "@bytevion/cli",
|
|
568
|
+
"pluginType": "core",
|
|
569
|
+
"strict": true,
|
|
570
|
+
"enableJsonFlag": true,
|
|
571
|
+
"isESM": false,
|
|
572
|
+
"relativePath": [
|
|
573
|
+
"dist",
|
|
574
|
+
"commands",
|
|
575
|
+
"usage.js"
|
|
576
|
+
]
|
|
577
|
+
},
|
|
578
|
+
"whoami": {
|
|
579
|
+
"aliases": [],
|
|
580
|
+
"args": {},
|
|
581
|
+
"description": "Show the signed-in identity for the current profile.",
|
|
582
|
+
"flags": {
|
|
583
|
+
"json": {
|
|
584
|
+
"description": "Format output as json.",
|
|
585
|
+
"helpGroup": "GLOBAL",
|
|
586
|
+
"name": "json",
|
|
587
|
+
"allowNo": false,
|
|
588
|
+
"type": "boolean"
|
|
589
|
+
},
|
|
590
|
+
"profile": {
|
|
591
|
+
"description": "Configuration profile to use",
|
|
592
|
+
"env": "BYTE_PROFILE",
|
|
593
|
+
"name": "profile",
|
|
594
|
+
"hasDynamicHelp": false,
|
|
595
|
+
"multiple": false,
|
|
596
|
+
"type": "option"
|
|
597
|
+
},
|
|
598
|
+
"base-url": {
|
|
599
|
+
"description": "Override the API base URL",
|
|
600
|
+
"env": "BYTE_BASE_URL",
|
|
601
|
+
"name": "base-url",
|
|
602
|
+
"hasDynamicHelp": false,
|
|
603
|
+
"multiple": false,
|
|
604
|
+
"type": "option"
|
|
605
|
+
}
|
|
606
|
+
},
|
|
607
|
+
"hasDynamicHelp": false,
|
|
608
|
+
"hiddenAliases": [],
|
|
609
|
+
"id": "whoami",
|
|
610
|
+
"pluginAlias": "@bytevion/cli",
|
|
611
|
+
"pluginName": "@bytevion/cli",
|
|
612
|
+
"pluginType": "core",
|
|
613
|
+
"strict": true,
|
|
614
|
+
"enableJsonFlag": true,
|
|
615
|
+
"isESM": false,
|
|
616
|
+
"relativePath": [
|
|
617
|
+
"dist",
|
|
618
|
+
"commands",
|
|
619
|
+
"whoami.js"
|
|
620
|
+
]
|
|
621
|
+
},
|
|
622
|
+
"batch:list": {
|
|
623
|
+
"aliases": [],
|
|
624
|
+
"args": {},
|
|
625
|
+
"description": "List recent batch jobs for the current org.",
|
|
626
|
+
"flags": {
|
|
627
|
+
"json": {
|
|
628
|
+
"description": "Format output as json.",
|
|
629
|
+
"helpGroup": "GLOBAL",
|
|
630
|
+
"name": "json",
|
|
631
|
+
"allowNo": false,
|
|
632
|
+
"type": "boolean"
|
|
633
|
+
},
|
|
634
|
+
"profile": {
|
|
635
|
+
"description": "Configuration profile to use",
|
|
636
|
+
"env": "BYTE_PROFILE",
|
|
637
|
+
"name": "profile",
|
|
638
|
+
"hasDynamicHelp": false,
|
|
639
|
+
"multiple": false,
|
|
640
|
+
"type": "option"
|
|
641
|
+
},
|
|
642
|
+
"base-url": {
|
|
643
|
+
"description": "Override the API base URL",
|
|
644
|
+
"env": "BYTE_BASE_URL",
|
|
645
|
+
"name": "base-url",
|
|
646
|
+
"hasDynamicHelp": false,
|
|
647
|
+
"multiple": false,
|
|
648
|
+
"type": "option"
|
|
649
|
+
}
|
|
650
|
+
},
|
|
651
|
+
"hasDynamicHelp": false,
|
|
652
|
+
"hiddenAliases": [],
|
|
653
|
+
"id": "batch:list",
|
|
654
|
+
"pluginAlias": "@bytevion/cli",
|
|
655
|
+
"pluginName": "@bytevion/cli",
|
|
656
|
+
"pluginType": "core",
|
|
657
|
+
"strict": true,
|
|
658
|
+
"enableJsonFlag": true,
|
|
659
|
+
"isESM": false,
|
|
660
|
+
"relativePath": [
|
|
661
|
+
"dist",
|
|
662
|
+
"commands",
|
|
663
|
+
"batch",
|
|
664
|
+
"list.js"
|
|
665
|
+
]
|
|
666
|
+
},
|
|
667
|
+
"batch:poll": {
|
|
668
|
+
"aliases": [],
|
|
669
|
+
"args": {
|
|
670
|
+
"id": {
|
|
671
|
+
"description": "Job id (see `byte batch list`)",
|
|
672
|
+
"name": "id",
|
|
673
|
+
"required": true
|
|
674
|
+
}
|
|
675
|
+
},
|
|
676
|
+
"description": "Show a batch job, optionally starting it and/or watching until it finishes.",
|
|
677
|
+
"flags": {
|
|
678
|
+
"json": {
|
|
679
|
+
"description": "Format output as json.",
|
|
680
|
+
"helpGroup": "GLOBAL",
|
|
681
|
+
"name": "json",
|
|
682
|
+
"allowNo": false,
|
|
683
|
+
"type": "boolean"
|
|
684
|
+
},
|
|
685
|
+
"profile": {
|
|
686
|
+
"description": "Configuration profile to use",
|
|
687
|
+
"env": "BYTE_PROFILE",
|
|
688
|
+
"name": "profile",
|
|
689
|
+
"hasDynamicHelp": false,
|
|
690
|
+
"multiple": false,
|
|
691
|
+
"type": "option"
|
|
692
|
+
},
|
|
693
|
+
"base-url": {
|
|
694
|
+
"description": "Override the API base URL",
|
|
695
|
+
"env": "BYTE_BASE_URL",
|
|
696
|
+
"name": "base-url",
|
|
697
|
+
"hasDynamicHelp": false,
|
|
698
|
+
"multiple": false,
|
|
699
|
+
"type": "option"
|
|
700
|
+
},
|
|
701
|
+
"run": {
|
|
702
|
+
"description": "Start the job before polling",
|
|
703
|
+
"name": "run",
|
|
704
|
+
"allowNo": false,
|
|
705
|
+
"type": "boolean"
|
|
706
|
+
},
|
|
707
|
+
"watch": {
|
|
708
|
+
"description": "Poll until the job leaves a pending state",
|
|
709
|
+
"name": "watch",
|
|
710
|
+
"allowNo": false,
|
|
711
|
+
"type": "boolean"
|
|
712
|
+
},
|
|
713
|
+
"interval": {
|
|
714
|
+
"description": "Seconds between polls when watching",
|
|
715
|
+
"name": "interval",
|
|
716
|
+
"default": 3,
|
|
717
|
+
"hasDynamicHelp": false,
|
|
718
|
+
"multiple": false,
|
|
719
|
+
"type": "option"
|
|
720
|
+
}
|
|
721
|
+
},
|
|
722
|
+
"hasDynamicHelp": false,
|
|
723
|
+
"hiddenAliases": [],
|
|
724
|
+
"id": "batch:poll",
|
|
725
|
+
"pluginAlias": "@bytevion/cli",
|
|
726
|
+
"pluginName": "@bytevion/cli",
|
|
727
|
+
"pluginType": "core",
|
|
728
|
+
"strict": true,
|
|
729
|
+
"enableJsonFlag": true,
|
|
730
|
+
"isESM": false,
|
|
731
|
+
"relativePath": [
|
|
732
|
+
"dist",
|
|
733
|
+
"commands",
|
|
734
|
+
"batch",
|
|
735
|
+
"poll.js"
|
|
736
|
+
]
|
|
737
|
+
},
|
|
738
|
+
"batch:submit": {
|
|
739
|
+
"aliases": [],
|
|
740
|
+
"args": {
|
|
741
|
+
"file": {
|
|
742
|
+
"description": "Path to a .json or .jsonl file of jobs",
|
|
743
|
+
"name": "file",
|
|
744
|
+
"required": true
|
|
745
|
+
}
|
|
746
|
+
},
|
|
747
|
+
"description": "Submit offline batch job(s) from a JSON/JSONL file (one conversation per job).",
|
|
748
|
+
"examples": [
|
|
749
|
+
"<%= config.bin %> batch submit jobs.jsonl --auto-start"
|
|
750
|
+
],
|
|
751
|
+
"flags": {
|
|
752
|
+
"json": {
|
|
753
|
+
"description": "Format output as json.",
|
|
754
|
+
"helpGroup": "GLOBAL",
|
|
755
|
+
"name": "json",
|
|
756
|
+
"allowNo": false,
|
|
757
|
+
"type": "boolean"
|
|
758
|
+
},
|
|
759
|
+
"profile": {
|
|
760
|
+
"description": "Configuration profile to use",
|
|
761
|
+
"env": "BYTE_PROFILE",
|
|
762
|
+
"name": "profile",
|
|
763
|
+
"hasDynamicHelp": false,
|
|
764
|
+
"multiple": false,
|
|
765
|
+
"type": "option"
|
|
766
|
+
},
|
|
767
|
+
"base-url": {
|
|
768
|
+
"description": "Override the API base URL",
|
|
769
|
+
"env": "BYTE_BASE_URL",
|
|
770
|
+
"name": "base-url",
|
|
771
|
+
"hasDynamicHelp": false,
|
|
772
|
+
"multiple": false,
|
|
773
|
+
"type": "option"
|
|
774
|
+
},
|
|
775
|
+
"model": {
|
|
776
|
+
"description": "Default model/alias for jobs that omit one",
|
|
777
|
+
"name": "model",
|
|
778
|
+
"hasDynamicHelp": false,
|
|
779
|
+
"multiple": false,
|
|
780
|
+
"type": "option"
|
|
781
|
+
},
|
|
782
|
+
"auto-start": {
|
|
783
|
+
"description": "Run jobs immediately after submitting",
|
|
784
|
+
"name": "auto-start",
|
|
785
|
+
"allowNo": false,
|
|
786
|
+
"type": "boolean"
|
|
787
|
+
}
|
|
788
|
+
},
|
|
789
|
+
"hasDynamicHelp": false,
|
|
790
|
+
"hiddenAliases": [],
|
|
791
|
+
"id": "batch:submit",
|
|
792
|
+
"pluginAlias": "@bytevion/cli",
|
|
793
|
+
"pluginName": "@bytevion/cli",
|
|
794
|
+
"pluginType": "core",
|
|
795
|
+
"strict": true,
|
|
796
|
+
"enableJsonFlag": true,
|
|
797
|
+
"isESM": false,
|
|
798
|
+
"relativePath": [
|
|
799
|
+
"dist",
|
|
800
|
+
"commands",
|
|
801
|
+
"batch",
|
|
802
|
+
"submit.js"
|
|
803
|
+
]
|
|
804
|
+
},
|
|
805
|
+
"keys:create": {
|
|
806
|
+
"aliases": [],
|
|
807
|
+
"args": {
|
|
808
|
+
"name": {
|
|
809
|
+
"description": "A label for the key (e.g. prod-chat)",
|
|
810
|
+
"name": "name",
|
|
811
|
+
"required": true
|
|
812
|
+
}
|
|
813
|
+
},
|
|
814
|
+
"description": "Create a new Byte API key. The secret is shown only once.",
|
|
815
|
+
"flags": {
|
|
816
|
+
"json": {
|
|
817
|
+
"description": "Format output as json.",
|
|
818
|
+
"helpGroup": "GLOBAL",
|
|
819
|
+
"name": "json",
|
|
820
|
+
"allowNo": false,
|
|
821
|
+
"type": "boolean"
|
|
822
|
+
},
|
|
823
|
+
"profile": {
|
|
824
|
+
"description": "Configuration profile to use",
|
|
825
|
+
"env": "BYTE_PROFILE",
|
|
826
|
+
"name": "profile",
|
|
827
|
+
"hasDynamicHelp": false,
|
|
828
|
+
"multiple": false,
|
|
829
|
+
"type": "option"
|
|
830
|
+
},
|
|
831
|
+
"base-url": {
|
|
832
|
+
"description": "Override the API base URL",
|
|
833
|
+
"env": "BYTE_BASE_URL",
|
|
834
|
+
"name": "base-url",
|
|
835
|
+
"hasDynamicHelp": false,
|
|
836
|
+
"multiple": false,
|
|
837
|
+
"type": "option"
|
|
838
|
+
},
|
|
839
|
+
"preset": {
|
|
840
|
+
"description": "Bind a default optimization preset to this key",
|
|
841
|
+
"name": "preset",
|
|
842
|
+
"hasDynamicHelp": false,
|
|
843
|
+
"multiple": false,
|
|
844
|
+
"options": [
|
|
845
|
+
"balanced",
|
|
846
|
+
"max_savings",
|
|
847
|
+
"lowest_latency",
|
|
848
|
+
"reliability_first",
|
|
849
|
+
"manual"
|
|
850
|
+
],
|
|
851
|
+
"type": "option"
|
|
852
|
+
}
|
|
853
|
+
},
|
|
854
|
+
"hasDynamicHelp": false,
|
|
855
|
+
"hiddenAliases": [],
|
|
856
|
+
"id": "keys:create",
|
|
857
|
+
"pluginAlias": "@bytevion/cli",
|
|
858
|
+
"pluginName": "@bytevion/cli",
|
|
859
|
+
"pluginType": "core",
|
|
860
|
+
"strict": true,
|
|
861
|
+
"enableJsonFlag": true,
|
|
862
|
+
"isESM": false,
|
|
863
|
+
"relativePath": [
|
|
864
|
+
"dist",
|
|
865
|
+
"commands",
|
|
866
|
+
"keys",
|
|
867
|
+
"create.js"
|
|
868
|
+
]
|
|
869
|
+
},
|
|
870
|
+
"keys:list": {
|
|
871
|
+
"aliases": [],
|
|
872
|
+
"args": {},
|
|
873
|
+
"description": "List the Byte API keys for the current org.",
|
|
874
|
+
"flags": {
|
|
875
|
+
"json": {
|
|
876
|
+
"description": "Format output as json.",
|
|
877
|
+
"helpGroup": "GLOBAL",
|
|
878
|
+
"name": "json",
|
|
879
|
+
"allowNo": false,
|
|
880
|
+
"type": "boolean"
|
|
881
|
+
},
|
|
882
|
+
"profile": {
|
|
883
|
+
"description": "Configuration profile to use",
|
|
884
|
+
"env": "BYTE_PROFILE",
|
|
885
|
+
"name": "profile",
|
|
886
|
+
"hasDynamicHelp": false,
|
|
887
|
+
"multiple": false,
|
|
888
|
+
"type": "option"
|
|
889
|
+
},
|
|
890
|
+
"base-url": {
|
|
891
|
+
"description": "Override the API base URL",
|
|
892
|
+
"env": "BYTE_BASE_URL",
|
|
893
|
+
"name": "base-url",
|
|
894
|
+
"hasDynamicHelp": false,
|
|
895
|
+
"multiple": false,
|
|
896
|
+
"type": "option"
|
|
897
|
+
}
|
|
898
|
+
},
|
|
899
|
+
"hasDynamicHelp": false,
|
|
900
|
+
"hiddenAliases": [],
|
|
901
|
+
"id": "keys:list",
|
|
902
|
+
"pluginAlias": "@bytevion/cli",
|
|
903
|
+
"pluginName": "@bytevion/cli",
|
|
904
|
+
"pluginType": "core",
|
|
905
|
+
"strict": true,
|
|
906
|
+
"enableJsonFlag": true,
|
|
907
|
+
"isESM": false,
|
|
908
|
+
"relativePath": [
|
|
909
|
+
"dist",
|
|
910
|
+
"commands",
|
|
911
|
+
"keys",
|
|
912
|
+
"list.js"
|
|
913
|
+
]
|
|
914
|
+
},
|
|
915
|
+
"keys:revoke": {
|
|
916
|
+
"aliases": [],
|
|
917
|
+
"args": {
|
|
918
|
+
"id": {
|
|
919
|
+
"description": "Key id (see `byte keys list`)",
|
|
920
|
+
"name": "id",
|
|
921
|
+
"required": true
|
|
922
|
+
}
|
|
923
|
+
},
|
|
924
|
+
"description": "Revoke (delete) a Byte API key.",
|
|
925
|
+
"flags": {
|
|
926
|
+
"json": {
|
|
927
|
+
"description": "Format output as json.",
|
|
928
|
+
"helpGroup": "GLOBAL",
|
|
929
|
+
"name": "json",
|
|
930
|
+
"allowNo": false,
|
|
931
|
+
"type": "boolean"
|
|
932
|
+
},
|
|
933
|
+
"profile": {
|
|
934
|
+
"description": "Configuration profile to use",
|
|
935
|
+
"env": "BYTE_PROFILE",
|
|
936
|
+
"name": "profile",
|
|
937
|
+
"hasDynamicHelp": false,
|
|
938
|
+
"multiple": false,
|
|
939
|
+
"type": "option"
|
|
940
|
+
},
|
|
941
|
+
"base-url": {
|
|
942
|
+
"description": "Override the API base URL",
|
|
943
|
+
"env": "BYTE_BASE_URL",
|
|
944
|
+
"name": "base-url",
|
|
945
|
+
"hasDynamicHelp": false,
|
|
946
|
+
"multiple": false,
|
|
947
|
+
"type": "option"
|
|
948
|
+
}
|
|
949
|
+
},
|
|
950
|
+
"hasDynamicHelp": false,
|
|
951
|
+
"hiddenAliases": [],
|
|
952
|
+
"id": "keys:revoke",
|
|
953
|
+
"pluginAlias": "@bytevion/cli",
|
|
954
|
+
"pluginName": "@bytevion/cli",
|
|
955
|
+
"pluginType": "core",
|
|
956
|
+
"strict": true,
|
|
957
|
+
"enableJsonFlag": true,
|
|
958
|
+
"isESM": false,
|
|
959
|
+
"relativePath": [
|
|
960
|
+
"dist",
|
|
961
|
+
"commands",
|
|
962
|
+
"keys",
|
|
963
|
+
"revoke.js"
|
|
964
|
+
]
|
|
965
|
+
},
|
|
966
|
+
"keys:rotate": {
|
|
967
|
+
"aliases": [],
|
|
968
|
+
"args": {
|
|
969
|
+
"id": {
|
|
970
|
+
"description": "Key id (see `byte keys list`)",
|
|
971
|
+
"name": "id",
|
|
972
|
+
"required": true
|
|
973
|
+
}
|
|
974
|
+
},
|
|
975
|
+
"description": "Rotate a Byte API key: issue a new secret and invalidate the old one.",
|
|
976
|
+
"flags": {
|
|
977
|
+
"json": {
|
|
978
|
+
"description": "Format output as json.",
|
|
979
|
+
"helpGroup": "GLOBAL",
|
|
980
|
+
"name": "json",
|
|
981
|
+
"allowNo": false,
|
|
982
|
+
"type": "boolean"
|
|
983
|
+
},
|
|
984
|
+
"profile": {
|
|
985
|
+
"description": "Configuration profile to use",
|
|
986
|
+
"env": "BYTE_PROFILE",
|
|
987
|
+
"name": "profile",
|
|
988
|
+
"hasDynamicHelp": false,
|
|
989
|
+
"multiple": false,
|
|
990
|
+
"type": "option"
|
|
991
|
+
},
|
|
992
|
+
"base-url": {
|
|
993
|
+
"description": "Override the API base URL",
|
|
994
|
+
"env": "BYTE_BASE_URL",
|
|
995
|
+
"name": "base-url",
|
|
996
|
+
"hasDynamicHelp": false,
|
|
997
|
+
"multiple": false,
|
|
998
|
+
"type": "option"
|
|
999
|
+
}
|
|
1000
|
+
},
|
|
1001
|
+
"hasDynamicHelp": false,
|
|
1002
|
+
"hiddenAliases": [],
|
|
1003
|
+
"id": "keys:rotate",
|
|
1004
|
+
"pluginAlias": "@bytevion/cli",
|
|
1005
|
+
"pluginName": "@bytevion/cli",
|
|
1006
|
+
"pluginType": "core",
|
|
1007
|
+
"strict": true,
|
|
1008
|
+
"enableJsonFlag": true,
|
|
1009
|
+
"isESM": false,
|
|
1010
|
+
"relativePath": [
|
|
1011
|
+
"dist",
|
|
1012
|
+
"commands",
|
|
1013
|
+
"keys",
|
|
1014
|
+
"rotate.js"
|
|
1015
|
+
]
|
|
1016
|
+
},
|
|
1017
|
+
"opt:preset": {
|
|
1018
|
+
"aliases": [],
|
|
1019
|
+
"args": {
|
|
1020
|
+
"preset": {
|
|
1021
|
+
"description": "Preset to apply",
|
|
1022
|
+
"name": "preset",
|
|
1023
|
+
"options": [
|
|
1024
|
+
"balanced",
|
|
1025
|
+
"max_savings",
|
|
1026
|
+
"lowest_latency",
|
|
1027
|
+
"reliability_first"
|
|
1028
|
+
],
|
|
1029
|
+
"required": true
|
|
1030
|
+
}
|
|
1031
|
+
},
|
|
1032
|
+
"description": "Apply an optimization preset for the whole org.",
|
|
1033
|
+
"flags": {
|
|
1034
|
+
"json": {
|
|
1035
|
+
"description": "Format output as json.",
|
|
1036
|
+
"helpGroup": "GLOBAL",
|
|
1037
|
+
"name": "json",
|
|
1038
|
+
"allowNo": false,
|
|
1039
|
+
"type": "boolean"
|
|
1040
|
+
},
|
|
1041
|
+
"profile": {
|
|
1042
|
+
"description": "Configuration profile to use",
|
|
1043
|
+
"env": "BYTE_PROFILE",
|
|
1044
|
+
"name": "profile",
|
|
1045
|
+
"hasDynamicHelp": false,
|
|
1046
|
+
"multiple": false,
|
|
1047
|
+
"type": "option"
|
|
1048
|
+
},
|
|
1049
|
+
"base-url": {
|
|
1050
|
+
"description": "Override the API base URL",
|
|
1051
|
+
"env": "BYTE_BASE_URL",
|
|
1052
|
+
"name": "base-url",
|
|
1053
|
+
"hasDynamicHelp": false,
|
|
1054
|
+
"multiple": false,
|
|
1055
|
+
"type": "option"
|
|
1056
|
+
}
|
|
1057
|
+
},
|
|
1058
|
+
"hasDynamicHelp": false,
|
|
1059
|
+
"hiddenAliases": [],
|
|
1060
|
+
"id": "opt:preset",
|
|
1061
|
+
"pluginAlias": "@bytevion/cli",
|
|
1062
|
+
"pluginName": "@bytevion/cli",
|
|
1063
|
+
"pluginType": "core",
|
|
1064
|
+
"strict": true,
|
|
1065
|
+
"enableJsonFlag": true,
|
|
1066
|
+
"isESM": false,
|
|
1067
|
+
"relativePath": [
|
|
1068
|
+
"dist",
|
|
1069
|
+
"commands",
|
|
1070
|
+
"opt",
|
|
1071
|
+
"preset.js"
|
|
1072
|
+
]
|
|
1073
|
+
},
|
|
1074
|
+
"opt:set": {
|
|
1075
|
+
"aliases": [],
|
|
1076
|
+
"args": {
|
|
1077
|
+
"flag": {
|
|
1078
|
+
"description": "Optimization field name",
|
|
1079
|
+
"name": "flag",
|
|
1080
|
+
"required": true
|
|
1081
|
+
},
|
|
1082
|
+
"value": {
|
|
1083
|
+
"description": "on or off",
|
|
1084
|
+
"name": "value",
|
|
1085
|
+
"options": [
|
|
1086
|
+
"on",
|
|
1087
|
+
"off",
|
|
1088
|
+
"true",
|
|
1089
|
+
"false"
|
|
1090
|
+
],
|
|
1091
|
+
"required": true
|
|
1092
|
+
}
|
|
1093
|
+
},
|
|
1094
|
+
"description": "Toggle a single optimization layer on or off. See field names with `byte opt show --json`.",
|
|
1095
|
+
"examples": [
|
|
1096
|
+
"<%= config.bin %> opt set compression_enabled off",
|
|
1097
|
+
"<%= config.bin %> opt set response_cache_enabled on"
|
|
1098
|
+
],
|
|
1099
|
+
"flags": {
|
|
1100
|
+
"json": {
|
|
1101
|
+
"description": "Format output as json.",
|
|
1102
|
+
"helpGroup": "GLOBAL",
|
|
1103
|
+
"name": "json",
|
|
1104
|
+
"allowNo": false,
|
|
1105
|
+
"type": "boolean"
|
|
1106
|
+
},
|
|
1107
|
+
"profile": {
|
|
1108
|
+
"description": "Configuration profile to use",
|
|
1109
|
+
"env": "BYTE_PROFILE",
|
|
1110
|
+
"name": "profile",
|
|
1111
|
+
"hasDynamicHelp": false,
|
|
1112
|
+
"multiple": false,
|
|
1113
|
+
"type": "option"
|
|
1114
|
+
},
|
|
1115
|
+
"base-url": {
|
|
1116
|
+
"description": "Override the API base URL",
|
|
1117
|
+
"env": "BYTE_BASE_URL",
|
|
1118
|
+
"name": "base-url",
|
|
1119
|
+
"hasDynamicHelp": false,
|
|
1120
|
+
"multiple": false,
|
|
1121
|
+
"type": "option"
|
|
1122
|
+
}
|
|
1123
|
+
},
|
|
1124
|
+
"hasDynamicHelp": false,
|
|
1125
|
+
"hiddenAliases": [],
|
|
1126
|
+
"id": "opt:set",
|
|
1127
|
+
"pluginAlias": "@bytevion/cli",
|
|
1128
|
+
"pluginName": "@bytevion/cli",
|
|
1129
|
+
"pluginType": "core",
|
|
1130
|
+
"strict": true,
|
|
1131
|
+
"enableJsonFlag": true,
|
|
1132
|
+
"isESM": false,
|
|
1133
|
+
"relativePath": [
|
|
1134
|
+
"dist",
|
|
1135
|
+
"commands",
|
|
1136
|
+
"opt",
|
|
1137
|
+
"set.js"
|
|
1138
|
+
]
|
|
1139
|
+
},
|
|
1140
|
+
"opt:show": {
|
|
1141
|
+
"aliases": [],
|
|
1142
|
+
"args": {},
|
|
1143
|
+
"description": "Show the current optimization preset and layer states for the org.",
|
|
1144
|
+
"flags": {
|
|
1145
|
+
"json": {
|
|
1146
|
+
"description": "Format output as json.",
|
|
1147
|
+
"helpGroup": "GLOBAL",
|
|
1148
|
+
"name": "json",
|
|
1149
|
+
"allowNo": false,
|
|
1150
|
+
"type": "boolean"
|
|
1151
|
+
},
|
|
1152
|
+
"profile": {
|
|
1153
|
+
"description": "Configuration profile to use",
|
|
1154
|
+
"env": "BYTE_PROFILE",
|
|
1155
|
+
"name": "profile",
|
|
1156
|
+
"hasDynamicHelp": false,
|
|
1157
|
+
"multiple": false,
|
|
1158
|
+
"type": "option"
|
|
1159
|
+
},
|
|
1160
|
+
"base-url": {
|
|
1161
|
+
"description": "Override the API base URL",
|
|
1162
|
+
"env": "BYTE_BASE_URL",
|
|
1163
|
+
"name": "base-url",
|
|
1164
|
+
"hasDynamicHelp": false,
|
|
1165
|
+
"multiple": false,
|
|
1166
|
+
"type": "option"
|
|
1167
|
+
}
|
|
1168
|
+
},
|
|
1169
|
+
"hasDynamicHelp": false,
|
|
1170
|
+
"hiddenAliases": [],
|
|
1171
|
+
"id": "opt:show",
|
|
1172
|
+
"pluginAlias": "@bytevion/cli",
|
|
1173
|
+
"pluginName": "@bytevion/cli",
|
|
1174
|
+
"pluginType": "core",
|
|
1175
|
+
"strict": true,
|
|
1176
|
+
"enableJsonFlag": true,
|
|
1177
|
+
"isESM": false,
|
|
1178
|
+
"relativePath": [
|
|
1179
|
+
"dist",
|
|
1180
|
+
"commands",
|
|
1181
|
+
"opt",
|
|
1182
|
+
"show.js"
|
|
1183
|
+
]
|
|
1184
|
+
},
|
|
1185
|
+
"providers:add": {
|
|
1186
|
+
"aliases": [],
|
|
1187
|
+
"args": {},
|
|
1188
|
+
"description": "Add an upstream provider key (BYOK). Byte stores it encrypted and can auto-import models.",
|
|
1189
|
+
"examples": [
|
|
1190
|
+
"<%= config.bin %> providers add",
|
|
1191
|
+
"<%= config.bin %> providers add --api-key sk-... --label \"OpenAI prod\""
|
|
1192
|
+
],
|
|
1193
|
+
"flags": {
|
|
1194
|
+
"json": {
|
|
1195
|
+
"description": "Format output as json.",
|
|
1196
|
+
"helpGroup": "GLOBAL",
|
|
1197
|
+
"name": "json",
|
|
1198
|
+
"allowNo": false,
|
|
1199
|
+
"type": "boolean"
|
|
1200
|
+
},
|
|
1201
|
+
"profile": {
|
|
1202
|
+
"description": "Configuration profile to use",
|
|
1203
|
+
"env": "BYTE_PROFILE",
|
|
1204
|
+
"name": "profile",
|
|
1205
|
+
"hasDynamicHelp": false,
|
|
1206
|
+
"multiple": false,
|
|
1207
|
+
"type": "option"
|
|
1208
|
+
},
|
|
1209
|
+
"base-url": {
|
|
1210
|
+
"description": "Override the API base URL",
|
|
1211
|
+
"env": "BYTE_BASE_URL",
|
|
1212
|
+
"name": "base-url",
|
|
1213
|
+
"hasDynamicHelp": false,
|
|
1214
|
+
"multiple": false,
|
|
1215
|
+
"type": "option"
|
|
1216
|
+
},
|
|
1217
|
+
"api-key": {
|
|
1218
|
+
"description": "Upstream provider API key",
|
|
1219
|
+
"env": "BYTE_PROVIDER_KEY",
|
|
1220
|
+
"name": "api-key",
|
|
1221
|
+
"hasDynamicHelp": false,
|
|
1222
|
+
"multiple": false,
|
|
1223
|
+
"type": "option"
|
|
1224
|
+
},
|
|
1225
|
+
"mode": {
|
|
1226
|
+
"description": "Gateway mode for this provider",
|
|
1227
|
+
"name": "mode",
|
|
1228
|
+
"default": "byte_auto",
|
|
1229
|
+
"hasDynamicHelp": false,
|
|
1230
|
+
"multiple": false,
|
|
1231
|
+
"type": "option"
|
|
1232
|
+
},
|
|
1233
|
+
"label": {
|
|
1234
|
+
"description": "A label for this connection",
|
|
1235
|
+
"name": "label",
|
|
1236
|
+
"hasDynamicHelp": false,
|
|
1237
|
+
"multiple": false,
|
|
1238
|
+
"type": "option"
|
|
1239
|
+
},
|
|
1240
|
+
"no-fetch": {
|
|
1241
|
+
"description": "Skip auto-importing the provider model list",
|
|
1242
|
+
"name": "no-fetch",
|
|
1243
|
+
"allowNo": false,
|
|
1244
|
+
"type": "boolean"
|
|
1245
|
+
}
|
|
1246
|
+
},
|
|
1247
|
+
"hasDynamicHelp": false,
|
|
1248
|
+
"hiddenAliases": [],
|
|
1249
|
+
"id": "providers:add",
|
|
1250
|
+
"pluginAlias": "@bytevion/cli",
|
|
1251
|
+
"pluginName": "@bytevion/cli",
|
|
1252
|
+
"pluginType": "core",
|
|
1253
|
+
"strict": true,
|
|
1254
|
+
"enableJsonFlag": true,
|
|
1255
|
+
"isESM": false,
|
|
1256
|
+
"relativePath": [
|
|
1257
|
+
"dist",
|
|
1258
|
+
"commands",
|
|
1259
|
+
"providers",
|
|
1260
|
+
"add.js"
|
|
1261
|
+
]
|
|
1262
|
+
},
|
|
1263
|
+
"providers:list": {
|
|
1264
|
+
"aliases": [],
|
|
1265
|
+
"args": {},
|
|
1266
|
+
"description": "List upstream provider connections for the current org.",
|
|
1267
|
+
"flags": {
|
|
1268
|
+
"json": {
|
|
1269
|
+
"description": "Format output as json.",
|
|
1270
|
+
"helpGroup": "GLOBAL",
|
|
1271
|
+
"name": "json",
|
|
1272
|
+
"allowNo": false,
|
|
1273
|
+
"type": "boolean"
|
|
1274
|
+
},
|
|
1275
|
+
"profile": {
|
|
1276
|
+
"description": "Configuration profile to use",
|
|
1277
|
+
"env": "BYTE_PROFILE",
|
|
1278
|
+
"name": "profile",
|
|
1279
|
+
"hasDynamicHelp": false,
|
|
1280
|
+
"multiple": false,
|
|
1281
|
+
"type": "option"
|
|
1282
|
+
},
|
|
1283
|
+
"base-url": {
|
|
1284
|
+
"description": "Override the API base URL",
|
|
1285
|
+
"env": "BYTE_BASE_URL",
|
|
1286
|
+
"name": "base-url",
|
|
1287
|
+
"hasDynamicHelp": false,
|
|
1288
|
+
"multiple": false,
|
|
1289
|
+
"type": "option"
|
|
1290
|
+
}
|
|
1291
|
+
},
|
|
1292
|
+
"hasDynamicHelp": false,
|
|
1293
|
+
"hiddenAliases": [],
|
|
1294
|
+
"id": "providers:list",
|
|
1295
|
+
"pluginAlias": "@bytevion/cli",
|
|
1296
|
+
"pluginName": "@bytevion/cli",
|
|
1297
|
+
"pluginType": "core",
|
|
1298
|
+
"strict": true,
|
|
1299
|
+
"enableJsonFlag": true,
|
|
1300
|
+
"isESM": false,
|
|
1301
|
+
"relativePath": [
|
|
1302
|
+
"dist",
|
|
1303
|
+
"commands",
|
|
1304
|
+
"providers",
|
|
1305
|
+
"list.js"
|
|
1306
|
+
]
|
|
1307
|
+
},
|
|
1308
|
+
"providers:rotate": {
|
|
1309
|
+
"aliases": [],
|
|
1310
|
+
"args": {
|
|
1311
|
+
"id": {
|
|
1312
|
+
"description": "Connection id (see `byte providers list`)",
|
|
1313
|
+
"name": "id",
|
|
1314
|
+
"required": true
|
|
1315
|
+
}
|
|
1316
|
+
},
|
|
1317
|
+
"description": "Replace the upstream API key on a provider connection (keeps imported models).",
|
|
1318
|
+
"flags": {
|
|
1319
|
+
"json": {
|
|
1320
|
+
"description": "Format output as json.",
|
|
1321
|
+
"helpGroup": "GLOBAL",
|
|
1322
|
+
"name": "json",
|
|
1323
|
+
"allowNo": false,
|
|
1324
|
+
"type": "boolean"
|
|
1325
|
+
},
|
|
1326
|
+
"profile": {
|
|
1327
|
+
"description": "Configuration profile to use",
|
|
1328
|
+
"env": "BYTE_PROFILE",
|
|
1329
|
+
"name": "profile",
|
|
1330
|
+
"hasDynamicHelp": false,
|
|
1331
|
+
"multiple": false,
|
|
1332
|
+
"type": "option"
|
|
1333
|
+
},
|
|
1334
|
+
"base-url": {
|
|
1335
|
+
"description": "Override the API base URL",
|
|
1336
|
+
"env": "BYTE_BASE_URL",
|
|
1337
|
+
"name": "base-url",
|
|
1338
|
+
"hasDynamicHelp": false,
|
|
1339
|
+
"multiple": false,
|
|
1340
|
+
"type": "option"
|
|
1341
|
+
},
|
|
1342
|
+
"api-key": {
|
|
1343
|
+
"description": "New upstream provider API key",
|
|
1344
|
+
"env": "BYTE_PROVIDER_KEY",
|
|
1345
|
+
"name": "api-key",
|
|
1346
|
+
"hasDynamicHelp": false,
|
|
1347
|
+
"multiple": false,
|
|
1348
|
+
"type": "option"
|
|
1349
|
+
}
|
|
1350
|
+
},
|
|
1351
|
+
"hasDynamicHelp": false,
|
|
1352
|
+
"hiddenAliases": [],
|
|
1353
|
+
"id": "providers:rotate",
|
|
1354
|
+
"pluginAlias": "@bytevion/cli",
|
|
1355
|
+
"pluginName": "@bytevion/cli",
|
|
1356
|
+
"pluginType": "core",
|
|
1357
|
+
"strict": true,
|
|
1358
|
+
"enableJsonFlag": true,
|
|
1359
|
+
"isESM": false,
|
|
1360
|
+
"relativePath": [
|
|
1361
|
+
"dist",
|
|
1362
|
+
"commands",
|
|
1363
|
+
"providers",
|
|
1364
|
+
"rotate.js"
|
|
1365
|
+
]
|
|
1366
|
+
},
|
|
1367
|
+
"providers:test": {
|
|
1368
|
+
"aliases": [],
|
|
1369
|
+
"args": {
|
|
1370
|
+
"id": {
|
|
1371
|
+
"description": "Connection id (see `byte providers list`)",
|
|
1372
|
+
"name": "id",
|
|
1373
|
+
"required": true
|
|
1374
|
+
}
|
|
1375
|
+
},
|
|
1376
|
+
"description": "Verify a provider connection by re-fetching its model list.",
|
|
1377
|
+
"flags": {
|
|
1378
|
+
"json": {
|
|
1379
|
+
"description": "Format output as json.",
|
|
1380
|
+
"helpGroup": "GLOBAL",
|
|
1381
|
+
"name": "json",
|
|
1382
|
+
"allowNo": false,
|
|
1383
|
+
"type": "boolean"
|
|
1384
|
+
},
|
|
1385
|
+
"profile": {
|
|
1386
|
+
"description": "Configuration profile to use",
|
|
1387
|
+
"env": "BYTE_PROFILE",
|
|
1388
|
+
"name": "profile",
|
|
1389
|
+
"hasDynamicHelp": false,
|
|
1390
|
+
"multiple": false,
|
|
1391
|
+
"type": "option"
|
|
1392
|
+
},
|
|
1393
|
+
"base-url": {
|
|
1394
|
+
"description": "Override the API base URL",
|
|
1395
|
+
"env": "BYTE_BASE_URL",
|
|
1396
|
+
"name": "base-url",
|
|
1397
|
+
"hasDynamicHelp": false,
|
|
1398
|
+
"multiple": false,
|
|
1399
|
+
"type": "option"
|
|
1400
|
+
}
|
|
1401
|
+
},
|
|
1402
|
+
"hasDynamicHelp": false,
|
|
1403
|
+
"hiddenAliases": [],
|
|
1404
|
+
"id": "providers:test",
|
|
1405
|
+
"pluginAlias": "@bytevion/cli",
|
|
1406
|
+
"pluginName": "@bytevion/cli",
|
|
1407
|
+
"pluginType": "core",
|
|
1408
|
+
"strict": true,
|
|
1409
|
+
"enableJsonFlag": true,
|
|
1410
|
+
"isESM": false,
|
|
1411
|
+
"relativePath": [
|
|
1412
|
+
"dist",
|
|
1413
|
+
"commands",
|
|
1414
|
+
"providers",
|
|
1415
|
+
"test.js"
|
|
1416
|
+
]
|
|
1417
|
+
},
|
|
1418
|
+
"sessions": {
|
|
1419
|
+
"aliases": [],
|
|
1420
|
+
"args": {},
|
|
1421
|
+
"description": "List active terminal sessions (CLI tokens) for the org.",
|
|
1422
|
+
"flags": {
|
|
1423
|
+
"json": {
|
|
1424
|
+
"description": "Format output as json.",
|
|
1425
|
+
"helpGroup": "GLOBAL",
|
|
1426
|
+
"name": "json",
|
|
1427
|
+
"allowNo": false,
|
|
1428
|
+
"type": "boolean"
|
|
1429
|
+
},
|
|
1430
|
+
"profile": {
|
|
1431
|
+
"description": "Configuration profile to use",
|
|
1432
|
+
"env": "BYTE_PROFILE",
|
|
1433
|
+
"name": "profile",
|
|
1434
|
+
"hasDynamicHelp": false,
|
|
1435
|
+
"multiple": false,
|
|
1436
|
+
"type": "option"
|
|
1437
|
+
},
|
|
1438
|
+
"base-url": {
|
|
1439
|
+
"description": "Override the API base URL",
|
|
1440
|
+
"env": "BYTE_BASE_URL",
|
|
1441
|
+
"name": "base-url",
|
|
1442
|
+
"hasDynamicHelp": false,
|
|
1443
|
+
"multiple": false,
|
|
1444
|
+
"type": "option"
|
|
1445
|
+
}
|
|
1446
|
+
},
|
|
1447
|
+
"hasDynamicHelp": false,
|
|
1448
|
+
"hiddenAliases": [],
|
|
1449
|
+
"id": "sessions",
|
|
1450
|
+
"pluginAlias": "@bytevion/cli",
|
|
1451
|
+
"pluginName": "@bytevion/cli",
|
|
1452
|
+
"pluginType": "core",
|
|
1453
|
+
"strict": true,
|
|
1454
|
+
"enableJsonFlag": true,
|
|
1455
|
+
"isESM": false,
|
|
1456
|
+
"relativePath": [
|
|
1457
|
+
"dist",
|
|
1458
|
+
"commands",
|
|
1459
|
+
"sessions",
|
|
1460
|
+
"index.js"
|
|
1461
|
+
]
|
|
1462
|
+
},
|
|
1463
|
+
"sessions:revoke": {
|
|
1464
|
+
"aliases": [],
|
|
1465
|
+
"args": {
|
|
1466
|
+
"id": {
|
|
1467
|
+
"description": "Session id (see `byte sessions`)",
|
|
1468
|
+
"name": "id",
|
|
1469
|
+
"required": true
|
|
1470
|
+
}
|
|
1471
|
+
},
|
|
1472
|
+
"description": "Revoke a terminal session (CLI token) by id.",
|
|
1473
|
+
"flags": {
|
|
1474
|
+
"json": {
|
|
1475
|
+
"description": "Format output as json.",
|
|
1476
|
+
"helpGroup": "GLOBAL",
|
|
1477
|
+
"name": "json",
|
|
1478
|
+
"allowNo": false,
|
|
1479
|
+
"type": "boolean"
|
|
1480
|
+
},
|
|
1481
|
+
"profile": {
|
|
1482
|
+
"description": "Configuration profile to use",
|
|
1483
|
+
"env": "BYTE_PROFILE",
|
|
1484
|
+
"name": "profile",
|
|
1485
|
+
"hasDynamicHelp": false,
|
|
1486
|
+
"multiple": false,
|
|
1487
|
+
"type": "option"
|
|
1488
|
+
},
|
|
1489
|
+
"base-url": {
|
|
1490
|
+
"description": "Override the API base URL",
|
|
1491
|
+
"env": "BYTE_BASE_URL",
|
|
1492
|
+
"name": "base-url",
|
|
1493
|
+
"hasDynamicHelp": false,
|
|
1494
|
+
"multiple": false,
|
|
1495
|
+
"type": "option"
|
|
1496
|
+
}
|
|
1497
|
+
},
|
|
1498
|
+
"hasDynamicHelp": false,
|
|
1499
|
+
"hiddenAliases": [],
|
|
1500
|
+
"id": "sessions:revoke",
|
|
1501
|
+
"pluginAlias": "@bytevion/cli",
|
|
1502
|
+
"pluginName": "@bytevion/cli",
|
|
1503
|
+
"pluginType": "core",
|
|
1504
|
+
"strict": true,
|
|
1505
|
+
"enableJsonFlag": true,
|
|
1506
|
+
"isESM": false,
|
|
1507
|
+
"relativePath": [
|
|
1508
|
+
"dist",
|
|
1509
|
+
"commands",
|
|
1510
|
+
"sessions",
|
|
1511
|
+
"revoke.js"
|
|
1512
|
+
]
|
|
1513
|
+
}
|
|
1514
|
+
},
|
|
1515
|
+
"version": "0.1.0"
|
|
1516
|
+
}
|