4141 async_to_raw_response_wrapper ,
4242 async_to_streamed_response_wrapper ,
4343)
44+ from .resources import parse_jobs
4445from ._streaming import Stream as Stream , AsyncStream as AsyncStream
4546from ._exceptions import APIStatusError , LandingAiadeError
4647from ._base_client import (
7475
7576
7677class LandingAIADE (SyncAPIClient ):
78+ parse_jobs : parse_jobs .ParseJobsResource
7779 with_raw_response : LandingAIADEWithRawResponse
7880 with_streaming_response : LandingAIADEWithStreamedResponse
7981
@@ -155,6 +157,7 @@ def __init__(
155157 _strict_response_validation = _strict_response_validation ,
156158 )
157159
160+ self .parse_jobs = parse_jobs .ParseJobsResource (self )
158161 self .with_raw_response = LandingAIADEWithRawResponse (self )
159162 self .with_streaming_response = LandingAIADEWithStreamedResponse (self )
160163
@@ -422,6 +425,7 @@ def _make_status_error(
422425
423426
424427class AsyncLandingAIADE (AsyncAPIClient ):
428+ parse_jobs : parse_jobs .AsyncParseJobsResource
425429 with_raw_response : AsyncLandingAIADEWithRawResponse
426430 with_streaming_response : AsyncLandingAIADEWithStreamedResponse
427431
@@ -503,6 +507,7 @@ def __init__(
503507 _strict_response_validation = _strict_response_validation ,
504508 )
505509
510+ self .parse_jobs = parse_jobs .AsyncParseJobsResource (self )
506511 self .with_raw_response = AsyncLandingAIADEWithRawResponse (self )
507512 self .with_streaming_response = AsyncLandingAIADEWithStreamedResponse (self )
508513
@@ -771,6 +776,8 @@ def _make_status_error(
771776
772777class LandingAIADEWithRawResponse :
773778 def __init__ (self , client : LandingAIADE ) -> None :
779+ self .parse_jobs = parse_jobs .ParseJobsResourceWithRawResponse (client .parse_jobs )
780+
774781 self .extract = to_raw_response_wrapper (
775782 client .extract ,
776783 )
@@ -781,6 +788,8 @@ def __init__(self, client: LandingAIADE) -> None:
781788
782789class AsyncLandingAIADEWithRawResponse :
783790 def __init__ (self , client : AsyncLandingAIADE ) -> None :
791+ self .parse_jobs = parse_jobs .AsyncParseJobsResourceWithRawResponse (client .parse_jobs )
792+
784793 self .extract = async_to_raw_response_wrapper (
785794 client .extract ,
786795 )
@@ -791,6 +800,8 @@ def __init__(self, client: AsyncLandingAIADE) -> None:
791800
792801class LandingAIADEWithStreamedResponse :
793802 def __init__ (self , client : LandingAIADE ) -> None :
803+ self .parse_jobs = parse_jobs .ParseJobsResourceWithStreamingResponse (client .parse_jobs )
804+
794805 self .extract = to_streamed_response_wrapper (
795806 client .extract ,
796807 )
@@ -801,6 +812,8 @@ def __init__(self, client: LandingAIADE) -> None:
801812
802813class AsyncLandingAIADEWithStreamedResponse :
803814 def __init__ (self , client : AsyncLandingAIADE ) -> None :
815+ self .parse_jobs = parse_jobs .AsyncParseJobsResourceWithStreamingResponse (client .parse_jobs )
816+
804817 self .extract = async_to_streamed_response_wrapper (
805818 client .extract ,
806819 )
0 commit comments