@takaro/email 0.0.11 → 0.0.13

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.
Files changed (2) hide show
  1. package/dist/send.d.ts +1 -1
  2. package/package.json +5 -5
package/dist/send.d.ts CHANGED
@@ -4,5 +4,5 @@ export interface ISendOptions {
4
4
  template: keyof typeof EMAIL_TEMPLATES;
5
5
  data: Record<string, unknown>;
6
6
  }
7
- export declare const transporter: import("nodemailer").Transporter<import("nodemailer/lib/smtp-transport/index.js").SentMessageInfo>;
7
+ export declare const transporter: import("nodemailer").Transporter<import("nodemailer/lib/smtp-transport/index.js").SentMessageInfo, import("nodemailer/lib/smtp-transport/index.js").Options>;
8
8
  export declare function send(opts: ISendOptions): Promise<import("nodemailer/lib/smtp-transport/index.js").SentMessageInfo>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@takaro/email",
3
- "version": "0.0.11",
3
+ "version": "0.0.13",
4
4
  "description": "",
5
5
  "main": "dist/main.js",
6
6
  "types": "dist/main.d.ts",
@@ -15,11 +15,11 @@
15
15
  "author": "",
16
16
  "license": "ISC",
17
17
  "dependencies": {
18
- "ejs": "^3.1.9",
19
- "nodemailer": "^6.9.3"
18
+ "ejs": "3.1.10",
19
+ "nodemailer": "6.9.15"
20
20
  },
21
21
  "devDependencies": {
22
- "@types/ejs": "^3.1.2",
23
- "@types/nodemailer": "^6.4.8"
22
+ "@types/ejs": "3.1.5",
23
+ "@types/nodemailer": "6.4.16"
24
24
  }
25
25
  }