swagger-typescript-api
swagger-typescript-api copied to clipboard
TypeScript API generator via Swagger scheme
Can we have single axios http client instance and we can use that instance across all the generated Types class I have 2 json file and based on that I...
Is there a reason that the `query` property is omitted from the type? https://github.com/acacode/swagger-typescript-api/blob/2b6db2346028fe6fb1f311bf5b1221a89837032e/templates/base/http-clients/axios-http-client.ejs#L25
I'm experiencing TypeScript errors that come from the generated `http-client.ts`. Here are the errors:  My build passes with version `13.0.10` of swagger-typescript-api but not with...
My Project file.prettierrc.cjs is always removed by swagger-typescript-api (recent versions)
When using a `multipart/form-data` content type, the generated API code provides a private function to format certain types : `contentFormatters`. Currently on version `12.0.2` the function is : ```ts private...
Due to how unwrapping data work, it is possible that the `request` function will return an undefined value when an error is thrown that is not reflected on the type...
Hello, We have implemented this feature, with two reasons : - We prefer use types over interfaces for our domain - In our project we have a french named domain...
When using the `--extract-response-body` option, the format option of requests disappears. For example (from `tests/spec/extractResponseBody.js`): When running with extractResponseBody: true, the generated code looks like this: ```typescript this.request({ path: `/pet/findByStatus`,...