cloud-ide-lms-model 1.0.134 → 1.0.135

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.
@@ -0,0 +1,19 @@
1
+ import { MTableQueries } from "../../common-types";
2
+ import { ICoreSyctr } from "../../schema";
3
+ import { controllerResponse } from "../../utilities";
4
+ type ICoreSyctrErrorLogger = {
5
+ [key in keyof ICoreSyctr]: string;
6
+ };
7
+ type ICoreSyctrListErrorLogger = {
8
+ [key in keyof MSyctrList]: string;
9
+ };
10
+ declare class MSyctrList extends MTableQueries {
11
+ syctr_id: string;
12
+ constructor(init: MSyctrList);
13
+ Validate?(): Partial<ICoreSyctrListErrorLogger>;
14
+ }
15
+ interface currencyListControllerResponse extends controllerResponse {
16
+ data?: ICoreSyctr[];
17
+ }
18
+ export { ICoreSyctrErrorLogger, //interface
19
+ ICoreSyctrListErrorLogger, currencyListControllerResponse };
@@ -0,0 +1,16 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ const common_types_1 = require("../../common-types");
4
+ /* INTERFACE END */
5
+ class MSyctrList extends common_types_1.MTableQueries {
6
+ constructor(init) {
7
+ super(init);
8
+ this.syctr_id = "";
9
+ Object.assign(this, init);
10
+ }
11
+ Validate() {
12
+ let errorLogger = {};
13
+ // Log errors here
14
+ return errorLogger;
15
+ }
16
+ }
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.134",
8
+ "version": "1.0.135",
9
9
  "description": "Package for Model management of Cloud IDEsys LMS",
10
10
  "main": "lib/index.js",
11
11
  "types": "lib/index.d.ts",