@dxos/cli 0.5.9-main.b89a78b → 0.5.9-main.b8d8fee

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.
Files changed (2) hide show
  1. package/oclif.manifest.json +105 -105
  2. package/package.json +27 -27
@@ -839,10 +839,16 @@
839
839
  "stop.js"
840
840
  ]
841
841
  },
842
- "config": {
842
+ "app:create": {
843
843
  "aliases": [],
844
- "args": {},
845
- "description": "Show config file.",
844
+ "args": {
845
+ "name": {
846
+ "description": "App name.",
847
+ "name": "name",
848
+ "required": true
849
+ }
850
+ },
851
+ "description": "Manage applications (deprecated).",
846
852
  "flags": {
847
853
  "json": {
848
854
  "description": "Output as JSON.",
@@ -926,35 +932,57 @@
926
932
  "hasDynamicHelp": false,
927
933
  "multiple": false,
928
934
  "type": "option"
935
+ },
936
+ "tag": {
937
+ "description": "Git tag or branch of the DXOS repo to checkout.",
938
+ "name": "tag",
939
+ "hasDynamicHelp": false,
940
+ "multiple": false,
941
+ "type": "option"
942
+ },
943
+ "template": {
944
+ "char": "t",
945
+ "description": "Template to use when creating the project.",
946
+ "name": "template",
947
+ "default": "hello",
948
+ "hasDynamicHelp": false,
949
+ "multiple": false,
950
+ "options": [
951
+ "hello",
952
+ "bare",
953
+ "tasks"
954
+ ],
955
+ "type": "option"
956
+ },
957
+ "interactive": {
958
+ "char": "i",
959
+ "description": "Customize app template options via interactive prompt.",
960
+ "name": "interactive",
961
+ "allowNo": false,
962
+ "type": "boolean"
929
963
  }
930
964
  },
931
965
  "hasDynamicHelp": false,
932
966
  "hiddenAliases": [],
933
- "id": "config",
967
+ "id": "app:create",
934
968
  "pluginAlias": "@dxos/cli",
935
969
  "pluginName": "@dxos/cli",
936
970
  "pluginType": "core",
971
+ "state": "deprecated",
937
972
  "strict": true,
938
- "enableJsonFlag": true,
939
973
  "isESM": false,
940
974
  "relativePath": [
941
975
  "dist",
942
976
  "src",
943
977
  "commands",
944
- "config",
945
- "index.js"
978
+ "app",
979
+ "create.js"
946
980
  ]
947
981
  },
948
- "app:create": {
982
+ "app:list": {
949
983
  "aliases": [],
950
- "args": {
951
- "name": {
952
- "description": "App name.",
953
- "name": "name",
954
- "required": true
955
- }
956
- },
957
- "description": "Manage applications (deprecated).",
984
+ "args": {},
985
+ "description": "List apps.",
958
986
  "flags": {
959
987
  "json": {
960
988
  "description": "Output as JSON.",
@@ -1039,56 +1067,41 @@
1039
1067
  "multiple": false,
1040
1068
  "type": "option"
1041
1069
  },
1042
- "tag": {
1043
- "description": "Git tag or branch of the DXOS repo to checkout.",
1044
- "name": "tag",
1045
- "hasDynamicHelp": false,
1046
- "multiple": false,
1047
- "type": "option"
1048
- },
1049
- "template": {
1050
- "char": "t",
1051
- "description": "Template to use when creating the project.",
1052
- "name": "template",
1053
- "default": "hello",
1054
- "hasDynamicHelp": false,
1055
- "multiple": false,
1056
- "options": [
1057
- "hello",
1058
- "bare",
1059
- "tasks"
1060
- ],
1061
- "type": "option"
1062
- },
1063
- "interactive": {
1064
- "char": "i",
1065
- "description": "Customize app template options via interactive prompt.",
1066
- "name": "interactive",
1070
+ "extended": {
1071
+ "description": "Show extended table columns.",
1072
+ "name": "extended",
1067
1073
  "allowNo": false,
1068
1074
  "type": "boolean"
1069
1075
  }
1070
1076
  },
1071
1077
  "hasDynamicHelp": false,
1072
1078
  "hiddenAliases": [],
1073
- "id": "app:create",
1079
+ "id": "app:list",
1074
1080
  "pluginAlias": "@dxos/cli",
1075
1081
  "pluginName": "@dxos/cli",
1076
1082
  "pluginType": "core",
1077
1083
  "state": "deprecated",
1078
1084
  "strict": true,
1085
+ "enableJsonFlag": true,
1079
1086
  "isESM": false,
1080
1087
  "relativePath": [
1081
1088
  "dist",
1082
1089
  "src",
1083
1090
  "commands",
1084
1091
  "app",
1085
- "create.js"
1092
+ "list.js"
1086
1093
  ]
1087
1094
  },
1088
- "app:list": {
1095
+ "app:open": {
1089
1096
  "aliases": [],
1090
- "args": {},
1091
- "description": "List apps.",
1097
+ "args": {
1098
+ "url": {
1099
+ "description": "App URL.",
1100
+ "name": "url",
1101
+ "required": true
1102
+ }
1103
+ },
1104
+ "description": "Opens app with provided url and process device invitation.",
1092
1105
  "flags": {
1093
1106
  "json": {
1094
1107
  "description": "Output as JSON.",
@@ -1173,16 +1186,24 @@
1173
1186
  "multiple": false,
1174
1187
  "type": "option"
1175
1188
  },
1176
- "extended": {
1177
- "description": "Show extended table columns.",
1178
- "name": "extended",
1189
+ "instances": {
1190
+ "description": "Amount of test instances.",
1191
+ "name": "instances",
1192
+ "default": 1,
1193
+ "hasDynamicHelp": false,
1194
+ "multiple": false,
1195
+ "type": "option"
1196
+ },
1197
+ "invite": {
1198
+ "description": "If `true` proceed device invitation for all instances.",
1199
+ "name": "invite",
1179
1200
  "allowNo": false,
1180
1201
  "type": "boolean"
1181
1202
  }
1182
1203
  },
1183
1204
  "hasDynamicHelp": false,
1184
1205
  "hiddenAliases": [],
1185
- "id": "app:list",
1206
+ "id": "app:open",
1186
1207
  "pluginAlias": "@dxos/cli",
1187
1208
  "pluginName": "@dxos/cli",
1188
1209
  "pluginType": "core",
@@ -1195,19 +1216,13 @@
1195
1216
  "src",
1196
1217
  "commands",
1197
1218
  "app",
1198
- "list.js"
1219
+ "open.js"
1199
1220
  ]
1200
1221
  },
1201
- "app:open": {
1222
+ "app:publish": {
1202
1223
  "aliases": [],
1203
- "args": {
1204
- "url": {
1205
- "description": "App URL.",
1206
- "name": "url",
1207
- "required": true
1208
- }
1209
- },
1210
- "description": "Opens app with provided url and process device invitation.",
1224
+ "args": {},
1225
+ "description": "Publish apps.",
1211
1226
  "flags": {
1212
1227
  "json": {
1213
1228
  "description": "Output as JSON.",
@@ -1292,43 +1307,55 @@
1292
1307
  "multiple": false,
1293
1308
  "type": "option"
1294
1309
  },
1295
- "instances": {
1296
- "description": "Amount of test instances.",
1297
- "name": "instances",
1298
- "default": 1,
1310
+ "configPath": {
1311
+ "description": "Path to dx.yml",
1312
+ "name": "configPath",
1299
1313
  "hasDynamicHelp": false,
1300
1314
  "multiple": false,
1301
1315
  "type": "option"
1302
1316
  },
1303
- "invite": {
1304
- "description": "If `true` proceed device invitation for all instances.",
1305
- "name": "invite",
1317
+ "accessToken": {
1318
+ "description": "Access token for publishing.",
1319
+ "name": "accessToken",
1320
+ "hasDynamicHelp": false,
1321
+ "multiple": false,
1322
+ "type": "option"
1323
+ },
1324
+ "skipExisting": {
1325
+ "description": "Do not update content on KUBE if version already exists.",
1326
+ "name": "skipExisting",
1306
1327
  "allowNo": false,
1307
1328
  "type": "boolean"
1329
+ },
1330
+ "version": {
1331
+ "description": "Version of modules to publish.",
1332
+ "name": "version",
1333
+ "hasDynamicHelp": false,
1334
+ "multiple": false,
1335
+ "type": "option"
1308
1336
  }
1309
1337
  },
1310
1338
  "hasDynamicHelp": false,
1311
1339
  "hiddenAliases": [],
1312
- "id": "app:open",
1340
+ "id": "app:publish",
1313
1341
  "pluginAlias": "@dxos/cli",
1314
1342
  "pluginName": "@dxos/cli",
1315
1343
  "pluginType": "core",
1316
1344
  "state": "deprecated",
1317
1345
  "strict": true,
1318
- "enableJsonFlag": true,
1319
1346
  "isESM": false,
1320
1347
  "relativePath": [
1321
1348
  "dist",
1322
1349
  "src",
1323
1350
  "commands",
1324
1351
  "app",
1325
- "open.js"
1352
+ "publish.js"
1326
1353
  ]
1327
1354
  },
1328
- "app:publish": {
1355
+ "config": {
1329
1356
  "aliases": [],
1330
1357
  "args": {},
1331
- "description": "Publish apps.",
1358
+ "description": "Show config file.",
1332
1359
  "flags": {
1333
1360
  "json": {
1334
1361
  "description": "Output as JSON.",
@@ -1412,50 +1439,23 @@
1412
1439
  "hasDynamicHelp": false,
1413
1440
  "multiple": false,
1414
1441
  "type": "option"
1415
- },
1416
- "configPath": {
1417
- "description": "Path to dx.yml",
1418
- "name": "configPath",
1419
- "hasDynamicHelp": false,
1420
- "multiple": false,
1421
- "type": "option"
1422
- },
1423
- "accessToken": {
1424
- "description": "Access token for publishing.",
1425
- "name": "accessToken",
1426
- "hasDynamicHelp": false,
1427
- "multiple": false,
1428
- "type": "option"
1429
- },
1430
- "skipExisting": {
1431
- "description": "Do not update content on KUBE if version already exists.",
1432
- "name": "skipExisting",
1433
- "allowNo": false,
1434
- "type": "boolean"
1435
- },
1436
- "version": {
1437
- "description": "Version of modules to publish.",
1438
- "name": "version",
1439
- "hasDynamicHelp": false,
1440
- "multiple": false,
1441
- "type": "option"
1442
1442
  }
1443
1443
  },
1444
1444
  "hasDynamicHelp": false,
1445
1445
  "hiddenAliases": [],
1446
- "id": "app:publish",
1446
+ "id": "config",
1447
1447
  "pluginAlias": "@dxos/cli",
1448
1448
  "pluginName": "@dxos/cli",
1449
1449
  "pluginType": "core",
1450
- "state": "deprecated",
1451
1450
  "strict": true,
1451
+ "enableJsonFlag": true,
1452
1452
  "isESM": false,
1453
1453
  "relativePath": [
1454
1454
  "dist",
1455
1455
  "src",
1456
1456
  "commands",
1457
- "app",
1458
- "publish.js"
1457
+ "config",
1458
+ "index.js"
1459
1459
  ]
1460
1460
  },
1461
1461
  "debug:diagnostics": {
@@ -4996,7 +4996,7 @@
4996
4996
  "name": {
4997
4997
  "description": "Tunnel name",
4998
4998
  "name": "name",
4999
- "default": "oscar-alanine-kitten-lemon",
4999
+ "default": "lamp-vermont-bacon-lamp",
5000
5000
  "hasDynamicHelp": false,
5001
5001
  "multiple": false,
5002
5002
  "type": "option"
@@ -5629,5 +5629,5 @@
5629
5629
  ]
5630
5630
  }
5631
5631
  },
5632
- "version": "0.5.9-main.b89a78b"
5632
+ "version": "0.5.9-main.b8d8fee"
5633
5633
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dxos/cli",
3
- "version": "0.5.9-main.b89a78b",
3
+ "version": "0.5.9-main.b8d8fee",
4
4
  "description": "DXOS CLI",
5
5
  "keywords": [
6
6
  "dxos",
@@ -52,32 +52,32 @@
52
52
  "uuid": "^8.3.2",
53
53
  "ws": "^8.14.2",
54
54
  "wtfnode": "^0.9.1",
55
- "@dxos/agent": "0.5.9-main.b89a78b",
56
- "@dxos/async": "0.5.9-main.b89a78b",
57
- "@dxos/bare-template": "0.5.9-main.b89a78b",
58
- "@dxos/cli-base": "0.5.9-main.b89a78b",
59
- "@dxos/cli-composer": "0.5.9-main.b89a78b",
60
- "@dxos/client-protocol": "0.5.9-main.b89a78b",
61
- "@dxos/client": "0.5.9-main.b89a78b",
62
- "@dxos/client-services": "0.5.9-main.b89a78b",
63
- "@dxos/config": "0.5.9-main.b89a78b",
64
- "@dxos/context": "0.5.9-main.b89a78b",
65
- "@dxos/debug": "0.5.9-main.b89a78b",
66
- "@dxos/echo-schema": "0.5.9-main.b89a78b",
67
- "@dxos/functions": "0.5.9-main.b89a78b",
68
- "@dxos/hello-template": "0.5.9-main.b89a78b",
69
- "@dxos/log": "0.5.9-main.b89a78b",
70
- "@dxos/invariant": "0.5.9-main.b89a78b",
71
- "@dxos/network-manager": "0.5.9-main.b89a78b",
72
- "@dxos/node-std": "0.5.9-main.b89a78b",
73
- "@dxos/observability": "0.5.9-main.b89a78b",
74
- "@dxos/plate": "0.5.9-main.b89a78b",
75
- "@dxos/random": "0.5.9-main.b89a78b",
76
- "@dxos/rpc": "0.5.9-main.b89a78b",
77
- "@dxos/process": "0.5.9-main.b89a78b",
78
- "@dxos/tasks-template": "0.5.9-main.b89a78b",
79
- "@dxos/protocols": "0.5.9-main.b89a78b",
80
- "@dxos/util": "0.5.9-main.b89a78b"
55
+ "@dxos/agent": "0.5.9-main.b8d8fee",
56
+ "@dxos/async": "0.5.9-main.b8d8fee",
57
+ "@dxos/cli-base": "0.5.9-main.b8d8fee",
58
+ "@dxos/bare-template": "0.5.9-main.b8d8fee",
59
+ "@dxos/cli-composer": "0.5.9-main.b8d8fee",
60
+ "@dxos/client": "0.5.9-main.b8d8fee",
61
+ "@dxos/client-protocol": "0.5.9-main.b8d8fee",
62
+ "@dxos/config": "0.5.9-main.b8d8fee",
63
+ "@dxos/debug": "0.5.9-main.b8d8fee",
64
+ "@dxos/context": "0.5.9-main.b8d8fee",
65
+ "@dxos/client-services": "0.5.9-main.b8d8fee",
66
+ "@dxos/echo-schema": "0.5.9-main.b8d8fee",
67
+ "@dxos/hello-template": "0.5.9-main.b8d8fee",
68
+ "@dxos/functions": "0.5.9-main.b8d8fee",
69
+ "@dxos/invariant": "0.5.9-main.b8d8fee",
70
+ "@dxos/log": "0.5.9-main.b8d8fee",
71
+ "@dxos/network-manager": "0.5.9-main.b8d8fee",
72
+ "@dxos/node-std": "0.5.9-main.b8d8fee",
73
+ "@dxos/observability": "0.5.9-main.b8d8fee",
74
+ "@dxos/plate": "0.5.9-main.b8d8fee",
75
+ "@dxos/process": "0.5.9-main.b8d8fee",
76
+ "@dxos/protocols": "0.5.9-main.b8d8fee",
77
+ "@dxos/random": "0.5.9-main.b8d8fee",
78
+ "@dxos/tasks-template": "0.5.9-main.b8d8fee",
79
+ "@dxos/rpc": "0.5.9-main.b8d8fee",
80
+ "@dxos/util": "0.5.9-main.b8d8fee"
81
81
  },
82
82
  "devDependencies": {
83
83
  "@effect/schema": "^0.67.16",