mirror of
https://github.com/rudrankriyam/App-Store-Connect-CLI.git
synced 2026-04-25 15:45:48 +03:00
[GH-ISSUE #250] Add Pass Type IDs CLI support #77
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#77
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 28, 2026).
Original GitHub issue: https://github.com/rudrankriyam/App-Store-Connect-CLI/issues/250
Overview
Add CLI support for Pass Type IDs, which are used for Apple Wallet (Passbook) passes. This enables full management of pass type IDs from the CLI with JSON-first output and explicit flags.
Scope
Primary resources from the OpenAPI spec:
passTypeIds(list, get, create, update, delete)passTypeIds/{id}/certificates,passTypeIds/{id}/relationships/certificatescertificates/{id}/passTypeId,certificates/{id}/relationships/passTypeIdEndpoints:
Proposed CLI
Top-level group:
asc pass-type-ids <subcommand> [flags]Subcommands (all support list/get/create/update/delete unless noted):
pass-type-ids list|get|create|update|deletepass-type-ids certificates list|get(read-only, certificates are managed separately)Examples:
asc pass-type-ids listasc pass-type-ids get --pass-type-id PASS_TYPE_IDasc pass-type-ids create --identifier com.example.pass --name "Example Pass"asc pass-type-ids update --pass-type-id PASS_TYPE_ID --name "Updated Name"asc pass-type-ids delete --pass-type-id PASS_TYPE_ID --confirmasc pass-type-ids certificates list --pass-type-id PASS_TYPE_IDFlag patterns
Common:
--output,--pretty,--limit,--next,--paginate--confirmfor destructive operationsResource-specific examples:
--pass-type-id--identifier(reverse domain format)--nameOutput
--prettyfor JSON--output table/markdownfor list commandsAcceptance criteria
asc --helpandasc pass-type-ids --help--paginate,--next,--limit)--confirmTests
Implementation notes
cmd/pass_type_ids.goandinternal/asc/client_pass_type_ids.gointernal/asc/output_pass_type_ids.gocmd/root.gointernal/asc/client_types.gocmd/bundle_ids.go,cmd/certificates.go, and output helpers ininternal/asc/output_*