@lenne.tech/nest-server 10.7.0 → 10.7.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lenne.tech/nest-server",
3
- "version": "10.7.0",
3
+ "version": "10.7.1",
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",
@@ -67,14 +67,14 @@
67
67
  "@lenne.tech/mongoose-gridfs": "1.4.2",
68
68
  "@lenne.tech/multer-gridfs-storage": "5.0.6",
69
69
  "@nestjs/apollo": "12.2.2",
70
- "@nestjs/common": "10.4.13",
71
- "@nestjs/core": "10.4.13",
70
+ "@nestjs/common": "10.4.15",
71
+ "@nestjs/core": "10.4.15",
72
72
  "@nestjs/graphql": "12.2.2",
73
73
  "@nestjs/jwt": "10.2.0",
74
74
  "@nestjs/mongoose": "10.1.0",
75
75
  "@nestjs/passport": "10.0.3",
76
- "@nestjs/platform-express": "10.4.13",
77
- "@nestjs/schedule": "4.1.1",
76
+ "@nestjs/platform-express": "10.4.15",
77
+ "@nestjs/schedule": "4.1.2",
78
78
  "@nestjs/terminus": "10.2.3",
79
79
  "apollo-server-core": "3.13.0",
80
80
  "apollo-server-express": "3.13.0",
@@ -110,11 +110,11 @@
110
110
  "@babel/plugin-proposal-private-methods": "7.18.6",
111
111
  "@compodoc/compodoc": "1.1.26",
112
112
  "@lenne.tech/eslint-config-ts": "0.0.16",
113
- "@nestjs/cli": "10.4.8",
113
+ "@nestjs/cli": "10.4.9",
114
114
  "@nestjs/schematics": "10.2.3",
115
- "@nestjs/testing": "10.4.13",
115
+ "@nestjs/testing": "10.4.15",
116
116
  "@swc/cli": "0.5.2",
117
- "@swc/core": "1.10.0",
117
+ "@swc/core": "1.10.1",
118
118
  "@swc/jest": "0.2.37",
119
119
  "@types/compression": "1.7.5",
120
120
  "@types/cookie-parser": "1.4.8",
@@ -91,7 +91,7 @@ export interface ServiceOptions {
91
91
  select?: Record<string, boolean | number | object> | string | string[];
92
92
 
93
93
  // Add updateBy and/or createBy user ID into input after check
94
- // If falsy: input data will not be changed
95
- // If truly (default): updatedBy and/or createdBy (when create mode is activated) will be set if current user is available
94
+ // If falsy (default): input data will not be changed
95
+ // If truly: updatedBy and/or createdBy (when create mode is activated) will be set if current user is available
96
96
  setCreateOrUpdateUserId?: boolean;
97
97
  }
@@ -96,7 +96,7 @@ export abstract class ModuleService<T extends CoreModel = any> {
96
96
  prepareOutput: {},
97
97
  processFieldSelection: {},
98
98
  pubSub: true,
99
- setCreateOrUpdateUserId: true,
99
+ setCreateOrUpdateUserId: false,
100
100
  ...(options?.serviceOptions || {}),
101
101
  };
102
102