@lowdefy/connection-sendgrid 4.0.0-alpha.9 → 4.0.0-rc.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.
@@ -27,8 +27,7 @@ async function SendGridMailSend({ request , connection }) {
27
27
  from,
28
28
  templateId,
29
29
  mailSettings
30
- })
31
- );
30
+ }));
32
31
  try {
33
32
  await sendgrid.send(messages);
34
33
  } catch (error) {
package/dist/types.js CHANGED
@@ -15,6 +15,5 @@
15
15
  */ import * as connections from './connections.js';
16
16
  export default {
17
17
  connections: Object.keys(connections),
18
- requests: Object.keys(connections).map((connection)=>Object.keys(connections[connection].requests)
19
- ).flat()
18
+ requests: Object.keys(connections).map((connection)=>Object.keys(connections[connection].requests)).flat()
20
19
  };
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@lowdefy/connection-sendgrid",
3
- "version": "4.0.0-alpha.9",
4
- "licence": "Apache-2.0",
3
+ "version": "4.0.0-rc.0",
4
+ "license": "Apache-2.0",
5
5
  "description": "",
6
6
  "homepage": "https://lowdefy.com",
7
7
  "keywords": [
@@ -35,25 +35,24 @@
35
35
  "dist/*"
36
36
  ],
37
37
  "scripts": {
38
- "build": "yarn swc",
38
+ "build": "swc src --out-dir dist --config-file ../../../../.swcrc --delete-dir-on-start --copy-files",
39
39
  "clean": "rm -rf dist",
40
- "prepare": "yarn build",
41
- "swc": "swc src --out-dir dist --config-file ../../../../.swcrc --delete-dir-on-start --copy-files",
40
+ "prepublishOnly": "pnpm build",
42
41
  "test": "jest --coverage"
43
42
  },
44
43
  "dependencies": {
45
- "@lowdefy/helpers": "4.0.0-alpha.9",
46
- "@sendgrid/mail": "7.6.0"
44
+ "@lowdefy/helpers": "4.0.0-rc.0",
45
+ "@sendgrid/mail": "7.7.0"
47
46
  },
48
47
  "devDependencies": {
49
- "@lowdefy/ajv": "4.0.0-alpha.9",
50
- "@swc/cli": "0.1.55",
51
- "@swc/core": "1.2.135",
52
- "@swc/jest": "0.2.17",
53
- "jest": "27.5.1"
48
+ "@lowdefy/ajv": "4.0.0-rc.0",
49
+ "@swc/cli": "0.1.57",
50
+ "@swc/core": "1.2.194",
51
+ "@swc/jest": "0.2.21",
52
+ "jest": "28.1.0"
54
53
  },
55
54
  "publishConfig": {
56
55
  "access": "public"
57
56
  },
58
- "gitHead": "98b544eca231bdcfca6c3a8601a891835d5ce571"
57
+ "gitHead": "f6872d7ff6da421710096536fce7b2016ef8f35c"
59
58
  }