@capgo/cli 7.73.2 → 7.74.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 +7 -7
- package/dist/index.js +383 -377
- package/dist/package.json +2 -1
- package/dist/src/build/credentials-command.d.ts +2 -0
- package/dist/src/build/credentials.d.ts +1 -1
- package/dist/src/build/request.d.ts +2 -2
- package/dist/src/sdk.d.ts +3 -3
- package/dist/src/sdk.js +284 -278
- package/package.json +2 -1
package/README.md
CHANGED
|
@@ -1076,10 +1076,10 @@ npx @capgo/cli@latest organisation delete
|
|
|
1076
1076
|
|
|
1077
1077
|
🏗️ Manage native iOS/Android builds through Capgo Cloud.
|
|
1078
1078
|
⚠️ This feature is currently in PUBLIC BETA and cannot be used by anyone at this time.
|
|
1079
|
-
🔒 SECURITY GUARANTEE:
|
|
1080
|
-
|
|
1081
|
-
|
|
1082
|
-
|
|
1079
|
+
🔒 SECURITY GUARANTEE:
|
|
1080
|
+
Build credentials are NEVER stored on Capgo servers.
|
|
1081
|
+
They are used only during the build and auto-deleted after.
|
|
1082
|
+
Build outputs may optionally be uploaded for time-limited download links.
|
|
1083
1083
|
📋 BEFORE BUILDING:
|
|
1084
1084
|
Save your credentials first:
|
|
1085
1085
|
npx @capgo/cli build credentials save --appId <your-app-id> --platform ios
|
|
@@ -1094,8 +1094,8 @@ npx @capgo/cli@latest build request
|
|
|
1094
1094
|
Request a native build from Capgo Cloud.
|
|
1095
1095
|
This command will zip your project directory and upload it to Capgo for building.
|
|
1096
1096
|
The build will be processed and sent directly to app stores.
|
|
1097
|
-
🔒 SECURITY: Credentials are never stored on Capgo servers. They are auto-deleted
|
|
1098
|
-
|
|
1097
|
+
🔒 SECURITY: Credentials are never stored on Capgo servers. They are auto-deleted
|
|
1098
|
+
after build completion. Build outputs may optionally be uploaded for time-limited download links.
|
|
1099
1099
|
📋 PREREQUISITE: Save credentials first with:
|
|
1100
1100
|
npx @capgo/cli build credentials save --appId <app-id> --platform <ios|android>
|
|
1101
1101
|
|
|
@@ -1145,7 +1145,7 @@ Manage build credentials stored locally on your machine.
|
|
|
1145
1145
|
- Credentials saved to ~/.capgo-credentials/credentials.json (global) or .capgo-credentials.json (local)
|
|
1146
1146
|
- When building, sent to Capgo but NEVER stored permanently
|
|
1147
1147
|
- Deleted from Capgo immediately after build
|
|
1148
|
-
-
|
|
1148
|
+
- Build outputs may optionally be uploaded for time-limited download links
|
|
1149
1149
|
📚 DOCUMENTATION:
|
|
1150
1150
|
iOS setup: https://capgo.app/docs/cli/cloud-build/ios/
|
|
1151
1151
|
Android setup: https://capgo.app/docs/cli/cloud-build/android/
|