From 0625961adfed3eba0770712bdc8409076ff9f3dc Mon Sep 17 00:00:00 2001 From: Flea Flicker Date: Mon, 25 May 2026 23:52:53 +0000 Subject: [PATCH] fix(GRO-1764): change Max coat_type "short" to "smooth" in UAT seed MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The DB coat_type enum only accepts: smooth, double, wire, curly, long, hairless. "short" is not a valid value — corrected to "smooth". Co-Authored-By: Paperclip --- apps/api/src/routes/admin/seed.ts | 2 +- src/routes/admin/seed.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/api/src/routes/admin/seed.ts b/apps/api/src/routes/admin/seed.ts index 0f3dbe2..38bc8ac 100644 --- a/apps/api/src/routes/admin/seed.ts +++ b/apps/api/src/routes/admin/seed.ts @@ -46,7 +46,7 @@ const UAT_CLIENT = { const UAT_PETS = [ { name: "Bella", species: "Dog", breed: "Poodle", coatType: "curly" as const, weightKg: "20.00" }, - { name: "Max", species: "Dog", breed: "Labrador Retriever", coatType: "short" as const, weightKg: "30.00" }, + { name: "Max", species: "Dog", breed: "Labrador Retriever", coatType: "smooth" as const, weightKg: "30.00" }, ]; const DEMO_SERVICES = [ diff --git a/src/routes/admin/seed.ts b/src/routes/admin/seed.ts index 114461f..da96650 100644 --- a/src/routes/admin/seed.ts +++ b/src/routes/admin/seed.ts @@ -46,7 +46,7 @@ const UAT_CLIENT = { const UAT_PETS = [ { name: "Bella", species: "Dog", breed: "Poodle", coatType: "curly", weightKg: "20.00" }, - { name: "Max", species: "Dog", breed: "Labrador Retriever", coatType: "short", weightKg: "30.00" }, + { name: "Max", species: "Dog", breed: "Labrador Retriever", coatType: "smooth", weightKg: "30.00" }, ]; const DEMO_SERVICES = [