cloud-ide-lms-model 1.1.30 → 1.1.34

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.
@@ -0,0 +1,49 @@
1
+ import { ICoreSygms } from "../../schema/core/core_general_master";
2
+ import { ICoreSyctr } from "../../schema/core/core_system_country";
3
+ import { controllerResponse } from "../../utilities";
4
+ /**
5
+ * @description Education Board interface
6
+ */
7
+ export interface EducationBoard {
8
+ _id?: string;
9
+ edbrd_code: string;
10
+ edbrd_name: string;
11
+ edbrd_short_name: string;
12
+ edbrd_state?: string;
13
+ edbrd_isactive: boolean;
14
+ edbrd_website?: string;
15
+ edbrd_contact_email?: string;
16
+ edbrd_contact_phone?: string;
17
+ edbrd_address?: string;
18
+ edbrd_pin_sypin?: string | any;
19
+ edbrd_city_sypin?: string;
20
+ edbrd_state_sypin?: string;
21
+ edbrd_country_id_syctr?: string | ICoreSyctr;
22
+ edbrd_udise_format?: string;
23
+ edbrd_affiliation_format?: string;
24
+ edbrd_roll_number_format?: string;
25
+ edbrd_registration_number_format?: string;
26
+ edbrd_grade_scale?: string;
27
+ edbrd_type_sygms?: string | ICoreSygms;
28
+ edbrd_category_sygms?: string | ICoreSygms;
29
+ }
30
+ /**
31
+ * @description Education Board Search Parameters
32
+ */
33
+ export interface EducationBoardSearchParams {
34
+ q?: string;
35
+ page?: number;
36
+ limit?: number;
37
+ sort?: string;
38
+ order?: string;
39
+ [key: string]: any;
40
+ }
41
+ export interface educationBoardListControllerResponse extends controllerResponse {
42
+ data?: EducationBoard[];
43
+ }
44
+ export interface educationBoardByIdControllerResponse extends controllerResponse {
45
+ data?: EducationBoard;
46
+ }
47
+ export interface educationBoardDeleteControllerResponse extends controllerResponse {
48
+ data?: boolean;
49
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -5,3 +5,4 @@ export * from "./aca_class_program_term";
5
5
  export * from "./aca_prg_trm_section";
6
6
  export * from "./aca_class_prg_branch";
7
7
  export * from "./academics_bonafide_request";
8
+ export * from "./aca_education_board";
@@ -21,3 +21,4 @@ __exportStar(require("./aca_class_program_term"), exports);
21
21
  __exportStar(require("./aca_prg_trm_section"), exports);
22
22
  __exportStar(require("./aca_class_prg_branch"), exports);
23
23
  __exportStar(require("./academics_bonafide_request"), exports);
24
+ __exportStar(require("./aca_education_board"), exports);
@@ -1,5 +1,4 @@
1
1
  export * from './admission_contact_addresses';
2
- export * from './admission_family_members';
3
2
  export * from './admission_application_main';
4
3
  export * from './admission_elective_detail';
5
4
  export * from './admission_confirmation_types';
@@ -15,7 +15,6 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
15
15
  };
16
16
  Object.defineProperty(exports, "__esModule", { value: true });
17
17
  __exportStar(require("./admission_contact_addresses"), exports);
18
- __exportStar(require("./admission_family_members"), exports);
19
18
  __exportStar(require("./admission_application_main"), exports);
20
19
  __exportStar(require("./admission_elective_detail"), exports);
21
20
  __exportStar(require("./admission_confirmation_types"), exports);
@@ -16,7 +16,7 @@ type AuthUserMstCreateErrorLogger = {
16
16
  [key in keyof AuthUserMstCreatePayload]: string;
17
17
  };
