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