Files
web/server/routers/hotels/input.ts
2024-07-09 13:25:26 +02:00

13 lines
248 B
TypeScript

import { z } from "zod"
import { Lang } from "@/constants/languages"
export const getHotelInputSchema = z.object({
hotelId: z.string(),
language: z.nativeEnum(Lang),
})
export const getRatesInputSchema = z.object({
hotelId: z.string(),
})