@@ -45,6 +45,7 @@ async def get(
4545 data : Any = None ,
4646 headers : CIMultiDict | Mapping [str , Any ] | None = None ,
4747 timeout : Any | float | None = None ,
48+ auto_read_body : bool | None = None ,
4849 ** kwargs ,
4950 ) -> Response [T_co ]:
5051 return await self .execute (
@@ -56,6 +57,7 @@ async def get(
5657 data = data ,
5758 headers = _map_headers (headers ),
5859 timeout = timeout ,
60+ auto_read_body = auto_read_body ,
5961 kwargs = kwargs ,
6062 )
6163 )
@@ -69,6 +71,7 @@ async def post(
6971 data : Any = None ,
7072 headers : CIMultiDict | Mapping [str , Any ] | None = None ,
7173 timeout : Any | float | None = None ,
74+ auto_read_body : bool | None = None ,
7275 ** kwargs ,
7376 ) -> Response [T_co ]:
7477 return await self .execute (
@@ -80,6 +83,7 @@ async def post(
8083 data = data ,
8184 headers = _map_headers (headers ),
8285 timeout = timeout ,
86+ auto_read_body = auto_read_body ,
8387 kwargs = kwargs ,
8488 )
8589 )
@@ -93,6 +97,7 @@ async def delete(
9397 data : Any = None ,
9498 headers : CIMultiDict | Mapping [str , Any ] | None = None ,
9599 timeout : Any | float | None = None ,
100+ auto_read_body : bool | None = None ,
96101 ** kwargs ,
97102 ) -> Response [T_co ]:
98103 return await self .execute (
@@ -104,6 +109,7 @@ async def delete(
104109 data = data ,
105110 headers = _map_headers (headers ),
106111 timeout = timeout ,
112+ auto_read_body = auto_read_body ,
107113 kwargs = kwargs ,
108114 )
109115 )
@@ -117,6 +123,7 @@ async def put(
117123 data : Any = None ,
118124 headers : CIMultiDict | Mapping [str , Any ] | None = None ,
119125 timeout : Any | float | None = None ,
126+ auto_read_body : bool | None = None ,
120127 ** kwargs ,
121128 ) -> Response [T_co ]:
122129 return await self .execute (
@@ -128,6 +135,7 @@ async def put(
128135 data = data ,
129136 headers = _map_headers (headers ),
130137 timeout = timeout ,
138+ auto_read_body = auto_read_body ,
131139 kwargs = kwargs ,
132140 )
133141 )
@@ -141,6 +149,7 @@ async def patch(
141149 data : Any = None ,
142150 headers : CIMultiDict | Mapping [str , Any ] | None = None ,
143151 timeout : Any | float | None = None ,
152+ auto_read_body : bool | None = None ,
144153 ** kwargs ,
145154 ) -> Response [T_co ]:
146155 return await self .execute (
@@ -152,6 +161,7 @@ async def patch(
152161 data = data ,
153162 headers = _map_headers (headers ),
154163 timeout = timeout ,
164+ auto_read_body = auto_read_body ,
155165 kwargs = kwargs ,
156166 )
157167 )
0 commit comments