In our zod-helpers package we have a few common schemas defined that help solve common validation problems.
But some of these schemas use Zod features that the OAS converter doesn't have support for, such as BooleanFromString which uses an enum in combination with a boolean and a transform.
We should see if we can make the OAS converter learn how to handle such types so that they can be used and still output valid OAS bundles.
In our
zod-helpers
package we have a few common schemas defined that help solve common validation problems. But some of these schemas use Zod features that the OAS converter doesn't have support for, such asBooleanFromString
which uses an enum in combination with a boolean and a transform.We should see if we can make the OAS converter learn how to handle such types so that they can be used and still output valid OAS bundles.