cloud-ide-lms-model 1.0.129 → 1.0.131

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.
@@ -1,3 +1,4 @@
1
+ import { MTableQueries } from "../../common-types";
1
2
  import { ICoreSycr } from "../../schema";
2
3
  import { controllerResponse } from "../../utilities";
3
4
  type ICoreSycrErrorLogger = {
@@ -6,13 +7,16 @@ type ICoreSycrErrorLogger = {
6
7
  type ICoreSycrListErrorLogger = {
7
8
  [key in keyof MSycrList]: string;
8
9
  };
9
- declare class MSycrList {
10
+ declare class MSycrList extends MTableQueries {
10
11
  constructor(init: MSycrList);
11
12
  Validate?(): Partial<ICoreSycrListErrorLogger>;
12
13
  }
13
14
  interface currencyInsertUpdateControllerResponse extends controllerResponse {
14
15
  data?: ICoreSycr;
15
16
  }
17
+ interface currencyListControllerResponse extends controllerResponse {
18
+ data?: ICoreSycr[];
19
+ }
16
20
  export { ICoreSycrErrorLogger, //interface
17
21
  currencyInsertUpdateControllerResponse, // above coresponding to payload abd this corespons to rresponse,
18
- MSycrList, ICoreSycrListErrorLogger };
22
+ MSycrList, ICoreSycrListErrorLogger, currencyListControllerResponse };
@@ -1,9 +1,11 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.MSycrList = void 0;
4
+ const common_types_1 = require("../../common-types");
4
5
  /* INTERFACE END */
5
- class MSycrList {
6
+ class MSycrList extends common_types_1.MTableQueries {
6
7
  constructor(init) {
8
+ super(init);
7
9
  Object.assign(this, init);
8
10
  }
9
11
  Validate() {
package/package.json CHANGED
@@ -5,7 +5,7 @@
5
5
  "typescript": "^5.4.2"
6
6
  },
7
7
  "name": "cloud-ide-lms-model",
8
- "version": "1.0.129",
8
+ "version": "1.0.131",
9
9
  "description": "Package for Model management of Cloud IDEsys LMS",
10
10
  "main": "lib/index.js",
11
11
  "types": "lib/index.d.ts",