diff --git a/packages/types/src/index.ts b/packages/types/src/index.ts index d53138e..5aed3f6 100644 --- a/packages/types/src/index.ts +++ b/packages/types/src/index.ts @@ -41,10 +41,6 @@ export interface Pet { specialCareNotes: string | null; coatType: string | null; petSizeCategory: string | null; - preferredCuts: string[]; - medicalAlerts: MedicalAlert[]; - temperamentScore?: number; - temperamentFlags?: string[]; customFields: Record; photoKey?: string; photoUploadedAt?: string; diff --git a/src/routes/book.ts b/src/routes/book.ts index 5b9fd27..01b542c 100644 --- a/src/routes/book.ts +++ b/src/routes/book.ts @@ -194,7 +194,6 @@ bookRouter.post( species: body.petSpecies, breed: body.petBreed ?? null, coatType: body.petCoatType ?? null, - petSizeCategory: body.petSizeCategory ?? null, }) .returning(); const pet = petInserted[0];