@@ -47,6 +47,7 @@ def with_streaming_response(self) -> SettingsResourceWithStreamingResponse:
4747 def update (
4848 self ,
4949 * ,
50+ chunk_size : Optional [int ] | Omit = omit ,
5051 exclude_items : Union [str , float , bool , Dict [str , object ], Iterable [object ], None ] | Omit = omit ,
5152 filter_prompt : Optional [str ] | Omit = omit ,
5253 google_drive_client_id : Optional [str ] | Omit = omit ,
@@ -83,6 +84,7 @@ def update(
8384 "/v3/settings" ,
8485 body = maybe_transform (
8586 {
87+ "chunk_size" : chunk_size ,
8688 "exclude_items" : exclude_items ,
8789 "filter_prompt" : filter_prompt ,
8890 "google_drive_client_id" : google_drive_client_id ,
@@ -148,6 +150,7 @@ def with_streaming_response(self) -> AsyncSettingsResourceWithStreamingResponse:
148150 async def update (
149151 self ,
150152 * ,
153+ chunk_size : Optional [int ] | Omit = omit ,
151154 exclude_items : Union [str , float , bool , Dict [str , object ], Iterable [object ], None ] | Omit = omit ,
152155 filter_prompt : Optional [str ] | Omit = omit ,
153156 google_drive_client_id : Optional [str ] | Omit = omit ,
@@ -184,6 +187,7 @@ async def update(
184187 "/v3/settings" ,
185188 body = await async_maybe_transform (
186189 {
190+ "chunk_size" : chunk_size ,
187191 "exclude_items" : exclude_items ,
188192 "filter_prompt" : filter_prompt ,
189193 "google_drive_client_id" : google_drive_client_id ,
0 commit comments