Merged in feat/SW-1065-meetings-page (pull request #1287)
Feat(SW-1065): Meetings hotel subpage Approved-by: Erik Tiekstra
This commit is contained in:
@@ -4,3 +4,4 @@ import type { meetingRoomsSchema } from "@/server/routers/hotels/schemas/meeting
|
||||
|
||||
export type MeetingRoomData = z.output<typeof meetingRoomsSchema>
|
||||
export type MeetingRooms = MeetingRoomData["data"]
|
||||
export type MeetingRoom = MeetingRooms[number]["attributes"]
|
||||
|
||||
@@ -4,5 +4,5 @@ export type MeetingsAndConferencesSidePeekProps = {
|
||||
meetingFacilities: Hotel["conferencesAndMeetings"]
|
||||
descriptions: Hotel["hotelContent"]["texts"]["meetingDescription"]
|
||||
hotelId: string
|
||||
link?: string
|
||||
meetingPageUrl: string | undefined
|
||||
}
|
||||
|
||||
4
types/components/hotelPage/subpage.ts
Normal file
4
types/components/hotelPage/subpage.ts
Normal file
@@ -0,0 +1,4 @@
|
||||
export interface HotelSubpageProps {
|
||||
hotelId: string
|
||||
subpage: string
|
||||
}
|
||||
20
types/enums/meetingRooms.ts
Normal file
20
types/enums/meetingRooms.ts
Normal file
@@ -0,0 +1,20 @@
|
||||
export enum RoomLighting {
|
||||
WindowsNaturalDaylight = "WindowsNaturalDaylight",
|
||||
WindowsNaturalDaylightExcellentView = "WindowsNaturalDaylightExcellentView",
|
||||
WindowsNaturalDaylightBlackoutFacilities = "WindowsNaturalDaylightBlackoutFacilities",
|
||||
NoWindows = "NoWindows",
|
||||
NoWindowsExcellentLighting = "NoWindowsExcellentLighting",
|
||||
IndoorWindowsFacingHotel = "IndoorWindowsFacingHotel",
|
||||
IndoorWindowsExcellentLighting = "IndoorWindowsExcellentLighting",
|
||||
}
|
||||
|
||||
export enum SeatingType {
|
||||
UShape = "UShape",
|
||||
Classroom = "Classroom",
|
||||
Boardroom = "Boardroom",
|
||||
Theatre = "Theatre",
|
||||
Cabaret = "Cabaret",
|
||||
StandingTable = "StandingTable",
|
||||
HalfCircle = "HalfCircle",
|
||||
FullCircle = "FullCircle",
|
||||
}
|
||||
Reference in New Issue
Block a user