@types/nodemailer
Advanced tools
Comparing version 6.4.16 to 6.4.17
@@ -6,3 +6,2 @@ /// <reference types="node" /> | ||
import Mail = require("../mailer"); | ||
import SMTPConnection = require("../smtp-connection"); | ||
@@ -29,14 +28,39 @@ declare namespace MimeNode { | ||
rootNode?: MimeNode | undefined; | ||
/** immediate parent for this node */ | ||
parentNode?: MimeNode | undefined; | ||
/** filename for an attachment node */ | ||
filename?: string | undefined; | ||
/** Hostname for default message-id values */ | ||
hostname?: string | undefined; | ||
/** shared part of the unique multipart boundary */ | ||
baseBoundary?: string | undefined; | ||
/** If true, do not exclude Bcc from the generated headers */ | ||
keepBcc?: boolean | undefined; | ||
/** | ||
* If set to 'win' then uses \r\n, | ||
* if 'linux' then \n. | ||
* If not set (or `raw` is used) then newlines are kept as is. | ||
*/ | ||
newline?: string | undefined; | ||
/** either 'Q' (the default) or 'B' */ | ||
textEncoding?: "B" | "Q" | undefined; | ||
/** method to normalize header keys for custom caseing */ | ||
normalizeHeaderKey?(key: string): string; | ||
/** undocumented */ | ||
boundaryPrefix?: string | undefined; | ||
/** Undocumented */ | ||
disableFileAccess?: boolean | undefined; | ||
/** Undocumented */ | ||
disableUrlAccess?: boolean | undefined; | ||
} | ||
@@ -137,4 +161,67 @@ } | ||
setRaw(raw: string | Buffer | Readable): this; | ||
/** shared part of the unique multipart boundary */ | ||
baseBoundary: string; | ||
/** a multipart boundary value */ | ||
boundary?: string | false | undefined; | ||
/** Undocumented */ | ||
boundaryPrefix: string; | ||
/* An array for possible child nodes */ | ||
childNodes: MimeNode[]; | ||
/** body content for current node */ | ||
content?: string | Buffer | Readable | undefined; | ||
/** Undocumented */ | ||
contentType?: string | undefined; | ||
/** | ||
* If date headers is missing and current node is the root, this value is used instead | ||
*/ | ||
date: Date; | ||
/** Undocumented */ | ||
disableFileAccess: boolean; | ||
/** Undocumented */ | ||
disableUrlAccess: boolean; | ||
/** filename for an attachment node */ | ||
filename?: string | undefined; | ||
/** Hostname for default message-id values */ | ||
hostname?: string | undefined; | ||
/** If true, do not exclude Bcc from the generated headers */ | ||
keepBcc: boolean; | ||
/** Undocumented */ | ||
multipart?: boolean | undefined; | ||
/** | ||
* If set to 'win' then uses \r\n, | ||
* if 'linux' then \n. | ||
* If not set (or `raw` is used) then newlines are kept as is. | ||
*/ | ||
newline?: string | undefined; | ||
/** Undocumented */ | ||
nodeCounter: number; | ||
/** method to normalize header keys for custom caseing */ | ||
normalizeHeaderKey?: ((key: string) => string) | undefined; | ||
/* Immediate parent for this node (or undefined if not set) */ | ||
parentNode?: MimeNode | undefined; | ||
/** root node for this tree */ | ||
rootNode: MimeNode; | ||
/** either 'Q' (the default) or 'B' */ | ||
textEncoding: "B" | "Q" | ""; | ||
} | ||
export = MimeNode; |
{ | ||
"name": "@types/nodemailer", | ||
"version": "6.4.16", | ||
"version": "6.4.17", | ||
"description": "TypeScript definitions for nodemailer", | ||
@@ -35,4 +35,5 @@ "homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/nodemailer", | ||
}, | ||
"typesPublisherContentHash": "d8ad4aeb68e8113bda781422f410a6a0c85bb2ec2e9d683ba52a9b4f6da7018e", | ||
"typeScriptVersion": "4.8" | ||
"peerDependencies": {}, | ||
"typesPublisherContentHash": "c93eda36deb49e226aaabb03b3ab999056957e2220b681e070d58074dc0a53a4", | ||
"typeScriptVersion": "4.9" | ||
} |
@@ -11,3 +11,3 @@ # Installation | ||
### Additional Details | ||
* Last updated: Tue, 17 Sep 2024 18:39:47 GMT | ||
* Last updated: Tue, 19 Nov 2024 17:02:32 GMT | ||
* Dependencies: [@types/node](https://npmjs.com/package/@types/node) | ||
@@ -14,0 +14,0 @@ |
92409
1770