import { withValidation } from "next-validations"; import { z } from "zod"; import { baseApiParams } from "./baseApiParams"; // Extracted out as utility function so can be reused // at different endpoints that require this validation. export const schemaQueryUserId = baseApiParams .extend({ userId: z .string() .regex(/^\d+$/) .transform((id) => parseInt(id)), }) .strict(); export const withValidQueryUserId = withValidation({ schema: schemaQueryUserId, type: "Zod", mode: "query", });