fix(SW-188): use camelCase for schemas

This commit is contained in:
Chuma McPhoy
2024-08-19 10:22:59 +02:00
parent aa38e82698
commit 16e0165a6e
3 changed files with 80 additions and 80 deletions

View File

@@ -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>