@capgo/cli 8.33.5 → 8.35.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 +1 -0
- package/dist/index.js +575 -574
- package/dist/package.json +1 -1
- package/dist/src/api/channels.d.ts +1 -0
- package/dist/src/app/list.d.ts +2 -0
- package/dist/src/schemas/channel.d.ts +7 -0
- package/dist/src/schemas/sdk.d.ts +14 -0
- package/dist/src/sdk.js +281 -280
- package/dist/src/types/supabase.types.d.ts +19 -0
- package/dist/src/utils.d.ts +20 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -948,6 +948,7 @@ npx @capgo/cli@latest channel set production com.example.app --bundle 1.0.0 --st
|
|
|
948
948
|
| **--self-assign** | <code>boolean</code> | Allow device to self-assign to this channel |
|
|
949
949
|
| **--no-self-assign** | <code>boolean</code> | Disable devices to self-assign to this channel |
|
|
950
950
|
| **--disable-auto-update** | <code>string</code> | Block updates by type: major, minor, metadata, patch, or none (allows all) |
|
|
951
|
+
| **--update-package** | <code>string</code> | Serve zip, delta, or both: all, zip, delta, zip_from_builtin, or delta_from_builtin |
|
|
951
952
|
| **--rollout-bundle** | <code>string</code> | Bundle version to release gradually on this channel |
|
|
952
953
|
| **--rollout-percentage** | <code>string</code> | Rollout percentage from 0 to 100 |
|
|
953
954
|
| **--rollout-percentage-bps** | <code>string</code> | Rollout percentage in basis points from 0 to 10000 |
|