@lowdefy/connection-sendgrid 4.7.3 → 5.0.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/dist/types.js +8 -5
- package/package.json +7 -7
package/dist/types.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*
|
|
1
|
+
/*
|
|
2
2
|
Copyright 2020-2026 Lowdefy, Inc
|
|
3
3
|
|
|
4
4
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
@@ -12,8 +12,11 @@
|
|
|
12
12
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
13
|
See the License for the specific language governing permissions and
|
|
14
14
|
limitations under the License.
|
|
15
|
-
*/
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
15
|
+
*/ export default {
|
|
16
|
+
connections: [
|
|
17
|
+
'SendGridMail'
|
|
18
|
+
],
|
|
19
|
+
requests: [
|
|
20
|
+
'SendGridMailSend'
|
|
21
|
+
]
|
|
19
22
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lowdefy/connection-sendgrid",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "5.0.0",
|
|
4
4
|
"license": "Apache-2.0",
|
|
5
5
|
"description": "",
|
|
6
6
|
"homepage": "https://lowdefy.com",
|
|
@@ -35,22 +35,22 @@
|
|
|
35
35
|
"dist/*"
|
|
36
36
|
],
|
|
37
37
|
"dependencies": {
|
|
38
|
-
"@lowdefy/helpers": "
|
|
38
|
+
"@lowdefy/helpers": "5.0.0",
|
|
39
39
|
"@sendgrid/mail": "7.7.0"
|
|
40
40
|
},
|
|
41
41
|
"devDependencies": {
|
|
42
42
|
"@jest/globals": "28.1.3",
|
|
43
|
-
"@lowdefy/ajv": "
|
|
44
|
-
"@swc/cli": "0.
|
|
45
|
-
"@swc/core": "1.
|
|
46
|
-
"@swc/jest": "0.2.
|
|
43
|
+
"@lowdefy/ajv": "5.0.0",
|
|
44
|
+
"@swc/cli": "0.8.0",
|
|
45
|
+
"@swc/core": "1.15.18",
|
|
46
|
+
"@swc/jest": "0.2.39",
|
|
47
47
|
"jest": "28.1.3"
|
|
48
48
|
},
|
|
49
49
|
"publishConfig": {
|
|
50
50
|
"access": "public"
|
|
51
51
|
},
|
|
52
52
|
"scripts": {
|
|
53
|
-
"build": "swc src --out-dir dist --config-file ../../../../.swcrc --
|
|
53
|
+
"build": "swc src --out-dir dist --config-file ../../../../.swcrc --cli-config-file ../../../../.swc-cli.json --copy-files",
|
|
54
54
|
"clean": "rm -rf dist",
|
|
55
55
|
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js"
|
|
56
56
|
}
|