faces-cli 1.5.4 → 1.5.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/commands/auth/register.d.ts +1 -0
- package/dist/commands/auth/register.js +44 -5
- package/oclif.manifest.json +127 -115
- package/package.json +1 -1
|
@@ -7,6 +7,7 @@ export default class AuthRegister extends BaseCommand {
|
|
|
7
7
|
name: import("@oclif/core/interfaces").OptionFlag<string | undefined, import("@oclif/core/interfaces").CustomOptions>;
|
|
8
8
|
username: import("@oclif/core/interfaces").OptionFlag<string, import("@oclif/core/interfaces").CustomOptions>;
|
|
9
9
|
'invite-key': import("@oclif/core/interfaces").OptionFlag<string | undefined, import("@oclif/core/interfaces").CustomOptions>;
|
|
10
|
+
plan: import("@oclif/core/interfaces").OptionFlag<string, import("@oclif/core/interfaces").CustomOptions>;
|
|
10
11
|
'base-url': import("@oclif/core/interfaces").OptionFlag<string | undefined, import("@oclif/core/interfaces").CustomOptions>;
|
|
11
12
|
token: import("@oclif/core/interfaces").OptionFlag<string | undefined, import("@oclif/core/interfaces").CustomOptions>;
|
|
12
13
|
'api-key': import("@oclif/core/interfaces").OptionFlag<string | undefined, import("@oclif/core/interfaces").CustomOptions>;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { Flags } from '@oclif/core';
|
|
2
2
|
import { BaseCommand } from '../../base.js';
|
|
3
|
-
import { FacesAPIError } from '../../client.js';
|
|
3
|
+
import { FacesAPIError, FacesClient } from '../../client.js';
|
|
4
4
|
import { saveConfig, resolveBaseUrl } from '../../config.js';
|
|
5
5
|
export default class AuthRegister extends BaseCommand {
|
|
6
6
|
static description = 'Create a new Faces account';
|
|
@@ -11,11 +11,15 @@ export default class AuthRegister extends BaseCommand {
|
|
|
11
11
|
name: Flags.string({ description: 'Display name (defaults to username)' }),
|
|
12
12
|
username: Flags.string({ description: 'Username (lowercase, dashes, numbers)', required: true }),
|
|
13
13
|
'invite-key': Flags.string({ description: 'Invite key (if required)' }),
|
|
14
|
+
plan: Flags.string({
|
|
15
|
+
description: 'Plan to subscribe to: "free" ($5 activation) or "connect" ($17/mo, no activation fee)',
|
|
16
|
+
options: ['free', 'connect'],
|
|
17
|
+
default: 'free',
|
|
18
|
+
}),
|
|
14
19
|
};
|
|
15
20
|
async run() {
|
|
16
21
|
const { flags } = await this.parse(AuthRegister);
|
|
17
22
|
const baseUrl = resolveBaseUrl(flags['base-url']);
|
|
18
|
-
const { FacesClient } = await import('../../client.js');
|
|
19
23
|
const client = new FacesClient(baseUrl);
|
|
20
24
|
const payload = {
|
|
21
25
|
email: flags.email,
|
|
@@ -44,10 +48,45 @@ export default class AuthRegister extends BaseCommand {
|
|
|
44
48
|
const result = {
|
|
45
49
|
status: 'registered',
|
|
46
50
|
user_id: inner.user_id,
|
|
47
|
-
activation_required: inner.activation_required ?? false,
|
|
48
51
|
};
|
|
49
|
-
|
|
50
|
-
|
|
52
|
+
// Get the appropriate checkout URL based on plan
|
|
53
|
+
if (token) {
|
|
54
|
+
const authedClient = new FacesClient(baseUrl, token);
|
|
55
|
+
if (flags.plan === 'connect') {
|
|
56
|
+
// Connect plan: $17/mo subscription, no $5 activation needed
|
|
57
|
+
try {
|
|
58
|
+
const checkoutResp = await authedClient.post(`/v1/billing/checkout?plan=connect`);
|
|
59
|
+
result.checkout_url = checkoutResp.checkout_url;
|
|
60
|
+
result.plan = 'connect';
|
|
61
|
+
result.amount = '$17/mo';
|
|
62
|
+
}
|
|
63
|
+
catch (err) {
|
|
64
|
+
if (err instanceof FacesAPIError) {
|
|
65
|
+
result.checkout_error = `Failed to get Connect checkout URL: ${err.message}`;
|
|
66
|
+
}
|
|
67
|
+
}
|
|
68
|
+
}
|
|
69
|
+
else {
|
|
70
|
+
// Free plan: $5 activation
|
|
71
|
+
if (inner.activation_checkout_url) {
|
|
72
|
+
result.checkout_url = inner.activation_checkout_url;
|
|
73
|
+
result.plan = 'free';
|
|
74
|
+
result.amount = '$5 (added as API credits)';
|
|
75
|
+
}
|
|
76
|
+
else {
|
|
77
|
+
try {
|
|
78
|
+
const activate = await authedClient.post('/v1/billing/activate');
|
|
79
|
+
result.checkout_url = activate.checkout_url;
|
|
80
|
+
result.plan = 'free';
|
|
81
|
+
result.amount = '$5 (added as API credits)';
|
|
82
|
+
}
|
|
83
|
+
catch (err) {
|
|
84
|
+
if (err instanceof FacesAPIError) {
|
|
85
|
+
result.checkout_error = `Failed to get activation URL: ${err.message}`;
|
|
86
|
+
}
|
|
87
|
+
}
|
|
88
|
+
}
|
|
89
|
+
}
|
|
51
90
|
}
|
|
52
91
|
if (!this.jsonEnabled())
|
|
53
92
|
this.printHuman(result);
|
package/oclif.manifest.json
CHANGED
|
@@ -495,6 +495,18 @@
|
|
|
495
495
|
"hasDynamicHelp": false,
|
|
496
496
|
"multiple": false,
|
|
497
497
|
"type": "option"
|
|
498
|
+
},
|
|
499
|
+
"plan": {
|
|
500
|
+
"description": "Plan to subscribe to: \"free\" ($5 activation) or \"connect\" ($17/mo, no activation fee)",
|
|
501
|
+
"name": "plan",
|
|
502
|
+
"default": "free",
|
|
503
|
+
"hasDynamicHelp": false,
|
|
504
|
+
"multiple": false,
|
|
505
|
+
"options": [
|
|
506
|
+
"free",
|
|
507
|
+
"connect"
|
|
508
|
+
],
|
|
509
|
+
"type": "option"
|
|
498
510
|
}
|
|
499
511
|
},
|
|
500
512
|
"hasDynamicHelp": false,
|
|
@@ -566,10 +578,10 @@
|
|
|
566
578
|
"whoami.js"
|
|
567
579
|
]
|
|
568
580
|
},
|
|
569
|
-
"
|
|
581
|
+
"billing:balance": {
|
|
570
582
|
"aliases": [],
|
|
571
583
|
"args": {},
|
|
572
|
-
"description": "
|
|
584
|
+
"description": "Show credit balance and payment method status",
|
|
573
585
|
"flags": {
|
|
574
586
|
"json": {
|
|
575
587
|
"description": "Format output as json.",
|
|
@@ -601,23 +613,11 @@
|
|
|
601
613
|
"hasDynamicHelp": false,
|
|
602
614
|
"multiple": false,
|
|
603
615
|
"type": "option"
|
|
604
|
-
},
|
|
605
|
-
"fix": {
|
|
606
|
-
"description": "Rebuild missing or stale catalog entries from API",
|
|
607
|
-
"name": "fix",
|
|
608
|
-
"allowNo": false,
|
|
609
|
-
"type": "boolean"
|
|
610
|
-
},
|
|
611
|
-
"generate": {
|
|
612
|
-
"description": "Fix + generate missing descriptions via LLM",
|
|
613
|
-
"name": "generate",
|
|
614
|
-
"allowNo": false,
|
|
615
|
-
"type": "boolean"
|
|
616
616
|
}
|
|
617
617
|
},
|
|
618
618
|
"hasDynamicHelp": false,
|
|
619
619
|
"hiddenAliases": [],
|
|
620
|
-
"id": "
|
|
620
|
+
"id": "billing:balance",
|
|
621
621
|
"pluginAlias": "faces-cli",
|
|
622
622
|
"pluginName": "faces-cli",
|
|
623
623
|
"pluginType": "core",
|
|
@@ -627,14 +627,14 @@
|
|
|
627
627
|
"relativePath": [
|
|
628
628
|
"dist",
|
|
629
629
|
"commands",
|
|
630
|
-
"
|
|
631
|
-
"
|
|
630
|
+
"billing",
|
|
631
|
+
"balance.js"
|
|
632
632
|
]
|
|
633
633
|
},
|
|
634
|
-
"
|
|
634
|
+
"billing:card-setup": {
|
|
635
635
|
"aliases": [],
|
|
636
636
|
"args": {},
|
|
637
|
-
"description": "
|
|
637
|
+
"description": "Get a Stripe card setup URL to save a payment method",
|
|
638
638
|
"flags": {
|
|
639
639
|
"json": {
|
|
640
640
|
"description": "Format output as json.",
|
|
@@ -670,7 +670,7 @@
|
|
|
670
670
|
},
|
|
671
671
|
"hasDynamicHelp": false,
|
|
672
672
|
"hiddenAliases": [],
|
|
673
|
-
"id": "
|
|
673
|
+
"id": "billing:card-setup",
|
|
674
674
|
"pluginAlias": "faces-cli",
|
|
675
675
|
"pluginName": "faces-cli",
|
|
676
676
|
"pluginType": "core",
|
|
@@ -680,14 +680,14 @@
|
|
|
680
680
|
"relativePath": [
|
|
681
681
|
"dist",
|
|
682
682
|
"commands",
|
|
683
|
-
"
|
|
684
|
-
"
|
|
683
|
+
"billing",
|
|
684
|
+
"card-setup.js"
|
|
685
685
|
]
|
|
686
686
|
},
|
|
687
|
-
"billing:
|
|
687
|
+
"billing:checkout": {
|
|
688
688
|
"aliases": [],
|
|
689
689
|
"args": {},
|
|
690
|
-
"description": "
|
|
690
|
+
"description": "Get a Stripe checkout URL to upgrade your subscription plan",
|
|
691
691
|
"flags": {
|
|
692
692
|
"json": {
|
|
693
693
|
"description": "Format output as json.",
|
|
@@ -719,11 +719,22 @@
|
|
|
719
719
|
"hasDynamicHelp": false,
|
|
720
720
|
"multiple": false,
|
|
721
721
|
"type": "option"
|
|
722
|
+
},
|
|
723
|
+
"plan": {
|
|
724
|
+
"description": "Plan to subscribe to",
|
|
725
|
+
"name": "plan",
|
|
726
|
+
"default": "connect",
|
|
727
|
+
"hasDynamicHelp": false,
|
|
728
|
+
"multiple": false,
|
|
729
|
+
"options": [
|
|
730
|
+
"connect"
|
|
731
|
+
],
|
|
732
|
+
"type": "option"
|
|
722
733
|
}
|
|
723
734
|
},
|
|
724
735
|
"hasDynamicHelp": false,
|
|
725
736
|
"hiddenAliases": [],
|
|
726
|
-
"id": "billing:
|
|
737
|
+
"id": "billing:checkout",
|
|
727
738
|
"pluginAlias": "faces-cli",
|
|
728
739
|
"pluginName": "faces-cli",
|
|
729
740
|
"pluginType": "core",
|
|
@@ -734,13 +745,13 @@
|
|
|
734
745
|
"dist",
|
|
735
746
|
"commands",
|
|
736
747
|
"billing",
|
|
737
|
-
"
|
|
748
|
+
"checkout.js"
|
|
738
749
|
]
|
|
739
750
|
},
|
|
740
|
-
"billing:
|
|
751
|
+
"billing:llm-costs": {
|
|
741
752
|
"aliases": [],
|
|
742
753
|
"args": {},
|
|
743
|
-
"description": "
|
|
754
|
+
"description": "List available LLMs and their per-token costs",
|
|
744
755
|
"flags": {
|
|
745
756
|
"json": {
|
|
746
757
|
"description": "Format output as json.",
|
|
@@ -772,11 +783,18 @@
|
|
|
772
783
|
"hasDynamicHelp": false,
|
|
773
784
|
"multiple": false,
|
|
774
785
|
"type": "option"
|
|
786
|
+
},
|
|
787
|
+
"provider": {
|
|
788
|
+
"description": "Filter by provider (e.g. openai, anthropic)",
|
|
789
|
+
"name": "provider",
|
|
790
|
+
"hasDynamicHelp": false,
|
|
791
|
+
"multiple": false,
|
|
792
|
+
"type": "option"
|
|
775
793
|
}
|
|
776
794
|
},
|
|
777
795
|
"hasDynamicHelp": false,
|
|
778
796
|
"hiddenAliases": [],
|
|
779
|
-
"id": "billing:
|
|
797
|
+
"id": "billing:llm-costs",
|
|
780
798
|
"pluginAlias": "faces-cli",
|
|
781
799
|
"pluginName": "faces-cli",
|
|
782
800
|
"pluginType": "core",
|
|
@@ -787,13 +805,13 @@
|
|
|
787
805
|
"dist",
|
|
788
806
|
"commands",
|
|
789
807
|
"billing",
|
|
790
|
-
"
|
|
808
|
+
"llm-costs.js"
|
|
791
809
|
]
|
|
792
810
|
},
|
|
793
|
-
"billing:
|
|
811
|
+
"billing:quota": {
|
|
794
812
|
"aliases": [],
|
|
795
813
|
"args": {},
|
|
796
|
-
"description": "
|
|
814
|
+
"description": "Show compile token quota and per-face stats",
|
|
797
815
|
"flags": {
|
|
798
816
|
"json": {
|
|
799
817
|
"description": "Format output as json.",
|
|
@@ -825,22 +843,11 @@
|
|
|
825
843
|
"hasDynamicHelp": false,
|
|
826
844
|
"multiple": false,
|
|
827
845
|
"type": "option"
|
|
828
|
-
},
|
|
829
|
-
"plan": {
|
|
830
|
-
"description": "Plan to subscribe to",
|
|
831
|
-
"name": "plan",
|
|
832
|
-
"default": "connect",
|
|
833
|
-
"hasDynamicHelp": false,
|
|
834
|
-
"multiple": false,
|
|
835
|
-
"options": [
|
|
836
|
-
"connect"
|
|
837
|
-
],
|
|
838
|
-
"type": "option"
|
|
839
846
|
}
|
|
840
847
|
},
|
|
841
848
|
"hasDynamicHelp": false,
|
|
842
849
|
"hiddenAliases": [],
|
|
843
|
-
"id": "billing:
|
|
850
|
+
"id": "billing:quota",
|
|
844
851
|
"pluginAlias": "faces-cli",
|
|
845
852
|
"pluginName": "faces-cli",
|
|
846
853
|
"pluginType": "core",
|
|
@@ -851,13 +858,13 @@
|
|
|
851
858
|
"dist",
|
|
852
859
|
"commands",
|
|
853
860
|
"billing",
|
|
854
|
-
"
|
|
861
|
+
"quota.js"
|
|
855
862
|
]
|
|
856
863
|
},
|
|
857
|
-
"billing:
|
|
864
|
+
"billing:subscription": {
|
|
858
865
|
"aliases": [],
|
|
859
866
|
"args": {},
|
|
860
|
-
"description": "
|
|
867
|
+
"description": "Show current plan, face count, and renewal date",
|
|
861
868
|
"flags": {
|
|
862
869
|
"json": {
|
|
863
870
|
"description": "Format output as json.",
|
|
@@ -889,18 +896,11 @@
|
|
|
889
896
|
"hasDynamicHelp": false,
|
|
890
897
|
"multiple": false,
|
|
891
898
|
"type": "option"
|
|
892
|
-
},
|
|
893
|
-
"provider": {
|
|
894
|
-
"description": "Filter by provider (e.g. openai, anthropic)",
|
|
895
|
-
"name": "provider",
|
|
896
|
-
"hasDynamicHelp": false,
|
|
897
|
-
"multiple": false,
|
|
898
|
-
"type": "option"
|
|
899
899
|
}
|
|
900
900
|
},
|
|
901
901
|
"hasDynamicHelp": false,
|
|
902
902
|
"hiddenAliases": [],
|
|
903
|
-
"id": "billing:
|
|
903
|
+
"id": "billing:subscription",
|
|
904
904
|
"pluginAlias": "faces-cli",
|
|
905
905
|
"pluginName": "faces-cli",
|
|
906
906
|
"pluginType": "core",
|
|
@@ -911,13 +911,13 @@
|
|
|
911
911
|
"dist",
|
|
912
912
|
"commands",
|
|
913
913
|
"billing",
|
|
914
|
-
"
|
|
914
|
+
"subscription.js"
|
|
915
915
|
]
|
|
916
916
|
},
|
|
917
|
-
"billing:
|
|
917
|
+
"billing:topup": {
|
|
918
918
|
"aliases": [],
|
|
919
919
|
"args": {},
|
|
920
|
-
"description": "
|
|
920
|
+
"description": "Top up credit balance using saved payment method",
|
|
921
921
|
"flags": {
|
|
922
922
|
"json": {
|
|
923
923
|
"description": "Format output as json.",
|
|
@@ -949,11 +949,26 @@
|
|
|
949
949
|
"hasDynamicHelp": false,
|
|
950
950
|
"multiple": false,
|
|
951
951
|
"type": "option"
|
|
952
|
+
},
|
|
953
|
+
"amount": {
|
|
954
|
+
"description": "Top-up amount in USD (min $1)",
|
|
955
|
+
"name": "amount",
|
|
956
|
+
"required": true,
|
|
957
|
+
"hasDynamicHelp": false,
|
|
958
|
+
"multiple": false,
|
|
959
|
+
"type": "option"
|
|
960
|
+
},
|
|
961
|
+
"payment-ref": {
|
|
962
|
+
"description": "Payment reference (admin/test path)",
|
|
963
|
+
"name": "payment-ref",
|
|
964
|
+
"hasDynamicHelp": false,
|
|
965
|
+
"multiple": false,
|
|
966
|
+
"type": "option"
|
|
952
967
|
}
|
|
953
968
|
},
|
|
954
969
|
"hasDynamicHelp": false,
|
|
955
970
|
"hiddenAliases": [],
|
|
956
|
-
"id": "billing:
|
|
971
|
+
"id": "billing:topup",
|
|
957
972
|
"pluginAlias": "faces-cli",
|
|
958
973
|
"pluginName": "faces-cli",
|
|
959
974
|
"pluginType": "core",
|
|
@@ -964,13 +979,13 @@
|
|
|
964
979
|
"dist",
|
|
965
980
|
"commands",
|
|
966
981
|
"billing",
|
|
967
|
-
"
|
|
982
|
+
"topup.js"
|
|
968
983
|
]
|
|
969
984
|
},
|
|
970
|
-
"billing:
|
|
985
|
+
"billing:usage": {
|
|
971
986
|
"aliases": [],
|
|
972
987
|
"args": {},
|
|
973
|
-
"description": "
|
|
988
|
+
"description": "Aggregated usage analytics",
|
|
974
989
|
"flags": {
|
|
975
990
|
"json": {
|
|
976
991
|
"description": "Format output as json.",
|
|
@@ -1002,11 +1017,38 @@
|
|
|
1002
1017
|
"hasDynamicHelp": false,
|
|
1003
1018
|
"multiple": false,
|
|
1004
1019
|
"type": "option"
|
|
1020
|
+
},
|
|
1021
|
+
"group-by": {
|
|
1022
|
+
"description": "Group results",
|
|
1023
|
+
"name": "group-by",
|
|
1024
|
+
"hasDynamicHelp": false,
|
|
1025
|
+
"multiple": false,
|
|
1026
|
+
"options": [
|
|
1027
|
+
"api_key",
|
|
1028
|
+
"model",
|
|
1029
|
+
"llm",
|
|
1030
|
+
"date"
|
|
1031
|
+
],
|
|
1032
|
+
"type": "option"
|
|
1033
|
+
},
|
|
1034
|
+
"from": {
|
|
1035
|
+
"description": "Start date (YYYY-MM-DD)",
|
|
1036
|
+
"name": "from",
|
|
1037
|
+
"hasDynamicHelp": false,
|
|
1038
|
+
"multiple": false,
|
|
1039
|
+
"type": "option"
|
|
1040
|
+
},
|
|
1041
|
+
"to": {
|
|
1042
|
+
"description": "End date (YYYY-MM-DD)",
|
|
1043
|
+
"name": "to",
|
|
1044
|
+
"hasDynamicHelp": false,
|
|
1045
|
+
"multiple": false,
|
|
1046
|
+
"type": "option"
|
|
1005
1047
|
}
|
|
1006
1048
|
},
|
|
1007
1049
|
"hasDynamicHelp": false,
|
|
1008
1050
|
"hiddenAliases": [],
|
|
1009
|
-
"id": "billing:
|
|
1051
|
+
"id": "billing:usage",
|
|
1010
1052
|
"pluginAlias": "faces-cli",
|
|
1011
1053
|
"pluginName": "faces-cli",
|
|
1012
1054
|
"pluginType": "core",
|
|
@@ -1017,13 +1059,13 @@
|
|
|
1017
1059
|
"dist",
|
|
1018
1060
|
"commands",
|
|
1019
1061
|
"billing",
|
|
1020
|
-
"
|
|
1062
|
+
"usage.js"
|
|
1021
1063
|
]
|
|
1022
1064
|
},
|
|
1023
|
-
"
|
|
1065
|
+
"catalog:doctor": {
|
|
1024
1066
|
"aliases": [],
|
|
1025
1067
|
"args": {},
|
|
1026
|
-
"description": "
|
|
1068
|
+
"description": "Diagnose and repair the local face catalog",
|
|
1027
1069
|
"flags": {
|
|
1028
1070
|
"json": {
|
|
1029
1071
|
"description": "Format output as json.",
|
|
@@ -1056,25 +1098,22 @@
|
|
|
1056
1098
|
"multiple": false,
|
|
1057
1099
|
"type": "option"
|
|
1058
1100
|
},
|
|
1059
|
-
"
|
|
1060
|
-
"description": "
|
|
1061
|
-
"name": "
|
|
1062
|
-
"
|
|
1063
|
-
"
|
|
1064
|
-
"multiple": false,
|
|
1065
|
-
"type": "option"
|
|
1101
|
+
"fix": {
|
|
1102
|
+
"description": "Rebuild missing or stale catalog entries from API",
|
|
1103
|
+
"name": "fix",
|
|
1104
|
+
"allowNo": false,
|
|
1105
|
+
"type": "boolean"
|
|
1066
1106
|
},
|
|
1067
|
-
"
|
|
1068
|
-
"description": "
|
|
1069
|
-
"name": "
|
|
1070
|
-
"
|
|
1071
|
-
"
|
|
1072
|
-
"type": "option"
|
|
1107
|
+
"generate": {
|
|
1108
|
+
"description": "Fix + generate missing descriptions via LLM",
|
|
1109
|
+
"name": "generate",
|
|
1110
|
+
"allowNo": false,
|
|
1111
|
+
"type": "boolean"
|
|
1073
1112
|
}
|
|
1074
1113
|
},
|
|
1075
1114
|
"hasDynamicHelp": false,
|
|
1076
1115
|
"hiddenAliases": [],
|
|
1077
|
-
"id": "
|
|
1116
|
+
"id": "catalog:doctor",
|
|
1078
1117
|
"pluginAlias": "faces-cli",
|
|
1079
1118
|
"pluginName": "faces-cli",
|
|
1080
1119
|
"pluginType": "core",
|
|
@@ -1084,14 +1123,14 @@
|
|
|
1084
1123
|
"relativePath": [
|
|
1085
1124
|
"dist",
|
|
1086
1125
|
"commands",
|
|
1087
|
-
"
|
|
1088
|
-
"
|
|
1126
|
+
"catalog",
|
|
1127
|
+
"doctor.js"
|
|
1089
1128
|
]
|
|
1090
1129
|
},
|
|
1091
|
-
"
|
|
1130
|
+
"catalog:list": {
|
|
1092
1131
|
"aliases": [],
|
|
1093
1132
|
"args": {},
|
|
1094
|
-
"description": "
|
|
1133
|
+
"description": "List all faces in the local catalog",
|
|
1095
1134
|
"flags": {
|
|
1096
1135
|
"json": {
|
|
1097
1136
|
"description": "Format output as json.",
|
|
@@ -1123,38 +1162,11 @@
|
|
|
1123
1162
|
"hasDynamicHelp": false,
|
|
1124
1163
|
"multiple": false,
|
|
1125
1164
|
"type": "option"
|
|
1126
|
-
},
|
|
1127
|
-
"group-by": {
|
|
1128
|
-
"description": "Group results",
|
|
1129
|
-
"name": "group-by",
|
|
1130
|
-
"hasDynamicHelp": false,
|
|
1131
|
-
"multiple": false,
|
|
1132
|
-
"options": [
|
|
1133
|
-
"api_key",
|
|
1134
|
-
"model",
|
|
1135
|
-
"llm",
|
|
1136
|
-
"date"
|
|
1137
|
-
],
|
|
1138
|
-
"type": "option"
|
|
1139
|
-
},
|
|
1140
|
-
"from": {
|
|
1141
|
-
"description": "Start date (YYYY-MM-DD)",
|
|
1142
|
-
"name": "from",
|
|
1143
|
-
"hasDynamicHelp": false,
|
|
1144
|
-
"multiple": false,
|
|
1145
|
-
"type": "option"
|
|
1146
|
-
},
|
|
1147
|
-
"to": {
|
|
1148
|
-
"description": "End date (YYYY-MM-DD)",
|
|
1149
|
-
"name": "to",
|
|
1150
|
-
"hasDynamicHelp": false,
|
|
1151
|
-
"multiple": false,
|
|
1152
|
-
"type": "option"
|
|
1153
1165
|
}
|
|
1154
1166
|
},
|
|
1155
1167
|
"hasDynamicHelp": false,
|
|
1156
1168
|
"hiddenAliases": [],
|
|
1157
|
-
"id": "
|
|
1169
|
+
"id": "catalog:list",
|
|
1158
1170
|
"pluginAlias": "faces-cli",
|
|
1159
1171
|
"pluginName": "faces-cli",
|
|
1160
1172
|
"pluginType": "core",
|
|
@@ -1164,8 +1176,8 @@
|
|
|
1164
1176
|
"relativePath": [
|
|
1165
1177
|
"dist",
|
|
1166
1178
|
"commands",
|
|
1167
|
-
"
|
|
1168
|
-
"
|
|
1179
|
+
"catalog",
|
|
1180
|
+
"list.js"
|
|
1169
1181
|
]
|
|
1170
1182
|
},
|
|
1171
1183
|
"chat:chat": {
|
|
@@ -3887,5 +3899,5 @@
|
|
|
3887
3899
|
]
|
|
3888
3900
|
}
|
|
3889
3901
|
},
|
|
3890
|
-
"version": "1.5.
|
|
3902
|
+
"version": "1.5.5"
|
|
3891
3903
|
}
|