@@ -53,6 +53,7 @@ class Finch(SyncAPIClient):
5353 account : resources .Account
5454 webhooks : resources .Webhooks
5555 request_forwarding : resources .RequestForwarding
56+ jobs : resources .Jobs
5657 with_raw_response : FinchWithRawResponse
5758
5859 # client options
@@ -136,6 +137,7 @@ def __init__(
136137 self .account = resources .Account (self )
137138 self .webhooks = resources .Webhooks (self )
138139 self .request_forwarding = resources .RequestForwarding (self )
140+ self .jobs = resources .Jobs (self )
139141 self .with_raw_response = FinchWithRawResponse (self )
140142
141143 @property
@@ -357,6 +359,7 @@ class AsyncFinch(AsyncAPIClient):
357359 account : resources .AsyncAccount
358360 webhooks : resources .AsyncWebhooks
359361 request_forwarding : resources .AsyncRequestForwarding
362+ jobs : resources .AsyncJobs
360363 with_raw_response : AsyncFinchWithRawResponse
361364
362365 # client options
@@ -440,6 +443,7 @@ def __init__(
440443 self .account = resources .AsyncAccount (self )
441444 self .webhooks = resources .AsyncWebhooks (self )
442445 self .request_forwarding = resources .AsyncRequestForwarding (self )
446+ self .jobs = resources .AsyncJobs (self )
443447 self .with_raw_response = AsyncFinchWithRawResponse (self )
444448
445449 @property
@@ -664,6 +668,7 @@ def __init__(self, client: Finch) -> None:
664668 self .providers = resources .ProvidersWithRawResponse (client .providers )
665669 self .account = resources .AccountWithRawResponse (client .account )
666670 self .request_forwarding = resources .RequestForwardingWithRawResponse (client .request_forwarding )
671+ self .jobs = resources .JobsWithRawResponse (client .jobs )
667672
668673
669674class AsyncFinchWithRawResponse :
@@ -672,6 +677,7 @@ def __init__(self, client: AsyncFinch) -> None:
672677 self .providers = resources .AsyncProvidersWithRawResponse (client .providers )
673678 self .account = resources .AsyncAccountWithRawResponse (client .account )
674679 self .request_forwarding = resources .AsyncRequestForwardingWithRawResponse (client .request_forwarding )
680+ self .jobs = resources .AsyncJobsWithRawResponse (client .jobs )
675681
676682
677683Client = Finch
0 commit comments