@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.
- package/build/validators.d.ts +1 -2
- package/build/validators.js +2 -2
- package/package.json +1 -1
package/build/validators.d.ts
CHANGED
|
@@ -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:
|
|
704
|
+
updateDetailed: string;
|
|
706
705
|
delete: (id: number) => string;
|
|
707
706
|
getReportData: (id: number) => string;
|
|
708
707
|
};
|
package/build/validators.js
CHANGED
|
@@ -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}
|
|
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:
|
|
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
|
},
|