dymo-api 1.1.7 → 1.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -112,29 +112,61 @@ const isValidEmail = async (token, email, rules) => {
|
|
|
112
112
|
rules.deny.includes("HIGH_RISK_SCORE") ? "riskScore" : undefined
|
|
113
113
|
]
|
|
114
114
|
}, { headers: { "Content-Type": "application/json", "Authorization": token } })).data.email;
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
115
|
+
let reasons = [];
|
|
116
|
+
function isValidEmailInRules(email) {
|
|
117
|
+
if (rules.deny.includes("INVALID") && !responseEmail.valid) {
|
|
118
|
+
reasons.push("INVALID");
|
|
119
|
+
return false;
|
|
120
|
+
}
|
|
121
|
+
if (rules.deny.includes("FRAUD") && responseEmail.fraud) {
|
|
122
|
+
reasons.push("FRAUD");
|
|
123
|
+
return false;
|
|
124
|
+
}
|
|
125
|
+
if (rules.deny.includes("PROXIED_EMAIL") && responseEmail.proxiedEmail) {
|
|
126
|
+
reasons.push("PROXIED_EMAIL");
|
|
127
|
+
return false;
|
|
128
|
+
}
|
|
129
|
+
if (rules.deny.includes("FREE_SUBDOMAIN") && responseEmail.freeSubdomain) {
|
|
130
|
+
reasons.push("FREE_SUBDOMAIN");
|
|
131
|
+
return false;
|
|
132
|
+
}
|
|
133
|
+
if (rules.deny.includes("PERSONAL_EMAIL") && !responseEmail.corporate) {
|
|
134
|
+
reasons.push("PERSONAL_EMAIL");
|
|
135
|
+
return false;
|
|
136
|
+
}
|
|
137
|
+
if (rules.deny.includes("CORPORATE_EMAIL") && responseEmail.corporate) {
|
|
138
|
+
reasons.push("CORPORATE_EMAIL");
|
|
139
|
+
return false;
|
|
140
|
+
}
|
|
141
|
+
if (rules.deny.includes("NO_MX_RECORDS") && responseEmail.plugins.mxRecords.length === 0) {
|
|
142
|
+
reasons.push("NO_MX_RECORDS");
|
|
143
|
+
return false;
|
|
144
|
+
}
|
|
145
|
+
if (rules.deny.includes("NO_REPLY_EMAIL") && responseEmail.noReply) {
|
|
146
|
+
reasons.push("NO_REPLY_EMAIL");
|
|
147
|
+
return false;
|
|
148
|
+
}
|
|
149
|
+
if (rules.deny.includes("ROLE_ACCOUNT") && responseEmail.plugins.roleAccount) {
|
|
150
|
+
reasons.push("ROLE_ACCOUNT");
|
|
151
|
+
return false;
|
|
152
|
+
}
|
|
153
|
+
if (rules.deny.includes("NO_REACHABLE") && !responseEmail.plugins.reachable) {
|
|
154
|
+
reasons.push("NO_REACHABLE");
|
|
155
|
+
return false;
|
|
156
|
+
}
|
|
157
|
+
if (rules.deny.includes("HIGH_RISK_SCORE") && responseEmail.plugins.riskScore >= 80) {
|
|
158
|
+
reasons.push("HIGH_RISK_SCORE");
|
|
159
|
+
return false;
|
|
160
|
+
}
|
|
161
|
+
return true;
|
|
162
|
+
}
|
|
163
|
+
;
|
|
164
|
+
return {
|
|
165
|
+
email: responseEmail.email,
|
|
166
|
+
resolution: isValidEmailInRules(email),
|
|
167
|
+
reasons,
|
|
168
|
+
response: responseEmail
|
|
169
|
+
};
|
|
138
170
|
}
|
|
139
171
|
catch (error) {
|
|
140
172
|
const statusCode = error.response?.status || 500;
|
|
@@ -72,29 +72,61 @@ export const isValidEmail = async (token, email, rules) => {
|
|
|
72
72
|
rules.deny.includes("HIGH_RISK_SCORE") ? "riskScore" : undefined
|
|
73
73
|
]
|
|
74
74
|
}, { headers: { "Content-Type": "application/json", "Authorization": token } })).data.email;
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
75
|
+
let reasons = [];
|
|
76
|
+
function isValidEmailInRules(email) {
|
|
77
|
+
if (rules.deny.includes("INVALID") && !responseEmail.valid) {
|
|
78
|
+
reasons.push("INVALID");
|
|
79
|
+
return false;
|
|
80
|
+
}
|
|
81
|
+
if (rules.deny.includes("FRAUD") && responseEmail.fraud) {
|
|
82
|
+
reasons.push("FRAUD");
|
|
83
|
+
return false;
|
|
84
|
+
}
|
|
85
|
+
if (rules.deny.includes("PROXIED_EMAIL") && responseEmail.proxiedEmail) {
|
|
86
|
+
reasons.push("PROXIED_EMAIL");
|
|
87
|
+
return false;
|
|
88
|
+
}
|
|
89
|
+
if (rules.deny.includes("FREE_SUBDOMAIN") && responseEmail.freeSubdomain) {
|
|
90
|
+
reasons.push("FREE_SUBDOMAIN");
|
|
91
|
+
return false;
|
|
92
|
+
}
|
|
93
|
+
if (rules.deny.includes("PERSONAL_EMAIL") && !responseEmail.corporate) {
|
|
94
|
+
reasons.push("PERSONAL_EMAIL");
|
|
95
|
+
return false;
|
|
96
|
+
}
|
|
97
|
+
if (rules.deny.includes("CORPORATE_EMAIL") && responseEmail.corporate) {
|
|
98
|
+
reasons.push("CORPORATE_EMAIL");
|
|
99
|
+
return false;
|
|
100
|
+
}
|
|
101
|
+
if (rules.deny.includes("NO_MX_RECORDS") && responseEmail.plugins.mxRecords.length === 0) {
|
|
102
|
+
reasons.push("NO_MX_RECORDS");
|
|
103
|
+
return false;
|
|
104
|
+
}
|
|
105
|
+
if (rules.deny.includes("NO_REPLY_EMAIL") && responseEmail.noReply) {
|
|
106
|
+
reasons.push("NO_REPLY_EMAIL");
|
|
107
|
+
return false;
|
|
108
|
+
}
|
|
109
|
+
if (rules.deny.includes("ROLE_ACCOUNT") && responseEmail.plugins.roleAccount) {
|
|
110
|
+
reasons.push("ROLE_ACCOUNT");
|
|
111
|
+
return false;
|
|
112
|
+
}
|
|
113
|
+
if (rules.deny.includes("NO_REACHABLE") && !responseEmail.plugins.reachable) {
|
|
114
|
+
reasons.push("NO_REACHABLE");
|
|
115
|
+
return false;
|
|
116
|
+
}
|
|
117
|
+
if (rules.deny.includes("HIGH_RISK_SCORE") && responseEmail.plugins.riskScore >= 80) {
|
|
118
|
+
reasons.push("HIGH_RISK_SCORE");
|
|
119
|
+
return false;
|
|
120
|
+
}
|
|
121
|
+
return true;
|
|
122
|
+
}
|
|
123
|
+
;
|
|
124
|
+
return {
|
|
125
|
+
email: responseEmail.email,
|
|
126
|
+
resolution: isValidEmailInRules(email),
|
|
127
|
+
reasons,
|
|
128
|
+
response: responseEmail
|
|
129
|
+
};
|
|
98
130
|
}
|
|
99
131
|
catch (error) {
|
|
100
132
|
const statusCode = error.response?.status || 500;
|
|
@@ -26,7 +26,36 @@ export type NegativeEmailRules = "FRAUD" | "INVALID" | "NO_MX_RECORDS" | "PROXIE
|
|
|
26
26
|
export interface EmailValidatorRules {
|
|
27
27
|
deny: NegativeEmailRules[];
|
|
28
28
|
}
|
|
29
|
-
export type EmailValidatorResponse =
|
|
29
|
+
export type EmailValidatorResponse = {
|
|
30
|
+
email: string;
|
|
31
|
+
resolution: boolean;
|
|
32
|
+
reasons: NegativeEmailRules[];
|
|
33
|
+
response: DataEmailValidationAnalysis;
|
|
34
|
+
};
|
|
35
|
+
interface DataEmailValidationAnalysis {
|
|
36
|
+
valid: boolean;
|
|
37
|
+
fraud: boolean;
|
|
38
|
+
proxiedEmail: boolean;
|
|
39
|
+
freeSubdomain: boolean;
|
|
40
|
+
corporate: boolean;
|
|
41
|
+
email: string;
|
|
42
|
+
realUser: string;
|
|
43
|
+
didYouMean: string | null;
|
|
44
|
+
noReply: boolean;
|
|
45
|
+
customTLD: boolean;
|
|
46
|
+
domain: string;
|
|
47
|
+
roleAccount: boolean;
|
|
48
|
+
plugins: {
|
|
49
|
+
blocklist?: boolean;
|
|
50
|
+
compromiseDetector?: boolean;
|
|
51
|
+
nsfw?: boolean;
|
|
52
|
+
reputation?: TyposquattingPlugin;
|
|
53
|
+
riskScore?: number;
|
|
54
|
+
torNetwork?: boolean;
|
|
55
|
+
typosquatting?: TyposquattingPlugin;
|
|
56
|
+
urlShortener?: boolean;
|
|
57
|
+
};
|
|
58
|
+
}
|
|
30
59
|
export interface DataValidationAnalysis {
|
|
31
60
|
url: {
|
|
32
61
|
valid: boolean;
|
|
@@ -47,30 +76,7 @@ export interface DataValidationAnalysis {
|
|
|
47
76
|
urlShortener?: boolean;
|
|
48
77
|
};
|
|
49
78
|
};
|
|
50
|
-
email:
|
|
51
|
-
valid: boolean;
|
|
52
|
-
fraud: boolean;
|
|
53
|
-
proxiedEmail: boolean;
|
|
54
|
-
freeSubdomain: boolean;
|
|
55
|
-
corporate: boolean;
|
|
56
|
-
email: string;
|
|
57
|
-
realUser: string;
|
|
58
|
-
didYouMean: string | null;
|
|
59
|
-
noReply: boolean;
|
|
60
|
-
customTLD: boolean;
|
|
61
|
-
domain: string;
|
|
62
|
-
roleAccount: boolean;
|
|
63
|
-
plugins: {
|
|
64
|
-
blocklist?: boolean;
|
|
65
|
-
compromiseDetector?: boolean;
|
|
66
|
-
nsfw?: boolean;
|
|
67
|
-
reputation?: TyposquattingPlugin;
|
|
68
|
-
riskScore?: number;
|
|
69
|
-
torNetwork?: boolean;
|
|
70
|
-
typosquatting?: TyposquattingPlugin;
|
|
71
|
-
urlShortener?: boolean;
|
|
72
|
-
};
|
|
73
|
-
};
|
|
79
|
+
email: DataEmailValidationAnalysis;
|
|
74
80
|
phone: {
|
|
75
81
|
valid: boolean;
|
|
76
82
|
fraud: boolean;
|
|
@@ -183,3 +189,4 @@ export interface DataValidationAnalysis {
|
|
|
183
189
|
};
|
|
184
190
|
};
|
|
185
191
|
}
|
|
192
|
+
export {};
|