From 8d44e1d232aba6d7503d780922fffef346c6ee15 Mon Sep 17 00:00:00 2001 From: Flea Flicker Date: Mon, 25 May 2026 18:31:52 +0000 Subject: [PATCH] fix(db): add missing extended pet profile fields to buildPet factory Lint Roller (QA) flagged that buildPet in factories.ts was missing the 4 fields added to the pets table schema, causing TS2739 in the Docker build job (run 1701, job 3717). Co-Authored-By: Claude Opus 4.7 --- packages/db/src/factories.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/packages/db/src/factories.ts b/packages/db/src/factories.ts index 2ecad06..c15d42e 100644 --- a/packages/db/src/factories.ts +++ b/packages/db/src/factories.ts @@ -105,6 +105,10 @@ export function buildPet(overrides: Partial & { clientId: string }): Pet photoKey: null, photoUploadedAt: null, image: null, + temperamentScore: null, + temperamentFlags: [], + medicalAlerts: [], + preferredCuts: [], createdAt: new Date("2025-01-01T00:00:00Z"), updatedAt: new Date("2025-01-01T00:00:00Z"), };