ismx-nexo-node-app 0.4.89 → 0.4.90

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.
@@ -36,7 +36,7 @@ class LoopbackBusiness extends ProxyBusiness_1.default {
36
36
  call: { get: () => super.call }
37
37
  });
38
38
  return __awaiter(this, void 0, void 0, function* () {
39
- return _super.call.call(this, "loopback", endpoint, method, request);
39
+ return _super.call.call(this, "loopback", method, endpoint, request);
40
40
  });
41
41
  }
42
42
  setModules(modules) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ismx-nexo-node-app",
3
- "version": "0.4.89",
3
+ "version": "0.4.90",
4
4
  "description": "",
5
5
  "scripts": {
6
6
  "build": "rm -rf ./dist && npx tsc",
@@ -25,7 +25,7 @@ export default class LoopbackBusiness extends ProxyBusiness
25
25
  }
26
26
 
27
27
  async loopback<Req, Res>(method: string, endpoint: string, request: HttpRequest<Req>): Promise<fetch.Response> {
28
- return super.call<Req, Res>("loopback", endpoint, method, request);
28
+ return super.call<Req, Res>("loopback", method, endpoint, request);
29
29
  }
30
30
 
31
31
  setModules(modules: { [p: string]: Module }) {