faces-cli 1.6.7 → 1.6.9
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/commands/compile/stats.js +10 -1
- package/oclif.manifest.json +197 -197
- package/package.json +1 -1
|
@@ -17,7 +17,7 @@ export default class CompileStats extends BaseCommand {
|
|
|
17
17
|
this.error(`Error (${err.statusCode}): ${err.message}`);
|
|
18
18
|
throw err;
|
|
19
19
|
}
|
|
20
|
-
// Rename
|
|
20
|
+
// Rename fields for clarity
|
|
21
21
|
const resp = data;
|
|
22
22
|
if (Array.isArray(resp.faces)) {
|
|
23
23
|
for (const f of resp.faces) {
|
|
@@ -25,6 +25,15 @@ export default class CompileStats extends BaseCommand {
|
|
|
25
25
|
f.alias = f.face_id;
|
|
26
26
|
delete f.face_id;
|
|
27
27
|
}
|
|
28
|
+
if (f.tokens_in_graph !== undefined) {
|
|
29
|
+
f.tokens_compiled_current = f.tokens_in_graph;
|
|
30
|
+
delete f.tokens_in_graph;
|
|
31
|
+
}
|
|
32
|
+
if (f.tokens_charged_alltime !== undefined) {
|
|
33
|
+
f.tokens_compiled_alltime = f.tokens_charged_alltime;
|
|
34
|
+
delete f.tokens_charged_alltime;
|
|
35
|
+
}
|
|
36
|
+
delete f.tokens_charged_period;
|
|
28
37
|
}
|
|
29
38
|
}
|
|
30
39
|
if (!this.jsonEnabled())
|
package/oclif.manifest.json
CHANGED
|
@@ -120,10 +120,23 @@
|
|
|
120
120
|
"state.js"
|
|
121
121
|
]
|
|
122
122
|
},
|
|
123
|
-
"
|
|
123
|
+
"auth:connect": {
|
|
124
124
|
"aliases": [],
|
|
125
|
-
"args": {
|
|
126
|
-
|
|
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
|
+
],
|
|
127
140
|
"flags": {
|
|
128
141
|
"json": {
|
|
129
142
|
"description": "Format output as json.",
|
|
@@ -155,11 +168,17 @@
|
|
|
155
168
|
"hasDynamicHelp": false,
|
|
156
169
|
"multiple": false,
|
|
157
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"
|
|
158
177
|
}
|
|
159
178
|
},
|
|
160
179
|
"hasDynamicHelp": false,
|
|
161
180
|
"hiddenAliases": [],
|
|
162
|
-
"id": "
|
|
181
|
+
"id": "auth:connect",
|
|
163
182
|
"pluginAlias": "faces-cli",
|
|
164
183
|
"pluginName": "faces-cli",
|
|
165
184
|
"pluginType": "core",
|
|
@@ -169,14 +188,18 @@
|
|
|
169
188
|
"relativePath": [
|
|
170
189
|
"dist",
|
|
171
190
|
"commands",
|
|
172
|
-
"
|
|
173
|
-
"
|
|
191
|
+
"auth",
|
|
192
|
+
"connect.js"
|
|
174
193
|
]
|
|
175
194
|
},
|
|
176
|
-
"
|
|
195
|
+
"auth:connections": {
|
|
177
196
|
"aliases": [],
|
|
178
197
|
"args": {},
|
|
179
|
-
"description": "
|
|
198
|
+
"description": "List connected OAuth provider accounts",
|
|
199
|
+
"examples": [
|
|
200
|
+
"<%= config.bin %> auth connections",
|
|
201
|
+
"<%= config.bin %> auth connections --json"
|
|
202
|
+
],
|
|
180
203
|
"flags": {
|
|
181
204
|
"json": {
|
|
182
205
|
"description": "Format output as json.",
|
|
@@ -212,7 +235,7 @@
|
|
|
212
235
|
},
|
|
213
236
|
"hasDynamicHelp": false,
|
|
214
237
|
"hiddenAliases": [],
|
|
215
|
-
"id": "
|
|
238
|
+
"id": "auth:connections",
|
|
216
239
|
"pluginAlias": "faces-cli",
|
|
217
240
|
"pluginName": "faces-cli",
|
|
218
241
|
"pluginType": "core",
|
|
@@ -222,14 +245,26 @@
|
|
|
222
245
|
"relativePath": [
|
|
223
246
|
"dist",
|
|
224
247
|
"commands",
|
|
225
|
-
"
|
|
226
|
-
"
|
|
248
|
+
"auth",
|
|
249
|
+
"connections.js"
|
|
227
250
|
]
|
|
228
251
|
},
|
|
229
|
-
"
|
|
252
|
+
"auth:disconnect": {
|
|
230
253
|
"aliases": [],
|
|
231
|
-
"args": {
|
|
232
|
-
|
|
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
|
+
],
|
|
233
268
|
"flags": {
|
|
234
269
|
"json": {
|
|
235
270
|
"description": "Format output as json.",
|
|
@@ -261,18 +296,11 @@
|
|
|
261
296
|
"hasDynamicHelp": false,
|
|
262
297
|
"multiple": false,
|
|
263
298
|
"type": "option"
|
|
264
|
-
},
|
|
265
|
-
"provider": {
|
|
266
|
-
"description": "Filter by provider (e.g. openai, anthropic)",
|
|
267
|
-
"name": "provider",
|
|
268
|
-
"hasDynamicHelp": false,
|
|
269
|
-
"multiple": false,
|
|
270
|
-
"type": "option"
|
|
271
299
|
}
|
|
272
300
|
},
|
|
273
301
|
"hasDynamicHelp": false,
|
|
274
302
|
"hiddenAliases": [],
|
|
275
|
-
"id": "
|
|
303
|
+
"id": "auth:disconnect",
|
|
276
304
|
"pluginAlias": "faces-cli",
|
|
277
305
|
"pluginName": "faces-cli",
|
|
278
306
|
"pluginType": "core",
|
|
@@ -282,14 +310,14 @@
|
|
|
282
310
|
"relativePath": [
|
|
283
311
|
"dist",
|
|
284
312
|
"commands",
|
|
285
|
-
"
|
|
286
|
-
"
|
|
313
|
+
"auth",
|
|
314
|
+
"disconnect.js"
|
|
287
315
|
]
|
|
288
316
|
},
|
|
289
|
-
"
|
|
317
|
+
"auth:login": {
|
|
290
318
|
"aliases": [],
|
|
291
319
|
"args": {},
|
|
292
|
-
"description": "
|
|
320
|
+
"description": "Login and save JWT credentials",
|
|
293
321
|
"flags": {
|
|
294
322
|
"json": {
|
|
295
323
|
"description": "Format output as json.",
|
|
@@ -321,11 +349,27 @@
|
|
|
321
349
|
"hasDynamicHelp": false,
|
|
322
350
|
"multiple": false,
|
|
323
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"
|
|
324
368
|
}
|
|
325
369
|
},
|
|
326
370
|
"hasDynamicHelp": false,
|
|
327
371
|
"hiddenAliases": [],
|
|
328
|
-
"id": "
|
|
372
|
+
"id": "auth:login",
|
|
329
373
|
"pluginAlias": "faces-cli",
|
|
330
374
|
"pluginName": "faces-cli",
|
|
331
375
|
"pluginType": "core",
|
|
@@ -335,14 +379,14 @@
|
|
|
335
379
|
"relativePath": [
|
|
336
380
|
"dist",
|
|
337
381
|
"commands",
|
|
338
|
-
"
|
|
339
|
-
"
|
|
382
|
+
"auth",
|
|
383
|
+
"login.js"
|
|
340
384
|
]
|
|
341
385
|
},
|
|
342
|
-
"
|
|
386
|
+
"auth:logout": {
|
|
343
387
|
"aliases": [],
|
|
344
388
|
"args": {},
|
|
345
|
-
"description": "
|
|
389
|
+
"description": "Clear saved credentials",
|
|
346
390
|
"flags": {
|
|
347
391
|
"json": {
|
|
348
392
|
"description": "Format output as json.",
|
|
@@ -378,7 +422,7 @@
|
|
|
378
422
|
},
|
|
379
423
|
"hasDynamicHelp": false,
|
|
380
424
|
"hiddenAliases": [],
|
|
381
|
-
"id": "
|
|
425
|
+
"id": "auth:logout",
|
|
382
426
|
"pluginAlias": "faces-cli",
|
|
383
427
|
"pluginName": "faces-cli",
|
|
384
428
|
"pluginType": "core",
|
|
@@ -388,14 +432,14 @@
|
|
|
388
432
|
"relativePath": [
|
|
389
433
|
"dist",
|
|
390
434
|
"commands",
|
|
391
|
-
"
|
|
392
|
-
"
|
|
435
|
+
"auth",
|
|
436
|
+
"logout.js"
|
|
393
437
|
]
|
|
394
438
|
},
|
|
395
|
-
"
|
|
439
|
+
"auth:refresh": {
|
|
396
440
|
"aliases": [],
|
|
397
441
|
"args": {},
|
|
398
|
-
"description": "
|
|
442
|
+
"description": "Exchange current JWT for a fresh one",
|
|
399
443
|
"flags": {
|
|
400
444
|
"json": {
|
|
401
445
|
"description": "Format output as json.",
|
|
@@ -427,26 +471,11 @@
|
|
|
427
471
|
"hasDynamicHelp": false,
|
|
428
472
|
"multiple": false,
|
|
429
473
|
"type": "option"
|
|
430
|
-
},
|
|
431
|
-
"amount": {
|
|
432
|
-
"description": "Top-up amount in USD (min $1)",
|
|
433
|
-
"name": "amount",
|
|
434
|
-
"required": true,
|
|
435
|
-
"hasDynamicHelp": false,
|
|
436
|
-
"multiple": false,
|
|
437
|
-
"type": "option"
|
|
438
|
-
},
|
|
439
|
-
"payment-ref": {
|
|
440
|
-
"description": "Payment reference (admin/test path)",
|
|
441
|
-
"name": "payment-ref",
|
|
442
|
-
"hasDynamicHelp": false,
|
|
443
|
-
"multiple": false,
|
|
444
|
-
"type": "option"
|
|
445
474
|
}
|
|
446
475
|
},
|
|
447
476
|
"hasDynamicHelp": false,
|
|
448
477
|
"hiddenAliases": [],
|
|
449
|
-
"id": "
|
|
478
|
+
"id": "auth:refresh",
|
|
450
479
|
"pluginAlias": "faces-cli",
|
|
451
480
|
"pluginName": "faces-cli",
|
|
452
481
|
"pluginType": "core",
|
|
@@ -456,14 +485,14 @@
|
|
|
456
485
|
"relativePath": [
|
|
457
486
|
"dist",
|
|
458
487
|
"commands",
|
|
459
|
-
"
|
|
460
|
-
"
|
|
488
|
+
"auth",
|
|
489
|
+
"refresh.js"
|
|
461
490
|
]
|
|
462
491
|
},
|
|
463
|
-
"
|
|
492
|
+
"auth:register": {
|
|
464
493
|
"aliases": [],
|
|
465
494
|
"args": {},
|
|
466
|
-
"description": "
|
|
495
|
+
"description": "Create a new Faces account",
|
|
467
496
|
"flags": {
|
|
468
497
|
"json": {
|
|
469
498
|
"description": "Format output as json.",
|
|
@@ -496,37 +525,53 @@
|
|
|
496
525
|
"multiple": false,
|
|
497
526
|
"type": "option"
|
|
498
527
|
},
|
|
499
|
-
"
|
|
500
|
-
"description": "
|
|
501
|
-
"name": "
|
|
528
|
+
"email": {
|
|
529
|
+
"description": "Email address",
|
|
530
|
+
"name": "email",
|
|
531
|
+
"required": true,
|
|
502
532
|
"hasDynamicHelp": false,
|
|
503
533
|
"multiple": false,
|
|
504
|
-
"options": [
|
|
505
|
-
"api_key",
|
|
506
|
-
"model",
|
|
507
|
-
"llm",
|
|
508
|
-
"date"
|
|
509
|
-
],
|
|
510
534
|
"type": "option"
|
|
511
535
|
},
|
|
512
|
-
"
|
|
513
|
-
"description": "
|
|
514
|
-
"name": "
|
|
536
|
+
"password": {
|
|
537
|
+
"description": "Password",
|
|
538
|
+
"name": "password",
|
|
539
|
+
"required": true,
|
|
515
540
|
"hasDynamicHelp": false,
|
|
516
541
|
"multiple": false,
|
|
517
542
|
"type": "option"
|
|
518
543
|
},
|
|
519
|
-
"
|
|
520
|
-
"description": "
|
|
521
|
-
"name": "
|
|
544
|
+
"username": {
|
|
545
|
+
"description": "Username (lowercase, dashes, numbers)",
|
|
546
|
+
"name": "username",
|
|
547
|
+
"required": true,
|
|
522
548
|
"hasDynamicHelp": false,
|
|
523
549
|
"multiple": false,
|
|
524
550
|
"type": "option"
|
|
551
|
+
},
|
|
552
|
+
"invite-key": {
|
|
553
|
+
"description": "Invite key (if required)",
|
|
554
|
+
"name": "invite-key",
|
|
555
|
+
"hasDynamicHelp": false,
|
|
556
|
+
"multiple": false,
|
|
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"
|
|
525
570
|
}
|
|
526
571
|
},
|
|
527
572
|
"hasDynamicHelp": false,
|
|
528
573
|
"hiddenAliases": [],
|
|
529
|
-
"id": "
|
|
574
|
+
"id": "auth:register",
|
|
530
575
|
"pluginAlias": "faces-cli",
|
|
531
576
|
"pluginName": "faces-cli",
|
|
532
577
|
"pluginType": "core",
|
|
@@ -536,27 +581,14 @@
|
|
|
536
581
|
"relativePath": [
|
|
537
582
|
"dist",
|
|
538
583
|
"commands",
|
|
539
|
-
"
|
|
540
|
-
"
|
|
584
|
+
"auth",
|
|
585
|
+
"register.js"
|
|
541
586
|
]
|
|
542
587
|
},
|
|
543
|
-
"auth:
|
|
588
|
+
"auth:whoami": {
|
|
544
589
|
"aliases": [],
|
|
545
|
-
"args": {
|
|
546
|
-
|
|
547
|
-
"description": "OAuth provider to connect",
|
|
548
|
-
"name": "provider",
|
|
549
|
-
"options": [
|
|
550
|
-
"openai"
|
|
551
|
-
],
|
|
552
|
-
"required": true
|
|
553
|
-
}
|
|
554
|
-
},
|
|
555
|
-
"description": "Connect an OAuth provider account to Faces (e.g. ChatGPT Plus/Pro)",
|
|
556
|
-
"examples": [
|
|
557
|
-
"<%= config.bin %> auth connect openai",
|
|
558
|
-
"<%= config.bin %> auth connect openai --manual"
|
|
559
|
-
],
|
|
590
|
+
"args": {},
|
|
591
|
+
"description": "Print current user profile and auth diagnostic",
|
|
560
592
|
"flags": {
|
|
561
593
|
"json": {
|
|
562
594
|
"description": "Format output as json.",
|
|
@@ -588,17 +620,11 @@
|
|
|
588
620
|
"hasDynamicHelp": false,
|
|
589
621
|
"multiple": false,
|
|
590
622
|
"type": "option"
|
|
591
|
-
},
|
|
592
|
-
"manual": {
|
|
593
|
-
"description": "Manual mode for headless environments: prints the authorize URL and prompts you to paste the callback URL after approving in any browser.",
|
|
594
|
-
"name": "manual",
|
|
595
|
-
"allowNo": false,
|
|
596
|
-
"type": "boolean"
|
|
597
623
|
}
|
|
598
624
|
},
|
|
599
625
|
"hasDynamicHelp": false,
|
|
600
626
|
"hiddenAliases": [],
|
|
601
|
-
"id": "auth:
|
|
627
|
+
"id": "auth:whoami",
|
|
602
628
|
"pluginAlias": "faces-cli",
|
|
603
629
|
"pluginName": "faces-cli",
|
|
604
630
|
"pluginType": "core",
|
|
@@ -609,17 +635,13 @@
|
|
|
609
635
|
"dist",
|
|
610
636
|
"commands",
|
|
611
637
|
"auth",
|
|
612
|
-
"
|
|
638
|
+
"whoami.js"
|
|
613
639
|
]
|
|
614
640
|
},
|
|
615
|
-
"
|
|
641
|
+
"billing:balance": {
|
|
616
642
|
"aliases": [],
|
|
617
643
|
"args": {},
|
|
618
|
-
"description": "
|
|
619
|
-
"examples": [
|
|
620
|
-
"<%= config.bin %> auth connections",
|
|
621
|
-
"<%= config.bin %> auth connections --json"
|
|
622
|
-
],
|
|
644
|
+
"description": "Show credit balance and payment method status",
|
|
623
645
|
"flags": {
|
|
624
646
|
"json": {
|
|
625
647
|
"description": "Format output as json.",
|
|
@@ -655,7 +677,7 @@
|
|
|
655
677
|
},
|
|
656
678
|
"hasDynamicHelp": false,
|
|
657
679
|
"hiddenAliases": [],
|
|
658
|
-
"id": "
|
|
680
|
+
"id": "billing:balance",
|
|
659
681
|
"pluginAlias": "faces-cli",
|
|
660
682
|
"pluginName": "faces-cli",
|
|
661
683
|
"pluginType": "core",
|
|
@@ -665,26 +687,14 @@
|
|
|
665
687
|
"relativePath": [
|
|
666
688
|
"dist",
|
|
667
689
|
"commands",
|
|
668
|
-
"
|
|
669
|
-
"
|
|
690
|
+
"billing",
|
|
691
|
+
"balance.js"
|
|
670
692
|
]
|
|
671
693
|
},
|
|
672
|
-
"
|
|
694
|
+
"billing:card-setup": {
|
|
673
695
|
"aliases": [],
|
|
674
|
-
"args": {
|
|
675
|
-
|
|
676
|
-
"description": "OAuth provider to disconnect",
|
|
677
|
-
"name": "provider",
|
|
678
|
-
"options": [
|
|
679
|
-
"openai"
|
|
680
|
-
],
|
|
681
|
-
"required": true
|
|
682
|
-
}
|
|
683
|
-
},
|
|
684
|
-
"description": "Disconnect a linked OAuth provider account",
|
|
685
|
-
"examples": [
|
|
686
|
-
"<%= config.bin %> auth disconnect openai"
|
|
687
|
-
],
|
|
696
|
+
"args": {},
|
|
697
|
+
"description": "Get a Stripe card setup URL to save a payment method",
|
|
688
698
|
"flags": {
|
|
689
699
|
"json": {
|
|
690
700
|
"description": "Format output as json.",
|
|
@@ -720,7 +730,7 @@
|
|
|
720
730
|
},
|
|
721
731
|
"hasDynamicHelp": false,
|
|
722
732
|
"hiddenAliases": [],
|
|
723
|
-
"id": "
|
|
733
|
+
"id": "billing:card-setup",
|
|
724
734
|
"pluginAlias": "faces-cli",
|
|
725
735
|
"pluginName": "faces-cli",
|
|
726
736
|
"pluginType": "core",
|
|
@@ -730,14 +740,14 @@
|
|
|
730
740
|
"relativePath": [
|
|
731
741
|
"dist",
|
|
732
742
|
"commands",
|
|
733
|
-
"
|
|
734
|
-
"
|
|
743
|
+
"billing",
|
|
744
|
+
"card-setup.js"
|
|
735
745
|
]
|
|
736
746
|
},
|
|
737
|
-
"
|
|
747
|
+
"billing:llm-costs": {
|
|
738
748
|
"aliases": [],
|
|
739
749
|
"args": {},
|
|
740
|
-
"description": "
|
|
750
|
+
"description": "List available LLMs and their per-token costs",
|
|
741
751
|
"flags": {
|
|
742
752
|
"json": {
|
|
743
753
|
"description": "Format output as json.",
|
|
@@ -770,18 +780,9 @@
|
|
|
770
780
|
"multiple": false,
|
|
771
781
|
"type": "option"
|
|
772
782
|
},
|
|
773
|
-
"
|
|
774
|
-
"description": "
|
|
775
|
-
"name": "
|
|
776
|
-
"required": true,
|
|
777
|
-
"hasDynamicHelp": false,
|
|
778
|
-
"multiple": false,
|
|
779
|
-
"type": "option"
|
|
780
|
-
},
|
|
781
|
-
"password": {
|
|
782
|
-
"description": "Account password",
|
|
783
|
-
"name": "password",
|
|
784
|
-
"required": true,
|
|
783
|
+
"provider": {
|
|
784
|
+
"description": "Filter by provider (e.g. openai, anthropic)",
|
|
785
|
+
"name": "provider",
|
|
785
786
|
"hasDynamicHelp": false,
|
|
786
787
|
"multiple": false,
|
|
787
788
|
"type": "option"
|
|
@@ -789,7 +790,7 @@
|
|
|
789
790
|
},
|
|
790
791
|
"hasDynamicHelp": false,
|
|
791
792
|
"hiddenAliases": [],
|
|
792
|
-
"id": "
|
|
793
|
+
"id": "billing:llm-costs",
|
|
793
794
|
"pluginAlias": "faces-cli",
|
|
794
795
|
"pluginName": "faces-cli",
|
|
795
796
|
"pluginType": "core",
|
|
@@ -799,14 +800,14 @@
|
|
|
799
800
|
"relativePath": [
|
|
800
801
|
"dist",
|
|
801
802
|
"commands",
|
|
802
|
-
"
|
|
803
|
-
"
|
|
803
|
+
"billing",
|
|
804
|
+
"llm-costs.js"
|
|
804
805
|
]
|
|
805
806
|
},
|
|
806
|
-
"
|
|
807
|
+
"billing:quota": {
|
|
807
808
|
"aliases": [],
|
|
808
809
|
"args": {},
|
|
809
|
-
"description": "
|
|
810
|
+
"description": "Show compilation stats per face (deprecated — use compile:stats)",
|
|
810
811
|
"flags": {
|
|
811
812
|
"json": {
|
|
812
813
|
"description": "Format output as json.",
|
|
@@ -842,7 +843,7 @@
|
|
|
842
843
|
},
|
|
843
844
|
"hasDynamicHelp": false,
|
|
844
845
|
"hiddenAliases": [],
|
|
845
|
-
"id": "
|
|
846
|
+
"id": "billing:quota",
|
|
846
847
|
"pluginAlias": "faces-cli",
|
|
847
848
|
"pluginName": "faces-cli",
|
|
848
849
|
"pluginType": "core",
|
|
@@ -852,14 +853,14 @@
|
|
|
852
853
|
"relativePath": [
|
|
853
854
|
"dist",
|
|
854
855
|
"commands",
|
|
855
|
-
"
|
|
856
|
-
"
|
|
856
|
+
"billing",
|
|
857
|
+
"quota.js"
|
|
857
858
|
]
|
|
858
859
|
},
|
|
859
|
-
"
|
|
860
|
+
"billing:subscription": {
|
|
860
861
|
"aliases": [],
|
|
861
862
|
"args": {},
|
|
862
|
-
"description": "
|
|
863
|
+
"description": "Show current plan, face count, and renewal date",
|
|
863
864
|
"flags": {
|
|
864
865
|
"json": {
|
|
865
866
|
"description": "Format output as json.",
|
|
@@ -895,7 +896,7 @@
|
|
|
895
896
|
},
|
|
896
897
|
"hasDynamicHelp": false,
|
|
897
898
|
"hiddenAliases": [],
|
|
898
|
-
"id": "
|
|
899
|
+
"id": "billing:subscription",
|
|
899
900
|
"pluginAlias": "faces-cli",
|
|
900
901
|
"pluginName": "faces-cli",
|
|
901
902
|
"pluginType": "core",
|
|
@@ -905,14 +906,14 @@
|
|
|
905
906
|
"relativePath": [
|
|
906
907
|
"dist",
|
|
907
908
|
"commands",
|
|
908
|
-
"
|
|
909
|
-
"
|
|
909
|
+
"billing",
|
|
910
|
+
"subscription.js"
|
|
910
911
|
]
|
|
911
912
|
},
|
|
912
|
-
"
|
|
913
|
+
"billing:topup": {
|
|
913
914
|
"aliases": [],
|
|
914
915
|
"args": {},
|
|
915
|
-
"description": "
|
|
916
|
+
"description": "Top up credit balance using saved payment method",
|
|
916
917
|
"flags": {
|
|
917
918
|
"json": {
|
|
918
919
|
"description": "Format output as json.",
|
|
@@ -945,53 +946,25 @@
|
|
|
945
946
|
"multiple": false,
|
|
946
947
|
"type": "option"
|
|
947
948
|
},
|
|
948
|
-
"
|
|
949
|
-
"description": "
|
|
950
|
-
"name": "
|
|
951
|
-
"required": true,
|
|
952
|
-
"hasDynamicHelp": false,
|
|
953
|
-
"multiple": false,
|
|
954
|
-
"type": "option"
|
|
955
|
-
},
|
|
956
|
-
"password": {
|
|
957
|
-
"description": "Password",
|
|
958
|
-
"name": "password",
|
|
959
|
-
"required": true,
|
|
960
|
-
"hasDynamicHelp": false,
|
|
961
|
-
"multiple": false,
|
|
962
|
-
"type": "option"
|
|
963
|
-
},
|
|
964
|
-
"username": {
|
|
965
|
-
"description": "Username (lowercase, dashes, numbers)",
|
|
966
|
-
"name": "username",
|
|
949
|
+
"amount": {
|
|
950
|
+
"description": "Top-up amount in USD (min $1)",
|
|
951
|
+
"name": "amount",
|
|
967
952
|
"required": true,
|
|
968
953
|
"hasDynamicHelp": false,
|
|
969
954
|
"multiple": false,
|
|
970
955
|
"type": "option"
|
|
971
956
|
},
|
|
972
|
-
"
|
|
973
|
-
"description": "
|
|
974
|
-
"name": "
|
|
975
|
-
"hasDynamicHelp": false,
|
|
976
|
-
"multiple": false,
|
|
977
|
-
"type": "option"
|
|
978
|
-
},
|
|
979
|
-
"plan": {
|
|
980
|
-
"description": "Plan to subscribe to: \"free\" ($5 activation) or \"connect\" ($17/mo, no activation fee)",
|
|
981
|
-
"name": "plan",
|
|
982
|
-
"default": "free",
|
|
957
|
+
"payment-ref": {
|
|
958
|
+
"description": "Payment reference (admin/test path)",
|
|
959
|
+
"name": "payment-ref",
|
|
983
960
|
"hasDynamicHelp": false,
|
|
984
961
|
"multiple": false,
|
|
985
|
-
"options": [
|
|
986
|
-
"free",
|
|
987
|
-
"connect"
|
|
988
|
-
],
|
|
989
962
|
"type": "option"
|
|
990
963
|
}
|
|
991
964
|
},
|
|
992
965
|
"hasDynamicHelp": false,
|
|
993
966
|
"hiddenAliases": [],
|
|
994
|
-
"id": "
|
|
967
|
+
"id": "billing:topup",
|
|
995
968
|
"pluginAlias": "faces-cli",
|
|
996
969
|
"pluginName": "faces-cli",
|
|
997
970
|
"pluginType": "core",
|
|
@@ -1001,14 +974,14 @@
|
|
|
1001
974
|
"relativePath": [
|
|
1002
975
|
"dist",
|
|
1003
976
|
"commands",
|
|
1004
|
-
"
|
|
1005
|
-
"
|
|
977
|
+
"billing",
|
|
978
|
+
"topup.js"
|
|
1006
979
|
]
|
|
1007
980
|
},
|
|
1008
|
-
"
|
|
981
|
+
"billing:usage": {
|
|
1009
982
|
"aliases": [],
|
|
1010
983
|
"args": {},
|
|
1011
|
-
"description": "
|
|
984
|
+
"description": "Aggregated usage analytics",
|
|
1012
985
|
"flags": {
|
|
1013
986
|
"json": {
|
|
1014
987
|
"description": "Format output as json.",
|
|
@@ -1040,11 +1013,38 @@
|
|
|
1040
1013
|
"hasDynamicHelp": false,
|
|
1041
1014
|
"multiple": false,
|
|
1042
1015
|
"type": "option"
|
|
1016
|
+
},
|
|
1017
|
+
"group-by": {
|
|
1018
|
+
"description": "Group results",
|
|
1019
|
+
"name": "group-by",
|
|
1020
|
+
"hasDynamicHelp": false,
|
|
1021
|
+
"multiple": false,
|
|
1022
|
+
"options": [
|
|
1023
|
+
"api_key",
|
|
1024
|
+
"model",
|
|
1025
|
+
"llm",
|
|
1026
|
+
"date"
|
|
1027
|
+
],
|
|
1028
|
+
"type": "option"
|
|
1029
|
+
},
|
|
1030
|
+
"from": {
|
|
1031
|
+
"description": "Start date (YYYY-MM-DD)",
|
|
1032
|
+
"name": "from",
|
|
1033
|
+
"hasDynamicHelp": false,
|
|
1034
|
+
"multiple": false,
|
|
1035
|
+
"type": "option"
|
|
1036
|
+
},
|
|
1037
|
+
"to": {
|
|
1038
|
+
"description": "End date (YYYY-MM-DD)",
|
|
1039
|
+
"name": "to",
|
|
1040
|
+
"hasDynamicHelp": false,
|
|
1041
|
+
"multiple": false,
|
|
1042
|
+
"type": "option"
|
|
1043
1043
|
}
|
|
1044
1044
|
},
|
|
1045
1045
|
"hasDynamicHelp": false,
|
|
1046
1046
|
"hiddenAliases": [],
|
|
1047
|
-
"id": "
|
|
1047
|
+
"id": "billing:usage",
|
|
1048
1048
|
"pluginAlias": "faces-cli",
|
|
1049
1049
|
"pluginName": "faces-cli",
|
|
1050
1050
|
"pluginType": "core",
|
|
@@ -1054,8 +1054,8 @@
|
|
|
1054
1054
|
"relativePath": [
|
|
1055
1055
|
"dist",
|
|
1056
1056
|
"commands",
|
|
1057
|
-
"
|
|
1058
|
-
"
|
|
1057
|
+
"billing",
|
|
1058
|
+
"usage.js"
|
|
1059
1059
|
]
|
|
1060
1060
|
},
|
|
1061
1061
|
"catalog:backup": {
|
|
@@ -5894,5 +5894,5 @@
|
|
|
5894
5894
|
]
|
|
5895
5895
|
}
|
|
5896
5896
|
},
|
|
5897
|
-
"version": "1.6.
|
|
5897
|
+
"version": "1.6.9"
|
|
5898
5898
|
}
|