@capgo/cli 8.10.0 → 8.11.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 +2 -0
- package/dist/index.js +975 -694
- package/dist/package.json +10 -3
- package/dist/src/analytics/opt-out.d.ts +2 -0
- package/dist/src/app/debug.d.ts +1 -1
- package/dist/src/build/onboarding/android/ui/app.d.ts +3 -0
- package/dist/src/build/onboarding/command.d.ts +1 -0
- package/dist/src/build/onboarding/telemetry.d.ts +3 -0
- package/dist/src/build/onboarding/ui/app.d.ts +3 -0
- package/dist/src/build/onboarding/ui/exit.d.ts +2 -0
- package/dist/src/build/onboarding/ui/shell.d.ts +5 -0
- package/dist/src/init/command.d.ts +12 -1
- package/dist/src/init/replay.d.ts +91 -0
- package/dist/src/init/ui.d.ts +1 -1
- package/dist/src/posthog.d.ts +1 -0
- package/dist/src/schemas/common.d.ts +5 -0
- package/dist/src/sdk.js +231 -231
- package/dist/src/utils.d.ts +10 -1
- package/package.json +10 -3
- package/skills/native-builds/SKILL.md +1 -0
- package/skills/usage/SKILL.md +1 -0
package/README.md
CHANGED
|
@@ -115,6 +115,7 @@ npx @capgo/cli@latest init YOUR_API_KEY com.example.app
|
|
|
115
115
|
| **-i** | <code>string</code> | App icon path for display in Capgo Cloud |
|
|
116
116
|
| **--supa-host** | <code>string</code> | Custom Supabase host URL (for self-hosting or Capgo development) |
|
|
117
117
|
| **--supa-anon** | <code>string</code> | Custom Supabase anon key (for self-hosting) |
|
|
118
|
+
| **--no-analytics** | <code>boolean</code> | Disable init analytics and terminal replay for this run |
|
|
118
119
|
|
|
119
120
|
|
|
120
121
|
## <a id="run"></a> 📱 **Run**
|
|
@@ -1240,6 +1241,7 @@ Set up build credentials interactively (iOS: certificates + profiles automated;
|
|
|
1240
1241
|
| **-a** | <code>string</code> | API key to link to your account |
|
|
1241
1242
|
| **-p** | <code>string</code> | Platform to onboard (ios or android). If omitted, auto-detects when only one native folder exists; prompts otherwise. |
|
|
1242
1243
|
| **--supa-host** | <code>string</code> | Custom Supabase host URL (for self-hosting or Capgo development) |
|
|
1244
|
+
| **--no-analytics** | <code>boolean</code> | Disable build onboarding analytics and terminal replay for this run |
|
|
1243
1245
|
|
|
1244
1246
|
### <a id="build-request"></a> 🔹 **Request**
|
|
1245
1247
|
|