@types/nodemailer 3.1.9 → 3.1.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 v3.1/README.md +2 -2
- nodemailer v3.1/index.d.ts +4 -0
- nodemailer v3.1/package.json +3 -3
nodemailer v3.1/README.md
CHANGED
|
@@ -8,8 +8,8 @@ This package contains type definitions for Nodemailer (https://github.com/andris
|
|
|
8
8
|
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/nodemailer/v3.
|
|
9
9
|
|
|
10
10
|
### Additional Details
|
|
11
|
-
* Last updated:
|
|
12
|
-
* Dependencies: [@types/
|
|
11
|
+
* Last updated: Sat, 17 Dec 2022 03:33:06 GMT
|
|
12
|
+
* Dependencies: [@types/node](https://npmjs.com/package/@types/node), [@types/nodemailer-direct-transport](https://npmjs.com/package/@types/nodemailer-direct-transport), [@types/nodemailer-ses-transport](https://npmjs.com/package/@types/nodemailer-ses-transport), [@types/nodemailer-smtp-transport](https://npmjs.com/package/@types/nodemailer-smtp-transport)
|
|
13
13
|
* Global values: none
|
|
14
14
|
|
|
15
15
|
# Credits
|
nodemailer v3.1/index.d.ts
CHANGED
|
@@ -175,6 +175,10 @@ export interface SendMailOptions {
|
|
|
175
175
|
* optional transfer encoding for the textual parts (defaults to 'quoted-printable')
|
|
176
176
|
*/
|
|
177
177
|
encoding?: string | undefined;
|
|
178
|
+
/**
|
|
179
|
+
* optional convert data:images in the HTML content of message to embedded attachments
|
|
180
|
+
*/
|
|
181
|
+
attachDataUrls?: boolean | undefined;
|
|
178
182
|
}
|
|
179
183
|
|
|
180
184
|
export interface SentMessageInfo {
|
nodemailer v3.1/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@types/nodemailer",
|
|
3
|
-
"version": "3.1.
|
|
3
|
+
"version": "3.1.10",
|
|
4
4
|
"description": "TypeScript definitions for Nodemailer",
|
|
5
5
|
"homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/nodemailer",
|
|
6
6
|
"license": "MIT",
|
|
@@ -26,6 +26,6 @@
|
|
|
26
26
|
"@types/nodemailer-smtp-transport": "*",
|
|
27
27
|
"aws-sdk": "^2.814.0"
|
|
28
28
|
},
|
|
29
|
-
"typesPublisherContentHash": "
|
|
30
|
-
"typeScriptVersion": "4.
|
|
29
|
+
"typesPublisherContentHash": "145abd2d08319f9647ac11e85012613913f2a50743321ddecb91e6529b6bd75b",
|
|
30
|
+
"typeScriptVersion": "4.2"
|
|
31
31
|
}
|