cloud-ide-lms-model 1.0.338 → 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
|
-
|
|
88
|
-
|
|
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;
|