@clairejs/server 3.16.0 → 3.16.2
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/README.md
CHANGED
|
@@ -173,7 +173,8 @@ export class CrudHttpController extends AbstractHttpController {
|
|
|
173
173
|
crudEnpointMetadata.push(this.updateRecordsEndpointMetadata());
|
|
174
174
|
}
|
|
175
175
|
else {
|
|
176
|
-
allEndpoints = allEndpoints.filter((e) => e.name !== CrudHttpController.prototype.updateMany.name
|
|
176
|
+
allEndpoints = allEndpoints.filter((e) => e.name !== CrudHttpController.prototype.updateMany.name &&
|
|
177
|
+
e.name !== CrudHttpController.prototype.updateRecords.name);
|
|
177
178
|
}
|
|
178
179
|
if (!this.modelMetadata.ignoreCrud?.includes(HttpMethod.DEL)) {
|
|
179
180
|
crudEnpointMetadata.push(this.deleteManyEndpoinMetadata());
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@clairejs/server",
|
|
3
|
-
"version": "3.16.
|
|
3
|
+
"version": "3.16.2",
|
|
4
4
|
"description": "Claire server NodeJs framework written in Typescript.",
|
|
5
5
|
"types": "dist/index.d.ts",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -20,13 +20,10 @@
|
|
|
20
20
|
"cors": "^2.8.5",
|
|
21
21
|
"express": "^4.17.1",
|
|
22
22
|
"express-fileupload": "^1.2.1",
|
|
23
|
-
"mysql2": "^2.2.5",
|
|
24
23
|
"node-cron": "^3.0.1",
|
|
25
24
|
"node-schedule": "^2.1.0",
|
|
26
25
|
"parseurl": "^1.3.3",
|
|
27
26
|
"path-to-regexp": "^6.2.0",
|
|
28
|
-
"pg": "^8.5.1",
|
|
29
|
-
"pg-hstore": "^2.3.4",
|
|
30
27
|
"query-string": "^6.14.0",
|
|
31
28
|
"randomstring": "^1.2.2",
|
|
32
29
|
"redlock": "^5.0.0-beta.2",
|
|
@@ -35,7 +32,7 @@
|
|
|
35
32
|
},
|
|
36
33
|
"peerDependencies": {
|
|
37
34
|
"@clairejs/core": "^3.5.2",
|
|
38
|
-
"@clairejs/orm": "^3.
|
|
35
|
+
"@clairejs/orm": "^3.10.12",
|
|
39
36
|
"ioredis": "^5.2.0"
|
|
40
37
|
},
|
|
41
38
|
"devDependencies": {
|