@webiny/api-mailer 5.37.6 → 5.37.7

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/context.js CHANGED
@@ -14,4 +14,6 @@ const createMailerContext = () => {
14
14
  context.mailer = (0, _objectSpread2.default)((0, _objectSpread2.default)({}, await (0, _transporter.createTransporterCrud)(context)), await (0, _settings.createSettingsCrud)(context));
15
15
  });
16
16
  };
17
- exports.createMailerContext = createMailerContext;
17
+ exports.createMailerContext = createMailerContext;
18
+
19
+ //# sourceMappingURL=context.js.map
package/crud/group.js CHANGED
@@ -15,4 +15,6 @@ const createGroup = () => {
15
15
  isPrivate: true
16
16
  });
17
17
  };
18
- exports.createGroup = createGroup;
18
+ exports.createGroup = createGroup;
19
+
20
+ //# sourceMappingURL=group.js.map
@@ -40,4 +40,6 @@ const attachPasswordObfuscatingHooks = context => {
40
40
  context.cms.onEntryAfterUpdate.subscribe(hook);
41
41
  context.cms.onEntryUpdateError.subscribe(hook);
42
42
  };
43
- exports.attachPasswordObfuscatingHooks = attachPasswordObfuscatingHooks;
43
+ exports.attachPasswordObfuscatingHooks = attachPasswordObfuscatingHooks;
44
+
45
+ //# sourceMappingURL=hooks.js.map
@@ -76,4 +76,6 @@ const createSettingsModel = group => {
76
76
  noValidate: true
77
77
  });
78
78
  };
79
- exports.createSettingsModel = createSettingsModel;
79
+ exports.createSettingsModel = createSettingsModel;
80
+
81
+ //# sourceMappingURL=model.js.map
@@ -50,4 +50,6 @@ const encrypt = params => {
50
50
  }
51
51
  return "";
52
52
  };
53
- exports.encrypt = encrypt;
53
+ exports.encrypt = encrypt;
54
+
55
+ //# sourceMappingURL=password.js.map
@@ -14,4 +14,6 @@ const getSecret = () => {
14
14
  }
15
15
  return value;
16
16
  };
17
- exports.getSecret = getSecret;
17
+ exports.getSecret = getSecret;
18
+
19
+ //# sourceMappingURL=secret.js.map
@@ -41,4 +41,6 @@ const transformInputToEntryValues = params => {
41
41
  })
42
42
  });
43
43
  };
44
- exports.transformInputToEntryValues = transformInputToEntryValues;
44
+ exports.transformInputToEntryValues = transformInputToEntryValues;
45
+
46
+ //# sourceMappingURL=transform.js.map
@@ -8,17 +8,17 @@ export declare const createValidation: zod.ZodObject<{
8
8
  user: zod.ZodString;
9
9
  }, "strip", zod.ZodTypeAny, {
10
10
  from: string;
11
+ host: string;
12
+ port: number | null;
11
13
  replyTo: string;
12
14
  password: string;
13
- port: number | null;
14
- host: string;
15
15
  user: string;
16
16
  }, {
17
17
  from: string;
18
+ host: string;
19
+ port: number | null;
18
20
  replyTo: string;
19
21
  password: string;
20
- port: number | null;
21
- host: string;
22
22
  user: string;
23
23
  }>;
24
24
  export declare const updateValidation: zod.ZodObject<{
@@ -30,16 +30,16 @@ export declare const updateValidation: zod.ZodObject<{
30
30
  user: zod.ZodString;
31
31
  }, "strip", zod.ZodTypeAny, {
32
32
  from: string;
33
+ host: string;
34
+ port: number | null;
33
35
  replyTo: string;
34
36
  password: string | null;
35
- port: number | null;
36
- host: string;
37
37
  user: string;
38
38
  }, {
39
39
  from: string;
40
- replyTo: string;
41
- port: number | null;
42
40
  host: string;
41
+ port: number | null;
42
+ replyTo: string;
43
43
  user: string;
44
44
  password?: string | null | undefined;
45
45
  }>;
@@ -24,4 +24,6 @@ const updateValidation = _zod.default.object((0, _objectSpread2.default)((0, _ob
24
24
  return value === undefined ? null : value;
25
25
  })
26
26
  })).required();
27
- exports.updateValidation = updateValidation;
27
+ exports.updateValidation = updateValidation;
28
+
29
+ //# sourceMappingURL=validation.js.map
@@ -265,4 +265,6 @@ const createSettingsCrud = async context => {
265
265
  }
266
266
  };
267
267
  };
268
- exports.createSettingsCrud = createSettingsCrud;
268
+ exports.createSettingsCrud = createSettingsCrud;
269
+
270
+ //# sourceMappingURL=settings.crud.js.map
@@ -57,4 +57,6 @@ const attachOnTransportBeforeSend = params => {
57
57
  }
58
58
  });
59
59
  };
60
- exports.attachOnTransportBeforeSend = attachOnTransportBeforeSend;
60
+ exports.attachOnTransportBeforeSend = attachOnTransportBeforeSend;
61
+
62
+ //# sourceMappingURL=onTransportBeforeSend.js.map
@@ -153,4 +153,6 @@ const createTransporterCrud = async context => {
153
153
  }
154
154
  };
155
155
  };
156
- exports.createTransporterCrud = createTransporterCrud;
156
+ exports.createTransporterCrud = createTransporterCrud;
157
+
158
+ //# sourceMappingURL=transporter.crud.js.map
package/graphql/index.js CHANGED
@@ -8,4 +8,6 @@ var _settings = require("./settings");
8
8
  const createGraphQL = () => {
9
9
  return [(0, _settings.createSettingsGraphQL)()];
10
10
  };
