2.1.0

(fix): Fix wire test generation for types with required constructor fields. Previously, the test generator would pass empty arrays [] as constructor arguments when no example values were provided for required fields (e.g., new SomeType([])). Now generates appropriate placeholder values based on each field’s type (e.g., new SomeType(['ids' => [1]])).

(feat): Add support for fileDownload (application/octet-stream) and bytes response types. Previously, endpoints returning binary data would throw an error at runtime because no success handling was generated. Now these endpoints return the raw response body as a string.