From d9bfed442407244eae5a3342b17de7d96043098a Mon Sep 17 00:00:00 2001 From: Chris Farhood Date: Wed, 20 May 2026 11:26:11 +0000 Subject: [PATCH] fix(GRO-1350): add missing coatType and petSizeCategory to buildPet defaults PetRow (pets.$inferSelect) now includes these nullable columns after the GRO-1174 migration, but buildPet's defaults were never updated. Adding null defaults fixes the typecheck failure in CI. Co-Authored-By: Claude Sonnet 4.6 --- packages/db/src/factories.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/packages/db/src/factories.ts b/packages/db/src/factories.ts index 88609f2..2356ec3 100644 --- a/packages/db/src/factories.ts +++ b/packages/db/src/factories.ts @@ -99,6 +99,8 @@ export function buildPet(overrides: Partial & { clientId: string }): Pet cutStyle: null, shampooPreference: null, specialCareNotes: null, + coatType: null, + petSizeCategory: null, customFields: {}, photoKey: null, photoUploadedAt: null,