@types/nodemailer 6.4.7 → 6.4.9

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: Sat, 17 Dec 2022 03:33:05 GMT
11
+ * Last updated: Tue, 25 Jul 2023 13:02:56 GMT
12
12
  * Dependencies: [@types/node](https://npmjs.com/package/@types/node)
13
13
  * Global values: none
14
14
 
@@ -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 */
@@ -168,6 +170,8 @@ declare namespace SMTPConnection {
168
170
  /** connected socket to use instead of creating and connecting a new one. If secure option is true, then socket is upgraded from plaintext to ciphertext */
169
171
  connection?: net.Socket | undefined;
170
172
  customAuth?: CustomAuthenticationHandlers | undefined;
173
+ /** if true, uses LMTP instead of SMTP protocol */
174
+ lmtp?: boolean | undefined;
171
175
  }
172
176
  }
173
177
 
nodemailer/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@types/nodemailer",
3
- "version": "6.4.7",
3
+ "version": "6.4.9",
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": "cd73c4be307c49eb2d905f96230801f0250528c272be45414126ceb547d31d51",
36
- "typeScriptVersion": "4.2"
35
+ "typesPublisherContentHash": "e53c891ffa1e687cab49e2a4ea115930c4ed92f460354372832222b1abef88d7",
36
+ "typeScriptVersion": "4.3"
37
37
  }