4.10.4
(fix): Fix dynamic snippet generation for endpoints with an optional request body
that wraps a nullable type (e.g. optional<nullable<T>>). The snippet now
wraps the body in Optional.of(...) so it matches the generated client
method signature and compiles.
4.10.3
(fix): Support endpoints whose streaming behavior is toggled by a request parameter
(“stream parameter”). The SDK now resolves the streaming response variant for
these endpoints instead of failing generation.
4.10.2
(fix): Dynamic snippets now compile for endpoints that inline file properties into the
request builder (inline-file-properties: true). File builder fields are typed as
java.io.File, so snippets render new File("path/to/file") (with a placeholder
path when the example omits a file) instead of a FileStream, and body properties
are emitted before file properties so a required body property’s staged-builder step
precedes an optional file step.