@natch-the-storage/heathershaw-platform-types 1.10.18 → 1.10.19

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.
@@ -256,7 +256,6 @@ export interface PatientRecord {
256
256
  relationship?: string | null;
257
257
  }
258
258
  export type PatientRecordCreate = Partial<PatientRecord> & {
259
- id: number;
260
259
  firstName: string;
261
260
  lastName: string;
262
261
  dateOfBirth: string;
@@ -702,7 +701,7 @@ export declare const ApiRoutes: {
702
701
  getDetailed: (id: number) => string;
703
702
  create: string;
704
703
  update: string;
705
- updateDetailed: (id: number) => string;
704
+ updateDetailed: string;
706
705
  delete: (id: number) => string;
707
706
  getReportData: (id: number) => string;
708
707
  };
@@ -171,10 +171,10 @@ export const ApiRoutes = {
171
171
  getSummaries: '/api/profiles/partner-pharmacies/summaries',
172
172
  get: (id) => `/api/profiles/partner-pharmacies/${id}`,
173
173
  getByUser: (userId) => `/api/profiles/partner-pharmacies/users/${userId}`,
174
- getDetailed: (id) => `/api/profiles/partner-pharmacies/${id}/detailed-profiles`,
174
+ getDetailed: (id) => `/api/profiles/partner-pharmacies/detailed-profiles/${id}`,
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
+ updateDetailed: '/api/profiles/partner-pharmacies/detailed-profiles',
178
178
  delete: (id) => `/api/profiles/partner-pharmacies/${id}`,
179
179
  getReportData: (id) => `/api/profiles/partner-pharmacies/${id}/reports`,
180
180
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@natch-the-storage/heathershaw-platform-types",
3
- "version": "1.10.18",
3
+ "version": "1.10.19",
4
4
  "description": "Interfaces and routes to use on the client",
5
5
  "license": "ISC",
6
6
  "author": "Natch Surana",