feat(broadcasts): add recipients command - #369
Draft
dielduarte wants to merge 1 commit into
Draft
Conversation
List a broadcast's recipients filtered by event type (sent, delivered, opened, clicked, bounced, complained, unsubscribed, suppressed), with optional email substring and bounce-type filters plus cursor pagination. Bumps the resend dependency to 6.22.0, which introduces broadcasts.recipients().
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.
Adds `resend broadcasts recipients ` for GET /broadcasts/{id}/recipients.
Tests: 1114 passed. Lint/typecheck clean.
Summary by cubic
Adds a new CLI command to list a broadcast’s recipients by event type. Previously you couldn’t inspect recipients from the CLI; now
resend broadcasts recipients <id>fetches recipients with filters and pagination, usingresend6.22.0.--type(one of: sent, delivered, opened, clicked, bounced, complained, unsubscribed, suppressed); optional--emailfilter and--bounce-type(only forbounced).--limit(1–100, default 20),--after, and--before. Interactive mode prints a table and pagination hints; non-interactive outputs the JSON list.skills/resend-cli/references/broadcasts.mdand adds tests for flag validation, pagination, and SDK error handling.resend6.22.0 enablesbroadcasts.recipients().Written for commit e89e9d9. Summary will update on new commits.