[PR #314] [MERGED] In-app events CLI #440

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

📋 Pull Request Information

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

Base: mainHead: cursor/in-app-events-cli-95a3


📝 Commits (4)

  • c2fccea feat: add app-events CLI and client support
  • 7dc5131 test: add app-events client and CLI coverage
  • 4a06b6b Add generic asset validation and empty output coverage.
  • e7794a2 Merge origin/main into in-app-events PR

📊 Changes

21 files changed (+4832 additions, -2 deletions)

View changed files

internal/asc/app_events.go (+327 -0)
📝 internal/asc/assets_upload.go (+7 -2)
📝 internal/asc/assets_upload_test.go (+34 -0)
internal/asc/client_app_events.go (+725 -0)
internal/asc/client_app_events_test.go (+800 -0)
📝 internal/asc/client_pagination.go (+16 -0)
📝 internal/asc/client_types.go (+3 -0)
internal/asc/output_app_events.go (+243 -0)
📝 internal/asc/output_core.go (+44 -0)
📝 internal/asc/output_test.go (+393 -0)
internal/cli/app_events/app_events.go (+486 -0)
internal/cli/app_events/commands.go (+8 -0)
internal/cli/app_events/helpers.go (+154 -0)
internal/cli/app_events/localizations.go (+345 -0)
internal/cli/app_events/media_helpers.go (+110 -0)
internal/cli/app_events/screenshots.go (+311 -0)
internal/cli/app_events/shared_wrappers.go (+50 -0)
internal/cli/app_events/submit.go (+101 -0)
internal/cli/app_events/video_clips.go (+316 -0)
📝 internal/cli/cmdtest/commands_test.go (+357 -0)

...and 1 more files

📄 Description

Implement the asc app-events command group, providing full CRUD, upload flows, and output formatting for App Store in-app events, localizations, screenshots, and video clips.


Open in Cursor Open in Web


🔄 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/314 **Author:** [@rudrankriyam](https://github.com/rudrankriyam) **Created:** 1/30/2026 **Status:** ✅ Merged **Merged:** 1/30/2026 **Merged by:** [@rudrankriyam](https://github.com/rudrankriyam) **Base:** `main` ← **Head:** `cursor/in-app-events-cli-95a3` --- ### 📝 Commits (4) - [`c2fccea`](https://github.com/rudrankriyam/App-Store-Connect-CLI/commit/c2fcceafde758786f80ea8492c254545faf4210a) feat: add app-events CLI and client support - [`7dc5131`](https://github.com/rudrankriyam/App-Store-Connect-CLI/commit/7dc513141ffc67a05c45a962313aefb46fede56d) test: add app-events client and CLI coverage - [`4a06b6b`](https://github.com/rudrankriyam/App-Store-Connect-CLI/commit/4a06b6b4bdb2181ceb9ef3819394af2570363c4f) Add generic asset validation and empty output coverage. - [`e7794a2`](https://github.com/rudrankriyam/App-Store-Connect-CLI/commit/e7794a2f28cbfc999b21c2d57465993b86219cab) Merge origin/main into in-app-events PR ### 📊 Changes **21 files changed** (+4832 additions, -2 deletions) <details> <summary>View changed files</summary> ➕ `internal/asc/app_events.go` (+327 -0) 📝 `internal/asc/assets_upload.go` (+7 -2) 📝 `internal/asc/assets_upload_test.go` (+34 -0) ➕ `internal/asc/client_app_events.go` (+725 -0) ➕ `internal/asc/client_app_events_test.go` (+800 -0) 📝 `internal/asc/client_pagination.go` (+16 -0) 📝 `internal/asc/client_types.go` (+3 -0) ➕ `internal/asc/output_app_events.go` (+243 -0) 📝 `internal/asc/output_core.go` (+44 -0) 📝 `internal/asc/output_test.go` (+393 -0) ➕ `internal/cli/app_events/app_events.go` (+486 -0) ➕ `internal/cli/app_events/commands.go` (+8 -0) ➕ `internal/cli/app_events/helpers.go` (+154 -0) ➕ `internal/cli/app_events/localizations.go` (+345 -0) ➕ `internal/cli/app_events/media_helpers.go` (+110 -0) ➕ `internal/cli/app_events/screenshots.go` (+311 -0) ➕ `internal/cli/app_events/shared_wrappers.go` (+50 -0) ➕ `internal/cli/app_events/submit.go` (+101 -0) ➕ `internal/cli/app_events/video_clips.go` (+316 -0) 📝 `internal/cli/cmdtest/commands_test.go` (+357 -0) _...and 1 more files_ </details> ### 📄 Description Implement the `asc app-events` command group, providing full CRUD, upload flows, and output formatting for App Store in-app events, localizations, screenshots, and video clips. --- <a href="https://cursor.com/background-agent?bcId=bc-d7963874-bc62-4e02-a657-8f1a3787a630"><picture><source media="(prefers-color-scheme: dark)" srcset="https://cursor.com/assets/images/open-in-cursor-dark.png"><source media="(prefers-color-scheme: light)" srcset="https://cursor.com/assets/images/open-in-cursor-light.png"><img alt="Open in Cursor" width="131" height="28" src="https://cursor.com/assets/images/open-in-cursor-dark.png"></picture></a>&nbsp;<a href="https://cursor.com/agents?id=bc-d7963874-bc62-4e02-a657-8f1a3787a630"><picture><source media="(prefers-color-scheme: dark)" srcset="https://cursor.com/assets/images/open-in-web-dark.png"><source media="(prefers-color-scheme: light)" srcset="https://cursor.com/assets/images/open-in-web-light.png"><img alt="Open in Web" width="114" height="28" src="https://cursor.com/assets/images/open-in-web-dark.png"></picture></a> --- <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:57 +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#440
No description provided.