2020from ...types .bulk_schema_envelope import BulkSchemaEnvelope
2121import datetime as dt
2222from ...types .update_bulk_field import UpdateBulkField
23- from ...types .bulk_filter import BulkFilter
23+ from ...types .bulk_filter_2 import BulkFilter2
2424from ...core .client_wrapper import AsyncClientWrapper
2525
2626# this is used as the default value for optional parameters
@@ -35,15 +35,15 @@ def list(
3535 self ,
3636 id : str ,
3737 * ,
38- filters : typing .Optional [typing .Dict [str , typing . Optional [ str ] ]] = None ,
38+ filters : typing .Optional [typing .Dict [str , str ]] = None ,
3939 request_options : typing .Optional [RequestOptions ] = None ,
4040 ) -> ListBulkSchema :
4141 """
4242 Parameters
4343 ----------
4444 id : str
4545
46- filters : typing.Optional[typing.Dict[str, typing.Optional[ str] ]]
46+ filters : typing.Optional[typing.Dict[str, str]]
4747
4848 request_options : typing.Optional[RequestOptions]
4949 Request-specific configuration.
@@ -298,7 +298,7 @@ def update(
298298 disable_data_cutoff : typing .Optional [bool ] = OMIT ,
299299 enabled : typing .Optional [bool ] = OMIT ,
300300 fields : typing .Optional [typing .Sequence [UpdateBulkField ]] = OMIT ,
301- filters : typing .Optional [typing .Sequence [BulkFilter ]] = OMIT ,
301+ filters : typing .Optional [typing .Sequence [BulkFilter2 ]] = OMIT ,
302302 partition_key : typing .Optional [str ] = OMIT ,
303303 tracking_field : typing .Optional [str ] = OMIT ,
304304 user_output_name : typing .Optional [str ] = OMIT ,
@@ -319,7 +319,7 @@ def update(
319319
320320 fields : typing.Optional[typing.Sequence[UpdateBulkField]]
321321
322- filters : typing.Optional[typing.Sequence[BulkFilter ]]
322+ filters : typing.Optional[typing.Sequence[BulkFilter2 ]]
323323
324324 partition_key : typing.Optional[str]
325325
@@ -359,7 +359,7 @@ def update(
359359 object_ = fields , annotation = typing .Sequence [UpdateBulkField ], direction = "write"
360360 ),
361361 "filters" : convert_and_respect_annotation_metadata (
362- object_ = filters , annotation = typing .Sequence [BulkFilter ], direction = "write"
362+ object_ = filters , annotation = typing .Sequence [BulkFilter2 ], direction = "write"
363363 ),
364364 "partition_key" : partition_key ,
365365 "tracking_field" : tracking_field ,
@@ -434,15 +434,15 @@ async def list(
434434 self ,
435435 id : str ,
436436 * ,
437- filters : typing .Optional [typing .Dict [str , typing . Optional [ str ] ]] = None ,
437+ filters : typing .Optional [typing .Dict [str , str ]] = None ,
438438 request_options : typing .Optional [RequestOptions ] = None ,
439439 ) -> ListBulkSchema :
440440 """
441441 Parameters
442442 ----------
443443 id : str
444444
445- filters : typing.Optional[typing.Dict[str, typing.Optional[ str] ]]
445+ filters : typing.Optional[typing.Dict[str, str]]
446446
447447 request_options : typing.Optional[RequestOptions]
448448 Request-specific configuration.
@@ -721,7 +721,7 @@ async def update(
721721 disable_data_cutoff : typing .Optional [bool ] = OMIT ,
722722 enabled : typing .Optional [bool ] = OMIT ,
723723 fields : typing .Optional [typing .Sequence [UpdateBulkField ]] = OMIT ,
724- filters : typing .Optional [typing .Sequence [BulkFilter ]] = OMIT ,
724+ filters : typing .Optional [typing .Sequence [BulkFilter2 ]] = OMIT ,
725725 partition_key : typing .Optional [str ] = OMIT ,
726726 tracking_field : typing .Optional [str ] = OMIT ,
727727 user_output_name : typing .Optional [str ] = OMIT ,
@@ -742,7 +742,7 @@ async def update(
742742
743743 fields : typing.Optional[typing.Sequence[UpdateBulkField]]
744744
745- filters : typing.Optional[typing.Sequence[BulkFilter ]]
745+ filters : typing.Optional[typing.Sequence[BulkFilter2 ]]
746746
747747 partition_key : typing.Optional[str]
748748
@@ -790,7 +790,7 @@ async def main() -> None:
790790 object_ = fields , annotation = typing .Sequence [UpdateBulkField ], direction = "write"
791791 ),
792792 "filters" : convert_and_respect_annotation_metadata (
793- object_ = filters , annotation = typing .Sequence [BulkFilter ], direction = "write"
793+ object_ = filters , annotation = typing .Sequence [BulkFilter2 ], direction = "write"
794794 ),
795795 "partition_key" : partition_key ,
796796 "tracking_field" : tracking_field ,
0 commit comments