@dxos/cli 0.2.0 → 0.2.1-main.1c7a1b5
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/README.md +2 -247
- package/dist/src/util/telemetry.d.ts +3 -3
- package/dist/src/util/telemetry.d.ts.map +1 -1
- package/dist/src/util/telemetryrc.json +4 -4
- package/oclif.manifest.json +2 -2
- package/package.json +21 -23
package/README.md
CHANGED
|
@@ -92,7 +92,7 @@ $ npm install -g @dxos/cli
|
|
|
92
92
|
$ dx COMMAND
|
|
93
93
|
running command...
|
|
94
94
|
$ dx (--version)
|
|
95
|
-
@dxos/cli/0.2.
|
|
95
|
+
@dxos/cli/0.2.1-main.1c7a1b5 linux-x64 node-v18.17.1
|
|
96
96
|
$ dx --help [COMMAND]
|
|
97
97
|
USAGE
|
|
98
98
|
$ dx COMMAND
|
|
@@ -132,15 +132,6 @@ USAGE
|
|
|
132
132
|
* [`dx help [COMMANDS]`](#dx-help-commands)
|
|
133
133
|
* [`dx kube auth`](#dx-kube-auth)
|
|
134
134
|
* [`dx kube deploy`](#dx-kube-deploy)
|
|
135
|
-
* [`dx plugins`](#dx-plugins)
|
|
136
|
-
* [`dx plugins:install PLUGIN...`](#dx-pluginsinstall-plugin)
|
|
137
|
-
* [`dx plugins:inspect PLUGIN...`](#dx-pluginsinspect-plugin)
|
|
138
|
-
* [`dx plugins:install PLUGIN...`](#dx-pluginsinstall-plugin-1)
|
|
139
|
-
* [`dx plugins:link PLUGIN`](#dx-pluginslink-plugin)
|
|
140
|
-
* [`dx plugins:uninstall PLUGIN...`](#dx-pluginsuninstall-plugin)
|
|
141
|
-
* [`dx plugins:uninstall PLUGIN...`](#dx-pluginsuninstall-plugin-1)
|
|
142
|
-
* [`dx plugins:uninstall PLUGIN...`](#dx-pluginsuninstall-plugin-2)
|
|
143
|
-
* [`dx plugins update`](#dx-plugins-update)
|
|
144
135
|
* [`dx reset`](#dx-reset)
|
|
145
136
|
* [`dx shell`](#dx-shell)
|
|
146
137
|
* [`dx space close [KEY]`](#dx-space-close-key)
|
|
@@ -967,242 +958,6 @@ DESCRIPTION
|
|
|
967
958
|
Deploy KUBE.
|
|
968
959
|
```
|
|
969
960
|
|
|
970
|
-
## `dx plugins`
|
|
971
|
-
|
|
972
|
-
List installed plugins.
|
|
973
|
-
|
|
974
|
-
```
|
|
975
|
-
USAGE
|
|
976
|
-
$ dx plugins [--json] [--core]
|
|
977
|
-
|
|
978
|
-
FLAGS
|
|
979
|
-
--core Show core plugins.
|
|
980
|
-
|
|
981
|
-
GLOBAL FLAGS
|
|
982
|
-
--json Format output as json.
|
|
983
|
-
|
|
984
|
-
DESCRIPTION
|
|
985
|
-
List installed plugins.
|
|
986
|
-
|
|
987
|
-
EXAMPLES
|
|
988
|
-
$ dx plugins
|
|
989
|
-
```
|
|
990
|
-
|
|
991
|
-
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v3.1.8/src/commands/plugins/index.ts)_
|
|
992
|
-
|
|
993
|
-
## `dx plugins:install PLUGIN...`
|
|
994
|
-
|
|
995
|
-
Installs a plugin into the CLI.
|
|
996
|
-
|
|
997
|
-
```
|
|
998
|
-
USAGE
|
|
999
|
-
$ dx plugins:install PLUGIN...
|
|
1000
|
-
|
|
1001
|
-
ARGUMENTS
|
|
1002
|
-
PLUGIN Plugin to install.
|
|
1003
|
-
|
|
1004
|
-
FLAGS
|
|
1005
|
-
-f, --force Run yarn install with force flag.
|
|
1006
|
-
-h, --help Show CLI help.
|
|
1007
|
-
-v, --verbose
|
|
1008
|
-
|
|
1009
|
-
DESCRIPTION
|
|
1010
|
-
Installs a plugin into the CLI.
|
|
1011
|
-
Can be installed from npm or a git url.
|
|
1012
|
-
|
|
1013
|
-
Installation of a user-installed plugin will override a core plugin.
|
|
1014
|
-
|
|
1015
|
-
e.g. If you have a core plugin that has a 'hello' command, installing a user-installed plugin with a 'hello' command
|
|
1016
|
-
will override the core plugin implementation. This is useful if a user needs to update core plugin functionality in
|
|
1017
|
-
the CLI without the need to patch and update the whole CLI.
|
|
1018
|
-
|
|
1019
|
-
|
|
1020
|
-
ALIASES
|
|
1021
|
-
$ dx plugins add
|
|
1022
|
-
|
|
1023
|
-
EXAMPLES
|
|
1024
|
-
$ dx plugins:install myplugin
|
|
1025
|
-
|
|
1026
|
-
$ dx plugins:install https://github.com/someuser/someplugin
|
|
1027
|
-
|
|
1028
|
-
$ dx plugins:install someuser/someplugin
|
|
1029
|
-
```
|
|
1030
|
-
|
|
1031
|
-
## `dx plugins:inspect PLUGIN...`
|
|
1032
|
-
|
|
1033
|
-
Displays installation properties of a plugin.
|
|
1034
|
-
|
|
1035
|
-
```
|
|
1036
|
-
USAGE
|
|
1037
|
-
$ dx plugins:inspect PLUGIN...
|
|
1038
|
-
|
|
1039
|
-
ARGUMENTS
|
|
1040
|
-
PLUGIN [default: .] Plugin to inspect.
|
|
1041
|
-
|
|
1042
|
-
FLAGS
|
|
1043
|
-
-h, --help Show CLI help.
|
|
1044
|
-
-v, --verbose
|
|
1045
|
-
|
|
1046
|
-
GLOBAL FLAGS
|
|
1047
|
-
--json Format output as json.
|
|
1048
|
-
|
|
1049
|
-
DESCRIPTION
|
|
1050
|
-
Displays installation properties of a plugin.
|
|
1051
|
-
|
|
1052
|
-
EXAMPLES
|
|
1053
|
-
$ dx plugins:inspect myplugin
|
|
1054
|
-
```
|
|
1055
|
-
|
|
1056
|
-
## `dx plugins:install PLUGIN...`
|
|
1057
|
-
|
|
1058
|
-
Installs a plugin into the CLI.
|
|
1059
|
-
|
|
1060
|
-
```
|
|
1061
|
-
USAGE
|
|
1062
|
-
$ dx plugins:install PLUGIN...
|
|
1063
|
-
|
|
1064
|
-
ARGUMENTS
|
|
1065
|
-
PLUGIN Plugin to install.
|
|
1066
|
-
|
|
1067
|
-
FLAGS
|
|
1068
|
-
-f, --force Run yarn install with force flag.
|
|
1069
|
-
-h, --help Show CLI help.
|
|
1070
|
-
-v, --verbose
|
|
1071
|
-
|
|
1072
|
-
DESCRIPTION
|
|
1073
|
-
Installs a plugin into the CLI.
|
|
1074
|
-
Can be installed from npm or a git url.
|
|
1075
|
-
|
|
1076
|
-
Installation of a user-installed plugin will override a core plugin.
|
|
1077
|
-
|
|
1078
|
-
e.g. If you have a core plugin that has a 'hello' command, installing a user-installed plugin with a 'hello' command
|
|
1079
|
-
will override the core plugin implementation. This is useful if a user needs to update core plugin functionality in
|
|
1080
|
-
the CLI without the need to patch and update the whole CLI.
|
|
1081
|
-
|
|
1082
|
-
|
|
1083
|
-
ALIASES
|
|
1084
|
-
$ dx plugins add
|
|
1085
|
-
|
|
1086
|
-
EXAMPLES
|
|
1087
|
-
$ dx plugins:install myplugin
|
|
1088
|
-
|
|
1089
|
-
$ dx plugins:install https://github.com/someuser/someplugin
|
|
1090
|
-
|
|
1091
|
-
$ dx plugins:install someuser/someplugin
|
|
1092
|
-
```
|
|
1093
|
-
|
|
1094
|
-
## `dx plugins:link PLUGIN`
|
|
1095
|
-
|
|
1096
|
-
Links a plugin into the CLI for development.
|
|
1097
|
-
|
|
1098
|
-
```
|
|
1099
|
-
USAGE
|
|
1100
|
-
$ dx plugins:link PLUGIN
|
|
1101
|
-
|
|
1102
|
-
ARGUMENTS
|
|
1103
|
-
PATH [default: .] path to plugin
|
|
1104
|
-
|
|
1105
|
-
FLAGS
|
|
1106
|
-
-h, --help Show CLI help.
|
|
1107
|
-
-v, --verbose
|
|
1108
|
-
|
|
1109
|
-
DESCRIPTION
|
|
1110
|
-
Links a plugin into the CLI for development.
|
|
1111
|
-
Installation of a linked plugin will override a user-installed or core plugin.
|
|
1112
|
-
|
|
1113
|
-
e.g. If you have a user-installed or core plugin that has a 'hello' command, installing a linked plugin with a 'hello'
|
|
1114
|
-
command will override the user-installed or core plugin implementation. This is useful for development work.
|
|
1115
|
-
|
|
1116
|
-
|
|
1117
|
-
EXAMPLES
|
|
1118
|
-
$ dx plugins:link myplugin
|
|
1119
|
-
```
|
|
1120
|
-
|
|
1121
|
-
## `dx plugins:uninstall PLUGIN...`
|
|
1122
|
-
|
|
1123
|
-
Removes a plugin from the CLI.
|
|
1124
|
-
|
|
1125
|
-
```
|
|
1126
|
-
USAGE
|
|
1127
|
-
$ dx plugins:uninstall PLUGIN...
|
|
1128
|
-
|
|
1129
|
-
ARGUMENTS
|
|
1130
|
-
PLUGIN plugin to uninstall
|
|
1131
|
-
|
|
1132
|
-
FLAGS
|
|
1133
|
-
-h, --help Show CLI help.
|
|
1134
|
-
-v, --verbose
|
|
1135
|
-
|
|
1136
|
-
DESCRIPTION
|
|
1137
|
-
Removes a plugin from the CLI.
|
|
1138
|
-
|
|
1139
|
-
ALIASES
|
|
1140
|
-
$ dx plugins unlink
|
|
1141
|
-
$ dx plugins remove
|
|
1142
|
-
```
|
|
1143
|
-
|
|
1144
|
-
## `dx plugins:uninstall PLUGIN...`
|
|
1145
|
-
|
|
1146
|
-
Removes a plugin from the CLI.
|
|
1147
|
-
|
|
1148
|
-
```
|
|
1149
|
-
USAGE
|
|
1150
|
-
$ dx plugins:uninstall PLUGIN...
|
|
1151
|
-
|
|
1152
|
-
ARGUMENTS
|
|
1153
|
-
PLUGIN plugin to uninstall
|
|
1154
|
-
|
|
1155
|
-
FLAGS
|
|
1156
|
-
-h, --help Show CLI help.
|
|
1157
|
-
-v, --verbose
|
|
1158
|
-
|
|
1159
|
-
DESCRIPTION
|
|
1160
|
-
Removes a plugin from the CLI.
|
|
1161
|
-
|
|
1162
|
-
ALIASES
|
|
1163
|
-
$ dx plugins unlink
|
|
1164
|
-
$ dx plugins remove
|
|
1165
|
-
```
|
|
1166
|
-
|
|
1167
|
-
## `dx plugins:uninstall PLUGIN...`
|
|
1168
|
-
|
|
1169
|
-
Removes a plugin from the CLI.
|
|
1170
|
-
|
|
1171
|
-
```
|
|
1172
|
-
USAGE
|
|
1173
|
-
$ dx plugins:uninstall PLUGIN...
|
|
1174
|
-
|
|
1175
|
-
ARGUMENTS
|
|
1176
|
-
PLUGIN plugin to uninstall
|
|
1177
|
-
|
|
1178
|
-
FLAGS
|
|
1179
|
-
-h, --help Show CLI help.
|
|
1180
|
-
-v, --verbose
|
|
1181
|
-
|
|
1182
|
-
DESCRIPTION
|
|
1183
|
-
Removes a plugin from the CLI.
|
|
1184
|
-
|
|
1185
|
-
ALIASES
|
|
1186
|
-
$ dx plugins unlink
|
|
1187
|
-
$ dx plugins remove
|
|
1188
|
-
```
|
|
1189
|
-
|
|
1190
|
-
## `dx plugins update`
|
|
1191
|
-
|
|
1192
|
-
Update installed plugins.
|
|
1193
|
-
|
|
1194
|
-
```
|
|
1195
|
-
USAGE
|
|
1196
|
-
$ dx plugins update [-h] [-v]
|
|
1197
|
-
|
|
1198
|
-
FLAGS
|
|
1199
|
-
-h, --help Show CLI help.
|
|
1200
|
-
-v, --verbose
|
|
1201
|
-
|
|
1202
|
-
DESCRIPTION
|
|
1203
|
-
Update installed plugins.
|
|
1204
|
-
```
|
|
1205
|
-
|
|
1206
961
|
## `dx reset`
|
|
1207
962
|
|
|
1208
963
|
Reset user data.
|
|
@@ -1542,7 +1297,7 @@ FLAGS
|
|
|
1542
1297
|
--config=path [default: /home/runner/.config/dx/profile/default.yml] Config file.
|
|
1543
1298
|
--dry-run Dry run.
|
|
1544
1299
|
--json Output as JSON.
|
|
1545
|
-
--name=<value> [default:
|
|
1300
|
+
--name=<value> [default: five-network-south-crazy] Tunnel name
|
|
1546
1301
|
--no-agent Run command without agent.
|
|
1547
1302
|
--no-wait Do not wait for space to be ready.
|
|
1548
1303
|
--profile=<value> [default: default] User profile.
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
export declare const DX_ENVIRONMENT: string;
|
|
2
|
-
export declare const DX_RELEASE:
|
|
3
|
-
export declare const SENTRY_DESTINATION:
|
|
4
|
-
export declare const TELEMETRY_API_KEY:
|
|
2
|
+
export declare const DX_RELEASE: string;
|
|
3
|
+
export declare const SENTRY_DESTINATION: string;
|
|
4
|
+
export declare const TELEMETRY_API_KEY: string;
|
|
5
5
|
export declare const IPDATA_API_KEY: string;
|
|
6
6
|
export declare const DX_DISABLE_TELEMETRY: string | undefined;
|
|
7
7
|
export type TelemetryContext = {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"telemetry.d.ts","sourceRoot":"","sources":["../../../src/util/telemetry.ts"],"names":[],"mappings":"AAiBA,eAAO,MAAM,cAAc,QAAqC,CAAC;AACjE,eAAO,MAAM,UAAU,
|
|
1
|
+
{"version":3,"file":"telemetry.d.ts","sourceRoot":"","sources":["../../../src/util/telemetry.ts"],"names":[],"mappings":"AAiBA,eAAO,MAAM,cAAc,QAAqC,CAAC;AACjE,eAAO,MAAM,UAAU,QAAiC,CAAC;AACzD,eAAO,MAAM,kBAAkB,QAAyC,CAAC;AACzE,eAAO,MAAM,iBAAiB,QAAwC,CAAC;AACvE,eAAO,MAAM,cAAc,QAAqC,CAAC;AAGjE,eAAO,MAAM,oBAAoB,oBAAgD,CAAC;AAElF,MAAM,MAAM,gBAAgB,GAAG;IAC7B,IAAI,EAAE,UAAU,GAAG,OAAO,GAAG,MAAM,CAAC;IACpC,cAAc,CAAC,EAAE,MAAM,CAAC;IACxB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,QAAQ,EAAE,MAAM,CAAC;IACjB,OAAO,EAAE,MAAM,CAAC;IAChB,EAAE,EAAE,MAAM,CAAC;IACX,IAAI,EAAE,MAAM,CAAC;IACb,EAAE,EAAE,OAAO,CAAC;IACZ,CAAC,GAAG,EAAE,MAAM,GAAG,GAAG,CAAC;CACpB,CAAC;AAaF,eAAO,MAAM,gBAAgB,cAAqB,MAAM,kBAiBvD,CAAC;AAEF;;GAEG;AACH,eAAO,MAAM,mBAAmB,cAAqB,MAAM,kBAY1D,CAAC;AAEF,eAAO,MAAM,mBAAmB,cAAqB,MAAM,KAAG,QAAQ,gBAAgB,CAcrF,CAAC"}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
|
-
"DX_ENVIRONMENT": "
|
|
3
|
-
"DX_RELEASE":
|
|
4
|
-
"SENTRY_DESTINATION":
|
|
5
|
-
"TELEMETRY_API_KEY":
|
|
2
|
+
"DX_ENVIRONMENT": "staging",
|
|
3
|
+
"DX_RELEASE": "@dxos/cli@0.2.1-main.1c7a1b5",
|
|
4
|
+
"SENTRY_DESTINATION": "https://2647916221e643869965e78469479aa4@o4504012000067584.ingest.sentry.io/4504012027265029",
|
|
5
|
+
"TELEMETRY_API_KEY": "B00QG6PtJJrJ0VVFe0H5a6bcUUShKyZM",
|
|
6
6
|
"IPDATA_API_KEY": "ccc5f0cd66dd34a7c31c2ddc61c2bbca2db73892a993982bb3a5f0e2"
|
|
7
7
|
}
|
package/oclif.manifest.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "0.2.
|
|
2
|
+
"version": "0.2.1-main.1c7a1b5",
|
|
3
3
|
"commands": {
|
|
4
4
|
"agent:list": {
|
|
5
5
|
"id": "agent:list",
|
|
@@ -3489,7 +3489,7 @@
|
|
|
3489
3489
|
"type": "option",
|
|
3490
3490
|
"description": "Tunnel name",
|
|
3491
3491
|
"multiple": false,
|
|
3492
|
-
"default": "
|
|
3492
|
+
"default": "five-network-south-crazy"
|
|
3493
3493
|
}
|
|
3494
3494
|
},
|
|
3495
3495
|
"args": {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dxos/cli",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.1-main.1c7a1b5",
|
|
4
4
|
"description": "DXOS CLI",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"dxos",
|
|
@@ -25,7 +25,6 @@
|
|
|
25
25
|
"dependencies": {
|
|
26
26
|
"@oclif/core": "^2.9.4",
|
|
27
27
|
"@oclif/plugin-help": "^5.2.14",
|
|
28
|
-
"@oclif/plugin-plugins": "^3.1.8",
|
|
29
28
|
"@octokit/core": "^4.0.4",
|
|
30
29
|
"chalk": "^4.1.0",
|
|
31
30
|
"cli-progress": "^3.11.2",
|
|
@@ -47,25 +46,25 @@
|
|
|
47
46
|
"react": "^18.2.0",
|
|
48
47
|
"uuid": "^8.3.2",
|
|
49
48
|
"ws": "^7.4.4",
|
|
50
|
-
"@dxos/agent": "0.2.
|
|
51
|
-
"@dxos/async": "0.2.
|
|
52
|
-
"@dxos/bare-template": "0.2.
|
|
53
|
-
"@dxos/client": "0.2.
|
|
54
|
-
"@dxos/client-protocol": "0.2.
|
|
55
|
-
"@dxos/config": "0.2.
|
|
56
|
-
"@dxos/context": "0.2.
|
|
57
|
-
"@dxos/debug": "0.2.
|
|
58
|
-
"@dxos/functions": "0.2.
|
|
59
|
-
"@dxos/hello-template": "0.2.
|
|
60
|
-
"@dxos/invariant": "0.2.
|
|
61
|
-
"@dxos/log": "0.2.
|
|
62
|
-
"@dxos/plate": "0.2.
|
|
63
|
-
"@dxos/process": "0.2.
|
|
64
|
-
"@dxos/protocols": "0.2.
|
|
65
|
-
"@dxos/rpc": "0.2.
|
|
66
|
-
"@dxos/sentry": "0.2.
|
|
67
|
-
"@dxos/telemetry": "0.2.
|
|
68
|
-
"@dxos/util": "0.2.
|
|
49
|
+
"@dxos/agent": "0.2.1-main.1c7a1b5",
|
|
50
|
+
"@dxos/async": "0.2.1-main.1c7a1b5",
|
|
51
|
+
"@dxos/bare-template": "0.2.1-main.1c7a1b5",
|
|
52
|
+
"@dxos/client": "0.2.1-main.1c7a1b5",
|
|
53
|
+
"@dxos/client-protocol": "0.2.1-main.1c7a1b5",
|
|
54
|
+
"@dxos/config": "0.2.1-main.1c7a1b5",
|
|
55
|
+
"@dxos/context": "0.2.1-main.1c7a1b5",
|
|
56
|
+
"@dxos/debug": "0.2.1-main.1c7a1b5",
|
|
57
|
+
"@dxos/functions": "0.2.1-main.1c7a1b5",
|
|
58
|
+
"@dxos/hello-template": "0.2.1-main.1c7a1b5",
|
|
59
|
+
"@dxos/invariant": "0.2.1-main.1c7a1b5",
|
|
60
|
+
"@dxos/log": "0.2.1-main.1c7a1b5",
|
|
61
|
+
"@dxos/plate": "0.2.1-main.1c7a1b5",
|
|
62
|
+
"@dxos/process": "0.2.1-main.1c7a1b5",
|
|
63
|
+
"@dxos/protocols": "0.2.1-main.1c7a1b5",
|
|
64
|
+
"@dxos/rpc": "0.2.1-main.1c7a1b5",
|
|
65
|
+
"@dxos/sentry": "0.2.1-main.1c7a1b5",
|
|
66
|
+
"@dxos/telemetry": "0.2.1-main.1c7a1b5",
|
|
67
|
+
"@dxos/util": "0.2.1-main.1c7a1b5"
|
|
69
68
|
},
|
|
70
69
|
"devDependencies": {
|
|
71
70
|
"@oclif/test": "^2.3.31",
|
|
@@ -92,8 +91,7 @@
|
|
|
92
91
|
"command_not_found": "./dist/src/hooks/command-not-found"
|
|
93
92
|
},
|
|
94
93
|
"plugins": [
|
|
95
|
-
"@oclif/plugin-help"
|
|
96
|
-
"@oclif/plugin-plugins"
|
|
94
|
+
"@oclif/plugin-help"
|
|
97
95
|
],
|
|
98
96
|
"helpClass": "./dist/src/help",
|
|
99
97
|
"topicSeparator": " ",
|