[PR #216] [MERGED] Add app tags CLI support #360

Closed
opened 2026-02-26 21:34:47 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

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

Base: mainHead: issue-201-app-tags


📝 Commits (4)

  • 062c4d8 Add app tags CLI support
  • dbdd784 Complete app-tags parity with OpenAPI by exposing fields/includes and relationship endpoints.
  • 8f9875f Merge origin/main into issue-201-app-tags.
  • c1d5af8 Merge remote-tracking branch 'origin/main' into issue-201-app-tags

📊 Changes

16 files changed (+1613 additions, -9 deletions)

View changed files

📝 README.md (+33 -1)
cmd/app_tags.go (+731 -0)
📝 cmd/commands_test.go (+80 -0)
📝 cmd/root.go (+1 -0)
📝 docs/CONTRIBUTING.md (+1 -1)
internal/asc/app_tags.go (+202 -0)
📝 internal/asc/client_http_test.go (+187 -0)
📝 internal/asc/client_options.go (+95 -0)
📝 internal/asc/client_pagination.go (+18 -0)
📝 internal/asc/client_queries.go (+39 -0)
📝 internal/asc/client_test.go (+42 -0)
📝 internal/asc/client_types.go (+23 -7)
internal/asc/output_app_tags.go (+33 -0)
📝 internal/asc/output_core.go (+12 -0)
internal/asc/output_linkages.go (+28 -0)
📝 internal/asc/output_test.go (+88 -0)

📄 Description

Summary

  • add asc app-tags list/get/update commands with validation and pagination
  • add app tag client endpoints for GET app tags and PATCH updates
  • add table/markdown output plus query/output tests

Test plan

  • make build
  • make lint
  • make test
  • go run . app-tags list --app 6747745091 --limit 5 --output table (returned empty table)

Fixes #201


🔄 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/216 **Author:** [@rudrankriyam](https://github.com/rudrankriyam) **Created:** 1/27/2026 **Status:** ✅ Merged **Merged:** 1/27/2026 **Merged by:** [@rudrankriyam](https://github.com/rudrankriyam) **Base:** `main` ← **Head:** `issue-201-app-tags` --- ### 📝 Commits (4) - [`062c4d8`](https://github.com/rudrankriyam/App-Store-Connect-CLI/commit/062c4d86652b7fb28fe375b53d82f6a64f03b3d1) Add app tags CLI support - [`dbdd784`](https://github.com/rudrankriyam/App-Store-Connect-CLI/commit/dbdd784c4f82ef4958eb4d92c9b9022f745d1180) Complete app-tags parity with OpenAPI by exposing fields/includes and relationship endpoints. - [`8f9875f`](https://github.com/rudrankriyam/App-Store-Connect-CLI/commit/8f9875f029ecec2231af86388fda5af383f2fb9d) Merge origin/main into issue-201-app-tags. - [`c1d5af8`](https://github.com/rudrankriyam/App-Store-Connect-CLI/commit/c1d5af85252d8f522b5a08ee8ff38874353001e1) Merge remote-tracking branch 'origin/main' into issue-201-app-tags ### 📊 Changes **16 files changed** (+1613 additions, -9 deletions) <details> <summary>View changed files</summary> 📝 `README.md` (+33 -1) ➕ `cmd/app_tags.go` (+731 -0) 📝 `cmd/commands_test.go` (+80 -0) 📝 `cmd/root.go` (+1 -0) 📝 `docs/CONTRIBUTING.md` (+1 -1) ➕ `internal/asc/app_tags.go` (+202 -0) 📝 `internal/asc/client_http_test.go` (+187 -0) 📝 `internal/asc/client_options.go` (+95 -0) 📝 `internal/asc/client_pagination.go` (+18 -0) 📝 `internal/asc/client_queries.go` (+39 -0) 📝 `internal/asc/client_test.go` (+42 -0) 📝 `internal/asc/client_types.go` (+23 -7) ➕ `internal/asc/output_app_tags.go` (+33 -0) 📝 `internal/asc/output_core.go` (+12 -0) ➕ `internal/asc/output_linkages.go` (+28 -0) 📝 `internal/asc/output_test.go` (+88 -0) </details> ### 📄 Description ## Summary - add `asc app-tags` list/get/update commands with validation and pagination - add app tag client endpoints for GET app tags and PATCH updates - add table/markdown output plus query/output tests ## Test plan - `make build` - `make lint` - `make test` - `go run . app-tags list --app 6747745091 --limit 5 --output table` (returned empty table) Fixes #201 --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-02-26 21:34:47 +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#360
No description provided.