Comparing version 1.0.6 to 1.1.0
@@ -6,2 +6,7 @@ import Pino, { LevelWithSilent } from 'pino'; | ||
} | ||
interface EmailAttachment { | ||
name: string; | ||
contentType: string; | ||
content: string; | ||
} | ||
declare type MailOptions = { | ||
@@ -13,2 +18,3 @@ to: EmailInformation[]; | ||
reply?: EmailInformation; | ||
attachments?: EmailAttachment[]; | ||
}; | ||
@@ -15,0 +21,0 @@ export interface TransactionalMailOptions extends MailOptions { |
{ | ||
"version": "1.0.6", | ||
"version": "1.1.0", | ||
"license": "MIT", | ||
@@ -4,0 +4,0 @@ "main": "dist/index.js", |
@@ -9,2 +9,8 @@ /* eslint-disable @typescript-eslint/ban-ts-comment */ | ||
interface EmailAttachment { | ||
name: string; | ||
contentType: string; | ||
content: string; | ||
} | ||
type MailOptions = { | ||
@@ -17,2 +23,3 @@ to: EmailInformation[]; | ||
reply?: EmailInformation; | ||
attachments?: EmailAttachment[]; | ||
}; | ||
@@ -19,0 +26,0 @@ |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
42453
485
14