@layr-labs/ecloud-cli 0.4.0-dev.0 → 0.4.0-dev.1
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/LICENSE +7 -0
- package/bin/dev.js +0 -0
- package/dist/commands/auth/generate.js +0 -0
- package/dist/commands/auth/login.js +0 -0
- package/dist/commands/auth/logout.js +0 -0
- package/dist/commands/auth/migrate.js +0 -0
- package/dist/commands/auth/whoami.js +0 -0
- package/dist/commands/billing/__tests__/status.test.js +0 -0
- package/dist/commands/billing/__tests__/subscribe.test.js +0 -0
- package/dist/commands/billing/__tests__/top-up.test.js +0 -0
- package/dist/commands/billing/cancel.js +0 -0
- package/dist/commands/billing/status.js +0 -0
- package/dist/commands/billing/subscribe.js +0 -0
- package/dist/commands/billing/top-up.js +0 -0
- package/dist/commands/compute/app/configure/tls.js +0 -0
- package/dist/commands/compute/app/create.js +0 -0
- package/dist/commands/compute/app/deploy.js +1 -1
- package/dist/commands/compute/app/info.js +1 -1
- package/dist/commands/compute/app/list.js +1 -1
- package/dist/commands/compute/app/logs.js +1 -1
- package/dist/commands/compute/app/profile/set.js +1 -1
- package/dist/commands/compute/app/releases.js +1 -1
- package/dist/commands/compute/app/start.js +1 -1
- package/dist/commands/compute/app/stop.js +1 -1
- package/dist/commands/compute/app/terminate.js +1 -1
- package/dist/commands/compute/app/upgrade.js +1 -1
- package/dist/commands/compute/build/info.js +1 -1
- package/dist/commands/compute/build/list.js +1 -1
- package/dist/commands/compute/build/logs.js +1 -1
- package/dist/commands/compute/build/status.js +1 -1
- package/dist/commands/compute/build/submit.js +1 -1
- package/dist/commands/compute/build/verify.js +1 -1
- package/dist/commands/compute/environment/list.js +0 -0
- package/dist/commands/compute/environment/set.js +0 -0
- package/dist/commands/compute/environment/show.js +0 -0
- package/dist/commands/compute/undelegate.js +1 -1
- package/dist/commands/telemetry/disable.js +0 -0
- package/dist/commands/telemetry/enable.js +0 -0
- package/dist/commands/telemetry/status.js +0 -0
- package/dist/commands/upgrade.js +0 -0
- package/dist/commands/version.js +0 -0
- package/package.json +14 -15
package/LICENSE
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
Copyright 2025 Eigen Labs, Inc.
|
|
2
|
+
|
|
3
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
4
|
+
|
|
5
|
+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
6
|
+
|
|
7
|
+
THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
package/bin/dev.js
CHANGED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
@@ -305,7 +305,7 @@ function findAvailableName(environment, baseName) {
|
|
|
305
305
|
|
|
306
306
|
// src/utils/version.ts
|
|
307
307
|
function getCliVersion() {
|
|
308
|
-
return true ? "0.4.0-dev.
|
|
308
|
+
return true ? "0.4.0-dev.1" : "0.0.0";
|
|
309
309
|
}
|
|
310
310
|
function getClientId() {
|
|
311
311
|
return `ecloud-cli/v${getCliVersion()}`;
|
|
@@ -220,7 +220,7 @@ function listApps(environment) {
|
|
|
220
220
|
|
|
221
221
|
// src/utils/version.ts
|
|
222
222
|
function getCliVersion() {
|
|
223
|
-
return true ? "0.4.0-dev.
|
|
223
|
+
return true ? "0.4.0-dev.1" : "0.0.0";
|
|
224
224
|
}
|
|
225
225
|
function getClientId() {
|
|
226
226
|
return `ecloud-cli/v${getCliVersion()}`;
|
|
@@ -199,7 +199,7 @@ function getAppName(environment, appID) {
|
|
|
199
199
|
|
|
200
200
|
// src/utils/version.ts
|
|
201
201
|
function getCliVersion() {
|
|
202
|
-
return true ? "0.4.0-dev.
|
|
202
|
+
return true ? "0.4.0-dev.1" : "0.0.0";
|
|
203
203
|
}
|
|
204
204
|
function getClientId() {
|
|
205
205
|
return `ecloud-cli/v${getCliVersion()}`;
|
|
@@ -248,7 +248,7 @@ function listApps(environment) {
|
|
|
248
248
|
|
|
249
249
|
// src/utils/version.ts
|
|
250
250
|
function getCliVersion() {
|
|
251
|
-
return true ? "0.4.0-dev.
|
|
251
|
+
return true ? "0.4.0-dev.1" : "0.0.0";
|
|
252
252
|
}
|
|
253
253
|
function getClientId() {
|
|
254
254
|
return `ecloud-cli/v${getCliVersion()}`;
|
|
@@ -286,7 +286,7 @@ function listApps(environment) {
|
|
|
286
286
|
|
|
287
287
|
// src/utils/version.ts
|
|
288
288
|
function getCliVersion() {
|
|
289
|
-
return true ? "0.4.0-dev.
|
|
289
|
+
return true ? "0.4.0-dev.1" : "0.0.0";
|
|
290
290
|
}
|
|
291
291
|
function getClientId() {
|
|
292
292
|
return `ecloud-cli/v${getCliVersion()}`;
|
|
@@ -237,7 +237,7 @@ function listApps(environment) {
|
|
|
237
237
|
|
|
238
238
|
// src/utils/version.ts
|
|
239
239
|
function getCliVersion() {
|
|
240
|
-
return true ? "0.4.0-dev.
|
|
240
|
+
return true ? "0.4.0-dev.1" : "0.0.0";
|
|
241
241
|
}
|
|
242
242
|
function getClientId() {
|
|
243
243
|
return `ecloud-cli/v${getCliVersion()}`;
|
|
@@ -247,7 +247,7 @@ function listApps(environment) {
|
|
|
247
247
|
|
|
248
248
|
// src/utils/version.ts
|
|
249
249
|
function getCliVersion() {
|
|
250
|
-
return true ? "0.4.0-dev.
|
|
250
|
+
return true ? "0.4.0-dev.1" : "0.0.0";
|
|
251
251
|
}
|
|
252
252
|
function getClientId() {
|
|
253
253
|
return `ecloud-cli/v${getCliVersion()}`;
|
|
@@ -247,7 +247,7 @@ function listApps(environment) {
|
|
|
247
247
|
|
|
248
248
|
// src/utils/version.ts
|
|
249
249
|
function getCliVersion() {
|
|
250
|
-
return true ? "0.4.0-dev.
|
|
250
|
+
return true ? "0.4.0-dev.1" : "0.0.0";
|
|
251
251
|
}
|
|
252
252
|
function getClientId() {
|
|
253
253
|
return `ecloud-cli/v${getCliVersion()}`;
|
|
@@ -247,7 +247,7 @@ function listApps(environment) {
|
|
|
247
247
|
|
|
248
248
|
// src/utils/version.ts
|
|
249
249
|
function getCliVersion() {
|
|
250
|
-
return true ? "0.4.0-dev.
|
|
250
|
+
return true ? "0.4.0-dev.1" : "0.0.0";
|
|
251
251
|
}
|
|
252
252
|
function getClientId() {
|
|
253
253
|
return `ecloud-cli/v${getCliVersion()}`;
|
|
@@ -312,7 +312,7 @@ function listApps(environment) {
|
|
|
312
312
|
|
|
313
313
|
// src/utils/version.ts
|
|
314
314
|
function getCliVersion() {
|
|
315
|
-
return true ? "0.4.0-dev.
|
|
315
|
+
return true ? "0.4.0-dev.1" : "0.0.0";
|
|
316
316
|
}
|
|
317
317
|
function getClientId() {
|
|
318
318
|
return `ecloud-cli/v${getCliVersion()}`;
|
|
@@ -156,7 +156,7 @@ var APPS_DIR = path2.join(CONFIG_DIR, "apps");
|
|
|
156
156
|
|
|
157
157
|
// src/utils/version.ts
|
|
158
158
|
function getCliVersion() {
|
|
159
|
-
return true ? "0.4.0-dev.
|
|
159
|
+
return true ? "0.4.0-dev.1" : "0.0.0";
|
|
160
160
|
}
|
|
161
161
|
function getClientId() {
|
|
162
162
|
return `ecloud-cli/v${getCliVersion()}`;
|
|
@@ -159,7 +159,7 @@ var APPS_DIR = path2.join(CONFIG_DIR, "apps");
|
|
|
159
159
|
|
|
160
160
|
// src/utils/version.ts
|
|
161
161
|
function getCliVersion() {
|
|
162
|
-
return true ? "0.4.0-dev.
|
|
162
|
+
return true ? "0.4.0-dev.1" : "0.0.0";
|
|
163
163
|
}
|
|
164
164
|
function getClientId() {
|
|
165
165
|
return `ecloud-cli/v${getCliVersion()}`;
|
|
@@ -156,7 +156,7 @@ var APPS_DIR = path2.join(CONFIG_DIR, "apps");
|
|
|
156
156
|
|
|
157
157
|
// src/utils/version.ts
|
|
158
158
|
function getCliVersion() {
|
|
159
|
-
return true ? "0.4.0-dev.
|
|
159
|
+
return true ? "0.4.0-dev.1" : "0.0.0";
|
|
160
160
|
}
|
|
161
161
|
function getClientId() {
|
|
162
162
|
return `ecloud-cli/v${getCliVersion()}`;
|
|
@@ -157,7 +157,7 @@ var APPS_DIR = path2.join(CONFIG_DIR, "apps");
|
|
|
157
157
|
|
|
158
158
|
// src/utils/version.ts
|
|
159
159
|
function getCliVersion() {
|
|
160
|
-
return true ? "0.4.0-dev.
|
|
160
|
+
return true ? "0.4.0-dev.1" : "0.0.0";
|
|
161
161
|
}
|
|
162
162
|
function getClientId() {
|
|
163
163
|
return `ecloud-cli/v${getCliVersion()}`;
|
|
@@ -157,7 +157,7 @@ var APPS_DIR = path2.join(CONFIG_DIR, "apps");
|
|
|
157
157
|
|
|
158
158
|
// src/utils/version.ts
|
|
159
159
|
function getCliVersion() {
|
|
160
|
-
return true ? "0.4.0-dev.
|
|
160
|
+
return true ? "0.4.0-dev.1" : "0.0.0";
|
|
161
161
|
}
|
|
162
162
|
function getClientId() {
|
|
163
163
|
return `ecloud-cli/v${getCliVersion()}`;
|
|
@@ -157,7 +157,7 @@ var APPS_DIR = path2.join(CONFIG_DIR, "apps");
|
|
|
157
157
|
|
|
158
158
|
// src/utils/version.ts
|
|
159
159
|
function getCliVersion() {
|
|
160
|
-
return true ? "0.4.0-dev.
|
|
160
|
+
return true ? "0.4.0-dev.1" : "0.0.0";
|
|
161
161
|
}
|
|
162
162
|
function getClientId() {
|
|
163
163
|
return `ecloud-cli/v${getCliVersion()}`;
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
@@ -156,7 +156,7 @@ var APPS_DIR = path2.join(CONFIG_DIR, "apps");
|
|
|
156
156
|
|
|
157
157
|
// src/utils/version.ts
|
|
158
158
|
function getCliVersion() {
|
|
159
|
-
return true ? "0.4.0-dev.
|
|
159
|
+
return true ? "0.4.0-dev.1" : "0.0.0";
|
|
160
160
|
}
|
|
161
161
|
function getClientId() {
|
|
162
162
|
return `ecloud-cli/v${getCliVersion()}`;
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
package/dist/commands/upgrade.js
CHANGED
|
File without changes
|
package/dist/commands/version.js
CHANGED
|
File without changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@layr-labs/ecloud-cli",
|
|
3
|
-
"version": "0.4.0-dev.
|
|
3
|
+
"version": "0.4.0-dev.1",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"files": [
|
|
6
6
|
"dist",
|
|
@@ -13,7 +13,6 @@
|
|
|
13
13
|
},
|
|
14
14
|
"dependencies": {
|
|
15
15
|
"@inquirer/prompts": "^7.10.1",
|
|
16
|
-
"@layr-labs/ecloud-sdk": "workspace:*",
|
|
17
16
|
"@napi-rs/keyring": "^1.0.5",
|
|
18
17
|
"@oclif/core": "^4.8.0",
|
|
19
18
|
"axios": "^1.13.2",
|
|
@@ -26,18 +25,8 @@
|
|
|
26
25
|
"js-yaml": "^4.1.1",
|
|
27
26
|
"node-forge": "^1.3.2",
|
|
28
27
|
"open": "^11.0.0",
|
|
29
|
-
"viem": "^2.38.6"
|
|
30
|
-
|
|
31
|
-
"scripts": {
|
|
32
|
-
"build": "tsup",
|
|
33
|
-
"build:dev": "BUILD_TYPE=dev tsup",
|
|
34
|
-
"prepublishOnly": "cp ../../README.md .",
|
|
35
|
-
"lint": "eslint .",
|
|
36
|
-
"format": "prettier --check .",
|
|
37
|
-
"format:fix": "prettier --write .",
|
|
38
|
-
"typecheck": "tsc --noEmit",
|
|
39
|
-
"test": "vitest run",
|
|
40
|
-
"ecloud": "node bin/run.js"
|
|
28
|
+
"viem": "^2.38.6",
|
|
29
|
+
"@layr-labs/ecloud-sdk": "0.4.0-dev.1"
|
|
41
30
|
},
|
|
42
31
|
"oclif": {
|
|
43
32
|
"bin": "ecloud",
|
|
@@ -80,5 +69,15 @@
|
|
|
80
69
|
"@types/js-yaml": "^4.0.9",
|
|
81
70
|
"@types/node": "^18",
|
|
82
71
|
"ts-node": "^10.9.2"
|
|
72
|
+
},
|
|
73
|
+
"scripts": {
|
|
74
|
+
"build": "tsup",
|
|
75
|
+
"build:dev": "BUILD_TYPE=dev tsup",
|
|
76
|
+
"lint": "eslint .",
|
|
77
|
+
"format": "prettier --check .",
|
|
78
|
+
"format:fix": "prettier --write .",
|
|
79
|
+
"typecheck": "tsc --noEmit",
|
|
80
|
+
"test": "vitest run",
|
|
81
|
+
"ecloud": "node bin/run.js"
|
|
83
82
|
}
|
|
84
|
-
}
|
|
83
|
+
}
|