@capgo/cli 8.33.1 → 8.33.2
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 +3 -1
- package/dist/index.js +534 -534
- package/dist/package.json +1 -1
- package/dist/src/build/credentials.d.ts +6 -0
- package/dist/src/build/onboarding/android/types.d.ts +1 -1
- package/dist/src/build/onboarding/types.d.ts +1 -1
- package/dist/src/build/onboarding/ui/components.d.ts +1 -0
- package/dist/src/build/onboarding/ui/steps/android-shared.d.ts +1 -1
- package/dist/src/schemas/build.d.ts +22 -0
- package/dist/src/schemas/sdk.d.ts +14 -0
- package/dist/src/sdk.js +230 -230
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1443,9 +1443,11 @@ npx @capgo/cli@latest build request com.example.app --platform ios --path .
|
|
|
1443
1443
|
| **--keystore-store-password** | <code>string</code> | Android: Keystore store password |
|
|
1444
1444
|
| **--play-config-json** | <code>string</code> | Android: Base64-encoded Google Play service account JSON |
|
|
1445
1445
|
| **--android-flavor** | <code>string</code> | Android: Product flavor to build (e.g. production). Required if your project has multiple flavors. |
|
|
1446
|
+
| **--android-track** | <code>string</code> | Android: Google Play track for this upload (internal, alpha, beta, production). Default without --submit-to-store-review: internal. With --submit-to-store-review and no track set: production. Precedence: CLI > env > saved credentials |
|
|
1447
|
+
| **--android-release-status** | <code>string</code> | Android: Google Play release status (draft, completed, inProgress, halted). Default without --submit-to-store-review: draft. With --submit-to-store-review and no status set: completed. Precedence: CLI > env > saved credentials |
|
|
1446
1448
|
| **--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 |
|
|
1447
1449
|
| **--no-playstore-upload** | <code>boolean</code> | Android: do not upload the AAB/APK to Google Play for this build (ignores saved Play credentials). Use when the Play app does not exist yet, or you only want a Capgo download link. Requires --output-upload. |
|
|
1448
|
-
| **--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
|
|
1450
|
+
| **--submit-to-store-review** | <code>boolean</code> | After upload, submit the store release for review instead of leaving it as a draft/inactive build. On Android this defaults to the production track with release_status completed (override with --android-track / PLAY_STORE_TRACK and --android-release-status / PLAY_STORE_RELEASE_STATUS). On iOS this submits the processed TestFlight build to App Store review. |
|
|
1449
1451
|
| **--store-release-name** | <code>string</code> | Store release name/version label. Android sends this as the Google Play version_name; iOS uses it as the App Store version when creating or reusing the editable version. |
|
|
1450
1452
|
| **--store-release-notes** | <code>string</code> | Default store release notes. Android uses this as the Play changelog; iOS uses it as the fallback App Store What's New text. |
|
|
1451
1453
|
| **--store-release-notes-locale** | <code>string</code> | Localized store release notes (repeatable), for example --store-release-notes-locale en-US="Bug fixes" --store-release-notes-locale fr-FR="Corrections". |
|