99import httpx
1010
1111from .findall import (
12- FindallResource ,
13- AsyncFindallResource ,
14- FindallResourceWithRawResponse ,
15- AsyncFindallResourceWithRawResponse ,
16- FindallResourceWithStreamingResponse ,
17- AsyncFindallResourceWithStreamingResponse ,
12+ FindAllResource ,
13+ AsyncFindAllResource ,
14+ FindAllResourceWithRawResponse ,
15+ AsyncFindAllResourceWithRawResponse ,
16+ FindAllResourceWithStreamingResponse ,
17+ AsyncFindAllResourceWithStreamingResponse ,
1818)
1919from ..._types import Body , Omit , Query , Headers , NotGiven , SequenceNotStr , omit , not_given
2020from ..._utils import is_given , maybe_transform , strip_not_given , async_maybe_transform
@@ -64,8 +64,8 @@ def task_group(self) -> TaskGroupResource:
6464 return TaskGroupResource (self ._client )
6565
6666 @cached_property
67- def findall (self ) -> FindallResource :
68- return FindallResource (self ._client )
67+ def findall (self ) -> FindAllResource :
68+ return FindAllResource (self ._client )
6969
7070 @cached_property
7171 def with_raw_response (self ) -> BetaResourceWithRawResponse :
@@ -266,8 +266,8 @@ def task_group(self) -> AsyncTaskGroupResource:
266266 return AsyncTaskGroupResource (self ._client )
267267
268268 @cached_property
269- def findall (self ) -> AsyncFindallResource :
270- return AsyncFindallResource (self ._client )
269+ def findall (self ) -> AsyncFindAllResource :
270+ return AsyncFindAllResource (self ._client )
271271
272272 @cached_property
273273 def with_raw_response (self ) -> AsyncBetaResourceWithRawResponse :
@@ -478,8 +478,8 @@ def task_group(self) -> TaskGroupResourceWithRawResponse:
478478 return TaskGroupResourceWithRawResponse (self ._beta .task_group )
479479
480480 @cached_property
481- def findall (self ) -> FindallResourceWithRawResponse :
482- return FindallResourceWithRawResponse (self ._beta .findall )
481+ def findall (self ) -> FindAllResourceWithRawResponse :
482+ return FindAllResourceWithRawResponse (self ._beta .findall )
483483
484484
485485class AsyncBetaResourceWithRawResponse :
@@ -502,8 +502,8 @@ def task_group(self) -> AsyncTaskGroupResourceWithRawResponse:
502502 return AsyncTaskGroupResourceWithRawResponse (self ._beta .task_group )
503503
504504 @cached_property
505- def findall (self ) -> AsyncFindallResourceWithRawResponse :
506- return AsyncFindallResourceWithRawResponse (self ._beta .findall )
505+ def findall (self ) -> AsyncFindAllResourceWithRawResponse :
506+ return AsyncFindAllResourceWithRawResponse (self ._beta .findall )
507507
508508
509509class BetaResourceWithStreamingResponse :
@@ -526,8 +526,8 @@ def task_group(self) -> TaskGroupResourceWithStreamingResponse:
526526 return TaskGroupResourceWithStreamingResponse (self ._beta .task_group )
527527
528528 @cached_property
529- def findall (self ) -> FindallResourceWithStreamingResponse :
530- return FindallResourceWithStreamingResponse (self ._beta .findall )
529+ def findall (self ) -> FindAllResourceWithStreamingResponse :
530+ return FindAllResourceWithStreamingResponse (self ._beta .findall )
531531
532532
533533class AsyncBetaResourceWithStreamingResponse :
@@ -550,5 +550,5 @@ def task_group(self) -> AsyncTaskGroupResourceWithStreamingResponse:
550550 return AsyncTaskGroupResourceWithStreamingResponse (self ._beta .task_group )
551551
552552 @cached_property
553- def findall (self ) -> AsyncFindallResourceWithStreamingResponse :
554- return AsyncFindallResourceWithStreamingResponse (self ._beta .findall )
553+ def findall (self ) -> AsyncFindAllResourceWithStreamingResponse :
554+ return AsyncFindAllResourceWithStreamingResponse (self ._beta .findall )
0 commit comments