@natch-the-storage/heathershaw-platform-types 1.12.1 → 1.12.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 +6 -2
- package/package.json +1 -1
package/build/validators.d.ts
CHANGED
|
@@ -641,12 +641,16 @@ export declare const CDProductFormsIdLabels: {
|
|
|
641
641
|
id: string;
|
|
642
642
|
label: string;
|
|
643
643
|
}[];
|
|
644
|
-
export interface
|
|
645
|
-
formulationPriceId: number;
|
|
644
|
+
export interface CDBulkUpdateResult {
|
|
646
645
|
formulationId: number;
|
|
646
|
+
formulationPriceId: number;
|
|
647
647
|
quantity: number;
|
|
648
648
|
price: number;
|
|
649
649
|
}
|
|
650
|
+
export interface CDBulkUpdateResultList {
|
|
651
|
+
invalidFormulationPrices: CDBulkUpdateResult[];
|
|
652
|
+
successfulUpdates: CDBulkUpdateResult[];
|
|
653
|
+
}
|
|
650
654
|
export declare const parseCategory: (category: string) => "Compounding" | "Order or delivery" | "Prescription" | "Profile or account" | "General";
|
|
651
655
|
export interface ContactFormInternalCreate {
|
|
652
656
|
category: string;
|