cloud-ide-lms-model 1.1.26 → 1.1.30

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.
@@ -32,5 +32,9 @@ declare const academicsRoutesUrl: {
32
32
  * Endpoint to manage bonafide requests (bonafide/request)
33
33
  */
34
34
  bonafide: string;
35
+ /**
36
+ * Endpoint to get education board (education-board)
37
+ */
38
+ educationBoard: string;
35
39
  };
36
40
  export { academicsRoutesUrl };
@@ -35,6 +35,10 @@ const academicsRoutesUrl = {
35
35
  * Endpoint to manage bonafide requests (bonafide/request)
36
36
  */
37
37
  bonafide: "bonafide/request",
38
+ /**
39
+ * Endpoint to get education board (education-board)
40
+ */
41
+ educationBoard: "education-board"
38
42
  };
39
43
  exports.academicsRoutesUrl = academicsRoutesUrl;
40
44
  // Freeze the authRoutesUrl object to prevent modifications
@@ -137,5 +137,9 @@ declare const coreRoutesUrl: {
137
137
  * @description Endpoint to get workflow status (workflow/status)
138
138
  */
139
139
  workflowStatus: string;
140
+ /**
141
+ * @description Endpoint to manage school board affiliation (school-board-affiliation)
142
+ */
143
+ schoolBoardAffiliation: string;
140
144
  };
141
145
  export { coreRoutesUrl };
@@ -140,6 +140,10 @@ const coreRoutesUrl = {
140
140
  * @description Endpoint to get workflow status (workflow/status)
141
141
  */
142
142
  workflowStatus: "workflow/status",
143
+ /**
144
+ * @description Endpoint to manage school board affiliation (school-board-affiliation)
145
+ */
146
+ schoolBoardAffiliation: "school-board-affiliation",
143
147
  };
144
148
  exports.coreRoutesUrl = coreRoutesUrl;
145
149
  Object.freeze(coreRoutesUrl);
@@ -7,6 +7,7 @@ declare class AcaClassProgramMaster extends AcaClassProgramMasterBase {
7
7
  acacpm_class_program_id_sygms?: string;
8
8
  acacpm_academic_year_id_acayr?: string;
9
9
  acacpm_entity_id_syen?: string;
10
+ acacpm_education_board_id_edbrd?: string;
10
11
  }
11
12
  export { AcaClassProgramMasterBase, // interface
12
13
  AcaClassProgramMaster };
@@ -6,7 +6,7 @@ declare class CoreSchoolBoardAffiliation {
6
6
  scbaf_affiliation_date?: Date;
7
7
  scbaf_affiliation_expiry_date?: Date;
8
8
  scbaf_affiliation_status_sygms?: string;
9
- scbaf_affiliation_levels?: string[];
9
+ scbaf_affiliation_level_multi_sygms?: string[];
10
10
  scbaf_affiliation_subjects?: string[];
11
11
  scbaf_isprimary?: boolean;
12
12
  scbaf_isactive?: boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cloud-ide-lms-model",
3
- "version": "1.1.26",
3
+ "version": "1.1.30",
4
4
  "description": "Package for Model management of Cloud IDEsys LMS",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",