feat: add api foundation and booking schema
This commit is contained in:
@@ -2,3 +2,13 @@ export type BookingStatus = "received" | "contacting" | "confirmed" | "completed
|
||||
export type BookingRequestType = "package" | "private_chef";
|
||||
export type ContactPreference = "wechat" | "phone" | "none";
|
||||
export type FulfillmentType = "pickup" | "delivery";
|
||||
export type OrderStatus = BookingStatus;
|
||||
|
||||
export interface PublicService {
|
||||
id: string;
|
||||
name: string;
|
||||
description: string;
|
||||
priceText: string | null;
|
||||
priceAmount: number | null;
|
||||
bookingEnabled: boolean;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user