3.34.5

(fix): Fix streaming endpoints incorrectly setting Accept: application/json header. Streaming endpoints (SSE, NDJSON, etc.) now omit the Accept header entirely, allowing the server to negotiate the appropriate streaming format.

3.34.4

(fix): Fix Java SDK compilation error when a path parameter is named key. The lambda variable in requestOptions.getQueryParameters().forEach((key, value) -> {...}) was shadowing the path parameter, causing a “variable key is already defined” compilation error. Lambda variables are now prefixed with underscore to avoid conflicts.