ismx-nexo-node-app 0.3.43 → 0.3.44

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.
@@ -104,7 +104,7 @@ class ServiceRestFormalTemplate {
104
104
  let promises = list === null || list === void 0 ? void 0 : list.map((model) => {
105
105
  let query = {};
106
106
  query[this.indexer] = model[this.indexer];
107
- return this.unwrap(this.full.serve(query));
107
+ return this.unwrap(this.full.serve({ query }));
108
108
  });
109
109
  return Service_1.HttpResponse.ok(yield Promise.all(promises !== null && promises !== void 0 ? promises : []));
110
110
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ismx-nexo-node-app",
3
- "version": "0.3.43",
3
+ "version": "0.3.44",
4
4
  "description": "",
5
5
  "scripts": {
6
6
  "build": "rm -rf ./dist && npx tsc",
@@ -117,7 +117,7 @@ export default class ServiceRestFormalTemplate<Model=any>
117
117
  let list = await this.unwrap(this.getList.serve(request));
118
118
  let promises = list?.map((model: any) => {
119
119
  let query: any = {}; query[this.indexer] = model[this.indexer];
120
- return this.unwrap(this.full.serve(query));
120
+ return this.unwrap(this.full.serve({ query }));
121
121
  });
122
122
  return HttpResponse.ok(await Promise.all(promises ?? []));
123
123
  }