cloud-ide-lms-model 1.0.341 → 1.0.348

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.
@@ -33,10 +33,10 @@ interface admissionApplicationMainControllerResponse extends controllerResponse
33
33
  totalDocument?: number;
34
34
  }
35
35
  interface admissionApplicationMainInsertUpdateControllerResponse extends controllerResponse {
36
- data?: AdmissionApplicationMain;
36
+ data?: AdmissionApplicationResponse;
37
37
  }
38
38
  interface admissionApplicationByIdControllerResponse extends controllerResponse {
39
- data?: AdmissionApplicationMain;
39
+ data?: AdmissionApplicationResponse;
40
40
  }
41
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' | 'admap_pin_sypin'> & {
42
42
  admap_entity_id_syen?: {
@@ -78,45 +78,71 @@ type AdmissionApplicationListResponse = Omit<AdmissionApplicationMain, 'admap_en
78
78
  sypin_state?: string;
79
79
  } | string;
80
80
  };
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' | 'admap_pin_sypin'> & {
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' | 'admap_pin_sypin' | 'admap_blood_group_id_sygms' | 'admap_class_program_id_acacpm' | 'admap_class_program_term_id_acapt' | 'admap_class_program_branch_id_acabrn' | 'admap_country_telephone_code_syctr' | 'admap_country_syctr' | 'admap_correspondence_country_syctr'> & {
82
82
  admap_entity_id_syen?: {
83
83
  _id: string;
84
84
  syen_name?: string;
85
- } | string;
85
+ } | string | null;
86
86
  admap_academic_year_id_acayr?: {
87
87
  _id: string;
88
88
  acayr_name?: string;
89
- } | string;
89
+ acayr_code?: string;
90
+ acayr_title?: string;
91
+ } | string | null;
90
92
  admap_gender_id_sygms?: {
91
93
  _id: string;
92
94
  sygms_title?: string;
93
95
  sygms_code?: string;
94
- } | string;
96
+ } | string | null;
95
97
  admap_citizenship_status_id_sygms?: {
96
98
  _id: string;
97
99
  sygms_title?: string;
98
100
  sygms_code?: string;
99
- } | string;
101
+ } | string | null;
100
102
  admap_program_category_id_sygms?: {
101
103
  _id: string;
102
104
  sygms_title?: string;
103
105
  sygms_code?: string;
104
- } | string;
106
+ } | string | null;
105
107
  admap_application_status_id_sygms?: {
106
108
  _id: string;
107
109
  sygms_title?: string;
108
110
  sygms_code?: string;
109
- } | string;
111
+ } | string | null;
110
112
  admap_nationality_id_synat?: {
111
113
  _id: string;
112
114
  synat_nationality_name?: string;
113
- } | string;
115
+ } | string | null;
114
116
  admap_pin_sypin?: {
115
117
  _id: string;
116
118
  sypin_pincode?: number;
117
119
  sypin_city?: string;
118
120
  sypin_state?: string;
119
- } | string;
121
+ } | string | null;
122
+ admap_blood_group_id_sygms?: {
123
+ _id: string;
124
+ sygms_title?: string;
125
+ sygms_code?: string;
126
+ } | string | null;
127
+ admap_class_program_id_acacpm?: {
128
+ _id: string;
129
+ acacpm_alise_title?: string;
130
+ acacpm_name?: string;
131
+ acacpm_title?: string;
132
+ } | string | null;
133
+ admap_class_program_term_id_acapt?: {
134
+ _id: string;
135
+ acapt_name?: string;
136
+ acapt_code?: string;
137
+ } | string | null;
138
+ admap_class_program_branch_id_acabrn?: {
139
+ _id: string;
140
+ acabrn_name?: string;
141
+ acabrn_code?: string;
142
+ } | string | null;
143
+ admap_country_telephone_code_syctr?: string | null;
144
+ admap_country_syctr?: string | null;
145
+ admap_correspondence_country_syctr?: string | null;
120
146
  };
