fix: Resend integration example comment (#860)

This commit is contained in:
Kritik Jiyaviya
2024-01-21 22:46:26 +05:30
committed by GitHub
parent 583da458ec
commit da90ee13c3
2 changed files with 8 additions and 3 deletions
+5
View File
@@ -0,0 +1,5 @@
---
"@trigger.dev/resend": patch
---
Fix resend integration example comment
+3 -3
View File
@@ -165,7 +165,7 @@ export class Resend implements TriggerIntegration {
* @example
* ```ts
* const response = await io.resend.audiences.create("📧", {
* name: payload.name,
* name: payload.name
* });
* ```
*/
@@ -182,8 +182,8 @@ export class Resend implements TriggerIntegration {
* email: payload.email,
* first_name: payload.first_name,
* last_name: payload.last_name,
* unsubscribed: false
* audienceId: payload.audienceId
* unsubscribed: payload.unsubscribed,
* audience_id: payload.audience_id
* });
* ```
*/