cloud-ide-lms-model 1.1.37 → 1.1.38

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.
@@ -1,6 +1,7 @@
1
1
  import { MTableQueries } from "../../common-types/common";
2
2
  import { AdmissionApplicationMain } from "../../schema";
3
3
  import { controllerResponse } from "../../utilities";
4
+ declare type PopulatedGeneralMaster = any;
4
5
  type IAdmissionApplicationMainErrorLogger = {
5
6
  [key in keyof MAdmissionApplicationMain]: string;
6
7
  };
@@ -135,6 +136,10 @@ type AdmissionApplicationResponse = Omit<AdmissionApplicationMain, 'admap_entity
135
136
  } | string | null;
136
137
  admap_sibling_information?: string | null;
137
138
  admap_authorized_pick_up_list?: string | null;
139
+ admap_emergency_contact_name?: string | null;
140
+ admap_emergency_contact_relationship_id_sygms?: string | PopulatedGeneralMaster | null;
141
+ admap_emergency_contact_phone?: string | null;
142
+ admap_converted_to_student_at?: Date | string | null;
138
143
  };
139
144
  /**
140
145
  * Convert admission application to student payload
@@ -91,6 +91,10 @@ declare class AdmissionApplicationMain {
91
91
  admap_applying_for_board_id_edbrd?: string;
92
92
  admap_parent_volunteer_interest?: boolean;
93
93
  admap_custody_documentation_status?: boolean;
94
+ admap_emergency_contact_name?: string;
95
+ admap_emergency_contact_relationship_id_sygms?: string;
96
+ admap_emergency_contact_phone?: string;
97
+ admap_authorized_pick_up_list?: string;
94
98
  admap_tuition_payer_name?: string;
95
99
  admap_tuition_payer_relationship?: string;
96
100
  admap_billing_email_address?: string;
@@ -193,6 +197,7 @@ declare class AdmissionApplicationMain {
193
197
  admap_confirmed_at?: Date;
194
198
  admap_confirmed_by_user?: string;
195
199
  admap_confirmation_remarks?: string;
200
+ admap_converted_to_student_at?: Date;
196
201
  admap_islocked?: boolean;
197
202
  admap_entity_id_syen?: string;
198
203
  admap_program_id_sygms?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cloud-ide-lms-model",
3
- "version": "1.1.37",
3
+ "version": "1.1.38",
4
4
  "description": "Package for Model management of Cloud IDEsys LMS",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",