121
147
  /**
122
148
  * Convert admission application to student payload
@@ -0,0 +1,80 @@
1
+ /**
2
+ * Admission Confirmation Types
3
+ * Purpose: Type definitions for admission confirmation functionality
4
+ */
5
+ import { FeeStructure } from '../../schema/fees/fee_structure';
6
+ /**
7
+ * Fee structure item with populated fields for admission confirmation
8
+ */
9
+ export interface AdmissionConfirmationFeeItem extends FeeStructure {
10
+ fees_structure_name?: string;
11
+ fees_category_name?: string;
12
+ fees_total_amount?: number;
13
+ fees_amount?: number;
14
+ }
15
+ /**
16
+ * Helper type for extracting ID from populated or string fields
17
+ */
18
+ export type PopulatedField<T> = T | {
19
+ _id: string;
20
+ [key: string]: unknown;
21
+ } | null | undefined;
22
+ /**
23
+ * Helper type for general master populated fields
24
+ */
25
+ export interface PopulatedGeneralMaster {
26
+ _id: string;
27
+ sygms_title?: string;
28
+ sygms_code?: string;
29
+ }
30
+ /**
31
+ * Helper type for class program populated fields
32
+ */
33
+ export interface PopulatedClassProgram {
34
+ _id: string;
35
+ acacpm_alise_title?: string;
36
+ acacpm_name?: string;
37
+ acacpm_title?: string;
38
+ }
39
+ /**
40
+ * Helper type for academic year populated fields
41
+ */
42
+ export interface PopulatedAcademicYear {
43
+ _id: string;
44
+ acayr_name?: string;
45
+ acayr_code?: string;
46
+ acayr_title?: string;
47
+ }
48
+ /**
49
+ * Helper type for entity populated fields
50
+ */
51
+ export interface PopulatedEntity {
52
+ _id: string;
53
+ syen_name?: string;
54
+ }
55
+ /**
56
+ * Type guard to check if a value is a populated object
57
+ */
58
+ export declare function isPopulatedObject(value: unknown): value is {
59
+ _id: string;
60
+ [key: string]: unknown;
61
+ };
62
+ /**
63
+ * Extract ID from a populated field or string
64
+ */
65
+ export declare function extractIdFromField(field: string | {
66
+ _id: string;
67
+ [key: string]: unknown;
68
+ } | null | undefined): string;
69
+ /**
70
+ * Extract title from a populated general master field
71
+ */
72
+ export declare function extractTitleFromGeneralMaster(field: string | PopulatedGeneralMaster | null | undefined): string;
73
+ /**
74
+ * Extract title from a populated class program field
75
+ */
76
+ export declare function extractTitleFromClassProgram(field: string | PopulatedClassProgram | null | undefined): string;
77
+ /**
78
+ * Extract title from a populated academic year field
79
+ */
80
+ export declare function extractTitleFromAcademicYear(field: string | PopulatedAcademicYear | null | undefined): string;
@@ -0,0 +1,70 @@
1
+ "use strict";
2
+ /**
3
+ * Admission Confirmation Types
4
+ * Purpose: Type definitions for admission confirmation functionality
5
+ */
6
+ Object.defineProperty(exports, "__esModule", { value: true });
7
+ exports.isPopulatedObject = isPopulatedObject;
8
+ exports.extractIdFromField = extractIdFromField;
9
+ exports.extractTitleFromGeneralMaster = extractTitleFromGeneralMaster;
10
+ exports.extractTitleFromClassProgram = extractTitleFromClassProgram;
11
+ exports.extractTitleFromAcademicYear = extractTitleFromAcademicYear;
12
+ /**
13
+ * Type guard to check if a value is a populated object
14
+ */
15
+ function isPopulatedObject(value) {
16
+ return typeof value === 'object' && value !== null && '_id' in value && typeof value._id === 'string';
17
+ }
18
+ /**
19
+ * Extract ID from a populated field or string
20
+ */
21
+ function extractIdFromField(field) {
22
+ if (!field)
23
+ return '';
24
+ if (typeof field === 'string')
25
+ return field;
26
+ if (isPopulatedObject(field))
27
+ return field._id;
28
+ return '';
29
+ }
30
+ /**
31
+ * Extract title from a populated general master field
32
+ */
33
+ function extractTitleFromGeneralMaster(field) {
34
+ if (!field)
35
+ return 'N/A';
36
+ if (typeof field === 'string')
37
+ return 'N/A';
38
+ if (isPopulatedObject(field)) {
39
+ return field.sygms_title || 'N/A';
40
+ }
41
+ return 'N/A';
42
+ }
43
+ /**
44
+ * Extract title from a populated class program field
45
+ */
46
+ function extractTitleFromClassProgram(field) {
47
+ if (!field)
48
+ return 'N/A';
49
+ if (typeof field === 'string')
50
+ return 'N/A';
51
+ if (isPopulatedObject(field)) {
52
+ const program = field;
53
+ return program.acacpm_alise_title || program.acacpm_name || program.acacpm_title || 'N/A';
54
+ }
55
+ return 'N/A';
56
+ }
57
+ /**
58
+ * Extract title from a populated academic year field
59
+ */
60
+ function extractTitleFromAcademicYear(field) {
61
+ if (!field)
62
+ return 'N/A';
63
+ if (typeof field === 'string')
64
+ return 'N/A';
65
+ if (isPopulatedObject(field)) {
66
+ const year = field;
67
+ return year.acayr_name || year.acayr_title || year.acayr_code || 'N/A';
68
+ }
69
+ return 'N/A';
70
+ }
@@ -6,6 +6,24 @@
6
6
  * Prefix: admca_ (admission contact addresses)
