@natch-the-storage/heathershaw-platform-types 1.10.15 → 1.10.17

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.
@@ -194,7 +194,7 @@ export interface PartnerPharmacyProfile {
194
194
  contactName: string;
195
195
  invoiceEmail: string;
196
196
  discountTier: number;
197
- paymentMode: PaymentModeAtOrder;
197
+ paymentMode: PartnerPharmacyPaymentMode;
198
198
  remindersEnabled?: boolean;
199
199
  priceMatches?: PriceMatch[];
200
200
  addresses: Address[];
@@ -699,6 +699,7 @@ export declare const ApiRoutes: {
699
699
  getDetailed: (id: number) => string;
700
700
  create: string;
701
701
  update: string;
702
+ updateDetailed: (id: number) => string;
702
703
  delete: (id: number) => string;
703
704
  getReportData: (id: number) => string;
704
705
  };
@@ -174,6 +174,7 @@ export const ApiRoutes = {
174
174
  getDetailed: (id) => `/api/profiles/partner-pharmacies/${id}/detailed-profiles`,
175
175
  create: '/api/profiles/partner-pharmacies',
176
176
  update: '/api/profiles/partner-pharmacies',
177
+ updateDetailed: (id) => `api/profiles/partner-pharmacies/${id}/detailed-profiles`,
177
178
  delete: (id) => `/api/profiles/partner-pharmacies/${id}`,
178
179
  getReportData: (id) => `/api/profiles/partner-pharmacies/${id}/reports`,
179
180
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@natch-the-storage/heathershaw-platform-types",
3
- "version": "1.10.15",
3
+ "version": "1.10.17",
4
4
  "description": "Interfaces and routes to use on the client",
5
5
  "license": "ISC",
6
6
  "author": "Natch Surana",