cloud-ide-lms-model 1.0.253 → 1.0.257

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.
@@ -20,6 +20,7 @@ type IClassPrgBranchToggleLockErrorLogger = {
20
20
  [key in keyof AcaClassPrgBranchToggleLockPayload]: string;
21
21
  };
22
22
  declare class AcaClassPrgBranchListPayload extends MTableQueries {
23
+ acabrn_class_program_id_acacpm: string;
23
24
  constructor(init: AcaClassPrgBranchListPayload);
24
25
  Validate?(): Partial<IClassPrgBranchErrorLogger>;
25
26
  }
@@ -8,10 +8,14 @@ const schema_1 = require("../../schema");
8
8
  class AcaClassPrgBranchListPayload extends common_1.MTableQueries {
9
9
  constructor(init) {
10
10
  super(init);
11
+ this.acabrn_class_program_id_acacpm = "";
11
12
  Object.assign(this, init);
12
13
  }
13
14
  Validate() {
14
15
  let errorLogger = {};
16
+ if (!this.acabrn_class_program_id_acacpm) {
17
+ errorLogger.acabrn_class_program_id_acacpm = "Class Program ID is required!";
18
+ }
15
19
  return errorLogger;
16
20
  }
17
21
  }
@@ -17,6 +17,7 @@ type IUserRoleToggleStatusErrorLogger = {
17
17
  [key in keyof MUserRoleToggleStatusPayload]: string;
18
18
  };
19
19
  declare class MUserRole extends MTableQueries {
20
+ syusrol_role_entity_id_syen: string;
20
21
  constructor(init: MUserRole);
21
22
  Validate?(): Partial<IUserRoleErrorLogger>;
22
23
  }
@@ -7,10 +7,14 @@ const common_1 = require("../../common-types/common");
7
7
  class MUserRole extends common_1.MTableQueries {
8
8
  constructor(init) {
9
9
  super(init);
10
+ this.syusrol_role_entity_id_syen = "";
10
11
  Object.assign(this, init);
11
12
  }
12
13
  Validate() {
13
14
  let errorLogger = {};
15
+ if (!this.syusrol_role_entity_id_syen) {
16
+ errorLogger.syusrol_role_entity_id_syen = "Entity ID is required!";
17
+ }
14
18
  return errorLogger;
15
19
  }
16
20
  }
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.253",
8
+ "version": "1.0.257",
9
9
  "description": "Package for Model management of Cloud IDEsys LMS",
10
10
  "main": "lib/index.js",
11
11
  "types": "lib/index.d.ts",