zod-prisma-types
zod-prisma-types copied to clipboard
decimal validation
Would be great to have an easy solution for validation decimal "numbers" without using custom functions. Just like the way numbers are validated
ex. /// @zod.decimal.lt(10).gt(1)
@michiim Thanks for the request. This is generally a good Idea but currently I do not plan to implement validators that are not natively supported by zod since this would require some major refactors in how the validators are handled and validated during generation.
I have not worked with decimals that much but I'd believe you, when you say that they can be a bit of a pain to work with when some advanced validation is needed. But for now please use this approach.