@types/nodemailer 6.4.5 → 6.4.6
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 +1 -1
- nodemailer/lib/mailer/index.d.ts +2 -2
- nodemailer/package.json +3 -3
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: Mon, 12 Sep 2022 22:02:41 GMT
|
|
12
12
|
* Dependencies: [@types/node](https://npmjs.com/package/@types/node)
|
|
13
13
|
* Global values: none
|
|
14
14
|
|
nodemailer/lib/mailer/index.d.ts
CHANGED
|
@@ -104,8 +104,8 @@ declare namespace Mail {
|
|
|
104
104
|
cc?: string | Address | Array<string | Address> | undefined;
|
|
105
105
|
/** Comma separated list or an array of recipients e-mail addresses that will appear on the Bcc: field */
|
|
106
106
|
bcc?: string | Address | Array<string | Address> | undefined;
|
|
107
|
-
/**
|
|
108
|
-
replyTo?: string | Address | undefined;
|
|
107
|
+
/** Comma separated list or an array of e-mail addresses that will appear on the Reply-To: field */
|
|
108
|
+
replyTo?: string | Address | Array<string | Address> | undefined;
|
|
109
109
|
/** The message-id this message is replying */
|
|
110
110
|
inReplyTo?: string | Address | undefined;
|
|
111
111
|
/** Message-id list (an array or space separated string) */
|
nodemailer/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@types/nodemailer",
|
|
3
|
-
"version": "6.4.
|
|
3
|
+
"version": "6.4.6",
|
|
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": "
|
|
36
|
-
"typeScriptVersion": "4.
|
|
35
|
+
"typesPublisherContentHash": "1fdc4e33e2d53e25cc0d4ba26a04e1479f04a1a658376a0a08349009bd5b59a4",
|
|
36
|
+
"typeScriptVersion": "4.1"
|
|
37
37
|
}
|