@natch-the-storage/heathershaw-platform-types 1.11.2 → 1.11.3
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.
- package/build/validators.d.ts +7 -0
- package/package.json +1 -1
package/build/validators.d.ts
CHANGED
|
@@ -282,6 +282,13 @@ export type PatientRecordCreate = Omit<PatientRecord, 'id'>;
|
|
|
282
282
|
export type PatientRecordUpdate = Partial<PatientRecord> & {
|
|
283
283
|
id: number;
|
|
284
284
|
};
|
|
285
|
+
export type PatientRecordOnboard = {
|
|
286
|
+
firstName: string;
|
|
287
|
+
lastName: string;
|
|
288
|
+
dateOfBirth: string;
|
|
289
|
+
phoneNumber: string;
|
|
290
|
+
addresses: Address[];
|
|
291
|
+
};
|
|
285
292
|
export interface PriceMatch {
|
|
286
293
|
id: number;
|
|
287
294
|
partnerPharmacyProfileId: number;
|