4.3.8
(fix):
Include content-type headers when available as part of endpoint request generation.
(fix):
Include content-type headers when available as part of endpoint request generation.
(fix):
Update multipart endpoint generation to propertly omit optional body parameters.
(fix):
Fix README.md and reference.md generation.
(fix):
Update README.md snippet builder to omit invalid snippets during readme config generation.
(fix):
Update shared http_client.py to remove omitted entries during file upload requests.
(feat):
Requests for file download will now allow users to pass in a chunk_size
option that allows them to receive chunks of a specific size
from the resultant iter_bytes
invocation on the response byte stream.
Concretely, a user would leverage the following:
(fix):
The snippet writer now correctly handles base64 strings.
(fix):
The generated README will now have a section that links to the generated
SDK Reference (in reference.md
).
(fix):
Pydantic utilities now correctly handles cases where you have a Pydantic model, with a list of pydantic models as a field, where those models have literals.
Effectively, deep_union_pydantic_objects
now handles lists of objects and merges them appropriately.
(fix):
Dynamic header suppliers, as used within the OAuth provider are now invoked on every request, not just the first.
This was a regression introduced within an earlier version that is now fixed. As a results of this fix, the refresh_token
is now correctly refreshed.