openapi-generator
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)
We need to add converters because spring doesn't use jackson for path and query params (cf spring-projects/spring-boot#24233 ) This will fix #12874 ### PR checklist - [x] Read the [contribution...
#### Bug Report Checklist - [ ] Have you provided a full/minimal spec to reproduce the issue? - [x] Have you validated the input using an OpenAPI validator ([example](https://apidevtools.org/swagger-parser/online/))? -...
#### 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://apidevtools.org/swagger-parser/online/))? - [...
##### Description When using `aspnetCoreVersion=6.0` parameter the generated Dockerfile is corrupt. ##### openapi-generator version openapi-generator-cli-6.2.0.jar https://repo1.maven.org/maven2/org/openapitools/openapi-generator-cli/6.2.0/openapi-generator-cli-6.2.0.jar ##### OpenAPI declaration file content or url https://raw.githubusercontent.com/swagger-api/swagger-petstore/master/src/main/resources/openapi.yaml ##### Command line used for generation...
### Is your feature request related to a problem? Please describe. We want to use multiple APIs with different base paths, but the base path variable is static with fixed...
The generated *.service.ts files did not compile when query-parameters with isCollectionFormatMulti=true It produced errors in the following way: ``` ERROR in ./generated_sources/finapi/access-service/api/transactions.service.ts 478:33-39 TS2339: Property 'append' does not exist on...
Fixes #13632 by updating the mustache templates that did not follow [ST1005](https://staticcheck.io/docs/checks#ST1005). Verification can be done by rerunning client generation and staticcheck. ### PR checklist - [x] Read the [contribution...
#### 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://apidevtools.org/swagger-parser/online/))? - [x]...
Fix for issue #13722: verified with successful calls to /v5/oauth/token endpoints for https://github.com/pinterest/api-description @spacether ### PR checklist - [x] Read the [contribution guidelines](https://github.com/openapitools/openapi-generator/blob/master/CONTRIBUTING.md). - [x] Pull Request title clearly describes...
##### Description If using both "properties" and "additionalProperties", the generated class extends HashMap and contains plain properties. Like this: ```java public class Example extends HashMap { @JsonProperty("a") private String a;...