cloud-ide-lms-model 1.0.247 → 1.0.249
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.
|
@@ -12,5 +12,17 @@ declare const academicsRoutesUrl: {
|
|
|
12
12
|
* Endpoint to get academic year mapping (academic-year-mapping)
|
|
13
13
|
*/
|
|
14
14
|
academicYearMapping: string;
|
|
15
|
+
/**
|
|
16
|
+
* Endpoint to get class program master (class-program-master)
|
|
17
|
+
*/
|
|
18
|
+
classProgramMaster: string;
|
|
19
|
+
/**
|
|
20
|
+
* Endpoint to get class program term (class-program-term)
|
|
21
|
+
*/
|
|
22
|
+
classProgramTerm: string;
|
|
23
|
+
/**
|
|
24
|
+
* Endpoint to get program term section (program-term-section)
|
|
25
|
+
*/
|
|
26
|
+
programTermSection: string;
|
|
15
27
|
};
|
|
16
28
|
export { academicsRoutesUrl };
|
|
@@ -15,6 +15,18 @@ const academicsRoutesUrl = {
|
|
|
15
15
|
* Endpoint to get academic year mapping (academic-year-mapping)
|
|
16
16
|
*/
|
|
17
17
|
academicYearMapping: "academic-year-mapping",
|
|
18
|
+
/**
|
|
19
|
+
* Endpoint to get class program master (class-program-master)
|
|
20
|
+
*/
|
|
21
|
+
classProgramMaster: "class-program-master",
|
|
22
|
+
/**
|
|
23
|
+
* Endpoint to get class program term (class-program-term)
|
|
24
|
+
*/
|
|
25
|
+
classProgramTerm: "class-program-term",
|
|
26
|
+
/**
|
|
27
|
+
* Endpoint to get program term section (program-term-section)
|
|
28
|
+
*/
|
|
29
|
+
programTermSection: "program-term-section"
|
|
18
30
|
};
|
|
19
31
|
exports.academicsRoutesUrl = academicsRoutesUrl;
|
|
20
32
|
// Freeze the authRoutesUrl object to prevent modifications
|