diff --git a/packages/types/src/index.ts b/packages/types/src/index.ts index 536d886..86c949c 100644 --- a/packages/types/src/index.ts +++ b/packages/types/src/index.ts @@ -32,6 +32,8 @@ export interface Pet { name: string; species: string; breed: string | null; + sizeCategory: string | null; + coatType: string | null; weightKg: number | null; dateOfBirth: string | null; healthAlerts: string | null; @@ -115,6 +117,7 @@ export interface Appointment { cancelledAt: string | null; confirmationToken: string | null; customerNotes: string | null; + bufferMinutes: number; createdAt: string; updatedAt: string; }