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)
If a property is nullable, there can be a great difference if a value is null or not present. Without the serialization of null, a nullable field can not be...
According to #11994, this change is updating Kotlin client dependencies, Kotlin version and what version of Ktor is used (2.0.3). ### PR checklist - [x] Read the [contribution guidelines](https://github.com/openapitools/openapi-generator/blob/master/CONTRIBUTING.md). -...
This PR solve the issue describe in https://github.com/OpenAPITools/openapi-generator/issues/13129. The deepcopy function throws a ApiValueError (`Cannot deserialize input data due to missing discriminator. The discriminator property 'className' is missing at path:...
Using the newest version of the parser is also necessary to uncomment and pass the v3.0.3 unit tests that are blocked by: https://github.com/swagger-api/swagger-parser/issues/1761 https://github.com/swagger-api/swagger-parser/issues/1763 https://github.com/swagger-api/swagger-parser/issues/1603
Feat upgrade swagger parser and v303 spec This PR is blocked by swagger-parser because Using the newest version is not possible because it crashes when specs with version 3.0.X. These...
##### Description The deepcopy operation fails in models with `allof` schemas. For example, it is not possible to `deepcopy` the model dog (`from petstore_api.model.dog import Dog`). The deepcopy of the...
#### 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]...
Cleaned up cargo clippy warnings rather than explicitly allowing them. @frol @farcaller @richardwhiuk @paladinzh ### PR checklist - [x] Read the [contribution guidelines](https://github.com/openapitools/openapi-generator/blob/master/CONTRIBUTING.md). - [x] Pull Request title clearly describes...
### Is your feature request related to a problem? Please describe. I need to access a server that is making heavy use of matrix parameters (i.e.: "in": "path", "style": "matrix")....
This PR addresses issue #11965, which causes an unknown response type error to occur during file download, by switching the primitive data type of files in Go from `*os.File` to...