@webiny/api-mailer 5.35.0 → 5.35.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/crud/settings/validation.d.ts +8 -8
- package/package.json +32 -32
|
@@ -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
|
+
host: string;
|
|
41
|
+
port: number | null;
|
|
40
42
|
replyTo: string;
|
|
41
43
|
password: string | null;
|
|
42
|
-
port: number | null;
|
|
43
|
-
host: string;
|
|
44
44
|
user: string;
|
|
45
45
|
}>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@webiny/api-mailer",
|
|
3
|
-
"version": "5.35.
|
|
3
|
+
"version": "5.35.1",
|
|
4
4
|
"main": "index.js",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -15,42 +15,42 @@
|
|
|
15
15
|
"license": "MIT",
|
|
16
16
|
"dependencies": {
|
|
17
17
|
"@babel/runtime": "7.20.13",
|
|
18
|
-
"@webiny/api": "5.35.
|
|
19
|
-
"@webiny/api-headless-cms": "5.35.
|
|
20
|
-
"@webiny/error": "5.35.
|
|
21
|
-
"@webiny/handler-graphql": "5.35.
|
|
22
|
-
"@webiny/plugins": "5.35.
|
|
23
|
-
"@webiny/pubsub": "5.35.
|
|
18
|
+
"@webiny/api": "^5.35.1",
|
|
19
|
+
"@webiny/api-headless-cms": "^5.35.1",
|
|
20
|
+
"@webiny/error": "^5.35.1",
|
|
21
|
+
"@webiny/handler-graphql": "^5.35.1",
|
|
22
|
+
"@webiny/plugins": "^5.35.1",
|
|
23
|
+
"@webiny/pubsub": "^5.35.1",
|
|
24
24
|
"crypto-js": "4.1.1",
|
|
25
25
|
"lodash": "4.17.21",
|
|
26
26
|
"nodemailer": "6.9.1",
|
|
27
27
|
"zod": "3.20.2"
|
|
28
28
|
},
|
|
29
29
|
"devDependencies": {
|
|
30
|
-
"@babel/cli": "
|
|
31
|
-
"@babel/core": "
|
|
32
|
-
"@babel/preset-env": "
|
|
33
|
-
"@babel/preset-typescript": "
|
|
34
|
-
"@types/crypto-js": "
|
|
35
|
-
"@types/nodemailer": "
|
|
36
|
-
"@webiny/api-headless-cms-ddb": "^5.35.
|
|
37
|
-
"@webiny/api-i18n": "^5.35.
|
|
38
|
-
"@webiny/api-i18n-ddb": "^5.35.
|
|
39
|
-
"@webiny/api-security": "^5.35.
|
|
40
|
-
"@webiny/api-security-so-ddb": "^5.35.
|
|
41
|
-
"@webiny/api-tenancy": "^5.35.
|
|
42
|
-
"@webiny/api-tenancy-so-ddb": "^5.35.
|
|
43
|
-
"@webiny/cli": "^5.35.
|
|
44
|
-
"@webiny/db-dynamodb": "^5.35.
|
|
45
|
-
"@webiny/handler": "^5.35.
|
|
46
|
-
"@webiny/handler-aws": "^5.35.
|
|
47
|
-
"@webiny/handler-db": "^5.35.
|
|
48
|
-
"@webiny/project-utils": "^5.35.
|
|
49
|
-
"graphql": "
|
|
50
|
-
"jest": "
|
|
51
|
-
"jest-dynalite": "
|
|
52
|
-
"rimraf": "
|
|
53
|
-
"ttypescript": "
|
|
30
|
+
"@babel/cli": "7.20.7",
|
|
31
|
+
"@babel/core": "7.20.12",
|
|
32
|
+
"@babel/preset-env": "7.20.2",
|
|
33
|
+
"@babel/preset-typescript": "7.18.6",
|
|
34
|
+
"@types/crypto-js": "4.1.1",
|
|
35
|
+
"@types/nodemailer": "6.4.7",
|
|
36
|
+
"@webiny/api-headless-cms-ddb": "^5.35.1",
|
|
37
|
+
"@webiny/api-i18n": "^5.35.1",
|
|
38
|
+
"@webiny/api-i18n-ddb": "^5.35.1",
|
|
39
|
+
"@webiny/api-security": "^5.35.1",
|
|
40
|
+
"@webiny/api-security-so-ddb": "^5.35.1",
|
|
41
|
+
"@webiny/api-tenancy": "^5.35.1",
|
|
42
|
+
"@webiny/api-tenancy-so-ddb": "^5.35.1",
|
|
43
|
+
"@webiny/cli": "^5.35.1",
|
|
44
|
+
"@webiny/db-dynamodb": "^5.35.1",
|
|
45
|
+
"@webiny/handler": "^5.35.1",
|
|
46
|
+
"@webiny/handler-aws": "^5.35.1",
|
|
47
|
+
"@webiny/handler-db": "^5.35.1",
|
|
48
|
+
"@webiny/project-utils": "^5.35.1",
|
|
49
|
+
"graphql": "15.8.0",
|
|
50
|
+
"jest": "28.1.3",
|
|
51
|
+
"jest-dynalite": "3.6.1",
|
|
52
|
+
"rimraf": "3.0.2",
|
|
53
|
+
"ttypescript": "1.5.15",
|
|
54
54
|
"typescript": "4.7.4"
|
|
55
55
|
},
|
|
56
56
|
"publishConfig": {
|
|
@@ -61,5 +61,5 @@
|
|
|
61
61
|
"build": "yarn webiny run build",
|
|
62
62
|
"watch": "yarn webiny run watch"
|
|
63
63
|
},
|
|
64
|
-
"gitHead": "
|
|
64
|
+
"gitHead": "d6a257ebbb9e7aeccfaa33a7f83301cf1919b082"
|
|
65
65
|
}
|