dymo-api 1.2.13 → 1.2.15
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.
- package/dist/cjs/branches/private/functions/isValidEmail/index.cjs +1 -1
- package/dist/cjs/dymo-api.cjs +1 -1
- package/dist/esm/branches/private/functions/isValidEmail/index.js +1 -1
- package/dist/esm/dymo-api.js +1 -1
- package/dist/types/dymo-api.d.ts +1 -1
- package/dist/types/lib/types/data-verifier.d.ts +1 -2
- package/package.json +1 -1
|
@@ -40,7 +40,7 @@ const isValidEmail = async (axiosClient, email, rules) => {
|
|
|
40
40
|
rules.deny.includes("NO_MX_RECORDS") ? "mxRecords" : undefined,
|
|
41
41
|
rules.deny.includes("NO_REACHABLE") ? "reachability" : undefined,
|
|
42
42
|
rules.deny.includes("HIGH_RISK_SCORE") ? "riskScore" : undefined
|
|
43
|
-
]
|
|
43
|
+
].filter(Boolean)
|
|
44
44
|
}, { headers: { "Content-Type": "application/json" } })).data.email;
|
|
45
45
|
let reasons = [];
|
|
46
46
|
if (rules.deny.includes("INVALID") && !responseEmail.valid) {
|
package/dist/cjs/dymo-api.cjs
CHANGED
|
@@ -37,7 +37,7 @@ export const isValidEmail = async (axiosClient, email, rules) => {
|
|
|
37
37
|
rules.deny.includes("NO_MX_RECORDS") ? "mxRecords" : undefined,
|
|
38
38
|
rules.deny.includes("NO_REACHABLE") ? "reachability" : undefined,
|
|
39
39
|
rules.deny.includes("HIGH_RISK_SCORE") ? "riskScore" : undefined
|
|
40
|
-
]
|
|
40
|
+
].filter(Boolean)
|
|
41
41
|
}, { headers: { "Content-Type": "application/json" } })).data.email;
|
|
42
42
|
let reasons = [];
|
|
43
43
|
if (rules.deny.includes("INVALID") && !responseEmail.valid) {
|
package/dist/esm/dymo-api.js
CHANGED
package/dist/types/dymo-api.d.ts
CHANGED
|
@@ -219,4 +219,4 @@ declare class DymoAPI {
|
|
|
219
219
|
isValidPwd(data: Interfaces.IsValidPwdData): Promise<Interfaces.PasswordValidationResult>;
|
|
220
220
|
}
|
|
221
221
|
export default DymoAPI;
|
|
222
|
-
export type { EmailValidatorRules, WafRules, NegativeEmailRules, SensitiveInfoRules } from "./lib/types/interfaces";
|
|
222
|
+
export type { EmailValidatorRules, WafRules, NegativeEmailRules, SensitiveInfoRules, DataEmailValidationAnalysis } from "./lib/types/interfaces";
|
|
@@ -92,7 +92,7 @@ export type SensitiveInfoResponse = {
|
|
|
92
92
|
/**
|
|
93
93
|
* Detailed analysis of an email validation.
|
|
94
94
|
*/
|
|
95
|
-
interface DataEmailValidationAnalysis {
|
|
95
|
+
export interface DataEmailValidationAnalysis {
|
|
96
96
|
/** Whether the email is valid. */
|
|
97
97
|
valid: boolean;
|
|
98
98
|
/** Whether the email is flagged as fraudulent. */
|
|
@@ -419,4 +419,3 @@ export interface DataValidationAnalysis {
|
|
|
419
419
|
};
|
|
420
420
|
};
|
|
421
421
|
}
|
|
422
|
-
export {};
|