From 2f260b23ff867f2a1bf4901e285673a132df9f4e Mon Sep 17 00:00:00 2001 From: Francis Gyimah Date: Mon, 16 Feb 2026 11:04:12 +0000 Subject: [PATCH] Added `spam_reported` to EmailAddressStatus --- src/types/EmailRecipient.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/types/EmailRecipient.ts b/src/types/EmailRecipient.ts index 5136d0af..3b8060c8 100644 --- a/src/types/EmailRecipient.ts +++ b/src/types/EmailRecipient.ts @@ -41,6 +41,7 @@ export namespace EmailRecipient { UNSUBSCRIBED = 'unsubscribed', UNSUBSCRIBED_FROM_ALL_COMMUNICATIONS = 'unsubscribed_from_all_communications', DUPLICATE = 'duplicate', + SPAM_REPORTED = 'spam_reported', } export enum EmailAddressStatus { @@ -48,6 +49,7 @@ export namespace EmailRecipient { BOUNCED = 'bounced', UNSUBSCRIBED = 'unsubscribed', UNSUBSCRIBED_FROM_ALL_COMMUNICATIONS = 'unsubscribed_from_all_communications', + SPAM_REPORTED = 'spam_reported', } export interface EmailAddressRecord {