@webiny/api-mailer 5.40.6 → 5.41.0-beta.0

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": "@webiny/api-mailer",
3
- "version": "5.40.6",
3
+ "version": "5.41.0-beta.0",
4
4
  "main": "index.js",
5
5
  "repository": {
6
6
  "type": "git",
@@ -15,16 +15,16 @@
15
15
  "license": "MIT",
16
16
  "dependencies": {
17
17
  "@babel/runtime": "7.24.1",
18
- "@webiny/api": "5.40.6",
19
- "@webiny/api-headless-cms": "5.40.6",
20
- "@webiny/error": "5.40.6",
21
- "@webiny/handler-graphql": "5.40.6",
22
- "@webiny/plugins": "5.40.6",
23
- "@webiny/pubsub": "5.40.6",
18
+ "@webiny/api": "5.41.0-beta.0",
19
+ "@webiny/api-headless-cms": "5.41.0-beta.0",
20
+ "@webiny/error": "5.41.0-beta.0",
21
+ "@webiny/handler-graphql": "5.41.0-beta.0",
22
+ "@webiny/plugins": "5.41.0-beta.0",
23
+ "@webiny/pubsub": "5.41.0-beta.0",
24
24
  "crypto-js": "4.2.0",
25
25
  "lodash": "4.17.21",
26
26
  "nodemailer": "6.9.13",
27
- "zod": "3.22.4"
27
+ "zod": "3.23.8"
28
28
  },
29
29
  "devDependencies": {
30
30
  "@babel/cli": "7.24.1",
@@ -33,21 +33,21 @@
33
33
  "@babel/preset-typescript": "7.24.1",
34
34
  "@types/crypto-js": "4.1.1",
35
35
  "@types/nodemailer": "6.4.7",
36
- "@webiny/api-i18n": "5.40.6",
37
- "@webiny/api-security": "5.40.6",
38
- "@webiny/api-tenancy": "5.40.6",
39
- "@webiny/cli": "5.40.6",
40
- "@webiny/db-dynamodb": "5.40.6",
41
- "@webiny/handler": "5.40.6",
42
- "@webiny/handler-aws": "5.40.6",
43
- "@webiny/handler-db": "5.40.6",
44
- "@webiny/project-utils": "5.40.6",
36
+ "@webiny/api-i18n": "5.41.0-beta.0",
37
+ "@webiny/api-security": "5.41.0-beta.0",
38
+ "@webiny/api-tenancy": "5.41.0-beta.0",
39
+ "@webiny/cli": "5.41.0-beta.0",
40
+ "@webiny/db-dynamodb": "5.41.0-beta.0",
41
+ "@webiny/handler": "5.41.0-beta.0",
42
+ "@webiny/handler-aws": "5.41.0-beta.0",
43
+ "@webiny/handler-db": "5.41.0-beta.0",
44
+ "@webiny/project-utils": "5.41.0-beta.0",
45
45
  "graphql": "15.8.0",
46
46
  "jest": "29.7.0",
47
47
  "jest-dynalite": "3.6.1",
48
48
  "rimraf": "5.0.5",
49
49
  "ttypescript": "1.5.15",
50
- "typescript": "4.7.4"
50
+ "typescript": "4.9.5"
51
51
  },
52
52
  "publishConfig": {
53
53
  "access": "public",
@@ -57,5 +57,5 @@
57
57
  "build": "yarn webiny run build",
58
58
  "watch": "yarn webiny run watch"
59
59
  },
60
- "gitHead": "f9da84b373e62f9f269599c4301e5e4418a98d51"
60
+ "gitHead": "9ce5e75fc577aa4de2cf08d5ca734b3c98fe65b6"
61
61
  }
@@ -5,7 +5,7 @@
5
5
  import { Transport } from "../types";
6
6
  import { Transporter } from "nodemailer";
7
7
  import SMTPTransport, { Options } from "nodemailer/lib/smtp-transport";
8
- export declare type SmtpTransportConfig = Options;
8
+ export type SmtpTransportConfig = Options;
9
9
  export interface SmtpTransport extends Transport {
10
10
  transporter: Transporter<SMTPTransport.SentMessageInfo>;
11
11
  }
package/types.d.ts CHANGED
@@ -133,7 +133,7 @@ interface BaseTransportSendData {
133
133
  html?: string;
134
134
  replyTo?: string;
135
135
  }
136
- export declare type TransportSendData = BaseTransportSendData & (TransportSendToData | TransportSendBccData | TransportSendCcData);
136
+ export type TransportSendData = BaseTransportSendData & (TransportSendToData | TransportSendBccData | TransportSendCcData);
137
137
  export interface Transport<T = any> {
138
138
  name: string;
139
139
  send: (params: TransportSendData) => Promise<TransportSendResponse<T>>;