cloud-ide-lms-model 1.0.258 → 1.0.260
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.
- package/lib/model/academics/aca_class_prg_branch.d.ts +12 -6
- package/lib/model/academics/aca_class_prg_branch.js +4 -1
- package/lib/model/academics/aca_class_program_term.d.ts +4 -0
- package/lib/schema/academics/aca_class_prg_branch.d.ts +6 -3
- package/lib/schema/academics/aca_class_prg_branch.js +5 -2
- package/lib/schema/academics/aca_class_program_term.d.ts +1 -0
- package/package.json +1 -1
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { MTableQueries } from "../../common-types/common";
|
|
2
|
-
import { AcaClassPrgBranch } from "../../schema";
|
|
2
|
+
import { AcaClassPrgBranch, AcaClassPrgBranchBase } from "../../schema";
|
|
3
3
|
import { controllerResponse } from "../../utilities";
|
|
4
4
|
type IClassPrgBranchErrorLogger = {
|
|
5
5
|
[key in keyof AcaClassPrgBranchListPayload]: string;
|
|
@@ -44,18 +44,24 @@ declare class AcaClassPrgBranchToggleLockPayload {
|
|
|
44
44
|
constructor(init: AcaClassPrgBranchToggleLockPayload);
|
|
45
45
|
Validate?(): Partial<IClassPrgBranchToggleLockErrorLogger>;
|
|
46
46
|
}
|
|
47
|
+
declare class AcaClassPrgBranchResponse extends AcaClassPrgBranchBase {
|
|
48
|
+
acabrn_class_program_id_acacpm?: {
|
|
49
|
+
_id?: string;
|
|
50
|
+
acacpm_alise_title?: string;
|
|
51
|
+
};
|
|
52
|
+
}
|
|
47
53
|
declare class AcaClassPrgBranchInsertUpdatePayload extends AcaClassPrgBranch {
|
|
48
54
|
constructor(init: AcaClassPrgBranchInsertUpdatePayload);
|
|
49
55
|
Validate?(): Partial<IClassPrgBranchInsertUpdateErrorLogger>;
|
|
50
56
|
}
|
|
51
57
|
interface classPrgBranchControllerResponse extends controllerResponse {
|
|
52
|
-
data?:
|
|
58
|
+
data?: AcaClassPrgBranchResponse[];
|
|
53
59
|
}
|
|
54
60
|
interface classPrgBranchByIdControllerResponse extends controllerResponse {
|
|
55
|
-
data?:
|
|
61
|
+
data?: AcaClassPrgBranchResponse;
|
|
56
62
|
}
|
|
57
63
|
interface classPrgBranchInsertUpdateControllerResponse extends controllerResponse {
|
|
58
|
-
data?:
|
|
64
|
+
data?: AcaClassPrgBranchResponse;
|
|
59
65
|
}
|
|
60
66
|
interface classPrgBranchDeleteControllerResponse extends controllerResponse {
|
|
61
67
|
data?: boolean;
|
|
@@ -67,6 +73,6 @@ interface classPrgBranchToggleLockControllerResponse extends controllerResponse
|
|
|
67
73
|
data?: boolean;
|
|
68
74
|
}
|
|
69
75
|
interface classPrgBranchByProgramControllerResponse extends controllerResponse {
|
|
70
|
-
data?: Array<
|
|
76
|
+
data?: Array<AcaClassPrgBranchResponse>;
|
|
71
77
|
}
|
|
72
|
-
export { IClassPrgBranchErrorLogger, IClassPrgBranchGetByIdErrorLogger, IClassPrgBranchDeleteErrorLogger, IClassPrgBranchInsertUpdateErrorLogger, IClassPrgBranchToggleStatusErrorLogger, IClassPrgBranchToggleLockErrorLogger, AcaClassPrgBranchListPayload, AcaClassPrgBranchGetByIdPayload, AcaClassPrgBranchDeletePayload, AcaClassPrgBranchInsertUpdatePayload, AcaClassPrgBranchToggleStatusPayload, AcaClassPrgBranchToggleLockPayload, classPrgBranchControllerResponse, classPrgBranchByIdControllerResponse, classPrgBranchInsertUpdateControllerResponse, classPrgBranchDeleteControllerResponse, classPrgBranchToggleStatusControllerResponse, classPrgBranchToggleLockControllerResponse, classPrgBranchByProgramControllerResponse };
|
|
78
|
+
export { IClassPrgBranchErrorLogger, IClassPrgBranchGetByIdErrorLogger, IClassPrgBranchDeleteErrorLogger, IClassPrgBranchInsertUpdateErrorLogger, IClassPrgBranchToggleStatusErrorLogger, IClassPrgBranchToggleLockErrorLogger, AcaClassPrgBranchListPayload, AcaClassPrgBranchGetByIdPayload, AcaClassPrgBranchDeletePayload, AcaClassPrgBranchInsertUpdatePayload, AcaClassPrgBranchToggleStatusPayload, AcaClassPrgBranchToggleLockPayload, classPrgBranchControllerResponse, classPrgBranchByIdControllerResponse, classPrgBranchInsertUpdateControllerResponse, classPrgBranchDeleteControllerResponse, classPrgBranchToggleStatusControllerResponse, classPrgBranchToggleLockControllerResponse, classPrgBranchByProgramControllerResponse, AcaClassPrgBranchResponse };
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.AcaClassPrgBranchToggleLockPayload = exports.AcaClassPrgBranchToggleStatusPayload = exports.AcaClassPrgBranchInsertUpdatePayload = exports.AcaClassPrgBranchDeletePayload = exports.AcaClassPrgBranchGetByIdPayload = exports.AcaClassPrgBranchListPayload = void 0;
|
|
3
|
+
exports.AcaClassPrgBranchResponse = exports.AcaClassPrgBranchToggleLockPayload = exports.AcaClassPrgBranchToggleStatusPayload = exports.AcaClassPrgBranchInsertUpdatePayload = exports.AcaClassPrgBranchDeletePayload = exports.AcaClassPrgBranchGetByIdPayload = exports.AcaClassPrgBranchListPayload = void 0;
|
|
4
4
|
const common_1 = require("../../common-types/common");
|
|
5
5
|
const schema_1 = require("../../schema");
|
|
6
6
|
/* INTERFACE END */
|
|
@@ -72,6 +72,9 @@ class AcaClassPrgBranchToggleLockPayload {
|
|
|
72
72
|
}
|
|
73
73
|
}
|
|
74
74
|
exports.AcaClassPrgBranchToggleLockPayload = AcaClassPrgBranchToggleLockPayload;
|
|
75
|
+
class AcaClassPrgBranchResponse extends schema_1.AcaClassPrgBranchBase {
|
|
76
|
+
}
|
|
77
|
+
exports.AcaClassPrgBranchResponse = AcaClassPrgBranchResponse;
|
|
75
78
|
class AcaClassPrgBranchInsertUpdatePayload extends schema_1.AcaClassPrgBranch {
|
|
76
79
|
constructor(init) {
|
|
77
80
|
super();
|
|
@@ -56,6 +56,10 @@ interface AcaClassProgramTermReponse extends AcaClassProgramTermBase {
|
|
|
56
56
|
_id?: string;
|
|
57
57
|
acapt_name?: string;
|
|
58
58
|
};
|
|
59
|
+
acapt_class_prg_branch_acabrn?: {
|
|
60
|
+
_id?: string;
|
|
61
|
+
acabrn_name?: string;
|
|
62
|
+
};
|
|
59
63
|
}
|
|
60
64
|
interface classProgramTermControllerResponse extends controllerResponse {
|
|
61
65
|
data?: AcaClassProgramTermReponse[];
|
|
@@ -1,10 +1,13 @@
|
|
|
1
|
-
declare class
|
|
1
|
+
declare class AcaClassPrgBranchBase {
|
|
2
2
|
_id?: string;
|
|
3
|
-
acabrn_class_program_id_acacpm?: string;
|
|
4
3
|
acabrn_name?: string;
|
|
5
4
|
acabrn_code?: string;
|
|
6
5
|
acabrn_sequence?: number;
|
|
7
6
|
acabrn_isactive?: boolean;
|
|
8
7
|
acabrn_islocked?: boolean;
|
|
9
8
|
}
|
|
10
|
-
|
|
9
|
+
declare class AcaClassPrgBranch extends AcaClassPrgBranchBase {
|
|
10
|
+
acabrn_class_program_id_acacpm?: string;
|
|
11
|
+
}
|
|
12
|
+
export { AcaClassPrgBranchBase, // interface
|
|
13
|
+
AcaClassPrgBranch };
|
|
@@ -1,6 +1,9 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.AcaClassPrgBranch = void 0;
|
|
4
|
-
class
|
|
3
|
+
exports.AcaClassPrgBranch = exports.AcaClassPrgBranchBase = void 0;
|
|
4
|
+
class AcaClassPrgBranchBase {
|
|
5
|
+
}
|
|
6
|
+
exports.AcaClassPrgBranchBase = AcaClassPrgBranchBase;
|
|
7
|
+
class AcaClassPrgBranch extends AcaClassPrgBranchBase {
|
|
5
8
|
}
|
|
6
9
|
exports.AcaClassPrgBranch = AcaClassPrgBranch;
|
|
@@ -11,6 +11,7 @@ declare class AcaClassProgramTermBase {
|
|
|
11
11
|
declare class AcaClassProgramTerm extends AcaClassProgramTermBase {
|
|
12
12
|
acapt_class_program_id_acacpm?: string;
|
|
13
13
|
acapt_parent_class_prog_term_acapt?: string;
|
|
14
|
+
acapt_class_prg_branch_acabrn?: string;
|
|
14
15
|
}
|
|
15
16
|
export { AcaClassProgramTermBase, // interface
|
|
16
17
|
AcaClassProgramTerm };
|