We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I would like zod validations to be auto-generated too The more information the better!
so when running: `blitz generate all photo name:string slug:string
const CreatePhoto = z .object({ name: z.string(), slug: z.string(),, }) .nonstrict()
Instead of
const CreatePhoto = z .object({ name: z.string() }) .nonstrict()
So an app compiles after generator run, maybe this has been discarded bc bad idea idk, couldn't find any issue about it
The text was updated successfully, but these errors were encountered:
This will be fixed by blitz-js/blitz#2134!
Sorry, something went wrong.
Closing this as a duplicate of the linked PR
No branches or pull requests
What do you want and why?
I would like zod validations to be auto-generated too
The more information the better!
so when running:
`blitz generate all photo name:string slug:string
Instead of
So an app compiles after generator run, maybe this has been discarded bc bad idea idk, couldn't find any issue about it
The text was updated successfully, but these errors were encountered: