cloud-ide-lms-model 1.0.337 → 1.0.339

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.
@@ -7,6 +7,7 @@
7
7
  */
8
8
  import { AdmissionFamilyMembersBase } from "../../schema/admission/admission_family_members";
9
9
  import { AdmissionEntityAccessPassManagementBase } from "../../schema/admission/admission_contact_addresses";
10
+ import { controllerResponse } from "../../utilities";
10
11
  /**
11
12
  * Response type with populated references
12
13
  * Using Omit to avoid type conflicts when overriding properties
@@ -83,14 +84,9 @@ type AdmissionAdmissionFamilyMembers = Omit<AdmissionFamilyMembersBase, 'admfm_a
83
84
  /**
84
85
  * Controller response type for list operations
85
86
  */
86
- interface admissionFamilyMembersControllerResponse {
87
- success: boolean;
88
- message: string;
89
- data: AdmissionAdmissionFamilyMembers[] | AdmissionAdmissionFamilyMembers | null;
90
- total?: number;
91
- page?: number;
92
- pageSize?: number;
93
- error?: any;
87
+ interface admissionFamilyMembersControllerResponse extends controllerResponse {
88
+ data?: AdmissionAdmissionFamilyMembers[] | AdmissionAdmissionFamilyMembers | null;
89
+ totalDocument?: number;
94
90
  }
95
91
  /**
96
92
  * Controller response for single operations
@@ -191,6 +191,7 @@ declare class AdmissionApplicationMain {
191
191
  admap_ip_address?: string;
192
192
  admap_browser_information?: string;
193
193
  admap_application_status_id_sygms?: string;
194
+ admap_status_id_sygms?: string;
194
195
  admap_application_submission_date?: Date;
195
196
  admap_interview_scheduled_date?: Date;
196
197
  admap_interview_status?: string;
@@ -8,6 +8,7 @@ declare class FeeReceiptTemplate {
8
8
  feert_template_code?: string;
9
9
  feert_template_html?: string;
10
10
  feert_template_type?: 'PAYMENT' | 'REFUND' | 'PROVISIONAL';
11
+ feert_template_for?: 'STUDENT' | 'OFFICE' | 'BOTH';
11
12
  feert_is_default?: boolean;
12
13
  feert_entity_id_syen?: string;
13
14
  feert_status?: 'ACTIVE' | 'INACTIVE';
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.337",
8
+ "version": "1.0.339",
9
9
  "description": "Package for Model management of Cloud IDEsys LMS",
10
10
  "main": "lib/index.js",
11
11
  "types": "lib/index.d.ts",