Skip to content

Commit bd62ac1

Browse files
authored
Merge pull request #401 from prezly/feature/add-spam-reported-to-email-address-status-types
Feature - Add `spam_reported` to EmailAddressStatus
2 parents 1fe470f + 2f260b2 commit bd62ac1

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

src/types/EmailRecipient.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,13 +41,15 @@ export namespace EmailRecipient {
4141
UNSUBSCRIBED = 'unsubscribed',
4242
UNSUBSCRIBED_FROM_ALL_COMMUNICATIONS = 'unsubscribed_from_all_communications',
4343
DUPLICATE = 'duplicate',
44+
SPAM_REPORTED = 'spam_reported',
4445
}
4546

4647
export enum EmailAddressStatus {
4748
OK = 'ok',
4849
BOUNCED = 'bounced',
4950
UNSUBSCRIBED = 'unsubscribed',
5051
UNSUBSCRIBED_FROM_ALL_COMMUNICATIONS = 'unsubscribed_from_all_communications',
52+
SPAM_REPORTED = 'spam_reported',
5153
}
5254

5355
export interface EmailAddressRecord {

0 commit comments

Comments
 (0)