Skip to content

0.19.1 (2024-03-27)

Latest
Compare
Choose a tag to compare
@dbanty dbanty released this 27 Mar 00:50
· 14 commits to main since this release
30665ea

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-stream

This 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!