Relevant part of api.yml:
requestBody:
content:
application/json:
schema:
type: string
The generated function has correct signature: myFunc(arg: string).
However, fetcher.ts only handles objects and arrays. The string "foo" is this serialized as {"0":"f","1":o","2":"o"}
Is there any workaround atm?