Skip to content

Commit

Permalink
feat: Add scheduled at response (#419)
Browse files Browse the repository at this point in the history
  • Loading branch information
bukinoshita authored Aug 16, 2024
1 parent 0d5c2ab commit df8e6b9
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions src/emails/interfaces/get-email-options.interface.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,16 +8,20 @@ export interface GetEmailResponseSuccess {
html: string | null;
id: string;
last_event:
| 'delivered'
| 'opened'
| 'clicked'
| 'bounced'
| 'canceled'
| 'clicked'
| 'complained'
| 'delivery_delayed';
| 'delivered'
| 'delivery_delayed'
| 'opened'
| 'queued'
| 'scheduled';
reply_to: string[] | null;
subject: string;
text: string | null;
to: string[];
scheduled_at: string | null;
object: 'email';
}

Expand Down

0 comments on commit df8e6b9

Please sign in to comment.