openapi-typescript-codegen icon indicating copy to clipboard operation
openapi-typescript-codegen copied to clipboard

NodeJS library that generates Typescript or Javascript clients based on the OpenAPI specification

Results 228 openapi-typescript-codegen issues
Sort by recently updated
recently updated
newest added

Currently, when an object is sent using the `multipart/form-data` content type, none of the individual parts have a set content type. This, however, can be an issue in applications where...

Referring to the following documentation, a model extending another model should place its own properties within an entry of the "allOf" field. https://swagger.io/docs/specification/data-models/inheritance-and-polymorphism/ In the above documentation, the field "rootCause"...

When trying to process the [kraken openapi spec](https://docs.kraken.com/rest/), $ref's are misinterpreted as being external. For example: ```js { "$ref": "#/paths/~1private~1Stake/post/responses/200/content/application~1json/schema/properties/error" } ``` is an internal reference to "/private/Stake", but because...

This is the implementation for the issue #396. **Functionality** A new flag called `useDateType` is added and it is false per default. If it is used, then any generated model...

Hey, while using the native `fetch` package, everything works as expected. However on some places in the code I am using retries. I tried to integrate [`fetch-retry-ts`](https://www.npmjs.com/package/fetch-retry-ts) package that I've...

**Describe the solution you'd like** Hi! First off, the library is awesome! I'd generally like the ability to specify a default timeout for the generated client similar to what axios...

I don't see that the `explode` definitions have any connection in the code currently. Is it possible to add this support specified here: https://swagger.io/docs/specification/serialization/#query What would be nice that the...

First of all, excellent library, it was a pleasure to work with the parsed meta data from `parse()`. Thanks! For the services output, I wanted to generate only functions (instead...

Hello, We have the following situation where we have an Enum with negative and positive numbers as keys to the Enum and the keys generated in typescript collide for negative...

I have the problem that Enum don't seem to be exported in the schema + the transformation of enum to union could be heavily improved. **Current situation** Models: ```ts export...