fix(SW-188): use camelCase for schemas
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
import { z } from "zod"
|
||||
|
||||
import { getHotelDataSchema, RoomSchema } from "@/server/routers/hotels/output"
|
||||
import { getHotelDataSchema, roomSchema } from "@/server/routers/hotels/output"
|
||||
|
||||
export type HotelData = z.infer<typeof getHotelDataSchema>
|
||||
|
||||
@@ -13,4 +13,4 @@ export type HotelTripAdvisor =
|
||||
| NonNullable<HotelRatings>["tripAdvisor"]
|
||||
| undefined
|
||||
|
||||
export type RoomData = z.infer<typeof RoomSchema>
|
||||
export type RoomData = z.infer<typeof roomSchema>
|
||||
|
||||
Reference in New Issue
Block a user