@capgo/cli 8.25.0 → 8.25.2
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 +22 -0
- package/dist/index.js +661 -661
- package/dist/package.json +1 -1
- package/dist/src/api/channels.d.ts +101 -0
- package/dist/src/app/list.d.ts +4 -0
- package/dist/src/channel/add.d.ts +17 -0
- package/dist/src/schemas/bundle.d.ts +3 -0
- package/dist/src/schemas/channel.d.ts +23 -0
- package/dist/src/schemas/sdk.d.ts +67 -0
- package/dist/src/sdk.js +292 -292
- package/dist/src/support/support-upload.d.ts +1 -0
- package/dist/src/types/supabase.types.d.ts +68 -0
- package/dist/src/utils.d.ts +84 -0
- package/package.json +1 -1
- package/skills/release-management/SKILL.md +4 -0
package/README.md
CHANGED
|
@@ -366,6 +366,9 @@ npx @capgo/cli@latest bundle upload com.example.app --path ./dist --channel prod
|
|
|
366
366
|
| **-a** | <code>string</code> | API key to link to your account |
|
|
367
367
|
| **-p** | <code>string</code> | Path of the folder to upload, if not provided it will use the webDir set in capacitor.config |
|
|
368
368
|
| **-c** | <code>string</code> | Channel to link to. Use commas for multiple channels, for example production,beta |
|
|
369
|
+
| **--rollout** | <code>string</code> | Set the uploaded bundle as this channel's rollout target at a percentage from 0 to 100 |
|
|
370
|
+
| **--rollout-percentage-bps** | <code>string</code> | Set the uploaded bundle rollout percentage in basis points from 0 to 10000 |
|
|
371
|
+
| **--rollout-cache-ttl-seconds** | <code>string</code> | Cloudflare rollout decision cache TTL in seconds |
|
|
369
372
|
| **-e** | <code>string</code> | Link to external URL instead of upload to Capgo Cloud |
|
|
370
373
|
| **--iv-session-key** | <code>string</code> | Set the IV and session key for bundle URL external |
|
|
371
374
|
| **--s3-region** | <code>string</code> | Region for your S3 bucket |
|
|
@@ -924,6 +927,25 @@ npx @capgo/cli@latest channel set production com.example.app --bundle 1.0.0 --st
|
|
|
924
927
|
| **--self-assign** | <code>boolean</code> | Allow device to self-assign to this channel |
|
|
925
928
|
| **--no-self-assign** | <code>boolean</code> | Disable devices to self-assign to this channel |
|
|
926
929
|
| **--disable-auto-update** | <code>string</code> | Block updates by type: major, minor, metadata, patch, or none (allows all) |
|
|
930
|
+
| **--rollout-bundle** | <code>string</code> | Bundle version to release gradually on this channel |
|
|
931
|
+
| **--rollout-percentage** | <code>string</code> | Rollout percentage from 0 to 100 |
|
|
932
|
+
| **--rollout-percentage-bps** | <code>string</code> | Rollout percentage in basis points from 0 to 10000 |
|
|
933
|
+
| **--rollout-enable** | <code>boolean</code> | Enable the configured rollout |
|
|
934
|
+
| **--rollout-disable** | <code>boolean</code> | Disable the configured rollout |
|
|
935
|
+
| **--rollout-pause** | <code>boolean</code> | Pause rollout exposure without rolling back selected devices |
|
|
936
|
+
| **--rollout-resume** | <code>boolean</code> | Resume a paused rollout |
|
|
937
|
+
| **--rollout-rollback** | <code>boolean</code> | Clear rollout state and return devices to stable |
|
|
938
|
+
| **--rollout-promote** | <code>boolean</code> | Promote rollout target to stable and clear rollout state |
|
|
939
|
+
| **--rollout-cache-ttl-seconds** | <code>string</code> | Cloudflare rollout decision cache TTL in seconds |
|
|
940
|
+
| **--auto-pause-enabled** | <code>boolean</code> | Enable rollout auto-pause policy |
|
|
941
|
+
| **--auto-pause-disabled** | <code>boolean</code> | Disable rollout auto-pause policy |
|
|
942
|
+
| **--auto-pause-window-minutes** | <code>string</code> | Stats window for rollout auto-pause |
|
|
943
|
+
| **--auto-pause-failure-rate-bps** | <code>string</code> | Failure-rate threshold in basis points |
|
|
944
|
+
| **--auto-pause-confidence** | <code>string</code> | Confidence level between 0 and 1 |
|
|
945
|
+
| **--auto-pause-min-attempts** | <code>string</code> | Minimum install plus fail attempts before auto-pause can trigger |
|
|
946
|
+
| **--auto-pause-min-failures** | <code>string</code> | Minimum failures before auto-pause can trigger |
|
|
947
|
+
| **--auto-pause-action** | <code>string</code> | Auto-pause action: pause, rollback, or notify |
|
|
948
|
+
| **--auto-pause-cooldown-minutes** | <code>string</code> | Cooldown before auto-pause can trigger again |
|
|
927
949
|
| **--dev** | <code>boolean</code> | Allow sending update to development devices |
|
|
928
950
|
| **--no-dev** | <code>boolean</code> | Disable sending update to development devices |
|
|
929
951
|
| **--prod** | <code>boolean</code> | Allow sending update to production devices |
|