[PR #35] [MERGED] Add sandbox tester management commands #245

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

📋 Pull Request Information

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

Base: mainHead: issue-25-sandbox


📝 Commits (2)

  • 1fcb082 Add sandbox tester management commands
  • 163b1d6 Add sandbox update and clear-history commands

📊 Changes

12 files changed (+2140 additions, -2 deletions)

View changed files

📝 Agents.md (+14 -1)
📝 README.md (+46 -0)
📝 cmd/commands.go (+1 -0)
cmd/sandbox.go (+528 -0)
cmd/sandbox_helpers.go (+410 -0)
cmd/sandbox_helpers_test.go (+92 -0)
cmd/sandbox_test.go (+239 -0)
📝 internal/asc/client.go (+20 -1)
📝 internal/asc/output_test.go (+84 -0)
internal/asc/sandbox.go (+340 -0)
internal/asc/sandbox_output.go (+98 -0)
internal/asc/sandbox_test.go (+268 -0)

📄 Description

Summary

  • add asc sandbox update and asc sandbox clear-history (v2 API) alongside existing sandbox commands
  • add client support for update and clear-history requests, new output formatting, and validation helpers
  • extend tests and docs for sandbox update/clear-history workflows

Test plan

  • go fmt ./...
  • make lint
  • make test
  • ./asc sandbox list --limit 1 --output json
  • ./asc sandbox update --id <tester> ... (no sandbox testers available to update)
  • ./asc sandbox clear-history --id <tester> --confirm (no sandbox testers available to clear)
  • ./asc sandbox create --email <email> ... (fails: v1 /sandboxTesters not available on this account)

🔄 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/35 **Author:** [@rudrankriyam](https://github.com/rudrankriyam) **Created:** 1/21/2026 **Status:** ✅ Merged **Merged:** 1/21/2026 **Merged by:** [@rudrankriyam](https://github.com/rudrankriyam) **Base:** `main` ← **Head:** `issue-25-sandbox` --- ### 📝 Commits (2) - [`1fcb082`](https://github.com/rudrankriyam/App-Store-Connect-CLI/commit/1fcb08200cc4b07107c94ebfbc8816503a425f4e) Add sandbox tester management commands - [`163b1d6`](https://github.com/rudrankriyam/App-Store-Connect-CLI/commit/163b1d6b296aa44de0c19e5f777601289851594d) Add sandbox update and clear-history commands ### 📊 Changes **12 files changed** (+2140 additions, -2 deletions) <details> <summary>View changed files</summary> 📝 `Agents.md` (+14 -1) 📝 `README.md` (+46 -0) 📝 `cmd/commands.go` (+1 -0) ➕ `cmd/sandbox.go` (+528 -0) ➕ `cmd/sandbox_helpers.go` (+410 -0) ➕ `cmd/sandbox_helpers_test.go` (+92 -0) ➕ `cmd/sandbox_test.go` (+239 -0) 📝 `internal/asc/client.go` (+20 -1) 📝 `internal/asc/output_test.go` (+84 -0) ➕ `internal/asc/sandbox.go` (+340 -0) ➕ `internal/asc/sandbox_output.go` (+98 -0) ➕ `internal/asc/sandbox_test.go` (+268 -0) </details> ### 📄 Description ## Summary - add `asc sandbox update` and `asc sandbox clear-history` (v2 API) alongside existing sandbox commands - add client support for update and clear-history requests, new output formatting, and validation helpers - extend tests and docs for sandbox update/clear-history workflows ## Test plan - [x] `go fmt ./...` - [x] `make lint` - [x] `make test` - [x] `./asc sandbox list --limit 1 --output json` - [ ] `./asc sandbox update --id <tester> ...` (no sandbox testers available to update) - [ ] `./asc sandbox clear-history --id <tester> --confirm` (no sandbox testers available to clear) - [ ] `./asc sandbox create --email <email> ...` (fails: v1 `/sandboxTesters` not available on this account) --- <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:17 +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#245
No description provided.