@types/nodemailer 6.4.14 → 6.4.15
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 +1 -1
- 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: Thu, 02 May 2024 17:07:42 GMT
|
|
12
12
|
* Dependencies: [@types/node](https://npmjs.com/package/@types/node)
|
|
13
13
|
|
|
14
14
|
# Credits
|
nodemailer/lib/mailer/index.d.ts
CHANGED
|
@@ -33,7 +33,7 @@ declare namespace Mail {
|
|
|
33
33
|
}
|
|
34
34
|
|
|
35
35
|
interface AttachmentLike {
|
|
36
|
-
/** String, Buffer or a Stream contents for the
|
|
36
|
+
/** String, Buffer or a Stream contents for the attachment */
|
|
37
37
|
content?: string | Buffer | Readable | undefined;
|
|
38
38
|
/** path to a file or an URL (data uris are allowed as well) if you want to stream the file instead of including it (better for larger attachments) */
|
|
39
39
|
path?: string | Url | undefined;
|
nodemailer/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@types/nodemailer",
|
|
3
|
-
"version": "6.4.
|
|
3
|
+
"version": "6.4.15",
|
|
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": "ffb4a71447e6a68775fc12244085992d604a71c6f3842262f150c54b8499caa7",
|
|
36
|
+
"typeScriptVersion": "4.7"
|
|
37
37
|
}
|