@capgo/cli 7.84.10 → 7.86.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 CHANGED
@@ -84,7 +84,7 @@ npx @capgo/cli@latest init
84
84
 
85
85
  🚀 Initialize a new app in Capgo Cloud with step-by-step guidance.
86
86
  This includes adding code for updates, building, uploading your app, and verifying update functionality.
87
- Uploaded bundles should be treated as public assets; use encryption if you do not want their contents to be readable when fetched.
87
+ Capgo bundles are web assets and can be fetched by anyone who knows the URL. Use encryption for banking, regulated, or other high-security apps.
88
88
 
89
89
  **Example:**
90
90
 
@@ -127,6 +127,7 @@ If you do not pass repositories, this defaults to all Cap-go repositories whose
127
127
  | -------------- | ------------- | -------------------- |
128
128
  | **--min-delay-ms** | <code>string</code> | Minimum delay in ms between each star action (default: 20) |
129
129
  | **--max-delay-ms** | <code>string</code> | Maximum delay in ms between each star action (default: 180) |
130
+ | **--max-concurrency** | <code>string</code> | Maximum number of star requests running in parallel (default: 4) |
130
131
 
131
132
 
132
133
  ## <a id="doctor"></a> 👨‍⚕️ **Doctor**
@@ -1160,6 +1161,8 @@ npx @capgo/cli@latest build request com.example.app --platform ios --path .
1160
1161
  | **--keystore-key-password** | <code>string</code> | Android: Keystore key password |
1161
1162
  | **--keystore-store-password** | <code>string</code> | Android: Keystore store password |
1162
1163
  | **--play-config-json** | <code>string</code> | Android: Base64-encoded Google Play service account JSON |
1164
+ | **--android-flavor** | <code>string</code> | Android: Product flavor to build (e.g. production). Required if your project has multiple flavors. |
1165
+ | **--no-playstore-upload** | <code>boolean</code> | Skip Play Store upload for this build (nulls out saved play config). Requires --output-upload. |
1163
1166
  | **--output-upload** | <code>boolean</code> | Override output upload behavior for this build only (enable). Precedence: CLI > env > saved credentials |
1164
1167
  | **--no-output-upload** | <code>boolean</code> | Override output upload behavior for this build only (disable). Precedence: CLI > env > saved credentials |
1165
1168
  | **--output-retention** | <code>string</code> | Override output link TTL for this build only (1h to 7d). Examples: 1h, 6h, 2d. Precedence: CLI > env > saved credentials |