@capgo/cli 8.25.13 → 8.27.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 +8 -0
- package/dist/index.js +557 -557
- package/dist/package.json +1 -1
- package/dist/src/build/credentials-command.d.ts +1 -0
- package/dist/src/bundle/upload.d.ts +2 -0
- package/dist/src/notifications/send-update.d.ts +14 -0
- package/dist/src/schemas/build.d.ts +2 -0
- package/dist/src/schemas/bundle.d.ts +3 -0
- package/dist/src/schemas/channel.d.ts +1 -0
- package/dist/src/sdk.js +238 -238
- package/package.json +1 -1
- package/skills/release-management/SKILL.md +4 -0
package/package.json
CHANGED
|
@@ -48,6 +48,7 @@ Use this skill for OTA update workflows in Capgo Cloud.
|
|
|
48
48
|
- `--channel` accepts a single channel or a comma-separated list such as `production,beta`.
|
|
49
49
|
- When multiple channels are provided, channels that already have the uploaded checksum are skipped and the remaining channels are assigned.
|
|
50
50
|
- Use `--qr-preview` to print a terminal QR code for the uploaded bundle after a successful upload. App preview must be enabled first.
|
|
51
|
+
- Use `--send-update-notification` to queue native update-check notifications for channels whose linked bundle changed. Native notifications and push update notifications must be enabled for the app.
|
|
51
52
|
- Important options:
|
|
52
53
|
- `-p, --path <path>`
|
|
53
54
|
- `-c, --channel <channel[,channel...]>`
|
|
@@ -84,6 +85,7 @@ Use this skill for OTA update workflows in Capgo Cloud.
|
|
|
84
85
|
- `--version-exists-ok`
|
|
85
86
|
- `--self-assign`
|
|
86
87
|
- `--qr-preview`
|
|
88
|
+
- `--send-update-notification`
|
|
87
89
|
- S3 options: `--s3-region`, `--s3-apikey`, `--s3-apisecret`, `--s3-endpoint`, `--s3-bucket-name`, `--s3-port`, `--no-s3-ssl`
|
|
88
90
|
- Signing options: `--key-v2`, `--key-data-v2`, `--bundle-url`, `--no-key`, `--display-iv-session`
|
|
89
91
|
- Deprecated options still supported: `--multipart`, `--partial`, `--partial-only`
|
|
@@ -206,6 +208,7 @@ Use this skill for OTA update workflows in Capgo Cloud.
|
|
|
206
208
|
- Supports update policies `major`, `minor`, `metadata`, `patch`, and `none`.
|
|
207
209
|
- Supports platform and device targeting.
|
|
208
210
|
- Use `--qr-preview` to print a terminal QR code for the updated channel. App preview must be enabled first.
|
|
211
|
+
- Use `--send-update-notification` with bundle, latest, latest remote, rollout target, or rollout promote changes to make matching devices check for updates.
|
|
209
212
|
- Key options:
|
|
210
213
|
- `-b, --bundle <bundle>`
|
|
211
214
|
- `-s, --state <state>`
|
|
@@ -223,6 +226,7 @@ Use this skill for OTA update workflows in Capgo Cloud.
|
|
|
223
226
|
- `--package-json <packageJson>`
|
|
224
227
|
- `--ignore-metadata-check`
|
|
225
228
|
- `--qr-preview`
|
|
229
|
+
- `--send-update-notification`
|
|
226
230
|
|
|
227
231
|
## Encryption key workflows
|
|
228
232
|
|