From a6f18f294cdecd23ac9a6dcb2173ec7f21bef32b Mon Sep 17 00:00:00 2001 From: "Orace.A" Date: Fri, 28 Mar 2025 15:47:10 +0100 Subject: [PATCH] chore: update schema --- src/schema/index.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/schema/index.ts b/src/schema/index.ts index c289865..dfe6986 100644 --- a/src/schema/index.ts +++ b/src/schema/index.ts @@ -10,6 +10,7 @@ export const adminSchema = z.object({ last_name: z.string(), first_name: z.string(), email: z.string().min(1, "L'email est requis").email("Email invalide"), + organization: z.string().optional(), }); export const companySchema = z.object({