swagger-typescript-codegen
swagger-typescript-codegen copied to clipboard
A Swagger Codegenerator tailored for typescript.
as mentioned https://github.com/mtennoe/swagger-typescript-codegen/pull/86#issuecomment-524107573 treat additionalProperties === undefined the same way as additionalProperties === false ###### Microsoft Reviewers: [Open in CodeFlow](https://portal.fabricbot.ms/api/codeflow?pullrequest=https://github.com/mtennoe/swagger-typescript-codegen/pull/131)
I generated some code, and it fails the Typescript build with Property 'default' does not exist on type 'SuperAgentStatic' The code in question is const agent = this.configureAgentHandler ? this.configureAgentHandler(request.default)...
Is there a changelog somewhere? We're currently on 1.10.0 and it would be neat to upgrade, but I'd wanna see what has changed/improved/gotten deprecated obviously 🙂
Suppose we have a Date query param ``` @Get() getNextDate(@Query('date') date: Date) { .. } ``` A generated swagger parameter definition for query param would be ``` "parameters": [ {...
It would be nice if there was some general guidelines. #### Coding Guidelines Since there is prettier installed and pre-commit hook, direct guidelines are not required. #### File Guidelines Right...
### Justification Our API is going to be quite big and generating it all into one file will make the file very very large. I would like to avoid this,...
### Justification Right now only [Mustache](https://mustache.github.io/) is supported, I can see the benefits of the template language. It's just a little bit off putting for people how doesn't know it...
There is some seemingly weird things going on around the securityDefinitions and the security related properties on the methods. We should figure out what these are actually supposed to do...
Hello, The parameter type nullable is not supported. Location: https://github.com/mtennoe/swagger-typescript-codegen/blob/master/src/view-data/parameter.ts#L89 parameter: ```json {"name":"product_code","description":"product_code","required":false,"in":"nullable","type":"string"} ``` It would be nice if the exception contains the failed type too, it makes it a...