@capgo/cli 7.95.4 → 7.95.6
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 +171 -171
- package/dist/package.json +11 -11
- package/dist/src/api/channels.d.ts +3920 -522
- package/dist/src/api/versions.d.ts +2 -0
- package/dist/src/app/list.d.ts +10 -2
- package/dist/src/bundle/list.d.ts +1 -0
- package/dist/src/channel/add.d.ts +2 -0
- package/dist/src/organization/add.d.ts +6 -0
- package/dist/src/organization/list.d.ts +8 -0
- package/dist/src/sdk.js +133 -133
- package/dist/src/types/supabase.types.d.ts +1965 -241
- package/dist/src/utils.d.ts +1951 -252
- package/package.json +11 -11
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@capgo/cli",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "7.95.
|
|
4
|
+
"version": "7.95.6",
|
|
5
5
|
"description": "A CLI to upload to capgo servers",
|
|
6
6
|
"author": "Martin martin@capgo.app",
|
|
7
7
|
"license": "Apache 2.0",
|
|
@@ -88,9 +88,18 @@
|
|
|
88
88
|
"test:payload-split": "bun test/test-payload-split.mjs",
|
|
89
89
|
"test": "bun run build && bun run test:version-detection:setup && bun run test:bundle && bun run test:functional && bun run test:semver && bun run test:version-edge-cases && bun run test:regex && bun run test:upload && bun run test:credentials && bun run test:credentials-validation && bun run test:build-zip-filter && bun run test:checksum && bun run test:ci-prompts && bun run test:onboarding-recovery && bun run test:onboarding-run-targets && bun run test:run-device-command && bun run test:init-app-conflict && bun run test:init-guardrails && bun run test:prompt-preferences && bun run test:esm-sdk && bun run test:mcp && bun run test:version-detection && bun run test:platform-paths && bun run test:payload-split"
|
|
90
90
|
},
|
|
91
|
+
"dependencies": {
|
|
92
|
+
"@inkjs/ui": "^2.0.0",
|
|
93
|
+
"ink": "^5.2.1",
|
|
94
|
+
"ink-spinner": "^5.0.0",
|
|
95
|
+
"jsonwebtoken": "^9.0.3",
|
|
96
|
+
"node-forge": "^1.3.3",
|
|
97
|
+
"qrcode": "^1.5.4",
|
|
98
|
+
"react": "^18.3.1"
|
|
99
|
+
},
|
|
91
100
|
"devDependencies": {
|
|
92
101
|
"@antfu/eslint-config": "^7.0.0",
|
|
93
|
-
"@bradenmacdonald/s3-lite-client": "npm:@jsr/bradenmacdonald__s3-lite-client@0.9.
|
|
102
|
+
"@bradenmacdonald/s3-lite-client": "npm:@jsr/bradenmacdonald__s3-lite-client@0.9.6",
|
|
94
103
|
"@capacitor/cli": "^8.0.0",
|
|
95
104
|
"@capgo/find-package-manager": "^0.0.18",
|
|
96
105
|
"@clack/prompts": "^1.0.0",
|
|
@@ -125,14 +134,5 @@
|
|
|
125
134
|
"typescript": "^5.9.3",
|
|
126
135
|
"ws": "^8.18.3",
|
|
127
136
|
"zod": "^4.3.6"
|
|
128
|
-
},
|
|
129
|
-
"dependencies": {
|
|
130
|
-
"@inkjs/ui": "^2.0.0",
|
|
131
|
-
"ink": "^5.2.1",
|
|
132
|
-
"ink-spinner": "^5.0.0",
|
|
133
|
-
"jsonwebtoken": "^9.0.3",
|
|
134
|
-
"node-forge": "^1.3.3",
|
|
135
|
-
"qrcode": "^1.5.4",
|
|
136
|
-
"react": "^18.3.1"
|
|
137
137
|
}
|
|
138
138
|
}
|