c2-mongoose 2.1.306 → 2.1.307

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.
@@ -20,7 +20,6 @@ declare class SearcherFlow<D> {
20
20
  orderBy: string;
21
21
  groupBy: string[];
22
22
  sumFields: string[];
23
- groupFields: string[];
24
23
  page: number;
25
24
  limit: number;
26
25
  pageable: boolean;
@@ -72,7 +72,6 @@ var SearcherFlow = /** @class */ (function () {
72
72
  this.orderBy = "_id";
73
73
  this.groupBy = [];
74
74
  this.sumFields = [];
75
- this.groupFields = [];
76
75
  this.page = 1;
77
76
  this.limit = 50;
78
77
  this.pageable = true;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "c2-mongoose",
3
- "version": "2.1.306",
3
+ "version": "2.1.307",
4
4
  "description": "Lib to make any search in database mongoose and use as basic crud",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -29,7 +29,6 @@ class SearcherFlow<D> {
29
29
  public orderBy: string = "_id"
30
30
  public groupBy: string[] = []
31
31
  public sumFields: string[] = []
32
- public groupFields: string[] = []
33
32
  public page: number = 1
34
33
  public limit: number = 50
35
34
  public pageable: boolean = true