@capgo/cli 7.86.1 → 7.88.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 +9 -0
- package/dist/index.js +623 -396
- package/dist/package.json +12 -1
- package/dist/src/api/app.d.ts +3 -0
- package/dist/src/api/channels.d.ts +24 -0
- package/dist/src/app/list.d.ts +8 -0
- package/dist/src/build/onboarding/apple-api.d.ts +106 -0
- package/dist/src/build/onboarding/command.d.ts +1 -0
- package/dist/src/build/onboarding/csr.d.ts +33 -0
- package/dist/src/build/onboarding/file-picker.d.ts +10 -0
- package/dist/src/build/onboarding/progress.d.ts +19 -0
- package/dist/src/build/onboarding/types.d.ts +37 -0
- package/dist/src/build/onboarding/ui/app.d.ts +10 -0
- package/dist/src/build/onboarding/ui/components.d.ts +25 -0
- package/dist/src/build/request.d.ts +16 -1
- package/dist/src/sdk.js +229 -229
- package/dist/src/types/supabase.types.d.ts +12 -0
- package/dist/src/utils.d.ts +20 -4
- package/package.json +12 -1
- package/skills/native-builds/SKILL.md +60 -1
package/README.md
CHANGED
|
@@ -69,6 +69,7 @@ Follow the documentation here: https://capacitorjs.com/docs/getting-started/
|
|
|
69
69
|
- [Set](#organisation-set)
|
|
70
70
|
- [Delete](#organisation-delete)
|
|
71
71
|
- 🔹 [Build](#build)
|
|
72
|
+
- [Onboarding](#build-onboarding)
|
|
72
73
|
- [Request](#build-request)
|
|
73
74
|
- [Credentials](#build-credentials)
|
|
74
75
|
- 🔹 [Probe](#probe)
|
|
@@ -1117,6 +1118,14 @@ npx @capgo/cli@latest organisation delete
|
|
|
1117
1118
|
npx @capgo/cli build credentials save --appId <your-app-id> --platform ios
|
|
1118
1119
|
npx @capgo/cli build credentials save --appId <your-app-id> --platform android
|
|
1119
1120
|
|
|
1121
|
+
### <a id="build-onboarding"></a> 🔹 **Onboarding**
|
|
1122
|
+
|
|
1123
|
+
```bash
|
|
1124
|
+
npx @capgo/cli@latest build onboarding
|
|
1125
|
+
```
|
|
1126
|
+
|
|
1127
|
+
Set up iOS build credentials interactively (creates certificates and profiles automatically)
|
|
1128
|
+
|
|
1120
1129
|
### <a id="build-request"></a> 🔹 **Request**
|
|
1121
1130
|
|
|
1122
1131
|
```bash
|