mirror of
https://github.com/rudrankriyam/App-Store-Connect-CLI.git
synced 2026-04-25 15:45:48 +03:00
[GH-ISSUE #623] coverage: Add remaining missing relationship endpoints (misc) (OpenAPI) #179
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#179
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/623
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/client files based on resource (bundle IDs, analytics, categories, etc.).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 (#623).
Scope: 21 remaining missing relationship endpoints (GET-only) across misc resources.
Implementation notes:
internal/asc/client_*.gofiles.ResourceDatavs[]ResourceData).newTestClient.Acceptance:
internal/asc/with tests.ASC_BYPASS_KEYCHAIN=1 make testpasses.@cursor[bot] commented on GitHub (Feb 18, 2026):
Implemented issue #623: added all 21 missing GET relationship endpoints to the
internal/ascclient, using to-one vs to-many linkage response shapes (ResourceDatavs[]ResourceData) as defined in the offline OpenAPI snapshot.Added request-shaping tests for every endpoint using
newTestClient(asserting HTTP method + path + relationship query params likelimit) across the appropriateinternal/asc/*_test.gofiles, plus a small newclient_http_categories_test.gofor the App Categories relationship coverage.Verification (post-push):
make formatmake lintASC_BYPASS_KEYCHAIN=1 make test✅Changes are committed and pushed on
cursor/missing-relationship-endpoints-c4f7(d6a1a37).@rudrankriyam commented on GitHub (Feb 18, 2026):
Closed by PR #629 (merged). Note: production disallows the limit param for bundleIdCapabilities relationships and reports bundleIds->app relationship does not exist.