@capgo/cli 7.28.1 → 7.29.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 +5 -5
- package/dist/index.js +191 -184
- package/dist/package.json +1 -1
- package/dist/src/build/credentials-command.d.ts +6 -2
- package/dist/src/build/credentials-command.d.ts.map +1 -1
- package/dist/src/build/credentials.d.ts +24 -13
- package/dist/src/build/credentials.d.ts.map +1 -1
- package/dist/src/build/request.d.ts.map +1 -1
- package/dist/src/sdk.js +84 -84
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -891,15 +891,15 @@ npx @capgo/cli@latest organisation delete ORG_ID
|
|
|
891
891
|
## <a id="build"></a> 🔹 **Build**
|
|
892
892
|
|
|
893
893
|
🏗️ Manage native iOS/Android builds through Capgo Cloud.
|
|
894
|
-
⚠️ This feature is currently in
|
|
894
|
+
⚠️ This feature is currently in PUBLIC BETA and cannot be used by anyone at this time.
|
|
895
895
|
🔒 SECURITY GUARANTEE:
|
|
896
896
|
Build credentials are NEVER stored on Capgo servers.
|
|
897
897
|
They are used only during the build and auto-deleted after (max 24 hours).
|
|
898
898
|
Builds sent directly to app stores - Capgo keeps nothing.
|
|
899
899
|
📋 BEFORE BUILDING:
|
|
900
900
|
Save your credentials first:
|
|
901
|
-
npx @capgo/cli build credentials save --platform ios
|
|
902
|
-
npx @capgo/cli build credentials save --platform android
|
|
901
|
+
npx @capgo/cli build credentials save --appId <your-app-id> --platform ios
|
|
902
|
+
npx @capgo/cli build credentials save --appId <your-app-id> --platform android
|
|
903
903
|
|
|
904
904
|
### <a id="build-request"></a> 🔹 **Request**
|
|
905
905
|
|
|
@@ -913,7 +913,7 @@ The build will be processed and sent directly to app stores.
|
|
|
913
913
|
🔒 SECURITY: Credentials are never stored on Capgo servers. They are auto-deleted
|
|
914
914
|
after build completion. Builds sent directly to stores - Capgo keeps nothing.
|
|
915
915
|
📋 PREREQUISITE: Save credentials first with:
|
|
916
|
-
npx @capgo/cli build credentials save --platform <ios|android>
|
|
916
|
+
npx @capgo/cli build credentials save --appId <app-id> --platform <ios|android>
|
|
917
917
|
|
|
918
918
|
**Example:**
|
|
919
919
|
|
|
@@ -941,7 +941,7 @@ npx @capgo/cli@latest build credentials
|
|
|
941
941
|
|
|
942
942
|
Manage build credentials stored locally on your machine.
|
|
943
943
|
🔒 SECURITY:
|
|
944
|
-
- Credentials saved to ~/.capgo/credentials.json (local machine only)
|
|
944
|
+
- Credentials saved to ~/.capgo-credentials/credentials.json (local machine only)
|
|
945
945
|
- When building, sent to Capgo but NEVER stored permanently
|
|
946
946
|
- Auto-deleted from Capgo after build (max 24 hours)
|
|
947
947
|
- Builds sent directly to app stores - Capgo keeps nothing
|