@capgo/cli 8.37.4 → 8.41.3

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
@@ -387,6 +387,7 @@ npx @capgo/cli@latest bundle upload com.example.app --path ./dist --channel prod
387
387
  | **-c** | <code>string</code> | Channel to link to. Use commas for multiple channels, for example production,beta |
388
388
  | **--rollout** | <code>string</code> | Set the uploaded bundle as this channel's rollout target at a percentage from 0 to 100 |
389
389
  | **--rollout-percentage-bps** | <code>string</code> | Set the uploaded bundle rollout percentage in basis points from 0 to 10000 |
390
+ | **--rollout-advance** | <code>boolean</code> | Promote the current rollout target to stable, then set the uploaded bundle as the new rollout. Reuses the previous percentage unless --rollout or --rollout-percentage-bps is also set |
390
391
  | **--rollout-cache-ttl-seconds** | <code>string</code> | Cloudflare rollout decision cache TTL in seconds |
391
392
  | **-e** | <code>string</code> | Link to external URL instead of upload to Capgo Cloud |
392
393
  | **--iv-session-key** | <code>string</code> | Set the IV and session key for bundle URL external |
@@ -719,6 +720,10 @@ npx @capgo/cli@latest app list
719
720
  | Param | Type | Description |
720
721
  | -------------- | ------------- | -------------------- |
721
722
  | **-a** | <code>string</code> | API key to link to your account |
723
+ | **--filter-by-org-id** | <code>string</code> | Only list apps from this organization ID |
724
+ | **--show-org** | <code>boolean</code> | Show the organization name for each app |
725
+ | **--show-org-id** | <code>boolean</code> | Show the organization ID for each app |
726
+ | **--output-text** | <code>boolean</code> | Print plain text with a CSV app table and no interactive formatting |
722
727
  | **--supa-host** | <code>string</code> | Custom Supabase host URL (for self-hosting or Capgo development) |
723
728
  | **--supa-anon** | <code>string</code> | Custom Supabase anon key (for self-hosting) |
724
729
 
@@ -1466,6 +1471,7 @@ npx @capgo/cli@latest build request com.example.app --platform ios --path .
1466
1471
  | **--skip-marketing-version-bump** | <code>boolean</code> | Skip automatic marketing version (CFBundleShortVersionString / versionName) bump when the app is already released. |
1467
1472
  | **--no-skip-marketing-version-bump** | <code>boolean</code> | Override saved credentials to re-enable automatic marketing version bump for this build only. |
1468
1473
  | **--sync-ios-version** | <code>boolean</code> | iOS: sync the app version from package.json before uploading the project. Updates MARKETING_VERSION or CFBundleShortVersionString based on the Xcode Info.plist configuration. |
1474
+ | **--sync-android-version** | <code>boolean</code> | Android: sync versionName in android/app/build.gradle from package.json before uploading the project. Fails unless versionName is a standalone quoted string literal. |
1469
1475
  | **--ai-analytics** | <code>boolean</code> | On build failure, send logs to Capgo AI for diagnosis. In interactive terminals this skips the upfront confirmation; in CI this auto-uploads and prints the analysis to stderr. |
1470
1476
  | **--no-prescan** | <code>boolean</code> | Skip the automatic pre-build scan |
1471
1477
  | **--prescan-ignore-fatal** | <code>boolean</code> | Run the pre-build scan but never block the build (report only) |