chore(promote): dev → uat (Buffer Rules CRUD — GRO-1171) #34

Merged
The Dogfather merged 7 commits from dev into uat 2026-05-21 10:18:11 +00:00
2 changed files with 0 additions and 5 deletions
Showing only changes of commit 73f39951b3 - Show all commits
-4
View File
@@ -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<string, string>;
photoKey?: string;
photoUploadedAt?: string;
-1
View File
@@ -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];