Merge branch 'master' into feature/tracking
This commit is contained in:
@@ -77,6 +77,6 @@ export const getRoomPackagesInputSchema = z.object({
|
||||
export const getCityCoordinatesInputSchema = z.object({
|
||||
city: z.string(),
|
||||
hotel: z.object({
|
||||
address: z.string(),
|
||||
address: z.string().optional(),
|
||||
}),
|
||||
})
|
||||
|
||||
@@ -56,7 +56,7 @@ const contactInformationSchema = z.object({
|
||||
websiteUrl: z.string(),
|
||||
})
|
||||
|
||||
const checkinSchema = z.object({
|
||||
export const checkinSchema = z.object({
|
||||
checkInTime: z.string(),
|
||||
checkOutTime: z.string(),
|
||||
onlineCheckOutAvailableFrom: z.string().nullable().optional(),
|
||||
@@ -110,6 +110,12 @@ const hotelContentSchema = z.object({
|
||||
short: z.string(),
|
||||
medium: z.string(),
|
||||
}),
|
||||
meetingDescription: z
|
||||
.object({
|
||||
short: z.string().optional(),
|
||||
medium: z.string().optional(),
|
||||
})
|
||||
.optional(),
|
||||
}),
|
||||
restaurantsOverviewPage: z.object({
|
||||
restaurantsOverviewPageLinkText: z.string().optional(),
|
||||
@@ -129,7 +135,7 @@ const detailedFacilitySchema = z.object({
|
||||
})
|
||||
|
||||
export const facilitySchema = z.object({
|
||||
headingText: z.string(),
|
||||
headingText: z.string().default(""),
|
||||
heroImages: z.array(
|
||||
z.object({
|
||||
metaData: imageMetaDataSchema,
|
||||
|
||||
Reference in New Issue
Block a user