@capgo/cli 7.73.2 → 7.74.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/dist/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@capgo/cli",
3
3
  "type": "module",
4
- "version": "7.73.2",
4
+ "version": "7.74.1",
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
  }
@@ -2,6 +2,8 @@ interface SaveCredentialsOptions {
2
2
  platform?: 'ios' | 'android';
3
3
  appId?: string;
4
4
  local?: boolean;
5
+ outputUpload?: boolean | string;
6
+ outputRetention?: string;
5
7
  certificate?: string;
6
8
  provisioningProfile?: string;
7
9
  provisioningProfileProd?: string;
@@ -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
- * - Capgo does NOT keep any build artifacts - everything goes directly to the stores
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
- * ✓ Capgo does NOT keep any build artifacts or credentials
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
- * - Builds sent directly to app stores - Capgo keeps nothing
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). Builds are sent directly
177
- * to app stores - Capgo keeps nothing.
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
- * Builds are sent directly to app stores - Capgo keeps nothing.
401
+ * Build outputs may optionally be uploaded for time-limited download links.
402
402
  *
403
403
  * @example
404
404
  * ```typescript