cloud-ide-lms-model 1.0.198 → 1.0.199

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.
@@ -4,6 +4,7 @@ export declare class IGeneralMasterListRequest {
4
4
  sygms_id_sygmt?: string;
5
5
  sygms_entity_id_syen?: string;
6
6
  constructor(init: Partial<IGeneralMasterListRequest>);
7
+ Validate?(): Partial<Record<keyof IGeneralMasterListRequest, string>>;
7
8
  }
8
9
  export declare class MGeneralMasterDeletePayload {
9
10
  sygms_id: string;
@@ -21,8 +22,8 @@ export declare class MGeneralMasterToggleStatusPayload {
21
22
  Validate?(): Partial<Record<keyof MGeneralMasterToggleStatusPayload, string>>;
22
23
  }
23
24
  export interface IGeneralMasterListRequest {
24
- type_id?: string;
25
- entity_id?: string;
25
+ sygms_id_sygmt?: string;
26
+ sygms_entity_id_syen?: string;
26
27
  }
27
28
  export interface IGeneralMasterListResponse {
28
29
  success: boolean;
@@ -7,6 +7,10 @@ class IGeneralMasterListRequest {
7
7
  constructor(init) {
8
8
  Object.assign(this, init);
9
9
  }
10
+ Validate() {
11
+ let errorLogger = {};
12
+ return errorLogger;
13
+ }
10
14
  }
11
15
  exports.IGeneralMasterListRequest = IGeneralMasterListRequest;
12
16
  class MGeneralMasterDeletePayload {
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.198",
8
+ "version": "1.0.199",
9
9
  "description": "Package for Model management of Cloud IDEsys LMS",
10
10
  "main": "lib/index.js",
11
11
  "types": "lib/index.d.ts",