[eas-cli] Add eas update:embedded:list command#3811
Draft
gwdp wants to merge 1 commit into
Draft
Conversation
|
✅ Thank you for adding the changelog entry! |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Why
Lets users list the embedded updates they've uploaded for a project from the CLI, with platform / runtime / channel filters. Pairs with the server query in expo/universe#27770. Ref ENG-21468.
How
Mirrors the upload/view/delete patterns.
--platform,--runtime-version,--channelfor filtering;--limit+--after-cursorfor pagination.--jsonreturns the full connection payload; otherwise prints each row as a formatted block with a next-page hint when more results exist.Query wrapper bundles both
viewByIdAsync(overlaps with view PR #3810) andviewPaginatedAsync; whichever lands first, the other rebases. Uses inline types +eslint-disable graphql/template-stringsuntil both server PRs merge and codegen runs.Test Plan
yarn tsc --noEmit,yarn lintclean. 5 unit tests: rows, empty,--json, filters, next-page hint.