cloud-ide-lms-model 1.0.350 → 1.0.351

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.
@@ -27,7 +27,19 @@ type IFeeStructureSaveUpdateErrorLogger = {
27
27
  type IFeeStructureToggleStatusErrorLogger = {
28
28
  [key in keyof MFeeStructureToggleStatusPayload]: string;
29
29
  };
30
+ /**
31
+ * Fee Structure Query Model
32
+ * Extends MTableQueries for pagination/querying and includes FeeStructure properties for filtering
33
+ */
30
34
  declare class MFeeStructure extends MTableQueries {
35
+ fees_academic_year_id_acayr?: string;
36
+ fees_entity_id_syen?: string;
37
+ fees_class_program_id_acacpm?: string;
38
+ fees_class_program_branch_id_acabrn?: string;
39
+ fees_class_program_term_id_acapt?: string;
40
+ fees_program_term_section_id_acapts?: string;
41
+ fees_student_category_id_sygms?: string;
42
+ fees_is_active?: boolean;
31
43
  constructor(init: MFeeStructure);
32
44
  Validate?(): Partial<IFeeStructureErrorLogger>;
33
45
  }
@@ -5,6 +5,10 @@ const common_1 = require("../../common-types/common");
5
5
  const schema_1 = require("../../schema");
6
6
  /* INTERFACE END */
7
7
  /* MODEL START */
8
+ /**
9
+ * Fee Structure Query Model
10
+ * Extends MTableQueries for pagination/querying and includes FeeStructure properties for filtering
11
+ */
8
12
  class MFeeStructure extends common_1.MTableQueries {
9
13
  constructor(init) {
10
14
  super(init);
@@ -192,6 +192,7 @@ declare class AdmissionApplicationMain {
192
192
  admap_created_by_user?: string;
193
193
  admap_reviewed_by_user?: string;
194
194
  admap_assigned_counselor_user?: string;
195
+ admap_user_id_auth?: string;
195
196
  admap_created_date?: Date;
196
197
  admap_modified_date?: Date;
197
198
  admap_modified_by_user?: string;
@@ -10,7 +10,7 @@ declare class AdmissionContactAddressesBase {
10
10
  admca_admission_id_admap?: string;
11
11
  admca_address_type_id_sygms?: string;
12
12
  admca_contact_person_name?: string;
13
- admca_contact_person_relation?: string;
13
+ admca_contact_person_relation_id_sygms?: string;
14
14
  admca_contact_address?: string;
15
15
  admca_contact_pin_sypin?: string;
16
16
  admca_contact_city_sypin?: string;
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.350",
8
+ "version": "1.0.351",
9
9
  "description": "Package for Model management of Cloud IDEsys LMS",
10
10
  "main": "lib/index.js",
11
11
  "types": "lib/index.d.ts",