openapi-generator icon indicating copy to clipboard operation
openapi-generator copied to clipboard

OpenAPI Generator allows generation of API client libraries (SDK generation), server stubs, documentation and configuration automatically given an OpenAPI Spec (v2, v3)

Results 1209 openapi-generator issues
Sort by recently updated
recently updated
newest added

This PR fixes this issue https://github.com/OpenAPITools/openapi-generator/issues/22209 ### PR checklist - [x] Read the [contribution guidelines](https://github.com/openapitools/openapi-generator/blob/master/CONTRIBUTING.md). - [x] Pull Request title clearly describes the work in the pull request and Pull...

### Is your feature request related to a problem? Please describe. Jackson 3 support for various java code generator. ## Describe the solution you'd like A configuration toggle in the...

Enhancement: Feature

#### Bug Report Checklist - [X] Have you provided a full/minimal spec to reproduce the issue? - [X] Have you validated the input using an OpenAPI validator? - [X] Have...

Issue: Bug

This change brings the class name construction in line with the other Kotlin client generators. Fixes #22503 As described in the issue, the Vert.X template didn't construct the enum class...

#### Bug Report Checklist - [X] Have you provided a full/minimal spec to reproduce the issue? - [X] Have you validated the input using an OpenAPI validator? - [X] Have...

Issue: Bug

#### Bug Report Checklist - [X] Have you provided a full/minimal spec to reproduce the issue? - [X] Have you validated the input using an OpenAPI validator ([example](https://apitools.dev/swagger-parser/online/))? - [X]...

Issue: Bug

I'm trying to find a way to directly import the generated api calls with minimal boilerplate. Currently, that's the most minimal I found: ``` import { Configuration, Post, PostsApi }...

RestSharp and HttpClient are now moved to their own generator called csharp-restsharp. A future PR will strip generic host references from csharp-restsharp generator, and restsharp/httpclient references from the generic host...

This change adds new Method signatures to the `HostConfiguration` in regards of `AddApiHttpClients` to support also the `AddHttpClient(Action configureClient)` variant. This allows to access the `ServiceProvider` during configuration which can...

`TokenProvider.GetAsync()` was declared with visibility modifier `internal`. This resulted in a generated class which could only be implemented in the same module, although the class itself is declared as `public`...