@capgo/cli 7.73.1 → 7.74.0
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 +7 -7
- package/dist/index.js +392 -383
- package/dist/package.json +2 -1
- package/dist/src/build/credentials-command.d.ts +2 -0
- package/dist/src/build/credentials.d.ts +1 -1
- package/dist/src/build/request.d.ts +2 -2
- package/dist/src/sdk.d.ts +3 -3
- package/dist/src/sdk.js +308 -299
- package/package.json +2 -1
package/dist/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@capgo/cli",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "7.
|
|
4
|
+
"version": "7.74.0",
|
|
5
5
|
"description": "A CLI to upload to capgo servers",
|
|
6
6
|
"author": "Martin martin@capgo.app",
|
|
7
7
|
"license": "Apache 2.0",
|
|
@@ -100,6 +100,7 @@
|
|
|
100
100
|
"tus-js-client": "^4.3.1",
|
|
101
101
|
"typescript": "^5.9.3",
|
|
102
102
|
"partysocket": "^1.1.11",
|
|
103
|
+
"ws": "^8.18.3",
|
|
103
104
|
"zod": "^4.3.6"
|
|
104
105
|
}
|
|
105
106
|
}
|
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
* - Credentials are used only during the build process and are automatically deleted
|
|
11
11
|
* from Capgo servers after the build completes (maximum 24 hours)
|
|
12
12
|
* - Builds are sent DIRECTLY to app stores (Apple App Store / Google Play Store)
|
|
13
|
-
* -
|
|
13
|
+
* - Build outputs may optionally be uploaded for time-limited download links
|
|
14
14
|
*
|
|
15
15
|
* Security best practices:
|
|
16
16
|
* - Ensure ~/.capgo-credentials/ directory has restricted file permissions
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
* ✓ Automatically deleted from Capgo servers after build completion
|
|
13
13
|
* ✓ Retained for a MAXIMUM of 24 hours (even if build fails)
|
|
14
14
|
* ✓ Builds sent DIRECTLY to app stores (Apple/Google)
|
|
15
|
-
* ✓
|
|
15
|
+
* ✓ Build outputs may optionally be uploaded for time-limited download links
|
|
16
16
|
*
|
|
17
17
|
* Credentials are transmitted securely over HTTPS and used only in ephemeral
|
|
18
18
|
* build environments that are destroyed after each build completes.
|
|
@@ -42,7 +42,7 @@ export type { BuildCredentials, BuildRequestOptions, BuildRequestResponse, Build
|
|
|
42
42
|
* - Used ONLY during the active build process
|
|
43
43
|
* - Automatically deleted after build completion
|
|
44
44
|
* - NEVER stored permanently on Capgo servers
|
|
45
|
-
* -
|
|
45
|
+
* - Build outputs may optionally be uploaded for time-limited download links
|
|
46
46
|
*/
|
|
47
47
|
export declare function requestBuildInternal(appId: string, options: BuildRequestOptions, silent?: boolean): Promise<BuildRequestResult>;
|
|
48
48
|
export declare function requestBuildCommand(appId: string, options: BuildRequestOptions): Promise<void>;
|
package/dist/src/sdk.d.ts
CHANGED
|
@@ -173,8 +173,8 @@ export declare class CapgoSDK {
|
|
|
173
173
|
* SECURITY GUARANTEE:
|
|
174
174
|
* Credentials provided to this method are NEVER stored on Capgo servers.
|
|
175
175
|
* They are used only during the build process and automatically deleted
|
|
176
|
-
* after completion (maximum 24 hours retention).
|
|
177
|
-
*
|
|
176
|
+
* after completion (maximum 24 hours retention). Build outputs may optionally
|
|
177
|
+
* be uploaded for time-limited download links.
|
|
178
178
|
*
|
|
179
179
|
* @example
|
|
180
180
|
* ```typescript
|
|
@@ -398,7 +398,7 @@ export declare function addChannel(options: AddChannelOptions): Promise<SDKResul
|
|
|
398
398
|
* SECURITY GUARANTEE:
|
|
399
399
|
* Credentials are NEVER stored on Capgo servers. They are used only during
|
|
400
400
|
* the build process and automatically deleted after completion.
|
|
401
|
-
*
|
|
401
|
+
* Build outputs may optionally be uploaded for time-limited download links.
|
|
402
402
|
*
|
|
403
403
|
* @example
|
|
404
404
|
* ```typescript
|