@natch-the-storage/heathershaw-platform-types 1.10.20 → 1.10.21
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 +5 -0
- package/package.json +1 -1
package/build/validators.d.ts
CHANGED
|
@@ -549,6 +549,8 @@ export interface CDScript {
|
|
|
549
549
|
scriptInfo: {
|
|
550
550
|
patient: {
|
|
551
551
|
customerId: number;
|
|
552
|
+
firstName: string;
|
|
553
|
+
lastName: string;
|
|
552
554
|
};
|
|
553
555
|
instructions: string;
|
|
554
556
|
expiryDate: string;
|
|
@@ -560,8 +562,11 @@ export interface CDScript {
|
|
|
560
562
|
};
|
|
561
563
|
};
|
|
562
564
|
formulation: {
|
|
565
|
+
formulationId: number;
|
|
566
|
+
unit: string;
|
|
563
567
|
properties: CDScriptProperties[];
|
|
564
568
|
ingredients: CDScriptIngredients[];
|
|
569
|
+
pricing: CDScriptPriceOption[];
|
|
565
570
|
};
|
|
566
571
|
itemCount: number;
|
|
567
572
|
}
|