@supacloud/admin 0.1.10 → 0.1.12
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/index.js
CHANGED
|
@@ -4759,7 +4759,7 @@ var require_utils = __commonJS((exports, module) => {
|
|
|
4759
4759
|
|
|
4760
4760
|
// node_modules/ssh2/lib/protocol/crypto/build/Release/sshcrypto.node
|
|
4761
4761
|
var require_sshcrypto = __commonJS((exports, module) => {
|
|
4762
|
-
module.exports = __require("./sshcrypto-
|
|
4762
|
+
module.exports = __require("./sshcrypto-8h5xcwbw.node");
|
|
4763
4763
|
});
|
|
4764
4764
|
|
|
4765
4765
|
// node_modules/ssh2/lib/protocol/crypto/poly1305.js
|
|
@@ -34043,7 +34043,7 @@ Actions: list, deploy, deploy_bundle, source, delete, check`, {
|
|
|
34043
34043
|
slug: exports_external.string().optional().describe("[deploy/deploy_bundle/source/delete/check] Function name"),
|
|
34044
34044
|
code: exports_external.string().optional().describe("[deploy/check] Function source code (TypeScript)"),
|
|
34045
34045
|
path: exports_external.string().optional().describe("[deploy/check] Local file path to read code from (alternative to code)"),
|
|
34046
|
-
files: exports_external.record(exports_external.string()).optional().describe("[deploy_bundle] File map: { 'index.ts': '...', '_shared/x.ts': '...' }"),
|
|
34046
|
+
files: exports_external.record(exports_external.string(), exports_external.string()).optional().describe("[deploy_bundle] File map: { 'index.ts': '...', '_shared/x.ts': '...' }"),
|
|
34047
34047
|
entrypoint: exports_external.string().optional().describe("[deploy_bundle] Entrypoint file (default: index.ts)"),
|
|
34048
34048
|
minify: exports_external.boolean().optional().describe("[deploy/deploy_bundle] Minify bundle")
|
|
34049
34049
|
}, async (args) => {
|
|
@@ -34300,7 +34300,7 @@ function registerAdminProjectCliTools(server, http) {
|
|
|
34300
34300
|
name: exports_external.string().optional().describe("[create] Project name"),
|
|
34301
34301
|
region: exports_external.string().optional().describe("[create] Region (default: local)"),
|
|
34302
34302
|
organization_id: exports_external.string().optional().describe("[create] Organization ID"),
|
|
34303
|
-
settings: exports_external.record(exports_external.unknown()).optional().describe("[update_settings] Config fields to update"),
|
|
34303
|
+
settings: exports_external.record(exports_external.string(), exports_external.unknown()).optional().describe("[update_settings] Config fields to update"),
|
|
34304
34304
|
log_type: exports_external.enum(["all", "auth", "database", "api"]).optional().describe("[logs] Filter by service")
|
|
34305
34305
|
}, async ({ action, ref, name, region, organization_id, settings, log_type }) => {
|
|
34306
34306
|
let text;
|
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@supacloud/admin",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.12",
|
|
4
4
|
"description": "Platform administration CLI for SupaCloud operators",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -30,12 +30,12 @@
|
|
|
30
30
|
"directory": "packages/admin"
|
|
31
31
|
},
|
|
32
32
|
"dependencies": {
|
|
33
|
-
"ssh2": "^1.
|
|
33
|
+
"ssh2": "^1.17.0",
|
|
34
34
|
"zod": "^4.4.3"
|
|
35
35
|
},
|
|
36
36
|
"devDependencies": {
|
|
37
|
-
"@types/bun": "^1.3.
|
|
37
|
+
"@types/bun": "^1.3.14",
|
|
38
38
|
"@types/ssh2": "^1.15.5",
|
|
39
|
-
"typescript": "^6.0.
|
|
39
|
+
"typescript": "^6.0.3"
|
|
40
40
|
}
|
|
41
41
|
}
|