@natch-the-storage/heathershaw-platform-types 1.8.3 → 1.8.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 +28 -10
- package/package.json +1 -1
package/build/validators.d.ts
CHANGED
|
@@ -299,22 +299,26 @@ export interface ProductCreate {
|
|
|
299
299
|
}
|
|
300
300
|
export interface Quote {
|
|
301
301
|
id: number;
|
|
302
|
-
status
|
|
303
|
-
partnerPharmacyProfileId
|
|
304
|
-
name
|
|
305
|
-
strength
|
|
306
|
-
form
|
|
307
|
-
quantity
|
|
308
|
-
|
|
302
|
+
status: QuoteStatus;
|
|
303
|
+
partnerPharmacyProfileId: number;
|
|
304
|
+
name: string;
|
|
305
|
+
strength: string;
|
|
306
|
+
form: string;
|
|
307
|
+
quantity: string;
|
|
308
|
+
details?: string;
|
|
309
|
+
token?: string;
|
|
310
|
+
fileKey?: string;
|
|
309
311
|
}
|
|
310
312
|
export interface QuoteCreate {
|
|
313
|
+
status?: QuoteStatus;
|
|
311
314
|
partnerPharmacyProfileId: number;
|
|
312
315
|
name: string;
|
|
313
316
|
strength: string;
|
|
314
317
|
form: string;
|
|
315
|
-
quantity:
|
|
316
|
-
|
|
317
|
-
|
|
318
|
+
quantity: string;
|
|
319
|
+
details?: string;
|
|
320
|
+
token?: string;
|
|
321
|
+
fileKey?: string;
|
|
318
322
|
}
|
|
319
323
|
export interface RepeatReminder {
|
|
320
324
|
id: number;
|
|
@@ -561,6 +565,7 @@ export interface CDFormulation {
|
|
|
561
565
|
capsuleSize: string;
|
|
562
566
|
unit: string;
|
|
563
567
|
dosageFormRouteOfAdministration: string;
|
|
568
|
+
dosageFormName: string;
|
|
564
569
|
enableRiskAssessment: boolean;
|
|
565
570
|
standardInstructions: string;
|
|
566
571
|
infoUrl: string;
|
|
@@ -574,6 +579,19 @@ export interface CDFormulation {
|
|
|
574
579
|
pricing: CDScriptPriceOption[];
|
|
575
580
|
properties: CDScriptProperties[];
|
|
576
581
|
}
|
|
582
|
+
export interface CDFormulationList {
|
|
583
|
+
formulationId: number;
|
|
584
|
+
name: string;
|
|
585
|
+
quantity: number;
|
|
586
|
+
standardExpiryDays: number;
|
|
587
|
+
unit: string;
|
|
588
|
+
dosageFormName: string;
|
|
589
|
+
dosageFormRouteOfAdministration: string;
|
|
590
|
+
enableRiskAssessment: boolean;
|
|
591
|
+
standardInstructions: string;
|
|
592
|
+
infoUrl: string;
|
|
593
|
+
isSignedOff: boolean;
|
|
594
|
+
}
|
|
577
595
|
export declare const parseCategory: (category: string) => "Order or delivery" | "Prescription" | "Profile or account" | "Compounding" | "General";
|
|
578
596
|
export interface ContactFormInternalCreate {
|
|
579
597
|
category: string;
|