@capgo/cli 8.4.1 → 8.5.1

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
@@ -77,6 +77,7 @@ Follow the documentation here: https://capacitorjs.com/docs/getting-started/
77
77
  - [Request](#build-request)
78
78
  - [Last-output](#build-last-output)
79
79
  - [Credentials](#build-credentials)
80
+ - [Apple-key](#build-credentials-apple-key)
80
81
  - [Save](#build-credentials-save)
81
82
  - [List](#build-credentials-list)
82
83
  - [Clear](#build-credentials-clear)
@@ -1335,6 +1336,36 @@ Manage build credentials stored locally on your machine.
1335
1336
  iOS setup: https://capgo.app/docs/cli/cloud-build/ios/
1336
1337
  Android setup: https://capgo.app/docs/cli/cloud-build/android/
1337
1338
 
1339
+ #### <a id="build-credentials-apple-key"></a> 🔹 **Apple-key**
1340
+
1341
+ **Alias:** `asc-key`
1342
+
1343
+ ```bash
1344
+ npx @capgo/cli@latest build credentials apple-key
1345
+ ```
1346
+
1347
+ Create an App Store Connect team API key with a guided macOS helper (macOS only).
1348
+ Opens a native window that walks you through Apple's App Store Connect UI in an
1349
+ embedded browser, auto-captures the Issuer ID + Key ID, intercepts the one-time
1350
+ .p8, validates it against Apple, and saves it to ~/.appstoreconnect/private_keys.
1351
+ Progress statistics are forwarded to Capgo analytics (disable with CAPGO_DISABLE_TELEMETRY).
1352
+ npx @capgo/cli build credentials apple-key --appId com.example.app
1353
+
1354
+ **Example:**
1355
+
1356
+ ```bash
1357
+ Example:
1358
+ ```
1359
+
1360
+ **Options:**
1361
+
1362
+ | Param | Type | Description |
1363
+ | -------------- | ------------- | -------------------- |
1364
+ | **-a** | <code>string</code> | API key to link to your account |
1365
+ | **--appId** | <code>string</code> | Save the captured key into this app iOS build credentials |
1366
+ | **--local** | <code>boolean</code> | Save into the per-project .capgo-credentials.json instead of the global file |
1367
+ | **--json** | <code>boolean</code> | Print the captured Key ID / Issuer ID / .p8 path as JSON |
1368
+
1338
1369
  #### <a id="build-credentials-save"></a> 🔹 **Save**
1339
1370
 
1340
1371
  ```bash