@natch-the-storage/heathershaw-platform-types 1.12.2 → 1.12.4
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 +2 -8
- package/package.json +1 -1
package/build/validators.d.ts
CHANGED
|
@@ -647,15 +647,9 @@ export interface CDPriceOptionUpdate {
|
|
|
647
647
|
quantity: number;
|
|
648
648
|
price: number;
|
|
649
649
|
}
|
|
650
|
-
export interface CDBulkUpdateResult {
|
|
651
|
-
formulationId: number;
|
|
652
|
-
formulationPriceId: number;
|
|
653
|
-
quantity: number;
|
|
654
|
-
price: number;
|
|
655
|
-
}
|
|
656
650
|
export interface CDBulkUpdateResultList {
|
|
657
|
-
invalidFormulationPrices:
|
|
658
|
-
successfulUpdates:
|
|
651
|
+
invalidFormulationPrices: CDPriceOptionUpdate[];
|
|
652
|
+
successfulUpdates: CDPriceOptionUpdate[];
|
|
659
653
|
}
|
|
660
654
|
export declare const parseCategory: (category: string) => "Compounding" | "Order or delivery" | "Prescription" | "Profile or account" | "General";
|
|
661
655
|
export interface ContactFormInternalCreate {
|