@capgo/cli 7.56.4 → 7.58.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 +5 -1
- package/dist/index.js +228 -213
- package/dist/package.json +3 -3
- package/dist/src/api/channels.d.ts +26 -2
- package/dist/src/api/channels.d.ts.map +1 -1
- package/dist/src/api/versions.d.ts +2 -0
- package/dist/src/api/versions.d.ts.map +1 -1
- package/dist/src/app/debug.d.ts.map +1 -1
- package/dist/src/bundle/list.d.ts +1 -0
- package/dist/src/bundle/list.d.ts.map +1 -1
- package/dist/src/bundle/upload.d.ts.map +1 -1
- package/dist/src/channel/add.d.ts +2 -0
- package/dist/src/channel/add.d.ts.map +1 -1
- package/dist/src/channel/set.d.ts +2 -0
- package/dist/src/channel/set.d.ts.map +1 -1
- package/dist/src/login.d.ts.map +1 -1
- package/dist/src/sdk.d.ts +4 -0
- package/dist/src/sdk.d.ts.map +1 -1
- package/dist/src/sdk.js +218 -203
- package/dist/src/types/supabase.types.d.ts +11 -2
- package/dist/src/types/supabase.types.d.ts.map +1 -1
- package/dist/src/utils.d.ts +12 -1
- package/dist/src/utils.d.ts.map +1 -1
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -656,7 +656,7 @@ npx @capgo/cli@latest channel currentBundle production com.example.app
|
|
|
656
656
|
npx @capgo/cli@latest channel set
|
|
657
657
|
```
|
|
658
658
|
|
|
659
|
-
⚙️ Configure settings for a channel, such as linking a bundle, setting update strategies (major, minor, metadata, patch, none), or device targeting (iOS, Android, dev, emulator).
|
|
659
|
+
⚙️ Configure settings for a channel, such as linking a bundle, setting update strategies (major, minor, metadata, patch, none), or device targeting (iOS, Android, dev, prod, emulator, device).
|
|
660
660
|
One channel must be default.
|
|
661
661
|
|
|
662
662
|
**Example:**
|
|
@@ -685,8 +685,12 @@ npx @capgo/cli@latest channel set production com.example.app --bundle 1.0.0 --st
|
|
|
685
685
|
| **--disable-auto-update** | <code>string</code> | Block updates by type: major, minor, metadata, patch, or none (allows all) |
|
|
686
686
|
| **--dev** | <code>boolean</code> | Allow sending update to development devices |
|
|
687
687
|
| **--no-dev** | <code>boolean</code> | Disable sending update to development devices |
|
|
688
|
+
| **--prod** | <code>boolean</code> | Allow sending update to production devices |
|
|
689
|
+
| **--no-prod** | <code>boolean</code> | Disable sending update to production devices |
|
|
688
690
|
| **--emulator** | <code>boolean</code> | Allow sending update to emulator devices |
|
|
689
691
|
| **--no-emulator** | <code>boolean</code> | Disable sending update to emulator devices |
|
|
692
|
+
| **--device** | <code>boolean</code> | Allow sending update to physical devices |
|
|
693
|
+
| **--no-device** | <code>boolean</code> | Disable sending update to physical devices |
|
|
690
694
|
| **--package-json** | <code>string</code> | Paths to package.json files for monorepos (comma-separated) |
|
|
691
695
|
| **--ignore-metadata-check** | <code>boolean</code> | Ignore checking node_modules compatibility if present in the bundle |
|
|
692
696
|
| **--supa-host** | <code>string</code> | Custom Supabase host URL (for self-hosting or Capgo development) |
|