c2-mongoose 2.1.90 → 2.1.91

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.
@@ -324,7 +324,8 @@ var SearchFlow = /** @class */ (function () {
324
324
  case 0: return [4 /*yield*/, repository.findOne(model)
325
325
  .sort(params.sort)
326
326
  .select(params.select)
327
- .populate(params.populate)];
327
+ .populate(params.populate)
328
+ .session(params === null || params === void 0 ? void 0 : params.session)];
328
329
  case 1: return [2 /*return*/, _a.sent()];
329
330
  }
330
331
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "c2-mongoose",
3
- "version": "2.1.90",
3
+ "version": "2.1.91",
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",
@@ -234,6 +234,7 @@ abstract class SearchFlow {
234
234
  .sort(params.sort)
235
235
  .select(params.select)
236
236
  .populate(params.populate)
237
+ .session(params?.session)
237
238
  }
238
239
 
239
240
  public async sumBy(model: mongoose.Model<any>, _sum: any, _by: any, items: any = undefined, session?: ClientSession): Promise<any[]> {