@types/nodemailer 6.4.8 → 6.4.10

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.
nodemailer/README.md CHANGED
@@ -8,7 +8,7 @@ This package contains type definitions for Nodemailer (https://github.com/nodema
8
8
  Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/nodemailer.
9
9
 
10
10
  ### Additional Details
11
- * Last updated: Thu, 18 May 2023 15:32:53 GMT
11
+ * Last updated: Mon, 11 Sep 2023 01:03:05 GMT
12
12
  * Dependencies: [@types/node](https://npmjs.com/package/@types/node)
13
13
  * Global values: none
14
14
 
@@ -83,6 +83,7 @@ declare namespace SESTransport {
83
83
  accepted: Array<string | Mail.Address>;
84
84
  rejected: Array<string | Mail.Address>;
85
85
  pending: Array<string | Mail.Address>;
86
+ raw: Buffer;
86
87
  }
87
88
  }
88
89
 
@@ -153,6 +153,8 @@ declare namespace SMTPConnection {
153
153
  greetingTimeout?: ms | undefined;
154
154
  /** how many milliseconds of inactivity to allow */
155
155
  socketTimeout?: ms | undefined;
156
+ /** how many milliseconds to wait for the DNS requests to be resolved */
157
+ dnsTimeout?: ms | undefined;
156
158
  /** optional bunyan compatible logger instance. If set to true then logs to console. If value is not set or is false then nothing is logged */
157
159
  logger?: shared.Logger | boolean | undefined;
158
160
  /** if set to true, then logs SMTP traffic without message content */
nodemailer/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@types/nodemailer",
3
- "version": "6.4.8",
3
+ "version": "6.4.10",
4
4
  "description": "TypeScript definitions for Nodemailer",
5
5
  "homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/nodemailer",
6
6
  "license": "MIT",
@@ -32,6 +32,6 @@
32
32
  "dependencies": {
33
33
  "@types/node": "*"
34
34
  },
35
- "typesPublisherContentHash": "5d66fa1ce77d7269a50047b802e0f74407483500f2110ed28b27ce1c3dc5adb4",
35
+ "typesPublisherContentHash": "d520b024c6cf35288cfa52c90ad7040cc56ef75bbceb8794c0f2094b0e49fbf9",
36
36
  "typeScriptVersion": "4.3"
37
37
  }