Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
0bca64a
fix: workflows failing on contributor forks (#563)
gabrielmfern Aug 8, 2025
ee0d2a1
feat: rate limiting information for all responses (#562)
gabrielmfern Aug 14, 2025
2988eda
feat: use typescript to ensure there's email or id for contacts.get (…
gabrielmfern Aug 15, 2025
8fa7977
chore: bump to 6.1.0-canary.0 (#568)
gabrielmfern Aug 19, 2025
bc6392e
feat: discussion/issue templates (#579)
gabrielmfern Aug 21, 2025
a2024a3
chore: use vitest 😼 (#580)
gabrielmfern Aug 21, 2025
6f30f45
chore(deps): update pnpm to v10.15.0 (#570)
renovate[bot] Aug 21, 2025
12137de
chore(deps): update dependency tsup to v8 (#272)
renovate[bot] Aug 21, 2025
8867954
chore: temporarily remove docker container credentials (#583)
gabrielmfern Aug 21, 2025
25372d1
chore: document the response object in the examples (#471)
mcwhittemore Aug 21, 2025
7d74ab3
chore(deps): upgrade biome (#540)
emiliosheinz Aug 21, 2025
cb55cc5
fix: type issues (#585)
gabrielmfern Aug 22, 2025
546af97
chore: improved workflows (#584)
gabrielmfern Aug 22, 2025
a8fb086
chore(deps): update dependency typescript to v5.9.2 (#553)
renovate[bot] Aug 22, 2025
67feede
chore: lint (#591)
gabrielmfern Aug 22, 2025
8666e27
feat: pkg-pr-new workflow (#581)
gabrielmfern Aug 22, 2025
e2700f7
chore(deps): update dependency @types/react to v19.1.10 (#518)
renovate[bot] Aug 22, 2025
df6de37
chore(deps): update tj-actions/changed-files digest to 2036da1 (#593)
renovate[bot] Aug 22, 2025
8c72b7c
chore(deps): update node.js to v22 (#442)
renovate[bot] Aug 22, 2025
de2aed2
fix: preview releases workflow (#595)
gabrielmfern Aug 25, 2025
308d251
feat: react option for updating broadcasts (#510)
hufftheweevil Aug 25, 2025
6899036
fix: wrong syntax in rendering template note (#604)
vieiralucas Aug 26, 2025
e9c02bf
chore: bump to 6.1.0-canary.1 (#603)
gabrielmfern Aug 27, 2025
722feb3
feat: adds permissive mode for batch API (#599)
pedro-stramantinoli Aug 29, 2025
59c9e71
fix: changes headers name to keep standard (#608)
pedro-stramantinoli Aug 29, 2025
16f6884
feat: add emails.list method (#609)
vieiralucas Aug 31, 2025
b0055c4
fix: links in js doc comments on rate limiting API (#612)
gabrielmfern Sep 1, 2025
6a794d1
feat: add async iterator support to emails.list method
vieiralucas Aug 31, 2025
4cc8f42
feat: make PaginatedRequest itself be a Promise and a AsyncIterator
vieiralucas Sep 3, 2025
14dbe10
Merge branch 'canary' into feature/eng-4362-introduce-asynciterators-…
gabrielmfern Mar 18, 2026
927978b
lint
gabrielmfern Mar 18, 2026
dbfc014
remove unwanted changes
gabrielmfern Mar 18, 2026
dcbaf0a
Merge branch 'canary' into feature/eng-4362-introduce-asynciterators-…
gabrielmfern Mar 18, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 0 additions & 9 deletions src/batch/batch.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -592,7 +592,6 @@ describe('Batch', () => {
subject: 'Custom Subject Override',
to: 'subscriber@example.com',
replyTo: 'noreply@example.com',
scheduledAt: 'in 1 hour',
},
];

Expand Down Expand Up @@ -627,17 +626,9 @@ describe('Batch', () => {
const requestBody = JSON.parse(lastCall[1]?.body as string);
expect(requestBody).toEqual([
{
attachments: undefined,
bcc: undefined,
cc: undefined,
from: 'newsletter@example.com',
headers: undefined,
html: undefined,
reply_to: 'noreply@example.com',
scheduled_at: 'in 1 hour',
subject: 'Custom Subject Override',
tags: undefined,
text: undefined,
to: 'subscriber@example.com',
template: {
id: 'newsletter-template-456',
Expand Down
Loading
Loading