@lenne.tech/nest-server 10.2.8 → 10.2.9

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lenne.tech/nest-server",
3
- "version": "10.2.8",
3
+ "version": "10.2.9",
4
4
  "description": "Modern, fast, powerful Node.js web framework in TypeScript based on Nest with a GraphQL API and a connection to MongoDB (or other databases).",
5
5
  "keywords": [
6
6
  "node",
@@ -97,7 +97,7 @@
97
97
  "multer": "1.4.5-lts.1",
98
98
  "node-mailjet": "6.0.5",
99
99
  "nodemailer": "6.9.8",
100
- "nodemon": "3.0.2",
100
+ "nodemon": "3.0.3",
101
101
  "passport": "0.7.0",
102
102
  "passport-jwt": "4.0.1",
103
103
  "reflect-metadata": "0.1.14",
@@ -114,7 +114,7 @@
114
114
  "@nestjs/schematics": "10.1.0",
115
115
  "@nestjs/testing": "10.3.0",
116
116
  "@swc/cli": "0.1.63",
117
- "@swc/core": "1.3.103",
117
+ "@swc/core": "1.3.104",
118
118
  "@swc/jest": "0.2.29",
119
119
  "@types/compression": "1.7.5",
120
120
  "@types/cookie-parser": "1.4.6",
@@ -123,7 +123,7 @@
123
123
  "@types/jest": "29.5.11",
124
124
  "@types/lodash": "4.14.202",
125
125
  "@types/multer": "1.4.11",
126
- "@types/node": "20.11.3",
126
+ "@types/node": "20.11.5",
127
127
  "@types/nodemailer": "6.4.14",
128
128
  "@types/passport": "1.0.16",
129
129
  "@types/supertest": "6.0.2",
@@ -143,8 +143,8 @@
143
143
  "jest": "29.7.0",
144
144
  "npm-watch": "0.11.0",
145
145
  "pm2": "5.3.0",
146
- "prettier": "3.2.2",
147
- "pretty-quick": "3.1.3",
146
+ "prettier": "3.2.4",
147
+ "pretty-quick": "4.0.0",
148
148
  "supertest": "6.3.4",
149
149
  "ts-jest": "29.1.1",
150
150
  "ts-loader": "9.5.1",
@@ -30,7 +30,7 @@ export class BrevoService {
30
30
  }
31
31
 
32
32
  // Exclude (test) users
33
- if (this.configService.configFastButReadOnly.brevo?.exclude?.test?.(to)) {
33
+ if (this.configService.configFastButReadOnly.brevo?.exclude?.test(to)) {
34
34
  return 'TEST_USER!';
35
35
  }
36
36
 
@@ -67,7 +67,7 @@ export class BrevoService {
67
67
  }
68
68
 
69
69
  // Exclude (test) users
70
- if (this.brevoConfig.exclude?.test?.(to)) {
70
+ if (this.brevoConfig.exclude?.test(to)) {
71
71
  return 'TEST_USER!';
72
72
  }
73
73