openapi-typescript-codegen
openapi-typescript-codegen copied to clipboard
NodeJS library that generates Typescript or Javascript clients based on the OpenAPI specification
The `openapi` script installed by this package conflicts with the one provided by `@redocly/cli`. Could this be renamed to something a little less general and more specific to this project?
Thanks for so awesome library! I'm using openapi-typescript-codegen so many projects. I have in trouble. I wanna use in React Native project for image file upload usecase with expo-image-picker. But...
Dear community, Dear Ferdi, thanks for that awesome generator! For a couple of reasons, mainly tree-shakability (see: https://stackoverflow.com/a/53008692/13468177 ), it is more efficient to use ``` @Injectable({ providedIn: 'root', })...
How to generate multiple services by tags? Instead of just one service. 
In order to download data from API with type e.g. application/pdf I need possibility to define `responseType` as an `arraybuffer` for specific XHR request.
[The search filter of openApi platform](https://api-platform.com/docs/core/filters/#search-filter) uses a questring with both `key` for a single value, and `key[]` for filter on multiple values. Currently this generates duplicated operation params in...
Hi I am working with an API that has parameters like e.g `product.code` and `product.code[]` The problem is that when generated, these parameters are doubled. I added a simple workaround....
First off, let me say how great this library is. We've heavily researched/implemented similar libraries such as `swagger-to-ts` and `dtsgenerator`. There are features in this library that would justify a...
If all schemas in `allOf` are specified via ref, then lib creates correct response types in SDK OpenApi doc: ``` "allOf": [ { "$ref": "#/components/schemas/Schema1" }, { "$ref": "#/components/schemas/Schema2" }...
We have a similar problems like #829 and #981, when trying to access an endpoint with a pdf file and the filename in the header. Therefore I started working on...