7
7
  */
8
8
  import { AdmissionContactAddressesBase, AdmissionEntityAccessPassManagementBase } from "../../schema/admission/admission_contact_addresses";
9
+ import { controllerResponse } from "../../utilities";
10
+ import { MTableQueries } from "../../common-types/common";
11
+ export interface MAdmissionContactAddressListPayload extends MTableQueries {
12
+ admca_admission_id_admap?: string;
13
+ admca_is_primary?: boolean;
14
+ admca_isactive?: boolean;
15
+ query?: string;
16
+ }
17
+ export interface MAdmissionContactAddressGetByIdPayload {
18
+ admca_id: string;
19
+ }
20
+ export interface MAdmissionContactAddressDeletePayload {
21
+ admca_id: string;
22
+ }
23
+ export interface MAdmissionContactAddressInsertUpdatePayload extends Partial<AdmissionContactAddressesBase> {
24
+ _id?: string;
25
+ admca_id?: string;
26
+ }
9
27
  /**
10
28
  * Response type with populated references
11
29
  * Using Omit to avoid type conflicts when overriding properties
@@ -39,14 +57,9 @@ type AdmissionAdmissionContactAddresses = Omit<AdmissionContactAddressesBase, 'a
39
57
  /**
40
58
  * Controller response type for list operations
41
59
  */
