Skip to content

Commit e7f1b75

Browse files
authored
fix: missing tags on type for GetEmailResponseSuccess (#561)
1 parent 7b5905b commit e7f1b75

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "resend",
3-
"version": "6.0.0",
3+
"version": "6.0.1",
44
"description": "Node.js library for the Resend API",
55
"main": "./dist/index.js",
66
"module": "./dist/index.mjs",

src/emails/interfaces/get-email-options.interface.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ export interface GetEmailResponseSuccess {
2222
reply_to: string[] | null;
2323
subject: string;
2424
text: string | null;
25+
tags?: { name: string; value: string }[];
2526
to: string[];
2627
scheduled_at: string | null;
2728
object: 'email';

0 commit comments

Comments
 (0)