@types/nodemailer 6.4.6 → 6.4.7

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: Mon, 12 Sep 2022 22:02:41 GMT
11
+ * Last updated: Sat, 17 Dec 2022 03:33:05 GMT
12
12
  * Dependencies: [@types/node](https://npmjs.com/package/@types/node)
13
13
  * Global values: none
14
14
 
@@ -151,6 +151,8 @@ declare namespace Mail {
151
151
  /** method to normalize header keys for custom caseing */
152
152
  normalizeHeaderKey?(key: string): string;
153
153
  priority?: "high"|"normal"|"low" | undefined;
154
+ /** if set to true then converts data:images in the HTML content of message to embedded attachments */
155
+ attachDataUrls?: boolean | undefined;
154
156
  }
155
157
 
156
158
  type PluginFunction<T = any> = (mail: MailMessage<T>, callback: (err?: Error | null) => void) => void;
nodemailer/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@types/nodemailer",
3
- "version": "6.4.6",
3
+ "version": "6.4.7",
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": "1fdc4e33e2d53e25cc0d4ba26a04e1479f04a1a658376a0a08349009bd5b59a4",
36
- "typeScriptVersion": "4.1"
35
+ "typesPublisherContentHash": "cd73c4be307c49eb2d905f96230801f0250528c272be45414126ceb547d31d51",
36
+ "typeScriptVersion": "4.2"
37
37
  }