feat: get breakfast package from API

This commit is contained in:
Simon Emanuelsson
2024-10-28 10:12:03 +01:00
parent fc8844eb96
commit 62f549e85d
47 changed files with 718 additions and 210 deletions
+4
View File
@@ -39,3 +39,7 @@ export const getlHotelDataInputSchema = z.object({
.array(z.enum(["RoomCategories", "NearbyHotels", "Restaurants", "City"]))
.optional(),
})
export const getBreakfastPackageInput = z.object({
hotelId: z.string().min(1, { message: "hotelId is required" }),
})