[PR #119] [MERGED] Bundle ID capabilities #299

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

📋 Pull Request Information

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

Base: mainHead: cursor/bundle-id-capabilities-1434


📝 Commits (8)

  • 402618a Add bundle ID commands and client
  • dac79a6 Add certificates and devices support
  • 973a27b Add profiles support
  • 56a5979 Merge origin/main into cursor/bundle-id-capabilities-1434
  • 2f843e3 Merge main (includes PR #106 TestFlight) into capabilities branch
  • 259a68c Merge main into bundle ID capabilities branch
  • 1ab24b0 Resolve device API merge conflicts
  • ee87888 Fix bundle ID capability pagination and mac UDID helper.

📊 Changes

20 files changed (+3349 additions, -29 deletions)

View changed files

cmd/bundle_ids.go (+319 -0)
cmd/bundle_ids_capabilities.go (+234 -0)
cmd/bundle_ids_test.go (+139 -0)
cmd/certificates.go (+244 -0)
cmd/certificates_test.go (+55 -0)
📝 cmd/devices.go (+79 -11)
cmd/devices_test.go (+79 -0)
cmd/profiles.go (+387 -0)
cmd/profiles_test.go (+115 -0)
📝 cmd/root.go (+3 -0)
cmd/signing_helpers.go (+52 -0)
📝 internal/asc/client_http_test.go (+539 -0)
📝 internal/asc/client_options.go (+108 -3)
📝 internal/asc/client_pagination.go (+20 -4)
📝 internal/asc/client_queries.go (+51 -10)
internal/asc/client_signing.go (+426 -0)
📝 internal/asc/client_types.go (+5 -1)
📝 internal/asc/output_core.go (+52 -0)
internal/asc/signing.go (+178 -0)
internal/asc/signing_output.go (+264 -0)

📄 Description

Implement App Store Connect Bundle IDs and Capabilities API integration and CLI commands.

This PR introduces the first part of the signing and provisioning feature, covering the management of Bundle IDs and their associated capabilities (types, client methods, CLI commands, and tests) as outlined in the implementation guide.


Open in Cursor Open in Web

Fixes #71


🔄 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/119 **Author:** [@rudrankriyam](https://github.com/rudrankriyam) **Created:** 1/24/2026 **Status:** ✅ Merged **Merged:** 1/26/2026 **Merged by:** [@rudrankriyam](https://github.com/rudrankriyam) **Base:** `main` ← **Head:** `cursor/bundle-id-capabilities-1434` --- ### 📝 Commits (8) - [`402618a`](https://github.com/rudrankriyam/App-Store-Connect-CLI/commit/402618a08a47005fed393a417e79e063cc5cef87) Add bundle ID commands and client - [`dac79a6`](https://github.com/rudrankriyam/App-Store-Connect-CLI/commit/dac79a614a70dbd03bcf3a2c89e3e8500f4f4d6b) Add certificates and devices support - [`973a27b`](https://github.com/rudrankriyam/App-Store-Connect-CLI/commit/973a27b2518b4560fe1bbe323289b5f1ada4d282) Add profiles support - [`56a5979`](https://github.com/rudrankriyam/App-Store-Connect-CLI/commit/56a59791ede2c07438ca0fd28f4bf4b9b896cf42) Merge origin/main into cursor/bundle-id-capabilities-1434 - [`2f843e3`](https://github.com/rudrankriyam/App-Store-Connect-CLI/commit/2f843e38686b6f9d87549870eb316ee4237f9977) Merge main (includes PR #106 TestFlight) into capabilities branch - [`259a68c`](https://github.com/rudrankriyam/App-Store-Connect-CLI/commit/259a68c3da211e0d0d415a14e97093586b827562) Merge main into bundle ID capabilities branch - [`1ab24b0`](https://github.com/rudrankriyam/App-Store-Connect-CLI/commit/1ab24b091a9ff91548d3b5d31531f9976bd21520) Resolve device API merge conflicts - [`ee87888`](https://github.com/rudrankriyam/App-Store-Connect-CLI/commit/ee8788893e59cefdf3d10c2713a5bc30debcf8fe) Fix bundle ID capability pagination and mac UDID helper. ### 📊 Changes **20 files changed** (+3349 additions, -29 deletions) <details> <summary>View changed files</summary> ➕ `cmd/bundle_ids.go` (+319 -0) ➕ `cmd/bundle_ids_capabilities.go` (+234 -0) ➕ `cmd/bundle_ids_test.go` (+139 -0) ➕ `cmd/certificates.go` (+244 -0) ➕ `cmd/certificates_test.go` (+55 -0) 📝 `cmd/devices.go` (+79 -11) ➕ `cmd/devices_test.go` (+79 -0) ➕ `cmd/profiles.go` (+387 -0) ➕ `cmd/profiles_test.go` (+115 -0) 📝 `cmd/root.go` (+3 -0) ➕ `cmd/signing_helpers.go` (+52 -0) 📝 `internal/asc/client_http_test.go` (+539 -0) 📝 `internal/asc/client_options.go` (+108 -3) 📝 `internal/asc/client_pagination.go` (+20 -4) 📝 `internal/asc/client_queries.go` (+51 -10) ➕ `internal/asc/client_signing.go` (+426 -0) 📝 `internal/asc/client_types.go` (+5 -1) 📝 `internal/asc/output_core.go` (+52 -0) ➕ `internal/asc/signing.go` (+178 -0) ➕ `internal/asc/signing_output.go` (+264 -0) </details> ### 📄 Description Implement App Store Connect Bundle IDs and Capabilities API integration and CLI commands. This PR introduces the first part of the signing and provisioning feature, covering the management of Bundle IDs and their associated capabilities (types, client methods, CLI commands, and tests) as outlined in the implementation guide. --- <a href="https://cursor.com/background-agent?bcId=bc-a16c7588-ba6e-49f6-a3cd-8f027bc014a7"><picture><source media="(prefers-color-scheme: dark)" srcset="https://cursor.com/open-in-cursor-dark.svg"><source media="(prefers-color-scheme: light)" srcset="https://cursor.com/open-in-cursor-light.svg"><img alt="Open in Cursor" src="https://cursor.com/open-in-cursor.svg"></picture></a>&nbsp;<a href="https://cursor.com/agents?id=bc-a16c7588-ba6e-49f6-a3cd-8f027bc014a7"><picture><source media="(prefers-color-scheme: dark)" srcset="https://cursor.com/open-in-web-dark.svg"><source media="(prefers-color-scheme: light)" srcset="https://cursor.com/open-in-web-light.svg"><img alt="Open in Web" src="https://cursor.com/open-in-web.svg"></picture></a> Fixes #71 --- <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:29 +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#299
No description provided.