faces-cli 1.6.10 → 1.6.12
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.
|
@@ -10,8 +10,8 @@ export default class AuthConnections extends BaseCommand {
|
|
|
10
10
|
];
|
|
11
11
|
async run() {
|
|
12
12
|
const { flags } = await this.parse(AuthConnections);
|
|
13
|
-
const client = this.makeClient(flags
|
|
14
|
-
const data = await client.get('/v1/oauth'
|
|
13
|
+
const client = this.makeClient(flags);
|
|
14
|
+
const data = await client.get('/v1/oauth');
|
|
15
15
|
if (!this.jsonEnabled()) {
|
|
16
16
|
const rows = data;
|
|
17
17
|
if (!rows || rows.length === 0) {
|
|
@@ -16,7 +16,7 @@ export default class CatalogBackup extends BaseCommand {
|
|
|
16
16
|
// Fetch all faces with tags included
|
|
17
17
|
let faces;
|
|
18
18
|
try {
|
|
19
|
-
const resp = await client.get('/v1/faces?include=tags');
|
|
19
|
+
const resp = await client.get('/v1/faces?include=tags,profile');
|
|
20
20
|
faces = (resp.data ?? resp);
|
|
21
21
|
}
|
|
22
22
|
catch (err) {
|
|
@@ -21,12 +21,12 @@ export default class CatalogDoctor extends BaseCommand {
|
|
|
21
21
|
// Fetch all faces from API (with tags)
|
|
22
22
|
let remoteFaces;
|
|
23
23
|
try {
|
|
24
|
-
const resp = await client.get('/v1/faces?include=tags');
|
|
24
|
+
const resp = await client.get('/v1/faces?include=tags,profile');
|
|
25
25
|
const arr = resp.data ?? resp;
|
|
26
26
|
// Fetch full details for each face (tags come from list, but need description etc.)
|
|
27
27
|
remoteFaces = await Promise.all(arr.map(async (f) => {
|
|
28
28
|
try {
|
|
29
|
-
const full = await client.get(`/v1/faces/${f.alias}?include=tags`);
|
|
29
|
+
const full = await client.get(`/v1/faces/${f.alias}?include=tags,profile`);
|
|
30
30
|
return full;
|
|
31
31
|
}
|
|
32
32
|
catch {
|
|
@@ -14,9 +14,12 @@ export default class FaceGet extends BaseCommand {
|
|
|
14
14
|
async run() {
|
|
15
15
|
const { args, flags } = await this.parse(FaceGet);
|
|
16
16
|
const client = this.makeClient(flags);
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
17
|
+
// Always include profile; merge with user's --include
|
|
18
|
+
const includes = new Set(['profile']);
|
|
19
|
+
if (flags.include)
|
|
20
|
+
for (const v of flags.include.split(','))
|
|
21
|
+
includes.add(v.trim());
|
|
22
|
+
const path = `/v1/faces/${args.face_id}?include=${[...includes].join(',')}`;
|
|
20
23
|
let data;
|
|
21
24
|
try {
|
|
22
25
|
data = await client.get(path);
|
|
@@ -58,7 +58,7 @@ export default class FaceUpdate extends BaseCommand {
|
|
|
58
58
|
}
|
|
59
59
|
else {
|
|
60
60
|
try {
|
|
61
|
-
data = await client.get(`/v1/faces/${args.face_id}`);
|
|
61
|
+
data = await client.get(`/v1/faces/${args.face_id}?include=profile`);
|
|
62
62
|
}
|
|
63
63
|
catch (err) {
|
|
64
64
|
if (err instanceof FacesAPIError)
|
package/oclif.manifest.json
CHANGED
|
@@ -120,23 +120,10 @@
|
|
|
120
120
|
"state.js"
|
|
121
121
|
]
|
|
122
122
|
},
|
|
123
|
-
"
|
|
123
|
+
"catalog:backup": {
|
|
124
124
|
"aliases": [],
|
|
125
|
-
"args": {
|
|
126
|
-
|
|
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
|
-
],
|
|
125
|
+
"args": {},
|
|
126
|
+
"description": "Snapshot all faces, teams, and source material for migration",
|
|
140
127
|
"flags": {
|
|
141
128
|
"json": {
|
|
142
129
|
"description": "Format output as json.",
|
|
@@ -168,17 +155,11 @@
|
|
|
168
155
|
"hasDynamicHelp": false,
|
|
169
156
|
"multiple": false,
|
|
170
157
|
"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"
|
|
177
158
|
}
|
|
178
159
|
},
|
|
179
160
|
"hasDynamicHelp": false,
|
|
180
161
|
"hiddenAliases": [],
|
|
181
|
-
"id": "
|
|
162
|
+
"id": "catalog:backup",
|
|
182
163
|
"pluginAlias": "faces-cli",
|
|
183
164
|
"pluginName": "faces-cli",
|
|
184
165
|
"pluginType": "core",
|
|
@@ -188,18 +169,14 @@
|
|
|
188
169
|
"relativePath": [
|
|
189
170
|
"dist",
|
|
190
171
|
"commands",
|
|
191
|
-
"
|
|
192
|
-
"
|
|
172
|
+
"catalog",
|
|
173
|
+
"backup.js"
|
|
193
174
|
]
|
|
194
175
|
},
|
|
195
|
-
"
|
|
176
|
+
"catalog:doctor": {
|
|
196
177
|
"aliases": [],
|
|
197
178
|
"args": {},
|
|
198
|
-
"description": "
|
|
199
|
-
"examples": [
|
|
200
|
-
"<%= config.bin %> auth connections",
|
|
201
|
-
"<%= config.bin %> auth connections --json"
|
|
202
|
-
],
|
|
179
|
+
"description": "Diagnose and repair the local face and team catalog",
|
|
203
180
|
"flags": {
|
|
204
181
|
"json": {
|
|
205
182
|
"description": "Format output as json.",
|
|
@@ -231,11 +208,23 @@
|
|
|
231
208
|
"hasDynamicHelp": false,
|
|
232
209
|
"multiple": false,
|
|
233
210
|
"type": "option"
|
|
211
|
+
},
|
|
212
|
+
"fix": {
|
|
213
|
+
"description": "Rebuild missing or stale catalog entries from API",
|
|
214
|
+
"name": "fix",
|
|
215
|
+
"allowNo": false,
|
|
216
|
+
"type": "boolean"
|
|
217
|
+
},
|
|
218
|
+
"generate": {
|
|
219
|
+
"description": "Fix + generate missing descriptions via LLM",
|
|
220
|
+
"name": "generate",
|
|
221
|
+
"allowNo": false,
|
|
222
|
+
"type": "boolean"
|
|
234
223
|
}
|
|
235
224
|
},
|
|
236
225
|
"hasDynamicHelp": false,
|
|
237
226
|
"hiddenAliases": [],
|
|
238
|
-
"id": "
|
|
227
|
+
"id": "catalog:doctor",
|
|
239
228
|
"pluginAlias": "faces-cli",
|
|
240
229
|
"pluginName": "faces-cli",
|
|
241
230
|
"pluginType": "core",
|
|
@@ -245,26 +234,14 @@
|
|
|
245
234
|
"relativePath": [
|
|
246
235
|
"dist",
|
|
247
236
|
"commands",
|
|
248
|
-
"
|
|
249
|
-
"
|
|
237
|
+
"catalog",
|
|
238
|
+
"doctor.js"
|
|
250
239
|
]
|
|
251
240
|
},
|
|
252
|
-
"
|
|
241
|
+
"catalog:list": {
|
|
253
242
|
"aliases": [],
|
|
254
|
-
"args": {
|
|
255
|
-
|
|
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
|
-
],
|
|
243
|
+
"args": {},
|
|
244
|
+
"description": "List all faces in the local catalog",
|
|
268
245
|
"flags": {
|
|
269
246
|
"json": {
|
|
270
247
|
"description": "Format output as json.",
|
|
@@ -300,7 +277,7 @@
|
|
|
300
277
|
},
|
|
301
278
|
"hasDynamicHelp": false,
|
|
302
279
|
"hiddenAliases": [],
|
|
303
|
-
"id": "
|
|
280
|
+
"id": "catalog:list",
|
|
304
281
|
"pluginAlias": "faces-cli",
|
|
305
282
|
"pluginName": "faces-cli",
|
|
306
283
|
"pluginType": "core",
|
|
@@ -310,14 +287,14 @@
|
|
|
310
287
|
"relativePath": [
|
|
311
288
|
"dist",
|
|
312
289
|
"commands",
|
|
313
|
-
"
|
|
314
|
-
"
|
|
290
|
+
"catalog",
|
|
291
|
+
"list.js"
|
|
315
292
|
]
|
|
316
293
|
},
|
|
317
|
-
"
|
|
294
|
+
"catalog:manyfaced": {
|
|
318
295
|
"aliases": [],
|
|
319
296
|
"args": {},
|
|
320
|
-
"description": "
|
|
297
|
+
"description": "Browse and install community manyfaced skills from github.com/facessh/manyfaced",
|
|
321
298
|
"flags": {
|
|
322
299
|
"json": {
|
|
323
300
|
"description": "Format output as json.",
|
|
@@ -350,26 +327,37 @@
|
|
|
350
327
|
"multiple": false,
|
|
351
328
|
"type": "option"
|
|
352
329
|
},
|
|
353
|
-
"
|
|
354
|
-
"description": "
|
|
355
|
-
"name": "
|
|
356
|
-
"required": true,
|
|
330
|
+
"skill": {
|
|
331
|
+
"description": "Show details for a specific skill",
|
|
332
|
+
"name": "skill",
|
|
357
333
|
"hasDynamicHelp": false,
|
|
358
334
|
"multiple": false,
|
|
359
335
|
"type": "option"
|
|
360
336
|
},
|
|
361
|
-
"
|
|
362
|
-
"description": "
|
|
363
|
-
"name": "
|
|
364
|
-
"required": true,
|
|
337
|
+
"install": {
|
|
338
|
+
"description": "Install a skill by name",
|
|
339
|
+
"name": "install",
|
|
365
340
|
"hasDynamicHelp": false,
|
|
366
341
|
"multiple": false,
|
|
367
342
|
"type": "option"
|
|
343
|
+
},
|
|
344
|
+
"skills-dir": {
|
|
345
|
+
"description": "Directory to install skills into (required for --install)",
|
|
346
|
+
"name": "skills-dir",
|
|
347
|
+
"hasDynamicHelp": false,
|
|
348
|
+
"multiple": false,
|
|
349
|
+
"type": "option"
|
|
350
|
+
},
|
|
351
|
+
"refresh": {
|
|
352
|
+
"description": "Force refresh the skill index (ignore cache)",
|
|
353
|
+
"name": "refresh",
|
|
354
|
+
"allowNo": false,
|
|
355
|
+
"type": "boolean"
|
|
368
356
|
}
|
|
369
357
|
},
|
|
370
358
|
"hasDynamicHelp": false,
|
|
371
359
|
"hiddenAliases": [],
|
|
372
|
-
"id": "
|
|
360
|
+
"id": "catalog:manyfaced",
|
|
373
361
|
"pluginAlias": "faces-cli",
|
|
374
362
|
"pluginName": "faces-cli",
|
|
375
363
|
"pluginType": "core",
|
|
@@ -379,14 +367,19 @@
|
|
|
379
367
|
"relativePath": [
|
|
380
368
|
"dist",
|
|
381
369
|
"commands",
|
|
382
|
-
"
|
|
383
|
-
"
|
|
370
|
+
"catalog",
|
|
371
|
+
"manyfaced.js"
|
|
384
372
|
]
|
|
385
373
|
},
|
|
386
|
-
"
|
|
374
|
+
"catalog:restore": {
|
|
387
375
|
"aliases": [],
|
|
388
|
-
"args": {
|
|
389
|
-
|
|
376
|
+
"args": {
|
|
377
|
+
"file": {
|
|
378
|
+
"description": "Backup file path (default: most recent in ~/.faces/backups/)",
|
|
379
|
+
"name": "file"
|
|
380
|
+
}
|
|
381
|
+
},
|
|
382
|
+
"description": "Restore faces, teams, and source material from a backup snapshot",
|
|
390
383
|
"flags": {
|
|
391
384
|
"json": {
|
|
392
385
|
"description": "Format output as json.",
|
|
@@ -418,11 +411,17 @@
|
|
|
418
411
|
"hasDynamicHelp": false,
|
|
419
412
|
"multiple": false,
|
|
420
413
|
"type": "option"
|
|
414
|
+
},
|
|
415
|
+
"compile": {
|
|
416
|
+
"description": "Run compile:all after restoring",
|
|
417
|
+
"name": "compile",
|
|
418
|
+
"allowNo": false,
|
|
419
|
+
"type": "boolean"
|
|
421
420
|
}
|
|
422
421
|
},
|
|
423
422
|
"hasDynamicHelp": false,
|
|
424
423
|
"hiddenAliases": [],
|
|
425
|
-
"id": "
|
|
424
|
+
"id": "catalog:restore",
|
|
426
425
|
"pluginAlias": "faces-cli",
|
|
427
426
|
"pluginName": "faces-cli",
|
|
428
427
|
"pluginType": "core",
|
|
@@ -432,14 +431,27 @@
|
|
|
432
431
|
"relativePath": [
|
|
433
432
|
"dist",
|
|
434
433
|
"commands",
|
|
435
|
-
"
|
|
436
|
-
"
|
|
434
|
+
"catalog",
|
|
435
|
+
"restore.js"
|
|
437
436
|
]
|
|
438
437
|
},
|
|
439
|
-
"auth:
|
|
438
|
+
"auth:connect": {
|
|
440
439
|
"aliases": [],
|
|
441
|
-
"args": {
|
|
442
|
-
|
|
440
|
+
"args": {
|
|
441
|
+
"provider": {
|
|
442
|
+
"description": "OAuth provider to connect",
|
|
443
|
+
"name": "provider",
|
|
444
|
+
"options": [
|
|
445
|
+
"openai"
|
|
446
|
+
],
|
|
447
|
+
"required": true
|
|
448
|
+
}
|
|
449
|
+
},
|
|
450
|
+
"description": "Connect an OAuth provider account to Faces (e.g. ChatGPT Plus/Pro)",
|
|
451
|
+
"examples": [
|
|
452
|
+
"<%= config.bin %> auth connect openai",
|
|
453
|
+
"<%= config.bin %> auth connect openai --manual"
|
|
454
|
+
],
|
|
443
455
|
"flags": {
|
|
444
456
|
"json": {
|
|
445
457
|
"description": "Format output as json.",
|
|
@@ -471,11 +483,17 @@
|
|
|
471
483
|
"hasDynamicHelp": false,
|
|
472
484
|
"multiple": false,
|
|
473
485
|
"type": "option"
|
|
486
|
+
},
|
|
487
|
+
"manual": {
|
|
488
|
+
"description": "Manual mode for headless environments: prints the authorize URL and prompts you to paste the callback URL after approving in any browser.",
|
|
489
|
+
"name": "manual",
|
|
490
|
+
"allowNo": false,
|
|
491
|
+
"type": "boolean"
|
|
474
492
|
}
|
|
475
493
|
},
|
|
476
494
|
"hasDynamicHelp": false,
|
|
477
495
|
"hiddenAliases": [],
|
|
478
|
-
"id": "auth:
|
|
496
|
+
"id": "auth:connect",
|
|
479
497
|
"pluginAlias": "faces-cli",
|
|
480
498
|
"pluginName": "faces-cli",
|
|
481
499
|
"pluginType": "core",
|
|
@@ -486,13 +504,17 @@
|
|
|
486
504
|
"dist",
|
|
487
505
|
"commands",
|
|
488
506
|
"auth",
|
|
489
|
-
"
|
|
507
|
+
"connect.js"
|
|
490
508
|
]
|
|
491
509
|
},
|
|
492
|
-
"auth:
|
|
510
|
+
"auth:connections": {
|
|
493
511
|
"aliases": [],
|
|
494
512
|
"args": {},
|
|
495
|
-
"description": "
|
|
513
|
+
"description": "List connected OAuth provider accounts",
|
|
514
|
+
"examples": [
|
|
515
|
+
"<%= config.bin %> auth connections",
|
|
516
|
+
"<%= config.bin %> auth connections --json"
|
|
517
|
+
],
|
|
496
518
|
"flags": {
|
|
497
519
|
"json": {
|
|
498
520
|
"description": "Format output as json.",
|
|
@@ -524,54 +546,11 @@
|
|
|
524
546
|
"hasDynamicHelp": false,
|
|
525
547
|
"multiple": false,
|
|
526
548
|
"type": "option"
|
|
527
|
-
},
|
|
528
|
-
"email": {
|
|
529
|
-
"description": "Email address",
|
|
530
|
-
"name": "email",
|
|
531
|
-
"required": true,
|
|
532
|
-
"hasDynamicHelp": false,
|
|
533
|
-
"multiple": false,
|
|
534
|
-
"type": "option"
|
|
535
|
-
},
|
|
536
|
-
"password": {
|
|
537
|
-
"description": "Password",
|
|
538
|
-
"name": "password",
|
|
539
|
-
"required": true,
|
|
540
|
-
"hasDynamicHelp": false,
|
|
541
|
-
"multiple": false,
|
|
542
|
-
"type": "option"
|
|
543
|
-
},
|
|
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",
|
|
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"
|
|
570
549
|
}
|
|
571
550
|
},
|
|
572
551
|
"hasDynamicHelp": false,
|
|
573
552
|
"hiddenAliases": [],
|
|
574
|
-
"id": "auth:
|
|
553
|
+
"id": "auth:connections",
|
|
575
554
|
"pluginAlias": "faces-cli",
|
|
576
555
|
"pluginName": "faces-cli",
|
|
577
556
|
"pluginType": "core",
|
|
@@ -582,13 +561,25 @@
|
|
|
582
561
|
"dist",
|
|
583
562
|
"commands",
|
|
584
563
|
"auth",
|
|
585
|
-
"
|
|
564
|
+
"connections.js"
|
|
586
565
|
]
|
|
587
566
|
},
|
|
588
|
-
"auth:
|
|
567
|
+
"auth:disconnect": {
|
|
589
568
|
"aliases": [],
|
|
590
|
-
"args": {
|
|
591
|
-
|
|
569
|
+
"args": {
|
|
570
|
+
"provider": {
|
|
571
|
+
"description": "OAuth provider to disconnect",
|
|
572
|
+
"name": "provider",
|
|
573
|
+
"options": [
|
|
574
|
+
"openai"
|
|
575
|
+
],
|
|
576
|
+
"required": true
|
|
577
|
+
}
|
|
578
|
+
},
|
|
579
|
+
"description": "Disconnect a linked OAuth provider account",
|
|
580
|
+
"examples": [
|
|
581
|
+
"<%= config.bin %> auth disconnect openai"
|
|
582
|
+
],
|
|
592
583
|
"flags": {
|
|
593
584
|
"json": {
|
|
594
585
|
"description": "Format output as json.",
|
|
@@ -624,7 +615,7 @@
|
|
|
624
615
|
},
|
|
625
616
|
"hasDynamicHelp": false,
|
|
626
617
|
"hiddenAliases": [],
|
|
627
|
-
"id": "auth:
|
|
618
|
+
"id": "auth:disconnect",
|
|
628
619
|
"pluginAlias": "faces-cli",
|
|
629
620
|
"pluginName": "faces-cli",
|
|
630
621
|
"pluginType": "core",
|
|
@@ -635,13 +626,13 @@
|
|
|
635
626
|
"dist",
|
|
636
627
|
"commands",
|
|
637
628
|
"auth",
|
|
638
|
-
"
|
|
629
|
+
"disconnect.js"
|
|
639
630
|
]
|
|
640
631
|
},
|
|
641
|
-
"
|
|
632
|
+
"auth:login": {
|
|
642
633
|
"aliases": [],
|
|
643
634
|
"args": {},
|
|
644
|
-
"description": "
|
|
635
|
+
"description": "Login and save JWT credentials",
|
|
645
636
|
"flags": {
|
|
646
637
|
"json": {
|
|
647
638
|
"description": "Format output as json.",
|
|
@@ -673,11 +664,27 @@
|
|
|
673
664
|
"hasDynamicHelp": false,
|
|
674
665
|
"multiple": false,
|
|
675
666
|
"type": "option"
|
|
667
|
+
},
|
|
668
|
+
"email": {
|
|
669
|
+
"description": "Account email",
|
|
670
|
+
"name": "email",
|
|
671
|
+
"required": true,
|
|
672
|
+
"hasDynamicHelp": false,
|
|
673
|
+
"multiple": false,
|
|
674
|
+
"type": "option"
|
|
675
|
+
},
|
|
676
|
+
"password": {
|
|
677
|
+
"description": "Account password",
|
|
678
|
+
"name": "password",
|
|
679
|
+
"required": true,
|
|
680
|
+
"hasDynamicHelp": false,
|
|
681
|
+
"multiple": false,
|
|
682
|
+
"type": "option"
|
|
676
683
|
}
|
|
677
684
|
},
|
|
678
685
|
"hasDynamicHelp": false,
|
|
679
686
|
"hiddenAliases": [],
|
|
680
|
-
"id": "
|
|
687
|
+
"id": "auth:login",
|
|
681
688
|
"pluginAlias": "faces-cli",
|
|
682
689
|
"pluginName": "faces-cli",
|
|
683
690
|
"pluginType": "core",
|
|
@@ -687,14 +694,14 @@
|
|
|
687
694
|
"relativePath": [
|
|
688
695
|
"dist",
|
|
689
696
|
"commands",
|
|
690
|
-
"
|
|
691
|
-
"
|
|
697
|
+
"auth",
|
|
698
|
+
"login.js"
|
|
692
699
|
]
|
|
693
700
|
},
|
|
694
|
-
"
|
|
701
|
+
"auth:logout": {
|
|
695
702
|
"aliases": [],
|
|
696
703
|
"args": {},
|
|
697
|
-
"description": "
|
|
704
|
+
"description": "Clear saved credentials",
|
|
698
705
|
"flags": {
|
|
699
706
|
"json": {
|
|
700
707
|
"description": "Format output as json.",
|
|
@@ -726,23 +733,11 @@
|
|
|
726
733
|
"hasDynamicHelp": false,
|
|
727
734
|
"multiple": false,
|
|
728
735
|
"type": "option"
|
|
729
|
-
},
|
|
730
|
-
"fix": {
|
|
731
|
-
"description": "Rebuild missing or stale catalog entries from API",
|
|
732
|
-
"name": "fix",
|
|
733
|
-
"allowNo": false,
|
|
734
|
-
"type": "boolean"
|
|
735
|
-
},
|
|
736
|
-
"generate": {
|
|
737
|
-
"description": "Fix + generate missing descriptions via LLM",
|
|
738
|
-
"name": "generate",
|
|
739
|
-
"allowNo": false,
|
|
740
|
-
"type": "boolean"
|
|
741
736
|
}
|
|
742
737
|
},
|
|
743
738
|
"hasDynamicHelp": false,
|
|
744
739
|
"hiddenAliases": [],
|
|
745
|
-
"id": "
|
|
740
|
+
"id": "auth:logout",
|
|
746
741
|
"pluginAlias": "faces-cli",
|
|
747
742
|
"pluginName": "faces-cli",
|
|
748
743
|
"pluginType": "core",
|
|
@@ -752,14 +747,14 @@
|
|
|
752
747
|
"relativePath": [
|
|
753
748
|
"dist",
|
|
754
749
|
"commands",
|
|
755
|
-
"
|
|
756
|
-
"
|
|
750
|
+
"auth",
|
|
751
|
+
"logout.js"
|
|
757
752
|
]
|
|
758
753
|
},
|
|
759
|
-
"
|
|
754
|
+
"auth:refresh": {
|
|
760
755
|
"aliases": [],
|
|
761
756
|
"args": {},
|
|
762
|
-
"description": "
|
|
757
|
+
"description": "Exchange current JWT for a fresh one",
|
|
763
758
|
"flags": {
|
|
764
759
|
"json": {
|
|
765
760
|
"description": "Format output as json.",
|
|
@@ -795,7 +790,7 @@
|
|
|
795
790
|
},
|
|
796
791
|
"hasDynamicHelp": false,
|
|
797
792
|
"hiddenAliases": [],
|
|
798
|
-
"id": "
|
|
793
|
+
"id": "auth:refresh",
|
|
799
794
|
"pluginAlias": "faces-cli",
|
|
800
795
|
"pluginName": "faces-cli",
|
|
801
796
|
"pluginType": "core",
|
|
@@ -805,14 +800,14 @@
|
|
|
805
800
|
"relativePath": [
|
|
806
801
|
"dist",
|
|
807
802
|
"commands",
|
|
808
|
-
"
|
|
809
|
-
"
|
|
803
|
+
"auth",
|
|
804
|
+
"refresh.js"
|
|
810
805
|
]
|
|
811
806
|
},
|
|
812
|
-
"
|
|
807
|
+
"auth:register": {
|
|
813
808
|
"aliases": [],
|
|
814
809
|
"args": {},
|
|
815
|
-
"description": "
|
|
810
|
+
"description": "Create a new Faces account",
|
|
816
811
|
"flags": {
|
|
817
812
|
"json": {
|
|
818
813
|
"description": "Format output as json.",
|
|
@@ -845,37 +840,53 @@
|
|
|
845
840
|
"multiple": false,
|
|
846
841
|
"type": "option"
|
|
847
842
|
},
|
|
848
|
-
"
|
|
849
|
-
"description": "
|
|
850
|
-
"name": "
|
|
843
|
+
"email": {
|
|
844
|
+
"description": "Email address",
|
|
845
|
+
"name": "email",
|
|
846
|
+
"required": true,
|
|
851
847
|
"hasDynamicHelp": false,
|
|
852
848
|
"multiple": false,
|
|
853
849
|
"type": "option"
|
|
854
850
|
},
|
|
855
|
-
"
|
|
856
|
-
"description": "
|
|
857
|
-
"name": "
|
|
851
|
+
"password": {
|
|
852
|
+
"description": "Password",
|
|
853
|
+
"name": "password",
|
|
854
|
+
"required": true,
|
|
858
855
|
"hasDynamicHelp": false,
|
|
859
856
|
"multiple": false,
|
|
860
857
|
"type": "option"
|
|
861
858
|
},
|
|
862
|
-
"
|
|
863
|
-
"description": "
|
|
864
|
-
"name": "
|
|
859
|
+
"username": {
|
|
860
|
+
"description": "Username (lowercase, dashes, numbers)",
|
|
861
|
+
"name": "username",
|
|
862
|
+
"required": true,
|
|
863
|
+
"hasDynamicHelp": false,
|
|
864
|
+
"multiple": false,
|
|
865
|
+
"type": "option"
|
|
866
|
+
},
|
|
867
|
+
"invite-key": {
|
|
868
|
+
"description": "Invite key (if required)",
|
|
869
|
+
"name": "invite-key",
|
|
870
|
+
"hasDynamicHelp": false,
|
|
871
|
+
"multiple": false,
|
|
872
|
+
"type": "option"
|
|
873
|
+
},
|
|
874
|
+
"plan": {
|
|
875
|
+
"description": "Plan to subscribe to: \"free\" ($5 activation) or \"connect\" ($17/mo, no activation fee)",
|
|
876
|
+
"name": "plan",
|
|
877
|
+
"default": "free",
|
|
865
878
|
"hasDynamicHelp": false,
|
|
866
879
|
"multiple": false,
|
|
880
|
+
"options": [
|
|
881
|
+
"free",
|
|
882
|
+
"connect"
|
|
883
|
+
],
|
|
867
884
|
"type": "option"
|
|
868
|
-
},
|
|
869
|
-
"refresh": {
|
|
870
|
-
"description": "Force refresh the skill index (ignore cache)",
|
|
871
|
-
"name": "refresh",
|
|
872
|
-
"allowNo": false,
|
|
873
|
-
"type": "boolean"
|
|
874
885
|
}
|
|
875
886
|
},
|
|
876
887
|
"hasDynamicHelp": false,
|
|
877
888
|
"hiddenAliases": [],
|
|
878
|
-
"id": "
|
|
889
|
+
"id": "auth:register",
|
|
879
890
|
"pluginAlias": "faces-cli",
|
|
880
891
|
"pluginName": "faces-cli",
|
|
881
892
|
"pluginType": "core",
|
|
@@ -885,19 +896,14 @@
|
|
|
885
896
|
"relativePath": [
|
|
886
897
|
"dist",
|
|
887
898
|
"commands",
|
|
888
|
-
"
|
|
889
|
-
"
|
|
899
|
+
"auth",
|
|
900
|
+
"register.js"
|
|
890
901
|
]
|
|
891
902
|
},
|
|
892
|
-
"
|
|
903
|
+
"auth:whoami": {
|
|
893
904
|
"aliases": [],
|
|
894
|
-
"args": {
|
|
895
|
-
|
|
896
|
-
"description": "Backup file path (default: most recent in ~/.faces/backups/)",
|
|
897
|
-
"name": "file"
|
|
898
|
-
}
|
|
899
|
-
},
|
|
900
|
-
"description": "Restore faces, teams, and source material from a backup snapshot",
|
|
905
|
+
"args": {},
|
|
906
|
+
"description": "Print current user profile and auth diagnostic",
|
|
901
907
|
"flags": {
|
|
902
908
|
"json": {
|
|
903
909
|
"description": "Format output as json.",
|
|
@@ -929,17 +935,11 @@
|
|
|
929
935
|
"hasDynamicHelp": false,
|
|
930
936
|
"multiple": false,
|
|
931
937
|
"type": "option"
|
|
932
|
-
},
|
|
933
|
-
"compile": {
|
|
934
|
-
"description": "Run compile:all after restoring",
|
|
935
|
-
"name": "compile",
|
|
936
|
-
"allowNo": false,
|
|
937
|
-
"type": "boolean"
|
|
938
938
|
}
|
|
939
939
|
},
|
|
940
940
|
"hasDynamicHelp": false,
|
|
941
941
|
"hiddenAliases": [],
|
|
942
|
-
"id": "
|
|
942
|
+
"id": "auth:whoami",
|
|
943
943
|
"pluginAlias": "faces-cli",
|
|
944
944
|
"pluginName": "faces-cli",
|
|
945
945
|
"pluginType": "core",
|
|
@@ -949,8 +949,8 @@
|
|
|
949
949
|
"relativePath": [
|
|
950
950
|
"dist",
|
|
951
951
|
"commands",
|
|
952
|
-
"
|
|
953
|
-
"
|
|
952
|
+
"auth",
|
|
953
|
+
"whoami.js"
|
|
954
954
|
]
|
|
955
955
|
},
|
|
956
956
|
"billing:balance": {
|
|
@@ -1880,7 +1880,234 @@
|
|
|
1880
1880
|
},
|
|
1881
1881
|
"hasDynamicHelp": false,
|
|
1882
1882
|
"hiddenAliases": [],
|
|
1883
|
-
"id": "compile:stats",
|
|
1883
|
+
"id": "compile:stats",
|
|
1884
|
+
"pluginAlias": "faces-cli",
|
|
1885
|
+
"pluginName": "faces-cli",
|
|
1886
|
+
"pluginType": "core",
|
|
1887
|
+
"strict": true,
|
|
1888
|
+
"enableJsonFlag": true,
|
|
1889
|
+
"isESM": true,
|
|
1890
|
+
"relativePath": [
|
|
1891
|
+
"dist",
|
|
1892
|
+
"commands",
|
|
1893
|
+
"compile",
|
|
1894
|
+
"stats.js"
|
|
1895
|
+
]
|
|
1896
|
+
},
|
|
1897
|
+
"compile:upload": {
|
|
1898
|
+
"aliases": [],
|
|
1899
|
+
"args": {
|
|
1900
|
+
"alias": {
|
|
1901
|
+
"description": "Face alias",
|
|
1902
|
+
"name": "alias",
|
|
1903
|
+
"required": true
|
|
1904
|
+
}
|
|
1905
|
+
},
|
|
1906
|
+
"description": "Upload a file (text/PDF/audio/video) to compile into a face",
|
|
1907
|
+
"flags": {
|
|
1908
|
+
"json": {
|
|
1909
|
+
"description": "Format output as json.",
|
|
1910
|
+
"helpGroup": "GLOBAL",
|
|
1911
|
+
"name": "json",
|
|
1912
|
+
"allowNo": false,
|
|
1913
|
+
"type": "boolean"
|
|
1914
|
+
},
|
|
1915
|
+
"base-url": {
|
|
1916
|
+
"description": "API base URL",
|
|
1917
|
+
"env": "FACES_BASE_URL",
|
|
1918
|
+
"name": "base-url",
|
|
1919
|
+
"hasDynamicHelp": false,
|
|
1920
|
+
"multiple": false,
|
|
1921
|
+
"type": "option"
|
|
1922
|
+
},
|
|
1923
|
+
"token": {
|
|
1924
|
+
"description": "JWT bearer token",
|
|
1925
|
+
"env": "FACES_TOKEN",
|
|
1926
|
+
"name": "token",
|
|
1927
|
+
"hasDynamicHelp": false,
|
|
1928
|
+
"multiple": false,
|
|
1929
|
+
"type": "option"
|
|
1930
|
+
},
|
|
1931
|
+
"api-key": {
|
|
1932
|
+
"description": "API key",
|
|
1933
|
+
"env": "FACES_API_KEY",
|
|
1934
|
+
"name": "api-key",
|
|
1935
|
+
"hasDynamicHelp": false,
|
|
1936
|
+
"multiple": false,
|
|
1937
|
+
"type": "option"
|
|
1938
|
+
},
|
|
1939
|
+
"file": {
|
|
1940
|
+
"description": "File to upload",
|
|
1941
|
+
"name": "file",
|
|
1942
|
+
"required": true,
|
|
1943
|
+
"hasDynamicHelp": false,
|
|
1944
|
+
"multiple": false,
|
|
1945
|
+
"type": "option"
|
|
1946
|
+
},
|
|
1947
|
+
"kind": {
|
|
1948
|
+
"description": "Upload kind: document or thread",
|
|
1949
|
+
"name": "kind",
|
|
1950
|
+
"default": "document",
|
|
1951
|
+
"hasDynamicHelp": false,
|
|
1952
|
+
"multiple": false,
|
|
1953
|
+
"options": [
|
|
1954
|
+
"document",
|
|
1955
|
+
"thread"
|
|
1956
|
+
],
|
|
1957
|
+
"type": "option"
|
|
1958
|
+
},
|
|
1959
|
+
"perspective": {
|
|
1960
|
+
"description": "Perspective (document only)",
|
|
1961
|
+
"name": "perspective",
|
|
1962
|
+
"default": "third-person",
|
|
1963
|
+
"hasDynamicHelp": false,
|
|
1964
|
+
"multiple": false,
|
|
1965
|
+
"options": [
|
|
1966
|
+
"first-person",
|
|
1967
|
+
"third-person"
|
|
1968
|
+
],
|
|
1969
|
+
"type": "option"
|
|
1970
|
+
},
|
|
1971
|
+
"face-speaker": {
|
|
1972
|
+
"description": "Speaker name to map to the face (thread only). If omitted, auto-detected from face name.",
|
|
1973
|
+
"name": "face-speaker",
|
|
1974
|
+
"hasDynamicHelp": false,
|
|
1975
|
+
"multiple": false,
|
|
1976
|
+
"type": "option"
|
|
1977
|
+
},
|
|
1978
|
+
"no-wait": {
|
|
1979
|
+
"description": "Return immediately after upload (do not poll for transcription). Prints the ID for manual polling.",
|
|
1980
|
+
"name": "no-wait",
|
|
1981
|
+
"allowNo": false,
|
|
1982
|
+
"type": "boolean"
|
|
1983
|
+
}
|
|
1984
|
+
},
|
|
1985
|
+
"hasDynamicHelp": false,
|
|
1986
|
+
"hiddenAliases": [],
|
|
1987
|
+
"id": "compile:upload",
|
|
1988
|
+
"pluginAlias": "faces-cli",
|
|
1989
|
+
"pluginName": "faces-cli",
|
|
1990
|
+
"pluginType": "core",
|
|
1991
|
+
"strict": true,
|
|
1992
|
+
"enableJsonFlag": true,
|
|
1993
|
+
"isESM": true,
|
|
1994
|
+
"relativePath": [
|
|
1995
|
+
"dist",
|
|
1996
|
+
"commands",
|
|
1997
|
+
"compile",
|
|
1998
|
+
"upload.js"
|
|
1999
|
+
]
|
|
2000
|
+
},
|
|
2001
|
+
"config:clear": {
|
|
2002
|
+
"aliases": [],
|
|
2003
|
+
"args": {},
|
|
2004
|
+
"description": "Delete all saved credentials and config",
|
|
2005
|
+
"flags": {
|
|
2006
|
+
"json": {
|
|
2007
|
+
"description": "Format output as json.",
|
|
2008
|
+
"helpGroup": "GLOBAL",
|
|
2009
|
+
"name": "json",
|
|
2010
|
+
"allowNo": false,
|
|
2011
|
+
"type": "boolean"
|
|
2012
|
+
},
|
|
2013
|
+
"base-url": {
|
|
2014
|
+
"description": "API base URL",
|
|
2015
|
+
"env": "FACES_BASE_URL",
|
|
2016
|
+
"name": "base-url",
|
|
2017
|
+
"hasDynamicHelp": false,
|
|
2018
|
+
"multiple": false,
|
|
2019
|
+
"type": "option"
|
|
2020
|
+
},
|
|
2021
|
+
"token": {
|
|
2022
|
+
"description": "JWT bearer token",
|
|
2023
|
+
"env": "FACES_TOKEN",
|
|
2024
|
+
"name": "token",
|
|
2025
|
+
"hasDynamicHelp": false,
|
|
2026
|
+
"multiple": false,
|
|
2027
|
+
"type": "option"
|
|
2028
|
+
},
|
|
2029
|
+
"api-key": {
|
|
2030
|
+
"description": "API key",
|
|
2031
|
+
"env": "FACES_API_KEY",
|
|
2032
|
+
"name": "api-key",
|
|
2033
|
+
"hasDynamicHelp": false,
|
|
2034
|
+
"multiple": false,
|
|
2035
|
+
"type": "option"
|
|
2036
|
+
},
|
|
2037
|
+
"yes": {
|
|
2038
|
+
"description": "Skip confirmation",
|
|
2039
|
+
"name": "yes",
|
|
2040
|
+
"allowNo": false,
|
|
2041
|
+
"type": "boolean"
|
|
2042
|
+
}
|
|
2043
|
+
},
|
|
2044
|
+
"hasDynamicHelp": false,
|
|
2045
|
+
"hiddenAliases": [],
|
|
2046
|
+
"id": "config:clear",
|
|
2047
|
+
"pluginAlias": "faces-cli",
|
|
2048
|
+
"pluginName": "faces-cli",
|
|
2049
|
+
"pluginType": "core",
|
|
2050
|
+
"strict": true,
|
|
2051
|
+
"enableJsonFlag": true,
|
|
2052
|
+
"isESM": true,
|
|
2053
|
+
"relativePath": [
|
|
2054
|
+
"dist",
|
|
2055
|
+
"commands",
|
|
2056
|
+
"config",
|
|
2057
|
+
"clear.js"
|
|
2058
|
+
]
|
|
2059
|
+
},
|
|
2060
|
+
"config:set": {
|
|
2061
|
+
"aliases": [],
|
|
2062
|
+
"args": {
|
|
2063
|
+
"key": {
|
|
2064
|
+
"description": "Config key",
|
|
2065
|
+
"name": "key",
|
|
2066
|
+
"required": true
|
|
2067
|
+
},
|
|
2068
|
+
"value": {
|
|
2069
|
+
"description": "Config value",
|
|
2070
|
+
"name": "value",
|
|
2071
|
+
"required": true
|
|
2072
|
+
}
|
|
2073
|
+
},
|
|
2074
|
+
"description": "Set a config value (e.g. base_url, api_key, token)",
|
|
2075
|
+
"flags": {
|
|
2076
|
+
"json": {
|
|
2077
|
+
"description": "Format output as json.",
|
|
2078
|
+
"helpGroup": "GLOBAL",
|
|
2079
|
+
"name": "json",
|
|
2080
|
+
"allowNo": false,
|
|
2081
|
+
"type": "boolean"
|
|
2082
|
+
},
|
|
2083
|
+
"base-url": {
|
|
2084
|
+
"description": "API base URL",
|
|
2085
|
+
"env": "FACES_BASE_URL",
|
|
2086
|
+
"name": "base-url",
|
|
2087
|
+
"hasDynamicHelp": false,
|
|
2088
|
+
"multiple": false,
|
|
2089
|
+
"type": "option"
|
|
2090
|
+
},
|
|
2091
|
+
"token": {
|
|
2092
|
+
"description": "JWT bearer token",
|
|
2093
|
+
"env": "FACES_TOKEN",
|
|
2094
|
+
"name": "token",
|
|
2095
|
+
"hasDynamicHelp": false,
|
|
2096
|
+
"multiple": false,
|
|
2097
|
+
"type": "option"
|
|
2098
|
+
},
|
|
2099
|
+
"api-key": {
|
|
2100
|
+
"description": "API key",
|
|
2101
|
+
"env": "FACES_API_KEY",
|
|
2102
|
+
"name": "api-key",
|
|
2103
|
+
"hasDynamicHelp": false,
|
|
2104
|
+
"multiple": false,
|
|
2105
|
+
"type": "option"
|
|
2106
|
+
}
|
|
2107
|
+
},
|
|
2108
|
+
"hasDynamicHelp": false,
|
|
2109
|
+
"hiddenAliases": [],
|
|
2110
|
+
"id": "config:set",
|
|
1884
2111
|
"pluginAlias": "faces-cli",
|
|
1885
2112
|
"pluginName": "faces-cli",
|
|
1886
2113
|
"pluginType": "core",
|
|
@@ -1890,20 +2117,14 @@
|
|
|
1890
2117
|
"relativePath": [
|
|
1891
2118
|
"dist",
|
|
1892
2119
|
"commands",
|
|
1893
|
-
"
|
|
1894
|
-
"
|
|
2120
|
+
"config",
|
|
2121
|
+
"set.js"
|
|
1895
2122
|
]
|
|
1896
2123
|
},
|
|
1897
|
-
"
|
|
2124
|
+
"config:show": {
|
|
1898
2125
|
"aliases": [],
|
|
1899
|
-
"args": {
|
|
1900
|
-
|
|
1901
|
-
"description": "Face alias",
|
|
1902
|
-
"name": "alias",
|
|
1903
|
-
"required": true
|
|
1904
|
-
}
|
|
1905
|
-
},
|
|
1906
|
-
"description": "Upload a file (text/PDF/audio/video) to compile into a face",
|
|
2126
|
+
"args": {},
|
|
2127
|
+
"description": "Print current config (credentials are masked)",
|
|
1907
2128
|
"flags": {
|
|
1908
2129
|
"json": {
|
|
1909
2130
|
"description": "Format output as json.",
|
|
@@ -1935,56 +2156,11 @@
|
|
|
1935
2156
|
"hasDynamicHelp": false,
|
|
1936
2157
|
"multiple": false,
|
|
1937
2158
|
"type": "option"
|
|
1938
|
-
},
|
|
1939
|
-
"file": {
|
|
1940
|
-
"description": "File to upload",
|
|
1941
|
-
"name": "file",
|
|
1942
|
-
"required": true,
|
|
1943
|
-
"hasDynamicHelp": false,
|
|
1944
|
-
"multiple": false,
|
|
1945
|
-
"type": "option"
|
|
1946
|
-
},
|
|
1947
|
-
"kind": {
|
|
1948
|
-
"description": "Upload kind: document or thread",
|
|
1949
|
-
"name": "kind",
|
|
1950
|
-
"default": "document",
|
|
1951
|
-
"hasDynamicHelp": false,
|
|
1952
|
-
"multiple": false,
|
|
1953
|
-
"options": [
|
|
1954
|
-
"document",
|
|
1955
|
-
"thread"
|
|
1956
|
-
],
|
|
1957
|
-
"type": "option"
|
|
1958
|
-
},
|
|
1959
|
-
"perspective": {
|
|
1960
|
-
"description": "Perspective (document only)",
|
|
1961
|
-
"name": "perspective",
|
|
1962
|
-
"default": "third-person",
|
|
1963
|
-
"hasDynamicHelp": false,
|
|
1964
|
-
"multiple": false,
|
|
1965
|
-
"options": [
|
|
1966
|
-
"first-person",
|
|
1967
|
-
"third-person"
|
|
1968
|
-
],
|
|
1969
|
-
"type": "option"
|
|
1970
|
-
},
|
|
1971
|
-
"face-speaker": {
|
|
1972
|
-
"description": "Speaker name to map to the face (thread only). If omitted, auto-detected from face name.",
|
|
1973
|
-
"name": "face-speaker",
|
|
1974
|
-
"hasDynamicHelp": false,
|
|
1975
|
-
"multiple": false,
|
|
1976
|
-
"type": "option"
|
|
1977
|
-
},
|
|
1978
|
-
"no-wait": {
|
|
1979
|
-
"description": "Return immediately after upload (do not poll for transcription). Prints the ID for manual polling.",
|
|
1980
|
-
"name": "no-wait",
|
|
1981
|
-
"allowNo": false,
|
|
1982
|
-
"type": "boolean"
|
|
1983
2159
|
}
|
|
1984
2160
|
},
|
|
1985
2161
|
"hasDynamicHelp": false,
|
|
1986
2162
|
"hiddenAliases": [],
|
|
1987
|
-
"id": "
|
|
2163
|
+
"id": "config:show",
|
|
1988
2164
|
"pluginAlias": "faces-cli",
|
|
1989
2165
|
"pluginName": "faces-cli",
|
|
1990
2166
|
"pluginType": "core",
|
|
@@ -1994,8 +2170,8 @@
|
|
|
1994
2170
|
"relativePath": [
|
|
1995
2171
|
"dist",
|
|
1996
2172
|
"commands",
|
|
1997
|
-
"
|
|
1998
|
-
"
|
|
2173
|
+
"config",
|
|
2174
|
+
"show.js"
|
|
1999
2175
|
]
|
|
2000
2176
|
},
|
|
2001
2177
|
"face:attributes": {
|
|
@@ -2847,182 +3023,6 @@
|
|
|
2847
3023
|
"upload.js"
|
|
2848
3024
|
]
|
|
2849
3025
|
},
|
|
2850
|
-
"config:clear": {
|
|
2851
|
-
"aliases": [],
|
|
2852
|
-
"args": {},
|
|
2853
|
-
"description": "Delete all saved credentials and config",
|
|
2854
|
-
"flags": {
|
|
2855
|
-
"json": {
|
|
2856
|
-
"description": "Format output as json.",
|
|
2857
|
-
"helpGroup": "GLOBAL",
|
|
2858
|
-
"name": "json",
|
|
2859
|
-
"allowNo": false,
|
|
2860
|
-
"type": "boolean"
|
|
2861
|
-
},
|
|
2862
|
-
"base-url": {
|
|
2863
|
-
"description": "API base URL",
|
|
2864
|
-
"env": "FACES_BASE_URL",
|
|
2865
|
-
"name": "base-url",
|
|
2866
|
-
"hasDynamicHelp": false,
|
|
2867
|
-
"multiple": false,
|
|
2868
|
-
"type": "option"
|
|
2869
|
-
},
|
|
2870
|
-
"token": {
|
|
2871
|
-
"description": "JWT bearer token",
|
|
2872
|
-
"env": "FACES_TOKEN",
|
|
2873
|
-
"name": "token",
|
|
2874
|
-
"hasDynamicHelp": false,
|
|
2875
|
-
"multiple": false,
|
|
2876
|
-
"type": "option"
|
|
2877
|
-
},
|
|
2878
|
-
"api-key": {
|
|
2879
|
-
"description": "API key",
|
|
2880
|
-
"env": "FACES_API_KEY",
|
|
2881
|
-
"name": "api-key",
|
|
2882
|
-
"hasDynamicHelp": false,
|
|
2883
|
-
"multiple": false,
|
|
2884
|
-
"type": "option"
|
|
2885
|
-
},
|
|
2886
|
-
"yes": {
|
|
2887
|
-
"description": "Skip confirmation",
|
|
2888
|
-
"name": "yes",
|
|
2889
|
-
"allowNo": false,
|
|
2890
|
-
"type": "boolean"
|
|
2891
|
-
}
|
|
2892
|
-
},
|
|
2893
|
-
"hasDynamicHelp": false,
|
|
2894
|
-
"hiddenAliases": [],
|
|
2895
|
-
"id": "config:clear",
|
|
2896
|
-
"pluginAlias": "faces-cli",
|
|
2897
|
-
"pluginName": "faces-cli",
|
|
2898
|
-
"pluginType": "core",
|
|
2899
|
-
"strict": true,
|
|
2900
|
-
"enableJsonFlag": true,
|
|
2901
|
-
"isESM": true,
|
|
2902
|
-
"relativePath": [
|
|
2903
|
-
"dist",
|
|
2904
|
-
"commands",
|
|
2905
|
-
"config",
|
|
2906
|
-
"clear.js"
|
|
2907
|
-
]
|
|
2908
|
-
},
|
|
2909
|
-
"config:set": {
|
|
2910
|
-
"aliases": [],
|
|
2911
|
-
"args": {
|
|
2912
|
-
"key": {
|
|
2913
|
-
"description": "Config key",
|
|
2914
|
-
"name": "key",
|
|
2915
|
-
"required": true
|
|
2916
|
-
},
|
|
2917
|
-
"value": {
|
|
2918
|
-
"description": "Config value",
|
|
2919
|
-
"name": "value",
|
|
2920
|
-
"required": true
|
|
2921
|
-
}
|
|
2922
|
-
},
|
|
2923
|
-
"description": "Set a config value (e.g. base_url, api_key, token)",
|
|
2924
|
-
"flags": {
|
|
2925
|
-
"json": {
|
|
2926
|
-
"description": "Format output as json.",
|
|
2927
|
-
"helpGroup": "GLOBAL",
|
|
2928
|
-
"name": "json",
|
|
2929
|
-
"allowNo": false,
|
|
2930
|
-
"type": "boolean"
|
|
2931
|
-
},
|
|
2932
|
-
"base-url": {
|
|
2933
|
-
"description": "API base URL",
|
|
2934
|
-
"env": "FACES_BASE_URL",
|
|
2935
|
-
"name": "base-url",
|
|
2936
|
-
"hasDynamicHelp": false,
|
|
2937
|
-
"multiple": false,
|
|
2938
|
-
"type": "option"
|
|
2939
|
-
},
|
|
2940
|
-
"token": {
|
|
2941
|
-
"description": "JWT bearer token",
|
|
2942
|
-
"env": "FACES_TOKEN",
|
|
2943
|
-
"name": "token",
|
|
2944
|
-
"hasDynamicHelp": false,
|
|
2945
|
-
"multiple": false,
|
|
2946
|
-
"type": "option"
|
|
2947
|
-
},
|
|
2948
|
-
"api-key": {
|
|
2949
|
-
"description": "API key",
|
|
2950
|
-
"env": "FACES_API_KEY",
|
|
2951
|
-
"name": "api-key",
|
|
2952
|
-
"hasDynamicHelp": false,
|
|
2953
|
-
"multiple": false,
|
|
2954
|
-
"type": "option"
|
|
2955
|
-
}
|
|
2956
|
-
},
|
|
2957
|
-
"hasDynamicHelp": false,
|
|
2958
|
-
"hiddenAliases": [],
|
|
2959
|
-
"id": "config:set",
|
|
2960
|
-
"pluginAlias": "faces-cli",
|
|
2961
|
-
"pluginName": "faces-cli",
|
|
2962
|
-
"pluginType": "core",
|
|
2963
|
-
"strict": true,
|
|
2964
|
-
"enableJsonFlag": true,
|
|
2965
|
-
"isESM": true,
|
|
2966
|
-
"relativePath": [
|
|
2967
|
-
"dist",
|
|
2968
|
-
"commands",
|
|
2969
|
-
"config",
|
|
2970
|
-
"set.js"
|
|
2971
|
-
]
|
|
2972
|
-
},
|
|
2973
|
-
"config:show": {
|
|
2974
|
-
"aliases": [],
|
|
2975
|
-
"args": {},
|
|
2976
|
-
"description": "Print current config (credentials are masked)",
|
|
2977
|
-
"flags": {
|
|
2978
|
-
"json": {
|
|
2979
|
-
"description": "Format output as json.",
|
|
2980
|
-
"helpGroup": "GLOBAL",
|
|
2981
|
-
"name": "json",
|
|
2982
|
-
"allowNo": false,
|
|
2983
|
-
"type": "boolean"
|
|
2984
|
-
},
|
|
2985
|
-
"base-url": {
|
|
2986
|
-
"description": "API base URL",
|
|
2987
|
-
"env": "FACES_BASE_URL",
|
|
2988
|
-
"name": "base-url",
|
|
2989
|
-
"hasDynamicHelp": false,
|
|
2990
|
-
"multiple": false,
|
|
2991
|
-
"type": "option"
|
|
2992
|
-
},
|
|
2993
|
-
"token": {
|
|
2994
|
-
"description": "JWT bearer token",
|
|
2995
|
-
"env": "FACES_TOKEN",
|
|
2996
|
-
"name": "token",
|
|
2997
|
-
"hasDynamicHelp": false,
|
|
2998
|
-
"multiple": false,
|
|
2999
|
-
"type": "option"
|
|
3000
|
-
},
|
|
3001
|
-
"api-key": {
|
|
3002
|
-
"description": "API key",
|
|
3003
|
-
"env": "FACES_API_KEY",
|
|
3004
|
-
"name": "api-key",
|
|
3005
|
-
"hasDynamicHelp": false,
|
|
3006
|
-
"multiple": false,
|
|
3007
|
-
"type": "option"
|
|
3008
|
-
}
|
|
3009
|
-
},
|
|
3010
|
-
"hasDynamicHelp": false,
|
|
3011
|
-
"hiddenAliases": [],
|
|
3012
|
-
"id": "config:show",
|
|
3013
|
-
"pluginAlias": "faces-cli",
|
|
3014
|
-
"pluginName": "faces-cli",
|
|
3015
|
-
"pluginType": "core",
|
|
3016
|
-
"strict": true,
|
|
3017
|
-
"enableJsonFlag": true,
|
|
3018
|
-
"isESM": true,
|
|
3019
|
-
"relativePath": [
|
|
3020
|
-
"dist",
|
|
3021
|
-
"commands",
|
|
3022
|
-
"config",
|
|
3023
|
-
"show.js"
|
|
3024
|
-
]
|
|
3025
|
-
},
|
|
3026
3026
|
"keys:create": {
|
|
3027
3027
|
"aliases": [],
|
|
3028
3028
|
"args": {},
|
|
@@ -5894,5 +5894,5 @@
|
|
|
5894
5894
|
]
|
|
5895
5895
|
}
|
|
5896
5896
|
},
|
|
5897
|
-
"version": "1.6.
|
|
5897
|
+
"version": "1.6.12"
|
|
5898
5898
|
}
|