@types/nodemailer 3.1.8 → 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.
@@ -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: Tue, 19 Apr 2022 16:31:33 GMT
12
- * Dependencies: [@types/nodemailer-direct-transport](https://npmjs.com/package/@types/nodemailer-direct-transport), [@types/nodemailer-smtp-transport](https://npmjs.com/package/@types/nodemailer-smtp-transport), [@types/nodemailer-ses-transport](https://npmjs.com/package/@types/nodemailer-ses-transport), [@types/node](https://npmjs.com/package/@types/node)
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
@@ -118,19 +118,19 @@ export interface SendMailOptions {
118
118
  /**
119
119
  * Comma separated list or an array of recipients e-mail addresses that will appear on the To: field
120
120
  */
121
- to?: string|string[] | undefined;
121
+ to?: string | string[] | undefined;
122
122
  /**
123
123
  * Comma separated list or an array of recipients e-mail addresses that will appear on the Cc: field
124
124
  */
125
- cc?: string|string[] | undefined;
125
+ cc?: string | string[] | undefined;
126
126
  /**
127
127
  * Comma separated list or an array of recipients e-mail addresses that will appear on the Bcc: field
128
128
  */
129
- bcc?: string|string[] | undefined;
129
+ bcc?: string | string[] | undefined;
130
130
  /**
131
- * An e-mail address that will appear on the Reply-To: field
131
+ * Comma separated list or an array of e-mail addresses that will appear on the Reply-To: field
132
132
  */
133
- replyTo?: string | undefined;
133
+ replyTo?: string | string[] | undefined;
134
134
  /**
135
135
  * The message-id this message is replying
136
136
  */
@@ -138,7 +138,7 @@ export interface SendMailOptions {
138
138
  /**
139
139
  * Message-id list (an array or space separated string)
140
140
  */
141
- references?: string|string[] | undefined;
141
+ references?: string | string[] | undefined;
142
142
  /**
143
143
  * The subject of the e-mail
144
144
  */
@@ -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 {
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@types/nodemailer",
3
- "version": "3.1.8",
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": "3413e63bd8599442c4427ef9629ec2995918816b2eb6ef78831085b0f373db46",
30
- "typeScriptVersion": "3.9"
29
+ "typesPublisherContentHash": "145abd2d08319f9647ac11e85012613913f2a50743321ddecb91e6529b6bd75b",
30
+ "typeScriptVersion": "4.2"
31
31
  }