@natch-the-storage/heathershaw-platform-types 1.15.10 → 1.15.11
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 +4 -1
- package/package.json +1 -1
package/build/validators.d.ts
CHANGED
|
@@ -296,8 +296,11 @@ export interface PatientRecord {
|
|
|
296
296
|
orderHistory?: Order[];
|
|
297
297
|
animalSpecies?: string;
|
|
298
298
|
relationship?: string | null;
|
|
299
|
+
active: boolean;
|
|
299
300
|
}
|
|
300
|
-
export type PatientRecordCreate = Omit<PatientRecord, 'id'
|
|
301
|
+
export type PatientRecordCreate = Omit<PatientRecord, 'id' | 'active'> & {
|
|
302
|
+
active?: boolean;
|
|
303
|
+
};
|
|
301
304
|
export type PatientRecordUpdate = Partial<PatientRecord> & {
|
|
302
305
|
id: number;
|
|
303
306
|
};
|