nestjs-paginate 5.0.3 → 5.0.4

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.
Files changed (2) hide show
  1. package/README.md +8 -0
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -267,6 +267,14 @@ const paginateConfig: PaginateConfig<CatEntity> {
267
267
  * [#5670](https://github.com/typeorm/typeorm/issues/5670)
268
268
  */
269
269
  paginationType: PaginationType.LIMIT_AND_OFFSET,
270
+
271
+ /**
272
+ * Required: false
273
+ * Type: boolean
274
+ * Default: false
275
+ * Description: Load eager relations using TypeORM's eager property.
276
+ */
277
+ loadEagerRelations: true
270
278
  }
271
279
  ```
272
280
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "nestjs-paginate",
3
- "version": "5.0.3",
3
+ "version": "5.0.4",
4
4
  "author": "Philipp Petzold <ppetzold@protonmail.com>",
5
5
  "license": "MIT",
6
6
  "main": "lib/index.js",