@capgo/cli 8.18.0 → 8.20.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
@@ -246,6 +246,10 @@ Examples:
246
246
  | **--bundle** | <code>string</code> | Bundle name or id to preview |
247
247
  | **--channel** | <code>string</code> | Channel name or id to preview |
248
248
  | **--type** | <code>string</code> | Type for positional target |
249
+ | **--png** | <code>string</code> | Write the preview QR code as a PNG image to the given file path |
250
+ | **--url** | <code>boolean</code> | Print preview URLs only (web and deep link), without a terminal QR code |
251
+ | **--web-url** | <code>boolean</code> | Encode the web preview URL in the QR code and PNG instead of the capgo:// deep link |
252
+ | **--preview-env** | <code>string</code> | Preview web URL environment |
249
253
  | **--supa-host** | <code>string</code> | Custom Supabase host URL (for self-hosting or Capgo development) |
250
254
  | **--supa-anon** | <code>string</code> | Custom Supabase anon key (for self-hosting) |
251
255
 
@@ -685,6 +689,16 @@ npx @capgo/cli@latest app set com.example.app --name "Updated App" --retention 3
685
689
  | **--expose-metadata** | <code>string</code> | Expose bundle metadata (link and comment) to the plugin (true/false, default: false) |
686
690
  | **--preview** | <code>boolean</code> | Enable bundle and channel preview QR codes for this app |
687
691
  | **--no-preview** | <code>boolean</code> | Disable bundle and channel preview QR codes for this app |
692
+ | **--allow-device-custom-id** | <code>boolean</code> | Allow devices to set a custom device ID for this app |
693
+ | **--no-allow-device-custom-id** | <code>boolean</code> | Disallow custom device IDs for this app |
694
+ | **--block-provider-infra-requests** | <code>boolean</code> | Block provider infrastructure requests for this app |
695
+ | **--no-block-provider-infra-requests** | <code>boolean</code> | Allow provider infrastructure requests for this app |
696
+ | **--build-timeout-minutes** | <code>string</code> | Native build timeout in minutes (5-360, default: 15) |
697
+ | **--ios-store-url** | <code>string</code> | iOS App Store URL for this app |
698
+ | **--android-store-url** | <code>string</code> | Google Play Store URL for this app |
699
+ | **--default-upload-channel** | <code>string</code> | Default upload channel name for this app |
700
+ | **--default-download-channel** | <code>string</code> | Default download channel name for this app (sets channel public=true) |
701
+ | **--disable-download-channels** | <code>boolean</code> | Disable Capgo download channels for this app (sets all channels public=false) |
688
702
  | **--supa-host** | <code>string</code> | Custom Supabase host URL (for self-hosting or Capgo development) |
689
703
  | **--supa-anon** | <code>string</code> | Custom Supabase anon key (for self-hosting) |
690
704
 
@@ -1293,6 +1307,10 @@ npx @capgo/cli@latest build request com.example.app --platform ios --path .
1293
1307
  | **--android-flavor** | <code>string</code> | Android: Product flavor to build (e.g. production). Required if your project has multiple flavors. |
1294
1308
  | **--in-app-update-priority** | <code>string</code> | Android: Google Play in-app update priority for this release (integer 0–5; higher = more urgent). See https://developer.android.com/guide/playcore/in-app-updates. Precedence: CLI > env > saved credentials |
1295
1309
  | **--no-playstore-upload** | <code>boolean</code> | Skip Play Store upload for this build (nulls out saved play config). Requires --output-upload. |
1310
+ | **--submit-to-store-review** | <code>boolean</code> | After upload, submit the store release for review instead of leaving it as a draft/inactive build. Android marks the Play release completed; iOS submits to TestFlight external review and requires --ios-testflight-groups. |
1311
+ | **--store-release-name** | <code>string</code> | Store release name/version label. Android sends this as the Google Play version_name. |
1312
+ | **--store-release-notes** | <code>string</code> | Store release notes. Android sends this as the Play changelog; iOS sends it as the TestFlight What to Test text. |
1313
+ | **--ios-testflight-groups** | <code>string</code> | iOS: comma-separated TestFlight external group names or IDs required with --submit-to-store-review. |
1296
1314
  | **--output-upload** | <code>boolean</code> | Override output upload behavior for this build only (enable). Precedence: CLI > env > saved credentials |
1297
1315
  | **--no-output-upload** | <code>boolean</code> | Override output upload behavior for this build only (disable). Precedence: CLI > env > saved credentials |
1298
1316
  | **--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 |