@natch-the-storage/heathershaw-platform-types 1.10.22 → 1.10.24
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 +1 -1
- package/package.json +1 -1
package/build/validators.d.ts
CHANGED
|
@@ -66,7 +66,6 @@ export interface LineItem {
|
|
|
66
66
|
patientFirstName: string;
|
|
67
67
|
patientLastName: string;
|
|
68
68
|
};
|
|
69
|
-
quantity: number;
|
|
70
69
|
expiryDate: string;
|
|
71
70
|
repeatsLeft: number;
|
|
72
71
|
supplyNumber: number;
|
|
@@ -164,6 +163,7 @@ export interface Order {
|
|
|
164
163
|
invoicePrice?: number;
|
|
165
164
|
hubspotContactId?: string;
|
|
166
165
|
created: string;
|
|
166
|
+
requiredDate: string;
|
|
167
167
|
}
|
|
168
168
|
export type OrderCreate = Omit<Order, 'id' | 'status' | 'created'>;
|
|
169
169
|
export interface PaperScriptReminder {
|