[PR #290] [MERGED] Add merchant IDs CLI support #414

Closed
opened 2026-02-26 22:30:50 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/rudrankriyam/App-Store-Connect-CLI/pull/290
Author: @rudrankriyam
Created: 1/29/2026
Status: Merged
Merged: 1/29/2026
Merged by: @rudrankriyam

Base: mainHead: feat/merchant-ids


📝 Commits (2)

  • d2e34cf Add merchant IDs support for managing payment identifiers.
  • c5f310e Add pass type IDs and expand merchant options.

📊 Changes

25 files changed (+3615 additions, -0 deletions)

View changed files

📝 internal/asc/client_http_test.go (+518 -0)
internal/asc/client_merchant_ids.go (+192 -0)
📝 internal/asc/client_options.go (+352 -0)
📝 internal/asc/client_pagination.go (+6 -0)
internal/asc/client_pass_type_ids.go (+193 -0)
📝 internal/asc/client_queries.go (+140 -0)
📝 internal/asc/client_test.go (+196 -0)
📝 internal/asc/client_types.go (+2 -0)
internal/asc/merchant_ids.go (+50 -0)
📝 internal/asc/output_core.go (+24 -0)
internal/asc/output_merchant_ids.go (+56 -0)
internal/asc/output_merchant_ids_test.go (+86 -0)
internal/asc/output_pass_type_ids.go (+56 -0)
internal/asc/output_pass_type_ids_test.go (+86 -0)
internal/asc/pass_type_ids.go (+50 -0)
internal/cli/cmdtest/merchant_ids_test.go (+88 -0)
internal/cli/merchantids/commands.go (+8 -0)
internal/cli/merchantids/merchant_ids.go (+475 -0)
internal/cli/merchantids/merchant_ids_certificates.go (+235 -0)
internal/cli/merchantids/shared_wrappers.go (+42 -0)

...and 5 more files

📄 Description

Summary

  • add merchant ID commands including certificates list/relationships
  • add merchant ID client/types and output formatting for table/markdown
  • cover CLI validation, client endpoints, and output formatting with tests

Test plan

  • make format
  • make test
  • make lint

Fixes #247


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/rudrankriyam/App-Store-Connect-CLI/pull/290 **Author:** [@rudrankriyam](https://github.com/rudrankriyam) **Created:** 1/29/2026 **Status:** ✅ Merged **Merged:** 1/29/2026 **Merged by:** [@rudrankriyam](https://github.com/rudrankriyam) **Base:** `main` ← **Head:** `feat/merchant-ids` --- ### 📝 Commits (2) - [`d2e34cf`](https://github.com/rudrankriyam/App-Store-Connect-CLI/commit/d2e34cf1cef3204e713bc96dab04dda70bd2973b) Add merchant IDs support for managing payment identifiers. - [`c5f310e`](https://github.com/rudrankriyam/App-Store-Connect-CLI/commit/c5f310ed7cf5d0705c16f2d25567d9dc74b0fac7) Add pass type IDs and expand merchant options. ### 📊 Changes **25 files changed** (+3615 additions, -0 deletions) <details> <summary>View changed files</summary> 📝 `internal/asc/client_http_test.go` (+518 -0) ➕ `internal/asc/client_merchant_ids.go` (+192 -0) 📝 `internal/asc/client_options.go` (+352 -0) 📝 `internal/asc/client_pagination.go` (+6 -0) ➕ `internal/asc/client_pass_type_ids.go` (+193 -0) 📝 `internal/asc/client_queries.go` (+140 -0) 📝 `internal/asc/client_test.go` (+196 -0) 📝 `internal/asc/client_types.go` (+2 -0) ➕ `internal/asc/merchant_ids.go` (+50 -0) 📝 `internal/asc/output_core.go` (+24 -0) ➕ `internal/asc/output_merchant_ids.go` (+56 -0) ➕ `internal/asc/output_merchant_ids_test.go` (+86 -0) ➕ `internal/asc/output_pass_type_ids.go` (+56 -0) ➕ `internal/asc/output_pass_type_ids_test.go` (+86 -0) ➕ `internal/asc/pass_type_ids.go` (+50 -0) ➕ `internal/cli/cmdtest/merchant_ids_test.go` (+88 -0) ➕ `internal/cli/merchantids/commands.go` (+8 -0) ➕ `internal/cli/merchantids/merchant_ids.go` (+475 -0) ➕ `internal/cli/merchantids/merchant_ids_certificates.go` (+235 -0) ➕ `internal/cli/merchantids/shared_wrappers.go` (+42 -0) _...and 5 more files_ </details> ### 📄 Description ## Summary - add merchant ID commands including certificates list/relationships - add merchant ID client/types and output formatting for table/markdown - cover CLI validation, client endpoints, and output formatting with tests ## Test plan - [x] make format - [x] make test - [x] make lint Fixes #247 --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-02-26 22:30:50 +03:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/App-Store-Connect-CLI#414
No description provided.