@natch-the-storage/heathershaw-platform-types 1.10.12 → 1.10.13

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.
@@ -294,15 +294,11 @@ export interface PriceMatch {
294
294
  id: number;
295
295
  partnerPharmacyProfileId: number;
296
296
  itemId: number;
297
+ name: string;
297
298
  pricingId: number;
298
299
  overridePrice: number;
299
300
  }
300
- export interface PriceMatchCreate {
301
- partnerPharmacyProfileId: number;
302
- itemId: number;
303
- pricingId: number;
304
- overridePrice: number;
305
- }
301
+ export type PriceMatchCreate = Omit<PriceMatch, 'id' | 'name'>;
306
302
  export interface Quote {
307
303
  id: number;
308
304
  status: QuoteStatus;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@natch-the-storage/heathershaw-platform-types",
3
- "version": "1.10.12",
3
+ "version": "1.10.13",
4
4
  "description": "Interfaces and routes to use on the client",
5
5
  "license": "ISC",
6
6
  "author": "Natch Surana",