11
- exports.createGraphQL = createGraphQL;
11
+ exports.createGraphQL = createGraphQL;
12
+
13
+ //# sourceMappingURL=index.js.map
@@ -98,4 +98,6 @@ const createSettingsGraphQL = () => {
98
98
  }
99
99
  });
100
100
  };
101
- exports.createSettingsGraphQL = createSettingsGraphQL;
101
+ exports.createSettingsGraphQL = createSettingsGraphQL;
102
+
103
+ //# sourceMappingURL=settings.js.map
package/index.js CHANGED
@@ -80,4 +80,6 @@ exports.createMailerContext = createMailerContext;
80
80
  const createMailerGraphQL = () => {
81
81
  return [...(0, _graphql.createGraphQL)()];
82
82
  };
83
- exports.createMailerGraphQL = createMailerGraphQL;
83
+ exports.createMailerGraphQL = createMailerGraphQL;
84
+
85
+ //# sourceMappingURL=index.js.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@webiny/api-mailer",
3
- "version": "5.37.6",
3
+ "version": "5.37.7",
4
4
  "main": "index.js",
5
5
  "repository": {
6
6
  "type": "git",
@@ -15,12 +15,12 @@
15
15
  "license": "MIT",
16
16
  "dependencies": {
17
17
  "@babel/runtime": "7.22.6",
18
- "@webiny/api": "5.37.6",
19
- "@webiny/api-headless-cms": "5.37.6",
20
- "@webiny/error": "5.37.6",
21
- "@webiny/handler-graphql": "5.37.6",
22
- "@webiny/plugins": "5.37.6",
23
- "@webiny/pubsub": "5.37.6",
18
+ "@webiny/api": "5.37.7",
19
+ "@webiny/api-headless-cms": "5.37.7",
20
+ "@webiny/error": "5.37.7",
21
+ "@webiny/handler-graphql": "5.37.7",
22
+ "@webiny/plugins": "5.37.7",
23
+ "@webiny/pubsub": "5.37.7",
24
24
  "crypto-js": "4.1.1",
25
25
  "lodash": "4.17.21",
26
26
  "nodemailer": "6.9.1",
@@ -33,15 +33,15 @@
33
33
  "@babel/preset-typescript": "7.22.5",
34
34
  "@types/crypto-js": "4.1.1",
35
35
  "@types/nodemailer": "6.4.7",
36
- "@webiny/api-i18n": "5.37.6",
37
- "@webiny/api-security": "5.37.6",
38
- "@webiny/api-tenancy": "5.37.6",
39
- "@webiny/cli": "5.37.6",
40
- "@webiny/db-dynamodb": "5.37.6",
41
- "@webiny/handler": "5.37.6",
42
- "@webiny/handler-aws": "5.37.6",
43
- "@webiny/handler-db": "5.37.6",
44
- "@webiny/project-utils": "5.37.6",
36
+ "@webiny/api-i18n": "5.37.7",
37
+ "@webiny/api-security": "5.37.7",
38
+ "@webiny/api-tenancy": "5.37.7",
39
+ "@webiny/cli": "5.37.7",
40
+ "@webiny/db-dynamodb": "5.37.7",
41
+ "@webiny/handler": "5.37.7",
42
+ "@webiny/handler-aws": "5.37.7",
43
+ "@webiny/handler-db": "5.37.7",
44
+ "@webiny/project-utils": "5.37.7",
45
45
  "graphql": "15.8.0",
46
46
  "jest": "29.5.0",
47
47
  "jest-dynalite": "3.6.1",
@@ -57,5 +57,5 @@
57
57
  "build": "yarn webiny run build",
58
58
  "watch": "yarn webiny run watch"
59
59
  },
60
- "gitHead": "53e962c150c2732178d0431d7dfb0f6e9caa3381"
60
+ "gitHead": "115054c51d8e6699eed34ab574ae30cb6a716be0"
61
61
  }
@@ -22,4 +22,6 @@ exports.CreateTransportPlugin = CreateTransportPlugin;
22
22
  const createTransport = cb => {
23
23
  return new CreateTransportPlugin(cb);
24
24
  };
25
- exports.createTransport = createTransport;
25
+ exports.createTransport = createTransport;
26
+
27
+ //# sourceMappingURL=CreateTransportPlugin.js.map
package/plugins/index.js CHANGED
@@ -13,4 +13,6 @@ Object.keys(_CreateTransportPlugin).forEach(function (key) {
13
13
  return _CreateTransportPlugin[key];
14
14
  }
15
15
  });
16
- });
16
+ });
17
+
18
+ //# sourceMappingURL=index.js.map
@@ -20,4 +20,6 @@ const createDummyTransport = () => {
20
20
  }
21
21
  };
22
22
  };
23
- exports.createDummyTransport = createDummyTransport;
23
+ exports.createDummyTransport = createDummyTransport;
24
+
25
+ //# sourceMappingURL=createDummyTransport.js.map
@@ -83,4 +83,6 @@ const createSmtpTransport = initialConfig => {
83
83
  }
84
84
  };
85
85
  };
86
- exports.createSmtpTransport = createSmtpTransport;
86
+ exports.createSmtpTransport = createSmtpTransport;
87
+
88
+ //# sourceMappingURL=createSmtpTransport.js.map
@@ -24,4 +24,6 @@ Object.keys(_createSmtpTransport).forEach(function (key) {
24
24
  return _createSmtpTransport[key];
25
25
  }
26
26
  });
27
- });
27
+ });
28
+
29
+ //# sourceMappingURL=index.js.map
package/types.js CHANGED
@@ -2,4 +2,6 @@
2
2
 
3
3
  Object.defineProperty(exports, "__esModule", {
4
4
  value: true
5
- });
5
+ });
6
+
7
+ //# sourceMappingURL=types.js.map