promote: dev → uat (GRO-1369 types sync) #428

Merged
The Dogfather merged 19 commits from dev into uat 2026-05-21 20:53:20 +00:00
Showing only changes of commit 3aa7631519 - Show all commits
+3
View File
@@ -32,6 +32,8 @@ export interface Pet {
name: string; name: string;
species: string; species: string;
breed: string | null; breed: string | null;
sizeCategory: string | null;
coatType: string | null;
weightKg: number | null; weightKg: number | null;
dateOfBirth: string | null; dateOfBirth: string | null;
healthAlerts: string | null; healthAlerts: string | null;
@@ -115,6 +117,7 @@ export interface Appointment {
cancelledAt: string | null; cancelledAt: string | null;
confirmationToken: string | null; confirmationToken: string | null;
customerNotes: string | null; customerNotes: string | null;
bufferMinutes: number;
createdAt: string; createdAt: string;
updatedAt: string; updatedAt: string;
} }