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
The following endpoint fields can be stripped without affecting type inference:
transformer
_input_out
.transform()
_output_in
middleware
_ctx_out
_meta
_config
Some fields are leaking implementation data if present in the declaration file on top of not being required for inference
The text was updated successfully, but these errors were encountered:
Yeah makes sense! Tho we're already removing middleware so there's currently no implementation data present I believe?
Sorry, something went wrong.
No branches or pull requests
The following endpoint fields can be stripped without affecting type inference:
transformer
_input_out
(result of transforming the raw input via the zod schema.transform()
method)_output_in
(what is returned by the procedure before being transformed by the zod output schema)middleware
_ctx_out
_meta
_config
(not sure if it affects type inferency in any way)Some fields are leaking implementation data if present in the declaration file on top of not being required for inference
The text was updated successfully, but these errors were encountered: