@webiny/app-mailer 5.37.2 → 5.37.3-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/hooks/usePermission.js +3 -1
- package/index.js +3 -1
- package/package.json +9 -9
- package/plugins/Module.js +3 -1
- package/types.js +3 -1
- package/views/settings/Settings.js +3 -1
- package/views/settings/graphql.js +3 -1
- package/views/settings/index.js +3 -1
package/hooks/usePermission.js
CHANGED
package/index.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@webiny/app-mailer",
|
|
3
|
-
"version": "5.37.
|
|
3
|
+
"version": "5.37.3-beta.0",
|
|
4
4
|
"main": "index.js",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -12,11 +12,11 @@
|
|
|
12
12
|
"@apollo/react-components": "3.1.5",
|
|
13
13
|
"@babel/runtime": "7.22.6",
|
|
14
14
|
"@emotion/react": "11.10.8",
|
|
15
|
-
"@webiny/app-admin": "5.37.
|
|
16
|
-
"@webiny/app-security": "5.37.
|
|
17
|
-
"@webiny/form": "5.37.
|
|
18
|
-
"@webiny/ui": "5.37.
|
|
19
|
-
"@webiny/validation": "5.37.
|
|
15
|
+
"@webiny/app-admin": "5.37.3-beta.0",
|
|
16
|
+
"@webiny/app-security": "5.37.3-beta.0",
|
|
17
|
+
"@webiny/form": "5.37.3-beta.0",
|
|
18
|
+
"@webiny/ui": "5.37.3-beta.0",
|
|
19
|
+
"@webiny/validation": "5.37.3-beta.0",
|
|
20
20
|
"apollo-cache": "1.3.5",
|
|
21
21
|
"apollo-client": "2.6.10",
|
|
22
22
|
"apollo-link": "1.2.14",
|
|
@@ -35,8 +35,8 @@
|
|
|
35
35
|
"@babel/preset-react": "7.22.5",
|
|
36
36
|
"@babel/preset-typescript": "7.22.5",
|
|
37
37
|
"@types/react": "17.0.39",
|
|
38
|
-
"@webiny/cli": "5.37.
|
|
39
|
-
"@webiny/project-utils": "5.37.
|
|
38
|
+
"@webiny/cli": "5.37.3-beta.0",
|
|
39
|
+
"@webiny/project-utils": "5.37.3-beta.0",
|
|
40
40
|
"babel-plugin-emotion": "9.2.11",
|
|
41
41
|
"rimraf": "3.0.2",
|
|
42
42
|
"ttypescript": "1.5.15",
|
|
@@ -55,5 +55,5 @@
|
|
|
55
55
|
"removeViewBox": false
|
|
56
56
|
}
|
|
57
57
|
},
|
|
58
|
-
"gitHead": "
|
|
58
|
+
"gitHead": "5dbaca4f2294bd7a6718ece14752f5f554d0d842"
|
|
59
59
|
}
|
package/plugins/Module.js
CHANGED
|
@@ -59,4 +59,6 @@ var MailerSettings = function MailerSettings() {
|
|
|
59
59
|
var Module = function Module() {
|
|
60
60
|
return /*#__PURE__*/_react.default.createElement(_appAdmin.Plugins, null, /*#__PURE__*/_react.default.createElement(MailerSettings, null));
|
|
61
61
|
};
|
|
62
|
-
exports.Module = Module;
|
|
62
|
+
exports.Module = Module;
|
|
63
|
+
|
|
64
|
+
//# sourceMappingURL=Module.js.map
|
package/types.js
CHANGED
|
@@ -13,4 +13,6 @@ var ERROR_FIELDS = "\n {\n message\n code\n data\n }\
|
|
|
13
13
|
var GET_SETTINGS_QUERY = (0, _graphqlTag.default)(_templateObject || (_templateObject = (0, _taggedTemplateLiteral2.default)(["\n query GetMailerSettings {\n mailer {\n settings: getSettings {\n data ", "\n error ", "\n }\n }\n }\n"])), SETTINGS_FIELDS, ERROR_FIELDS);
|
|
14
14
|
exports.GET_SETTINGS_QUERY = GET_SETTINGS_QUERY;
|
|
15
15
|
var SAVE_SETTINGS_MUTATION = (0, _graphqlTag.default)(_templateObject2 || (_templateObject2 = (0, _taggedTemplateLiteral2.default)(["\n mutation SaveTransportSettings($data: MailerTransportSettingsInput!) {\n mailer {\n settings: saveSettings(data: $data) {\n data ", "\n error ", "\n }\n }\n }\n"])), SETTINGS_FIELDS, ERROR_FIELDS);
|
|
16
|
-
exports.SAVE_SETTINGS_MUTATION = SAVE_SETTINGS_MUTATION;
|
|
16
|
+
exports.SAVE_SETTINGS_MUTATION = SAVE_SETTINGS_MUTATION;
|
|
17
|
+
|
|
18
|
+
//# sourceMappingURL=graphql.js.map
|
package/views/settings/index.js
CHANGED