@types/nodemailer 7.0.10 → 8.0.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.
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:
|
|
11
|
+
* Last updated: Sat, 04 Apr 2026 18:06:42 GMT
|
|
12
12
|
* Dependencies: [@types/node](https://npmjs.com/package/@types/node)
|
|
13
13
|
|
|
14
14
|
# Credits
|
|
@@ -137,6 +137,8 @@ declare namespace SMTPConnection {
|
|
|
137
137
|
auth?: AuthenticationType | undefined;
|
|
138
138
|
/** defines if the connection should use SSL (if true) or not (if false) */
|
|
139
139
|
secure?: boolean | undefined;
|
|
140
|
+
/** indicates that the provided socket has already been upgraded to TLS (if true) */
|
|
141
|
+
secured?: boolean | undefined;
|
|
140
142
|
/** turns off STARTTLS support if true */
|
|
141
143
|
ignoreTLS?: boolean | undefined;
|
|
142
144
|
/** forces the client to use STARTTLS. Returns an error if upgrading the connection is not possible or fails. */
|
nodemailer/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@types/nodemailer",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "8.0.0",
|
|
4
4
|
"description": "TypeScript definitions for nodemailer",
|
|
5
5
|
"homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/nodemailer",
|
|
6
6
|
"license": "MIT",
|
|
@@ -33,6 +33,6 @@
|
|
|
33
33
|
"@types/node": "*"
|
|
34
34
|
},
|
|
35
35
|
"peerDependencies": {},
|
|
36
|
-
"typesPublisherContentHash": "
|
|
37
|
-
"typeScriptVersion": "5.
|
|
36
|
+
"typesPublisherContentHash": "8ed8c28a8ce26fccb32dc803496d473379083f66cf50576b39149873388d4c78",
|
|
37
|
+
"typeScriptVersion": "5.3"
|
|
38
38
|
}
|