@capgo/cli 8.47.1 → 8.48.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 +7 -1
- package/dist/index.js +639 -639
- package/dist/package.json +1 -1
- package/dist/src/bundle/upload.d.ts +2 -1
- package/dist/src/channel/set.d.ts +14 -0
- package/dist/src/mcp/tool-schemas.d.ts +2 -0
- package/dist/src/schemas/bundle.d.ts +1 -0
- package/dist/src/schemas/channel.d.ts +1 -0
- package/dist/src/schemas/sdk.d.ts +3 -0
- package/dist/src/sdk.js +336 -336
- package/package.json +1 -1
- package/skills/release-management/SKILL.md +3 -1
package/package.json
CHANGED
|
@@ -66,7 +66,8 @@ Use this skill for OTA update workflows in Capgo Cloud.
|
|
|
66
66
|
- `--min-update-version <minUpdateVersion>`
|
|
67
67
|
- `--auto-min-update-version`
|
|
68
68
|
- `--ignore-metadata-check`
|
|
69
|
-
- `--fail-on-incompatible` (fail the upload instead of uploading when the bundle is incompatible with a target channel's current native packages; cannot be combined with `--ignore-metadata-check`)
|
|
69
|
+
- `--fail-on-incompatible` (fail the upload instead of uploading when the bundle is incompatible with a target channel's current native packages; cannot be combined with `--ignore-metadata-check` or `--accept-incompatible`)
|
|
70
|
+
- `--accept-incompatible` (mark native-package incompatibility as handled: still checks and warns, continues the upload, skips the crash-warning email; cannot be combined with `--fail-on-incompatible` or `--ignore-metadata-check`)
|
|
70
71
|
- `--ignore-checksum-check`
|
|
71
72
|
- `--force-crc32-checksum`
|
|
72
73
|
- `--timeout <timeout>`
|
|
@@ -228,6 +229,7 @@ Use this skill for OTA update workflows in Capgo Cloud.
|
|
|
228
229
|
- `--device`, `--no-device`
|
|
229
230
|
- `--package-json <packageJson>`
|
|
230
231
|
- `--ignore-metadata-check`
|
|
232
|
+
- `--accept-incompatible` (mark native-package incompatibility as handled: still checks and warns, sets the channel instead of failing; cannot be combined with `--ignore-metadata-check`)
|
|
231
233
|
- `--qr-preview`
|
|
232
234
|
- `--send-update-notification`
|
|
233
235
|
|