feat: add api foundation and booking schema

This commit is contained in:
2026-09-18 15:14:49 +08:00
parent 55b2b091c2
commit 5e71b89e95
8 changed files with 1556 additions and 31 deletions

View File

@@ -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;
}