import { z } from "zod" export const addressSchema = z.object({ city: z.string(), country: z.string(), streetAddress: z.string(), zipCode: z.string(), })