Merged in feat/SW-1292-scandic-go-breakfast-information (pull request #1407)

feat/SW-1292-scandic-go-breakfast-information

* feat(SW-1292): display breakfast information for scandic go


Approved-by: Erik Tiekstra
This commit is contained in:
Fredrik Thorsson
2025-02-26 08:10:33 +00:00
parent 541b91e34c
commit 667cab6fb6
11 changed files with 38 additions and 12 deletions
@@ -8,6 +8,7 @@ export type AmenitiesSidePeekProps = {
checkInInformation: Hotel["hotelFacts"]["checkin"]
accessibility: AccessibilityAmenityProps
restaurants: Restaurant[]
hotelType: Hotel["hotelType"]
}
export type FilteredAmenitiesProps = {
@@ -15,6 +16,7 @@ export type FilteredAmenitiesProps = {
}
export interface BreakfastAmenityProps {
openingHours: RestaurantOpeningHours
openingHours?: RestaurantOpeningHours
alternateOpeningHours?: RestaurantOpeningHours
hotelType: Hotel["hotelType"]
}
@@ -1,6 +1,8 @@
import type { BreakfastAmenityProps } from "./amenities"
import type { RestaurantOpeningHours } from "@/types/hotel"
export interface OpeningHoursProps extends BreakfastAmenityProps {
export interface OpeningHoursProps {
openingHours: RestaurantOpeningHours
alternateOpeningHours?: RestaurantOpeningHours
heading?: string
type?: "amenities" | "default"
}