import { z } from "zod" export const staysInput = z .object({ perPage: z.number().min(0).default(6), page: z.number().min(0).default(0), cursor: z.number().nullish(), }) .default({}) export const soonestUpcomingStaysInput = z .object({ limit: z.number().int().positive(), }) .default({ limit: 3 })