diff --git a/server/routers/hotels/output.ts b/server/routers/hotels/output.ts index 47c82c9b1..5692497f1 100644 --- a/server/routers/hotels/output.ts +++ b/server/routers/hotels/output.ts @@ -501,7 +501,8 @@ const productSchema = z.object({ const roomConfigurationSchema = z.object({ status: z.string(), - bedType: z.string(), + // TODO: Remove the optional when the API change has been deployed + roomTypeCode: z.string().optional(), roomType: z.string(), roomsLeft: z.number(), features: z.array(z.object({ inventory: z.number(), code: z.string() })),