c2-mongoose 2.1.6 → 2.1.8

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.
@@ -8,6 +8,7 @@ declare class CrudFlow<D> {
8
8
  prepareSearch(search: SearchFlow): void;
9
9
  create(data: any, session?: any): Promise<any[]>;
10
10
  delete(id: string, session?: any): Promise<void>;
11
+ deleteMany(conditions: {}, session?: any): Promise<void>;
11
12
  update(id: string, data: D, session?: any): Promise<D>;
12
13
  find(): Promise<SearchResponse<D>>;
13
14
  getOne(model: D, params?: any): Promise<D>;
@@ -68,6 +68,19 @@ var CrudFlow = /** @class */ (function () {
68
68
  });
69
69
  });
70
70
  };
71
+ CrudFlow.prototype.deleteMany = function (conditions, session) {
72
+ if (session === void 0) { session = undefined; }
73
+ return __awaiter(this, void 0, void 0, function () {
74
+ return __generator(this, function (_a) {
75
+ switch (_a.label) {
76
+ case 0: return [4 /*yield*/, this.repository.deleteMany(conditions).session(session)];
77
+ case 1:
78
+ _a.sent();
79
+ return [2 /*return*/];
80
+ }
81
+ });
82
+ });
83
+ };
71
84
  CrudFlow.prototype.update = function (id, data, session) {
72
85
  if (session === void 0) { session = undefined; }
73
86
  return __awaiter(this, void 0, void 0, function () {
@@ -181,7 +181,7 @@ var SearchFlow = /** @class */ (function () {
181
181
  paging.limit = this.limit;
182
182
  searchResponse = {};
183
183
  searchResponse.items = items;
184
- searchResponse.pagination = paging;
184
+ searchResponse.paging = paging;
185
185
  return [2 /*return*/, searchResponse];
186
186
  }
187
187
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "c2-mongoose",
3
- "version": "2.1.6",
3
+ "version": "2.1.8",
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",
@@ -11,7 +11,7 @@ class CrudFlow<D> {
11
11
  this.repository = repository
12
12
  this.search = search
13
13
  }
14
-
14
+
15
15
  public prepareSearch(search: SearchFlow) {
16
16
  this.search = search
17
17
  }
@@ -24,6 +24,10 @@ class CrudFlow<D> {
24
24
  await this.repository.findByIdAndRemove(id, { session })
25
25
  }
26
26
 
27
+ public async deleteMany(conditions: {}, session: any = undefined) {
28
+ await this.repository.deleteMany(conditions).session(session)
29
+ }
30
+
27
31
  public async update(id: string, data: D, session: any = undefined): Promise<D> {
28
32
  const dataAfter = await this.repository.findByIdAndUpdate(id, { $set: data as any }, { returnDocument: 'after', session })
29
33
  return dataAfter as D
@@ -126,7 +126,7 @@ abstract class SearchFlow {
126
126
 
127
127
  var searchResponse: SearchResponse<any> = {}
128
128
  searchResponse.items = items
129
- searchResponse.pagination = paging
129
+ searchResponse.paging = paging
130
130
 
131
131
  return searchResponse
132
132
  }
@@ -1,5 +1,5 @@
1
1
  export declare interface SearchResponse<T> {
2
- pagination?: Pagination,
2
+ paging?: Pagination,
3
3
  items?: T[]
4
4
  }
5
5