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

**Describe the bug** Environment: Project for next-js with "typescript": "^4.9.4", template for client axios When I'm trying to call any request, I receive error on line 54 of CancelablePromise.ts file:...

**Describe the solution you'd like** let's say my schema is `be.company.User` in my yaml file. I would like that the codegen to generate the model as `User`. Unfortunately, as of...

Hey there, Is there any chance you could add support for binary response types (images)? I saw that this was already requested 2 years ago https://github.com/ferdikoomen/openapi-typescript-codegen/issues/802 Here's a partial openAPI...

Like in the title. Is there an option to set, that will change the name of models from camelCase to PascalCase, and option that would set model to be declared...

I have a usecase where it would be helpful to support constant values via the [`const` keyword](https://json-schema.org/understanding-json-schema/reference/const). Say we have an api spec containing some models like: ``` { "components":...

I've got cookie based auth but I cannot make it work on my NextJS Project in server components. Working examples: 1. Working example in server component ```javascript const getData2 =...

**Describe the solution you'd like** Is it possible to support axios-fetch-adapter when generating core with axios? Looks like axios doesn't work in browsers without the adapter. Some folks want to...

My API uses snake case names. I want API calls in this form: ```typescript public objectList({ page, filter_id, filter_status, }: { page?: (string | null), filter_id?: (number | null), filter_status?:...

#### Use case: I have server A that exposes "api A" to the UI (I develop/control server A) I have server B that exposes "api B" (I do not develop/control...