using zod schema for validation
I want to use the zod schema directly like above
emailFormSchema
but its giving me error;
Type 'ZodObject<{ email: ZodString; }, "strip", ZodTypeAny, { email: string; }, { email: string; }>' is not assignable to type 'void | ZodValidator | undefined'.
9 Replies
I wonder if args: { ...emailFormSchema.shape } works
Yeah right now args doesn't accept a
z.object
, just {email: z.string().email() }
directly. does .shape or emailFormSchema._def.shape
maintain the types?someone posted a workaround here https://discord.com/channels/1019350475847499849/1269743602397872229/1270532300303634514
would be nice to have it supported this causes duplication of the schemas 😦
yeah
would be nice to have it supported
@Oren @Tiger 🐅 @David Alonso are you still seeing issues with
args: myZodObject._def.shape()
? And @Tiger 🐅 you mentioned there's issues with Zod - is this what you're referring to, or others? I'd love to have known issues in the GitHub issues, since Discord is getting pretty busy nowadays and things will slip thoughhonestly
to be fully fair
ive not given it a shot
i was ok with simply duplicating
v.union works out for discriminated unions
so duplication was the fastest route for the mvp
@ian this works now 👍
Is it ok to create file and share the declerations like from there with my nextjs app/forms?
sounds like a great idea
ty