0.19.1 (2024-03-27)
Features
Add config option to override content types
You can now define a content_type_overrides field in your config.yml:
content_type_overrides:
application/zip: application/octet-streamThis allows openapi-python-client to generate code for content types it doesn't recognize.
PR #1010 closes #810. Thanks @gaarutyunov!
Fixes
Add aliases to Client for pyright
This should resolve incompatibilities between the generated Client class and the pyright type checker.
PR #1009 closes #909. Thanks @patrick91!