fix(GRO-1369): add missing sizeCategory/coatType/bufferMinutes to @groombook/types #427
@@ -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;
|
||||||
@@ -64,6 +66,7 @@ export interface Service {
|
|||||||
description: string | null;
|
description: string | null;
|
||||||
basePriceCents: number;
|
basePriceCents: number;
|
||||||
durationMinutes: number;
|
durationMinutes: number;
|
||||||
|
defaultBufferMinutes: number;
|
||||||
active: boolean;
|
active: boolean;
|
||||||
createdAt: string;
|
createdAt: string;
|
||||||
updatedAt: string;
|
updatedAt: string;
|
||||||
@@ -114,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;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user