zynor 0.0.67 → 0.0.68
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/index.cjs +3 -3
- package/dist/index.d.ts +3 -2
- package/dist/index.js +2 -2
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -3,9 +3,9 @@ import { AnyARecord, AnyAaaaRecord, AnyCnameRecord, AnyMxRecord, AnyNaptrRecord,
|
|
|
3
3
|
export interface CacheConfig {
|
|
4
4
|
/** Enable/disable caching. Default: true */
|
|
5
5
|
enabled?: boolean;
|
|
6
|
-
/** Max entries per cache namespace. Default:
|
|
6
|
+
/** Max entries per cache namespace. Default: 100_000 */
|
|
7
7
|
maxSize?: number;
|
|
8
|
-
/** DNS result TTL in ms. Default:
|
|
8
|
+
/** DNS result TTL in ms. Default: 1_440_000 (24 min) */
|
|
9
9
|
dnsTtl?: number;
|
|
10
10
|
}
|
|
11
11
|
/**
|
|
@@ -2959,6 +2959,7 @@ export declare class Zynor {
|
|
|
2959
2959
|
static validateBulk(emails: string[], options?: {
|
|
2960
2960
|
concurrency?: number;
|
|
2961
2961
|
deep?: boolean;
|
|
2962
|
+
logo?: boolean;
|
|
2962
2963
|
signal?: AbortSignal;
|
|
2963
2964
|
timeout?: number;
|
|
2964
2965
|
}): Promise<EmailResponse[]>;
|