@capgo/cli 8.17.2 → 8.19.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 +14 -0
- package/dist/index.js +639 -634
- package/dist/package.json +4 -3
- package/dist/src/api/channels.d.ts +4 -0
- package/dist/src/app/default-channels.d.ts +10 -0
- package/dist/src/app/list.d.ts +2 -0
- package/dist/src/app/store-url.d.ts +1 -0
- package/dist/src/build/platform-paths.d.ts +7 -0
- package/dist/src/preview/qr.d.ts +15 -2
- package/dist/src/preview/web-url.d.ts +3 -0
- package/dist/src/schemas/app.d.ts +8 -0
- package/dist/src/sdk.js +320 -315
- package/dist/src/shared/preview-subdomain.d.ts +3 -0
- package/dist/src/types/supabase.types.d.ts +4 -0
- package/dist/src/utils.d.ts +6 -0
- package/package.json +4 -3
package/README.md
CHANGED
|
@@ -246,6 +246,10 @@ Examples:
|
|
|
246
246
|
| **--bundle** | <code>string</code> | Bundle name or id to preview |
|
|
247
247
|
| **--channel** | <code>string</code> | Channel name or id to preview |
|
|
248
248
|
| **--type** | <code>string</code> | Type for positional target |
|
|
249
|
+
| **--png** | <code>string</code> | Write the preview QR code as a PNG image to the given file path |
|
|
250
|
+
| **--url** | <code>boolean</code> | Print preview URLs only (web and deep link), without a terminal QR code |
|
|
251
|
+
| **--web-url** | <code>boolean</code> | Encode the web preview URL in the QR code and PNG instead of the capgo:// deep link |
|
|
252
|
+
| **--preview-env** | <code>string</code> | Preview web URL environment |
|
|
249
253
|
| **--supa-host** | <code>string</code> | Custom Supabase host URL (for self-hosting or Capgo development) |
|
|
250
254
|
| **--supa-anon** | <code>string</code> | Custom Supabase anon key (for self-hosting) |
|
|
251
255
|
|
|
@@ -685,6 +689,16 @@ npx @capgo/cli@latest app set com.example.app --name "Updated App" --retention 3
|
|
|
685
689
|
| **--expose-metadata** | <code>string</code> | Expose bundle metadata (link and comment) to the plugin (true/false, default: false) |
|
|
686
690
|
| **--preview** | <code>boolean</code> | Enable bundle and channel preview QR codes for this app |
|
|
687
691
|
| **--no-preview** | <code>boolean</code> | Disable bundle and channel preview QR codes for this app |
|
|
692
|
+
| **--allow-device-custom-id** | <code>boolean</code> | Allow devices to set a custom device ID for this app |
|
|
693
|
+
| **--no-allow-device-custom-id** | <code>boolean</code> | Disallow custom device IDs for this app |
|
|
694
|
+
| **--block-provider-infra-requests** | <code>boolean</code> | Block provider infrastructure requests for this app |
|
|
695
|
+
| **--no-block-provider-infra-requests** | <code>boolean</code> | Allow provider infrastructure requests for this app |
|
|
696
|
+
| **--build-timeout-minutes** | <code>string</code> | Native build timeout in minutes (5-360, default: 15) |
|
|
697
|
+
| **--ios-store-url** | <code>string</code> | iOS App Store URL for this app |
|
|
698
|
+
| **--android-store-url** | <code>string</code> | Google Play Store URL for this app |
|
|
699
|
+
| **--default-upload-channel** | <code>string</code> | Default upload channel name for this app |
|
|
700
|
+
| **--default-download-channel** | <code>string</code> | Default download channel name for this app (sets channel public=true) |
|
|
701
|
+
| **--disable-download-channels** | <code>boolean</code> | Disable Capgo download channels for this app (sets all channels public=false) |
|
|
688
702
|
| **--supa-host** | <code>string</code> | Custom Supabase host URL (for self-hosting or Capgo development) |
|
|
689
703
|
| **--supa-anon** | <code>string</code> | Custom Supabase anon key (for self-hosting) |
|
|
690
704
|
|