import { z } from 'zod' const bodyPost = z.object({ email: z.string().email(), first_name: z.string(), last_name: z.string(), pwd: z.string() })