@natch-the-storage/heathershaw-platform-types 1.5.1 → 1.5.2
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 +2 -2
- package/package.json +1 -1
package/build/validators.d.ts
CHANGED
|
@@ -92,13 +92,11 @@ export interface Sms {
|
|
|
92
92
|
export interface DirectUserProfile {
|
|
93
93
|
id: number;
|
|
94
94
|
userId?: string;
|
|
95
|
-
compoundDirectId?: string | null;
|
|
96
95
|
remindersEnabled?: boolean;
|
|
97
96
|
scriptSubmissions?: ScriptSelect[];
|
|
98
97
|
}
|
|
99
98
|
export interface DirectUserProfileCreate {
|
|
100
99
|
userId: string;
|
|
101
|
-
compoundDirectId?: string | null;
|
|
102
100
|
remindersEnabled?: boolean;
|
|
103
101
|
scriptSubmissions?: ScriptSelect[];
|
|
104
102
|
}
|
|
@@ -191,6 +189,7 @@ export interface PatientRecord {
|
|
|
191
189
|
id: number;
|
|
192
190
|
partnerPharmacyProfileId?: number | null;
|
|
193
191
|
directUserProfileId?: number | null;
|
|
192
|
+
compoundDirectId?: number | null;
|
|
194
193
|
userId?: string | null;
|
|
195
194
|
firstName?: string;
|
|
196
195
|
lastName?: string;
|
|
@@ -212,6 +211,7 @@ export interface PatientRecordCreate {
|
|
|
212
211
|
phone: string;
|
|
213
212
|
partnerPharmacyProfileId?: number | null;
|
|
214
213
|
directUserProfileId?: number | null;
|
|
214
|
+
compoundDirectId?: number | null;
|
|
215
215
|
userId?: string | null;
|
|
216
216
|
medicareNumber?: string | null;
|
|
217
217
|
address?: Address[];
|