Change Notes
* Support Annotated Type
py
request("GET", "/bus/station")
async def station_search_with_query(
self, response: aiohttp.ClientResponse,
name: Annotated[str, Query] Before, "str | Query"
):
return await response.json()
* Fixed incorrect type when http component is generic type (ex. body type = dict[str, Any])
* ~~Change package name (async-client-decorator -> async-client)~~