Skip to content

Commit

Permalink
feat(types): add refused verification type
Browse files Browse the repository at this point in the history
  • Loading branch information
douglasduteil committed Sep 27, 2024
1 parent e0082cf commit 96db8f5
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/types/email-domain.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,12 @@ interface EmailDomain {
organization_id: number;
domain: string;
verification_type:
| "verified"
| "blacklisted"
| "official_contact"
| "external"
| "official_contact"
| "refused"
| "trackdechets_postal_mail"
| "verified"
| null;
can_be_suggested: boolean;
// updated when verification_type is changed
Expand Down

0 comments on commit 96db8f5

Please sign in to comment.