@dxos/cli 0.5.4-main.962dfc7 → 0.5.4-main.971f8a3
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/base.d.ts +2 -0
- package/dist/src/base.d.ts.map +1 -1
- package/dist/src/base.js +15 -4
- package/dist/src/base.js.map +1 -1
- package/dist/src/commands/composer/query.d.ts +1 -0
- package/dist/src/commands/composer/query.d.ts.map +1 -1
- package/dist/src/commands/composer/query.js +21 -9
- package/dist/src/commands/composer/query.js.map +1 -1
- package/dist/src/commands/function/list.d.ts +2 -2
- package/dist/src/commands/function/list.d.ts.map +1 -1
- package/dist/src/commands/function/list.js +20 -21
- package/dist/src/commands/function/list.js.map +1 -1
- package/dist/src/commands/function/trigger.d.ts +27 -0
- package/dist/src/commands/function/trigger.d.ts.map +1 -0
- package/dist/src/commands/function/trigger.js +79 -0
- package/dist/src/commands/function/trigger.js.map +1 -0
- package/dist/src/commands/halo/share.js +1 -1
- package/dist/src/commands/halo/share.js.map +1 -1
- package/dist/src/commands/space/create.d.ts.map +1 -1
- package/dist/src/commands/space/create.js +2 -3
- package/dist/src/commands/space/create.js.map +1 -1
- 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/dist/src/util/json.d.ts +2 -0
- package/dist/src/util/json.d.ts.map +1 -0
- package/dist/src/util/json.js +42 -0
- package/dist/src/util/json.js.map +1 -0
- package/dist/src/util/json.test.d.ts +2 -0
- package/dist/src/util/json.test.d.ts.map +1 -0
- package/dist/src/util/json.test.js +14 -0
- package/dist/src/util/json.test.js.map +1 -0
- package/oclif.manifest.json +289 -148
- package/package.json +25 -25
package/oclif.manifest.json
CHANGED
|
@@ -841,16 +841,9 @@
|
|
|
841
841
|
"stop.js"
|
|
842
842
|
]
|
|
843
843
|
},
|
|
844
|
-
"
|
|
844
|
+
"composer:base": {
|
|
845
845
|
"aliases": [],
|
|
846
|
-
"args": {
|
|
847
|
-
"name": {
|
|
848
|
-
"description": "App name.",
|
|
849
|
-
"name": "name",
|
|
850
|
-
"required": true
|
|
851
|
-
}
|
|
852
|
-
},
|
|
853
|
-
"description": "Manage applications (deprecated).",
|
|
846
|
+
"args": {},
|
|
854
847
|
"flags": {
|
|
855
848
|
"json": {
|
|
856
849
|
"description": "Output as JSON.",
|
|
@@ -940,43 +933,14 @@
|
|
|
940
933
|
"hasDynamicHelp": false,
|
|
941
934
|
"multiple": false,
|
|
942
935
|
"type": "option"
|
|
943
|
-
},
|
|
944
|
-
"tag": {
|
|
945
|
-
"description": "Git tag or branch of the DXOS repo to checkout.",
|
|
946
|
-
"name": "tag",
|
|
947
|
-
"hasDynamicHelp": false,
|
|
948
|
-
"multiple": false,
|
|
949
|
-
"type": "option"
|
|
950
|
-
},
|
|
951
|
-
"template": {
|
|
952
|
-
"char": "t",
|
|
953
|
-
"description": "Template to use when creating the project.",
|
|
954
|
-
"name": "template",
|
|
955
|
-
"default": "hello",
|
|
956
|
-
"hasDynamicHelp": false,
|
|
957
|
-
"multiple": false,
|
|
958
|
-
"options": [
|
|
959
|
-
"hello",
|
|
960
|
-
"bare",
|
|
961
|
-
"tasks"
|
|
962
|
-
],
|
|
963
|
-
"type": "option"
|
|
964
|
-
},
|
|
965
|
-
"interactive": {
|
|
966
|
-
"char": "i",
|
|
967
|
-
"description": "Customize app template options via interactive prompt.",
|
|
968
|
-
"name": "interactive",
|
|
969
|
-
"allowNo": false,
|
|
970
|
-
"type": "boolean"
|
|
971
936
|
}
|
|
972
937
|
},
|
|
973
938
|
"hasDynamicHelp": false,
|
|
974
939
|
"hiddenAliases": [],
|
|
975
|
-
"id": "
|
|
940
|
+
"id": "composer:base",
|
|
976
941
|
"pluginAlias": "@dxos/cli",
|
|
977
942
|
"pluginName": "@dxos/cli",
|
|
978
943
|
"pluginType": "core",
|
|
979
|
-
"state": "deprecated",
|
|
980
944
|
"strict": true,
|
|
981
945
|
"enableJsonFlag": true,
|
|
982
946
|
"isESM": false,
|
|
@@ -984,14 +948,19 @@
|
|
|
984
948
|
"dist",
|
|
985
949
|
"src",
|
|
986
950
|
"commands",
|
|
987
|
-
"
|
|
988
|
-
"
|
|
951
|
+
"composer",
|
|
952
|
+
"base.js"
|
|
989
953
|
]
|
|
990
954
|
},
|
|
991
|
-
"
|
|
955
|
+
"composer:import": {
|
|
992
956
|
"aliases": [],
|
|
993
|
-
"args": {
|
|
994
|
-
|
|
957
|
+
"args": {
|
|
958
|
+
"file": {
|
|
959
|
+
"name": "file",
|
|
960
|
+
"required": true
|
|
961
|
+
}
|
|
962
|
+
},
|
|
963
|
+
"description": "Import ECHO objects.",
|
|
995
964
|
"flags": {
|
|
996
965
|
"json": {
|
|
997
966
|
"description": "Output as JSON.",
|
|
@@ -1081,15 +1050,21 @@
|
|
|
1081
1050
|
"hasDynamicHelp": false,
|
|
1082
1051
|
"multiple": false,
|
|
1083
1052
|
"type": "option"
|
|
1053
|
+
},
|
|
1054
|
+
"key": {
|
|
1055
|
+
"description": "Space key(s) head in hex.",
|
|
1056
|
+
"name": "key",
|
|
1057
|
+
"hasDynamicHelp": false,
|
|
1058
|
+
"multiple": true,
|
|
1059
|
+
"type": "option"
|
|
1084
1060
|
}
|
|
1085
1061
|
},
|
|
1086
1062
|
"hasDynamicHelp": false,
|
|
1087
1063
|
"hiddenAliases": [],
|
|
1088
|
-
"id": "
|
|
1064
|
+
"id": "composer:import",
|
|
1089
1065
|
"pluginAlias": "@dxos/cli",
|
|
1090
1066
|
"pluginName": "@dxos/cli",
|
|
1091
1067
|
"pluginType": "core",
|
|
1092
|
-
"state": "deprecated",
|
|
1093
1068
|
"strict": true,
|
|
1094
1069
|
"enableJsonFlag": true,
|
|
1095
1070
|
"isESM": false,
|
|
@@ -1097,20 +1072,14 @@
|
|
|
1097
1072
|
"dist",
|
|
1098
1073
|
"src",
|
|
1099
1074
|
"commands",
|
|
1100
|
-
"
|
|
1101
|
-
"
|
|
1075
|
+
"composer",
|
|
1076
|
+
"import.js"
|
|
1102
1077
|
]
|
|
1103
1078
|
},
|
|
1104
|
-
"
|
|
1079
|
+
"composer:query": {
|
|
1105
1080
|
"aliases": [],
|
|
1106
|
-
"args": {
|
|
1107
|
-
|
|
1108
|
-
"description": "App URL.",
|
|
1109
|
-
"name": "url",
|
|
1110
|
-
"required": true
|
|
1111
|
-
}
|
|
1112
|
-
},
|
|
1113
|
-
"description": "Opens app with provided url and process device invitation.",
|
|
1081
|
+
"args": {},
|
|
1082
|
+
"description": "Query database.",
|
|
1114
1083
|
"flags": {
|
|
1115
1084
|
"json": {
|
|
1116
1085
|
"description": "Output as JSON.",
|
|
@@ -1201,28 +1170,32 @@
|
|
|
1201
1170
|
"multiple": false,
|
|
1202
1171
|
"type": "option"
|
|
1203
1172
|
},
|
|
1204
|
-
"
|
|
1205
|
-
"description": "
|
|
1206
|
-
"name": "
|
|
1207
|
-
"
|
|
1173
|
+
"key": {
|
|
1174
|
+
"description": "Space key(s) head in hex.",
|
|
1175
|
+
"name": "key",
|
|
1176
|
+
"hasDynamicHelp": false,
|
|
1177
|
+
"multiple": true,
|
|
1178
|
+
"type": "option"
|
|
1179
|
+
},
|
|
1180
|
+
"type": {
|
|
1181
|
+
"description": "Data type.",
|
|
1182
|
+
"name": "type",
|
|
1208
1183
|
"hasDynamicHelp": false,
|
|
1209
1184
|
"multiple": false,
|
|
1210
1185
|
"type": "option"
|
|
1211
1186
|
},
|
|
1212
|
-
"
|
|
1213
|
-
"
|
|
1214
|
-
"name": "invite",
|
|
1187
|
+
"extended": {
|
|
1188
|
+
"name": "extended",
|
|
1215
1189
|
"allowNo": false,
|
|
1216
1190
|
"type": "boolean"
|
|
1217
1191
|
}
|
|
1218
1192
|
},
|
|
1219
1193
|
"hasDynamicHelp": false,
|
|
1220
1194
|
"hiddenAliases": [],
|
|
1221
|
-
"id": "
|
|
1195
|
+
"id": "composer:query",
|
|
1222
1196
|
"pluginAlias": "@dxos/cli",
|
|
1223
1197
|
"pluginName": "@dxos/cli",
|
|
1224
1198
|
"pluginType": "core",
|
|
1225
|
-
"state": "deprecated",
|
|
1226
1199
|
"strict": true,
|
|
1227
1200
|
"enableJsonFlag": true,
|
|
1228
1201
|
"isESM": false,
|
|
@@ -1230,14 +1203,14 @@
|
|
|
1230
1203
|
"dist",
|
|
1231
1204
|
"src",
|
|
1232
1205
|
"commands",
|
|
1233
|
-
"
|
|
1234
|
-
"
|
|
1206
|
+
"composer",
|
|
1207
|
+
"query.js"
|
|
1235
1208
|
]
|
|
1236
1209
|
},
|
|
1237
|
-
"
|
|
1210
|
+
"composer:upload": {
|
|
1238
1211
|
"aliases": [],
|
|
1239
1212
|
"args": {},
|
|
1240
|
-
"description": "
|
|
1213
|
+
"description": "Upload IPFS file.",
|
|
1241
1214
|
"flags": {
|
|
1242
1215
|
"json": {
|
|
1243
1216
|
"description": "Output as JSON.",
|
|
@@ -1328,29 +1301,16 @@
|
|
|
1328
1301
|
"multiple": false,
|
|
1329
1302
|
"type": "option"
|
|
1330
1303
|
},
|
|
1331
|
-
"
|
|
1332
|
-
"description": "
|
|
1333
|
-
"name": "
|
|
1334
|
-
"hasDynamicHelp": false,
|
|
1335
|
-
"multiple": false,
|
|
1336
|
-
"type": "option"
|
|
1337
|
-
},
|
|
1338
|
-
"accessToken": {
|
|
1339
|
-
"description": "Access token for publishing.",
|
|
1340
|
-
"name": "accessToken",
|
|
1304
|
+
"key": {
|
|
1305
|
+
"description": "Space key(s) head in hex.",
|
|
1306
|
+
"name": "key",
|
|
1341
1307
|
"hasDynamicHelp": false,
|
|
1342
|
-
"multiple":
|
|
1308
|
+
"multiple": true,
|
|
1343
1309
|
"type": "option"
|
|
1344
1310
|
},
|
|
1345
|
-
"
|
|
1346
|
-
"
|
|
1347
|
-
"
|
|
1348
|
-
"allowNo": false,
|
|
1349
|
-
"type": "boolean"
|
|
1350
|
-
},
|
|
1351
|
-
"version": {
|
|
1352
|
-
"description": "Version of modules to publish.",
|
|
1353
|
-
"name": "version",
|
|
1311
|
+
"file": {
|
|
1312
|
+
"name": "file",
|
|
1313
|
+
"required": true,
|
|
1354
1314
|
"hasDynamicHelp": false,
|
|
1355
1315
|
"multiple": false,
|
|
1356
1316
|
"type": "option"
|
|
@@ -1358,11 +1318,10 @@
|
|
|
1358
1318
|
},
|
|
1359
1319
|
"hasDynamicHelp": false,
|
|
1360
1320
|
"hiddenAliases": [],
|
|
1361
|
-
"id": "
|
|
1321
|
+
"id": "composer:upload",
|
|
1362
1322
|
"pluginAlias": "@dxos/cli",
|
|
1363
1323
|
"pluginName": "@dxos/cli",
|
|
1364
1324
|
"pluginType": "core",
|
|
1365
|
-
"state": "deprecated",
|
|
1366
1325
|
"strict": true,
|
|
1367
1326
|
"enableJsonFlag": true,
|
|
1368
1327
|
"isESM": false,
|
|
@@ -1370,13 +1329,20 @@
|
|
|
1370
1329
|
"dist",
|
|
1371
1330
|
"src",
|
|
1372
1331
|
"commands",
|
|
1373
|
-
"
|
|
1374
|
-
"
|
|
1332
|
+
"composer",
|
|
1333
|
+
"upload.js"
|
|
1375
1334
|
]
|
|
1376
1335
|
},
|
|
1377
|
-
"
|
|
1336
|
+
"app:create": {
|
|
1378
1337
|
"aliases": [],
|
|
1379
|
-
"args": {
|
|
1338
|
+
"args": {
|
|
1339
|
+
"name": {
|
|
1340
|
+
"description": "App name.",
|
|
1341
|
+
"name": "name",
|
|
1342
|
+
"required": true
|
|
1343
|
+
}
|
|
1344
|
+
},
|
|
1345
|
+
"description": "Manage applications (deprecated).",
|
|
1380
1346
|
"flags": {
|
|
1381
1347
|
"json": {
|
|
1382
1348
|
"description": "Output as JSON.",
|
|
@@ -1466,14 +1432,43 @@
|
|
|
1466
1432
|
"hasDynamicHelp": false,
|
|
1467
1433
|
"multiple": false,
|
|
1468
1434
|
"type": "option"
|
|
1435
|
+
},
|
|
1436
|
+
"tag": {
|
|
1437
|
+
"description": "Git tag or branch of the DXOS repo to checkout.",
|
|
1438
|
+
"name": "tag",
|
|
1439
|
+
"hasDynamicHelp": false,
|
|
1440
|
+
"multiple": false,
|
|
1441
|
+
"type": "option"
|
|
1442
|
+
},
|
|
1443
|
+
"template": {
|
|
1444
|
+
"char": "t",
|
|
1445
|
+
"description": "Template to use when creating the project.",
|
|
1446
|
+
"name": "template",
|
|
1447
|
+
"default": "hello",
|
|
1448
|
+
"hasDynamicHelp": false,
|
|
1449
|
+
"multiple": false,
|
|
1450
|
+
"options": [
|
|
1451
|
+
"hello",
|
|
1452
|
+
"bare",
|
|
1453
|
+
"tasks"
|
|
1454
|
+
],
|
|
1455
|
+
"type": "option"
|
|
1456
|
+
},
|
|
1457
|
+
"interactive": {
|
|
1458
|
+
"char": "i",
|
|
1459
|
+
"description": "Customize app template options via interactive prompt.",
|
|
1460
|
+
"name": "interactive",
|
|
1461
|
+
"allowNo": false,
|
|
1462
|
+
"type": "boolean"
|
|
1469
1463
|
}
|
|
1470
1464
|
},
|
|
1471
1465
|
"hasDynamicHelp": false,
|
|
1472
1466
|
"hiddenAliases": [],
|
|
1473
|
-
"id": "
|
|
1467
|
+
"id": "app:create",
|
|
1474
1468
|
"pluginAlias": "@dxos/cli",
|
|
1475
1469
|
"pluginName": "@dxos/cli",
|
|
1476
1470
|
"pluginType": "core",
|
|
1471
|
+
"state": "deprecated",
|
|
1477
1472
|
"strict": true,
|
|
1478
1473
|
"enableJsonFlag": true,
|
|
1479
1474
|
"isESM": false,
|
|
@@ -1481,19 +1476,14 @@
|
|
|
1481
1476
|
"dist",
|
|
1482
1477
|
"src",
|
|
1483
1478
|
"commands",
|
|
1484
|
-
"
|
|
1485
|
-
"
|
|
1479
|
+
"app",
|
|
1480
|
+
"create.js"
|
|
1486
1481
|
]
|
|
1487
1482
|
},
|
|
1488
|
-
"
|
|
1483
|
+
"app:list": {
|
|
1489
1484
|
"aliases": [],
|
|
1490
|
-
"args": {
|
|
1491
|
-
|
|
1492
|
-
"name": "file",
|
|
1493
|
-
"required": true
|
|
1494
|
-
}
|
|
1495
|
-
},
|
|
1496
|
-
"description": "Import ECHO objects.",
|
|
1485
|
+
"args": {},
|
|
1486
|
+
"description": "List apps.",
|
|
1497
1487
|
"flags": {
|
|
1498
1488
|
"json": {
|
|
1499
1489
|
"description": "Output as JSON.",
|
|
@@ -1583,21 +1573,15 @@
|
|
|
1583
1573
|
"hasDynamicHelp": false,
|
|
1584
1574
|
"multiple": false,
|
|
1585
1575
|
"type": "option"
|
|
1586
|
-
},
|
|
1587
|
-
"key": {
|
|
1588
|
-
"description": "Space key(s) head in hex.",
|
|
1589
|
-
"name": "key",
|
|
1590
|
-
"hasDynamicHelp": false,
|
|
1591
|
-
"multiple": true,
|
|
1592
|
-
"type": "option"
|
|
1593
1576
|
}
|
|
1594
1577
|
},
|
|
1595
1578
|
"hasDynamicHelp": false,
|
|
1596
1579
|
"hiddenAliases": [],
|
|
1597
|
-
"id": "
|
|
1580
|
+
"id": "app:list",
|
|
1598
1581
|
"pluginAlias": "@dxos/cli",
|
|
1599
1582
|
"pluginName": "@dxos/cli",
|
|
1600
1583
|
"pluginType": "core",
|
|
1584
|
+
"state": "deprecated",
|
|
1601
1585
|
"strict": true,
|
|
1602
1586
|
"enableJsonFlag": true,
|
|
1603
1587
|
"isESM": false,
|
|
@@ -1605,14 +1589,20 @@
|
|
|
1605
1589
|
"dist",
|
|
1606
1590
|
"src",
|
|
1607
1591
|
"commands",
|
|
1608
|
-
"
|
|
1609
|
-
"
|
|
1592
|
+
"app",
|
|
1593
|
+
"list.js"
|
|
1610
1594
|
]
|
|
1611
1595
|
},
|
|
1612
|
-
"
|
|
1596
|
+
"app:open": {
|
|
1613
1597
|
"aliases": [],
|
|
1614
|
-
"args": {
|
|
1615
|
-
|
|
1598
|
+
"args": {
|
|
1599
|
+
"url": {
|
|
1600
|
+
"description": "App URL.",
|
|
1601
|
+
"name": "url",
|
|
1602
|
+
"required": true
|
|
1603
|
+
}
|
|
1604
|
+
},
|
|
1605
|
+
"description": "Opens app with provided url and process device invitation.",
|
|
1616
1606
|
"flags": {
|
|
1617
1607
|
"json": {
|
|
1618
1608
|
"description": "Output as JSON.",
|
|
@@ -1703,27 +1693,28 @@
|
|
|
1703
1693
|
"multiple": false,
|
|
1704
1694
|
"type": "option"
|
|
1705
1695
|
},
|
|
1706
|
-
"
|
|
1707
|
-
"description": "
|
|
1708
|
-
"name": "
|
|
1709
|
-
"
|
|
1710
|
-
"multiple": true,
|
|
1711
|
-
"type": "option"
|
|
1712
|
-
},
|
|
1713
|
-
"type": {
|
|
1714
|
-
"description": "Data type.",
|
|
1715
|
-
"name": "type",
|
|
1696
|
+
"instances": {
|
|
1697
|
+
"description": "Amount of test instances.",
|
|
1698
|
+
"name": "instances",
|
|
1699
|
+
"default": 1,
|
|
1716
1700
|
"hasDynamicHelp": false,
|
|
1717
1701
|
"multiple": false,
|
|
1718
1702
|
"type": "option"
|
|
1703
|
+
},
|
|
1704
|
+
"invite": {
|
|
1705
|
+
"description": "If `true` proceed device invitation for all instances.",
|
|
1706
|
+
"name": "invite",
|
|
1707
|
+
"allowNo": false,
|
|
1708
|
+
"type": "boolean"
|
|
1719
1709
|
}
|
|
1720
1710
|
},
|
|
1721
1711
|
"hasDynamicHelp": false,
|
|
1722
1712
|
"hiddenAliases": [],
|
|
1723
|
-
"id": "
|
|
1713
|
+
"id": "app:open",
|
|
1724
1714
|
"pluginAlias": "@dxos/cli",
|
|
1725
1715
|
"pluginName": "@dxos/cli",
|
|
1726
1716
|
"pluginType": "core",
|
|
1717
|
+
"state": "deprecated",
|
|
1727
1718
|
"strict": true,
|
|
1728
1719
|
"enableJsonFlag": true,
|
|
1729
1720
|
"isESM": false,
|
|
@@ -1731,14 +1722,14 @@
|
|
|
1731
1722
|
"dist",
|
|
1732
1723
|
"src",
|
|
1733
1724
|
"commands",
|
|
1734
|
-
"
|
|
1735
|
-
"
|
|
1725
|
+
"app",
|
|
1726
|
+
"open.js"
|
|
1736
1727
|
]
|
|
1737
1728
|
},
|
|
1738
|
-
"
|
|
1729
|
+
"app:publish": {
|
|
1739
1730
|
"aliases": [],
|
|
1740
1731
|
"args": {},
|
|
1741
|
-
"description": "
|
|
1732
|
+
"description": "Publish apps.",
|
|
1742
1733
|
"flags": {
|
|
1743
1734
|
"json": {
|
|
1744
1735
|
"description": "Output as JSON.",
|
|
@@ -1829,16 +1820,29 @@
|
|
|
1829
1820
|
"multiple": false,
|
|
1830
1821
|
"type": "option"
|
|
1831
1822
|
},
|
|
1832
|
-
"
|
|
1833
|
-
"description": "
|
|
1834
|
-
"name": "
|
|
1823
|
+
"configPath": {
|
|
1824
|
+
"description": "Path to dx.yml",
|
|
1825
|
+
"name": "configPath",
|
|
1835
1826
|
"hasDynamicHelp": false,
|
|
1836
|
-
"multiple":
|
|
1827
|
+
"multiple": false,
|
|
1837
1828
|
"type": "option"
|
|
1838
1829
|
},
|
|
1839
|
-
"
|
|
1840
|
-
"
|
|
1841
|
-
"
|
|
1830
|
+
"accessToken": {
|
|
1831
|
+
"description": "Access token for publishing.",
|
|
1832
|
+
"name": "accessToken",
|
|
1833
|
+
"hasDynamicHelp": false,
|
|
1834
|
+
"multiple": false,
|
|
1835
|
+
"type": "option"
|
|
1836
|
+
},
|
|
1837
|
+
"skipExisting": {
|
|
1838
|
+
"description": "Do not update content on KUBE if version already exists.",
|
|
1839
|
+
"name": "skipExisting",
|
|
1840
|
+
"allowNo": false,
|
|
1841
|
+
"type": "boolean"
|
|
1842
|
+
},
|
|
1843
|
+
"version": {
|
|
1844
|
+
"description": "Version of modules to publish.",
|
|
1845
|
+
"name": "version",
|
|
1842
1846
|
"hasDynamicHelp": false,
|
|
1843
1847
|
"multiple": false,
|
|
1844
1848
|
"type": "option"
|
|
@@ -1846,10 +1850,11 @@
|
|
|
1846
1850
|
},
|
|
1847
1851
|
"hasDynamicHelp": false,
|
|
1848
1852
|
"hiddenAliases": [],
|
|
1849
|
-
"id": "
|
|
1853
|
+
"id": "app:publish",
|
|
1850
1854
|
"pluginAlias": "@dxos/cli",
|
|
1851
1855
|
"pluginName": "@dxos/cli",
|
|
1852
1856
|
"pluginType": "core",
|
|
1857
|
+
"state": "deprecated",
|
|
1853
1858
|
"strict": true,
|
|
1854
1859
|
"enableJsonFlag": true,
|
|
1855
1860
|
"isESM": false,
|
|
@@ -1857,8 +1862,8 @@
|
|
|
1857
1862
|
"dist",
|
|
1858
1863
|
"src",
|
|
1859
1864
|
"commands",
|
|
1860
|
-
"
|
|
1861
|
-
"
|
|
1865
|
+
"app",
|
|
1866
|
+
"publish.js"
|
|
1862
1867
|
]
|
|
1863
1868
|
},
|
|
1864
1869
|
"config": {
|
|
@@ -3423,6 +3428,142 @@
|
|
|
3423
3428
|
"logs.js"
|
|
3424
3429
|
]
|
|
3425
3430
|
},
|
|
3431
|
+
"function:trigger": {
|
|
3432
|
+
"aliases": [],
|
|
3433
|
+
"args": {},
|
|
3434
|
+
"description": "List and manage triggers.",
|
|
3435
|
+
"flags": {
|
|
3436
|
+
"json": {
|
|
3437
|
+
"description": "Output as JSON.",
|
|
3438
|
+
"name": "json",
|
|
3439
|
+
"allowNo": false,
|
|
3440
|
+
"type": "boolean"
|
|
3441
|
+
},
|
|
3442
|
+
"dry-run": {
|
|
3443
|
+
"description": "Dry run.",
|
|
3444
|
+
"name": "dry-run",
|
|
3445
|
+
"allowNo": false,
|
|
3446
|
+
"type": "boolean"
|
|
3447
|
+
},
|
|
3448
|
+
"verbose": {
|
|
3449
|
+
"char": "v",
|
|
3450
|
+
"description": "Verbose output",
|
|
3451
|
+
"name": "verbose",
|
|
3452
|
+
"allowNo": false,
|
|
3453
|
+
"type": "boolean"
|
|
3454
|
+
},
|
|
3455
|
+
"profile": {
|
|
3456
|
+
"description": "User profile.",
|
|
3457
|
+
"env": "DX_PROFILE",
|
|
3458
|
+
"name": "profile",
|
|
3459
|
+
"default": "default",
|
|
3460
|
+
"hasDynamicHelp": false,
|
|
3461
|
+
"multiple": false,
|
|
3462
|
+
"type": "option"
|
|
3463
|
+
},
|
|
3464
|
+
"config": {
|
|
3465
|
+
"aliases": [
|
|
3466
|
+
"c"
|
|
3467
|
+
],
|
|
3468
|
+
"dependsOn": [
|
|
3469
|
+
"profile"
|
|
3470
|
+
],
|
|
3471
|
+
"description": "Config file.",
|
|
3472
|
+
"env": "DX_CONFIG",
|
|
3473
|
+
"name": "config",
|
|
3474
|
+
"default": "/home/runner/.config/dx/profile/default.yml",
|
|
3475
|
+
"hasDynamicHelp": false,
|
|
3476
|
+
"helpValue": "path",
|
|
3477
|
+
"multiple": false,
|
|
3478
|
+
"type": "option"
|
|
3479
|
+
},
|
|
3480
|
+
"target": {
|
|
3481
|
+
"description": "Target websocket server.",
|
|
3482
|
+
"name": "target",
|
|
3483
|
+
"hasDynamicHelp": false,
|
|
3484
|
+
"multiple": false,
|
|
3485
|
+
"type": "option"
|
|
3486
|
+
},
|
|
3487
|
+
"no-agent": {
|
|
3488
|
+
"description": "Run command without starting an agent.",
|
|
3489
|
+
"env": "DX_NO_AGENT",
|
|
3490
|
+
"name": "no-agent",
|
|
3491
|
+
"allowNo": false,
|
|
3492
|
+
"type": "boolean"
|
|
3493
|
+
},
|
|
3494
|
+
"timeout": {
|
|
3495
|
+
"aliases": [
|
|
3496
|
+
"t"
|
|
3497
|
+
],
|
|
3498
|
+
"description": "Timeout (ms).",
|
|
3499
|
+
"name": "timeout",
|
|
3500
|
+
"default": 60000,
|
|
3501
|
+
"hasDynamicHelp": false,
|
|
3502
|
+
"multiple": false,
|
|
3503
|
+
"type": "option"
|
|
3504
|
+
},
|
|
3505
|
+
"no-wait": {
|
|
3506
|
+
"description": "Do not wait for space to be ready.",
|
|
3507
|
+
"name": "no-wait",
|
|
3508
|
+
"allowNo": false,
|
|
3509
|
+
"type": "boolean"
|
|
3510
|
+
},
|
|
3511
|
+
"json-log": {
|
|
3512
|
+
"description": "When running in foreground, log JSON format",
|
|
3513
|
+
"name": "json-log",
|
|
3514
|
+
"allowNo": false,
|
|
3515
|
+
"type": "boolean"
|
|
3516
|
+
},
|
|
3517
|
+
"json-logfile": {
|
|
3518
|
+
"description": "JSON log file destination, or 'stdout' or 'stderr'",
|
|
3519
|
+
"name": "json-logfile",
|
|
3520
|
+
"default": "stderr",
|
|
3521
|
+
"hasDynamicHelp": false,
|
|
3522
|
+
"multiple": false,
|
|
3523
|
+
"type": "option"
|
|
3524
|
+
},
|
|
3525
|
+
"id": {
|
|
3526
|
+
"description": "Trigger id",
|
|
3527
|
+
"name": "id",
|
|
3528
|
+
"hasDynamicHelp": false,
|
|
3529
|
+
"multiple": false,
|
|
3530
|
+
"type": "option"
|
|
3531
|
+
},
|
|
3532
|
+
"enable": {
|
|
3533
|
+
"description": "Enable trigger(s)",
|
|
3534
|
+
"name": "enable",
|
|
3535
|
+
"allowNo": false,
|
|
3536
|
+
"type": "boolean"
|
|
3537
|
+
},
|
|
3538
|
+
"disable": {
|
|
3539
|
+
"description": "Disable trigger(s)",
|
|
3540
|
+
"name": "disable",
|
|
3541
|
+
"allowNo": false,
|
|
3542
|
+
"type": "boolean"
|
|
3543
|
+
},
|
|
3544
|
+
"extended": {
|
|
3545
|
+
"name": "extended",
|
|
3546
|
+
"allowNo": false,
|
|
3547
|
+
"type": "boolean"
|
|
3548
|
+
}
|
|
3549
|
+
},
|
|
3550
|
+
"hasDynamicHelp": false,
|
|
3551
|
+
"hiddenAliases": [],
|
|
3552
|
+
"id": "function:trigger",
|
|
3553
|
+
"pluginAlias": "@dxos/cli",
|
|
3554
|
+
"pluginName": "@dxos/cli",
|
|
3555
|
+
"pluginType": "core",
|
|
3556
|
+
"strict": true,
|
|
3557
|
+
"enableJsonFlag": true,
|
|
3558
|
+
"isESM": false,
|
|
3559
|
+
"relativePath": [
|
|
3560
|
+
"dist",
|
|
3561
|
+
"src",
|
|
3562
|
+
"commands",
|
|
3563
|
+
"function",
|
|
3564
|
+
"trigger.js"
|
|
3565
|
+
]
|
|
3566
|
+
},
|
|
3426
3567
|
"halo:create": {
|
|
3427
3568
|
"aliases": [],
|
|
3428
3569
|
"args": {
|
|
@@ -4011,7 +4152,7 @@
|
|
|
4011
4152
|
"lifetime": {
|
|
4012
4153
|
"description": "Lifetime of the invitation in seconds",
|
|
4013
4154
|
"name": "lifetime",
|
|
4014
|
-
"default":
|
|
4155
|
+
"default": 43200,
|
|
4015
4156
|
"hasDynamicHelp": false,
|
|
4016
4157
|
"multiple": false,
|
|
4017
4158
|
"type": "option"
|
|
@@ -5904,7 +6045,7 @@
|
|
|
5904
6045
|
"name": {
|
|
5905
6046
|
"description": "Tunnel name",
|
|
5906
6047
|
"name": "name",
|
|
5907
|
-
"default": "
|
|
6048
|
+
"default": "seven-kitten-papa-johnny",
|
|
5908
6049
|
"hasDynamicHelp": false,
|
|
5909
6050
|
"multiple": false,
|
|
5910
6051
|
"type": "option"
|
|
@@ -6363,5 +6504,5 @@
|
|
|
6363
6504
|
]
|
|
6364
6505
|
}
|
|
6365
6506
|
},
|
|
6366
|
-
"version": "0.5.4-main.
|
|
6507
|
+
"version": "0.5.4-main.971f8a3"
|
|
6367
6508
|
}
|