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

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.
@@ -237,14 +237,14 @@ export type PartnerPharmacyProfileSummary = Pick<PartnerPharmacyProfile, 'id' |
237
237
  };
238
238
  export interface PatientRecord {
239
239
  id: number;
240
- partnerPharmacyProfileId?: number | null;
241
- directUserProfileId?: number | null;
242
- compoundDirectId?: number | null;
243
- userId?: string | null;
240
+ partnerPharmacyProfileId?: number;
241
+ directUserProfileId?: number;
242
+ compoundDirectId?: number;
243
+ userId?: string;
244
244
  firstName: string;
245
245
  lastName: string;
246
246
  dateOfBirth: string;
247
- medicareNumber?: string | null;
247
+ medicareNumber?: string;
248
248
  email: string;
249
249
  phone: string;
250
250
  addresses?: Address[];
@@ -656,6 +656,7 @@ export declare const ApiRoutes: {
656
656
  createCustomer: string;
657
657
  getDraftScripts: string;
658
658
  getDraftScriptById: (id: number) => string;
659
+ getHouseholdDraftScripts: string;
659
660
  listFormulations: string;
660
661
  getFormulationById: (id: number) => string;
661
662
  };
@@ -121,6 +121,7 @@ export const ApiRoutes = {
121
121
  createCustomer: '/api/compound-direct/customer',
122
122
  getDraftScripts: '/api/compound-direct/draft-scripts',
123
123
  getDraftScriptById: (id) => `/api/compound-direct/draft-scripts/${id}`,
124
+ getHouseholdDraftScripts: '/api/compound-direct/scripts/households',
124
125
  listFormulations: '/api/compound-direct/formulations',
125
126
  getFormulationById: (id) => `/api/compound-direct/formulations/${id}`,
126
127
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@natch-the-storage/heathershaw-platform-types",
3
- "version": "1.10.19",
3
+ "version": "1.10.20",
4
4
  "description": "Interfaces and routes to use on the client",
5
5
  "license": "ISC",
6
6
  "author": "Natch Surana",