mirror of
https://github.com/rudrankriyam/App-Store-Connect-CLI.git
synced 2026-04-25 15:45:48 +03:00
[GH-ISSUE #207] Add Build Bundles CLI support #68
Labels
No labels
bug
bug
documentation
enhancement
pull-request
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/App-Store-Connect-CLI#68
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @rudrankriyam on GitHub (Jan 26, 2026).
Original GitHub issue: https://github.com/rudrankriyam/App-Store-Connect-CLI/issues/207
Originally assigned to: @rudrankriyam on GitHub.
Overview
Add CLI support to read Build Bundle metadata and related App Clip signals: file sizes, domain cache/debug status, and beta App Clip invocations.
Docs (API)
Scope (Endpoints)
From Build Bundles docs:
GET /v1/buildBundles/{id}/appClipDomainCacheStatusGET /v1/buildBundles/{id}/appClipDomainDebugStatusGET /v1/buildBundles/{id}/betaAppClipInvocationsGET /v1/buildBundles/{id}/buildBundleFileSizes(Discovery) Confirm how to list build bundles for a build (likely
GET /v1/builds/{id}/buildBundlesorinclude=buildBundles). Add list support accordingly.Proposed CLI
Flags
Common:
--output json|table|markdown--pretty--limit,--next,--paginate(for list endpoints)Output
Acceptance Criteria
asc build-bundles --helpavailableTests
Manual Test Plan (using real apps)
asc builds list --app APP_ID --limit 1 --output jsonasc build-bundles list --build-id BUILD_IDasc build-bundles file-sizes list --build-bundle-id BUNDLE_IDasc build-bundles app-clip cache-status get --build-bundle-id BUNDLE_IDasc build-bundles app-clip debug-status get --build-bundle-id BUNDLE_IDasc build-bundles app-clip invocations list --build-bundle-id BUNDLE_IDNotes:
Implementation Notes
internal/asc/build_bundles.gowith response types and client methods.internal/asc/build_bundles_output.go.cmd/build_bundles.goand register incmd/root.go.internal/asc/client_types.goif needed.@rudrankriyam commented on GitHub (Jan 27, 2026):
Closed as fixed by #227. PRs: https://github.com/rudrankriyam/App-Store-Connect-CLI/pull/227