@maioradv/nestjs-core 1.8.3 → 1.8.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.
@@ -7,7 +7,7 @@ export default class CursorQueryDto {
7
7
  get skip(): number;
8
8
  get take(): number;
9
9
  get order(): Record<string, any>;
10
- get getCursor(): {
10
+ get cursor(): {
11
11
  id: number;
12
12
  };
13
13
  }
@@ -34,7 +34,7 @@ let CursorQueryDto = class CursorQueryDto {
34
34
  id: this.sorting
35
35
  };
36
36
  }
37
- get getCursor() {
37
+ get cursor() {
38
38
  return this.after || this.before ? {
39
39
  id: this.after ?? this.before
40
40
  } : undefined;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@maioradv/nestjs-core",
3
- "version": "1.8.3",
3
+ "version": "1.8.4",
4
4
  "description": "NestJS helpers by MaiorADV",
5
5
  "repository": "https://github.com/maioradv/nestjs-core.git",
6
6
  "author": "Maior ADV Srl",