faces-cli 1.4.0 → 1.4.2
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.
|
@@ -6,9 +6,9 @@ export default class BillingCheckout extends BaseCommand {
|
|
|
6
6
|
static flags = {
|
|
7
7
|
...BaseCommand.baseFlags,
|
|
8
8
|
plan: Flags.string({
|
|
9
|
-
description: 'Plan to
|
|
10
|
-
options: ['
|
|
11
|
-
|
|
9
|
+
description: 'Plan to subscribe to',
|
|
10
|
+
options: ['connect'],
|
|
11
|
+
default: 'connect',
|
|
12
12
|
}),
|
|
13
13
|
};
|
|
14
14
|
async run() {
|
|
@@ -4,6 +4,8 @@ export default class FaceUpload extends BaseCommand {
|
|
|
4
4
|
static flags: {
|
|
5
5
|
file: import("@oclif/core/interfaces").OptionFlag<string, import("@oclif/core/interfaces").CustomOptions>;
|
|
6
6
|
kind: import("@oclif/core/interfaces").OptionFlag<string, import("@oclif/core/interfaces").CustomOptions>;
|
|
7
|
+
perspective: import("@oclif/core/interfaces").OptionFlag<string, import("@oclif/core/interfaces").CustomOptions>;
|
|
8
|
+
'face-speaker': import("@oclif/core/interfaces").OptionFlag<string | undefined, import("@oclif/core/interfaces").CustomOptions>;
|
|
7
9
|
'base-url': import("@oclif/core/interfaces").OptionFlag<string | undefined, import("@oclif/core/interfaces").CustomOptions>;
|
|
8
10
|
token: import("@oclif/core/interfaces").OptionFlag<string | undefined, import("@oclif/core/interfaces").CustomOptions>;
|
|
9
11
|
'api-key': import("@oclif/core/interfaces").OptionFlag<string | undefined, import("@oclif/core/interfaces").CustomOptions>;
|
|
@@ -13,6 +13,14 @@ export default class FaceUpload extends BaseCommand {
|
|
|
13
13
|
options: ['document', 'thread'],
|
|
14
14
|
default: 'document',
|
|
15
15
|
}),
|
|
16
|
+
perspective: Flags.string({
|
|
17
|
+
description: 'Perspective (document only)',
|
|
18
|
+
options: ['first-person', 'third-person'],
|
|
19
|
+
default: 'third-person',
|
|
20
|
+
}),
|
|
21
|
+
'face-speaker': Flags.string({
|
|
22
|
+
description: 'Speaker name to map to the face (thread only). If omitted, first speaker is used.',
|
|
23
|
+
}),
|
|
16
24
|
};
|
|
17
25
|
static args = {
|
|
18
26
|
face_id: Args.string({ description: 'Face ID or username', required: true }),
|
|
@@ -26,10 +34,15 @@ export default class FaceUpload extends BaseCommand {
|
|
|
26
34
|
const fileBlob = new Blob([fs.readFileSync(flags.file)], { type: 'application/octet-stream' });
|
|
27
35
|
const form = new FormData();
|
|
28
36
|
form.append('file', fileBlob, filename);
|
|
29
|
-
|
|
37
|
+
// type, perspective, face_speaker are query params (not form fields)
|
|
38
|
+
const params = new URLSearchParams();
|
|
39
|
+
params.set('type', flags.kind);
|
|
40
|
+
params.set('perspective', flags.perspective);
|
|
41
|
+
if (flags['face-speaker'])
|
|
42
|
+
params.set('face_speaker', flags['face-speaker']);
|
|
30
43
|
let data;
|
|
31
44
|
try {
|
|
32
|
-
data = await client.postForm(`/v1/faces/${args.face_id}/upload`, form);
|
|
45
|
+
data = await client.postForm(`/v1/faces/${args.face_id}/upload?${params}`, form);
|
|
33
46
|
}
|
|
34
47
|
catch (err) {
|
|
35
48
|
if (err instanceof FacesAPIError)
|
package/oclif.manifest.json
CHANGED
|
@@ -566,10 +566,10 @@
|
|
|
566
566
|
"whoami.js"
|
|
567
567
|
]
|
|
568
568
|
},
|
|
569
|
-
"
|
|
569
|
+
"billing:balance": {
|
|
570
570
|
"aliases": [],
|
|
571
571
|
"args": {},
|
|
572
|
-
"description": "
|
|
572
|
+
"description": "Show credit balance and payment method status",
|
|
573
573
|
"flags": {
|
|
574
574
|
"json": {
|
|
575
575
|
"description": "Format output as json.",
|
|
@@ -601,23 +601,11 @@
|
|
|
601
601
|
"hasDynamicHelp": false,
|
|
602
602
|
"multiple": false,
|
|
603
603
|
"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
604
|
}
|
|
617
605
|
},
|
|
618
606
|
"hasDynamicHelp": false,
|
|
619
607
|
"hiddenAliases": [],
|
|
620
|
-
"id": "
|
|
608
|
+
"id": "billing:balance",
|
|
621
609
|
"pluginAlias": "faces-cli",
|
|
622
610
|
"pluginName": "faces-cli",
|
|
623
611
|
"pluginType": "core",
|
|
@@ -627,14 +615,14 @@
|
|
|
627
615
|
"relativePath": [
|
|
628
616
|
"dist",
|
|
629
617
|
"commands",
|
|
630
|
-
"
|
|
631
|
-
"
|
|
618
|
+
"billing",
|
|
619
|
+
"balance.js"
|
|
632
620
|
]
|
|
633
621
|
},
|
|
634
|
-
"
|
|
622
|
+
"billing:card-setup": {
|
|
635
623
|
"aliases": [],
|
|
636
624
|
"args": {},
|
|
637
|
-
"description": "
|
|
625
|
+
"description": "Get a Stripe card setup URL to save a payment method",
|
|
638
626
|
"flags": {
|
|
639
627
|
"json": {
|
|
640
628
|
"description": "Format output as json.",
|
|
@@ -670,7 +658,7 @@
|
|
|
670
658
|
},
|
|
671
659
|
"hasDynamicHelp": false,
|
|
672
660
|
"hiddenAliases": [],
|
|
673
|
-
"id": "
|
|
661
|
+
"id": "billing:card-setup",
|
|
674
662
|
"pluginAlias": "faces-cli",
|
|
675
663
|
"pluginName": "faces-cli",
|
|
676
664
|
"pluginType": "core",
|
|
@@ -680,14 +668,14 @@
|
|
|
680
668
|
"relativePath": [
|
|
681
669
|
"dist",
|
|
682
670
|
"commands",
|
|
683
|
-
"
|
|
684
|
-
"
|
|
671
|
+
"billing",
|
|
672
|
+
"card-setup.js"
|
|
685
673
|
]
|
|
686
674
|
},
|
|
687
|
-
"billing:
|
|
675
|
+
"billing:checkout": {
|
|
688
676
|
"aliases": [],
|
|
689
677
|
"args": {},
|
|
690
|
-
"description": "
|
|
678
|
+
"description": "Get a Stripe checkout URL to upgrade your subscription plan",
|
|
691
679
|
"flags": {
|
|
692
680
|
"json": {
|
|
693
681
|
"description": "Format output as json.",
|
|
@@ -719,11 +707,22 @@
|
|
|
719
707
|
"hasDynamicHelp": false,
|
|
720
708
|
"multiple": false,
|
|
721
709
|
"type": "option"
|
|
710
|
+
},
|
|
711
|
+
"plan": {
|
|
712
|
+
"description": "Plan to subscribe to",
|
|
713
|
+
"name": "plan",
|
|
714
|
+
"default": "connect",
|
|
715
|
+
"hasDynamicHelp": false,
|
|
716
|
+
"multiple": false,
|
|
717
|
+
"options": [
|
|
718
|
+
"connect"
|
|
719
|
+
],
|
|
720
|
+
"type": "option"
|
|
722
721
|
}
|
|
723
722
|
},
|
|
724
723
|
"hasDynamicHelp": false,
|
|
725
724
|
"hiddenAliases": [],
|
|
726
|
-
"id": "billing:
|
|
725
|
+
"id": "billing:checkout",
|
|
727
726
|
"pluginAlias": "faces-cli",
|
|
728
727
|
"pluginName": "faces-cli",
|
|
729
728
|
"pluginType": "core",
|
|
@@ -734,13 +733,13 @@
|
|
|
734
733
|
"dist",
|
|
735
734
|
"commands",
|
|
736
735
|
"billing",
|
|
737
|
-
"
|
|
736
|
+
"checkout.js"
|
|
738
737
|
]
|
|
739
738
|
},
|
|
740
|
-
"billing:
|
|
739
|
+
"billing:llm-costs": {
|
|
741
740
|
"aliases": [],
|
|
742
741
|
"args": {},
|
|
743
|
-
"description": "
|
|
742
|
+
"description": "List available LLMs and their per-token costs",
|
|
744
743
|
"flags": {
|
|
745
744
|
"json": {
|
|
746
745
|
"description": "Format output as json.",
|
|
@@ -772,11 +771,18 @@
|
|
|
772
771
|
"hasDynamicHelp": false,
|
|
773
772
|
"multiple": false,
|
|
774
773
|
"type": "option"
|
|
774
|
+
},
|
|
775
|
+
"provider": {
|
|
776
|
+
"description": "Filter by provider (e.g. openai, anthropic)",
|
|
777
|
+
"name": "provider",
|
|
778
|
+
"hasDynamicHelp": false,
|
|
779
|
+
"multiple": false,
|
|
780
|
+
"type": "option"
|
|
775
781
|
}
|
|
776
782
|
},
|
|
777
783
|
"hasDynamicHelp": false,
|
|
778
784
|
"hiddenAliases": [],
|
|
779
|
-
"id": "billing:
|
|
785
|
+
"id": "billing:llm-costs",
|
|
780
786
|
"pluginAlias": "faces-cli",
|
|
781
787
|
"pluginName": "faces-cli",
|
|
782
788
|
"pluginType": "core",
|
|
@@ -787,13 +793,13 @@
|
|
|
787
793
|
"dist",
|
|
788
794
|
"commands",
|
|
789
795
|
"billing",
|
|
790
|
-
"
|
|
796
|
+
"llm-costs.js"
|
|
791
797
|
]
|
|
792
798
|
},
|
|
793
|
-
"billing:
|
|
799
|
+
"billing:quota": {
|
|
794
800
|
"aliases": [],
|
|
795
801
|
"args": {},
|
|
796
|
-
"description": "
|
|
802
|
+
"description": "Show compile token quota and per-face stats",
|
|
797
803
|
"flags": {
|
|
798
804
|
"json": {
|
|
799
805
|
"description": "Format output as json.",
|
|
@@ -825,23 +831,11 @@
|
|
|
825
831
|
"hasDynamicHelp": false,
|
|
826
832
|
"multiple": false,
|
|
827
833
|
"type": "option"
|
|
828
|
-
},
|
|
829
|
-
"plan": {
|
|
830
|
-
"description": "Plan to upgrade to",
|
|
831
|
-
"name": "plan",
|
|
832
|
-
"required": true,
|
|
833
|
-
"hasDynamicHelp": false,
|
|
834
|
-
"multiple": false,
|
|
835
|
-
"options": [
|
|
836
|
-
"standard",
|
|
837
|
-
"pro"
|
|
838
|
-
],
|
|
839
|
-
"type": "option"
|
|
840
834
|
}
|
|
841
835
|
},
|
|
842
836
|
"hasDynamicHelp": false,
|
|
843
837
|
"hiddenAliases": [],
|
|
844
|
-
"id": "billing:
|
|
838
|
+
"id": "billing:quota",
|
|
845
839
|
"pluginAlias": "faces-cli",
|
|
846
840
|
"pluginName": "faces-cli",
|
|
847
841
|
"pluginType": "core",
|
|
@@ -852,13 +846,13 @@
|
|
|
852
846
|
"dist",
|
|
853
847
|
"commands",
|
|
854
848
|
"billing",
|
|
855
|
-
"
|
|
849
|
+
"quota.js"
|
|
856
850
|
]
|
|
857
851
|
},
|
|
858
|
-
"billing:
|
|
852
|
+
"billing:subscription": {
|
|
859
853
|
"aliases": [],
|
|
860
854
|
"args": {},
|
|
861
|
-
"description": "
|
|
855
|
+
"description": "Show current plan, face count, and renewal date",
|
|
862
856
|
"flags": {
|
|
863
857
|
"json": {
|
|
864
858
|
"description": "Format output as json.",
|
|
@@ -890,18 +884,11 @@
|
|
|
890
884
|
"hasDynamicHelp": false,
|
|
891
885
|
"multiple": false,
|
|
892
886
|
"type": "option"
|
|
893
|
-
},
|
|
894
|
-
"provider": {
|
|
895
|
-
"description": "Filter by provider (e.g. openai, anthropic)",
|
|
896
|
-
"name": "provider",
|
|
897
|
-
"hasDynamicHelp": false,
|
|
898
|
-
"multiple": false,
|
|
899
|
-
"type": "option"
|
|
900
887
|
}
|
|
901
888
|
},
|
|
902
889
|
"hasDynamicHelp": false,
|
|
903
890
|
"hiddenAliases": [],
|
|
904
|
-
"id": "billing:
|
|
891
|
+
"id": "billing:subscription",
|
|
905
892
|
"pluginAlias": "faces-cli",
|
|
906
893
|
"pluginName": "faces-cli",
|
|
907
894
|
"pluginType": "core",
|
|
@@ -912,13 +899,13 @@
|
|
|
912
899
|
"dist",
|
|
913
900
|
"commands",
|
|
914
901
|
"billing",
|
|
915
|
-
"
|
|
902
|
+
"subscription.js"
|
|
916
903
|
]
|
|
917
904
|
},
|
|
918
|
-
"billing:
|
|
905
|
+
"billing:topup": {
|
|
919
906
|
"aliases": [],
|
|
920
907
|
"args": {},
|
|
921
|
-
"description": "
|
|
908
|
+
"description": "Top up credit balance using saved payment method",
|
|
922
909
|
"flags": {
|
|
923
910
|
"json": {
|
|
924
911
|
"description": "Format output as json.",
|
|
@@ -950,11 +937,26 @@
|
|
|
950
937
|
"hasDynamicHelp": false,
|
|
951
938
|
"multiple": false,
|
|
952
939
|
"type": "option"
|
|
940
|
+
},
|
|
941
|
+
"amount": {
|
|
942
|
+
"description": "Top-up amount in USD (min $1)",
|
|
943
|
+
"name": "amount",
|
|
944
|
+
"required": true,
|
|
945
|
+
"hasDynamicHelp": false,
|
|
946
|
+
"multiple": false,
|
|
947
|
+
"type": "option"
|
|
948
|
+
},
|
|
949
|
+
"payment-ref": {
|
|
950
|
+
"description": "Payment reference (admin/test path)",
|
|
951
|
+
"name": "payment-ref",
|
|
952
|
+
"hasDynamicHelp": false,
|
|
953
|
+
"multiple": false,
|
|
954
|
+
"type": "option"
|
|
953
955
|
}
|
|
954
956
|
},
|
|
955
957
|
"hasDynamicHelp": false,
|
|
956
958
|
"hiddenAliases": [],
|
|
957
|
-
"id": "billing:
|
|
959
|
+
"id": "billing:topup",
|
|
958
960
|
"pluginAlias": "faces-cli",
|
|
959
961
|
"pluginName": "faces-cli",
|
|
960
962
|
"pluginType": "core",
|
|
@@ -965,13 +967,13 @@
|
|
|
965
967
|
"dist",
|
|
966
968
|
"commands",
|
|
967
969
|
"billing",
|
|
968
|
-
"
|
|
970
|
+
"topup.js"
|
|
969
971
|
]
|
|
970
972
|
},
|
|
971
|
-
"billing:
|
|
973
|
+
"billing:usage": {
|
|
972
974
|
"aliases": [],
|
|
973
975
|
"args": {},
|
|
974
|
-
"description": "
|
|
976
|
+
"description": "Aggregated usage analytics",
|
|
975
977
|
"flags": {
|
|
976
978
|
"json": {
|
|
977
979
|
"description": "Format output as json.",
|
|
@@ -1003,11 +1005,38 @@
|
|
|
1003
1005
|
"hasDynamicHelp": false,
|
|
1004
1006
|
"multiple": false,
|
|
1005
1007
|
"type": "option"
|
|
1008
|
+
},
|
|
1009
|
+
"group-by": {
|
|
1010
|
+
"description": "Group results",
|
|
1011
|
+
"name": "group-by",
|
|
1012
|
+
"hasDynamicHelp": false,
|
|
1013
|
+
"multiple": false,
|
|
1014
|
+
"options": [
|
|
1015
|
+
"api_key",
|
|
1016
|
+
"model",
|
|
1017
|
+
"llm",
|
|
1018
|
+
"date"
|
|
1019
|
+
],
|
|
1020
|
+
"type": "option"
|
|
1021
|
+
},
|
|
1022
|
+
"from": {
|
|
1023
|
+
"description": "Start date (YYYY-MM-DD)",
|
|
1024
|
+
"name": "from",
|
|
1025
|
+
"hasDynamicHelp": false,
|
|
1026
|
+
"multiple": false,
|
|
1027
|
+
"type": "option"
|
|
1028
|
+
},
|
|
1029
|
+
"to": {
|
|
1030
|
+
"description": "End date (YYYY-MM-DD)",
|
|
1031
|
+
"name": "to",
|
|
1032
|
+
"hasDynamicHelp": false,
|
|
1033
|
+
"multiple": false,
|
|
1034
|
+
"type": "option"
|
|
1006
1035
|
}
|
|
1007
1036
|
},
|
|
1008
1037
|
"hasDynamicHelp": false,
|
|
1009
1038
|
"hiddenAliases": [],
|
|
1010
|
-
"id": "billing:
|
|
1039
|
+
"id": "billing:usage",
|
|
1011
1040
|
"pluginAlias": "faces-cli",
|
|
1012
1041
|
"pluginName": "faces-cli",
|
|
1013
1042
|
"pluginType": "core",
|
|
@@ -1018,13 +1047,13 @@
|
|
|
1018
1047
|
"dist",
|
|
1019
1048
|
"commands",
|
|
1020
1049
|
"billing",
|
|
1021
|
-
"
|
|
1050
|
+
"usage.js"
|
|
1022
1051
|
]
|
|
1023
1052
|
},
|
|
1024
|
-
"
|
|
1053
|
+
"catalog:doctor": {
|
|
1025
1054
|
"aliases": [],
|
|
1026
1055
|
"args": {},
|
|
1027
|
-
"description": "
|
|
1056
|
+
"description": "Diagnose and repair the local face catalog",
|
|
1028
1057
|
"flags": {
|
|
1029
1058
|
"json": {
|
|
1030
1059
|
"description": "Format output as json.",
|
|
@@ -1057,25 +1086,22 @@
|
|
|
1057
1086
|
"multiple": false,
|
|
1058
1087
|
"type": "option"
|
|
1059
1088
|
},
|
|
1060
|
-
"
|
|
1061
|
-
"description": "
|
|
1062
|
-
"name": "
|
|
1063
|
-
"
|
|
1064
|
-
"
|
|
1065
|
-
"multiple": false,
|
|
1066
|
-
"type": "option"
|
|
1089
|
+
"fix": {
|
|
1090
|
+
"description": "Rebuild missing or stale catalog entries from API",
|
|
1091
|
+
"name": "fix",
|
|
1092
|
+
"allowNo": false,
|
|
1093
|
+
"type": "boolean"
|
|
1067
1094
|
},
|
|
1068
|
-
"
|
|
1069
|
-
"description": "
|
|
1070
|
-
"name": "
|
|
1071
|
-
"
|
|
1072
|
-
"
|
|
1073
|
-
"type": "option"
|
|
1095
|
+
"generate": {
|
|
1096
|
+
"description": "Fix + generate missing descriptions via LLM",
|
|
1097
|
+
"name": "generate",
|
|
1098
|
+
"allowNo": false,
|
|
1099
|
+
"type": "boolean"
|
|
1074
1100
|
}
|
|
1075
1101
|
},
|
|
1076
1102
|
"hasDynamicHelp": false,
|
|
1077
1103
|
"hiddenAliases": [],
|
|
1078
|
-
"id": "
|
|
1104
|
+
"id": "catalog:doctor",
|
|
1079
1105
|
"pluginAlias": "faces-cli",
|
|
1080
1106
|
"pluginName": "faces-cli",
|
|
1081
1107
|
"pluginType": "core",
|
|
@@ -1085,14 +1111,14 @@
|
|
|
1085
1111
|
"relativePath": [
|
|
1086
1112
|
"dist",
|
|
1087
1113
|
"commands",
|
|
1088
|
-
"
|
|
1089
|
-
"
|
|
1114
|
+
"catalog",
|
|
1115
|
+
"doctor.js"
|
|
1090
1116
|
]
|
|
1091
1117
|
},
|
|
1092
|
-
"
|
|
1118
|
+
"catalog:list": {
|
|
1093
1119
|
"aliases": [],
|
|
1094
1120
|
"args": {},
|
|
1095
|
-
"description": "
|
|
1121
|
+
"description": "List all faces in the local catalog",
|
|
1096
1122
|
"flags": {
|
|
1097
1123
|
"json": {
|
|
1098
1124
|
"description": "Format output as json.",
|
|
@@ -1124,38 +1150,11 @@
|
|
|
1124
1150
|
"hasDynamicHelp": false,
|
|
1125
1151
|
"multiple": false,
|
|
1126
1152
|
"type": "option"
|
|
1127
|
-
},
|
|
1128
|
-
"group-by": {
|
|
1129
|
-
"description": "Group results",
|
|
1130
|
-
"name": "group-by",
|
|
1131
|
-
"hasDynamicHelp": false,
|
|
1132
|
-
"multiple": false,
|
|
1133
|
-
"options": [
|
|
1134
|
-
"api_key",
|
|
1135
|
-
"model",
|
|
1136
|
-
"llm",
|
|
1137
|
-
"date"
|
|
1138
|
-
],
|
|
1139
|
-
"type": "option"
|
|
1140
|
-
},
|
|
1141
|
-
"from": {
|
|
1142
|
-
"description": "Start date (YYYY-MM-DD)",
|
|
1143
|
-
"name": "from",
|
|
1144
|
-
"hasDynamicHelp": false,
|
|
1145
|
-
"multiple": false,
|
|
1146
|
-
"type": "option"
|
|
1147
|
-
},
|
|
1148
|
-
"to": {
|
|
1149
|
-
"description": "End date (YYYY-MM-DD)",
|
|
1150
|
-
"name": "to",
|
|
1151
|
-
"hasDynamicHelp": false,
|
|
1152
|
-
"multiple": false,
|
|
1153
|
-
"type": "option"
|
|
1154
1153
|
}
|
|
1155
1154
|
},
|
|
1156
1155
|
"hasDynamicHelp": false,
|
|
1157
1156
|
"hiddenAliases": [],
|
|
1158
|
-
"id": "
|
|
1157
|
+
"id": "catalog:list",
|
|
1159
1158
|
"pluginAlias": "faces-cli",
|
|
1160
1159
|
"pluginName": "faces-cli",
|
|
1161
1160
|
"pluginType": "core",
|
|
@@ -1165,8 +1164,8 @@
|
|
|
1165
1164
|
"relativePath": [
|
|
1166
1165
|
"dist",
|
|
1167
1166
|
"commands",
|
|
1168
|
-
"
|
|
1169
|
-
"
|
|
1167
|
+
"catalog",
|
|
1168
|
+
"list.js"
|
|
1170
1169
|
]
|
|
1171
1170
|
},
|
|
1172
1171
|
"chat:chat": {
|
|
@@ -2378,6 +2377,25 @@
|
|
|
2378
2377
|
"thread"
|
|
2379
2378
|
],
|
|
2380
2379
|
"type": "option"
|
|
2380
|
+
},
|
|
2381
|
+
"perspective": {
|
|
2382
|
+
"description": "Perspective (document only)",
|
|
2383
|
+
"name": "perspective",
|
|
2384
|
+
"default": "third-person",
|
|
2385
|
+
"hasDynamicHelp": false,
|
|
2386
|
+
"multiple": false,
|
|
2387
|
+
"options": [
|
|
2388
|
+
"first-person",
|
|
2389
|
+
"third-person"
|
|
2390
|
+
],
|
|
2391
|
+
"type": "option"
|
|
2392
|
+
},
|
|
2393
|
+
"face-speaker": {
|
|
2394
|
+
"description": "Speaker name to map to the face (thread only). If omitted, first speaker is used.",
|
|
2395
|
+
"name": "face-speaker",
|
|
2396
|
+
"hasDynamicHelp": false,
|
|
2397
|
+
"multiple": false,
|
|
2398
|
+
"type": "option"
|
|
2381
2399
|
}
|
|
2382
2400
|
},
|
|
2383
2401
|
"hasDynamicHelp": false,
|
|
@@ -3667,5 +3685,5 @@
|
|
|
3667
3685
|
]
|
|
3668
3686
|
}
|
|
3669
3687
|
},
|
|
3670
|
-
"version": "1.4.
|
|
3688
|
+
"version": "1.4.2"
|
|
3671
3689
|
}
|