mirror of
https://github.com/rudrankriyam/App-Store-Connect-CLI.git
synced 2026-04-25 15:45:48 +03:00
[GH-ISSUE #615] coverage: Add missing apps relationship endpoints (OpenAPI) #171
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#171
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 (Feb 18, 2026).
Original GitHub issue: https://github.com/rudrankriyam/App-Store-Connect-CLI/issues/615
Context
These endpoints exist in the offline OpenAPI snapshot (
docs/openapi/latest.json, indexed bydocs/openapi/paths.txt) but are currently missing frominternal/ascclient coverage.Goal
Add ASC client methods for the endpoints below (method + path).
Missing endpoints
Where/what to add
internal/asc/(suggest new fileinternal/asc/client_apps_relationships.go).internal/asc/client_testflight_relationships.goandinternal/asc/client_build_relationships.go.internal/asc/client_http_relationships_test.go(or a new focused *_test.go).Test plan
newTestClient(assert method + path + query).Acceptance criteria
internal/ascwith tests.ASC_BYPASS_KEYCHAIN=1 make testpasses.@rudrankriyam commented on GitHub (Feb 18, 2026):
@cursor please implement this issue (#615).
Scope: 35 missing apps relationship endpoints (GET-only):
/v1/apps/{id}/relationships/<name>.Implementation notes:
getBuildLinkages/getBetaGroupLinkages) to reduce repetition, plus thin wrapper methods per relationship name required by the checklist.Acceptance:
internal/asc/with tests.ASC_BYPASS_KEYCHAIN=1 make testpasses.@cursor[bot] commented on GitHub (Feb 18, 2026):
Implemented issue #615 (35 missing apps relationship GET endpoints).
internal/asc/client_apps_relationships.gowith client methods for all/v1/apps/{id}/relationships/<name>endpoints:*LinkagesResponsevia a sharedgetAppLinkageshelperData+Links)appStoreVersionExperimentsV2usesGetAppAppStoreVersionExperimentsV2Relationshipsto avoid colliding with the existing version-scoped method nameinternal/asc/client_http_apps_relationships_test.go(asserts method + path + query; useslimit=5for to-many, asserts no query for to-one).Verification:
ASC_BYPASS_KEYCHAIN=1 make testmake formatmake lintPushed:
coverage: add apps relationship linkages endpoints(commit7eba9c3) tocursor/missing-apps-relationship-endpoints-0866.@rudrankriyam commented on GitHub (Feb 18, 2026):
Closed by PR #628 (merged). Note: some OpenAPI-listed app relationships were removed because production reports they don't exist / returns unexpected error.