18
18
  declare class AuthUserMstListPayload extends MTableQueries {
19
- syenm_entity_id_syen?: string;
19
+ syenm_entity_id_syen: string;
20
20
  syutm_user_type?: string;
21
21
  syutm_user_type_nin?: string[];
22
22
  syutm_user_type_in?: string[];
@@ -8,8 +8,6 @@ declare const admissionRoutesUrl: {
8
8
  admissionApplications: string;
9
9
  /** Endpoint to manage contact addresses (contact-addresses) */
10
10
  contactAddresses: string;
11
- /** Endpoint to manage family members (family-members) */
12
- familyMembers: string;
13
11
  /** Endpoint to manage elective details (elective-details) */
14
12
  electiveDetails: string;
15
13
  /** Endpoint to manage RTE details (rte-details) */
@@ -11,8 +11,6 @@ const admissionRoutesUrl = {
11
11
  admissionApplications: "admission-applications",
12
12
  /** Endpoint to manage contact addresses (contact-addresses) */
13
13
  contactAddresses: "contact-addresses",
14
- /** Endpoint to manage family members (family-members) */
15
- familyMembers: "family-members",
16
14
  /** Endpoint to manage elective details (elective-details) */
17
15
  electiveDetails: "elective-details",
18
16
  /** Endpoint to manage RTE details (rte-details) */
@@ -0,0 +1,27 @@
1
+ import { ICoreSygms, ICoreSyctr, ICoreSypin } from "../core";
2
+ declare class AcademicsEducationBoard {
3
+ _id?: string;
4
+ edbrd_code?: string;
5
+ edbrd_name?: string;
6
+ edbrd_short_name?: string;
7
+ edbrd_type_sygms?: string | ICoreSygms;
8
+ edbrd_category_sygms?: string | ICoreSygms;
9
+ edbrd_state?: string;
10
+ edbrd_country_id_syctr?: string | ICoreSyctr;
11
+ edbrd_website?: string;
12
+ edbrd_contact_email?: string;
13
+ edbrd_contact_phone?: string;
14
+ edbrd_address?: string;
15
+ edbrd_pin_sypin?: string | ICoreSypin;
16
+ edbrd_city_sypin?: string;
17
+ edbrd_state_sypin?: string;
18
+ edbrd_udise_format_sygms?: string | ICoreSygms;
19
+ edbrd_affiliation_format_sygms?: string | ICoreSygms;
20
+ edbrd_roll_number_format_sygms?: string | ICoreSygms;
21
+ edbrd_registration_number_format_sygms?: string | ICoreSygms;
22
+ edbrd_grading_system_sygms?: string | ICoreSygms;
23
+ edbrd_grade_scale_sygms?: string | ICoreSygms;
24
+ edbrd_configuration?: any;
25
+ edbrd_isactive?: boolean;
26
+ }
27
+ export { AcademicsEducationBoard };
@@ -0,0 +1,7 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.AcademicsEducationBoard = void 0;
4
+ /* INTERFACE START */
5
+ class AcademicsEducationBoard {
6
+ }
7
+ exports.AcademicsEducationBoard = AcademicsEducationBoard;
@@ -4,4 +4,5 @@ export * from './aca_class_program_master';
4
4
  export * from './aca_class_program_term';
5
5
  export * from './aca_prg_trm_section';
6
6
  export * from './aca_class_prg_branch';
7
+ export * from './academics_education_board';
7
8
  export * from './academics_bonafide_request';
@@ -20,4 +20,5 @@ __exportStar(require("./aca_class_program_master"), exports);
20
20
  __exportStar(require("./aca_class_program_term"), exports);
21
21
  __exportStar(require("./aca_prg_trm_section"), exports);
22
22
  __exportStar(require("./aca_class_prg_branch"), exports);
23
+ __exportStar(require("./academics_education_board"), exports);
23
24
  __exportStar(require("./academics_bonafide_request"), exports);
@@ -88,26 +88,14 @@ declare class AdmissionApplicationMain {
88
88
  admap_previous_board_character_certificate_id_cyfm?: string;
89
89
  admap_current_school_board_id_edbrd?: string;
90
90
  admap_applying_for_board_id_edbrd?: string;
91
- admap_emergency_contact_name?: string;
92
- admap_emergency_contact_relationship_id_sygms?: string;
93
- admap_emergency_contact_phone?: string;
94
- admap_emergency_contact_country_code?: string;
95
- admap_authorized_pick_up_list?: string;
96
91
  admap_parent_volunteer_interest?: boolean;
97
- admap_language_spoken_at_home?: string;
98
- admap_sibling_information?: string;
99
- admap_transportation_method_id_sygms?: string;
100
- admap_bus_route_number?: string;
101
- admap_after_school_care_required?: boolean;
102
- admap_after_school_care_provider?: string;
103
- admap_early_drop_off_required?: boolean;
104
- admap_late_pick_up_required?: boolean;
105
92
  admap_custody_documentation_status?: boolean;
106
93
  admap_tuition_payer_name?: string;
107
94
  admap_tuition_payer_relationship?: string;
108
95
  admap_billing_email_address?: string;
109
96
  admap_billing_address?: string;
110
97
  admap_intended_payment_method?: string;
98
+ admap_intended_payment_method_id_sygms?: string;
111
99
  admap_application_fee_payment_status?: boolean;
112
100
  admap_application_fee_amount?: number;
113
101
  admap_application_fee_payment_date?: Date;
@@ -3,7 +3,6 @@ export * from './admission_elective_detail';
3
3
  export * from './admission_status_history';
4
4
  export * from './admission_document_uploads';
5
5
  export * from './admission_contact_addresses';
6
- export * from './admission_family_members';
7
6
  export * from './admission_fee_snapshot';
8
7
  export * from './admission_rte_details';
9
8
  export * from './admission_vital_information';
@@ -19,7 +19,6 @@ __exportStar(require("./admission_elective_detail"), exports);
19
19
  __exportStar(require("./admission_status_history"), exports);
20
20
  __exportStar(require("./admission_document_uploads"), exports);
21
21
  __exportStar(require("./admission_contact_addresses"), exports);
22
- __exportStar(require("./admission_family_members"), exports);
23
22
  __exportStar(require("./admission_fee_snapshot"), exports);
24
23
  __exportStar(require("./admission_rte_details"), exports);
25
24
  __exportStar(require("./admission_vital_information"), exports);
@@ -5,6 +5,7 @@ declare const COLLECTIONS: {
5
5
  aca_class_program_term: string;
6
6
  aca_class_prg_branch: string;
7
7
  aca_prg_trm_section: string;
8
+ academics_education_board: string;
8
9
  acc_financial_year: string;
9
10
  acc_financial_year_mapping: string;
10
11
  acc_financial_config: string;
@@ -50,7 +51,6 @@ declare const COLLECTIONS: {
50
51
  core_user_role: string;
51
52
  core_user_role_exceptions: string;
52
53
  core_user_role_rights: string;
53
- core_education_board: string;
54
54
  core_school_board_affiliation: string;
55
55
  core_entity_udise: string;
56
56
  core_board_exam_pattern: string;
@@ -9,6 +9,7 @@ const COLLECTIONS = {
9
9
  aca_class_program_term: "aca_class_program_term",
10
10
  aca_class_prg_branch: "aca_class_prg_branch",
11
11
  aca_prg_trm_section: "aca_prg_trm_section",
12
+ academics_education_board: "academics_education_board",
12
13
  // A - Account Collections
13
14
  acc_financial_year: "acc_financial_year",
14
15
  acc_financial_year_mapping: "acc_financial_year_mapping",
@@ -57,7 +58,6 @@ const COLLECTIONS = {
57
58
  core_user_role: "core_user_role",
58
59
  core_user_role_exceptions: "core_user_role_exceptions",
59
60
  core_user_role_rights: "core_user_role_rights",
60
- core_education_board: "core_education_board",
61
61
  core_school_board_affiliation: "core_school_board_affiliation",
62
62
  core_entity_udise: "core_entity_udise",
63
63
  core_board_exam_pattern: "core_board_exam_pattern",
@@ -11,6 +11,9 @@ declare class CoreEducationBoard {
11
11
  edbrd_contact_email?: string;
12
12
  edbrd_contact_phone?: string;
13
13
  edbrd_address?: string;
14
+ edbrd_pin_sypin?: string;
15
+ edbrd_city_sypin?: string;
16
+ edbrd_state_sypin?: string;
14
17
  edbrd_udise_format?: string;
15
18
  edbrd_affiliation_format?: string;
16
19
  edbrd_roll_number_format?: string;
@@ -6,11 +6,11 @@ declare class ICoreCyfm {
6
6
  cyfm_size_in_byte?: number;
7
7
  cyfm_type?: string;
8
8
  cyfm_creation_dt?: string;
9
- cyfm_id_user?: string;
9
+ cyfm_id_user?: string | null;
10
10
  cyfm_permissions?: [];
11
11
  cyfm_tags?: string[];
12
12
  cyfm_version?: number;
13
- cyfm_file_status_sygmt?: string;
13
+ cyfm_file_status_sygmt?: string | null;
14
14
  cyfm_group_id?: string | null;
15
15
  cyfm_ismultiple?: boolean;
16
16
  cyfm_isactive?: boolean;
@@ -33,7 +33,6 @@ export * from './core_user_role';
33
33
  export * from './core_user_role_rights';
34
34
  export * from './core_entity_access_pass_management';
35
35
  export * from './core_user_role_exceptions';
36
- export * from './core_education_board';
37
36
  export * from './core_entity_udise';
38
37
  export * from './core_board_exam_pattern';
39
38
  export * from './core_board_grade_system';
@@ -49,7 +49,6 @@ __exportStar(require("./core_user_role"), exports);
49
49
  __exportStar(require("./core_user_role_rights"), exports);
50
50
  __exportStar(require("./core_entity_access_pass_management"), exports);
51
51
  __exportStar(require("./core_user_role_exceptions"), exports);
52
- __exportStar(require("./core_education_board"), exports);
53
52
  __exportStar(require("./core_entity_udise"), exports);
54
53
  __exportStar(require("./core_board_exam_pattern"), exports);
55
54
  __exportStar(require("./core_board_grade_system"), exports);
@@ -1,10 +1,10 @@
1
1
  import { MErrorLoggerHelper } from "./error.helper";
2
2
  import { statusCode } from "./type.hepler";
3
- interface controllerResponse {
3
+ interface controllerResponse<T = any> {
4
4
  success?: boolean;
5
5
  error_code?: string;
6
6
  message?: string;
7
- data?: any;
7
+ data?: T;
8
8
  code?: statusCode;
9
9
  action?: string;
10
10
  total?: number;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cloud-ide-lms-model",
3
- "version": "1.1.30",
3
+ "version": "1.1.34",
4
4
  "description": "Package for Model management of Cloud IDEsys LMS",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",