42
- interface admissionContactAddressesControllerResponse {
43
- success: boolean;
44
- message: string;
45
- data: AdmissionAdmissionContactAddresses[] | AdmissionAdmissionContactAddresses | null;
46
- total?: number;
47
- page?: number;
48
- pageSize?: number;
49
- error?: any;
60
+ interface admissionContactAddressesControllerResponse extends controllerResponse {
61
+ data?: AdmissionAdmissionContactAddresses[] | AdmissionAdmissionContactAddresses | null;
62
+ totalDocument?: number;
50
63
  }
51
64
  /**
52
65
  * Controller response for single operations
@@ -2,3 +2,4 @@ export * from './admission_contact_addresses';
2
2
  export * from './admission_family_members';
3
3
  export * from './admission_application_main';
4
4
  export * from './admission_elective_detail';
5
+ export * from './admission_confirmation_types';
@@ -18,3 +18,4 @@ __exportStar(require("./admission_contact_addresses"), exports);
18
18
  __exportStar(require("./admission_family_members"), exports);
19
19
  __exportStar(require("./admission_application_main"), exports);
20
20
  __exportStar(require("./admission_elective_detail"), exports);
21
+ __exportStar(require("./admission_confirmation_types"), exports);
@@ -1,6 +1,14 @@
1
1
  import { MTableQueries } from "../../common-types/common";
2
- import { FeeStructure } from "../../schema";
2
+ import { FeeStructure, FeeStructureBase } from "../../schema";
3
3
  import { controllerResponse } from "../../utilities";
4
+ import { AcaAcademicYear } from "../../schema/academics/aca_academic_year";
5
+ import { CoreSystemEntity } from "../../schema/core/core_system_entity";
6
+ import { AcaClassProgramMasterBase } from "../../schema/academics/aca_class_program_master";
7
+ import { AcaClassPrgBranchBase } from "../../schema/academics/aca_class_prg_branch";
8
+ import { AcaClassProgramTermBase } from "../../schema/academics/aca_class_program_term";
9
+ import { AcaPrgTrmSectionBase } from "../../schema/academics/aca_prg_trm_section";
10
+ import { ICoreSygms } from "../../schema/core/core_general_master";
11
+ import { AuthUserMst } from "../../schema/auth/auth_user_mst";
4
12
  type IFeeStructureErrorLogger = {
5
13
  [key in keyof MFeeStructure]: string;
6
14
  };
@@ -39,14 +47,28 @@ declare class MFeeStructureInsertUpdatePayload extends FeeStructure {
39
47
  constructor(init: FeeStructure);
40
48
  Validate?(): Partial<IFeeStructureInsertUpdateErrorLogger>;
41
49
  }
50
+ /**
51
+ * Populated Fee Structure Response
52
+ * Contains populated references for all related entities
53
+ */
54
+ interface FeeStructureResponse extends FeeStructureBase {
55
+ fees_academic_year_id_acayr?: AcaAcademicYear | string;
56
+ fees_entity_id_syen?: CoreSystemEntity | string;
57
+ fees_class_program_id_acacpm?: AcaClassProgramMasterBase | string;
58
+ fees_class_program_branch_id_acabrn?: AcaClassPrgBranchBase | string;
59
+ fees_class_program_term_id_acapt?: AcaClassProgramTermBase | string;
60
+ fees_program_term_section_id_acapts?: AcaPrgTrmSectionBase | string;
61
+ fees_student_category_id_sygms?: ICoreSygms | string;
62
+ fees_created_by_user?: AuthUserMst | string;
63
+ }
42
64
  interface feeStructureControllerResponse extends controllerResponse {
43
- data?: FeeStructure[];
65
+ data?: FeeStructureResponse[];
44
66
  }
45
67
  interface feeStructureByIdControllerResponse extends controllerResponse {
46
- data?: FeeStructure;
68
+ data?: FeeStructureResponse;
47
69
  }
48
70
  interface feeStructureInsertUpdateControllerResponse extends controllerResponse {
49
- data?: FeeStructure;
71
+ data?: FeeStructureResponse;
50
72
  }
51
73
  interface feeStructureDeleteControllerResponse extends controllerResponse {
52
74
  data?: boolean;
@@ -54,4 +76,4 @@ interface feeStructureDeleteControllerResponse extends controllerResponse {
54
76
  interface feeStructureToggleStatusControllerResponse extends controllerResponse {
55
77
  data?: boolean;
56
78
  }
57
- export { IFeeStructureErrorLogger, IFeeStructureGetByIdErrorLogger, IFeeStructureDeleteErrorLogger, IFeeStructureInsertUpdateErrorLogger, IFeeStructureToggleStatusErrorLogger, MFeeStructure, MFeeStructureGetByIdPayload, MFeeStructureDeletePayload, MFeeStructureInsertUpdatePayload, MFeeStructureToggleStatusPayload, feeStructureControllerResponse, feeStructureByIdControllerResponse, feeStructureInsertUpdateControllerResponse, feeStructureDeleteControllerResponse, feeStructureToggleStatusControllerResponse };
79
+ export { IFeeStructureErrorLogger, IFeeStructureGetByIdErrorLogger, IFeeStructureDeleteErrorLogger, IFeeStructureInsertUpdateErrorLogger, IFeeStructureToggleStatusErrorLogger, MFeeStructure, MFeeStructureGetByIdPayload, MFeeStructureDeletePayload, MFeeStructureInsertUpdatePayload, MFeeStructureToggleStatusPayload, FeeStructureResponse, feeStructureControllerResponse, feeStructureByIdControllerResponse, feeStructureInsertUpdateControllerResponse, feeStructureDeleteControllerResponse, feeStructureToggleStatusControllerResponse };
@@ -62,9 +62,7 @@ class MFeeStructureInsertUpdatePayload extends schema_1.FeeStructure {
62
62
  }
63
63
  Validate() {
64
64
  let errorLogger = {};
65
- if (!this.fees_structure_code) {
66
- errorLogger.fees_structure_code = "Fee Structure code is required!";
67
- }
65
+ // Note: fees_structure_code is optional - will be auto-generated by API if not provided
68
66
  if (!this.fees_structure_name) {
69
67
  errorLogger.fees_structure_name = "Fee Structure name is required!";
70
68
  }
@@ -80,30 +80,15 @@ declare class AdmissionApplicationMain {
80
80
  admap_previous_board_character_certificate_id_cyfm?: string;
81
81
  admap_current_school_board_id_edbrd?: string;
82
82
  admap_applying_for_board_id_edbrd?: string;
83
- admap_guardian_1_full_name?: string;
84
- admap_guardian_1_relationship?: string;
85
- admap_guardian_1_phone?: string;
86
- admap_guardian_1_country_code?: string;
87
- admap_guardian_1_email?: string;
88
- admap_guardian_1_occupation?: string;
89
- admap_guardian_1_employer?: string;
90
- admap_guardian_1_address?: string;
91
- admap_guardian_2_full_name?: string;
92
- admap_guardian_2_relationship?: string;
93
- admap_guardian_2_phone?: string;
94
- admap_guardian_2_country_code?: string;
95
- admap_guardian_2_email?: string;
96
- admap_guardian_2_occupation?: string;
97
- admap_guardian_2_employer?: string;
98
83
  admap_emergency_contact_name?: string;
99
- admap_emergency_contact_relationship?: string;
84
+ admap_emergency_contact_relationship_id_sygms?: string;
100
85
  admap_emergency_contact_phone?: string;
101
86
  admap_emergency_contact_country_code?: string;
102
87
  admap_authorized_pick_up_list?: string;
103
88
  admap_parent_volunteer_interest?: boolean;
104
89
  admap_language_spoken_at_home?: string;
105
90
  admap_sibling_information?: string;
106
- admap_transportation_method?: string;
91
+ admap_transportation_method_id_sygms?: string;
107
92
  admap_bus_route_number?: string;
108
93
  admap_after_school_care_required?: boolean;
109
94
  admap_after_school_care_provider?: string;
@@ -148,7 +133,7 @@ declare class AdmissionApplicationMain {
148
133
  admap_iep_status?: boolean;
149
134
  admap_plan_504_status?: boolean;
150
135
  admap_special_education_services?: string;
151
- admap_elective_selection_status?: string;
136
+ admap_elective_selection_status_id_sygms?: string;
152
137
  admap_counseling_notes?: string;
153
138
  admap_prerequisite_acknowledgment?: boolean;
154
139
  admap_maximum_electives_allowed?: number;
@@ -164,11 +149,11 @@ declare class AdmissionApplicationMain {
164
149
  admap_letter_of_rec_1_status?: boolean;
165
150
  admap_letter_of_rec_1_upload_date?: Date;
166
151
  admap_letter_of_rec_1_recommender_name?: string;
167
- admap_letter_of_rec_1_recommender_type?: string;
152
+ admap_letter_of_rec_1_recommender_type_id_sygms?: string;
168
153
  admap_letter_of_rec_2_status?: boolean;
169
154
  admap_letter_of_rec_2_upload_date?: Date;
170
155
  admap_letter_of_rec_2_recommender_name?: string;
171
- admap_letter_of_rec_2_recommender_type?: string;
156
+ admap_letter_of_rec_2_recommender_type_id_sygms?: string;
172
157
  admap_teacher_recommendation_status?: boolean;
173
158
  admap_portfolio_url?: string;
174
159
  admap_portfolio_upload_status?: boolean;
@@ -16,8 +16,8 @@ export type log_type = 'TRACE' | 'SECURITY' | 'APPLICATION_ERROR';
16
16
  export type diagnostic_code = "APPLICATION_ERR_200" | "APPLICATION_ERR_500" | "APPLICATION_ERR_201" | "APPLICATION_ERR_401" | "APPLICATION_ERR_400" | "APPLICATION_ERR_427" | "APPLICATION_ERR_783" | "APPLICATION_ERR_430" | "APPLICATION_ERR_449" | "APPLICATION_ERR_419" | "APPLICATION_ERR_403" | "APPLICATION_ERR_404" | "APPLICATION_ERR_409";
17
17
  declare class ICoreSylog {
18
18
  _id?: string;
19
- sylog_id_user?: string;
20
- sylog_id_logses?: string;
19
+ sylog_id_user?: string | null;
20
+ sylog_id_logses?: string | null;
21
21
  sylog_log_type?: log_type;
22
22
  sylog_action?: string;
23
23
  sylog_id_sypg?: string;
@@ -2,13 +2,14 @@
2
2
  * Fee Structure Schema
3
3
  * Defines the structure of fees for a specific program/class/category
4
4
  */
5
- declare class FeeStructure {
5
+ declare class FeeStructureBase {
6
6
  _id?: string;
7
7
  fees_structure_code?: string;
8
8
  fees_structure_name?: string;
9
9
  fees_structure_description?: string;
10
- fees_scope_type?: 'ENTITY' | 'CLASS_PROGRAM' | 'TERM' | 'SECTION' | 'STUDENT_CATEGORY';
11
- fees_scope_id?: string;
10
+ fees_is_active?: boolean;
11
+ }
12
+ declare class FeeStructure extends FeeStructureBase {
12
13
  fees_academic_year_id_acayr?: string;
13
14
  fees_entity_id_syen?: string;
14
15
  fees_class_program_id_acacpm?: string;
@@ -16,9 +17,6 @@ declare class FeeStructure {
16
17
  fees_class_program_term_id_acapt?: string;
17
18
  fees_program_term_section_id_acapts?: string;
18
19
  fees_student_category_id_sygms?: string;
19
- fees_is_active?: boolean;
20
20
  fees_created_by_user?: string;
21
- fees_created_at?: Date;
22
- fees_updated_at?: Date;
23
21
  }
24
- export { FeeStructure };
22
+ export { FeeStructureBase, FeeStructure };
@@ -1,10 +1,14 @@
1
1
  "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.FeeStructure = void 0;
4
2
  /**
5
3
  * Fee Structure Schema
6
4
  * Defines the structure of fees for a specific program/class/category
7
5
  */
8
- class FeeStructure {
6
+ Object.defineProperty(exports, "__esModule", { value: true });
7
+ exports.FeeStructure = exports.FeeStructureBase = void 0;
8
+ /* BASE INTERFACE START */
9
+ class FeeStructureBase {
10
+ }
11
+ exports.FeeStructureBase = FeeStructureBase;
12
+ class FeeStructure extends FeeStructureBase {
9
13
  }
10
14
  exports.FeeStructure = FeeStructure;
@@ -1,4 +1,4 @@
1
- export { FeeStructure } from './fee_structure';
1
+ export { FeeStructureBase, FeeStructure } from './fee_structure';
2
2
  export { FeeStructureItem } from './fee_structure_item';
3
3
  export { FeeAssignment, FeeAssignmentBase } from './fee_assignment';
4
4
  export { FeePayment } from './fee_payment';
@@ -1,7 +1,8 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.FeeInstallmentItem = exports.FeeInstallmentConfig = exports.FeeCollectionConfig = exports.FeeTransaction = exports.FeeReceiptTemplate = exports.FeeRefund = exports.FeeLateFee = exports.FeeLateFeeRule = exports.FeeScholarship = exports.FeeDiscountRule = exports.FeeDiscount = exports.FeePaymentItem = exports.FeePayment = exports.FeeAssignmentBase = exports.FeeAssignment = exports.FeeStructureItem = exports.FeeStructure = void 0;
3
+ exports.FeeInstallmentItem = exports.FeeInstallmentConfig = exports.FeeCollectionConfig = exports.FeeTransaction = exports.FeeReceiptTemplate = exports.FeeRefund = exports.FeeLateFee = exports.FeeLateFeeRule = exports.FeeScholarship = exports.FeeDiscountRule = exports.FeeDiscount = exports.FeePaymentItem = exports.FeePayment = exports.FeeAssignmentBase = exports.FeeAssignment = exports.FeeStructureItem = exports.FeeStructure = exports.FeeStructureBase = void 0;
4
4
  var fee_structure_1 = require("./fee_structure");
5
+ Object.defineProperty(exports, "FeeStructureBase", { enumerable: true, get: function () { return fee_structure_1.FeeStructureBase; } });
5
6
  Object.defineProperty(exports, "FeeStructure", { enumerable: true, get: function () { return fee_structure_1.FeeStructure; } });
6
7
  var fee_structure_item_1 = require("./fee_structure_item");
7
8
  Object.defineProperty(exports, "FeeStructureItem", { enumerable: true, get: function () { return fee_structure_item_1.FeeStructureItem; } });
package/package.json CHANGED
@@ -5,7 +5,7 @@
5
5
  "typescript": "^5.4.2"
6
6
  },
7
7
  "name": "cloud-ide-lms-model",
8
- "version": "1.0.341",
8
+ "version": "1.0.348",
9
9
  "description": "Package for Model management of Cloud IDEsys LMS",
10
10
  "main": "lib/index.js",
11
11
  "types": "lib/index.d.ts",