File tree Expand file tree Collapse file tree 8 files changed +21
-21
lines changed Expand file tree Collapse file tree 8 files changed +21
-21
lines changed Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ name = "MergePythonClient"
3
3
4
4
[tool .poetry ]
5
5
name = " MergePythonClient"
6
- version = " 2.3.0 "
6
+ version = " 2.3.1 "
7
7
description = " "
8
8
readme = " README.md"
9
9
authors = []
Original file line number Diff line number Diff line change @@ -24,10 +24,10 @@ def __init__(
24
24
25
25
def get_headers (self ) -> typing .Dict [str , str ]:
26
26
headers : typing .Dict [str , str ] = {
27
- "User-Agent" : "MergePythonClient/2.3.0 " ,
27
+ "User-Agent" : "MergePythonClient/2.3.1 " ,
28
28
"X-Fern-Language" : "Python" ,
29
29
"X-Fern-SDK-Name" : "MergePythonClient" ,
30
- "X-Fern-SDK-Version" : "2.3.0 " ,
30
+ "X-Fern-SDK-Version" : "2.3.1 " ,
31
31
** (self .get_custom_headers () or {}),
32
32
}
33
33
if self ._account_token is not None :
Original file line number Diff line number Diff line change @@ -834,9 +834,9 @@ def linked_accounts(self):
834
834
@property
835
835
def passthrough (self ):
836
836
if self ._passthrough is None :
837
- self . _passthrough = resources_accounting_resources_passthrough_client_AsyncPassthroughClient (
838
- client_wrapper = self . _client_wrapper
839
- )
837
+ from . resources . passthrough . client import AsyncPassthroughClient # noqa: E402
838
+
839
+ self . _passthrough = AsyncPassthroughClient ( client_wrapper = self . _client_wrapper )
840
840
return self ._passthrough
841
841
842
842
@property
Original file line number Diff line number Diff line change @@ -609,9 +609,9 @@ def offices(self):
609
609
@property
610
610
def passthrough (self ):
611
611
if self ._passthrough is None :
612
- self . _passthrough = resources_ats_resources_passthrough_client_AsyncPassthroughClient (
613
- client_wrapper = self . _client_wrapper
614
- )
612
+ from . resources . passthrough . client import AsyncPassthroughClient # noqa: E402
613
+
614
+ self . _passthrough = AsyncPassthroughClient ( client_wrapper = self . _client_wrapper )
615
615
return self ._passthrough
616
616
617
617
@property
Original file line number Diff line number Diff line change @@ -579,9 +579,9 @@ def opportunities(self):
579
579
@property
580
580
def passthrough (self ):
581
581
if self ._passthrough is None :
582
- self . _passthrough = resources_crm_resources_passthrough_client_AsyncPassthroughClient (
583
- client_wrapper = self . _client_wrapper
584
- )
582
+ from . resources . passthrough . client import AsyncPassthroughClient # noqa: E402
583
+
584
+ self . _passthrough = AsyncPassthroughClient ( client_wrapper = self . _client_wrapper )
585
585
return self ._passthrough
586
586
587
587
@property
Original file line number Diff line number Diff line change @@ -426,9 +426,9 @@ def linked_accounts(self):
426
426
@property
427
427
def passthrough (self ):
428
428
if self ._passthrough is None :
429
- self . _passthrough = resources_filestorage_resources_passthrough_client_AsyncPassthroughClient (
430
- client_wrapper = self . _client_wrapper
431
- )
429
+ from . resources . passthrough . client import AsyncPassthroughClient # noqa: E402
430
+
431
+ self . _passthrough = AsyncPassthroughClient ( client_wrapper = self . _client_wrapper )
432
432
return self ._passthrough
433
433
434
434
@property
Original file line number Diff line number Diff line change @@ -593,9 +593,9 @@ def locations(self):
593
593
@property
594
594
def passthrough (self ):
595
595
if self ._passthrough is None :
596
- self . _passthrough = resources_hris_resources_passthrough_client_AsyncPassthroughClient (
597
- client_wrapper = self . _client_wrapper
598
- )
596
+ from . resources . passthrough . client import AsyncPassthroughClient # noqa: E402
597
+
598
+ self . _passthrough = AsyncPassthroughClient ( client_wrapper = self . _client_wrapper )
599
599
return self ._passthrough
600
600
601
601
@property
Original file line number Diff line number Diff line change @@ -500,9 +500,9 @@ def linked_accounts(self):
500
500
@property
501
501
def passthrough (self ):
502
502
if self ._passthrough is None :
503
- self . _passthrough = resources_ticketing_resources_passthrough_client_AsyncPassthroughClient (
504
- client_wrapper = self . _client_wrapper
505
- )
503
+ from . resources . passthrough . client import AsyncPassthroughClient # noqa: E402
504
+
505
+ self . _passthrough = AsyncPassthroughClient ( client_wrapper = self . _client_wrapper )
506
506
return self ._passthrough
507
507
508
508
@property
You can’t perform that action at this time.
0 commit comments