@travetto/email-nodemailer 5.1.0 → 6.0.0-rc.1

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@travetto/email-nodemailer",
3
- "version": "5.1.0",
3
+ "version": "6.0.0-rc.1",
4
4
  "description": "Email transmission module.",
5
5
  "keywords": [
6
6
  "email",
@@ -24,12 +24,12 @@
24
24
  "directory": "module/email-nodemailer"
25
25
  },
26
26
  "dependencies": {
27
- "@travetto/email": "^5.1.0",
27
+ "@travetto/email": "^6.0.0-rc.1",
28
28
  "@types/nodemailer": "^6.4.17",
29
- "nodemailer": "^6.9.16"
29
+ "nodemailer": "^6.10.0"
30
30
  },
31
31
  "devDependencies": {
32
- "@aws-sdk/client-ses": "^3.731.1"
32
+ "@aws-sdk/client-ses": "^3.738.0"
33
33
  },
34
34
  "travetto": {
35
35
  "displayName": "Email Nodemailer Support"
package/src/nodemailer.ts CHANGED
@@ -14,11 +14,7 @@ type Transport = TransportType | json.Options | smtp.Options | ses.Options | sen
14
14
  */
15
15
  export class NodemailerTransport implements MailTransport {
16
16
  #transport: Transporter<SentEmail & {
17
- envelope?: Record<string, string>;
18
- accepted?: string[];
19
- rejected?: string[];
20
- pending?: string[];
21
- response?: string;
17
+ rejected?: unknown[];
22
18
  }>;
23
19
 
24
20
  /**