cloud-ide-lms-model 1.0.254 → 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
|
}
|