cloud-ide-lms-model 1.1.25 → 1.1.28
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.
|
@@ -38,7 +38,7 @@ interface admissionApplicationMainInsertUpdateControllerResponse extends control
|
|
|
38
38
|
interface admissionApplicationByIdControllerResponse extends controllerResponse {
|
|
39
39
|
data?: AdmissionApplicationResponse;
|
|
40
40
|
}
|
|
41
|
-
type AdmissionApplicationListResponse = Omit<AdmissionApplicationMain, 'admap_entity_id_syen' | 'admap_academic_year_id_acayr' | 'admap_gender_id_sygms' | 'admap_citizenship_status_id_sygms' | 'admap_program_category_id_sygms' | 'admap_application_status_id_sygms' | 'admap_nationality_id_synat'
|
|
41
|
+
type AdmissionApplicationListResponse = Omit<AdmissionApplicationMain, 'admap_entity_id_syen' | 'admap_academic_year_id_acayr' | 'admap_gender_id_sygms' | 'admap_citizenship_status_id_sygms' | 'admap_program_category_id_sygms' | 'admap_application_status_id_sygms' | 'admap_nationality_id_synat'> & {
|
|
42
42
|
admap_entity_id_syen?: {
|
|
43
43
|
_id: string;
|
|
44
44
|
syen_name?: string;
|
|
@@ -71,14 +71,8 @@ type AdmissionApplicationListResponse = Omit<AdmissionApplicationMain, 'admap_en
|
|
|
71
71
|
_id: string;
|
|
72
72
|
synat_nationality_name?: string;
|
|
73
73
|
} | string;
|
|
74
|
-
admap_pin_sypin?: {
|
|
75
|
-
_id: string;
|
|
76
|
-
sypin_pincode?: number;
|
|
77
|
-
sypin_city?: string;
|
|
78
|
-
sypin_state?: string;
|
|
79
|
-
} | string;
|
|
80
74
|
};
|
|
81
|
-
type AdmissionApplicationResponse = Omit<AdmissionApplicationMain, 'admap_entity_id_syen' | 'admap_academic_year_id_acayr' | 'admap_gender_id_sygms' | 'admap_citizenship_status_id_sygms' | 'admap_program_category_id_sygms' | 'admap_application_status_id_sygms' | 'admap_nationality_id_synat' | '
|
|
75
|
+
type AdmissionApplicationResponse = Omit<AdmissionApplicationMain, 'admap_entity_id_syen' | 'admap_academic_year_id_acayr' | 'admap_gender_id_sygms' | 'admap_citizenship_status_id_sygms' | 'admap_program_category_id_sygms' | 'admap_application_status_id_sygms' | 'admap_nationality_id_synat' | 'admap_blood_group_id_sygms' | 'admap_class_program_id_acacpm' | 'admap_class_program_term_id_acapt' | 'admap_class_program_branch_id_acabrn'> & {
|
|
82
76
|
admap_entity_id_syen?: {
|
|
83
77
|
_id: string;
|
|
84
78
|
syen_name?: string;
|
|
@@ -113,12 +107,6 @@ type AdmissionApplicationResponse = Omit<AdmissionApplicationMain, 'admap_entity
|
|
|
113
107
|
_id: string;
|
|
114
108
|
synat_nationality_name?: string;
|
|
115
109
|
} | string | null;
|
|
116
|
-
admap_pin_sypin?: {
|
|
117
|
-
_id: string;
|
|
118
|
-
sypin_pincode?: number;
|
|
119
|
-
sypin_city?: string;
|
|
120
|
-
sypin_state?: string;
|
|
121
|
-
} | string | null;
|
|
122
110
|
admap_blood_group_id_sygms?: {
|
|
123
111
|
_id: string;
|
|
124
112
|
sygms_title?: string;
|
|
@@ -140,9 +128,6 @@ type AdmissionApplicationResponse = Omit<AdmissionApplicationMain, 'admap_entity
|
|
|
140
128
|
acabrn_name?: string;
|
|
141
129
|
acabrn_code?: string;
|
|
142
130
|
} | string | null;
|
|
143
|
-
admap_country_telephone_code_syctr?: string | null;
|
|
144
|
-
admap_country_syctr?: string | null;
|
|
145
|
-
admap_correspondence_country_syctr?: string | null;
|
|
146
131
|
};
|
|
147
132
|
/**
|
|
148
133
|
* Convert admission application to student payload
|
|
@@ -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
|