Merged in feat/SW-1051-amenities-in-sidepeek (pull request #1007)
feat(SW-1051): fix sidepeek select hotel page * feat(SW-1051): fix sidepeek select hotel page Approved-by: Niclas Edenvin
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
import { Hotel, ParkingData } from "@/types/hotel"
|
||||
import { CheckInData, Hotel, ParkingData } from "@/types/hotel"
|
||||
|
||||
export enum AvailabilityEnum {
|
||||
Available = "Available",
|
||||
@@ -17,5 +17,21 @@ export interface ContactProps {
|
||||
}
|
||||
|
||||
export interface ParkingProps {
|
||||
parking: ParkingData
|
||||
parking: ParkingData[]
|
||||
}
|
||||
|
||||
export interface AccessibilityProps {
|
||||
accessibilityElevatorPitchText: string
|
||||
}
|
||||
|
||||
export interface RestaurantProps {
|
||||
restaurantsContentDescriptionMedium: string
|
||||
}
|
||||
|
||||
export interface CheckInCheckOutProps {
|
||||
checkin: CheckInData
|
||||
}
|
||||
|
||||
export interface MeetingsAndConferencesProps {
|
||||
meetingDescription: string
|
||||
}
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
import { z } from "zod"
|
||||
|
||||
import {
|
||||
checkinSchema,
|
||||
facilitySchema,
|
||||
getHotelDataSchema,
|
||||
imageSchema,
|
||||
@@ -23,6 +24,7 @@ export type HotelTripAdvisor =
|
||||
|
||||
export type RoomData = z.infer<typeof roomSchema>
|
||||
export type GalleryImage = z.infer<typeof imageSchema>
|
||||
export type CheckInData = z.infer<typeof checkinSchema>
|
||||
|
||||
export type PointOfInterest = z.output<typeof pointOfInterestSchema>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user