0.12.0

(feat): support deep object query parameter serialization. If, query parameters are objects then Fern will support serializing them.

1MyFoo:
2 properties:
3 bar: optional<string>
4
5query-parameters:
6 foo: MyFoo

will now be serialized as ?foo[bar]="... and appear in the SDK as a regular object

1client.doThing({
2 foo: {
3 bar: "..."
4 }
5});