feat: add broadcasts.clicked_links() method - #226
Conversation
There was a problem hiding this comment.
All reported issues were addressed across 2 files
Reply with feedback, questions, or to request a fix.
Re-trigger cubic
There was a problem hiding this comment.
0 issues found across 1 file (changes from recent commits).
Confidence score: 5/5
- Automated review surfaced no issues in the provided summaries.
- No files require special attention.
Requires human review: This PR adds the clicked_links method to the Resend::Broadcasts module, supporting a new API endpoint for broadcast click analytics and expanding the SDK's public interface.
Re-trigger cubic
There was a problem hiding this comment.
0 issues found across 1 file (changes from recent commits).
Confidence score: 5/5
- Automated review surfaced no issues in the provided summaries.
- No files require special attention.
Requires human review: Adds a new public clicked_links SDK method wrapping a new broadcast analytics endpoint, expanding the public contract; no visible evidence of prior human approval for this interface addition.
Re-trigger cubic
Adds
GET /broadcasts/{id}/clicked-links— paginated list of a broadcast's clicked links (url,clicks,unique_clicks).Spec: resend/resend-openapi#95
Reference implementation: resend/resend-node#1077
Summary by cubic
Adds
Resend::Broadcasts.clicked_linksto list a broadcast’s clicked links viaGET /broadcasts/{id}/clicked-links, enabling paginated click analytics. No behavior changes to existing methods.id,url,clicks, andunique_clicks.limit,after, andbeforeviaResend::PaginationHelper; specs cover response shape and all pagination params.Written for commit 9b0d877. Summary will update on new commits.