@capgo/cli 7.83.1 → 7.84.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 +1 -3
- package/dist/index.js +290 -278
- package/dist/package.json +1 -1
- package/dist/src/build/credentials-command.d.ts +36 -3
- package/dist/src/build/credentials.d.ts +5 -0
- package/dist/src/build/mobileprovision-parser.d.ts +8 -0
- package/dist/src/build/pbxproj-parser.d.ts +22 -0
- package/dist/src/schemas/build.d.ts +7 -15
- package/dist/src/schemas/sdk.d.ts +1 -2
- package/dist/src/sdk.d.ts +5 -5
- package/dist/src/sdk.js +205 -205
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1114,19 +1114,17 @@ npx @capgo/cli@latest build request com.example.app --platform ios --path .
|
|
|
1114
1114
|
| **--platform** | <code>string</code> | Target platform: ios or android (required) |
|
|
1115
1115
|
| **--build-mode** | <code>string</code> | Build mode: debug or release (default: release) |
|
|
1116
1116
|
| **--build-certificate-base64** | <code>string</code> | iOS: Base64-encoded .p12 certificate |
|
|
1117
|
-
| **--build-provision-profile-base64** | <code>string</code> | iOS: Base64-encoded provisioning profile |
|
|
1118
|
-
| **--build-provision-profile-base64-prod** | <code>string</code> | iOS: Base64-encoded production provisioning profile |
|
|
1119
1117
|
| **--p12-password** | <code>string</code> | iOS: Certificate password (optional if cert has no password) |
|
|
1120
1118
|
| **--apple-id** | <code>string</code> | iOS: Apple ID email |
|
|
1121
1119
|
| **--apple-app-specific-password** | <code>string</code> | iOS: App-specific password |
|
|
1122
1120
|
| **--apple-key-id** | <code>string</code> | iOS: App Store Connect API Key ID |
|
|
1123
1121
|
| **--apple-issuer-id** | <code>string</code> | iOS: App Store Connect Issuer ID |
|
|
1124
1122
|
| **--apple-key-content** | <code>string</code> | iOS: Base64-encoded App Store Connect API key (.p8) |
|
|
1125
|
-
| **--apple-profile-name** | <code>string</code> | iOS: Provisioning profile name |
|
|
1126
1123
|
| **--app-store-connect-team-id** | <code>string</code> | iOS: App Store Connect Team ID |
|
|
1127
1124
|
| **--ios-scheme** | <code>string</code> | iOS: Xcode scheme to build (default: App) |
|
|
1128
1125
|
| **--ios-target** | <code>string</code> | iOS: Xcode target for reading build settings (default: same as scheme) |
|
|
1129
1126
|
| **--ios-distribution** | <code>string</code> | iOS: Distribution mode |
|
|
1127
|
+
| **--ios-provisioning-profile** | <code>string</code> | iOS: Provisioning profile path or bundleId=path mapping (repeatable) |
|
|
1130
1128
|
| **--android-keystore-file** | <code>string</code> | Android: Base64-encoded keystore file |
|
|
1131
1129
|
| **--keystore-key-alias** | <code>string</code> | Android: Keystore key alias |
|
|
1132
1130
|
| **--keystore-key-password** | <code>string</code> | Android: Keystore key password |
|