import { z } from "zod"; export const optionalIgnoringNull = (schema: z.ZodType) => z.optional(schema.nullable().transform((s) => s ?? undefined));