@formant/formant-cli 0.1.0 → 0.2.0
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/base-command.d.ts +5 -0
- package/dist/base-command.js +9 -0
- package/dist/base-command.js.map +1 -1
- package/dist/commands/devices/create.d.ts +13 -0
- package/dist/commands/devices/create.js +62 -0
- package/dist/commands/devices/create.js.map +1 -0
- package/dist/commands/devices/delete.d.ts +10 -0
- package/dist/commands/devices/delete.js +49 -0
- package/dist/commands/devices/delete.js.map +1 -0
- package/dist/commands/devices/rename.d.ts +11 -0
- package/dist/commands/devices/rename.js +42 -0
- package/dist/commands/devices/rename.js.map +1 -0
- package/dist/commands/devices/tag.d.ts +13 -0
- package/dist/commands/devices/tag.js +69 -0
- package/dist/commands/devices/tag.js.map +1 -0
- package/dist/commands/devices/untag.d.ts +13 -0
- package/dist/commands/devices/untag.js +79 -0
- package/dist/commands/devices/untag.js.map +1 -0
- package/dist/commands/org/get.d.ts +7 -0
- package/dist/commands/org/get.js +54 -0
- package/dist/commands/org/get.js.map +1 -0
- package/dist/commands/org/update.d.ts +11 -0
- package/dist/commands/org/update.js +75 -0
- package/dist/commands/org/update.js.map +1 -0
- package/oclif.manifest.json +859 -399
- package/package.json +4 -1
package/oclif.manifest.json
CHANGED
|
@@ -140,173 +140,6 @@
|
|
|
140
140
|
"tables.js"
|
|
141
141
|
]
|
|
142
142
|
},
|
|
143
|
-
"events:get": {
|
|
144
|
-
"aliases": [],
|
|
145
|
-
"args": {
|
|
146
|
-
"id": {
|
|
147
|
-
"description": "Event ID (UUID)",
|
|
148
|
-
"name": "id",
|
|
149
|
-
"required": true
|
|
150
|
-
}
|
|
151
|
-
},
|
|
152
|
-
"description": "Get detailed information about a specific event by its ID.",
|
|
153
|
-
"examples": [
|
|
154
|
-
"<%= config.bin %> events get <event-id>",
|
|
155
|
-
"<%= config.bin %> events get <event-id> --json"
|
|
156
|
-
],
|
|
157
|
-
"flags": {
|
|
158
|
-
"json": {
|
|
159
|
-
"description": "Format output as json.",
|
|
160
|
-
"helpGroup": "GLOBAL",
|
|
161
|
-
"name": "json",
|
|
162
|
-
"allowNo": false,
|
|
163
|
-
"type": "boolean"
|
|
164
|
-
},
|
|
165
|
-
"dev": {
|
|
166
|
-
"description": "Target the dev environment",
|
|
167
|
-
"exclusive": [
|
|
168
|
-
"stage"
|
|
169
|
-
],
|
|
170
|
-
"helpGroup": "GLOBAL",
|
|
171
|
-
"name": "dev",
|
|
172
|
-
"allowNo": false,
|
|
173
|
-
"type": "boolean"
|
|
174
|
-
},
|
|
175
|
-
"stage": {
|
|
176
|
-
"description": "Target the stage environment",
|
|
177
|
-
"exclusive": [
|
|
178
|
-
"dev"
|
|
179
|
-
],
|
|
180
|
-
"helpGroup": "GLOBAL",
|
|
181
|
-
"name": "stage",
|
|
182
|
-
"allowNo": false,
|
|
183
|
-
"type": "boolean"
|
|
184
|
-
}
|
|
185
|
-
},
|
|
186
|
-
"hasDynamicHelp": false,
|
|
187
|
-
"hiddenAliases": [],
|
|
188
|
-
"id": "events:get",
|
|
189
|
-
"pluginAlias": "@formant/formant-cli",
|
|
190
|
-
"pluginName": "@formant/formant-cli",
|
|
191
|
-
"pluginType": "core",
|
|
192
|
-
"strict": true,
|
|
193
|
-
"summary": "Get an event by ID",
|
|
194
|
-
"enableJsonFlag": true,
|
|
195
|
-
"isESM": true,
|
|
196
|
-
"relativePath": [
|
|
197
|
-
"dist",
|
|
198
|
-
"commands",
|
|
199
|
-
"events",
|
|
200
|
-
"get.js"
|
|
201
|
-
]
|
|
202
|
-
},
|
|
203
|
-
"events:list": {
|
|
204
|
-
"aliases": [],
|
|
205
|
-
"args": {},
|
|
206
|
-
"description": "View important events emitted by devices with optional filters.\n\nEvents are significant occurrences from robots and sensors (e.g., device online/offline,\nerrors, state changes, commands). They can trigger signals for investigation.\n\nEvent types include: triggered-event, datapoint-event, device-online, device-offline,\nintervention-request, intervention-response, teleop-session-record, command-request,\ncommand-response, custom, comment, system, annotation, task-summary, stateful.\n\nSeverities: info, warning, error, critical.",
|
|
207
|
-
"examples": [
|
|
208
|
-
"<%= config.bin %> events list",
|
|
209
|
-
"<%= config.bin %> events list --device <id> --severity critical",
|
|
210
|
-
"<%= config.bin %> events list --type device-offline --start 2026-01-01 --end 2026-01-02",
|
|
211
|
-
"<%= config.bin %> events list --limit 100 --json"
|
|
212
|
-
],
|
|
213
|
-
"flags": {
|
|
214
|
-
"json": {
|
|
215
|
-
"description": "Format output as json.",
|
|
216
|
-
"helpGroup": "GLOBAL",
|
|
217
|
-
"name": "json",
|
|
218
|
-
"allowNo": false,
|
|
219
|
-
"type": "boolean"
|
|
220
|
-
},
|
|
221
|
-
"dev": {
|
|
222
|
-
"description": "Target the dev environment",
|
|
223
|
-
"exclusive": [
|
|
224
|
-
"stage"
|
|
225
|
-
],
|
|
226
|
-
"helpGroup": "GLOBAL",
|
|
227
|
-
"name": "dev",
|
|
228
|
-
"allowNo": false,
|
|
229
|
-
"type": "boolean"
|
|
230
|
-
},
|
|
231
|
-
"stage": {
|
|
232
|
-
"description": "Target the stage environment",
|
|
233
|
-
"exclusive": [
|
|
234
|
-
"dev"
|
|
235
|
-
],
|
|
236
|
-
"helpGroup": "GLOBAL",
|
|
237
|
-
"name": "stage",
|
|
238
|
-
"allowNo": false,
|
|
239
|
-
"type": "boolean"
|
|
240
|
-
},
|
|
241
|
-
"device": {
|
|
242
|
-
"char": "d",
|
|
243
|
-
"description": "Filter by device ID",
|
|
244
|
-
"name": "device",
|
|
245
|
-
"hasDynamicHelp": false,
|
|
246
|
-
"multiple": false,
|
|
247
|
-
"type": "option"
|
|
248
|
-
},
|
|
249
|
-
"end": {
|
|
250
|
-
"description": "End time (ISO 8601)",
|
|
251
|
-
"name": "end",
|
|
252
|
-
"hasDynamicHelp": false,
|
|
253
|
-
"multiple": false,
|
|
254
|
-
"type": "option"
|
|
255
|
-
},
|
|
256
|
-
"limit": {
|
|
257
|
-
"char": "l",
|
|
258
|
-
"description": "Maximum number of events to return",
|
|
259
|
-
"name": "limit",
|
|
260
|
-
"default": 25,
|
|
261
|
-
"hasDynamicHelp": false,
|
|
262
|
-
"multiple": false,
|
|
263
|
-
"type": "option"
|
|
264
|
-
},
|
|
265
|
-
"severity": {
|
|
266
|
-
"description": "Filter by severity",
|
|
267
|
-
"name": "severity",
|
|
268
|
-
"hasDynamicHelp": false,
|
|
269
|
-
"multiple": false,
|
|
270
|
-
"options": [
|
|
271
|
-
"info",
|
|
272
|
-
"warning",
|
|
273
|
-
"error",
|
|
274
|
-
"critical"
|
|
275
|
-
],
|
|
276
|
-
"type": "option"
|
|
277
|
-
},
|
|
278
|
-
"start": {
|
|
279
|
-
"description": "Start time (ISO 8601)",
|
|
280
|
-
"name": "start",
|
|
281
|
-
"hasDynamicHelp": false,
|
|
282
|
-
"multiple": false,
|
|
283
|
-
"type": "option"
|
|
284
|
-
},
|
|
285
|
-
"type": {
|
|
286
|
-
"description": "Filter by event type",
|
|
287
|
-
"name": "type",
|
|
288
|
-
"hasDynamicHelp": false,
|
|
289
|
-
"multiple": false,
|
|
290
|
-
"type": "option"
|
|
291
|
-
}
|
|
292
|
-
},
|
|
293
|
-
"hasDynamicHelp": false,
|
|
294
|
-
"hiddenAliases": [],
|
|
295
|
-
"id": "events:list",
|
|
296
|
-
"pluginAlias": "@formant/formant-cli",
|
|
297
|
-
"pluginName": "@formant/formant-cli",
|
|
298
|
-
"pluginType": "core",
|
|
299
|
-
"strict": true,
|
|
300
|
-
"summary": "View events emitted by devices",
|
|
301
|
-
"enableJsonFlag": true,
|
|
302
|
-
"isESM": true,
|
|
303
|
-
"relativePath": [
|
|
304
|
-
"dist",
|
|
305
|
-
"commands",
|
|
306
|
-
"events",
|
|
307
|
-
"list.js"
|
|
308
|
-
]
|
|
309
|
-
},
|
|
310
143
|
"event-triggers:get": {
|
|
311
144
|
"aliases": [],
|
|
312
145
|
"args": {
|
|
@@ -871,19 +704,19 @@
|
|
|
871
704
|
"list.js"
|
|
872
705
|
]
|
|
873
706
|
},
|
|
874
|
-
"
|
|
707
|
+
"devices:config": {
|
|
875
708
|
"aliases": [],
|
|
876
709
|
"args": {
|
|
877
|
-
"
|
|
878
|
-
"description": "
|
|
879
|
-
"name": "
|
|
710
|
+
"id": {
|
|
711
|
+
"description": "Device ID (UUID)",
|
|
712
|
+
"name": "id",
|
|
880
713
|
"required": true
|
|
881
714
|
}
|
|
882
715
|
},
|
|
883
|
-
"description": "Get
|
|
716
|
+
"description": "Get the device configuration including stream definitions.\n\nShows the device's current configuration including telemetry streams, commands,\nand other settings.",
|
|
884
717
|
"examples": [
|
|
885
|
-
"<%= config.bin %>
|
|
886
|
-
"<%= config.bin %>
|
|
718
|
+
"<%= config.bin %> devices config <device-id>",
|
|
719
|
+
"<%= config.bin %> devices config <device-id> --json"
|
|
887
720
|
],
|
|
888
721
|
"flags": {
|
|
889
722
|
"json": {
|
|
@@ -916,30 +749,35 @@
|
|
|
916
749
|
},
|
|
917
750
|
"hasDynamicHelp": false,
|
|
918
751
|
"hiddenAliases": [],
|
|
919
|
-
"id": "
|
|
752
|
+
"id": "devices:config",
|
|
920
753
|
"pluginAlias": "@formant/formant-cli",
|
|
921
754
|
"pluginName": "@formant/formant-cli",
|
|
922
755
|
"pluginType": "core",
|
|
923
756
|
"strict": true,
|
|
924
|
-
"summary": "Get
|
|
757
|
+
"summary": "Get device configuration",
|
|
925
758
|
"enableJsonFlag": true,
|
|
926
759
|
"isESM": true,
|
|
927
760
|
"relativePath": [
|
|
928
761
|
"dist",
|
|
929
762
|
"commands",
|
|
930
|
-
"
|
|
931
|
-
"
|
|
763
|
+
"devices",
|
|
764
|
+
"config.js"
|
|
932
765
|
]
|
|
933
766
|
},
|
|
934
|
-
"
|
|
767
|
+
"devices:create": {
|
|
935
768
|
"aliases": [],
|
|
936
|
-
"args": {
|
|
937
|
-
|
|
769
|
+
"args": {
|
|
770
|
+
"name": {
|
|
771
|
+
"description": "Name for the new device",
|
|
772
|
+
"name": "name",
|
|
773
|
+
"required": true
|
|
774
|
+
}
|
|
775
|
+
},
|
|
776
|
+
"description": "Create a new device in your fleet.\n\nThe device is created as enabled by default. You can optionally specify tags.",
|
|
938
777
|
"examples": [
|
|
939
|
-
"<%= config.bin %>
|
|
940
|
-
"<%= config.bin %>
|
|
941
|
-
"<%= config.bin %>
|
|
942
|
-
"<%= config.bin %> kv list --json"
|
|
778
|
+
"<%= config.bin %> devices create my-robot",
|
|
779
|
+
"<%= config.bin %> devices create my-robot --tag location=warehouse --tag env=prod",
|
|
780
|
+
"<%= config.bin %> devices create my-robot --json"
|
|
943
781
|
],
|
|
944
782
|
"flags": {
|
|
945
783
|
"json": {
|
|
@@ -969,58 +807,45 @@
|
|
|
969
807
|
"allowNo": false,
|
|
970
808
|
"type": "boolean"
|
|
971
809
|
},
|
|
972
|
-
"
|
|
973
|
-
"char": "
|
|
974
|
-
"description": "
|
|
975
|
-
"name": "
|
|
810
|
+
"tag": {
|
|
811
|
+
"char": "t",
|
|
812
|
+
"description": "Tag to apply (key=value), can be specified multiple times",
|
|
813
|
+
"name": "tag",
|
|
976
814
|
"hasDynamicHelp": false,
|
|
977
815
|
"multiple": true,
|
|
978
816
|
"type": "option"
|
|
979
|
-
},
|
|
980
|
-
"prefix": {
|
|
981
|
-
"char": "p",
|
|
982
|
-
"description": "Filter keys by prefix",
|
|
983
|
-
"name": "prefix",
|
|
984
|
-
"hasDynamicHelp": false,
|
|
985
|
-
"multiple": false,
|
|
986
|
-
"type": "option"
|
|
987
817
|
}
|
|
988
818
|
},
|
|
989
819
|
"hasDynamicHelp": false,
|
|
990
820
|
"hiddenAliases": [],
|
|
991
|
-
"id": "
|
|
821
|
+
"id": "devices:create",
|
|
992
822
|
"pluginAlias": "@formant/formant-cli",
|
|
993
823
|
"pluginName": "@formant/formant-cli",
|
|
994
824
|
"pluginType": "core",
|
|
995
825
|
"strict": true,
|
|
996
|
-
"summary": "
|
|
826
|
+
"summary": "Create a new device",
|
|
997
827
|
"enableJsonFlag": true,
|
|
998
828
|
"isESM": true,
|
|
999
829
|
"relativePath": [
|
|
1000
830
|
"dist",
|
|
1001
831
|
"commands",
|
|
1002
|
-
"
|
|
1003
|
-
"
|
|
832
|
+
"devices",
|
|
833
|
+
"create.js"
|
|
1004
834
|
]
|
|
1005
835
|
},
|
|
1006
|
-
"
|
|
836
|
+
"devices:delete": {
|
|
1007
837
|
"aliases": [],
|
|
1008
838
|
"args": {
|
|
1009
|
-
"
|
|
1010
|
-
"description": "
|
|
1011
|
-
"name": "
|
|
1012
|
-
"required": true
|
|
1013
|
-
},
|
|
1014
|
-
"value": {
|
|
1015
|
-
"description": "Value to store (JSON string)",
|
|
1016
|
-
"name": "value",
|
|
839
|
+
"id": {
|
|
840
|
+
"description": "Device ID (UUID)",
|
|
841
|
+
"name": "id",
|
|
1017
842
|
"required": true
|
|
1018
843
|
}
|
|
1019
844
|
},
|
|
1020
|
-
"description": "
|
|
845
|
+
"description": "Delete (disable) a device from your fleet.\n\nThis performs a soft-delete by disabling the device. The device and its telemetry\nhistory are preserved but it will no longer appear in device listings.",
|
|
1021
846
|
"examples": [
|
|
1022
|
-
"<%= config.bin %>
|
|
1023
|
-
"<%= config.bin %>
|
|
847
|
+
"<%= config.bin %> devices delete <device-id>",
|
|
848
|
+
"<%= config.bin %> devices delete <device-id> --json"
|
|
1024
849
|
],
|
|
1025
850
|
"flags": {
|
|
1026
851
|
"json": {
|
|
@@ -1053,30 +878,34 @@
|
|
|
1053
878
|
},
|
|
1054
879
|
"hasDynamicHelp": false,
|
|
1055
880
|
"hiddenAliases": [],
|
|
1056
|
-
"id": "
|
|
881
|
+
"id": "devices:delete",
|
|
1057
882
|
"pluginAlias": "@formant/formant-cli",
|
|
1058
883
|
"pluginName": "@formant/formant-cli",
|
|
1059
884
|
"pluginType": "core",
|
|
1060
885
|
"strict": true,
|
|
1061
|
-
"summary": "
|
|
886
|
+
"summary": "Delete (disable) a device",
|
|
1062
887
|
"enableJsonFlag": true,
|
|
1063
888
|
"isESM": true,
|
|
1064
889
|
"relativePath": [
|
|
1065
890
|
"dist",
|
|
1066
891
|
"commands",
|
|
1067
|
-
"
|
|
1068
|
-
"
|
|
892
|
+
"devices",
|
|
893
|
+
"delete.js"
|
|
1069
894
|
]
|
|
1070
895
|
},
|
|
1071
|
-
"
|
|
896
|
+
"devices:get": {
|
|
1072
897
|
"aliases": [],
|
|
1073
|
-
"args": {
|
|
1074
|
-
|
|
898
|
+
"args": {
|
|
899
|
+
"id": {
|
|
900
|
+
"description": "Device ID (UUID)",
|
|
901
|
+
"name": "id",
|
|
902
|
+
"required": true
|
|
903
|
+
}
|
|
904
|
+
},
|
|
905
|
+
"description": "Get detailed information about a specific device by its ID.",
|
|
1075
906
|
"examples": [
|
|
1076
|
-
"<%= config.bin %>
|
|
1077
|
-
"<%= config.bin %>
|
|
1078
|
-
"<%= config.bin %> query --device <id> --stream battery_level --latest",
|
|
1079
|
-
"<%= config.bin %> query --device <id> --stream temperature --type numeric --json"
|
|
907
|
+
"<%= config.bin %> devices get <device-id>",
|
|
908
|
+
"<%= config.bin %> devices get <device-id> --json"
|
|
1080
909
|
],
|
|
1081
910
|
"flags": {
|
|
1082
911
|
"json": {
|
|
@@ -1105,95 +934,38 @@
|
|
|
1105
934
|
"name": "stage",
|
|
1106
935
|
"allowNo": false,
|
|
1107
936
|
"type": "boolean"
|
|
1108
|
-
},
|
|
1109
|
-
"aggregate": {
|
|
1110
|
-
"char": "a",
|
|
1111
|
-
"description": "Aggregation level for downsampling",
|
|
1112
|
-
"name": "aggregate",
|
|
1113
|
-
"hasDynamicHelp": false,
|
|
1114
|
-
"multiple": false,
|
|
1115
|
-
"type": "option"
|
|
1116
|
-
},
|
|
1117
|
-
"device": {
|
|
1118
|
-
"char": "d",
|
|
1119
|
-
"description": "Device ID (UUID)",
|
|
1120
|
-
"name": "device",
|
|
1121
|
-
"required": true,
|
|
1122
|
-
"hasDynamicHelp": false,
|
|
1123
|
-
"multiple": false,
|
|
1124
|
-
"type": "option"
|
|
1125
|
-
},
|
|
1126
|
-
"end": {
|
|
1127
|
-
"description": "End time (ISO 8601)",
|
|
1128
|
-
"name": "end",
|
|
1129
|
-
"hasDynamicHelp": false,
|
|
1130
|
-
"multiple": false,
|
|
1131
|
-
"type": "option"
|
|
1132
|
-
},
|
|
1133
|
-
"latest": {
|
|
1134
|
-
"description": "Only return the most recent value per stream",
|
|
1135
|
-
"name": "latest",
|
|
1136
|
-
"allowNo": false,
|
|
1137
|
-
"type": "boolean"
|
|
1138
|
-
},
|
|
1139
|
-
"limit": {
|
|
1140
|
-
"char": "l",
|
|
1141
|
-
"description": "Maximum number of datapoints",
|
|
1142
|
-
"name": "limit",
|
|
1143
|
-
"hasDynamicHelp": false,
|
|
1144
|
-
"multiple": false,
|
|
1145
|
-
"type": "option"
|
|
1146
|
-
},
|
|
1147
|
-
"start": {
|
|
1148
|
-
"description": "Start time (ISO 8601)",
|
|
1149
|
-
"name": "start",
|
|
1150
|
-
"hasDynamicHelp": false,
|
|
1151
|
-
"multiple": false,
|
|
1152
|
-
"type": "option"
|
|
1153
|
-
},
|
|
1154
|
-
"stream": {
|
|
1155
|
-
"char": "s",
|
|
1156
|
-
"description": "Stream name(s), can be specified multiple times",
|
|
1157
|
-
"name": "stream",
|
|
1158
|
-
"required": true,
|
|
1159
|
-
"hasDynamicHelp": false,
|
|
1160
|
-
"multiple": true,
|
|
1161
|
-
"type": "option"
|
|
1162
|
-
},
|
|
1163
|
-
"type": {
|
|
1164
|
-
"description": "Filter by stream type",
|
|
1165
|
-
"name": "type",
|
|
1166
|
-
"hasDynamicHelp": false,
|
|
1167
|
-
"multiple": false,
|
|
1168
|
-
"type": "option"
|
|
1169
937
|
}
|
|
1170
938
|
},
|
|
1171
939
|
"hasDynamicHelp": false,
|
|
1172
940
|
"hiddenAliases": [],
|
|
1173
|
-
"id": "
|
|
941
|
+
"id": "devices:get",
|
|
1174
942
|
"pluginAlias": "@formant/formant-cli",
|
|
1175
943
|
"pluginName": "@formant/formant-cli",
|
|
1176
944
|
"pluginType": "core",
|
|
1177
945
|
"strict": true,
|
|
1178
|
-
"summary": "
|
|
946
|
+
"summary": "Get a device by ID",
|
|
1179
947
|
"enableJsonFlag": true,
|
|
1180
948
|
"isESM": true,
|
|
1181
949
|
"relativePath": [
|
|
1182
950
|
"dist",
|
|
1183
951
|
"commands",
|
|
1184
|
-
"
|
|
1185
|
-
"
|
|
952
|
+
"devices",
|
|
953
|
+
"get.js"
|
|
1186
954
|
]
|
|
1187
955
|
},
|
|
1188
|
-
"
|
|
956
|
+
"devices:last-seen": {
|
|
1189
957
|
"aliases": [],
|
|
1190
|
-
"args": {
|
|
1191
|
-
|
|
958
|
+
"args": {
|
|
959
|
+
"id": {
|
|
960
|
+
"description": "Device ID (UUID)",
|
|
961
|
+
"name": "id",
|
|
962
|
+
"required": true
|
|
963
|
+
}
|
|
964
|
+
},
|
|
965
|
+
"description": "Get when a device was last seen online.\n\nShows the most recent timestamp when the device was detected as online.",
|
|
1192
966
|
"examples": [
|
|
1193
|
-
"<%= config.bin %>
|
|
1194
|
-
"<%= config.bin %>
|
|
1195
|
-
"<%= config.bin %> query latest-values --device <id> --all-streams",
|
|
1196
|
-
"<%= config.bin %> query latest-values --device <id> --all-streams --json"
|
|
967
|
+
"<%= config.bin %> devices last-seen <device-id>",
|
|
968
|
+
"<%= config.bin %> devices last-seen <device-id> --json"
|
|
1197
969
|
],
|
|
1198
970
|
"flags": {
|
|
1199
971
|
"json": {
|
|
@@ -1222,61 +994,35 @@
|
|
|
1222
994
|
"name": "stage",
|
|
1223
995
|
"allowNo": false,
|
|
1224
996
|
"type": "boolean"
|
|
1225
|
-
},
|
|
1226
|
-
"all-streams": {
|
|
1227
|
-
"description": "Query all configured streams for the device (requires single --device)",
|
|
1228
|
-
"name": "all-streams",
|
|
1229
|
-
"allowNo": false,
|
|
1230
|
-
"type": "boolean"
|
|
1231
|
-
},
|
|
1232
|
-
"device": {
|
|
1233
|
-
"char": "d",
|
|
1234
|
-
"description": "Device ID (UUID)",
|
|
1235
|
-
"name": "device",
|
|
1236
|
-
"required": true,
|
|
1237
|
-
"hasDynamicHelp": false,
|
|
1238
|
-
"multiple": true,
|
|
1239
|
-
"type": "option"
|
|
1240
|
-
},
|
|
1241
|
-
"stream": {
|
|
1242
|
-
"char": "s",
|
|
1243
|
-
"description": "Stream name(s), can be specified multiple times",
|
|
1244
|
-
"name": "stream",
|
|
1245
|
-
"hasDynamicHelp": false,
|
|
1246
|
-
"multiple": true,
|
|
1247
|
-
"type": "option"
|
|
1248
997
|
}
|
|
1249
998
|
},
|
|
1250
999
|
"hasDynamicHelp": false,
|
|
1251
1000
|
"hiddenAliases": [],
|
|
1252
|
-
"id": "
|
|
1001
|
+
"id": "devices:last-seen",
|
|
1253
1002
|
"pluginAlias": "@formant/formant-cli",
|
|
1254
1003
|
"pluginName": "@formant/formant-cli",
|
|
1255
1004
|
"pluginType": "core",
|
|
1256
1005
|
"strict": true,
|
|
1257
|
-
"summary": "Get
|
|
1006
|
+
"summary": "Get device last seen timestamp",
|
|
1258
1007
|
"enableJsonFlag": true,
|
|
1259
1008
|
"isESM": true,
|
|
1260
1009
|
"relativePath": [
|
|
1261
1010
|
"dist",
|
|
1262
1011
|
"commands",
|
|
1263
|
-
"
|
|
1264
|
-
"
|
|
1012
|
+
"devices",
|
|
1013
|
+
"last-seen.js"
|
|
1265
1014
|
]
|
|
1266
1015
|
},
|
|
1267
|
-
"devices:
|
|
1016
|
+
"devices:list": {
|
|
1268
1017
|
"aliases": [],
|
|
1269
|
-
"args": {
|
|
1270
|
-
|
|
1271
|
-
"description": "Device ID (UUID)",
|
|
1272
|
-
"name": "id",
|
|
1273
|
-
"required": true
|
|
1274
|
-
}
|
|
1275
|
-
},
|
|
1276
|
-
"description": "Get the device configuration including stream definitions.\n\nShows the device's current configuration including telemetry streams, commands,\nand other settings.",
|
|
1018
|
+
"args": {},
|
|
1019
|
+
"description": "List robots and sensors in your fleet. Shows only online devices by default.\n\nUse --all to include offline devices.",
|
|
1277
1020
|
"examples": [
|
|
1278
|
-
"<%= config.bin %> devices
|
|
1279
|
-
"<%= config.bin %> devices
|
|
1021
|
+
"<%= config.bin %> devices list",
|
|
1022
|
+
"<%= config.bin %> devices list --all",
|
|
1023
|
+
"<%= config.bin %> devices list --all --limit 100",
|
|
1024
|
+
"<%= config.bin %> devices list --tag location=warehouse",
|
|
1025
|
+
"<%= config.bin %> devices list --name robot --dev --json"
|
|
1280
1026
|
],
|
|
1281
1027
|
"flags": {
|
|
1282
1028
|
"json": {
|
|
@@ -1305,38 +1051,75 @@
|
|
|
1305
1051
|
"name": "stage",
|
|
1306
1052
|
"allowNo": false,
|
|
1307
1053
|
"type": "boolean"
|
|
1054
|
+
},
|
|
1055
|
+
"all": {
|
|
1056
|
+
"char": "a",
|
|
1057
|
+
"description": "Show all devices (online and offline)",
|
|
1058
|
+
"name": "all",
|
|
1059
|
+
"allowNo": false,
|
|
1060
|
+
"type": "boolean"
|
|
1061
|
+
},
|
|
1062
|
+
"limit": {
|
|
1063
|
+
"char": "l",
|
|
1064
|
+
"description": "Maximum number of devices to return",
|
|
1065
|
+
"name": "limit",
|
|
1066
|
+
"default": 50,
|
|
1067
|
+
"hasDynamicHelp": false,
|
|
1068
|
+
"multiple": false,
|
|
1069
|
+
"type": "option"
|
|
1070
|
+
},
|
|
1071
|
+
"name": {
|
|
1072
|
+
"char": "n",
|
|
1073
|
+
"description": "Filter devices by name (search)",
|
|
1074
|
+
"name": "name",
|
|
1075
|
+
"hasDynamicHelp": false,
|
|
1076
|
+
"multiple": false,
|
|
1077
|
+
"type": "option"
|
|
1078
|
+
},
|
|
1079
|
+
"tag": {
|
|
1080
|
+
"char": "t",
|
|
1081
|
+
"description": "Filter by tag (key=value), can be specified multiple times",
|
|
1082
|
+
"name": "tag",
|
|
1083
|
+
"hasDynamicHelp": false,
|
|
1084
|
+
"multiple": true,
|
|
1085
|
+
"type": "option"
|
|
1308
1086
|
}
|
|
1309
1087
|
},
|
|
1310
1088
|
"hasDynamicHelp": false,
|
|
1311
1089
|
"hiddenAliases": [],
|
|
1312
|
-
"id": "devices:
|
|
1090
|
+
"id": "devices:list",
|
|
1313
1091
|
"pluginAlias": "@formant/formant-cli",
|
|
1314
1092
|
"pluginName": "@formant/formant-cli",
|
|
1315
1093
|
"pluginType": "core",
|
|
1316
1094
|
"strict": true,
|
|
1317
|
-
"summary": "
|
|
1095
|
+
"summary": "List robots and sensors in your fleet",
|
|
1318
1096
|
"enableJsonFlag": true,
|
|
1319
1097
|
"isESM": true,
|
|
1320
1098
|
"relativePath": [
|
|
1321
1099
|
"dist",
|
|
1322
1100
|
"commands",
|
|
1323
1101
|
"devices",
|
|
1324
|
-
"
|
|
1102
|
+
"list.js"
|
|
1325
1103
|
]
|
|
1326
1104
|
},
|
|
1327
|
-
"devices:
|
|
1105
|
+
"devices:rename": {
|
|
1328
1106
|
"aliases": [],
|
|
1329
1107
|
"args": {
|
|
1330
1108
|
"id": {
|
|
1331
1109
|
"description": "Device ID (UUID)",
|
|
1332
1110
|
"name": "id",
|
|
1333
1111
|
"required": true
|
|
1112
|
+
},
|
|
1113
|
+
"name": {
|
|
1114
|
+
"description": "New name for the device",
|
|
1115
|
+
"name": "name",
|
|
1116
|
+
"required": true
|
|
1334
1117
|
}
|
|
1335
1118
|
},
|
|
1336
|
-
"description": "
|
|
1119
|
+
"description": "Rename a device by updating its name.",
|
|
1337
1120
|
"examples": [
|
|
1338
|
-
"<%= config.bin %> devices
|
|
1339
|
-
"<%= config.bin %> devices
|
|
1121
|
+
"<%= config.bin %> devices rename <device-id> new-robot-name",
|
|
1122
|
+
"<%= config.bin %> devices rename <device-id> new-robot-name --json"
|
|
1340
1123
|
],
|
|
1341
1124
|
"flags": {
|
|
1342
1125
|
"json": {
|
|
@@ -1369,22 +1152,22 @@
|
|
|
1369
1152
|
},
|
|
1370
1153
|
"hasDynamicHelp": false,
|
|
1371
1154
|
"hiddenAliases": [],
|
|
1372
|
-
"id": "devices:
|
|
1155
|
+
"id": "devices:rename",
|
|
1373
1156
|
"pluginAlias": "@formant/formant-cli",
|
|
1374
1157
|
"pluginName": "@formant/formant-cli",
|
|
1375
1158
|
"pluginType": "core",
|
|
1376
1159
|
"strict": true,
|
|
1377
|
-
"summary": "
|
|
1160
|
+
"summary": "Rename a device",
|
|
1378
1161
|
"enableJsonFlag": true,
|
|
1379
1162
|
"isESM": true,
|
|
1380
1163
|
"relativePath": [
|
|
1381
1164
|
"dist",
|
|
1382
1165
|
"commands",
|
|
1383
1166
|
"devices",
|
|
1384
|
-
"
|
|
1167
|
+
"rename.js"
|
|
1385
1168
|
]
|
|
1386
1169
|
},
|
|
1387
|
-
"devices:
|
|
1170
|
+
"devices:streams": {
|
|
1388
1171
|
"aliases": [],
|
|
1389
1172
|
"args": {
|
|
1390
1173
|
"id": {
|
|
@@ -1393,10 +1176,10 @@
|
|
|
1393
1176
|
"required": true
|
|
1394
1177
|
}
|
|
1395
1178
|
},
|
|
1396
|
-
"description": "
|
|
1179
|
+
"description": "List telemetry streams configured on a device.\n\nShows a clean view of stream definitions parsed from the device configuration,\nincluding stream names, types, topics, and quality settings.",
|
|
1397
1180
|
"examples": [
|
|
1398
|
-
"<%= config.bin %> devices
|
|
1399
|
-
"<%= config.bin %> devices
|
|
1181
|
+
"<%= config.bin %> devices streams <device-id>",
|
|
1182
|
+
"<%= config.bin %> devices streams <device-id> --json"
|
|
1400
1183
|
],
|
|
1401
1184
|
"flags": {
|
|
1402
1185
|
"json": {
|
|
@@ -1429,31 +1212,35 @@
|
|
|
1429
1212
|
},
|
|
1430
1213
|
"hasDynamicHelp": false,
|
|
1431
1214
|
"hiddenAliases": [],
|
|
1432
|
-
"id": "devices:
|
|
1215
|
+
"id": "devices:streams",
|
|
1433
1216
|
"pluginAlias": "@formant/formant-cli",
|
|
1434
1217
|
"pluginName": "@formant/formant-cli",
|
|
1435
1218
|
"pluginType": "core",
|
|
1436
1219
|
"strict": true,
|
|
1437
|
-
"summary": "
|
|
1220
|
+
"summary": "List device streams",
|
|
1438
1221
|
"enableJsonFlag": true,
|
|
1439
1222
|
"isESM": true,
|
|
1440
1223
|
"relativePath": [
|
|
1441
1224
|
"dist",
|
|
1442
1225
|
"commands",
|
|
1443
1226
|
"devices",
|
|
1444
|
-
"
|
|
1227
|
+
"streams.js"
|
|
1445
1228
|
]
|
|
1446
1229
|
},
|
|
1447
|
-
"devices:
|
|
1230
|
+
"devices:tag": {
|
|
1448
1231
|
"aliases": [],
|
|
1449
|
-
"args": {
|
|
1450
|
-
|
|
1232
|
+
"args": {
|
|
1233
|
+
"id": {
|
|
1234
|
+
"description": "Device ID (UUID)",
|
|
1235
|
+
"name": "id",
|
|
1236
|
+
"required": true
|
|
1237
|
+
}
|
|
1238
|
+
},
|
|
1239
|
+
"description": "Add or update tags on a device.\n\nTags are key-value pairs. If a tag key already exists, its value will be updated.\nSpecify one or more tags with --tag key=value.",
|
|
1451
1240
|
"examples": [
|
|
1452
|
-
"<%= config.bin %> devices
|
|
1453
|
-
"<%= config.bin %> devices
|
|
1454
|
-
"<%= config.bin %> devices
|
|
1455
|
-
"<%= config.bin %> devices list --tag location=warehouse",
|
|
1456
|
-
"<%= config.bin %> devices list --name robot --dev --json"
|
|
1241
|
+
"<%= config.bin %> devices tag <device-id> --tag location=warehouse",
|
|
1242
|
+
"<%= config.bin %> devices tag <device-id> --tag env=prod --tag region=us-east",
|
|
1243
|
+
"<%= config.bin %> devices tag <device-id> --tag location=factory --json"
|
|
1457
1244
|
],
|
|
1458
1245
|
"flags": {
|
|
1459
1246
|
"json": {
|
|
@@ -1483,34 +1270,11 @@
|
|
|
1483
1270
|
"allowNo": false,
|
|
1484
1271
|
"type": "boolean"
|
|
1485
1272
|
},
|
|
1486
|
-
"all": {
|
|
1487
|
-
"char": "a",
|
|
1488
|
-
"description": "Show all devices (online and offline)",
|
|
1489
|
-
"name": "all",
|
|
1490
|
-
"allowNo": false,
|
|
1491
|
-
"type": "boolean"
|
|
1492
|
-
},
|
|
1493
|
-
"limit": {
|
|
1494
|
-
"char": "l",
|
|
1495
|
-
"description": "Maximum number of devices to return",
|
|
1496
|
-
"name": "limit",
|
|
1497
|
-
"default": 50,
|
|
1498
|
-
"hasDynamicHelp": false,
|
|
1499
|
-
"multiple": false,
|
|
1500
|
-
"type": "option"
|
|
1501
|
-
},
|
|
1502
|
-
"name": {
|
|
1503
|
-
"char": "n",
|
|
1504
|
-
"description": "Filter devices by name (search)",
|
|
1505
|
-
"name": "name",
|
|
1506
|
-
"hasDynamicHelp": false,
|
|
1507
|
-
"multiple": false,
|
|
1508
|
-
"type": "option"
|
|
1509
|
-
},
|
|
1510
1273
|
"tag": {
|
|
1511
1274
|
"char": "t",
|
|
1512
|
-
"description": "
|
|
1275
|
+
"description": "Tag to add or update (key=value), can be specified multiple times",
|
|
1513
1276
|
"name": "tag",
|
|
1277
|
+
"required": true,
|
|
1514
1278
|
"hasDynamicHelp": false,
|
|
1515
1279
|
"multiple": true,
|
|
1516
1280
|
"type": "option"
|
|
@@ -1518,22 +1282,22 @@
|
|
|
1518
1282
|
},
|
|
1519
1283
|
"hasDynamicHelp": false,
|
|
1520
1284
|
"hiddenAliases": [],
|
|
1521
|
-
"id": "devices:
|
|
1285
|
+
"id": "devices:tag",
|
|
1522
1286
|
"pluginAlias": "@formant/formant-cli",
|
|
1523
1287
|
"pluginName": "@formant/formant-cli",
|
|
1524
1288
|
"pluginType": "core",
|
|
1525
1289
|
"strict": true,
|
|
1526
|
-
"summary": "
|
|
1290
|
+
"summary": "Add or update tags on a device",
|
|
1527
1291
|
"enableJsonFlag": true,
|
|
1528
1292
|
"isESM": true,
|
|
1529
1293
|
"relativePath": [
|
|
1530
1294
|
"dist",
|
|
1531
1295
|
"commands",
|
|
1532
1296
|
"devices",
|
|
1533
|
-
"
|
|
1297
|
+
"tag.js"
|
|
1534
1298
|
]
|
|
1535
1299
|
},
|
|
1536
|
-
"devices:
|
|
1300
|
+
"devices:untag": {
|
|
1537
1301
|
"aliases": [],
|
|
1538
1302
|
"args": {
|
|
1539
1303
|
"id": {
|
|
@@ -1542,10 +1306,11 @@
|
|
|
1542
1306
|
"required": true
|
|
1543
1307
|
}
|
|
1544
1308
|
},
|
|
1545
|
-
"description": "
|
|
1309
|
+
"description": "Remove tags from a device.\n\nSpecify one or more tag keys to remove with --key.",
|
|
1546
1310
|
"examples": [
|
|
1547
|
-
"<%= config.bin %> devices
|
|
1548
|
-
"<%= config.bin %> devices
|
|
1311
|
+
"<%= config.bin %> devices untag <device-id> --key location",
|
|
1312
|
+
"<%= config.bin %> devices untag <device-id> --key env --key region",
|
|
1313
|
+
"<%= config.bin %> devices untag <device-id> --key location --json"
|
|
1549
1314
|
],
|
|
1550
1315
|
"flags": {
|
|
1551
1316
|
"json": {
|
|
@@ -1574,23 +1339,718 @@
|
|
|
1574
1339
|
"name": "stage",
|
|
1575
1340
|
"allowNo": false,
|
|
1576
1341
|
"type": "boolean"
|
|
1577
|
-
}
|
|
1578
|
-
|
|
1579
|
-
|
|
1580
|
-
|
|
1581
|
-
|
|
1342
|
+
},
|
|
1343
|
+
"key": {
|
|
1344
|
+
"char": "k",
|
|
1345
|
+
"description": "Tag key to remove, can be specified multiple times",
|
|
1346
|
+
"name": "key",
|
|
1347
|
+
"required": true,
|
|
1348
|
+
"hasDynamicHelp": false,
|
|
1349
|
+
"multiple": true,
|
|
1350
|
+
"type": "option"
|
|
1351
|
+
}
|
|
1352
|
+
},
|
|
1353
|
+
"hasDynamicHelp": false,
|
|
1354
|
+
"hiddenAliases": [],
|
|
1355
|
+
"id": "devices:untag",
|
|
1582
1356
|
"pluginAlias": "@formant/formant-cli",
|
|
1583
1357
|
"pluginName": "@formant/formant-cli",
|
|
1584
1358
|
"pluginType": "core",
|
|
1585
1359
|
"strict": true,
|
|
1586
|
-
"summary": "
|
|
1360
|
+
"summary": "Remove tags from a device",
|
|
1587
1361
|
"enableJsonFlag": true,
|
|
1588
1362
|
"isESM": true,
|
|
1589
1363
|
"relativePath": [
|
|
1590
1364
|
"dist",
|
|
1591
1365
|
"commands",
|
|
1592
1366
|
"devices",
|
|
1593
|
-
"
|
|
1367
|
+
"untag.js"
|
|
1368
|
+
]
|
|
1369
|
+
},
|
|
1370
|
+
"kv:get": {
|
|
1371
|
+
"aliases": [],
|
|
1372
|
+
"args": {
|
|
1373
|
+
"key": {
|
|
1374
|
+
"description": "Key to retrieve",
|
|
1375
|
+
"name": "key",
|
|
1376
|
+
"required": true
|
|
1377
|
+
}
|
|
1378
|
+
},
|
|
1379
|
+
"description": "Get a value from the key-value store.\n\nThe key-value store allows devices and applications to store metadata.",
|
|
1380
|
+
"examples": [
|
|
1381
|
+
"<%= config.bin %> kv get my-key",
|
|
1382
|
+
"<%= config.bin %> kv get my-key --json"
|
|
1383
|
+
],
|
|
1384
|
+
"flags": {
|
|
1385
|
+
"json": {
|
|
1386
|
+
"description": "Format output as json.",
|
|
1387
|
+
"helpGroup": "GLOBAL",
|
|
1388
|
+
"name": "json",
|
|
1389
|
+
"allowNo": false,
|
|
1390
|
+
"type": "boolean"
|
|
1391
|
+
},
|
|
1392
|
+
"dev": {
|
|
1393
|
+
"description": "Target the dev environment",
|
|
1394
|
+
"exclusive": [
|
|
1395
|
+
"stage"
|
|
1396
|
+
],
|
|
1397
|
+
"helpGroup": "GLOBAL",
|
|
1398
|
+
"name": "dev",
|
|
1399
|
+
"allowNo": false,
|
|
1400
|
+
"type": "boolean"
|
|
1401
|
+
},
|
|
1402
|
+
"stage": {
|
|
1403
|
+
"description": "Target the stage environment",
|
|
1404
|
+
"exclusive": [
|
|
1405
|
+
"dev"
|
|
1406
|
+
],
|
|
1407
|
+
"helpGroup": "GLOBAL",
|
|
1408
|
+
"name": "stage",
|
|
1409
|
+
"allowNo": false,
|
|
1410
|
+
"type": "boolean"
|
|
1411
|
+
}
|
|
1412
|
+
},
|
|
1413
|
+
"hasDynamicHelp": false,
|
|
1414
|
+
"hiddenAliases": [],
|
|
1415
|
+
"id": "kv:get",
|
|
1416
|
+
"pluginAlias": "@formant/formant-cli",
|
|
1417
|
+
"pluginName": "@formant/formant-cli",
|
|
1418
|
+
"pluginType": "core",
|
|
1419
|
+
"strict": true,
|
|
1420
|
+
"summary": "Get key-value",
|
|
1421
|
+
"enableJsonFlag": true,
|
|
1422
|
+
"isESM": true,
|
|
1423
|
+
"relativePath": [
|
|
1424
|
+
"dist",
|
|
1425
|
+
"commands",
|
|
1426
|
+
"kv",
|
|
1427
|
+
"get.js"
|
|
1428
|
+
]
|
|
1429
|
+
},
|
|
1430
|
+
"kv:list": {
|
|
1431
|
+
"aliases": [],
|
|
1432
|
+
"args": {},
|
|
1433
|
+
"description": "List all keys in the key-value store.\n\nShows all stored keys in the organization's key-value store. Use --prefix to filter\nkeys that start with a specific prefix, or --keys to query specific keys.",
|
|
1434
|
+
"examples": [
|
|
1435
|
+
"<%= config.bin %> kv list",
|
|
1436
|
+
"<%= config.bin %> kv list --prefix config",
|
|
1437
|
+
"<%= config.bin %> kv list --keys key1 --keys key2 --keys key3",
|
|
1438
|
+
"<%= config.bin %> kv list --json"
|
|
1439
|
+
],
|
|
1440
|
+
"flags": {
|
|
1441
|
+
"json": {
|
|
1442
|
+
"description": "Format output as json.",
|
|
1443
|
+
"helpGroup": "GLOBAL",
|
|
1444
|
+
"name": "json",
|
|
1445
|
+
"allowNo": false,
|
|
1446
|
+
"type": "boolean"
|
|
1447
|
+
},
|
|
1448
|
+
"dev": {
|
|
1449
|
+
"description": "Target the dev environment",
|
|
1450
|
+
"exclusive": [
|
|
1451
|
+
"stage"
|
|
1452
|
+
],
|
|
1453
|
+
"helpGroup": "GLOBAL",
|
|
1454
|
+
"name": "dev",
|
|
1455
|
+
"allowNo": false,
|
|
1456
|
+
"type": "boolean"
|
|
1457
|
+
},
|
|
1458
|
+
"stage": {
|
|
1459
|
+
"description": "Target the stage environment",
|
|
1460
|
+
"exclusive": [
|
|
1461
|
+
"dev"
|
|
1462
|
+
],
|
|
1463
|
+
"helpGroup": "GLOBAL",
|
|
1464
|
+
"name": "stage",
|
|
1465
|
+
"allowNo": false,
|
|
1466
|
+
"type": "boolean"
|
|
1467
|
+
},
|
|
1468
|
+
"keys": {
|
|
1469
|
+
"char": "k",
|
|
1470
|
+
"description": "Specific keys to query (can be specified multiple times)",
|
|
1471
|
+
"name": "keys",
|
|
1472
|
+
"hasDynamicHelp": false,
|
|
1473
|
+
"multiple": true,
|
|
1474
|
+
"type": "option"
|
|
1475
|
+
},
|
|
1476
|
+
"prefix": {
|
|
1477
|
+
"char": "p",
|
|
1478
|
+
"description": "Filter keys by prefix",
|
|
1479
|
+
"name": "prefix",
|
|
1480
|
+
"hasDynamicHelp": false,
|
|
1481
|
+
"multiple": false,
|
|
1482
|
+
"type": "option"
|
|
1483
|
+
}
|
|
1484
|
+
},
|
|
1485
|
+
"hasDynamicHelp": false,
|
|
1486
|
+
"hiddenAliases": [],
|
|
1487
|
+
"id": "kv:list",
|
|
1488
|
+
"pluginAlias": "@formant/formant-cli",
|
|
1489
|
+
"pluginName": "@formant/formant-cli",
|
|
1490
|
+
"pluginType": "core",
|
|
1491
|
+
"strict": true,
|
|
1492
|
+
"summary": "List key-value keys",
|
|
1493
|
+
"enableJsonFlag": true,
|
|
1494
|
+
"isESM": true,
|
|
1495
|
+
"relativePath": [
|
|
1496
|
+
"dist",
|
|
1497
|
+
"commands",
|
|
1498
|
+
"kv",
|
|
1499
|
+
"list.js"
|
|
1500
|
+
]
|
|
1501
|
+
},
|
|
1502
|
+
"kv:set": {
|
|
1503
|
+
"aliases": [],
|
|
1504
|
+
"args": {
|
|
1505
|
+
"key": {
|
|
1506
|
+
"description": "Key to set",
|
|
1507
|
+
"name": "key",
|
|
1508
|
+
"required": true
|
|
1509
|
+
},
|
|
1510
|
+
"value": {
|
|
1511
|
+
"description": "Value to store (JSON string)",
|
|
1512
|
+
"name": "value",
|
|
1513
|
+
"required": true
|
|
1514
|
+
}
|
|
1515
|
+
},
|
|
1516
|
+
"description": "Set a value in the key-value store.\n\nStores a value associated with a key. The value should be a JSON string.",
|
|
1517
|
+
"examples": [
|
|
1518
|
+
"<%= config.bin %> kv set my-key '{\"data\": \"value\"}'",
|
|
1519
|
+
"<%= config.bin %> kv set config '{\"setting\": true}'"
|
|
1520
|
+
],
|
|
1521
|
+
"flags": {
|
|
1522
|
+
"json": {
|
|
1523
|
+
"description": "Format output as json.",
|
|
1524
|
+
"helpGroup": "GLOBAL",
|
|
1525
|
+
"name": "json",
|
|
1526
|
+
"allowNo": false,
|
|
1527
|
+
"type": "boolean"
|
|
1528
|
+
},
|
|
1529
|
+
"dev": {
|
|
1530
|
+
"description": "Target the dev environment",
|
|
1531
|
+
"exclusive": [
|
|
1532
|
+
"stage"
|
|
1533
|
+
],
|
|
1534
|
+
"helpGroup": "GLOBAL",
|
|
1535
|
+
"name": "dev",
|
|
1536
|
+
"allowNo": false,
|
|
1537
|
+
"type": "boolean"
|
|
1538
|
+
},
|
|
1539
|
+
"stage": {
|
|
1540
|
+
"description": "Target the stage environment",
|
|
1541
|
+
"exclusive": [
|
|
1542
|
+
"dev"
|
|
1543
|
+
],
|
|
1544
|
+
"helpGroup": "GLOBAL",
|
|
1545
|
+
"name": "stage",
|
|
1546
|
+
"allowNo": false,
|
|
1547
|
+
"type": "boolean"
|
|
1548
|
+
}
|
|
1549
|
+
},
|
|
1550
|
+
"hasDynamicHelp": false,
|
|
1551
|
+
"hiddenAliases": [],
|
|
1552
|
+
"id": "kv:set",
|
|
1553
|
+
"pluginAlias": "@formant/formant-cli",
|
|
1554
|
+
"pluginName": "@formant/formant-cli",
|
|
1555
|
+
"pluginType": "core",
|
|
1556
|
+
"strict": true,
|
|
1557
|
+
"summary": "Set key-value",
|
|
1558
|
+
"enableJsonFlag": true,
|
|
1559
|
+
"isESM": true,
|
|
1560
|
+
"relativePath": [
|
|
1561
|
+
"dist",
|
|
1562
|
+
"commands",
|
|
1563
|
+
"kv",
|
|
1564
|
+
"set.js"
|
|
1565
|
+
]
|
|
1566
|
+
},
|
|
1567
|
+
"org:get": {
|
|
1568
|
+
"aliases": [],
|
|
1569
|
+
"args": {},
|
|
1570
|
+
"description": "Get information about your organization.\n\nDisplays the organization associated with your authenticated account.\nNo ID is needed — it is resolved automatically from your credentials.",
|
|
1571
|
+
"examples": [
|
|
1572
|
+
"<%= config.bin %> org get",
|
|
1573
|
+
"<%= config.bin %> org get --json"
|
|
1574
|
+
],
|
|
1575
|
+
"flags": {
|
|
1576
|
+
"json": {
|
|
1577
|
+
"description": "Format output as json.",
|
|
1578
|
+
"helpGroup": "GLOBAL",
|
|
1579
|
+
"name": "json",
|
|
1580
|
+
"allowNo": false,
|
|
1581
|
+
"type": "boolean"
|
|
1582
|
+
},
|
|
1583
|
+
"dev": {
|
|
1584
|
+
"description": "Target the dev environment",
|
|
1585
|
+
"exclusive": [
|
|
1586
|
+
"stage"
|
|
1587
|
+
],
|
|
1588
|
+
"helpGroup": "GLOBAL",
|
|
1589
|
+
"name": "dev",
|
|
1590
|
+
"allowNo": false,
|
|
1591
|
+
"type": "boolean"
|
|
1592
|
+
},
|
|
1593
|
+
"stage": {
|
|
1594
|
+
"description": "Target the stage environment",
|
|
1595
|
+
"exclusive": [
|
|
1596
|
+
"dev"
|
|
1597
|
+
],
|
|
1598
|
+
"helpGroup": "GLOBAL",
|
|
1599
|
+
"name": "stage",
|
|
1600
|
+
"allowNo": false,
|
|
1601
|
+
"type": "boolean"
|
|
1602
|
+
}
|
|
1603
|
+
},
|
|
1604
|
+
"hasDynamicHelp": false,
|
|
1605
|
+
"hiddenAliases": [],
|
|
1606
|
+
"id": "org:get",
|
|
1607
|
+
"pluginAlias": "@formant/formant-cli",
|
|
1608
|
+
"pluginName": "@formant/formant-cli",
|
|
1609
|
+
"pluginType": "core",
|
|
1610
|
+
"strict": true,
|
|
1611
|
+
"summary": "Get your organization",
|
|
1612
|
+
"enableJsonFlag": true,
|
|
1613
|
+
"isESM": true,
|
|
1614
|
+
"relativePath": [
|
|
1615
|
+
"dist",
|
|
1616
|
+
"commands",
|
|
1617
|
+
"org",
|
|
1618
|
+
"get.js"
|
|
1619
|
+
]
|
|
1620
|
+
},
|
|
1621
|
+
"org:update": {
|
|
1622
|
+
"aliases": [],
|
|
1623
|
+
"args": {},
|
|
1624
|
+
"description": "Update your organization's details.\n\nAt least one of --name or --description must be provided.",
|
|
1625
|
+
"examples": [
|
|
1626
|
+
"<%= config.bin %> org update --name \"My Fleet\"",
|
|
1627
|
+
"<%= config.bin %> org update --description \"Production robot fleet\"",
|
|
1628
|
+
"<%= config.bin %> org update --name \"My Fleet\" --description \"Production robot fleet\"",
|
|
1629
|
+
"<%= config.bin %> org update --name \"My Fleet\" --json"
|
|
1630
|
+
],
|
|
1631
|
+
"flags": {
|
|
1632
|
+
"json": {
|
|
1633
|
+
"description": "Format output as json.",
|
|
1634
|
+
"helpGroup": "GLOBAL",
|
|
1635
|
+
"name": "json",
|
|
1636
|
+
"allowNo": false,
|
|
1637
|
+
"type": "boolean"
|
|
1638
|
+
},
|
|
1639
|
+
"dev": {
|
|
1640
|
+
"description": "Target the dev environment",
|
|
1641
|
+
"exclusive": [
|
|
1642
|
+
"stage"
|
|
1643
|
+
],
|
|
1644
|
+
"helpGroup": "GLOBAL",
|
|
1645
|
+
"name": "dev",
|
|
1646
|
+
"allowNo": false,
|
|
1647
|
+
"type": "boolean"
|
|
1648
|
+
},
|
|
1649
|
+
"stage": {
|
|
1650
|
+
"description": "Target the stage environment",
|
|
1651
|
+
"exclusive": [
|
|
1652
|
+
"dev"
|
|
1653
|
+
],
|
|
1654
|
+
"helpGroup": "GLOBAL",
|
|
1655
|
+
"name": "stage",
|
|
1656
|
+
"allowNo": false,
|
|
1657
|
+
"type": "boolean"
|
|
1658
|
+
},
|
|
1659
|
+
"description": {
|
|
1660
|
+
"char": "d",
|
|
1661
|
+
"description": "New description for the organization",
|
|
1662
|
+
"name": "description",
|
|
1663
|
+
"hasDynamicHelp": false,
|
|
1664
|
+
"multiple": false,
|
|
1665
|
+
"type": "option"
|
|
1666
|
+
},
|
|
1667
|
+
"name": {
|
|
1668
|
+
"char": "n",
|
|
1669
|
+
"description": "New name for the organization",
|
|
1670
|
+
"name": "name",
|
|
1671
|
+
"hasDynamicHelp": false,
|
|
1672
|
+
"multiple": false,
|
|
1673
|
+
"type": "option"
|
|
1674
|
+
}
|
|
1675
|
+
},
|
|
1676
|
+
"hasDynamicHelp": false,
|
|
1677
|
+
"hiddenAliases": [],
|
|
1678
|
+
"id": "org:update",
|
|
1679
|
+
"pluginAlias": "@formant/formant-cli",
|
|
1680
|
+
"pluginName": "@formant/formant-cli",
|
|
1681
|
+
"pluginType": "core",
|
|
1682
|
+
"strict": true,
|
|
1683
|
+
"summary": "Update your organization",
|
|
1684
|
+
"enableJsonFlag": true,
|
|
1685
|
+
"isESM": true,
|
|
1686
|
+
"relativePath": [
|
|
1687
|
+
"dist",
|
|
1688
|
+
"commands",
|
|
1689
|
+
"org",
|
|
1690
|
+
"update.js"
|
|
1691
|
+
]
|
|
1692
|
+
},
|
|
1693
|
+
"events:get": {
|
|
1694
|
+
"aliases": [],
|
|
1695
|
+
"args": {
|
|
1696
|
+
"id": {
|
|
1697
|
+
"description": "Event ID (UUID)",
|
|
1698
|
+
"name": "id",
|
|
1699
|
+
"required": true
|
|
1700
|
+
}
|
|
1701
|
+
},
|
|
1702
|
+
"description": "Get detailed information about a specific event by its ID.",
|
|
1703
|
+
"examples": [
|
|
1704
|
+
"<%= config.bin %> events get <event-id>",
|
|
1705
|
+
"<%= config.bin %> events get <event-id> --json"
|
|
1706
|
+
],
|
|
1707
|
+
"flags": {
|
|
1708
|
+
"json": {
|
|
1709
|
+
"description": "Format output as json.",
|
|
1710
|
+
"helpGroup": "GLOBAL",
|
|
1711
|
+
"name": "json",
|
|
1712
|
+
"allowNo": false,
|
|
1713
|
+
"type": "boolean"
|
|
1714
|
+
},
|
|
1715
|
+
"dev": {
|
|
1716
|
+
"description": "Target the dev environment",
|
|
1717
|
+
"exclusive": [
|
|
1718
|
+
"stage"
|
|
1719
|
+
],
|
|
1720
|
+
"helpGroup": "GLOBAL",
|
|
1721
|
+
"name": "dev",
|
|
1722
|
+
"allowNo": false,
|
|
1723
|
+
"type": "boolean"
|
|
1724
|
+
},
|
|
1725
|
+
"stage": {
|
|
1726
|
+
"description": "Target the stage environment",
|
|
1727
|
+
"exclusive": [
|
|
1728
|
+
"dev"
|
|
1729
|
+
],
|
|
1730
|
+
"helpGroup": "GLOBAL",
|
|
1731
|
+
"name": "stage",
|
|
1732
|
+
"allowNo": false,
|
|
1733
|
+
"type": "boolean"
|
|
1734
|
+
}
|
|
1735
|
+
},
|
|
1736
|
+
"hasDynamicHelp": false,
|
|
1737
|
+
"hiddenAliases": [],
|
|
1738
|
+
"id": "events:get",
|
|
1739
|
+
"pluginAlias": "@formant/formant-cli",
|
|
1740
|
+
"pluginName": "@formant/formant-cli",
|
|
1741
|
+
"pluginType": "core",
|
|
1742
|
+
"strict": true,
|
|
1743
|
+
"summary": "Get an event by ID",
|
|
1744
|
+
"enableJsonFlag": true,
|
|
1745
|
+
"isESM": true,
|
|
1746
|
+
"relativePath": [
|
|
1747
|
+
"dist",
|
|
1748
|
+
"commands",
|
|
1749
|
+
"events",
|
|
1750
|
+
"get.js"
|
|
1751
|
+
]
|
|
1752
|
+
},
|
|
1753
|
+
"events:list": {
|
|
1754
|
+
"aliases": [],
|
|
1755
|
+
"args": {},
|
|
1756
|
+
"description": "View important events emitted by devices with optional filters.\n\nEvents are significant occurrences from robots and sensors (e.g., device online/offline,\nerrors, state changes, commands). They can trigger signals for investigation.\n\nEvent types include: triggered-event, datapoint-event, device-online, device-offline,\nintervention-request, intervention-response, teleop-session-record, command-request,\ncommand-response, custom, comment, system, annotation, task-summary, stateful.\n\nSeverities: info, warning, error, critical.",
|
|
1757
|
+
"examples": [
|
|
1758
|
+
"<%= config.bin %> events list",
|
|
1759
|
+
"<%= config.bin %> events list --device <id> --severity critical",
|
|
1760
|
+
"<%= config.bin %> events list --type device-offline --start 2026-01-01 --end 2026-01-02",
|
|
1761
|
+
"<%= config.bin %> events list --limit 100 --json"
|
|
1762
|
+
],
|
|
1763
|
+
"flags": {
|
|
1764
|
+
"json": {
|
|
1765
|
+
"description": "Format output as json.",
|
|
1766
|
+
"helpGroup": "GLOBAL",
|
|
1767
|
+
"name": "json",
|
|
1768
|
+
"allowNo": false,
|
|
1769
|
+
"type": "boolean"
|
|
1770
|
+
},
|
|
1771
|
+
"dev": {
|
|
1772
|
+
"description": "Target the dev environment",
|
|
1773
|
+
"exclusive": [
|
|
1774
|
+
"stage"
|
|
1775
|
+
],
|
|
1776
|
+
"helpGroup": "GLOBAL",
|
|
1777
|
+
"name": "dev",
|
|
1778
|
+
"allowNo": false,
|
|
1779
|
+
"type": "boolean"
|
|
1780
|
+
},
|
|
1781
|
+
"stage": {
|
|
1782
|
+
"description": "Target the stage environment",
|
|
1783
|
+
"exclusive": [
|
|
1784
|
+
"dev"
|
|
1785
|
+
],
|
|
1786
|
+
"helpGroup": "GLOBAL",
|
|
1787
|
+
"name": "stage",
|
|
1788
|
+
"allowNo": false,
|
|
1789
|
+
"type": "boolean"
|
|
1790
|
+
},
|
|
1791
|
+
"device": {
|
|
1792
|
+
"char": "d",
|
|
1793
|
+
"description": "Filter by device ID",
|
|
1794
|
+
"name": "device",
|
|
1795
|
+
"hasDynamicHelp": false,
|
|
1796
|
+
"multiple": false,
|
|
1797
|
+
"type": "option"
|
|
1798
|
+
},
|
|
1799
|
+
"end": {
|
|
1800
|
+
"description": "End time (ISO 8601)",
|
|
1801
|
+
"name": "end",
|
|
1802
|
+
"hasDynamicHelp": false,
|
|
1803
|
+
"multiple": false,
|
|
1804
|
+
"type": "option"
|
|
1805
|
+
},
|
|
1806
|
+
"limit": {
|
|
1807
|
+
"char": "l",
|
|
1808
|
+
"description": "Maximum number of events to return",
|
|
1809
|
+
"name": "limit",
|
|
1810
|
+
"default": 25,
|
|
1811
|
+
"hasDynamicHelp": false,
|
|
1812
|
+
"multiple": false,
|
|
1813
|
+
"type": "option"
|
|
1814
|
+
},
|
|
1815
|
+
"severity": {
|
|
1816
|
+
"description": "Filter by severity",
|
|
1817
|
+
"name": "severity",
|
|
1818
|
+
"hasDynamicHelp": false,
|
|
1819
|
+
"multiple": false,
|
|
1820
|
+
"options": [
|
|
1821
|
+
"info",
|
|
1822
|
+
"warning",
|
|
1823
|
+
"error",
|
|
1824
|
+
"critical"
|
|
1825
|
+
],
|
|
1826
|
+
"type": "option"
|
|
1827
|
+
},
|
|
1828
|
+
"start": {
|
|
1829
|
+
"description": "Start time (ISO 8601)",
|
|
1830
|
+
"name": "start",
|
|
1831
|
+
"hasDynamicHelp": false,
|
|
1832
|
+
"multiple": false,
|
|
1833
|
+
"type": "option"
|
|
1834
|
+
},
|
|
1835
|
+
"type": {
|
|
1836
|
+
"description": "Filter by event type",
|
|
1837
|
+
"name": "type",
|
|
1838
|
+
"hasDynamicHelp": false,
|
|
1839
|
+
"multiple": false,
|
|
1840
|
+
"type": "option"
|
|
1841
|
+
}
|
|
1842
|
+
},
|
|
1843
|
+
"hasDynamicHelp": false,
|
|
1844
|
+
"hiddenAliases": [],
|
|
1845
|
+
"id": "events:list",
|
|
1846
|
+
"pluginAlias": "@formant/formant-cli",
|
|
1847
|
+
"pluginName": "@formant/formant-cli",
|
|
1848
|
+
"pluginType": "core",
|
|
1849
|
+
"strict": true,
|
|
1850
|
+
"summary": "View events emitted by devices",
|
|
1851
|
+
"enableJsonFlag": true,
|
|
1852
|
+
"isESM": true,
|
|
1853
|
+
"relativePath": [
|
|
1854
|
+
"dist",
|
|
1855
|
+
"commands",
|
|
1856
|
+
"events",
|
|
1857
|
+
"list.js"
|
|
1858
|
+
]
|
|
1859
|
+
},
|
|
1860
|
+
"query": {
|
|
1861
|
+
"aliases": [],
|
|
1862
|
+
"args": {},
|
|
1863
|
+
"description": "Query telemetry stream data for a device over a time range.\n\nReturns time-series datapoints for the specified stream(s). Supports aggregation\nfor downsampling large datasets, and --latest to get only the most recent value.\n\nStream types: numeric, text, image, video, location, json, bitset, battery, health,\n\"numeric set\", \"point cloud\", localization, \"transform tree\", file.\n\nAggregate levels: second, 5 seconds, 30 seconds, minute, 5 minutes, 30 minutes,\nhour, 4 hours, 12 hours, day, week, month, year.",
|
|
1864
|
+
"examples": [
|
|
1865
|
+
"<%= config.bin %> query --device <id> --stream battery_level --start 2026-01-01 --end 2026-01-02",
|
|
1866
|
+
"<%= config.bin %> query --device <id> --stream speed --aggregate hour --start 2026-01-01 --end 2026-02-01",
|
|
1867
|
+
"<%= config.bin %> query --device <id> --stream battery_level --latest",
|
|
1868
|
+
"<%= config.bin %> query --device <id> --stream temperature --type numeric --json"
|
|
1869
|
+
],
|
|
1870
|
+
"flags": {
|
|
1871
|
+
"json": {
|
|
1872
|
+
"description": "Format output as json.",
|
|
1873
|
+
"helpGroup": "GLOBAL",
|
|
1874
|
+
"name": "json",
|
|
1875
|
+
"allowNo": false,
|
|
1876
|
+
"type": "boolean"
|
|
1877
|
+
},
|
|
1878
|
+
"dev": {
|
|
1879
|
+
"description": "Target the dev environment",
|
|
1880
|
+
"exclusive": [
|
|
1881
|
+
"stage"
|
|
1882
|
+
],
|
|
1883
|
+
"helpGroup": "GLOBAL",
|
|
1884
|
+
"name": "dev",
|
|
1885
|
+
"allowNo": false,
|
|
1886
|
+
"type": "boolean"
|
|
1887
|
+
},
|
|
1888
|
+
"stage": {
|
|
1889
|
+
"description": "Target the stage environment",
|
|
1890
|
+
"exclusive": [
|
|
1891
|
+
"dev"
|
|
1892
|
+
],
|
|
1893
|
+
"helpGroup": "GLOBAL",
|
|
1894
|
+
"name": "stage",
|
|
1895
|
+
"allowNo": false,
|
|
1896
|
+
"type": "boolean"
|
|
1897
|
+
},
|
|
1898
|
+
"aggregate": {
|
|
1899
|
+
"char": "a",
|
|
1900
|
+
"description": "Aggregation level for downsampling",
|
|
1901
|
+
"name": "aggregate",
|
|
1902
|
+
"hasDynamicHelp": false,
|
|
1903
|
+
"multiple": false,
|
|
1904
|
+
"type": "option"
|
|
1905
|
+
},
|
|
1906
|
+
"device": {
|
|
1907
|
+
"char": "d",
|
|
1908
|
+
"description": "Device ID (UUID)",
|
|
1909
|
+
"name": "device",
|
|
1910
|
+
"required": true,
|
|
1911
|
+
"hasDynamicHelp": false,
|
|
1912
|
+
"multiple": false,
|
|
1913
|
+
"type": "option"
|
|
1914
|
+
},
|
|
1915
|
+
"end": {
|
|
1916
|
+
"description": "End time (ISO 8601)",
|
|
1917
|
+
"name": "end",
|
|
1918
|
+
"hasDynamicHelp": false,
|
|
1919
|
+
"multiple": false,
|
|
1920
|
+
"type": "option"
|
|
1921
|
+
},
|
|
1922
|
+
"latest": {
|
|
1923
|
+
"description": "Only return the most recent value per stream",
|
|
1924
|
+
"name": "latest",
|
|
1925
|
+
"allowNo": false,
|
|
1926
|
+
"type": "boolean"
|
|
1927
|
+
},
|
|
1928
|
+
"limit": {
|
|
1929
|
+
"char": "l",
|
|
1930
|
+
"description": "Maximum number of datapoints",
|
|
1931
|
+
"name": "limit",
|
|
1932
|
+
"hasDynamicHelp": false,
|
|
1933
|
+
"multiple": false,
|
|
1934
|
+
"type": "option"
|
|
1935
|
+
},
|
|
1936
|
+
"start": {
|
|
1937
|
+
"description": "Start time (ISO 8601)",
|
|
1938
|
+
"name": "start",
|
|
1939
|
+
"hasDynamicHelp": false,
|
|
1940
|
+
"multiple": false,
|
|
1941
|
+
"type": "option"
|
|
1942
|
+
},
|
|
1943
|
+
"stream": {
|
|
1944
|
+
"char": "s",
|
|
1945
|
+
"description": "Stream name(s), can be specified multiple times",
|
|
1946
|
+
"name": "stream",
|
|
1947
|
+
"required": true,
|
|
1948
|
+
"hasDynamicHelp": false,
|
|
1949
|
+
"multiple": true,
|
|
1950
|
+
"type": "option"
|
|
1951
|
+
},
|
|
1952
|
+
"type": {
|
|
1953
|
+
"description": "Filter by stream type",
|
|
1954
|
+
"name": "type",
|
|
1955
|
+
"hasDynamicHelp": false,
|
|
1956
|
+
"multiple": false,
|
|
1957
|
+
"type": "option"
|
|
1958
|
+
}
|
|
1959
|
+
},
|
|
1960
|
+
"hasDynamicHelp": false,
|
|
1961
|
+
"hiddenAliases": [],
|
|
1962
|
+
"id": "query",
|
|
1963
|
+
"pluginAlias": "@formant/formant-cli",
|
|
1964
|
+
"pluginName": "@formant/formant-cli",
|
|
1965
|
+
"pluginType": "core",
|
|
1966
|
+
"strict": true,
|
|
1967
|
+
"summary": "Query telemetry stream data",
|
|
1968
|
+
"enableJsonFlag": true,
|
|
1969
|
+
"isESM": true,
|
|
1970
|
+
"relativePath": [
|
|
1971
|
+
"dist",
|
|
1972
|
+
"commands",
|
|
1973
|
+
"query",
|
|
1974
|
+
"index.js"
|
|
1975
|
+
]
|
|
1976
|
+
},
|
|
1977
|
+
"query:latest-values": {
|
|
1978
|
+
"aliases": [],
|
|
1979
|
+
"args": {},
|
|
1980
|
+
"description": "Get the latest values for streams across devices.\n\nReturns the most recent value for specified streams without needing to specify\na time range. Useful for checking current sensor readings.\n\nUse --all-streams with a single device to automatically discover and query all\nconfigured streams from the device configuration.",
|
|
1981
|
+
"examples": [
|
|
1982
|
+
"<%= config.bin %> query latest-values --device <id> --stream battery_level",
|
|
1983
|
+
"<%= config.bin %> query latest-values --device <id> --stream temperature --stream humidity",
|
|
1984
|
+
"<%= config.bin %> query latest-values --device <id> --all-streams",
|
|
1985
|
+
"<%= config.bin %> query latest-values --device <id> --all-streams --json"
|
|
1986
|
+
],
|
|
1987
|
+
"flags": {
|
|
1988
|
+
"json": {
|
|
1989
|
+
"description": "Format output as json.",
|
|
1990
|
+
"helpGroup": "GLOBAL",
|
|
1991
|
+
"name": "json",
|
|
1992
|
+
"allowNo": false,
|
|
1993
|
+
"type": "boolean"
|
|
1994
|
+
},
|
|
1995
|
+
"dev": {
|
|
1996
|
+
"description": "Target the dev environment",
|
|
1997
|
+
"exclusive": [
|
|
1998
|
+
"stage"
|
|
1999
|
+
],
|
|
2000
|
+
"helpGroup": "GLOBAL",
|
|
2001
|
+
"name": "dev",
|
|
2002
|
+
"allowNo": false,
|
|
2003
|
+
"type": "boolean"
|
|
2004
|
+
},
|
|
2005
|
+
"stage": {
|
|
2006
|
+
"description": "Target the stage environment",
|
|
2007
|
+
"exclusive": [
|
|
2008
|
+
"dev"
|
|
2009
|
+
],
|
|
2010
|
+
"helpGroup": "GLOBAL",
|
|
2011
|
+
"name": "stage",
|
|
2012
|
+
"allowNo": false,
|
|
2013
|
+
"type": "boolean"
|
|
2014
|
+
},
|
|
2015
|
+
"all-streams": {
|
|
2016
|
+
"description": "Query all configured streams for the device (requires single --device)",
|
|
2017
|
+
"name": "all-streams",
|
|
2018
|
+
"allowNo": false,
|
|
2019
|
+
"type": "boolean"
|
|
2020
|
+
},
|
|
2021
|
+
"device": {
|
|
2022
|
+
"char": "d",
|
|
2023
|
+
"description": "Device ID (UUID)",
|
|
2024
|
+
"name": "device",
|
|
2025
|
+
"required": true,
|
|
2026
|
+
"hasDynamicHelp": false,
|
|
2027
|
+
"multiple": true,
|
|
2028
|
+
"type": "option"
|
|
2029
|
+
},
|
|
2030
|
+
"stream": {
|
|
2031
|
+
"char": "s",
|
|
2032
|
+
"description": "Stream name(s), can be specified multiple times",
|
|
2033
|
+
"name": "stream",
|
|
2034
|
+
"hasDynamicHelp": false,
|
|
2035
|
+
"multiple": true,
|
|
2036
|
+
"type": "option"
|
|
2037
|
+
}
|
|
2038
|
+
},
|
|
2039
|
+
"hasDynamicHelp": false,
|
|
2040
|
+
"hiddenAliases": [],
|
|
2041
|
+
"id": "query:latest-values",
|
|
2042
|
+
"pluginAlias": "@formant/formant-cli",
|
|
2043
|
+
"pluginName": "@formant/formant-cli",
|
|
2044
|
+
"pluginType": "core",
|
|
2045
|
+
"strict": true,
|
|
2046
|
+
"summary": "Get latest stream values",
|
|
2047
|
+
"enableJsonFlag": true,
|
|
2048
|
+
"isESM": true,
|
|
2049
|
+
"relativePath": [
|
|
2050
|
+
"dist",
|
|
2051
|
+
"commands",
|
|
2052
|
+
"query",
|
|
2053
|
+
"latest-values.js"
|
|
1594
2054
|
]
|
|
1595
2055
|
},
|
|
1596
2056
|
"investigations:analytics": {
|
|
@@ -2679,5 +3139,5 @@
|
|
|
2679
3139
|
]
|
|
2680
3140
|
}
|
|
2681
3141
|
},
|
|
2682
|
-
"version": "0.
|
|
3142
|
+
"version": "0.2.0"
|
|
2683
3143
|
}
|