-
Notifications
You must be signed in to change notification settings - Fork 528
Open
Labels
Description
When using a Zod validator and then passing it to TSOA, it throws this error: Error: No matching model found for referenced type infer.
Types File
export const MyValidator = z.object({
result: z.object({
price: z.string().nonempty()
}),
code: z.number(),
msg: z.string().nonempty()
})
export type MyResponse = z.infer<typeof MyValidator>
Then use it in TSO
@Get()
public async getRequest (): Promise<MyResponse> {
Sorting
-
I'm submitting a ...
- bug report
- feature request
- support request
-
I confirm that I
- used the search to make sure that a similar issue hasn't already been submit
Expected Behavior
When running yarn tsoa spec-and-routes
I expect TSOA to be able to use the inferred type generated by Zod.
Current Behavior
It crashes with
Generate routes error.
Error: No matching model found for referenced type infer.
at new GenerateMetadataError (/Users/caseygibson/Documents/Github/node_modules/@tsoa/cli/dist/metadataGeneration/exceptions.js:22:28)
Context (Environment)
Version of the library: "^3.14.1"
Version of NodeJS: v14.17.4
- Confirm you were using yarn not npm: [X]
KilgoreTroute07, dhartveld, b6pzeusbc54tvhw5jgpyw8pwz2x6gs, cgibson-swyftx, JulienZD and 71 more