ismx-nexo-node-app 0.4.189 → 0.4.190

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.
@@ -66,6 +66,7 @@ class ServiceRestFormalTemplate {
66
66
  }
67
67
  if (options.exist !== '404') {
68
68
  this.exist = new ServiceRestFormal_1.default("GET", `${resource}/exist`, options.exist);
69
+ this.exist.serveRestFormal = this.serveExist.bind(this);
69
70
  }
70
71
  if (options.count !== '404') {
71
72
  this.count = new ServiceRestFormal_1.default("GET", `${resource}/count`, options.count);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ismx-nexo-node-app",
3
- "version": "0.4.189",
3
+ "version": "0.4.190",
4
4
  "description": "",
5
5
  "scripts": {
6
6
  "build": "rm -rf ./dist && npx tsc",
@@ -86,6 +86,7 @@ export default class ServiceRestFormalTemplate<Model=any>
86
86
 
87
87
  if (options.exist !== '404') {
88
88
  this.exist = new ServiceRestFormal("GET", `${resource}/exist`, options.exist);
89
+ this.exist.serveRestFormal = this.serveExist.bind(this);
89
90
  }
90
91
 
91
92
  if (options.count !== '404') {