[gro-1171] Admin API — Buffer Rules CRUD #12

Merged
groombook-engineer[bot] merged 6 commits from flea-flicker/gro-1162-pet-buffer-time into dev 2026-05-21 10:17:34 +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; specialCareNotes: string | null;
coatType: string | null; coatType: string | null;
petSizeCategory: string | null; petSizeCategory: string | null;
preferredCuts: string[];
medicalAlerts: MedicalAlert[];
temperamentScore?: number;
temperamentFlags?: string[];
customFields: Record<string, string>; customFields: Record<string, string>;
photoKey?: string; photoKey?: string;
photoUploadedAt?: string; photoUploadedAt?: string;
-1
View File
@@ -194,7 +194,6 @@ bookRouter.post(
species: body.petSpecies, species: body.petSpecies,
breed: body.petBreed ?? null, breed: body.petBreed ?? null,
coatType: body.petCoatType ?? null, coatType: body.petCoatType ?? null,
petSizeCategory: body.petSizeCategory ?? null,
}) })
.returning(); .returning();
const pet = petInserted[0]; const pet = petInserted[0];