Handling parameters that include mapped types with Date
as a generic argument
#1731
Open
2 of 4 tasks
Date
as a generic argument
#1731
This is reopening of an issue #1596, which also got the potential fix #1597 which never got merged.
An error is raised by invoking
npx tsoa spec-and-routes
when one of the endpoints within routers has a@Body()
parameter that includes a mapped type field withDate
as a generic argument. The error is introduced with thetsoa 6.0.0
version. It was not present up until and including thetsoa 5.1.1
version.Sorting
I'm submitting a ...
I confirm that I
Expected Behavior
The following TypeScript code should be processed by
tsoa spec-and-routes
without any issue.Current Behavior
For a TypeScript code in the Expected Behavior section, primitive types
string
,number
, andboolean
do not cause the error. I also think that custom simple JavaScript classes do not cause the error. Standard JavaScriptDate
type, on the other hand, seems to be causing an error.The following error is returned by
tsoa spec-and-routes
.Steps to Reproduce
The bug should be easily reproducible using the code supplied in the Expected Behavior section.
There is also a devbox on codesandbox.io.
Context (Environment)
In addition to the devbox where
yarn
was used, the error persist on the local machine wherenpm
was used.Version of the library:
6.6.0
Version of NodeJS:
v20.12.0
The text was updated successfully, but these errors were encountered: