mergepythonclient 2.3.0__py3-none-any.whl → 2.3.1__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- merge/core/client_wrapper.py +2 -2
- merge/resources/accounting/client.py +3 -3
- merge/resources/ats/client.py +3 -3
- merge/resources/crm/client.py +3 -3
- merge/resources/filestorage/client.py +3 -3
- merge/resources/hris/client.py +3 -3
- merge/resources/ticketing/client.py +3 -3
- {mergepythonclient-2.3.0.dist-info → mergepythonclient-2.3.1.dist-info}/METADATA +1 -1
- {mergepythonclient-2.3.0.dist-info → mergepythonclient-2.3.1.dist-info}/RECORD +11 -11
- {mergepythonclient-2.3.0.dist-info → mergepythonclient-2.3.1.dist-info}/LICENSE.md +0 -0
- {mergepythonclient-2.3.0.dist-info → mergepythonclient-2.3.1.dist-info}/WHEEL +0 -0
merge/core/client_wrapper.py
CHANGED
|
@@ -24,10 +24,10 @@ class BaseClientWrapper:
|
|
|
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.
|
|
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.
|
|
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:
|
|
@@ -834,9 +834,9 @@ class AsyncAccountingClient:
|
|
|
834
834
|
@property
|
|
835
835
|
def passthrough(self):
|
|
836
836
|
if self._passthrough is None:
|
|
837
|
-
|
|
838
|
-
|
|
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
|
merge/resources/ats/client.py
CHANGED
|
@@ -609,9 +609,9 @@ class AsyncAtsClient:
|
|
|
609
609
|
@property
|
|
610
610
|
def passthrough(self):
|
|
611
611
|
if self._passthrough is None:
|
|
612
|
-
|
|
613
|
-
|
|
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
|
merge/resources/crm/client.py
CHANGED
|
@@ -579,9 +579,9 @@ class AsyncCrmClient:
|
|
|
579
579
|
@property
|
|
580
580
|
def passthrough(self):
|
|
581
581
|
if self._passthrough is None:
|
|
582
|
-
|
|
583
|
-
|
|
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
|
|
@@ -426,9 +426,9 @@ class AsyncFilestorageClient:
|
|
|
426
426
|
@property
|
|
427
427
|
def passthrough(self):
|
|
428
428
|
if self._passthrough is None:
|
|
429
|
-
|
|
430
|
-
|
|
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
|
merge/resources/hris/client.py
CHANGED
|
@@ -593,9 +593,9 @@ class AsyncHrisClient:
|
|
|
593
593
|
@property
|
|
594
594
|
def passthrough(self):
|
|
595
595
|
if self._passthrough is None:
|
|
596
|
-
|
|
597
|
-
|
|
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
|
|
@@ -500,9 +500,9 @@ class AsyncTicketingClient:
|
|
|
500
500
|
@property
|
|
501
501
|
def passthrough(self):
|
|
502
502
|
if self._passthrough is None:
|
|
503
|
-
|
|
504
|
-
|
|
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
|
|
@@ -2,7 +2,7 @@ merge/__init__.py,sha256=7CpPMlOY5g9lp7RtOX7wB2O6rqlVjboKEcEwmF0EHL4,1582
|
|
|
2
2
|
merge/client.py,sha256=1U0ic4bNZX2OmUFTlpEdSdCCIy4R2jd7S-qN9V9dJ60,10412
|
|
3
3
|
merge/core/__init__.py,sha256=HNk-wnH_j2yAf7IroaZM9JJFe4mnkNHq06t2QmaBweg,3862
|
|
4
4
|
merge/core/api_error.py,sha256=44vPoTyWN59gonCIZMdzw7M1uspygiLnr3GNFOoVL2Q,614
|
|
5
|
-
merge/core/client_wrapper.py,sha256=
|
|
5
|
+
merge/core/client_wrapper.py,sha256=otWnYor99IW_iKdt7H0FHkLGysSw2mvDEoxxVS2CM2g,3096
|
|
6
6
|
merge/core/datetime_utils.py,sha256=nBys2IsYrhPdszxGKCNRPSOCwa-5DWOHG95FB8G9PKo,1047
|
|
7
7
|
merge/core/file.py,sha256=d4NNbX8XvXP32z8KpK2Xovv33nFfruIrpz0QWxlgpZk,2663
|
|
8
8
|
merge/core/force_multipart.py,sha256=cH981xLy0kZVKiZZkFoeUjgJ2Zuq7KXB2aRAnmHzRDc,477
|
|
@@ -19,7 +19,7 @@ merge/environment.py,sha256=_NIx-kWS6kpztpqgz6_abDGnsZkLAO1WayrcM8gKetw,260
|
|
|
19
19
|
merge/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
20
20
|
merge/resources/__init__.py,sha256=FsMGYvolC7TxsLxxFhlZSaO7O-b7NPgkU7L68g_otCE,1169
|
|
21
21
|
merge/resources/accounting/__init__.py,sha256=3ND0F_r5Hd8xXRyBDuiWEh3toqccZ41TXRrq38aSE74,65016
|
|
22
|
-
merge/resources/accounting/client.py,sha256=
|
|
22
|
+
merge/resources/accounting/client.py,sha256=q9wsTtpsfFqV6PRO0SmFCg50mgNLs3vHKfZr1IkNSU4,41652
|
|
23
23
|
merge/resources/accounting/raw_client.py,sha256=Z2qfSB2hS9YozVdwPsSvbLeH5yeWbIaDNihubIguhNI,418
|
|
24
24
|
merge/resources/accounting/resources/__init__.py,sha256=k0xHMKk-c1B4XhBQKR9kEatvtyxi5fycc9VmvTpjrKY,10467
|
|
25
25
|
merge/resources/accounting/resources/account_details/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
|
|
@@ -743,7 +743,7 @@ merge/resources/accounting/types/vendor_credit_vendor.py,sha256=Hbx_dA_l0j2zLa1L
|
|
|
743
743
|
merge/resources/accounting/types/warning_validation_problem.py,sha256=RXDtt3t3FwIeGGXkIr_OHOAybDZg44L_5hOqa2sLlJ0,736
|
|
744
744
|
merge/resources/accounting/types/webhook_receiver.py,sha256=g4KQnc-vZPJGlXK-OOFIn2WGyTLKoeaq9TPWQ46VwFY,623
|
|
745
745
|
merge/resources/ats/__init__.py,sha256=0rpVAj_nKJ_NVe0MKqAiH55ZrcpkbyYPHdjLV5iXwyw,28201
|
|
746
|
-
merge/resources/ats/client.py,sha256=
|
|
746
|
+
merge/resources/ats/client.py,sha256=qQ9P4otZb8pjLefk4kl3j1dWl-XM2RKVBlco48wcPP8,28362
|
|
747
747
|
merge/resources/ats/raw_client.py,sha256=MRKuoo8ARCLmq_R2YdrQSmcB_KzqPPaOdemqPBYCLF4,404
|
|
748
748
|
merge/resources/ats/resources/__init__.py,sha256=mHgT5XcNYiavmP3uvDZ3T4puHDwLz0hjtC91N75276o,6939
|
|
749
749
|
merge/resources/ats/resources/account_details/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
|
|
@@ -1105,7 +1105,7 @@ merge/resources/ats/types/visibility_enum.py,sha256=c2n5A9Y267-9PpEqpNZaSCL-_-do
|
|
|
1105
1105
|
merge/resources/ats/types/warning_validation_problem.py,sha256=RXDtt3t3FwIeGGXkIr_OHOAybDZg44L_5hOqa2sLlJ0,736
|
|
1106
1106
|
merge/resources/ats/types/webhook_receiver.py,sha256=g4KQnc-vZPJGlXK-OOFIn2WGyTLKoeaq9TPWQ46VwFY,623
|
|
1107
1107
|
merge/resources/crm/__init__.py,sha256=I1Dx1Bc69UOTtkwMknaPpfK2x4uDn1Zn_1QR7h_FyTY,26379
|
|
1108
|
-
merge/resources/crm/client.py,sha256=
|
|
1108
|
+
merge/resources/crm/client.py,sha256=fVekLfdA7HvVqzwoS7JmTGndvxImj57vZSHFAreedhc,27081
|
|
1109
1109
|
merge/resources/crm/raw_client.py,sha256=9guTBIuihjloPhDBKAPHrND1Kuz_85FpO3OrLwqeXA8,404
|
|
1110
1110
|
merge/resources/crm/resources/__init__.py,sha256=zTsmeaHeecf4stpa2XgviiX39tmjxp_rE8872khkDfY,5239
|
|
1111
1111
|
merge/resources/crm/resources/account_details/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
|
|
@@ -1450,7 +1450,7 @@ merge/resources/crm/types/validation_problem_source.py,sha256=0ayE7x_uM8R0pzVRz9
|
|
|
1450
1450
|
merge/resources/crm/types/warning_validation_problem.py,sha256=RXDtt3t3FwIeGGXkIr_OHOAybDZg44L_5hOqa2sLlJ0,736
|
|
1451
1451
|
merge/resources/crm/types/webhook_receiver.py,sha256=g4KQnc-vZPJGlXK-OOFIn2WGyTLKoeaq9TPWQ46VwFY,623
|
|
1452
1452
|
merge/resources/filestorage/__init__.py,sha256=ZVa6lpbCHPmJSMoRjs8cI-h63Bbg-B2j0aEnRck40M8,14530
|
|
1453
|
-
merge/resources/filestorage/client.py,sha256=
|
|
1453
|
+
merge/resources/filestorage/client.py,sha256=5lpXVa5LRKl6ug9tK49OVABRWaMSZjKyiapi4-P9fi4,19550
|
|
1454
1454
|
merge/resources/filestorage/raw_client.py,sha256=PVXeg6hYhZZhtj_lhnch8LsrgH9xYIYyABSbBSWJSWA,420
|
|
1455
1455
|
merge/resources/filestorage/resources/__init__.py,sha256=9j1EAueR9hUZ5ew6DTVbPq28D1gpsmH_mjFXjWltk_E,3572
|
|
1456
1456
|
merge/resources/filestorage/resources/account_details/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
|
|
@@ -1650,7 +1650,7 @@ merge/resources/filestorage/types/validation_problem_source.py,sha256=0ayE7x_uM8
|
|
|
1650
1650
|
merge/resources/filestorage/types/warning_validation_problem.py,sha256=RXDtt3t3FwIeGGXkIr_OHOAybDZg44L_5hOqa2sLlJ0,736
|
|
1651
1651
|
merge/resources/filestorage/types/webhook_receiver.py,sha256=g4KQnc-vZPJGlXK-OOFIn2WGyTLKoeaq9TPWQ46VwFY,623
|
|
1652
1652
|
merge/resources/hris/__init__.py,sha256=nYuI8b9JdC9faVq3g_-9jf0ah5tLI0cYEG-mQxgBXkg,27721
|
|
1653
|
-
merge/resources/hris/client.py,sha256=
|
|
1653
|
+
merge/resources/hris/client.py,sha256=_pslDxdDucvwUG5erPzYXhhMX1MTx97Q4gNTsWhQBNQ,28896
|
|
1654
1654
|
merge/resources/hris/raw_client.py,sha256=kHhDKYWwOVTqP9-59tv7SdcpgDaM6l5XJWXrSYfX5hs,406
|
|
1655
1655
|
merge/resources/hris/resources/__init__.py,sha256=LatDVy6plCfoTGaeHEj3u7q3lzZv8HWZ1Ba8YiOq17g,9528
|
|
1656
1656
|
merge/resources/hris/resources/account_details/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
|
|
@@ -2007,7 +2007,7 @@ merge/resources/hris/types/validation_problem_source.py,sha256=0ayE7x_uM8R0pzVRz
|
|
|
2007
2007
|
merge/resources/hris/types/warning_validation_problem.py,sha256=RXDtt3t3FwIeGGXkIr_OHOAybDZg44L_5hOqa2sLlJ0,736
|
|
2008
2008
|
merge/resources/hris/types/webhook_receiver.py,sha256=g4KQnc-vZPJGlXK-OOFIn2WGyTLKoeaq9TPWQ46VwFY,623
|
|
2009
2009
|
merge/resources/ticketing/__init__.py,sha256=wi2p8mpxTNxTEQYYgWcb-XWpG34Wj3TMg2gjbnzpkHs,21310
|
|
2010
|
-
merge/resources/ticketing/client.py,sha256=
|
|
2010
|
+
merge/resources/ticketing/client.py,sha256=AouUaLUMH7eoBsdcnYBOeqM6BHcpWTcnZLeamkjDPwQ,24097
|
|
2011
2011
|
merge/resources/ticketing/raw_client.py,sha256=8HRcdo0adAZI5EQ6hFobLqvdQsox9Qo5n45Q8wF-RZs,416
|
|
2012
2012
|
merge/resources/ticketing/resources/__init__.py,sha256=sBrI7BsMq735oKMF7ZSu3jYAqUfDAgskyK5IQinQiG4,5154
|
|
2013
2013
|
merge/resources/ticketing/resources/account_details/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
|
|
@@ -2294,7 +2294,7 @@ merge/resources/ticketing/types/viewer_user.py,sha256=VrOx8xWvNadSYjdErIMg2pPsHV
|
|
|
2294
2294
|
merge/resources/ticketing/types/warning_validation_problem.py,sha256=RXDtt3t3FwIeGGXkIr_OHOAybDZg44L_5hOqa2sLlJ0,736
|
|
2295
2295
|
merge/resources/ticketing/types/webhook_receiver.py,sha256=g4KQnc-vZPJGlXK-OOFIn2WGyTLKoeaq9TPWQ46VwFY,623
|
|
2296
2296
|
merge/version.py,sha256=kLtHrVsKjnCqlIC_JtezQUWrCPQkXhjpD_2pdlcGh18,84
|
|
2297
|
-
mergepythonclient-2.3.
|
|
2298
|
-
mergepythonclient-2.3.
|
|
2299
|
-
mergepythonclient-2.3.
|
|
2300
|
-
mergepythonclient-2.3.
|
|
2297
|
+
mergepythonclient-2.3.1.dist-info/LICENSE.md,sha256=WKO7xLnLSUInldiq5i25eVqKAjwIUKenaS4Cgir2Iuw,3275
|
|
2298
|
+
mergepythonclient-2.3.1.dist-info/METADATA,sha256=B-0YkEiEhzcIex5WSuDwQAZ3ER5eEmGOvcSW_pozbEo,7270
|
|
2299
|
+
mergepythonclient-2.3.1.dist-info/WHEEL,sha256=Zb28QaM1gQi8f4VCBhsUklF61CTlNYfs9YAZn-TOGFk,88
|
|
2300
|
+
mergepythonclient-2.3.1.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|