mongodb-dynamic-api 1.4.2 → 1.4.3

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/CHANGELOG.md CHANGED
@@ -1,5 +1,7 @@
1
1
  Changelog
2
2
 
3
+ ## [1.4.3](https://github.com/MikeDev75015/mongodb-dynamic-api/compare/v1.4.2...v1.4.3) (2024-03-15)
4
+
3
5
  ## [1.4.2](https://github.com/MikeDev75015/mongodb-dynamic-api/compare/v1.4.1...v1.4.2) (2024-03-15)
4
6
 
5
7
  ## [1.4.1](https://github.com/MikeDev75015/mongodb-dynamic-api/compare/v1.4.0...v1.4.1) (2024-03-12)
package/README.md CHANGED
@@ -66,11 +66,12 @@ npm install --save mongodb-dynamic-api
66
66
  In summary, DynamicApiModule is a flexible and configurable module using NestJS 10 that provides dynamic API functionality.
67
67
  <br>It must be set up at the root level with global settings and then configured for individual features.
68
68
  <br>It has several optional features such as
69
- Swagger UI,
70
- Authentication (JWT),
71
- Authorization (Casl),
72
- Validation (Class Validator)
73
- and Caching (cache-manager).
69
+ [Swagger UI](https://github.com/MikeDev75015/mongodb-dynamic-api/blob/develop/README/swagger-ui.md),
70
+ [Versioning](https://github.com/MikeDev75015/mongodb-dynamic-api/blob/develop/README/versioning.md),
71
+ [Validation](https://github.com/MikeDev75015/mongodb-dynamic-api/blob/develop/README/validation.md),
72
+ [Caching](https://github.com/MikeDev75015/mongodb-dynamic-api/blob/develop/README/caching.md),
73
+ [Authentication](https://github.com/MikeDev75015/mongodb-dynamic-api/blob/develop/README/authentication.md) and
74
+ [Authorization](https://github.com/MikeDev75015/mongodb-dynamic-api/blob/develop/README/authorization.md).
74
75
 
75
76
  </p>
76
77
 
@@ -191,9 +192,9 @@ export class AppModule {}
191
192
 
192
193
  ___
193
194
 
194
- Go further with optional features like **Swagger UI**, **Validation**, **Caching**, **Authentication** and **Authorization**.
195
-
195
+ Go further with optional features like:
196
196
  - **[Swagger UI](https://github.com/MikeDev75015/mongodb-dynamic-api/blob/develop/README/swagger-ui.md)**
197
+ - **[Versioning](https://github.com/MikeDev75015/mongodb-dynamic-api/blob/develop/README/versioning.md)**
197
198
  - **[Validation](https://github.com/MikeDev75015/mongodb-dynamic-api/blob/develop/README/validation.md)** with **Class Validator**
198
199
  - **[Caching](https://github.com/MikeDev75015/mongodb-dynamic-api/blob/develop/README/caching.md)** with **cache-manager**
199
200
  - **[Authentication](https://github.com/MikeDev75015/mongodb-dynamic-api/blob/develop/README/authentication.md)** with **JWT**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mongodb-dynamic-api",
3
- "version": "1.4.2",
3
+ "version": "1.4.3",
4
4
  "description": "Auto generated CRUD API for MongoDB using NestJS",
5
5
  "readmeFilename": "README.md",
6
6
  "main": "index.js",
package/src/version.json CHANGED
@@ -1,3 +1,3 @@
1
1
  {
2
- "version": "1.4.2"
2
+ "version": "1.4.3"
3
3
  }