feat: refactor of my stay

This commit is contained in:
Simon Emanuelsson
2025-04-25 14:08:14 +02:00
committed by Simon.Emanuelsson
parent b5deb84b33
commit ec087a3d15
208 changed files with 5458 additions and 4569 deletions

View File

@@ -12,7 +12,7 @@ import type { Child } from "@/types/components/hotelReservation/selectRate/selec
interface BreakfastProps {
adults: number
breakfast: BreakfastPackage | false | undefined | null
breakfast: Omit<BreakfastPackage, "requestedPrice"> | false | undefined | null
breakfastIncluded: boolean
childrenInRoom: Child[] | undefined
currency: string

View File

@@ -42,7 +42,7 @@ type RoomPrice =
export interface Room {
adults: number
bedType: BedTypeSchema | undefined
breakfast: BreakfastPackage | false | undefined | null
breakfast: Omit<BreakfastPackage, "requestedPrice"> | false | undefined | null
breakfastIncluded: boolean
childrenInRoom: Child[] | undefined
packages: Packages | null