faces-cli 1.5.15 → 1.6.1
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/client.d.ts +14 -1
- package/dist/client.js +40 -6
- package/dist/commands/account/preferences.d.ts +15 -0
- package/dist/commands/account/preferences.js +65 -0
- package/dist/commands/auth/register.d.ts +0 -1
- package/dist/commands/auth/register.js +1 -3
- package/dist/commands/billing/checkout.js +1 -1
- package/dist/commands/chat/chat.d.ts +2 -0
- package/dist/commands/chat/chat.js +88 -18
- package/dist/commands/chat/messages.d.ts +1 -0
- package/dist/commands/chat/messages.js +25 -6
- package/dist/commands/chat/responses.d.ts +1 -0
- package/dist/commands/chat/responses.js +25 -6
- package/dist/commands/compile/thread/create.d.ts +1 -0
- package/dist/commands/compile/thread/create.js +11 -1
- package/dist/commands/compile/thread/message.d.ts +1 -0
- package/dist/commands/compile/thread/message.js +13 -2
- package/oclif.manifest.json +383 -293
- package/package.json +1 -1
package/oclif.manifest.json
CHANGED
|
@@ -1,9 +1,23 @@
|
|
|
1
1
|
{
|
|
2
2
|
"commands": {
|
|
3
|
-
"account:
|
|
3
|
+
"account:preferences": {
|
|
4
4
|
"aliases": [],
|
|
5
|
-
"args": {
|
|
6
|
-
|
|
5
|
+
"args": {
|
|
6
|
+
"key": {
|
|
7
|
+
"description": "Preference key to update (api_fallback, default_model)",
|
|
8
|
+
"name": "key"
|
|
9
|
+
},
|
|
10
|
+
"value": {
|
|
11
|
+
"description": "New value",
|
|
12
|
+
"name": "value"
|
|
13
|
+
}
|
|
14
|
+
},
|
|
15
|
+
"description": "View or update account preferences (api_fallback, default_model)",
|
|
16
|
+
"examples": [
|
|
17
|
+
"faces account:preferences",
|
|
18
|
+
"faces account:preferences default_model gpt-5.4",
|
|
19
|
+
"faces account:preferences api_fallback true"
|
|
20
|
+
],
|
|
7
21
|
"flags": {
|
|
8
22
|
"json": {
|
|
9
23
|
"description": "Format output as json.",
|
|
@@ -39,7 +53,7 @@
|
|
|
39
53
|
},
|
|
40
54
|
"hasDynamicHelp": false,
|
|
41
55
|
"hiddenAliases": [],
|
|
42
|
-
"id": "account:
|
|
56
|
+
"id": "account:preferences",
|
|
43
57
|
"pluginAlias": "faces-cli",
|
|
44
58
|
"pluginName": "faces-cli",
|
|
45
59
|
"pluginType": "core",
|
|
@@ -50,13 +64,13 @@
|
|
|
50
64
|
"dist",
|
|
51
65
|
"commands",
|
|
52
66
|
"account",
|
|
53
|
-
"
|
|
67
|
+
"preferences.js"
|
|
54
68
|
]
|
|
55
69
|
},
|
|
56
|
-
"
|
|
70
|
+
"account:state": {
|
|
57
71
|
"aliases": [],
|
|
58
72
|
"args": {},
|
|
59
|
-
"description": "
|
|
73
|
+
"description": "Full account routing state (plan, balance, onboarding)",
|
|
60
74
|
"flags": {
|
|
61
75
|
"json": {
|
|
62
76
|
"description": "Format output as json.",
|
|
@@ -92,7 +106,7 @@
|
|
|
92
106
|
},
|
|
93
107
|
"hasDynamicHelp": false,
|
|
94
108
|
"hiddenAliases": [],
|
|
95
|
-
"id": "
|
|
109
|
+
"id": "account:state",
|
|
96
110
|
"pluginAlias": "faces-cli",
|
|
97
111
|
"pluginName": "faces-cli",
|
|
98
112
|
"pluginType": "core",
|
|
@@ -102,14 +116,27 @@
|
|
|
102
116
|
"relativePath": [
|
|
103
117
|
"dist",
|
|
104
118
|
"commands",
|
|
105
|
-
"
|
|
106
|
-
"
|
|
119
|
+
"account",
|
|
120
|
+
"state.js"
|
|
107
121
|
]
|
|
108
122
|
},
|
|
109
|
-
"
|
|
123
|
+
"auth:connect": {
|
|
110
124
|
"aliases": [],
|
|
111
|
-
"args": {
|
|
112
|
-
|
|
125
|
+
"args": {
|
|
126
|
+
"provider": {
|
|
127
|
+
"description": "OAuth provider to connect",
|
|
128
|
+
"name": "provider",
|
|
129
|
+
"options": [
|
|
130
|
+
"openai"
|
|
131
|
+
],
|
|
132
|
+
"required": true
|
|
133
|
+
}
|
|
134
|
+
},
|
|
135
|
+
"description": "Connect an OAuth provider account to Faces (e.g. ChatGPT Plus/Pro)",
|
|
136
|
+
"examples": [
|
|
137
|
+
"<%= config.bin %> auth connect openai",
|
|
138
|
+
"<%= config.bin %> auth connect openai --manual"
|
|
139
|
+
],
|
|
113
140
|
"flags": {
|
|
114
141
|
"json": {
|
|
115
142
|
"description": "Format output as json.",
|
|
@@ -141,11 +168,17 @@
|
|
|
141
168
|
"hasDynamicHelp": false,
|
|
142
169
|
"multiple": false,
|
|
143
170
|
"type": "option"
|
|
171
|
+
},
|
|
172
|
+
"manual": {
|
|
173
|
+
"description": "Manual mode for headless environments: prints the authorize URL and prompts you to paste the callback URL after approving in any browser.",
|
|
174
|
+
"name": "manual",
|
|
175
|
+
"allowNo": false,
|
|
176
|
+
"type": "boolean"
|
|
144
177
|
}
|
|
145
178
|
},
|
|
146
179
|
"hasDynamicHelp": false,
|
|
147
180
|
"hiddenAliases": [],
|
|
148
|
-
"id": "
|
|
181
|
+
"id": "auth:connect",
|
|
149
182
|
"pluginAlias": "faces-cli",
|
|
150
183
|
"pluginName": "faces-cli",
|
|
151
184
|
"pluginType": "core",
|
|
@@ -155,14 +188,18 @@
|
|
|
155
188
|
"relativePath": [
|
|
156
189
|
"dist",
|
|
157
190
|
"commands",
|
|
158
|
-
"
|
|
159
|
-
"
|
|
191
|
+
"auth",
|
|
192
|
+
"connect.js"
|
|
160
193
|
]
|
|
161
194
|
},
|
|
162
|
-
"
|
|
195
|
+
"auth:connections": {
|
|
163
196
|
"aliases": [],
|
|
164
197
|
"args": {},
|
|
165
|
-
"description": "
|
|
198
|
+
"description": "List connected OAuth provider accounts",
|
|
199
|
+
"examples": [
|
|
200
|
+
"<%= config.bin %> auth connections",
|
|
201
|
+
"<%= config.bin %> auth connections --json"
|
|
202
|
+
],
|
|
166
203
|
"flags": {
|
|
167
204
|
"json": {
|
|
168
205
|
"description": "Format output as json.",
|
|
@@ -194,22 +231,11 @@
|
|
|
194
231
|
"hasDynamicHelp": false,
|
|
195
232
|
"multiple": false,
|
|
196
233
|
"type": "option"
|
|
197
|
-
},
|
|
198
|
-
"plan": {
|
|
199
|
-
"description": "Plan to subscribe to",
|
|
200
|
-
"name": "plan",
|
|
201
|
-
"default": "connect",
|
|
202
|
-
"hasDynamicHelp": false,
|
|
203
|
-
"multiple": false,
|
|
204
|
-
"options": [
|
|
205
|
-
"connect"
|
|
206
|
-
],
|
|
207
|
-
"type": "option"
|
|
208
234
|
}
|
|
209
235
|
},
|
|
210
236
|
"hasDynamicHelp": false,
|
|
211
237
|
"hiddenAliases": [],
|
|
212
|
-
"id": "
|
|
238
|
+
"id": "auth:connections",
|
|
213
239
|
"pluginAlias": "faces-cli",
|
|
214
240
|
"pluginName": "faces-cli",
|
|
215
241
|
"pluginType": "core",
|
|
@@ -219,14 +245,26 @@
|
|
|
219
245
|
"relativePath": [
|
|
220
246
|
"dist",
|
|
221
247
|
"commands",
|
|
222
|
-
"
|
|
223
|
-
"
|
|
248
|
+
"auth",
|
|
249
|
+
"connections.js"
|
|
224
250
|
]
|
|
225
251
|
},
|
|
226
|
-
"
|
|
252
|
+
"auth:disconnect": {
|
|
227
253
|
"aliases": [],
|
|
228
|
-
"args": {
|
|
229
|
-
|
|
254
|
+
"args": {
|
|
255
|
+
"provider": {
|
|
256
|
+
"description": "OAuth provider to disconnect",
|
|
257
|
+
"name": "provider",
|
|
258
|
+
"options": [
|
|
259
|
+
"openai"
|
|
260
|
+
],
|
|
261
|
+
"required": true
|
|
262
|
+
}
|
|
263
|
+
},
|
|
264
|
+
"description": "Disconnect a linked OAuth provider account",
|
|
265
|
+
"examples": [
|
|
266
|
+
"<%= config.bin %> auth disconnect openai"
|
|
267
|
+
],
|
|
230
268
|
"flags": {
|
|
231
269
|
"json": {
|
|
232
270
|
"description": "Format output as json.",
|
|
@@ -258,18 +296,11 @@
|
|
|
258
296
|
"hasDynamicHelp": false,
|
|
259
297
|
"multiple": false,
|
|
260
298
|
"type": "option"
|
|
261
|
-
},
|
|
262
|
-
"provider": {
|
|
263
|
-
"description": "Filter by provider (e.g. openai, anthropic)",
|
|
264
|
-
"name": "provider",
|
|
265
|
-
"hasDynamicHelp": false,
|
|
266
|
-
"multiple": false,
|
|
267
|
-
"type": "option"
|
|
268
299
|
}
|
|
269
300
|
},
|
|
270
301
|
"hasDynamicHelp": false,
|
|
271
302
|
"hiddenAliases": [],
|
|
272
|
-
"id": "
|
|
303
|
+
"id": "auth:disconnect",
|
|
273
304
|
"pluginAlias": "faces-cli",
|
|
274
305
|
"pluginName": "faces-cli",
|
|
275
306
|
"pluginType": "core",
|
|
@@ -279,14 +310,14 @@
|
|
|
279
310
|
"relativePath": [
|
|
280
311
|
"dist",
|
|
281
312
|
"commands",
|
|
282
|
-
"
|
|
283
|
-
"
|
|
313
|
+
"auth",
|
|
314
|
+
"disconnect.js"
|
|
284
315
|
]
|
|
285
316
|
},
|
|
286
|
-
"
|
|
317
|
+
"auth:login": {
|
|
287
318
|
"aliases": [],
|
|
288
319
|
"args": {},
|
|
289
|
-
"description": "
|
|
320
|
+
"description": "Login and save JWT credentials",
|
|
290
321
|
"flags": {
|
|
291
322
|
"json": {
|
|
292
323
|
"description": "Format output as json.",
|
|
@@ -318,11 +349,27 @@
|
|
|
318
349
|
"hasDynamicHelp": false,
|
|
319
350
|
"multiple": false,
|
|
320
351
|
"type": "option"
|
|
352
|
+
},
|
|
353
|
+
"email": {
|
|
354
|
+
"description": "Account email",
|
|
355
|
+
"name": "email",
|
|
356
|
+
"required": true,
|
|
357
|
+
"hasDynamicHelp": false,
|
|
358
|
+
"multiple": false,
|
|
359
|
+
"type": "option"
|
|
360
|
+
},
|
|
361
|
+
"password": {
|
|
362
|
+
"description": "Account password",
|
|
363
|
+
"name": "password",
|
|
364
|
+
"required": true,
|
|
365
|
+
"hasDynamicHelp": false,
|
|
366
|
+
"multiple": false,
|
|
367
|
+
"type": "option"
|
|
321
368
|
}
|
|
322
369
|
},
|
|
323
370
|
"hasDynamicHelp": false,
|
|
324
371
|
"hiddenAliases": [],
|
|
325
|
-
"id": "
|
|
372
|
+
"id": "auth:login",
|
|
326
373
|
"pluginAlias": "faces-cli",
|
|
327
374
|
"pluginName": "faces-cli",
|
|
328
375
|
"pluginType": "core",
|
|
@@ -332,14 +379,14 @@
|
|
|
332
379
|
"relativePath": [
|
|
333
380
|
"dist",
|
|
334
381
|
"commands",
|
|
335
|
-
"
|
|
336
|
-
"
|
|
382
|
+
"auth",
|
|
383
|
+
"login.js"
|
|
337
384
|
]
|
|
338
385
|
},
|
|
339
|
-
"
|
|
386
|
+
"auth:logout": {
|
|
340
387
|
"aliases": [],
|
|
341
388
|
"args": {},
|
|
342
|
-
"description": "
|
|
389
|
+
"description": "Clear saved credentials",
|
|
343
390
|
"flags": {
|
|
344
391
|
"json": {
|
|
345
392
|
"description": "Format output as json.",
|
|
@@ -375,7 +422,7 @@
|
|
|
375
422
|
},
|
|
376
423
|
"hasDynamicHelp": false,
|
|
377
424
|
"hiddenAliases": [],
|
|
378
|
-
"id": "
|
|
425
|
+
"id": "auth:logout",
|
|
379
426
|
"pluginAlias": "faces-cli",
|
|
380
427
|
"pluginName": "faces-cli",
|
|
381
428
|
"pluginType": "core",
|
|
@@ -385,14 +432,14 @@
|
|
|
385
432
|
"relativePath": [
|
|
386
433
|
"dist",
|
|
387
434
|
"commands",
|
|
388
|
-
"
|
|
389
|
-
"
|
|
435
|
+
"auth",
|
|
436
|
+
"logout.js"
|
|
390
437
|
]
|
|
391
438
|
},
|
|
392
|
-
"
|
|
439
|
+
"auth:refresh": {
|
|
393
440
|
"aliases": [],
|
|
394
441
|
"args": {},
|
|
395
|
-
"description": "
|
|
442
|
+
"description": "Exchange current JWT for a fresh one",
|
|
396
443
|
"flags": {
|
|
397
444
|
"json": {
|
|
398
445
|
"description": "Format output as json.",
|
|
@@ -424,26 +471,11 @@
|
|
|
424
471
|
"hasDynamicHelp": false,
|
|
425
472
|
"multiple": false,
|
|
426
473
|
"type": "option"
|
|
427
|
-
},
|
|
428
|
-
"amount": {
|
|
429
|
-
"description": "Top-up amount in USD (min $1)",
|
|
430
|
-
"name": "amount",
|
|
431
|
-
"required": true,
|
|
432
|
-
"hasDynamicHelp": false,
|
|
433
|
-
"multiple": false,
|
|
434
|
-
"type": "option"
|
|
435
|
-
},
|
|
436
|
-
"payment-ref": {
|
|
437
|
-
"description": "Payment reference (admin/test path)",
|
|
438
|
-
"name": "payment-ref",
|
|
439
|
-
"hasDynamicHelp": false,
|
|
440
|
-
"multiple": false,
|
|
441
|
-
"type": "option"
|
|
442
474
|
}
|
|
443
475
|
},
|
|
444
476
|
"hasDynamicHelp": false,
|
|
445
477
|
"hiddenAliases": [],
|
|
446
|
-
"id": "
|
|
478
|
+
"id": "auth:refresh",
|
|
447
479
|
"pluginAlias": "faces-cli",
|
|
448
480
|
"pluginName": "faces-cli",
|
|
449
481
|
"pluginType": "core",
|
|
@@ -453,14 +485,14 @@
|
|
|
453
485
|
"relativePath": [
|
|
454
486
|
"dist",
|
|
455
487
|
"commands",
|
|
456
|
-
"
|
|
457
|
-
"
|
|
488
|
+
"auth",
|
|
489
|
+
"refresh.js"
|
|
458
490
|
]
|
|
459
491
|
},
|
|
460
|
-
"
|
|
492
|
+
"auth:register": {
|
|
461
493
|
"aliases": [],
|
|
462
494
|
"args": {},
|
|
463
|
-
"description": "
|
|
495
|
+
"description": "Create a new Faces account",
|
|
464
496
|
"flags": {
|
|
465
497
|
"json": {
|
|
466
498
|
"description": "Format output as json.",
|
|
@@ -493,37 +525,53 @@
|
|
|
493
525
|
"multiple": false,
|
|
494
526
|
"type": "option"
|
|
495
527
|
},
|
|
496
|
-
"
|
|
497
|
-
"description": "
|
|
498
|
-
"name": "
|
|
528
|
+
"email": {
|
|
529
|
+
"description": "Email address",
|
|
530
|
+
"name": "email",
|
|
531
|
+
"required": true,
|
|
499
532
|
"hasDynamicHelp": false,
|
|
500
533
|
"multiple": false,
|
|
501
|
-
"options": [
|
|
502
|
-
"api_key",
|
|
503
|
-
"model",
|
|
504
|
-
"llm",
|
|
505
|
-
"date"
|
|
506
|
-
],
|
|
507
534
|
"type": "option"
|
|
508
535
|
},
|
|
509
|
-
"
|
|
510
|
-
"description": "
|
|
511
|
-
"name": "
|
|
536
|
+
"password": {
|
|
537
|
+
"description": "Password",
|
|
538
|
+
"name": "password",
|
|
539
|
+
"required": true,
|
|
512
540
|
"hasDynamicHelp": false,
|
|
513
541
|
"multiple": false,
|
|
514
542
|
"type": "option"
|
|
515
543
|
},
|
|
516
|
-
"
|
|
517
|
-
"description": "
|
|
518
|
-
"name": "
|
|
544
|
+
"username": {
|
|
545
|
+
"description": "Username (lowercase, dashes, numbers)",
|
|
546
|
+
"name": "username",
|
|
547
|
+
"required": true,
|
|
548
|
+
"hasDynamicHelp": false,
|
|
549
|
+
"multiple": false,
|
|
550
|
+
"type": "option"
|
|
551
|
+
},
|
|
552
|
+
"invite-key": {
|
|
553
|
+
"description": "Invite key (if required)",
|
|
554
|
+
"name": "invite-key",
|
|
519
555
|
"hasDynamicHelp": false,
|
|
520
556
|
"multiple": false,
|
|
521
557
|
"type": "option"
|
|
558
|
+
},
|
|
559
|
+
"plan": {
|
|
560
|
+
"description": "Plan to subscribe to: \"free\" ($5 activation) or \"connect\" ($17/mo, no activation fee)",
|
|
561
|
+
"name": "plan",
|
|
562
|
+
"default": "free",
|
|
563
|
+
"hasDynamicHelp": false,
|
|
564
|
+
"multiple": false,
|
|
565
|
+
"options": [
|
|
566
|
+
"free",
|
|
567
|
+
"connect"
|
|
568
|
+
],
|
|
569
|
+
"type": "option"
|
|
522
570
|
}
|
|
523
571
|
},
|
|
524
572
|
"hasDynamicHelp": false,
|
|
525
573
|
"hiddenAliases": [],
|
|
526
|
-
"id": "
|
|
574
|
+
"id": "auth:register",
|
|
527
575
|
"pluginAlias": "faces-cli",
|
|
528
576
|
"pluginName": "faces-cli",
|
|
529
577
|
"pluginType": "core",
|
|
@@ -533,14 +581,14 @@
|
|
|
533
581
|
"relativePath": [
|
|
534
582
|
"dist",
|
|
535
583
|
"commands",
|
|
536
|
-
"
|
|
537
|
-
"
|
|
584
|
+
"auth",
|
|
585
|
+
"register.js"
|
|
538
586
|
]
|
|
539
587
|
},
|
|
540
|
-
"
|
|
588
|
+
"auth:whoami": {
|
|
541
589
|
"aliases": [],
|
|
542
590
|
"args": {},
|
|
543
|
-
"description": "
|
|
591
|
+
"description": "Print current user profile and auth diagnostic",
|
|
544
592
|
"flags": {
|
|
545
593
|
"json": {
|
|
546
594
|
"description": "Format output as json.",
|
|
@@ -576,7 +624,7 @@
|
|
|
576
624
|
},
|
|
577
625
|
"hasDynamicHelp": false,
|
|
578
626
|
"hiddenAliases": [],
|
|
579
|
-
"id": "
|
|
627
|
+
"id": "auth:whoami",
|
|
580
628
|
"pluginAlias": "faces-cli",
|
|
581
629
|
"pluginName": "faces-cli",
|
|
582
630
|
"pluginType": "core",
|
|
@@ -586,14 +634,14 @@
|
|
|
586
634
|
"relativePath": [
|
|
587
635
|
"dist",
|
|
588
636
|
"commands",
|
|
589
|
-
"
|
|
590
|
-
"
|
|
637
|
+
"auth",
|
|
638
|
+
"whoami.js"
|
|
591
639
|
]
|
|
592
640
|
},
|
|
593
|
-
"
|
|
641
|
+
"billing:balance": {
|
|
594
642
|
"aliases": [],
|
|
595
643
|
"args": {},
|
|
596
|
-
"description": "
|
|
644
|
+
"description": "Show credit balance and payment method status",
|
|
597
645
|
"flags": {
|
|
598
646
|
"json": {
|
|
599
647
|
"description": "Format output as json.",
|
|
@@ -625,23 +673,11 @@
|
|
|
625
673
|
"hasDynamicHelp": false,
|
|
626
674
|
"multiple": false,
|
|
627
675
|
"type": "option"
|
|
628
|
-
},
|
|
629
|
-
"fix": {
|
|
630
|
-
"description": "Rebuild missing or stale catalog entries from API",
|
|
631
|
-
"name": "fix",
|
|
632
|
-
"allowNo": false,
|
|
633
|
-
"type": "boolean"
|
|
634
|
-
},
|
|
635
|
-
"generate": {
|
|
636
|
-
"description": "Fix + generate missing descriptions via LLM",
|
|
637
|
-
"name": "generate",
|
|
638
|
-
"allowNo": false,
|
|
639
|
-
"type": "boolean"
|
|
640
676
|
}
|
|
641
677
|
},
|
|
642
678
|
"hasDynamicHelp": false,
|
|
643
679
|
"hiddenAliases": [],
|
|
644
|
-
"id": "
|
|
680
|
+
"id": "billing:balance",
|
|
645
681
|
"pluginAlias": "faces-cli",
|
|
646
682
|
"pluginName": "faces-cli",
|
|
647
683
|
"pluginType": "core",
|
|
@@ -651,14 +687,14 @@
|
|
|
651
687
|
"relativePath": [
|
|
652
688
|
"dist",
|
|
653
689
|
"commands",
|
|
654
|
-
"
|
|
655
|
-
"
|
|
690
|
+
"billing",
|
|
691
|
+
"balance.js"
|
|
656
692
|
]
|
|
657
693
|
},
|
|
658
|
-
"
|
|
694
|
+
"billing:card-setup": {
|
|
659
695
|
"aliases": [],
|
|
660
696
|
"args": {},
|
|
661
|
-
"description": "
|
|
697
|
+
"description": "Get a Stripe card setup URL to save a payment method",
|
|
662
698
|
"flags": {
|
|
663
699
|
"json": {
|
|
664
700
|
"description": "Format output as json.",
|
|
@@ -694,7 +730,7 @@
|
|
|
694
730
|
},
|
|
695
731
|
"hasDynamicHelp": false,
|
|
696
732
|
"hiddenAliases": [],
|
|
697
|
-
"id": "
|
|
733
|
+
"id": "billing:card-setup",
|
|
698
734
|
"pluginAlias": "faces-cli",
|
|
699
735
|
"pluginName": "faces-cli",
|
|
700
736
|
"pluginType": "core",
|
|
@@ -704,14 +740,14 @@
|
|
|
704
740
|
"relativePath": [
|
|
705
741
|
"dist",
|
|
706
742
|
"commands",
|
|
707
|
-
"
|
|
708
|
-
"
|
|
743
|
+
"billing",
|
|
744
|
+
"card-setup.js"
|
|
709
745
|
]
|
|
710
746
|
},
|
|
711
|
-
"
|
|
747
|
+
"billing:checkout": {
|
|
712
748
|
"aliases": [],
|
|
713
749
|
"args": {},
|
|
714
|
-
"description": "
|
|
750
|
+
"description": "Get a Stripe checkout URL to upgrade your subscription plan",
|
|
715
751
|
"flags": {
|
|
716
752
|
"json": {
|
|
717
753
|
"description": "Format output as json.",
|
|
@@ -744,37 +780,81 @@
|
|
|
744
780
|
"multiple": false,
|
|
745
781
|
"type": "option"
|
|
746
782
|
},
|
|
747
|
-
"
|
|
748
|
-
"description": "
|
|
749
|
-
"name": "
|
|
783
|
+
"plan": {
|
|
784
|
+
"description": "Plan to subscribe to",
|
|
785
|
+
"name": "plan",
|
|
786
|
+
"default": "connect",
|
|
750
787
|
"hasDynamicHelp": false,
|
|
751
788
|
"multiple": false,
|
|
789
|
+
"options": [
|
|
790
|
+
"connect"
|
|
791
|
+
],
|
|
752
792
|
"type": "option"
|
|
793
|
+
}
|
|
794
|
+
},
|
|
795
|
+
"hasDynamicHelp": false,
|
|
796
|
+
"hiddenAliases": [],
|
|
797
|
+
"id": "billing:checkout",
|
|
798
|
+
"pluginAlias": "faces-cli",
|
|
799
|
+
"pluginName": "faces-cli",
|
|
800
|
+
"pluginType": "core",
|
|
801
|
+
"strict": true,
|
|
802
|
+
"enableJsonFlag": true,
|
|
803
|
+
"isESM": true,
|
|
804
|
+
"relativePath": [
|
|
805
|
+
"dist",
|
|
806
|
+
"commands",
|
|
807
|
+
"billing",
|
|
808
|
+
"checkout.js"
|
|
809
|
+
]
|
|
810
|
+
},
|
|
811
|
+
"billing:llm-costs": {
|
|
812
|
+
"aliases": [],
|
|
813
|
+
"args": {},
|
|
814
|
+
"description": "List available LLMs and their per-token costs",
|
|
815
|
+
"flags": {
|
|
816
|
+
"json": {
|
|
817
|
+
"description": "Format output as json.",
|
|
818
|
+
"helpGroup": "GLOBAL",
|
|
819
|
+
"name": "json",
|
|
820
|
+
"allowNo": false,
|
|
821
|
+
"type": "boolean"
|
|
753
822
|
},
|
|
754
|
-
"
|
|
755
|
-
"description": "
|
|
756
|
-
"
|
|
823
|
+
"base-url": {
|
|
824
|
+
"description": "API base URL",
|
|
825
|
+
"env": "FACES_BASE_URL",
|
|
826
|
+
"name": "base-url",
|
|
757
827
|
"hasDynamicHelp": false,
|
|
758
828
|
"multiple": false,
|
|
759
829
|
"type": "option"
|
|
760
830
|
},
|
|
761
|
-
"
|
|
762
|
-
"description": "
|
|
763
|
-
"
|
|
831
|
+
"token": {
|
|
832
|
+
"description": "JWT bearer token",
|
|
833
|
+
"env": "FACES_TOKEN",
|
|
834
|
+
"name": "token",
|
|
764
835
|
"hasDynamicHelp": false,
|
|
765
836
|
"multiple": false,
|
|
766
837
|
"type": "option"
|
|
767
838
|
},
|
|
768
|
-
"
|
|
769
|
-
"description": "
|
|
770
|
-
"
|
|
771
|
-
"
|
|
772
|
-
"
|
|
839
|
+
"api-key": {
|
|
840
|
+
"description": "API key",
|
|
841
|
+
"env": "FACES_API_KEY",
|
|
842
|
+
"name": "api-key",
|
|
843
|
+
"hasDynamicHelp": false,
|
|
844
|
+
"multiple": false,
|
|
845
|
+
"type": "option"
|
|
846
|
+
},
|
|
847
|
+
"provider": {
|
|
848
|
+
"description": "Filter by provider (e.g. openai, anthropic)",
|
|
849
|
+
"name": "provider",
|
|
850
|
+
"hasDynamicHelp": false,
|
|
851
|
+
"multiple": false,
|
|
852
|
+
"type": "option"
|
|
773
853
|
}
|
|
774
854
|
},
|
|
775
855
|
"hasDynamicHelp": false,
|
|
776
856
|
"hiddenAliases": [],
|
|
777
|
-
"id": "
|
|
857
|
+
"id": "billing:llm-costs",
|
|
778
858
|
"pluginAlias": "faces-cli",
|
|
779
859
|
"pluginName": "faces-cli",
|
|
780
860
|
"pluginType": "core",
|
|
@@ -784,19 +864,14 @@
|
|
|
784
864
|
"relativePath": [
|
|
785
865
|
"dist",
|
|
786
866
|
"commands",
|
|
787
|
-
"
|
|
788
|
-
"
|
|
867
|
+
"billing",
|
|
868
|
+
"llm-costs.js"
|
|
789
869
|
]
|
|
790
870
|
},
|
|
791
|
-
"
|
|
871
|
+
"billing:quota": {
|
|
792
872
|
"aliases": [],
|
|
793
|
-
"args": {
|
|
794
|
-
|
|
795
|
-
"description": "Backup file path (default: most recent in ~/.faces/backups/)",
|
|
796
|
-
"name": "file"
|
|
797
|
-
}
|
|
798
|
-
},
|
|
799
|
-
"description": "Restore faces and source material from a backup snapshot",
|
|
873
|
+
"args": {},
|
|
874
|
+
"description": "Show compile token quota and per-face stats",
|
|
800
875
|
"flags": {
|
|
801
876
|
"json": {
|
|
802
877
|
"description": "Format output as json.",
|
|
@@ -828,17 +903,11 @@
|
|
|
828
903
|
"hasDynamicHelp": false,
|
|
829
904
|
"multiple": false,
|
|
830
905
|
"type": "option"
|
|
831
|
-
},
|
|
832
|
-
"compile": {
|
|
833
|
-
"description": "Run compile:all after restoring",
|
|
834
|
-
"name": "compile",
|
|
835
|
-
"allowNo": false,
|
|
836
|
-
"type": "boolean"
|
|
837
906
|
}
|
|
838
907
|
},
|
|
839
908
|
"hasDynamicHelp": false,
|
|
840
909
|
"hiddenAliases": [],
|
|
841
|
-
"id": "
|
|
910
|
+
"id": "billing:quota",
|
|
842
911
|
"pluginAlias": "faces-cli",
|
|
843
912
|
"pluginName": "faces-cli",
|
|
844
913
|
"pluginType": "core",
|
|
@@ -848,27 +917,14 @@
|
|
|
848
917
|
"relativePath": [
|
|
849
918
|
"dist",
|
|
850
919
|
"commands",
|
|
851
|
-
"
|
|
852
|
-
"
|
|
853
|
-
]
|
|
854
|
-
},
|
|
855
|
-
"
|
|
856
|
-
"aliases": [],
|
|
857
|
-
"args": {
|
|
858
|
-
|
|
859
|
-
"description": "OAuth provider to connect",
|
|
860
|
-
"name": "provider",
|
|
861
|
-
"options": [
|
|
862
|
-
"openai"
|
|
863
|
-
],
|
|
864
|
-
"required": true
|
|
865
|
-
}
|
|
866
|
-
},
|
|
867
|
-
"description": "Connect an OAuth provider account to Faces (e.g. ChatGPT Plus/Pro)",
|
|
868
|
-
"examples": [
|
|
869
|
-
"<%= config.bin %> auth connect openai",
|
|
870
|
-
"<%= config.bin %> auth connect openai --manual"
|
|
871
|
-
],
|
|
920
|
+
"billing",
|
|
921
|
+
"quota.js"
|
|
922
|
+
]
|
|
923
|
+
},
|
|
924
|
+
"billing:subscription": {
|
|
925
|
+
"aliases": [],
|
|
926
|
+
"args": {},
|
|
927
|
+
"description": "Show current plan, face count, and renewal date",
|
|
872
928
|
"flags": {
|
|
873
929
|
"json": {
|
|
874
930
|
"description": "Format output as json.",
|
|
@@ -900,17 +956,11 @@
|
|
|
900
956
|
"hasDynamicHelp": false,
|
|
901
957
|
"multiple": false,
|
|
902
958
|
"type": "option"
|
|
903
|
-
},
|
|
904
|
-
"manual": {
|
|
905
|
-
"description": "Manual mode for headless environments: prints the authorize URL and prompts you to paste the callback URL after approving in any browser.",
|
|
906
|
-
"name": "manual",
|
|
907
|
-
"allowNo": false,
|
|
908
|
-
"type": "boolean"
|
|
909
959
|
}
|
|
910
960
|
},
|
|
911
961
|
"hasDynamicHelp": false,
|
|
912
962
|
"hiddenAliases": [],
|
|
913
|
-
"id": "
|
|
963
|
+
"id": "billing:subscription",
|
|
914
964
|
"pluginAlias": "faces-cli",
|
|
915
965
|
"pluginName": "faces-cli",
|
|
916
966
|
"pluginType": "core",
|
|
@@ -920,18 +970,14 @@
|
|
|
920
970
|
"relativePath": [
|
|
921
971
|
"dist",
|
|
922
972
|
"commands",
|
|
923
|
-
"
|
|
924
|
-
"
|
|
973
|
+
"billing",
|
|
974
|
+
"subscription.js"
|
|
925
975
|
]
|
|
926
976
|
},
|
|
927
|
-
"
|
|
977
|
+
"billing:topup": {
|
|
928
978
|
"aliases": [],
|
|
929
979
|
"args": {},
|
|
930
|
-
"description": "
|
|
931
|
-
"examples": [
|
|
932
|
-
"<%= config.bin %> auth connections",
|
|
933
|
-
"<%= config.bin %> auth connections --json"
|
|
934
|
-
],
|
|
980
|
+
"description": "Top up credit balance using saved payment method",
|
|
935
981
|
"flags": {
|
|
936
982
|
"json": {
|
|
937
983
|
"description": "Format output as json.",
|
|
@@ -963,11 +1009,26 @@
|
|
|
963
1009
|
"hasDynamicHelp": false,
|
|
964
1010
|
"multiple": false,
|
|
965
1011
|
"type": "option"
|
|
1012
|
+
},
|
|
1013
|
+
"amount": {
|
|
1014
|
+
"description": "Top-up amount in USD (min $1)",
|
|
1015
|
+
"name": "amount",
|
|
1016
|
+
"required": true,
|
|
1017
|
+
"hasDynamicHelp": false,
|
|
1018
|
+
"multiple": false,
|
|
1019
|
+
"type": "option"
|
|
1020
|
+
},
|
|
1021
|
+
"payment-ref": {
|
|
1022
|
+
"description": "Payment reference (admin/test path)",
|
|
1023
|
+
"name": "payment-ref",
|
|
1024
|
+
"hasDynamicHelp": false,
|
|
1025
|
+
"multiple": false,
|
|
1026
|
+
"type": "option"
|
|
966
1027
|
}
|
|
967
1028
|
},
|
|
968
1029
|
"hasDynamicHelp": false,
|
|
969
1030
|
"hiddenAliases": [],
|
|
970
|
-
"id": "
|
|
1031
|
+
"id": "billing:topup",
|
|
971
1032
|
"pluginAlias": "faces-cli",
|
|
972
1033
|
"pluginName": "faces-cli",
|
|
973
1034
|
"pluginType": "core",
|
|
@@ -977,26 +1038,14 @@
|
|
|
977
1038
|
"relativePath": [
|
|
978
1039
|
"dist",
|
|
979
1040
|
"commands",
|
|
980
|
-
"
|
|
981
|
-
"
|
|
1041
|
+
"billing",
|
|
1042
|
+
"topup.js"
|
|
982
1043
|
]
|
|
983
1044
|
},
|
|
984
|
-
"
|
|
1045
|
+
"billing:usage": {
|
|
985
1046
|
"aliases": [],
|
|
986
|
-
"args": {
|
|
987
|
-
|
|
988
|
-
"description": "OAuth provider to disconnect",
|
|
989
|
-
"name": "provider",
|
|
990
|
-
"options": [
|
|
991
|
-
"openai"
|
|
992
|
-
],
|
|
993
|
-
"required": true
|
|
994
|
-
}
|
|
995
|
-
},
|
|
996
|
-
"description": "Disconnect a linked OAuth provider account",
|
|
997
|
-
"examples": [
|
|
998
|
-
"<%= config.bin %> auth disconnect openai"
|
|
999
|
-
],
|
|
1047
|
+
"args": {},
|
|
1048
|
+
"description": "Aggregated usage analytics",
|
|
1000
1049
|
"flags": {
|
|
1001
1050
|
"json": {
|
|
1002
1051
|
"description": "Format output as json.",
|
|
@@ -1028,11 +1077,38 @@
|
|
|
1028
1077
|
"hasDynamicHelp": false,
|
|
1029
1078
|
"multiple": false,
|
|
1030
1079
|
"type": "option"
|
|
1080
|
+
},
|
|
1081
|
+
"group-by": {
|
|
1082
|
+
"description": "Group results",
|
|
1083
|
+
"name": "group-by",
|
|
1084
|
+
"hasDynamicHelp": false,
|
|
1085
|
+
"multiple": false,
|
|
1086
|
+
"options": [
|
|
1087
|
+
"api_key",
|
|
1088
|
+
"model",
|
|
1089
|
+
"llm",
|
|
1090
|
+
"date"
|
|
1091
|
+
],
|
|
1092
|
+
"type": "option"
|
|
1093
|
+
},
|
|
1094
|
+
"from": {
|
|
1095
|
+
"description": "Start date (YYYY-MM-DD)",
|
|
1096
|
+
"name": "from",
|
|
1097
|
+
"hasDynamicHelp": false,
|
|
1098
|
+
"multiple": false,
|
|
1099
|
+
"type": "option"
|
|
1100
|
+
},
|
|
1101
|
+
"to": {
|
|
1102
|
+
"description": "End date (YYYY-MM-DD)",
|
|
1103
|
+
"name": "to",
|
|
1104
|
+
"hasDynamicHelp": false,
|
|
1105
|
+
"multiple": false,
|
|
1106
|
+
"type": "option"
|
|
1031
1107
|
}
|
|
1032
1108
|
},
|
|
1033
1109
|
"hasDynamicHelp": false,
|
|
1034
1110
|
"hiddenAliases": [],
|
|
1035
|
-
"id": "
|
|
1111
|
+
"id": "billing:usage",
|
|
1036
1112
|
"pluginAlias": "faces-cli",
|
|
1037
1113
|
"pluginName": "faces-cli",
|
|
1038
1114
|
"pluginType": "core",
|
|
@@ -1042,14 +1118,14 @@
|
|
|
1042
1118
|
"relativePath": [
|
|
1043
1119
|
"dist",
|
|
1044
1120
|
"commands",
|
|
1045
|
-
"
|
|
1046
|
-
"
|
|
1121
|
+
"billing",
|
|
1122
|
+
"usage.js"
|
|
1047
1123
|
]
|
|
1048
1124
|
},
|
|
1049
|
-
"
|
|
1125
|
+
"catalog:backup": {
|
|
1050
1126
|
"aliases": [],
|
|
1051
1127
|
"args": {},
|
|
1052
|
-
"description": "
|
|
1128
|
+
"description": "Snapshot all faces and source material for migration",
|
|
1053
1129
|
"flags": {
|
|
1054
1130
|
"json": {
|
|
1055
1131
|
"description": "Format output as json.",
|
|
@@ -1081,27 +1157,11 @@
|
|
|
1081
1157
|
"hasDynamicHelp": false,
|
|
1082
1158
|
"multiple": false,
|
|
1083
1159
|
"type": "option"
|
|
1084
|
-
},
|
|
1085
|
-
"email": {
|
|
1086
|
-
"description": "Account email",
|
|
1087
|
-
"name": "email",
|
|
1088
|
-
"required": true,
|
|
1089
|
-
"hasDynamicHelp": false,
|
|
1090
|
-
"multiple": false,
|
|
1091
|
-
"type": "option"
|
|
1092
|
-
},
|
|
1093
|
-
"password": {
|
|
1094
|
-
"description": "Account password",
|
|
1095
|
-
"name": "password",
|
|
1096
|
-
"required": true,
|
|
1097
|
-
"hasDynamicHelp": false,
|
|
1098
|
-
"multiple": false,
|
|
1099
|
-
"type": "option"
|
|
1100
1160
|
}
|
|
1101
1161
|
},
|
|
1102
1162
|
"hasDynamicHelp": false,
|
|
1103
1163
|
"hiddenAliases": [],
|
|
1104
|
-
"id": "
|
|
1164
|
+
"id": "catalog:backup",
|
|
1105
1165
|
"pluginAlias": "faces-cli",
|
|
1106
1166
|
"pluginName": "faces-cli",
|
|
1107
1167
|
"pluginType": "core",
|
|
@@ -1111,14 +1171,14 @@
|
|
|
1111
1171
|
"relativePath": [
|
|
1112
1172
|
"dist",
|
|
1113
1173
|
"commands",
|
|
1114
|
-
"
|
|
1115
|
-
"
|
|
1174
|
+
"catalog",
|
|
1175
|
+
"backup.js"
|
|
1116
1176
|
]
|
|
1117
1177
|
},
|
|
1118
|
-
"
|
|
1178
|
+
"catalog:doctor": {
|
|
1119
1179
|
"aliases": [],
|
|
1120
1180
|
"args": {},
|
|
1121
|
-
"description": "
|
|
1181
|
+
"description": "Diagnose and repair the local face catalog",
|
|
1122
1182
|
"flags": {
|
|
1123
1183
|
"json": {
|
|
1124
1184
|
"description": "Format output as json.",
|
|
@@ -1150,11 +1210,23 @@
|
|
|
1150
1210
|
"hasDynamicHelp": false,
|
|
1151
1211
|
"multiple": false,
|
|
1152
1212
|
"type": "option"
|
|
1213
|
+
},
|
|
1214
|
+
"fix": {
|
|
1215
|
+
"description": "Rebuild missing or stale catalog entries from API",
|
|
1216
|
+
"name": "fix",
|
|
1217
|
+
"allowNo": false,
|
|
1218
|
+
"type": "boolean"
|
|
1219
|
+
},
|
|
1220
|
+
"generate": {
|
|
1221
|
+
"description": "Fix + generate missing descriptions via LLM",
|
|
1222
|
+
"name": "generate",
|
|
1223
|
+
"allowNo": false,
|
|
1224
|
+
"type": "boolean"
|
|
1153
1225
|
}
|
|
1154
1226
|
},
|
|
1155
1227
|
"hasDynamicHelp": false,
|
|
1156
1228
|
"hiddenAliases": [],
|
|
1157
|
-
"id": "
|
|
1229
|
+
"id": "catalog:doctor",
|
|
1158
1230
|
"pluginAlias": "faces-cli",
|
|
1159
1231
|
"pluginName": "faces-cli",
|
|
1160
1232
|
"pluginType": "core",
|
|
@@ -1164,14 +1236,14 @@
|
|
|
1164
1236
|
"relativePath": [
|
|
1165
1237
|
"dist",
|
|
1166
1238
|
"commands",
|
|
1167
|
-
"
|
|
1168
|
-
"
|
|
1239
|
+
"catalog",
|
|
1240
|
+
"doctor.js"
|
|
1169
1241
|
]
|
|
1170
1242
|
},
|
|
1171
|
-
"
|
|
1243
|
+
"catalog:list": {
|
|
1172
1244
|
"aliases": [],
|
|
1173
1245
|
"args": {},
|
|
1174
|
-
"description": "
|
|
1246
|
+
"description": "List all faces in the local catalog",
|
|
1175
1247
|
"flags": {
|
|
1176
1248
|
"json": {
|
|
1177
1249
|
"description": "Format output as json.",
|
|
@@ -1207,7 +1279,7 @@
|
|
|
1207
1279
|
},
|
|
1208
1280
|
"hasDynamicHelp": false,
|
|
1209
1281
|
"hiddenAliases": [],
|
|
1210
|
-
"id": "
|
|
1282
|
+
"id": "catalog:list",
|
|
1211
1283
|
"pluginAlias": "faces-cli",
|
|
1212
1284
|
"pluginName": "faces-cli",
|
|
1213
1285
|
"pluginType": "core",
|
|
@@ -1217,14 +1289,14 @@
|
|
|
1217
1289
|
"relativePath": [
|
|
1218
1290
|
"dist",
|
|
1219
1291
|
"commands",
|
|
1220
|
-
"
|
|
1221
|
-
"
|
|
1292
|
+
"catalog",
|
|
1293
|
+
"list.js"
|
|
1222
1294
|
]
|
|
1223
1295
|
},
|
|
1224
|
-
"
|
|
1296
|
+
"catalog:manyfaced": {
|
|
1225
1297
|
"aliases": [],
|
|
1226
1298
|
"args": {},
|
|
1227
|
-
"description": "
|
|
1299
|
+
"description": "Browse and install community manyfaced skills from github.com/facessh/manyfaced",
|
|
1228
1300
|
"flags": {
|
|
1229
1301
|
"json": {
|
|
1230
1302
|
"description": "Format output as json.",
|
|
@@ -1257,60 +1329,37 @@
|
|
|
1257
1329
|
"multiple": false,
|
|
1258
1330
|
"type": "option"
|
|
1259
1331
|
},
|
|
1260
|
-
"
|
|
1261
|
-
"description": "
|
|
1262
|
-
"name": "
|
|
1263
|
-
"required": true,
|
|
1264
|
-
"hasDynamicHelp": false,
|
|
1265
|
-
"multiple": false,
|
|
1266
|
-
"type": "option"
|
|
1267
|
-
},
|
|
1268
|
-
"password": {
|
|
1269
|
-
"description": "Password",
|
|
1270
|
-
"name": "password",
|
|
1271
|
-
"required": true,
|
|
1272
|
-
"hasDynamicHelp": false,
|
|
1273
|
-
"multiple": false,
|
|
1274
|
-
"type": "option"
|
|
1275
|
-
},
|
|
1276
|
-
"name": {
|
|
1277
|
-
"description": "Display name (defaults to username)",
|
|
1278
|
-
"name": "name",
|
|
1332
|
+
"skill": {
|
|
1333
|
+
"description": "Show details for a specific skill",
|
|
1334
|
+
"name": "skill",
|
|
1279
1335
|
"hasDynamicHelp": false,
|
|
1280
1336
|
"multiple": false,
|
|
1281
1337
|
"type": "option"
|
|
1282
1338
|
},
|
|
1283
|
-
"
|
|
1284
|
-
"description": "
|
|
1285
|
-
"name": "
|
|
1286
|
-
"required": true,
|
|
1339
|
+
"install": {
|
|
1340
|
+
"description": "Install a skill by name",
|
|
1341
|
+
"name": "install",
|
|
1287
1342
|
"hasDynamicHelp": false,
|
|
1288
1343
|
"multiple": false,
|
|
1289
1344
|
"type": "option"
|
|
1290
1345
|
},
|
|
1291
|
-
"
|
|
1292
|
-
"description": "
|
|
1293
|
-
"name": "
|
|
1346
|
+
"skills-dir": {
|
|
1347
|
+
"description": "Directory to install skills into (required for --install)",
|
|
1348
|
+
"name": "skills-dir",
|
|
1294
1349
|
"hasDynamicHelp": false,
|
|
1295
1350
|
"multiple": false,
|
|
1296
1351
|
"type": "option"
|
|
1297
1352
|
},
|
|
1298
|
-
"
|
|
1299
|
-
"description": "
|
|
1300
|
-
"name": "
|
|
1301
|
-
"
|
|
1302
|
-
"
|
|
1303
|
-
"multiple": false,
|
|
1304
|
-
"options": [
|
|
1305
|
-
"free",
|
|
1306
|
-
"connect"
|
|
1307
|
-
],
|
|
1308
|
-
"type": "option"
|
|
1353
|
+
"refresh": {
|
|
1354
|
+
"description": "Force refresh the skill index (ignore cache)",
|
|
1355
|
+
"name": "refresh",
|
|
1356
|
+
"allowNo": false,
|
|
1357
|
+
"type": "boolean"
|
|
1309
1358
|
}
|
|
1310
1359
|
},
|
|
1311
1360
|
"hasDynamicHelp": false,
|
|
1312
1361
|
"hiddenAliases": [],
|
|
1313
|
-
"id": "
|
|
1362
|
+
"id": "catalog:manyfaced",
|
|
1314
1363
|
"pluginAlias": "faces-cli",
|
|
1315
1364
|
"pluginName": "faces-cli",
|
|
1316
1365
|
"pluginType": "core",
|
|
@@ -1320,14 +1369,19 @@
|
|
|
1320
1369
|
"relativePath": [
|
|
1321
1370
|
"dist",
|
|
1322
1371
|
"commands",
|
|
1323
|
-
"
|
|
1324
|
-
"
|
|
1372
|
+
"catalog",
|
|
1373
|
+
"manyfaced.js"
|
|
1325
1374
|
]
|
|
1326
1375
|
},
|
|
1327
|
-
"
|
|
1376
|
+
"catalog:restore": {
|
|
1328
1377
|
"aliases": [],
|
|
1329
|
-
"args": {
|
|
1330
|
-
|
|
1378
|
+
"args": {
|
|
1379
|
+
"file": {
|
|
1380
|
+
"description": "Backup file path (default: most recent in ~/.faces/backups/)",
|
|
1381
|
+
"name": "file"
|
|
1382
|
+
}
|
|
1383
|
+
},
|
|
1384
|
+
"description": "Restore faces and source material from a backup snapshot",
|
|
1331
1385
|
"flags": {
|
|
1332
1386
|
"json": {
|
|
1333
1387
|
"description": "Format output as json.",
|
|
@@ -1359,11 +1413,17 @@
|
|
|
1359
1413
|
"hasDynamicHelp": false,
|
|
1360
1414
|
"multiple": false,
|
|
1361
1415
|
"type": "option"
|
|
1416
|
+
},
|
|
1417
|
+
"compile": {
|
|
1418
|
+
"description": "Run compile:all after restoring",
|
|
1419
|
+
"name": "compile",
|
|
1420
|
+
"allowNo": false,
|
|
1421
|
+
"type": "boolean"
|
|
1362
1422
|
}
|
|
1363
1423
|
},
|
|
1364
1424
|
"hasDynamicHelp": false,
|
|
1365
1425
|
"hiddenAliases": [],
|
|
1366
|
-
"id": "
|
|
1426
|
+
"id": "catalog:restore",
|
|
1367
1427
|
"pluginAlias": "faces-cli",
|
|
1368
1428
|
"pluginName": "faces-cli",
|
|
1369
1429
|
"pluginType": "core",
|
|
@@ -1373,8 +1433,8 @@
|
|
|
1373
1433
|
"relativePath": [
|
|
1374
1434
|
"dist",
|
|
1375
1435
|
"commands",
|
|
1376
|
-
"
|
|
1377
|
-
"
|
|
1436
|
+
"catalog",
|
|
1437
|
+
"restore.js"
|
|
1378
1438
|
]
|
|
1379
1439
|
},
|
|
1380
1440
|
"chat:chat": {
|
|
@@ -1474,6 +1534,12 @@
|
|
|
1474
1534
|
"name": "responses",
|
|
1475
1535
|
"allowNo": false,
|
|
1476
1536
|
"type": "boolean"
|
|
1537
|
+
},
|
|
1538
|
+
"oauth-only": {
|
|
1539
|
+
"description": "Prevent fallback to paid system key (use OAuth only)",
|
|
1540
|
+
"name": "oauth-only",
|
|
1541
|
+
"allowNo": false,
|
|
1542
|
+
"type": "boolean"
|
|
1477
1543
|
}
|
|
1478
1544
|
},
|
|
1479
1545
|
"hasDynamicHelp": false,
|
|
@@ -1563,6 +1629,12 @@
|
|
|
1563
1629
|
"hasDynamicHelp": false,
|
|
1564
1630
|
"multiple": false,
|
|
1565
1631
|
"type": "option"
|
|
1632
|
+
},
|
|
1633
|
+
"oauth-only": {
|
|
1634
|
+
"description": "Prevent fallback to paid system key (use OAuth only)",
|
|
1635
|
+
"name": "oauth-only",
|
|
1636
|
+
"allowNo": false,
|
|
1637
|
+
"type": "boolean"
|
|
1566
1638
|
}
|
|
1567
1639
|
},
|
|
1568
1640
|
"hasDynamicHelp": false,
|
|
@@ -1644,6 +1716,12 @@
|
|
|
1644
1716
|
"name": "stream",
|
|
1645
1717
|
"allowNo": false,
|
|
1646
1718
|
"type": "boolean"
|
|
1719
|
+
},
|
|
1720
|
+
"oauth-only": {
|
|
1721
|
+
"description": "Prevent fallback to paid system key (use OAuth only)",
|
|
1722
|
+
"name": "oauth-only",
|
|
1723
|
+
"allowNo": false,
|
|
1724
|
+
"type": "boolean"
|
|
1647
1725
|
}
|
|
1648
1726
|
},
|
|
1649
1727
|
"hasDynamicHelp": false,
|
|
@@ -3853,6 +3931,12 @@
|
|
|
3853
3931
|
"hasDynamicHelp": false,
|
|
3854
3932
|
"multiple": false,
|
|
3855
3933
|
"type": "option"
|
|
3934
|
+
},
|
|
3935
|
+
"oauth-only": {
|
|
3936
|
+
"description": "Prevent fallback to paid system key (use OAuth only)",
|
|
3937
|
+
"name": "oauth-only",
|
|
3938
|
+
"allowNo": false,
|
|
3939
|
+
"type": "boolean"
|
|
3856
3940
|
}
|
|
3857
3941
|
},
|
|
3858
3942
|
"hasDynamicHelp": false,
|
|
@@ -4256,6 +4340,12 @@
|
|
|
4256
4340
|
"hasDynamicHelp": false,
|
|
4257
4341
|
"multiple": false,
|
|
4258
4342
|
"type": "option"
|
|
4343
|
+
},
|
|
4344
|
+
"oauth-only": {
|
|
4345
|
+
"description": "Prevent fallback to paid system key (use OAuth only)",
|
|
4346
|
+
"name": "oauth-only",
|
|
4347
|
+
"allowNo": false,
|
|
4348
|
+
"type": "boolean"
|
|
4259
4349
|
}
|
|
4260
4350
|
},
|
|
4261
4351
|
"hasDynamicHelp": false,
|
|
@@ -4462,5 +4552,5 @@
|
|
|
4462
4552
|
]
|
|
4463
4553
|
}
|
|
4464
4554
|
},
|
|
4465
|
-
"version": "1.
|
|
4555
|
+
"version": "1.6.1"
|
|
4466
4556
|
}
|