import { z } from 'zod'; const PaymentsSchema = z .object({ values: z.number().array(), }) .strict(); export default PaymentsSchema;