@natch-the-storage/heathershaw-platform-types 1.14.2 → 1.14.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 +55 -4
- package/package.json +1 -1
package/build/validators.d.ts
CHANGED
|
@@ -648,10 +648,6 @@ export type CDProduct = Omit<CDFormulation, 'pricing'> & Omit<CDScriptPriceOptio
|
|
|
648
648
|
category: CDProductCategoryId;
|
|
649
649
|
categoryLabel: CDProductCategoryLabel;
|
|
650
650
|
};
|
|
651
|
-
export declare const CDProductForms: {
|
|
652
|
-
id: string;
|
|
653
|
-
label: string;
|
|
654
|
-
}[];
|
|
655
651
|
export interface CDPriceOptionUpdate {
|
|
656
652
|
formulationPriceId: number;
|
|
657
653
|
formulationId: number;
|
|
@@ -662,6 +658,61 @@ export interface CDBulkUpdateResultList {
|
|
|
662
658
|
invalidFormulationPrices: CDPriceOptionUpdate[];
|
|
663
659
|
successfulUpdates: CDPriceOptionUpdate[];
|
|
664
660
|
}
|
|
661
|
+
export declare const CDProductForms: readonly [{
|
|
662
|
+
readonly id: "capsule";
|
|
663
|
+
readonly label: "Capsules";
|
|
664
|
+
}, {
|
|
665
|
+
readonly id: "oral liquid";
|
|
666
|
+
readonly label: "Oral liquids / suspensions";
|
|
667
|
+
}, {
|
|
668
|
+
readonly id: "suppository";
|
|
669
|
+
readonly label: "Suppositories";
|
|
670
|
+
}, {
|
|
671
|
+
readonly id: "ointment";
|
|
672
|
+
readonly label: "Ointments";
|
|
673
|
+
}, {
|
|
674
|
+
readonly id: "topical liquid";
|
|
675
|
+
readonly label: "Topical Liquids";
|
|
676
|
+
}, {
|
|
677
|
+
readonly id: "scooped powder";
|
|
678
|
+
readonly label: "Scooped Powders";
|
|
679
|
+
}, {
|
|
680
|
+
readonly id: "cream";
|
|
681
|
+
readonly label: "Creams";
|
|
682
|
+
}, {
|
|
683
|
+
readonly id: "troche";
|
|
684
|
+
readonly label: "Troches / lozenges";
|
|
685
|
+
}, {
|
|
686
|
+
readonly id: "pessary";
|
|
687
|
+
readonly label: "Pessaries";
|
|
688
|
+
}, {
|
|
689
|
+
readonly id: "gummy";
|
|
690
|
+
readonly label: "Gummies";
|
|
691
|
+
}, {
|
|
692
|
+
readonly id: "gel";
|
|
693
|
+
readonly label: "Gels";
|
|
694
|
+
}, {
|
|
695
|
+
readonly id: "lotion";
|
|
696
|
+
readonly label: "Lotions";
|
|
697
|
+
}, {
|
|
698
|
+
readonly id: "patch";
|
|
699
|
+
readonly label: "Transdermal patches";
|
|
700
|
+
}, {
|
|
701
|
+
readonly id: "nasal spray";
|
|
702
|
+
readonly label: "Nasal sprays";
|
|
703
|
+
}, {
|
|
704
|
+
readonly id: "vaginal";
|
|
705
|
+
readonly label: "Vaginal creams / gels";
|
|
706
|
+
}, {
|
|
707
|
+
readonly id: "drop";
|
|
708
|
+
readonly label: "Drops";
|
|
709
|
+
}, {
|
|
710
|
+
readonly id: "spray";
|
|
711
|
+
readonly label: "Sprays";
|
|
712
|
+
}, {
|
|
713
|
+
readonly id: "tablet";
|
|
714
|
+
readonly label: "Tablets";
|
|
715
|
+
}];
|
|
665
716
|
export declare const parseCategory: (category: string) => "Compounding" | "Order or delivery" | "Prescription" | "Profile or account" | "General";
|
|
666
717
|
export interface ContactFormInternalCreate {
|
|
667
718
|
category: string;
|