ismx-nexo-node-app 0.4.81 → 0.4.82

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.
@@ -18,8 +18,6 @@ export default class ServiceRestFormalTemplate<Model = any> {
18
18
  }, {
19
19
  [key: string]: any;
20
20
  }>;
21
- readonly full: ServiceRestFormal<any, Model>;
22
- readonly fullList: ServiceRestFormal<any, Model[]>;
23
21
  readonly put: ServiceRestFormal<Model, Model>;
24
22
  readonly del: ServiceRestFormal<any, Model>;
25
23
  readonly select: ServiceRestFormal<any, string[]>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ismx-nexo-node-app",
3
- "version": "0.4.81",
3
+ "version": "0.4.82",
4
4
  "description": "",
5
5
  "scripts": {
6
6
  "build": "rm -rf ./dist && npx tsc",
@@ -15,8 +15,6 @@ export default class ServiceRestFormalTemplate<Model=any>
15
15
  readonly post!: ServiceRestFormal<Model, Model>;
16
16
  readonly postList!: ServiceRestFormal<Model[], Model[]>;
17
17
  readonly postKeymap!: ServiceRestFormal<{ [key:string]:any }, { [key:string]:any }>;
18
- readonly full!: ServiceRestFormal<any, Model>
19
- readonly fullList!: ServiceRestFormal<any, Model[]>
20
18
  readonly put!: ServiceRestFormal<Model, Model>;
21
19
  readonly del!: ServiceRestFormal<any, Model>;
22
20
  readonly select!: ServiceRestFormal<any, string[]>;