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

##### Description Related to #17874, the `@Valid` bean validation annotation also gets added on TYPE_USE in the builder. ```java private static final class PartnersRestBuilderImpl extends PartnersRestBuilder { @Override protected PartnersRestBuilderImpl...

Issue: Bug

### Is your feature request related to a problem? Please describe. As of openapi-generator 7.2.0 the following code gets generated with the jaxrs-spec generator: ``` private @Valid List addresses; ```...

Enhancement: Feature

fix #17546 This PR is part of the effort to split PR #17548 Changes request parsing from checking `.body.isNotEmpty` to `.bodyBytes.isNotEmpty`, because .body implicitly converts to a utf-8 string, and...

##### Description When generating a dart-dio client, unusable Enums are created. ```ImageResolutionEnum resolution = ImageResolutionEnum.number196``` The only property of the enum is `name` which is just a string of the...

fix #12161 This PR is part of the effort to split PR https://github.com/OpenAPITools/openapi-generator/pull/17548 This PR is a bit meatier than the others -- I copied much of the logic for...

fix #15393 This PR is part of the effort to split PR #17548 Adds a special case for handling deserialization of non-explicit doubles. e.g, given the definition: ```yaml double_obj: properties:...

fix #17563 The test runner is too outdated to be used for Dart 3 projects. This change updates the test runner to be constrained to `>=1.21.6

##### Description 1. I am using `springdoc` to generate `openapi 3` schema for one of my microservice API. - tools versions: ``` implementation 'org.springdoc:springdoc-openapi-ui:1.6.11' ``` I tried to add `implementation...

Use `exists()` function to test for property existence on dictionaries/Maps rather than sprinkling the code with `json.key === null || json.key === undefined`. In addition, the code removes the implicit...

Client: TypeScript
Enhancement: General

I came across schemas containing NULL as enum item resulting un-compile-able code. Dependant on #17802 ### PR checklist - [X] Read the [contribution guidelines](https://github.com/openapitools/openapi-generator/blob/master/CONTRIBUTING.md). - [X] Pull Request title clearly...