@webiny/api-mailer 5.37.2 → 5.37.3-beta.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/context.js +3 -1
- package/crud/group.js +3 -1
- package/crud/settings/hooks.js +3 -1
- package/crud/settings/model.js +3 -1
- package/crud/settings/password.js +3 -1
- package/crud/settings/secret.js +3 -1
- package/crud/settings/transform.js +3 -1
- package/crud/settings/validation.js +3 -1
- package/crud/settings.crud.js +3 -1
- package/crud/transport/onTransportBeforeSend.js +3 -1
- package/crud/transporter.crud.js +3 -1
- package/graphql/index.js +3 -1
- package/graphql/settings.js +3 -1
- package/index.js +3 -1
- package/package.json +17 -17
- package/plugins/CreateTransportPlugin.js +3 -1
- package/plugins/index.js +3 -1
- package/transports/createDummyTransport.js +3 -1
- package/transports/createSmtpTransport.js +3 -1
- package/transports/index.js +3 -1
- package/types.js +3 -1
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
package/crud/settings/hooks.js
CHANGED
|
@@ -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
|
package/crud/settings/model.js
CHANGED
package/crud/settings/secret.js
CHANGED
|
@@ -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
|
package/crud/settings.crud.js
CHANGED
package/crud/transporter.crud.js
CHANGED
package/graphql/index.js
CHANGED
package/graphql/settings.js
CHANGED
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.
|
|
3
|
+
"version": "5.37.3-beta.1",
|
|
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.
|
|
19
|
-
"@webiny/api-headless-cms": "5.37.
|
|
20
|
-
"@webiny/error": "5.37.
|
|
21
|
-
"@webiny/handler-graphql": "5.37.
|
|
22
|
-
"@webiny/plugins": "5.37.
|
|
23
|
-
"@webiny/pubsub": "5.37.
|
|
18
|
+
"@webiny/api": "5.37.3-beta.1",
|
|
19
|
+
"@webiny/api-headless-cms": "5.37.3-beta.1",
|
|
20
|
+
"@webiny/error": "5.37.3-beta.1",
|
|
21
|
+
"@webiny/handler-graphql": "5.37.3-beta.1",
|
|
22
|
+
"@webiny/plugins": "5.37.3-beta.1",
|
|
23
|
+
"@webiny/pubsub": "5.37.3-beta.1",
|
|
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.
|
|
37
|
-
"@webiny/api-security": "5.37.
|
|
38
|
-
"@webiny/api-tenancy": "5.37.
|
|
39
|
-
"@webiny/cli": "5.37.
|
|
40
|
-
"@webiny/db-dynamodb": "5.37.
|
|
41
|
-
"@webiny/handler": "5.37.
|
|
42
|
-
"@webiny/handler-aws": "5.37.
|
|
43
|
-
"@webiny/handler-db": "5.37.
|
|
44
|
-
"@webiny/project-utils": "5.37.
|
|
36
|
+
"@webiny/api-i18n": "5.37.3-beta.1",
|
|
37
|
+
"@webiny/api-security": "5.37.3-beta.1",
|
|
38
|
+
"@webiny/api-tenancy": "5.37.3-beta.1",
|
|
39
|
+
"@webiny/cli": "5.37.3-beta.1",
|
|
40
|
+
"@webiny/db-dynamodb": "5.37.3-beta.1",
|
|
41
|
+
"@webiny/handler": "5.37.3-beta.1",
|
|
42
|
+
"@webiny/handler-aws": "5.37.3-beta.1",
|
|
43
|
+
"@webiny/handler-db": "5.37.3-beta.1",
|
|
44
|
+
"@webiny/project-utils": "5.37.3-beta.1",
|
|
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": "
|
|
60
|
+
"gitHead": "59d377132f34c76cb198cd0f0eee211a56ca25b7"
|
|
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
package/transports/index.js
CHANGED