@dxos/cli 0.8.1 → 0.8.2-main.f081794
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/src/commands/debug/generate.js +2 -2
- package/dist/src/commands/debug/generate.js.map +1 -1
- package/dist/src/commands/function/upload.d.ts +7 -2
- package/dist/src/commands/function/upload.d.ts.map +1 -1
- package/dist/src/commands/function/upload.js +104 -97
- package/dist/src/commands/function/upload.js.map +1 -1
- package/dist/src/commands/function/watch.d.ts +29 -0
- package/dist/src/commands/function/watch.d.ts.map +1 -0
- package/dist/src/commands/function/watch.js +130 -0
- package/dist/src/commands/function/watch.js.map +1 -0
- package/dist/src/commands/halo/credential/list.d.ts +1 -0
- package/dist/src/commands/halo/credential/list.d.ts.map +1 -1
- package/dist/src/commands/halo/credential/list.js +25 -16
- package/dist/src/commands/halo/credential/list.js.map +1 -1
- package/dist/src/commands/space/list.d.ts +1 -0
- package/dist/src/commands/space/list.d.ts.map +1 -1
- package/dist/src/commands/space/list.js +7 -3
- package/dist/src/commands/space/list.js.map +1 -1
- package/dist/src/components/SpaceTable.d.ts.map +1 -1
- package/dist/src/components/SpaceTable.js +7 -4
- package/dist/src/components/SpaceTable.js.map +1 -1
- package/dist/src/help.d.ts.map +1 -1
- package/dist/src/help.js +6 -1
- package/dist/src/help.js.map +1 -1
- package/dist/src/util/function/bundle.d.ts +5 -0
- package/dist/src/util/function/bundle.d.ts.map +1 -0
- package/dist/src/util/function/bundle.js +13 -0
- package/dist/src/util/function/bundle.js.map +1 -0
- package/dist/src/util/function/index.d.ts +3 -0
- package/dist/src/util/function/index.d.ts.map +1 -0
- package/dist/src/util/function/index.js +6 -0
- package/dist/src/util/function/index.js.map +1 -0
- package/dist/src/util/function/lookup.d.ts +19 -0
- package/dist/src/util/function/lookup.d.ts.map +1 -0
- package/dist/src/util/function/lookup.js +14 -0
- package/dist/src/util/function/lookup.js.map +1 -0
- package/dist/src/util/index.d.ts +1 -0
- package/dist/src/util/index.d.ts.map +1 -1
- package/dist/src/util/index.js +1 -0
- package/dist/src/util/index.js.map +1 -1
- package/oclif.manifest.json +325 -187
- package/package.json +25 -25
package/oclif.manifest.json
CHANGED
|
@@ -839,112 +839,6 @@
|
|
|
839
839
|
"stop.js"
|
|
840
840
|
]
|
|
841
841
|
},
|
|
842
|
-
"config": {
|
|
843
|
-
"aliases": [],
|
|
844
|
-
"args": {},
|
|
845
|
-
"description": "Show config file.",
|
|
846
|
-
"flags": {
|
|
847
|
-
"json": {
|
|
848
|
-
"description": "Output as JSON.",
|
|
849
|
-
"name": "json",
|
|
850
|
-
"allowNo": false,
|
|
851
|
-
"type": "boolean"
|
|
852
|
-
},
|
|
853
|
-
"verbose": {
|
|
854
|
-
"char": "v",
|
|
855
|
-
"description": "Verbose output",
|
|
856
|
-
"name": "verbose",
|
|
857
|
-
"allowNo": false,
|
|
858
|
-
"type": "boolean"
|
|
859
|
-
},
|
|
860
|
-
"dry-run": {
|
|
861
|
-
"description": "Dry run.",
|
|
862
|
-
"name": "dry-run",
|
|
863
|
-
"allowNo": false,
|
|
864
|
-
"type": "boolean"
|
|
865
|
-
},
|
|
866
|
-
"profile": {
|
|
867
|
-
"description": "User profile.",
|
|
868
|
-
"env": "DX_PROFILE",
|
|
869
|
-
"name": "profile",
|
|
870
|
-
"default": "default",
|
|
871
|
-
"hasDynamicHelp": false,
|
|
872
|
-
"multiple": false,
|
|
873
|
-
"type": "option"
|
|
874
|
-
},
|
|
875
|
-
"config": {
|
|
876
|
-
"aliases": [
|
|
877
|
-
"c"
|
|
878
|
-
],
|
|
879
|
-
"dependsOn": [
|
|
880
|
-
"profile"
|
|
881
|
-
],
|
|
882
|
-
"description": "Config file.",
|
|
883
|
-
"env": "DX_CONFIG",
|
|
884
|
-
"name": "config",
|
|
885
|
-
"default": "/home/runner/.config/dx/profile/default.yml",
|
|
886
|
-
"hasDynamicHelp": false,
|
|
887
|
-
"helpValue": "path",
|
|
888
|
-
"multiple": false,
|
|
889
|
-
"type": "option"
|
|
890
|
-
},
|
|
891
|
-
"timeout": {
|
|
892
|
-
"aliases": [
|
|
893
|
-
"t"
|
|
894
|
-
],
|
|
895
|
-
"description": "Timeout (ms).",
|
|
896
|
-
"name": "timeout",
|
|
897
|
-
"default": 60000,
|
|
898
|
-
"hasDynamicHelp": false,
|
|
899
|
-
"multiple": false,
|
|
900
|
-
"type": "option"
|
|
901
|
-
},
|
|
902
|
-
"target": {
|
|
903
|
-
"description": "Target websocket server.",
|
|
904
|
-
"name": "target",
|
|
905
|
-
"hasDynamicHelp": false,
|
|
906
|
-
"multiple": false,
|
|
907
|
-
"type": "option"
|
|
908
|
-
},
|
|
909
|
-
"agent": {
|
|
910
|
-
"description": "Run command with agent.",
|
|
911
|
-
"env": "DX_NO_AGENT",
|
|
912
|
-
"name": "agent",
|
|
913
|
-
"allowNo": true,
|
|
914
|
-
"type": "boolean"
|
|
915
|
-
},
|
|
916
|
-
"json-log": {
|
|
917
|
-
"description": "When running in foreground, log JSON format",
|
|
918
|
-
"name": "json-log",
|
|
919
|
-
"allowNo": false,
|
|
920
|
-
"type": "boolean"
|
|
921
|
-
},
|
|
922
|
-
"json-logfile": {
|
|
923
|
-
"description": "JSON log file destination, or 'stdout' or 'stderr'",
|
|
924
|
-
"name": "json-logfile",
|
|
925
|
-
"default": "stderr",
|
|
926
|
-
"hasDynamicHelp": false,
|
|
927
|
-
"multiple": false,
|
|
928
|
-
"type": "option"
|
|
929
|
-
}
|
|
930
|
-
},
|
|
931
|
-
"hasDynamicHelp": false,
|
|
932
|
-
"hiddenAliases": [],
|
|
933
|
-
"id": "config",
|
|
934
|
-
"pluginAlias": "@dxos/cli",
|
|
935
|
-
"pluginName": "@dxos/cli",
|
|
936
|
-
"pluginType": "core",
|
|
937
|
-
"strict": true,
|
|
938
|
-
"enableJsonFlag": true,
|
|
939
|
-
"isESM": true,
|
|
940
|
-
"relativePath": [
|
|
941
|
-
"dist",
|
|
942
|
-
"src",
|
|
943
|
-
"commands",
|
|
944
|
-
"config",
|
|
945
|
-
"index.js"
|
|
946
|
-
]
|
|
947
|
-
},
|
|
948
842
|
"debug:diagnostics": {
|
|
949
843
|
"aliases": [],
|
|
950
844
|
"args": {},
|
|
@@ -1553,6 +1447,112 @@
|
|
|
1553
1447
|
"status.js"
|
|
1554
1448
|
]
|
|
1555
1449
|
},
|
|
1450
|
+
"config": {
|
|
1451
|
+
"aliases": [],
|
|
1452
|
+
"args": {},
|
|
1453
|
+
"description": "Show config file.",
|
|
1454
|
+
"flags": {
|
|
1455
|
+
"json": {
|
|
1456
|
+
"description": "Output as JSON.",
|
|
1457
|
+
"name": "json",
|
|
1458
|
+
"allowNo": false,
|
|
1459
|
+
"type": "boolean"
|
|
1460
|
+
},
|
|
1461
|
+
"verbose": {
|
|
1462
|
+
"char": "v",
|
|
1463
|
+
"description": "Verbose output",
|
|
1464
|
+
"name": "verbose",
|
|
1465
|
+
"allowNo": false,
|
|
1466
|
+
"type": "boolean"
|
|
1467
|
+
},
|
|
1468
|
+
"dry-run": {
|
|
1469
|
+
"description": "Dry run.",
|
|
1470
|
+
"name": "dry-run",
|
|
1471
|
+
"allowNo": false,
|
|
1472
|
+
"type": "boolean"
|
|
1473
|
+
},
|
|
1474
|
+
"profile": {
|
|
1475
|
+
"description": "User profile.",
|
|
1476
|
+
"env": "DX_PROFILE",
|
|
1477
|
+
"name": "profile",
|
|
1478
|
+
"default": "default",
|
|
1479
|
+
"hasDynamicHelp": false,
|
|
1480
|
+
"multiple": false,
|
|
1481
|
+
"type": "option"
|
|
1482
|
+
},
|
|
1483
|
+
"config": {
|
|
1484
|
+
"aliases": [
|
|
1485
|
+
"c"
|
|
1486
|
+
],
|
|
1487
|
+
"dependsOn": [
|
|
1488
|
+
"profile"
|
|
1489
|
+
],
|
|
1490
|
+
"description": "Config file.",
|
|
1491
|
+
"env": "DX_CONFIG",
|
|
1492
|
+
"name": "config",
|
|
1493
|
+
"default": "/home/runner/.config/dx/profile/default.yml",
|
|
1494
|
+
"hasDynamicHelp": false,
|
|
1495
|
+
"helpValue": "path",
|
|
1496
|
+
"multiple": false,
|
|
1497
|
+
"type": "option"
|
|
1498
|
+
},
|
|
1499
|
+
"timeout": {
|
|
1500
|
+
"aliases": [
|
|
1501
|
+
"t"
|
|
1502
|
+
],
|
|
1503
|
+
"description": "Timeout (ms).",
|
|
1504
|
+
"name": "timeout",
|
|
1505
|
+
"default": 60000,
|
|
1506
|
+
"hasDynamicHelp": false,
|
|
1507
|
+
"multiple": false,
|
|
1508
|
+
"type": "option"
|
|
1509
|
+
},
|
|
1510
|
+
"target": {
|
|
1511
|
+
"description": "Target websocket server.",
|
|
1512
|
+
"name": "target",
|
|
1513
|
+
"hasDynamicHelp": false,
|
|
1514
|
+
"multiple": false,
|
|
1515
|
+
"type": "option"
|
|
1516
|
+
},
|
|
1517
|
+
"agent": {
|
|
1518
|
+
"description": "Run command with agent.",
|
|
1519
|
+
"env": "DX_NO_AGENT",
|
|
1520
|
+
"name": "agent",
|
|
1521
|
+
"allowNo": true,
|
|
1522
|
+
"type": "boolean"
|
|
1523
|
+
},
|
|
1524
|
+
"json-log": {
|
|
1525
|
+
"description": "When running in foreground, log JSON format",
|
|
1526
|
+
"name": "json-log",
|
|
1527
|
+
"allowNo": false,
|
|
1528
|
+
"type": "boolean"
|
|
1529
|
+
},
|
|
1530
|
+
"json-logfile": {
|
|
1531
|
+
"description": "JSON log file destination, or 'stdout' or 'stderr'",
|
|
1532
|
+
"name": "json-logfile",
|
|
1533
|
+
"default": "stderr",
|
|
1534
|
+
"hasDynamicHelp": false,
|
|
1535
|
+
"multiple": false,
|
|
1536
|
+
"type": "option"
|
|
1537
|
+
}
|
|
1538
|
+
},
|
|
1539
|
+
"hasDynamicHelp": false,
|
|
1540
|
+
"hiddenAliases": [],
|
|
1541
|
+
"id": "config",
|
|
1542
|
+
"pluginAlias": "@dxos/cli",
|
|
1543
|
+
"pluginName": "@dxos/cli",
|
|
1544
|
+
"pluginType": "core",
|
|
1545
|
+
"strict": true,
|
|
1546
|
+
"enableJsonFlag": true,
|
|
1547
|
+
"isESM": true,
|
|
1548
|
+
"relativePath": [
|
|
1549
|
+
"dist",
|
|
1550
|
+
"src",
|
|
1551
|
+
"commands",
|
|
1552
|
+
"config",
|
|
1553
|
+
"index.js"
|
|
1554
|
+
]
|
|
1555
|
+
},
|
|
1556
1556
|
"device:info": {
|
|
1557
1557
|
"aliases": [],
|
|
1558
1558
|
"args": {},
|
|
@@ -2210,16 +2210,133 @@
|
|
|
2210
2210
|
"multiple": false,
|
|
2211
2211
|
"type": "option"
|
|
2212
2212
|
},
|
|
2213
|
+
"composerScript": {
|
|
2214
|
+
"description": "Loads the script into composer.",
|
|
2215
|
+
"name": "composerScript",
|
|
2216
|
+
"allowNo": false,
|
|
2217
|
+
"type": "boolean"
|
|
2218
|
+
},
|
|
2219
|
+
"functionId": {
|
|
2220
|
+
"description": "Existing UserFunction ID to update.",
|
|
2221
|
+
"name": "functionId",
|
|
2222
|
+
"hasDynamicHelp": false,
|
|
2223
|
+
"multiple": false,
|
|
2224
|
+
"type": "option"
|
|
2225
|
+
},
|
|
2213
2226
|
"spaceKey": {
|
|
2214
2227
|
"description": "Space key to create/update Script source in.",
|
|
2215
2228
|
"name": "spaceKey",
|
|
2216
2229
|
"hasDynamicHelp": false,
|
|
2217
2230
|
"multiple": false,
|
|
2218
2231
|
"type": "option"
|
|
2232
|
+
}
|
|
2233
|
+
},
|
|
2234
|
+
"hasDynamicHelp": false,
|
|
2235
|
+
"hiddenAliases": [],
|
|
2236
|
+
"id": "function:upload",
|
|
2237
|
+
"pluginAlias": "@dxos/cli",
|
|
2238
|
+
"pluginName": "@dxos/cli",
|
|
2239
|
+
"pluginType": "core",
|
|
2240
|
+
"strict": true,
|
|
2241
|
+
"enableJsonFlag": true,
|
|
2242
|
+
"isESM": true,
|
|
2243
|
+
"relativePath": [
|
|
2244
|
+
"dist",
|
|
2245
|
+
"src",
|
|
2246
|
+
"commands",
|
|
2247
|
+
"function",
|
|
2248
|
+
"upload.js"
|
|
2249
|
+
]
|
|
2250
|
+
},
|
|
2251
|
+
"function:watch": {
|
|
2252
|
+
"aliases": [],
|
|
2253
|
+
"args": {
|
|
2254
|
+
"file": {
|
|
2255
|
+
"name": "file",
|
|
2256
|
+
"required": true
|
|
2257
|
+
}
|
|
2258
|
+
},
|
|
2259
|
+
"description": "Hot reload script on file changes.",
|
|
2260
|
+
"flags": {
|
|
2261
|
+
"json": {
|
|
2262
|
+
"description": "Output as JSON.",
|
|
2263
|
+
"name": "json",
|
|
2264
|
+
"allowNo": false,
|
|
2265
|
+
"type": "boolean"
|
|
2266
|
+
},
|
|
2267
|
+
"verbose": {
|
|
2268
|
+
"char": "v",
|
|
2269
|
+
"description": "Verbose output",
|
|
2270
|
+
"name": "verbose",
|
|
2271
|
+
"allowNo": false,
|
|
2272
|
+
"type": "boolean"
|
|
2273
|
+
},
|
|
2274
|
+
"dry-run": {
|
|
2275
|
+
"description": "Dry run.",
|
|
2276
|
+
"name": "dry-run",
|
|
2277
|
+
"allowNo": false,
|
|
2278
|
+
"type": "boolean"
|
|
2279
|
+
},
|
|
2280
|
+
"profile": {
|
|
2281
|
+
"description": "User profile.",
|
|
2282
|
+
"env": "DX_PROFILE",
|
|
2283
|
+
"name": "profile",
|
|
2284
|
+
"default": "default",
|
|
2285
|
+
"hasDynamicHelp": false,
|
|
2286
|
+
"multiple": false,
|
|
2287
|
+
"type": "option"
|
|
2288
|
+
},
|
|
2289
|
+
"config": {
|
|
2290
|
+
"aliases": [
|
|
2291
|
+
"c"
|
|
2292
|
+
],
|
|
2293
|
+
"dependsOn": [
|
|
2294
|
+
"profile"
|
|
2295
|
+
],
|
|
2296
|
+
"description": "Config file.",
|
|
2297
|
+
"env": "DX_CONFIG",
|
|
2298
|
+
"name": "config",
|
|
2299
|
+
"default": "/home/runner/.config/dx/profile/default.yml",
|
|
2300
|
+
"hasDynamicHelp": false,
|
|
2301
|
+
"helpValue": "path",
|
|
2302
|
+
"multiple": false,
|
|
2303
|
+
"type": "option"
|
|
2219
2304
|
},
|
|
2220
|
-
"
|
|
2221
|
-
"
|
|
2222
|
-
|
|
2305
|
+
"timeout": {
|
|
2306
|
+
"aliases": [
|
|
2307
|
+
"t"
|
|
2308
|
+
],
|
|
2309
|
+
"description": "Timeout (ms).",
|
|
2310
|
+
"name": "timeout",
|
|
2311
|
+
"default": 60000,
|
|
2312
|
+
"hasDynamicHelp": false,
|
|
2313
|
+
"multiple": false,
|
|
2314
|
+
"type": "option"
|
|
2315
|
+
},
|
|
2316
|
+
"target": {
|
|
2317
|
+
"description": "Target websocket server.",
|
|
2318
|
+
"name": "target",
|
|
2319
|
+
"hasDynamicHelp": false,
|
|
2320
|
+
"multiple": false,
|
|
2321
|
+
"type": "option"
|
|
2322
|
+
},
|
|
2323
|
+
"agent": {
|
|
2324
|
+
"description": "Run command with agent.",
|
|
2325
|
+
"env": "DX_NO_AGENT",
|
|
2326
|
+
"name": "agent",
|
|
2327
|
+
"allowNo": true,
|
|
2328
|
+
"type": "boolean"
|
|
2329
|
+
},
|
|
2330
|
+
"json-log": {
|
|
2331
|
+
"description": "When running in foreground, log JSON format",
|
|
2332
|
+
"name": "json-log",
|
|
2333
|
+
"allowNo": false,
|
|
2334
|
+
"type": "boolean"
|
|
2335
|
+
},
|
|
2336
|
+
"json-logfile": {
|
|
2337
|
+
"description": "JSON log file destination, or 'stdout' or 'stderr'",
|
|
2338
|
+
"name": "json-logfile",
|
|
2339
|
+
"default": "stderr",
|
|
2223
2340
|
"hasDynamicHelp": false,
|
|
2224
2341
|
"multiple": false,
|
|
2225
2342
|
"type": "option"
|
|
@@ -2227,6 +2344,14 @@
|
|
|
2227
2344
|
"functionId": {
|
|
2228
2345
|
"description": "Existing UserFunction ID to update.",
|
|
2229
2346
|
"name": "functionId",
|
|
2347
|
+
"required": true,
|
|
2348
|
+
"hasDynamicHelp": false,
|
|
2349
|
+
"multiple": false,
|
|
2350
|
+
"type": "option"
|
|
2351
|
+
},
|
|
2352
|
+
"spaceKey": {
|
|
2353
|
+
"description": "Space key to create/update Script source in.",
|
|
2354
|
+
"name": "spaceKey",
|
|
2230
2355
|
"hasDynamicHelp": false,
|
|
2231
2356
|
"multiple": false,
|
|
2232
2357
|
"type": "option"
|
|
@@ -2234,7 +2359,7 @@
|
|
|
2234
2359
|
},
|
|
2235
2360
|
"hasDynamicHelp": false,
|
|
2236
2361
|
"hiddenAliases": [],
|
|
2237
|
-
"id": "function:
|
|
2362
|
+
"id": "function:watch",
|
|
2238
2363
|
"pluginAlias": "@dxos/cli",
|
|
2239
2364
|
"pluginName": "@dxos/cli",
|
|
2240
2365
|
"pluginType": "core",
|
|
@@ -2246,7 +2371,7 @@
|
|
|
2246
2371
|
"src",
|
|
2247
2372
|
"commands",
|
|
2248
2373
|
"function",
|
|
2249
|
-
"
|
|
2374
|
+
"watch.js"
|
|
2250
2375
|
]
|
|
2251
2376
|
},
|
|
2252
2377
|
"halo:create": {
|
|
@@ -4092,6 +4217,12 @@
|
|
|
4092
4217
|
"name": "live",
|
|
4093
4218
|
"allowNo": false,
|
|
4094
4219
|
"type": "boolean"
|
|
4220
|
+
},
|
|
4221
|
+
"noWait": {
|
|
4222
|
+
"description": "Do not wait for spaces to be ready.",
|
|
4223
|
+
"name": "noWait",
|
|
4224
|
+
"allowNo": false,
|
|
4225
|
+
"type": "boolean"
|
|
4095
4226
|
}
|
|
4096
4227
|
},
|
|
4097
4228
|
"hasDynamicHelp": false,
|
|
@@ -4715,7 +4846,7 @@
|
|
|
4715
4846
|
"name": {
|
|
4716
4847
|
"description": "Tunnel name",
|
|
4717
4848
|
"name": "name",
|
|
4718
|
-
"default": "
|
|
4849
|
+
"default": "five-purple-alpha-don",
|
|
4719
4850
|
"hasDynamicHelp": false,
|
|
4720
4851
|
"multiple": false,
|
|
4721
4852
|
"type": "option"
|
|
@@ -4983,10 +5114,16 @@
|
|
|
4983
5114
|
"list.js"
|
|
4984
5115
|
]
|
|
4985
5116
|
},
|
|
4986
|
-
"halo:
|
|
5117
|
+
"halo:credential:add": {
|
|
4987
5118
|
"aliases": [],
|
|
4988
|
-
"args": {
|
|
4989
|
-
|
|
5119
|
+
"args": {
|
|
5120
|
+
"credential": {
|
|
5121
|
+
"description": "credential",
|
|
5122
|
+
"name": "credential",
|
|
5123
|
+
"required": false
|
|
5124
|
+
}
|
|
5125
|
+
},
|
|
5126
|
+
"description": "Import credential into HALO.",
|
|
4990
5127
|
"flags": {
|
|
4991
5128
|
"json": {
|
|
4992
5129
|
"description": "Output as JSON.",
|
|
@@ -5074,26 +5211,25 @@
|
|
|
5074
5211
|
},
|
|
5075
5212
|
"hasDynamicHelp": false,
|
|
5076
5213
|
"hiddenAliases": [],
|
|
5077
|
-
"id": "halo:
|
|
5214
|
+
"id": "halo:credential:add",
|
|
5078
5215
|
"pluginAlias": "@dxos/cli",
|
|
5079
5216
|
"pluginName": "@dxos/cli",
|
|
5080
5217
|
"pluginType": "core",
|
|
5081
5218
|
"strict": true,
|
|
5082
|
-
"enableJsonFlag": true,
|
|
5083
5219
|
"isESM": true,
|
|
5084
5220
|
"relativePath": [
|
|
5085
5221
|
"dist",
|
|
5086
5222
|
"src",
|
|
5087
5223
|
"commands",
|
|
5088
5224
|
"halo",
|
|
5089
|
-
"
|
|
5090
|
-
"
|
|
5225
|
+
"credential",
|
|
5226
|
+
"add.js"
|
|
5091
5227
|
]
|
|
5092
5228
|
},
|
|
5093
|
-
"halo:
|
|
5229
|
+
"halo:credential:list": {
|
|
5094
5230
|
"aliases": [],
|
|
5095
5231
|
"args": {},
|
|
5096
|
-
"description": "
|
|
5232
|
+
"description": "List HALO credentials.",
|
|
5097
5233
|
"flags": {
|
|
5098
5234
|
"json": {
|
|
5099
5235
|
"description": "Output as JSON.",
|
|
@@ -5140,12 +5276,9 @@
|
|
|
5140
5276
|
"type": "option"
|
|
5141
5277
|
},
|
|
5142
5278
|
"timeout": {
|
|
5143
|
-
"
|
|
5144
|
-
"t"
|
|
5145
|
-
],
|
|
5146
|
-
"description": "Timeout (ms).",
|
|
5279
|
+
"description": "Time in milliseconds to wait for at least one credential before listing.",
|
|
5147
5280
|
"name": "timeout",
|
|
5148
|
-
"default":
|
|
5281
|
+
"default": 500,
|
|
5149
5282
|
"hasDynamicHelp": false,
|
|
5150
5283
|
"multiple": false,
|
|
5151
5284
|
"type": "option"
|
|
@@ -5178,10 +5311,30 @@
|
|
|
5178
5311
|
"multiple": false,
|
|
5179
5312
|
"type": "option"
|
|
5180
5313
|
},
|
|
5181
|
-
"
|
|
5182
|
-
"description": "
|
|
5183
|
-
"name": "
|
|
5184
|
-
"
|
|
5314
|
+
"extended": {
|
|
5315
|
+
"description": "Show extended table columns.",
|
|
5316
|
+
"name": "extended",
|
|
5317
|
+
"allowNo": false,
|
|
5318
|
+
"type": "boolean"
|
|
5319
|
+
},
|
|
5320
|
+
"type": {
|
|
5321
|
+
"description": "Type",
|
|
5322
|
+
"name": "type",
|
|
5323
|
+
"hasDynamicHelp": false,
|
|
5324
|
+
"multiple": false,
|
|
5325
|
+
"type": "option"
|
|
5326
|
+
},
|
|
5327
|
+
"delay": {
|
|
5328
|
+
"description": "Delay in milliseconds before listing.",
|
|
5329
|
+
"name": "delay",
|
|
5330
|
+
"default": 250,
|
|
5331
|
+
"hasDynamicHelp": false,
|
|
5332
|
+
"multiple": false,
|
|
5333
|
+
"type": "option"
|
|
5334
|
+
},
|
|
5335
|
+
"space": {
|
|
5336
|
+
"description": "Space ID of the space to show credentials from. By default, shows halo credentials.",
|
|
5337
|
+
"name": "space",
|
|
5185
5338
|
"hasDynamicHelp": false,
|
|
5186
5339
|
"multiple": false,
|
|
5187
5340
|
"type": "option"
|
|
@@ -5189,7 +5342,7 @@
|
|
|
5189
5342
|
},
|
|
5190
5343
|
"hasDynamicHelp": false,
|
|
5191
5344
|
"hiddenAliases": [],
|
|
5192
|
-
"id": "halo:
|
|
5345
|
+
"id": "halo:credential:list",
|
|
5193
5346
|
"pluginAlias": "@dxos/cli",
|
|
5194
5347
|
"pluginName": "@dxos/cli",
|
|
5195
5348
|
"pluginType": "core",
|
|
@@ -5201,14 +5354,14 @@
|
|
|
5201
5354
|
"src",
|
|
5202
5355
|
"commands",
|
|
5203
5356
|
"halo",
|
|
5204
|
-
"
|
|
5205
|
-
"
|
|
5357
|
+
"credential",
|
|
5358
|
+
"list.js"
|
|
5206
5359
|
]
|
|
5207
5360
|
},
|
|
5208
|
-
"
|
|
5361
|
+
"halo:recovery:generate": {
|
|
5209
5362
|
"aliases": [],
|
|
5210
5363
|
"args": {},
|
|
5211
|
-
"description": "
|
|
5364
|
+
"description": "Generate a seedphrase that can be used for identity recovery.",
|
|
5212
5365
|
"flags": {
|
|
5213
5366
|
"json": {
|
|
5214
5367
|
"description": "Output as JSON.",
|
|
@@ -5292,31 +5445,11 @@
|
|
|
5292
5445
|
"hasDynamicHelp": false,
|
|
5293
5446
|
"multiple": false,
|
|
5294
5447
|
"type": "option"
|
|
5295
|
-
},
|
|
5296
|
-
"extended": {
|
|
5297
|
-
"description": "Show extended table columns.",
|
|
5298
|
-
"name": "extended",
|
|
5299
|
-
"allowNo": false,
|
|
5300
|
-
"type": "boolean"
|
|
5301
|
-
},
|
|
5302
|
-
"key": {
|
|
5303
|
-
"description": "Space key(s) head in hex.",
|
|
5304
|
-
"name": "key",
|
|
5305
|
-
"hasDynamicHelp": false,
|
|
5306
|
-
"multiple": true,
|
|
5307
|
-
"type": "option"
|
|
5308
|
-
},
|
|
5309
|
-
"typename": {
|
|
5310
|
-
"description": "Filter objects by typename.",
|
|
5311
|
-
"name": "typename",
|
|
5312
|
-
"hasDynamicHelp": false,
|
|
5313
|
-
"multiple": false,
|
|
5314
|
-
"type": "option"
|
|
5315
5448
|
}
|
|
5316
5449
|
},
|
|
5317
5450
|
"hasDynamicHelp": false,
|
|
5318
5451
|
"hiddenAliases": [],
|
|
5319
|
-
"id": "
|
|
5452
|
+
"id": "halo:recovery:generate",
|
|
5320
5453
|
"pluginAlias": "@dxos/cli",
|
|
5321
5454
|
"pluginName": "@dxos/cli",
|
|
5322
5455
|
"pluginType": "core",
|
|
@@ -5327,21 +5460,15 @@
|
|
|
5327
5460
|
"dist",
|
|
5328
5461
|
"src",
|
|
5329
5462
|
"commands",
|
|
5330
|
-
"
|
|
5331
|
-
"
|
|
5332
|
-
"
|
|
5463
|
+
"halo",
|
|
5464
|
+
"recovery",
|
|
5465
|
+
"generate.js"
|
|
5333
5466
|
]
|
|
5334
5467
|
},
|
|
5335
|
-
"halo:
|
|
5468
|
+
"halo:recovery:use": {
|
|
5336
5469
|
"aliases": [],
|
|
5337
|
-
"args": {
|
|
5338
|
-
|
|
5339
|
-
"description": "credential",
|
|
5340
|
-
"name": "credential",
|
|
5341
|
-
"required": false
|
|
5342
|
-
}
|
|
5343
|
-
},
|
|
5344
|
-
"description": "Import credential into HALO.",
|
|
5470
|
+
"args": {},
|
|
5471
|
+
"description": "Use a code to recover identity.",
|
|
5345
5472
|
"flags": {
|
|
5346
5473
|
"json": {
|
|
5347
5474
|
"description": "Output as JSON.",
|
|
@@ -5425,29 +5552,38 @@
|
|
|
5425
5552
|
"hasDynamicHelp": false,
|
|
5426
5553
|
"multiple": false,
|
|
5427
5554
|
"type": "option"
|
|
5555
|
+
},
|
|
5556
|
+
"recoveryCode": {
|
|
5557
|
+
"description": "Recovery code.",
|
|
5558
|
+
"name": "recoveryCode",
|
|
5559
|
+
"required": true,
|
|
5560
|
+
"hasDynamicHelp": false,
|
|
5561
|
+
"multiple": false,
|
|
5562
|
+
"type": "option"
|
|
5428
5563
|
}
|
|
5429
5564
|
},
|
|
5430
5565
|
"hasDynamicHelp": false,
|
|
5431
5566
|
"hiddenAliases": [],
|
|
5432
|
-
"id": "halo:
|
|
5567
|
+
"id": "halo:recovery:use",
|
|
5433
5568
|
"pluginAlias": "@dxos/cli",
|
|
5434
5569
|
"pluginName": "@dxos/cli",
|
|
5435
5570
|
"pluginType": "core",
|
|
5436
5571
|
"strict": true,
|
|
5572
|
+
"enableJsonFlag": true,
|
|
5437
5573
|
"isESM": true,
|
|
5438
5574
|
"relativePath": [
|
|
5439
5575
|
"dist",
|
|
5440
5576
|
"src",
|
|
5441
5577
|
"commands",
|
|
5442
5578
|
"halo",
|
|
5443
|
-
"
|
|
5444
|
-
"
|
|
5579
|
+
"recovery",
|
|
5580
|
+
"use.js"
|
|
5445
5581
|
]
|
|
5446
5582
|
},
|
|
5447
|
-
"
|
|
5583
|
+
"space:schema:list": {
|
|
5448
5584
|
"aliases": [],
|
|
5449
5585
|
"args": {},
|
|
5450
|
-
"description": "List
|
|
5586
|
+
"description": "List schema.",
|
|
5451
5587
|
"flags": {
|
|
5452
5588
|
"json": {
|
|
5453
5589
|
"description": "Output as JSON.",
|
|
@@ -5494,9 +5630,12 @@
|
|
|
5494
5630
|
"type": "option"
|
|
5495
5631
|
},
|
|
5496
5632
|
"timeout": {
|
|
5497
|
-
"
|
|
5633
|
+
"aliases": [
|
|
5634
|
+
"t"
|
|
5635
|
+
],
|
|
5636
|
+
"description": "Timeout (ms).",
|
|
5498
5637
|
"name": "timeout",
|
|
5499
|
-
"default":
|
|
5638
|
+
"default": 60000,
|
|
5500
5639
|
"hasDynamicHelp": false,
|
|
5501
5640
|
"multiple": false,
|
|
5502
5641
|
"type": "option"
|
|
@@ -5535,17 +5674,16 @@
|
|
|
5535
5674
|
"allowNo": false,
|
|
5536
5675
|
"type": "boolean"
|
|
5537
5676
|
},
|
|
5538
|
-
"
|
|
5539
|
-
"description": "
|
|
5540
|
-
"name": "
|
|
5677
|
+
"key": {
|
|
5678
|
+
"description": "Space key(s) head in hex.",
|
|
5679
|
+
"name": "key",
|
|
5541
5680
|
"hasDynamicHelp": false,
|
|
5542
|
-
"multiple":
|
|
5681
|
+
"multiple": true,
|
|
5543
5682
|
"type": "option"
|
|
5544
5683
|
},
|
|
5545
|
-
"
|
|
5546
|
-
"description": "
|
|
5547
|
-
"name": "
|
|
5548
|
-
"default": 250,
|
|
5684
|
+
"typename": {
|
|
5685
|
+
"description": "Filter objects by typename.",
|
|
5686
|
+
"name": "typename",
|
|
5549
5687
|
"hasDynamicHelp": false,
|
|
5550
5688
|
"multiple": false,
|
|
5551
5689
|
"type": "option"
|
|
@@ -5553,7 +5691,7 @@
|
|
|
5553
5691
|
},
|
|
5554
5692
|
"hasDynamicHelp": false,
|
|
5555
5693
|
"hiddenAliases": [],
|
|
5556
|
-
"id": "
|
|
5694
|
+
"id": "space:schema:list",
|
|
5557
5695
|
"pluginAlias": "@dxos/cli",
|
|
5558
5696
|
"pluginName": "@dxos/cli",
|
|
5559
5697
|
"pluginType": "core",
|
|
@@ -5564,11 +5702,11 @@
|
|
|
5564
5702
|
"dist",
|
|
5565
5703
|
"src",
|
|
5566
5704
|
"commands",
|
|
5567
|
-
"
|
|
5568
|
-
"
|
|
5705
|
+
"space",
|
|
5706
|
+
"schema",
|
|
5569
5707
|
"list.js"
|
|
5570
5708
|
]
|
|
5571
5709
|
}
|
|
5572
5710
|
},
|
|
5573
|
-
"version": "0.8.
|
|
5711
|
+
"version": "0.8.2-main.f081794"
|
|
5574
5712
|
}
|