@natch-the-storage/heathershaw-platform-types 1.9.2 → 1.9.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 +10 -7
- package/package.json +1 -1
package/build/validators.d.ts
CHANGED
|
@@ -41,7 +41,7 @@ export interface ScriptSelect {
|
|
|
41
41
|
fileKey?: string | null;
|
|
42
42
|
}
|
|
43
43
|
export interface LineItem {
|
|
44
|
-
id:
|
|
44
|
+
id: string;
|
|
45
45
|
name: string;
|
|
46
46
|
quantity: number;
|
|
47
47
|
price: number;
|
|
@@ -274,14 +274,16 @@ export interface PatientRecordCreate {
|
|
|
274
274
|
}
|
|
275
275
|
export interface PriceMatch {
|
|
276
276
|
id: number;
|
|
277
|
-
partnerPharmacyProfileId
|
|
277
|
+
partnerPharmacyProfileId: number;
|
|
278
278
|
itemId: number;
|
|
279
|
-
|
|
279
|
+
pricingId: number;
|
|
280
|
+
overridePrice: number;
|
|
280
281
|
}
|
|
281
282
|
export interface PriceMatchCreate {
|
|
282
283
|
partnerPharmacyProfileId: number;
|
|
283
284
|
itemId: number;
|
|
284
|
-
|
|
285
|
+
pricingId: number;
|
|
286
|
+
overridePrice: number;
|
|
285
287
|
}
|
|
286
288
|
export interface Quote {
|
|
287
289
|
id: number;
|
|
@@ -464,6 +466,7 @@ export declare const CompoundDirectAnimalId: {
|
|
|
464
466
|
};
|
|
465
467
|
export declare const AnimalSpeciesKeys: [keyof typeof CompoundDirectAnimalId, ...(keyof typeof CompoundDirectAnimalId)[]];
|
|
466
468
|
export interface CDScriptPriceOption {
|
|
469
|
+
id: number;
|
|
467
470
|
quantity: number;
|
|
468
471
|
price: number;
|
|
469
472
|
}
|
|
@@ -503,6 +506,7 @@ export interface CDScript {
|
|
|
503
506
|
name: string;
|
|
504
507
|
price: number;
|
|
505
508
|
quantity: number;
|
|
509
|
+
createdDate: string;
|
|
506
510
|
originalScript: {
|
|
507
511
|
draftScriptId: number;
|
|
508
512
|
};
|
|
@@ -543,9 +547,8 @@ export interface CDCustomerCreate {
|
|
|
543
547
|
}
|
|
544
548
|
export interface CDCustomerSearch {
|
|
545
549
|
name: string;
|
|
546
|
-
|
|
547
|
-
|
|
548
|
-
phone: string;
|
|
550
|
+
dobStartDate: string;
|
|
551
|
+
dobEndDate: string;
|
|
549
552
|
}
|
|
550
553
|
export interface CDFormulation {
|
|
551
554
|
formulationId: number;
|