feat: add no breakfast message to price details modal and to conf page receipt
This commit is contained in:
@@ -15,7 +15,7 @@ export interface Room {
|
||||
adults: number
|
||||
bedDescription: string
|
||||
bookingCode: string | null
|
||||
breakfast?: PackageSchema
|
||||
breakfast: PackageSchema | false | undefined
|
||||
breakfastIncluded: boolean
|
||||
cheques: number
|
||||
childBedPreferences: ChildBedPreference[]
|
||||
|
||||
@@ -42,7 +42,7 @@ export type Room = Pick<
|
||||
| "vouchers"
|
||||
> & {
|
||||
bedType: BedTypeSchema
|
||||
breakfast: Omit<BreakfastPackage, "requestedPrice"> | null
|
||||
breakfast: Omit<BreakfastPackage, "requestedPrice"> | undefined | false
|
||||
breakfastChildren: Omit<BreakfastPackage, "requestedPrice"> | null
|
||||
childrenAsString: string
|
||||
childrenInRoom: Child[]
|
||||
|
||||
Reference in New Issue
Block a user