cloud-ide-lms-model 1.0.319 → 1.0.320
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/schema/admission/admission_application_main.d.ts +12 -13
- package/lib/schema/collection_names.d.ts +1 -0
- package/lib/schema/collection_names.js +1 -0
- package/lib/schema/core/core_system_nationality.d.ts +18 -0
- package/lib/schema/core/core_system_nationality.js +2 -0
- package/lib/schema/core/index.d.ts +1 -0
- package/lib/schema/core/index.js +1 -0
- package/package.json +1 -1
|
@@ -8,33 +8,32 @@ declare class AdmissionApplicationMain {
|
|
|
8
8
|
admap_preferred_name?: string;
|
|
9
9
|
admap_date_of_birth?: Date;
|
|
10
10
|
admap_place_of_birth?: string;
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
admap_national_id?: string;
|
|
11
|
+
admap_gender_id_sygms?: string;
|
|
12
|
+
admap_citizenship_status_id_sygms?: string;
|
|
13
|
+
admap_nationality_id_synat?: string;
|
|
15
14
|
admap_passport_number?: string;
|
|
16
15
|
admap_passport_expiry_date?: Date;
|
|
17
16
|
admap_visa_status?: string;
|
|
18
17
|
admap_marital_status?: string;
|
|
19
|
-
|
|
18
|
+
admap_blood_group_id_sygms?: string;
|
|
20
19
|
admap_photo_id_cyfm?: string;
|
|
21
20
|
admap_primary_email?: string;
|
|
22
21
|
admap_alternative_email?: string;
|
|
23
22
|
admap_mobile_phone?: string;
|
|
24
|
-
|
|
23
|
+
admap_country_telephone_code_syctr?: string;
|
|
25
24
|
admap_alternative_phone?: string;
|
|
26
25
|
admap_permanent_street_address?: string;
|
|
27
|
-
|
|
28
|
-
|
|
26
|
+
admap_city_sypin?: string;
|
|
27
|
+
admap_state_sypin?: string;
|
|
29
28
|
admap_zip_postal_code?: string;
|
|
30
|
-
|
|
29
|
+
admap_country_syctr?: string;
|
|
31
30
|
admap_correspondence_address_same?: boolean;
|
|
32
31
|
admap_correspondence_street_address?: string;
|
|
33
|
-
|
|
34
|
-
|
|
32
|
+
admap_correspondence_city_sypin?: string;
|
|
33
|
+
admap_correspondence_state_sypin?: string;
|
|
35
34
|
admap_correspondence_zip_postal_code?: string;
|
|
36
|
-
|
|
37
|
-
|
|
35
|
+
admap_correspondence_country_syctr?: string;
|
|
36
|
+
admap_pin_sypin?: string;
|
|
38
37
|
admap_program_applying_for?: string;
|
|
39
38
|
admap_program_category?: string;
|
|
40
39
|
admap_grade_level_applying_for?: string;
|
|
@@ -37,6 +37,7 @@ const COLLECTIONS = {
|
|
|
37
37
|
core_pin_code: "core_pin_code",
|
|
38
38
|
core_system_config: "core_system_config",
|
|
39
39
|
core_system_country: "core_system_country",
|
|
40
|
+
core_system_nationality: "core_system_nationality",
|
|
40
41
|
core_system_entity: "core_system_entity",
|
|
41
42
|
core_system_logs: "core_system_logs",
|
|
42
43
|
core_system_menu: "core_system_menu",
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
interface ICoreSynat {
|
|
2
|
+
_id?: string;
|
|
3
|
+
synat_nationality_code?: string;
|
|
4
|
+
synat_nationality_name?: string;
|
|
5
|
+
synat_nationality_official_name?: string;
|
|
6
|
+
synat_is_group?: boolean;
|
|
7
|
+
synat_parent_nationality_id_synat?: string;
|
|
8
|
+
synat_country_id_syctr?: string;
|
|
9
|
+
synat_is_primary_for_country?: boolean;
|
|
10
|
+
synat_description?: string;
|
|
11
|
+
synat_demonym?: string;
|
|
12
|
+
synat_iso_code?: string;
|
|
13
|
+
synat_display_order?: number;
|
|
14
|
+
synat_isactive?: boolean;
|
|
15
|
+
synat_entity_id_syen?: string;
|
|
16
|
+
synat_configuration?: Record<string, any>;
|
|
17
|
+
}
|
|
18
|
+
export { ICoreSynat };
|
|
@@ -14,6 +14,7 @@ export * from './core_general_master_type';
|
|
|
14
14
|
export * from './core_entity_mapping';
|
|
15
15
|
export * from './core_file_manager';
|
|
16
16
|
export * from './core_system_country';
|
|
17
|
+
export * from './core_system_nationality';
|
|
17
18
|
export * from './core_language';
|
|
18
19
|
export * from './core_system_theme_user_preferences';
|
|
19
20
|
export * from './core_system_themes';
|
package/lib/schema/core/index.js
CHANGED
|
@@ -30,6 +30,7 @@ __exportStar(require("./core_general_master_type"), exports);
|
|
|
30
30
|
__exportStar(require("./core_entity_mapping"), exports);
|
|
31
31
|
__exportStar(require("./core_file_manager"), exports);
|
|
32
32
|
__exportStar(require("./core_system_country"), exports);
|
|
33
|
+
__exportStar(require("./core_system_nationality"), exports);
|
|
33
34
|
__exportStar(require("./core_language"), exports);
|
|
34
35
|
__exportStar(require("./core_system_theme_user_preferences"), exports);
|
|
35
36
|
__exportStar(require("./core_system_themes"), exports);
|