1.44.5
(fix): Support endpoints that use URI- or path-based pagination (next_uri / next_path).
The v1 generator no longer aborts with “uri pagination is not supported yet”; these
endpoints are generated as regular methods that return the full response.
1.44.4
(fix): Support endpoints that return a bytes response. The v1 generator no longer
aborts with “bytes requests are not supported yet”, and the generated client
method now returns []byte (reading the full response body).
1.44.3
(fix): Fixed the generated dynamic code snippets for endpoints with a bytes request
body so that they compile. A bytes body referenced as a property of a request
wrapper is now instantiated as a []byte, matching the generated struct
field, and a standalone bytes parameter now defaults to io.Reader (matching
the SDK’s useReaderForBytesRequest default) instead of being keyed off an
unset config value. Previously the snippet wrapped the wrapped-request body in
bytes.NewReader, producing code that did not match the []byte field type.