mergepythonclient 1.1.1__py3-none-any.whl → 1.1.2__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/client.py +4 -4
- merge/core/client_wrapper.py +1 -1
- merge/resources/accounting/__init__.py +2 -0
- merge/resources/accounting/resources/__init__.py +2 -0
- merge/resources/accounting/resources/async_passthrough/__init__.py +3 -0
- merge/resources/accounting/resources/async_passthrough/client.py +9 -9
- merge/resources/accounting/resources/async_passthrough/types/__init__.py +5 -0
- merge/resources/accounting/resources/async_passthrough/types/async_passthrough_retrieve_response.py +6 -0
- merge/resources/ats/__init__.py +2 -0
- merge/resources/ats/resources/__init__.py +2 -0
- merge/resources/ats/resources/async_passthrough/__init__.py +3 -0
- merge/resources/ats/resources/async_passthrough/client.py +9 -9
- merge/resources/ats/resources/async_passthrough/types/__init__.py +5 -0
- merge/resources/ats/resources/async_passthrough/types/async_passthrough_retrieve_response.py +6 -0
- merge/resources/crm/__init__.py +2 -0
- merge/resources/crm/resources/__init__.py +2 -0
- merge/resources/crm/resources/async_passthrough/__init__.py +3 -0
- merge/resources/crm/resources/async_passthrough/client.py +9 -9
- merge/resources/crm/resources/async_passthrough/types/__init__.py +5 -0
- merge/resources/crm/resources/async_passthrough/types/async_passthrough_retrieve_response.py +6 -0
- merge/resources/filestorage/__init__.py +2 -0
- merge/resources/filestorage/resources/__init__.py +2 -0
- merge/resources/filestorage/resources/async_passthrough/__init__.py +3 -0
- merge/resources/filestorage/resources/async_passthrough/client.py +9 -9
- merge/resources/filestorage/resources/async_passthrough/types/__init__.py +5 -0
- merge/resources/filestorage/resources/async_passthrough/types/async_passthrough_retrieve_response.py +6 -0
- merge/resources/hris/__init__.py +2 -0
- merge/resources/hris/resources/__init__.py +2 -0
- merge/resources/hris/resources/async_passthrough/__init__.py +3 -0
- merge/resources/hris/resources/async_passthrough/client.py +9 -9
- merge/resources/hris/resources/async_passthrough/types/__init__.py +5 -0
- merge/resources/hris/resources/async_passthrough/types/async_passthrough_retrieve_response.py +6 -0
- merge/resources/ticketing/__init__.py +2 -0
- merge/resources/ticketing/resources/__init__.py +2 -0
- merge/resources/ticketing/resources/async_passthrough/__init__.py +3 -0
- merge/resources/ticketing/resources/async_passthrough/client.py +9 -9
- merge/resources/ticketing/resources/async_passthrough/types/__init__.py +5 -0
- merge/resources/ticketing/resources/async_passthrough/types/async_passthrough_retrieve_response.py +6 -0
- {mergepythonclient-1.1.1.dist-info → mergepythonclient-1.1.2.dist-info}/METADATA +1 -1
- {mergepythonclient-1.1.1.dist-info → mergepythonclient-1.1.2.dist-info}/RECORD +42 -30
- {mergepythonclient-1.1.1.dist-info → mergepythonclient-1.1.2.dist-info}/LICENSE.md +0 -0
- {mergepythonclient-1.1.1.dist-info → mergepythonclient-1.1.2.dist-info}/WHEEL +0 -0
merge/client.py
CHANGED
|
@@ -4,16 +4,16 @@ import typing
|
|
|
4
4
|
from .environment import MergeEnvironment
|
|
5
5
|
import httpx
|
|
6
6
|
from .core.client_wrapper import SyncClientWrapper
|
|
7
|
+
from .resources.filestorage.client import FilestorageClient
|
|
7
8
|
from .resources.ats.client import AtsClient
|
|
8
9
|
from .resources.crm.client import CrmClient
|
|
9
|
-
from .resources.filestorage.client import FilestorageClient
|
|
10
10
|
from .resources.hris.client import HrisClient
|
|
11
11
|
from .resources.ticketing.client import TicketingClient
|
|
12
12
|
from .resources.accounting.client import AccountingClient
|
|
13
13
|
from .core.client_wrapper import AsyncClientWrapper
|
|
14
|
+
from .resources.filestorage.client import AsyncFilestorageClient
|
|
14
15
|
from .resources.ats.client import AsyncAtsClient
|
|
15
16
|
from .resources.crm.client import AsyncCrmClient
|
|
16
|
-
from .resources.filestorage.client import AsyncFilestorageClient
|
|
17
17
|
from .resources.hris.client import AsyncHrisClient
|
|
18
18
|
from .resources.ticketing.client import AsyncTicketingClient
|
|
19
19
|
from .resources.accounting.client import AsyncAccountingClient
|
|
@@ -81,9 +81,9 @@ class Merge:
|
|
|
81
81
|
else httpx.Client(timeout=_defaulted_timeout),
|
|
82
82
|
timeout=_defaulted_timeout,
|
|
83
83
|
)
|
|
84
|
+
self.filestorage = FilestorageClient(client_wrapper=self._client_wrapper)
|
|
84
85
|
self.ats = AtsClient(client_wrapper=self._client_wrapper)
|
|
85
86
|
self.crm = CrmClient(client_wrapper=self._client_wrapper)
|
|
86
|
-
self.filestorage = FilestorageClient(client_wrapper=self._client_wrapper)
|
|
87
87
|
self.hris = HrisClient(client_wrapper=self._client_wrapper)
|
|
88
88
|
self.ticketing = TicketingClient(client_wrapper=self._client_wrapper)
|
|
89
89
|
self.accounting = AccountingClient(client_wrapper=self._client_wrapper)
|
|
@@ -151,9 +151,9 @@ class AsyncMerge:
|
|
|
151
151
|
else httpx.AsyncClient(timeout=_defaulted_timeout),
|
|
152
152
|
timeout=_defaulted_timeout,
|
|
153
153
|
)
|
|
154
|
+
self.filestorage = AsyncFilestorageClient(client_wrapper=self._client_wrapper)
|
|
154
155
|
self.ats = AsyncAtsClient(client_wrapper=self._client_wrapper)
|
|
155
156
|
self.crm = AsyncCrmClient(client_wrapper=self._client_wrapper)
|
|
156
|
-
self.filestorage = AsyncFilestorageClient(client_wrapper=self._client_wrapper)
|
|
157
157
|
self.hris = AsyncHrisClient(client_wrapper=self._client_wrapper)
|
|
158
158
|
self.ticketing = AsyncTicketingClient(client_wrapper=self._client_wrapper)
|
|
159
159
|
self.accounting = AsyncAccountingClient(client_wrapper=self._client_wrapper)
|
merge/core/client_wrapper.py
CHANGED
|
@@ -24,7 +24,7 @@ class BaseClientWrapper:
|
|
|
24
24
|
headers: typing.Dict[str, str] = {
|
|
25
25
|
"X-Fern-Language": "Python",
|
|
26
26
|
"X-Fern-SDK-Name": "MergePythonClient",
|
|
27
|
-
"X-Fern-SDK-Version": "1.1.
|
|
27
|
+
"X-Fern-SDK-Version": "1.1.2",
|
|
28
28
|
}
|
|
29
29
|
if self._account_token is not None:
|
|
30
30
|
headers["X-Account-Token"] = self._account_token
|
|
@@ -345,6 +345,7 @@ from .resources import (
|
|
|
345
345
|
AccountsListRequestShowEnumOrigins,
|
|
346
346
|
AccountsRetrieveRequestRemoteFields,
|
|
347
347
|
AccountsRetrieveRequestShowEnumOrigins,
|
|
348
|
+
AsyncPassthroughRetrieveResponse,
|
|
348
349
|
CompanyInfoListRequestExpand,
|
|
349
350
|
CompanyInfoRetrieveRequestExpand,
|
|
350
351
|
ContactsListRequestExpand,
|
|
@@ -452,6 +453,7 @@ __all__ = [
|
|
|
452
453
|
"AddressTypeEnum",
|
|
453
454
|
"AdvancedMetadata",
|
|
454
455
|
"AsyncPassthroughReciept",
|
|
456
|
+
"AsyncPassthroughRetrieveResponse",
|
|
455
457
|
"AuditLogEvent",
|
|
456
458
|
"AuditLogEventEventType",
|
|
457
459
|
"AuditLogEventRole",
|
|
@@ -46,6 +46,7 @@ from .accounts import (
|
|
|
46
46
|
AccountsRetrieveRequestRemoteFields,
|
|
47
47
|
AccountsRetrieveRequestShowEnumOrigins,
|
|
48
48
|
)
|
|
49
|
+
from .async_passthrough import AsyncPassthroughRetrieveResponse
|
|
49
50
|
from .company_info import CompanyInfoListRequestExpand, CompanyInfoRetrieveRequestExpand
|
|
50
51
|
from .contacts import ContactsListRequestExpand, ContactsRetrieveRequestExpand
|
|
51
52
|
from .credit_notes import (
|
|
@@ -72,6 +73,7 @@ __all__ = [
|
|
|
72
73
|
"AccountsListRequestShowEnumOrigins",
|
|
73
74
|
"AccountsRetrieveRequestRemoteFields",
|
|
74
75
|
"AccountsRetrieveRequestShowEnumOrigins",
|
|
76
|
+
"AsyncPassthroughRetrieveResponse",
|
|
75
77
|
"CompanyInfoListRequestExpand",
|
|
76
78
|
"CompanyInfoRetrieveRequestExpand",
|
|
77
79
|
"ContactsListRequestExpand",
|
|
@@ -8,7 +8,7 @@ from ...types.async_passthrough_reciept import AsyncPassthroughReciept
|
|
|
8
8
|
from .....core.pydantic_utilities import parse_obj_as
|
|
9
9
|
from json.decoder import JSONDecodeError
|
|
10
10
|
from .....core.api_error import ApiError
|
|
11
|
-
from
|
|
11
|
+
from .types.async_passthrough_retrieve_response import AsyncPassthroughRetrieveResponse
|
|
12
12
|
from .....core.jsonable_encoder import jsonable_encoder
|
|
13
13
|
from .....core.client_wrapper import AsyncClientWrapper
|
|
14
14
|
|
|
@@ -77,7 +77,7 @@ class AsyncPassthroughClient:
|
|
|
77
77
|
|
|
78
78
|
def retrieve(
|
|
79
79
|
self, async_passthrough_receipt_id: str, *, request_options: typing.Optional[RequestOptions] = None
|
|
80
|
-
) ->
|
|
80
|
+
) -> AsyncPassthroughRetrieveResponse:
|
|
81
81
|
"""
|
|
82
82
|
Retrieves data from earlier async-passthrough POST request
|
|
83
83
|
|
|
@@ -90,7 +90,7 @@ class AsyncPassthroughClient:
|
|
|
90
90
|
|
|
91
91
|
Returns
|
|
92
92
|
-------
|
|
93
|
-
|
|
93
|
+
AsyncPassthroughRetrieveResponse
|
|
94
94
|
|
|
95
95
|
|
|
96
96
|
Examples
|
|
@@ -113,9 +113,9 @@ class AsyncPassthroughClient:
|
|
|
113
113
|
try:
|
|
114
114
|
if 200 <= _response.status_code < 300:
|
|
115
115
|
return typing.cast(
|
|
116
|
-
|
|
116
|
+
AsyncPassthroughRetrieveResponse,
|
|
117
117
|
parse_obj_as(
|
|
118
|
-
type_=
|
|
118
|
+
type_=AsyncPassthroughRetrieveResponse, # type: ignore
|
|
119
119
|
object_=_response.json(),
|
|
120
120
|
),
|
|
121
121
|
)
|
|
@@ -194,7 +194,7 @@ class AsyncAsyncPassthroughClient:
|
|
|
194
194
|
|
|
195
195
|
async def retrieve(
|
|
196
196
|
self, async_passthrough_receipt_id: str, *, request_options: typing.Optional[RequestOptions] = None
|
|
197
|
-
) ->
|
|
197
|
+
) -> AsyncPassthroughRetrieveResponse:
|
|
198
198
|
"""
|
|
199
199
|
Retrieves data from earlier async-passthrough POST request
|
|
200
200
|
|
|
@@ -207,7 +207,7 @@ class AsyncAsyncPassthroughClient:
|
|
|
207
207
|
|
|
208
208
|
Returns
|
|
209
209
|
-------
|
|
210
|
-
|
|
210
|
+
AsyncPassthroughRetrieveResponse
|
|
211
211
|
|
|
212
212
|
|
|
213
213
|
Examples
|
|
@@ -238,9 +238,9 @@ class AsyncAsyncPassthroughClient:
|
|
|
238
238
|
try:
|
|
239
239
|
if 200 <= _response.status_code < 300:
|
|
240
240
|
return typing.cast(
|
|
241
|
-
|
|
241
|
+
AsyncPassthroughRetrieveResponse,
|
|
242
242
|
parse_obj_as(
|
|
243
|
-
type_=
|
|
243
|
+
type_=AsyncPassthroughRetrieveResponse, # type: ignore
|
|
244
244
|
object_=_response.json(),
|
|
245
245
|
),
|
|
246
246
|
)
|
merge/resources/ats/__init__.py
CHANGED
|
@@ -218,6 +218,7 @@ from .resources import (
|
|
|
218
218
|
ActivitiesRetrieveRequestShowEnumOrigins,
|
|
219
219
|
ApplicationsListRequestExpand,
|
|
220
220
|
ApplicationsRetrieveRequestExpand,
|
|
221
|
+
AsyncPassthroughRetrieveResponse,
|
|
221
222
|
CandidatesListRequestExpand,
|
|
222
223
|
CandidatesRetrieveRequestExpand,
|
|
223
224
|
EeocsListRequestRemoteFields,
|
|
@@ -315,6 +316,7 @@ __all__ = [
|
|
|
315
316
|
"ApplicationsListRequestExpand",
|
|
316
317
|
"ApplicationsRetrieveRequestExpand",
|
|
317
318
|
"AsyncPassthroughReciept",
|
|
319
|
+
"AsyncPassthroughRetrieveResponse",
|
|
318
320
|
"Attachment",
|
|
319
321
|
"AttachmentAttachmentType",
|
|
320
322
|
"AttachmentRequest",
|
|
@@ -42,6 +42,7 @@ from .activities import (
|
|
|
42
42
|
ActivitiesRetrieveRequestShowEnumOrigins,
|
|
43
43
|
)
|
|
44
44
|
from .applications import ApplicationsListRequestExpand, ApplicationsRetrieveRequestExpand
|
|
45
|
+
from .async_passthrough import AsyncPassthroughRetrieveResponse
|
|
45
46
|
from .candidates import CandidatesListRequestExpand, CandidatesRetrieveRequestExpand
|
|
46
47
|
from .eeocs import (
|
|
47
48
|
EeocsListRequestRemoteFields,
|
|
@@ -69,6 +70,7 @@ __all__ = [
|
|
|
69
70
|
"ActivitiesRetrieveRequestShowEnumOrigins",
|
|
70
71
|
"ApplicationsListRequestExpand",
|
|
71
72
|
"ApplicationsRetrieveRequestExpand",
|
|
73
|
+
"AsyncPassthroughRetrieveResponse",
|
|
72
74
|
"CandidatesListRequestExpand",
|
|
73
75
|
"CandidatesRetrieveRequestExpand",
|
|
74
76
|
"EeocsListRequestRemoteFields",
|
|
@@ -8,7 +8,7 @@ from ...types.async_passthrough_reciept import AsyncPassthroughReciept
|
|
|
8
8
|
from .....core.pydantic_utilities import parse_obj_as
|
|
9
9
|
from json.decoder import JSONDecodeError
|
|
10
10
|
from .....core.api_error import ApiError
|
|
11
|
-
from
|
|
11
|
+
from .types.async_passthrough_retrieve_response import AsyncPassthroughRetrieveResponse
|
|
12
12
|
from .....core.jsonable_encoder import jsonable_encoder
|
|
13
13
|
from .....core.client_wrapper import AsyncClientWrapper
|
|
14
14
|
|
|
@@ -77,7 +77,7 @@ class AsyncPassthroughClient:
|
|
|
77
77
|
|
|
78
78
|
def retrieve(
|
|
79
79
|
self, async_passthrough_receipt_id: str, *, request_options: typing.Optional[RequestOptions] = None
|
|
80
|
-
) ->
|
|
80
|
+
) -> AsyncPassthroughRetrieveResponse:
|
|
81
81
|
"""
|
|
82
82
|
Retrieves data from earlier async-passthrough POST request
|
|
83
83
|
|
|
@@ -90,7 +90,7 @@ class AsyncPassthroughClient:
|
|
|
90
90
|
|
|
91
91
|
Returns
|
|
92
92
|
-------
|
|
93
|
-
|
|
93
|
+
AsyncPassthroughRetrieveResponse
|
|
94
94
|
|
|
95
95
|
|
|
96
96
|
Examples
|
|
@@ -113,9 +113,9 @@ class AsyncPassthroughClient:
|
|
|
113
113
|
try:
|
|
114
114
|
if 200 <= _response.status_code < 300:
|
|
115
115
|
return typing.cast(
|
|
116
|
-
|
|
116
|
+
AsyncPassthroughRetrieveResponse,
|
|
117
117
|
parse_obj_as(
|
|
118
|
-
type_=
|
|
118
|
+
type_=AsyncPassthroughRetrieveResponse, # type: ignore
|
|
119
119
|
object_=_response.json(),
|
|
120
120
|
),
|
|
121
121
|
)
|
|
@@ -194,7 +194,7 @@ class AsyncAsyncPassthroughClient:
|
|
|
194
194
|
|
|
195
195
|
async def retrieve(
|
|
196
196
|
self, async_passthrough_receipt_id: str, *, request_options: typing.Optional[RequestOptions] = None
|
|
197
|
-
) ->
|
|
197
|
+
) -> AsyncPassthroughRetrieveResponse:
|
|
198
198
|
"""
|
|
199
199
|
Retrieves data from earlier async-passthrough POST request
|
|
200
200
|
|
|
@@ -207,7 +207,7 @@ class AsyncAsyncPassthroughClient:
|
|
|
207
207
|
|
|
208
208
|
Returns
|
|
209
209
|
-------
|
|
210
|
-
|
|
210
|
+
AsyncPassthroughRetrieveResponse
|
|
211
211
|
|
|
212
212
|
|
|
213
213
|
Examples
|
|
@@ -238,9 +238,9 @@ class AsyncAsyncPassthroughClient:
|
|
|
238
238
|
try:
|
|
239
239
|
if 200 <= _response.status_code < 300:
|
|
240
240
|
return typing.cast(
|
|
241
|
-
|
|
241
|
+
AsyncPassthroughRetrieveResponse,
|
|
242
242
|
parse_obj_as(
|
|
243
|
-
type_=
|
|
243
|
+
type_=AsyncPassthroughRetrieveResponse, # type: ignore
|
|
244
244
|
object_=_response.json(),
|
|
245
245
|
),
|
|
246
246
|
)
|
merge/resources/crm/__init__.py
CHANGED
|
@@ -216,6 +216,7 @@ from .types import (
|
|
|
216
216
|
WebhookReceiver,
|
|
217
217
|
)
|
|
218
218
|
from .resources import (
|
|
219
|
+
AsyncPassthroughRetrieveResponse,
|
|
219
220
|
ContactsListRequestExpand,
|
|
220
221
|
ContactsRetrieveRequestExpand,
|
|
221
222
|
EngagementsListRequestExpand,
|
|
@@ -291,6 +292,7 @@ __all__ = [
|
|
|
291
292
|
"AssociationTypeCardinality",
|
|
292
293
|
"AssociationTypeRequestRequest",
|
|
293
294
|
"AsyncPassthroughReciept",
|
|
295
|
+
"AsyncPassthroughRetrieveResponse",
|
|
294
296
|
"AuditLogEvent",
|
|
295
297
|
"AuditLogEventEventType",
|
|
296
298
|
"AuditLogEventRole",
|
|
@@ -33,6 +33,7 @@ from . import (
|
|
|
33
33
|
users,
|
|
34
34
|
webhook_receivers,
|
|
35
35
|
)
|
|
36
|
+
from .async_passthrough import AsyncPassthroughRetrieveResponse
|
|
36
37
|
from .contacts import ContactsListRequestExpand, ContactsRetrieveRequestExpand
|
|
37
38
|
from .engagements import EngagementsListRequestExpand, EngagementsRetrieveRequestExpand
|
|
38
39
|
from .issues import IssuesListRequestStatus
|
|
@@ -47,6 +48,7 @@ from .opportunities import (
|
|
|
47
48
|
from .tasks import TasksListRequestExpand, TasksRetrieveRequestExpand
|
|
48
49
|
|
|
49
50
|
__all__ = [
|
|
51
|
+
"AsyncPassthroughRetrieveResponse",
|
|
50
52
|
"ContactsListRequestExpand",
|
|
51
53
|
"ContactsRetrieveRequestExpand",
|
|
52
54
|
"EngagementsListRequestExpand",
|
|
@@ -8,7 +8,7 @@ from ...types.async_passthrough_reciept import AsyncPassthroughReciept
|
|
|
8
8
|
from .....core.pydantic_utilities import parse_obj_as
|
|
9
9
|
from json.decoder import JSONDecodeError
|
|
10
10
|
from .....core.api_error import ApiError
|
|
11
|
-
from
|
|
11
|
+
from .types.async_passthrough_retrieve_response import AsyncPassthroughRetrieveResponse
|
|
12
12
|
from .....core.jsonable_encoder import jsonable_encoder
|
|
13
13
|
from .....core.client_wrapper import AsyncClientWrapper
|
|
14
14
|
|
|
@@ -77,7 +77,7 @@ class AsyncPassthroughClient:
|
|
|
77
77
|
|
|
78
78
|
def retrieve(
|
|
79
79
|
self, async_passthrough_receipt_id: str, *, request_options: typing.Optional[RequestOptions] = None
|
|
80
|
-
) ->
|
|
80
|
+
) -> AsyncPassthroughRetrieveResponse:
|
|
81
81
|
"""
|
|
82
82
|
Retrieves data from earlier async-passthrough POST request
|
|
83
83
|
|
|
@@ -90,7 +90,7 @@ class AsyncPassthroughClient:
|
|
|
90
90
|
|
|
91
91
|
Returns
|
|
92
92
|
-------
|
|
93
|
-
|
|
93
|
+
AsyncPassthroughRetrieveResponse
|
|
94
94
|
|
|
95
95
|
|
|
96
96
|
Examples
|
|
@@ -113,9 +113,9 @@ class AsyncPassthroughClient:
|
|
|
113
113
|
try:
|
|
114
114
|
if 200 <= _response.status_code < 300:
|
|
115
115
|
return typing.cast(
|
|
116
|
-
|
|
116
|
+
AsyncPassthroughRetrieveResponse,
|
|
117
117
|
parse_obj_as(
|
|
118
|
-
type_=
|
|
118
|
+
type_=AsyncPassthroughRetrieveResponse, # type: ignore
|
|
119
119
|
object_=_response.json(),
|
|
120
120
|
),
|
|
121
121
|
)
|
|
@@ -194,7 +194,7 @@ class AsyncAsyncPassthroughClient:
|
|
|
194
194
|
|
|
195
195
|
async def retrieve(
|
|
196
196
|
self, async_passthrough_receipt_id: str, *, request_options: typing.Optional[RequestOptions] = None
|
|
197
|
-
) ->
|
|
197
|
+
) -> AsyncPassthroughRetrieveResponse:
|
|
198
198
|
"""
|
|
199
199
|
Retrieves data from earlier async-passthrough POST request
|
|
200
200
|
|
|
@@ -207,7 +207,7 @@ class AsyncAsyncPassthroughClient:
|
|
|
207
207
|
|
|
208
208
|
Returns
|
|
209
209
|
-------
|
|
210
|
-
|
|
210
|
+
AsyncPassthroughRetrieveResponse
|
|
211
211
|
|
|
212
212
|
|
|
213
213
|
Examples
|
|
@@ -238,9 +238,9 @@ class AsyncAsyncPassthroughClient:
|
|
|
238
238
|
try:
|
|
239
239
|
if 200 <= _response.status_code < 300:
|
|
240
240
|
return typing.cast(
|
|
241
|
-
|
|
241
|
+
AsyncPassthroughRetrieveResponse,
|
|
242
242
|
parse_obj_as(
|
|
243
|
-
type_=
|
|
243
|
+
type_=AsyncPassthroughRetrieveResponse, # type: ignore
|
|
244
244
|
object_=_response.json(),
|
|
245
245
|
),
|
|
246
246
|
)
|
|
@@ -112,6 +112,7 @@ from .types import (
|
|
|
112
112
|
WebhookReceiver,
|
|
113
113
|
)
|
|
114
114
|
from .resources import (
|
|
115
|
+
AsyncPassthroughRetrieveResponse,
|
|
115
116
|
FilesListRequestExpand,
|
|
116
117
|
FilesRetrieveRequestExpand,
|
|
117
118
|
FoldersListRequestExpand,
|
|
@@ -151,6 +152,7 @@ __all__ = [
|
|
|
151
152
|
"AccountToken",
|
|
152
153
|
"AdvancedMetadata",
|
|
153
154
|
"AsyncPassthroughReciept",
|
|
155
|
+
"AsyncPassthroughRetrieveResponse",
|
|
154
156
|
"AuditLogEvent",
|
|
155
157
|
"AuditLogEventEventType",
|
|
156
158
|
"AuditLogEventRole",
|
|
@@ -24,12 +24,14 @@ from . import (
|
|
|
24
24
|
users,
|
|
25
25
|
webhook_receivers,
|
|
26
26
|
)
|
|
27
|
+
from .async_passthrough import AsyncPassthroughRetrieveResponse
|
|
27
28
|
from .files import FilesListRequestExpand, FilesRetrieveRequestExpand
|
|
28
29
|
from .folders import FoldersListRequestExpand, FoldersRetrieveRequestExpand
|
|
29
30
|
from .issues import IssuesListRequestStatus
|
|
30
31
|
from .linked_accounts import LinkedAccountsListRequestCategory
|
|
31
32
|
|
|
32
33
|
__all__ = [
|
|
34
|
+
"AsyncPassthroughRetrieveResponse",
|
|
33
35
|
"FilesListRequestExpand",
|
|
34
36
|
"FilesRetrieveRequestExpand",
|
|
35
37
|
"FoldersListRequestExpand",
|
|
@@ -8,7 +8,7 @@ from ...types.async_passthrough_reciept import AsyncPassthroughReciept
|
|
|
8
8
|
from .....core.pydantic_utilities import parse_obj_as
|
|
9
9
|
from json.decoder import JSONDecodeError
|
|
10
10
|
from .....core.api_error import ApiError
|
|
11
|
-
from
|
|
11
|
+
from .types.async_passthrough_retrieve_response import AsyncPassthroughRetrieveResponse
|
|
12
12
|
from .....core.jsonable_encoder import jsonable_encoder
|
|
13
13
|
from .....core.client_wrapper import AsyncClientWrapper
|
|
14
14
|
|
|
@@ -77,7 +77,7 @@ class AsyncPassthroughClient:
|
|
|
77
77
|
|
|
78
78
|
def retrieve(
|
|
79
79
|
self, async_passthrough_receipt_id: str, *, request_options: typing.Optional[RequestOptions] = None
|
|
80
|
-
) ->
|
|
80
|
+
) -> AsyncPassthroughRetrieveResponse:
|
|
81
81
|
"""
|
|
82
82
|
Retrieves data from earlier async-passthrough POST request
|
|
83
83
|
|
|
@@ -90,7 +90,7 @@ class AsyncPassthroughClient:
|
|
|
90
90
|
|
|
91
91
|
Returns
|
|
92
92
|
-------
|
|
93
|
-
|
|
93
|
+
AsyncPassthroughRetrieveResponse
|
|
94
94
|
|
|
95
95
|
|
|
96
96
|
Examples
|
|
@@ -113,9 +113,9 @@ class AsyncPassthroughClient:
|
|
|
113
113
|
try:
|
|
114
114
|
if 200 <= _response.status_code < 300:
|
|
115
115
|
return typing.cast(
|
|
116
|
-
|
|
116
|
+
AsyncPassthroughRetrieveResponse,
|
|
117
117
|
parse_obj_as(
|
|
118
|
-
type_=
|
|
118
|
+
type_=AsyncPassthroughRetrieveResponse, # type: ignore
|
|
119
119
|
object_=_response.json(),
|
|
120
120
|
),
|
|
121
121
|
)
|
|
@@ -194,7 +194,7 @@ class AsyncAsyncPassthroughClient:
|
|
|
194
194
|
|
|
195
195
|
async def retrieve(
|
|
196
196
|
self, async_passthrough_receipt_id: str, *, request_options: typing.Optional[RequestOptions] = None
|
|
197
|
-
) ->
|
|
197
|
+
) -> AsyncPassthroughRetrieveResponse:
|
|
198
198
|
"""
|
|
199
199
|
Retrieves data from earlier async-passthrough POST request
|
|
200
200
|
|
|
@@ -207,7 +207,7 @@ class AsyncAsyncPassthroughClient:
|
|
|
207
207
|
|
|
208
208
|
Returns
|
|
209
209
|
-------
|
|
210
|
-
|
|
210
|
+
AsyncPassthroughRetrieveResponse
|
|
211
211
|
|
|
212
212
|
|
|
213
213
|
Examples
|
|
@@ -238,9 +238,9 @@ class AsyncAsyncPassthroughClient:
|
|
|
238
238
|
try:
|
|
239
239
|
if 200 <= _response.status_code < 300:
|
|
240
240
|
return typing.cast(
|
|
241
|
-
|
|
241
|
+
AsyncPassthroughRetrieveResponse,
|
|
242
242
|
parse_obj_as(
|
|
243
|
-
type_=
|
|
243
|
+
type_=AsyncPassthroughRetrieveResponse, # type: ignore
|
|
244
244
|
object_=_response.json(),
|
|
245
245
|
),
|
|
246
246
|
)
|
merge/resources/hris/__init__.py
CHANGED
|
@@ -194,6 +194,7 @@ from .types import (
|
|
|
194
194
|
WebhookReceiver,
|
|
195
195
|
)
|
|
196
196
|
from .resources import (
|
|
197
|
+
AsyncPassthroughRetrieveResponse,
|
|
197
198
|
BankInfoListRequestAccountType,
|
|
198
199
|
BankInfoListRequestOrderBy,
|
|
199
200
|
EmployeePayrollRunsListRequestExpand,
|
|
@@ -276,6 +277,7 @@ __all__ = [
|
|
|
276
277
|
"AccountTypeEnum",
|
|
277
278
|
"AdvancedMetadata",
|
|
278
279
|
"AsyncPassthroughReciept",
|
|
280
|
+
"AsyncPassthroughRetrieveResponse",
|
|
279
281
|
"AuditLogEvent",
|
|
280
282
|
"AuditLogEventEventType",
|
|
281
283
|
"AuditLogEventRole",
|
|
@@ -35,6 +35,7 @@ from . import (
|
|
|
35
35
|
timesheet_entries,
|
|
36
36
|
webhook_receivers,
|
|
37
37
|
)
|
|
38
|
+
from .async_passthrough import AsyncPassthroughRetrieveResponse
|
|
38
39
|
from .bank_info import BankInfoListRequestAccountType, BankInfoListRequestOrderBy
|
|
39
40
|
from .employee_payroll_runs import EmployeePayrollRunsListRequestExpand, EmployeePayrollRunsRetrieveRequestExpand
|
|
40
41
|
from .employees import (
|
|
@@ -80,6 +81,7 @@ from .time_off_balances import TimeOffBalancesListRequestPolicyType
|
|
|
80
81
|
from .timesheet_entries import TimesheetEntriesListRequestOrderBy
|
|
81
82
|
|
|
82
83
|
__all__ = [
|
|
84
|
+
"AsyncPassthroughRetrieveResponse",
|
|
83
85
|
"BankInfoListRequestAccountType",
|
|
84
86
|
"BankInfoListRequestOrderBy",
|
|
85
87
|
"EmployeePayrollRunsListRequestExpand",
|
|
@@ -8,7 +8,7 @@ from ...types.async_passthrough_reciept import AsyncPassthroughReciept
|
|
|
8
8
|
from .....core.pydantic_utilities import parse_obj_as
|
|
9
9
|
from json.decoder import JSONDecodeError
|
|
10
10
|
from .....core.api_error import ApiError
|
|
11
|
-
from
|
|
11
|
+
from .types.async_passthrough_retrieve_response import AsyncPassthroughRetrieveResponse
|
|
12
12
|
from .....core.jsonable_encoder import jsonable_encoder
|
|
13
13
|
from .....core.client_wrapper import AsyncClientWrapper
|
|
14
14
|
|
|
@@ -77,7 +77,7 @@ class AsyncPassthroughClient:
|
|
|
77
77
|
|
|
78
78
|
def retrieve(
|
|
79
79
|
self, async_passthrough_receipt_id: str, *, request_options: typing.Optional[RequestOptions] = None
|
|
80
|
-
) ->
|
|
80
|
+
) -> AsyncPassthroughRetrieveResponse:
|
|
81
81
|
"""
|
|
82
82
|
Retrieves data from earlier async-passthrough POST request
|
|
83
83
|
|
|
@@ -90,7 +90,7 @@ class AsyncPassthroughClient:
|
|
|
90
90
|
|
|
91
91
|
Returns
|
|
92
92
|
-------
|
|
93
|
-
|
|
93
|
+
AsyncPassthroughRetrieveResponse
|
|
94
94
|
|
|
95
95
|
|
|
96
96
|
Examples
|
|
@@ -113,9 +113,9 @@ class AsyncPassthroughClient:
|
|
|
113
113
|
try:
|
|
114
114
|
if 200 <= _response.status_code < 300:
|
|
115
115
|
return typing.cast(
|
|
116
|
-
|
|
116
|
+
AsyncPassthroughRetrieveResponse,
|
|
117
117
|
parse_obj_as(
|
|
118
|
-
type_=
|
|
118
|
+
type_=AsyncPassthroughRetrieveResponse, # type: ignore
|
|
119
119
|
object_=_response.json(),
|
|
120
120
|
),
|
|
121
121
|
)
|
|
@@ -194,7 +194,7 @@ class AsyncAsyncPassthroughClient:
|
|
|
194
194
|
|
|
195
195
|
async def retrieve(
|
|
196
196
|
self, async_passthrough_receipt_id: str, *, request_options: typing.Optional[RequestOptions] = None
|
|
197
|
-
) ->
|
|
197
|
+
) -> AsyncPassthroughRetrieveResponse:
|
|
198
198
|
"""
|
|
199
199
|
Retrieves data from earlier async-passthrough POST request
|
|
200
200
|
|
|
@@ -207,7 +207,7 @@ class AsyncAsyncPassthroughClient:
|
|
|
207
207
|
|
|
208
208
|
Returns
|
|
209
209
|
-------
|
|
210
|
-
|
|
210
|
+
AsyncPassthroughRetrieveResponse
|
|
211
211
|
|
|
212
212
|
|
|
213
213
|
Examples
|
|
@@ -238,9 +238,9 @@ class AsyncAsyncPassthroughClient:
|
|
|
238
238
|
try:
|
|
239
239
|
if 200 <= _response.status_code < 300:
|
|
240
240
|
return typing.cast(
|
|
241
|
-
|
|
241
|
+
AsyncPassthroughRetrieveResponse,
|
|
242
242
|
parse_obj_as(
|
|
243
|
-
type_=
|
|
243
|
+
type_=AsyncPassthroughRetrieveResponse, # type: ignore
|
|
244
244
|
object_=_response.json(),
|
|
245
245
|
),
|
|
246
246
|
)
|
|
@@ -159,6 +159,7 @@ from .types import (
|
|
|
159
159
|
WebhookReceiver,
|
|
160
160
|
)
|
|
161
161
|
from .resources import (
|
|
162
|
+
AsyncPassthroughRetrieveResponse,
|
|
162
163
|
CollectionsUsersListRequestExpand,
|
|
163
164
|
CommentsListRequestExpand,
|
|
164
165
|
CommentsRetrieveRequestExpand,
|
|
@@ -217,6 +218,7 @@ __all__ = [
|
|
|
217
218
|
"AccountToken",
|
|
218
219
|
"AdvancedMetadata",
|
|
219
220
|
"AsyncPassthroughReciept",
|
|
221
|
+
"AsyncPassthroughRetrieveResponse",
|
|
220
222
|
"Attachment",
|
|
221
223
|
"AttachmentRequest",
|
|
222
224
|
"AttachmentRequestTicket",
|
|
@@ -30,6 +30,7 @@ from . import (
|
|
|
30
30
|
users,
|
|
31
31
|
webhook_receivers,
|
|
32
32
|
)
|
|
33
|
+
from .async_passthrough import AsyncPassthroughRetrieveResponse
|
|
33
34
|
from .collections import CollectionsUsersListRequestExpand
|
|
34
35
|
from .comments import CommentsListRequestExpand, CommentsRetrieveRequestExpand
|
|
35
36
|
from .issues import IssuesListRequestStatus
|
|
@@ -49,6 +50,7 @@ from .tickets import (
|
|
|
49
50
|
from .users import UsersListRequestExpand, UsersRetrieveRequestExpand
|
|
50
51
|
|
|
51
52
|
__all__ = [
|
|
53
|
+
"AsyncPassthroughRetrieveResponse",
|
|
52
54
|
"CollectionsUsersListRequestExpand",
|
|
53
55
|
"CommentsListRequestExpand",
|
|
54
56
|
"CommentsRetrieveRequestExpand",
|
|
@@ -8,7 +8,7 @@ from ...types.async_passthrough_reciept import AsyncPassthroughReciept
|
|
|
8
8
|
from .....core.pydantic_utilities import parse_obj_as
|
|
9
9
|
from json.decoder import JSONDecodeError
|
|
10
10
|
from .....core.api_error import ApiError
|
|
11
|
-
from
|
|
11
|
+
from .types.async_passthrough_retrieve_response import AsyncPassthroughRetrieveResponse
|
|
12
12
|
from .....core.jsonable_encoder import jsonable_encoder
|
|
13
13
|
from .....core.client_wrapper import AsyncClientWrapper
|
|
14
14
|
|
|
@@ -77,7 +77,7 @@ class AsyncPassthroughClient:
|
|
|
77
77
|
|
|
78
78
|
def retrieve(
|
|
79
79
|
self, async_passthrough_receipt_id: str, *, request_options: typing.Optional[RequestOptions] = None
|
|
80
|
-
) ->
|
|
80
|
+
) -> AsyncPassthroughRetrieveResponse:
|
|
81
81
|
"""
|
|
82
82
|
Retrieves data from earlier async-passthrough POST request
|
|
83
83
|
|
|
@@ -90,7 +90,7 @@ class AsyncPassthroughClient:
|
|
|
90
90
|
|
|
91
91
|
Returns
|
|
92
92
|
-------
|
|
93
|
-
|
|
93
|
+
AsyncPassthroughRetrieveResponse
|
|
94
94
|
|
|
95
95
|
|
|
96
96
|
Examples
|
|
@@ -113,9 +113,9 @@ class AsyncPassthroughClient:
|
|
|
113
113
|
try:
|
|
114
114
|
if 200 <= _response.status_code < 300:
|
|
115
115
|
return typing.cast(
|
|
116
|
-
|
|
116
|
+
AsyncPassthroughRetrieveResponse,
|
|
117
117
|
parse_obj_as(
|
|
118
|
-
type_=
|
|
118
|
+
type_=AsyncPassthroughRetrieveResponse, # type: ignore
|
|
119
119
|
object_=_response.json(),
|
|
120
120
|
),
|
|
121
121
|
)
|
|
@@ -194,7 +194,7 @@ class AsyncAsyncPassthroughClient:
|
|
|
194
194
|
|
|
195
195
|
async def retrieve(
|
|
196
196
|
self, async_passthrough_receipt_id: str, *, request_options: typing.Optional[RequestOptions] = None
|
|
197
|
-
) ->
|
|
197
|
+
) -> AsyncPassthroughRetrieveResponse:
|
|
198
198
|
"""
|
|
199
199
|
Retrieves data from earlier async-passthrough POST request
|
|
200
200
|
|
|
@@ -207,7 +207,7 @@ class AsyncAsyncPassthroughClient:
|
|
|
207
207
|
|
|
208
208
|
Returns
|
|
209
209
|
-------
|
|
210
|
-
|
|
210
|
+
AsyncPassthroughRetrieveResponse
|
|
211
211
|
|
|
212
212
|
|
|
213
213
|
Examples
|
|
@@ -238,9 +238,9 @@ class AsyncAsyncPassthroughClient:
|
|
|
238
238
|
try:
|
|
239
239
|
if 200 <= _response.status_code < 300:
|
|
240
240
|
return typing.cast(
|
|
241
|
-
|
|
241
|
+
AsyncPassthroughRetrieveResponse,
|
|
242
242
|
parse_obj_as(
|
|
243
|
-
type_=
|
|
243
|
+
type_=AsyncPassthroughRetrieveResponse, # type: ignore
|
|
244
244
|
object_=_response.json(),
|
|
245
245
|
),
|
|
246
246
|
)
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
merge/__init__.py,sha256=zBMMq1dZYJSvF1D2WM27VIrcMdsoyH2WzwPArUj_Kmk,429
|
|
2
|
-
merge/client.py,sha256=
|
|
2
|
+
merge/client.py,sha256=4zX-yW1v2u59QgA7K2bVdQhKYSwYkLRL0XLlGtbI7HY,7099
|
|
3
3
|
merge/core/__init__.py,sha256=SQ85PF84B9MuKnBwHNHWemSGuy-g_515gFYNFhvEE0I,1438
|
|
4
4
|
merge/core/api_error.py,sha256=RE8LELok2QCjABadECTvtDp7qejA1VmINCh6TbqPwSE,426
|
|
5
|
-
merge/core/client_wrapper.py,sha256=
|
|
5
|
+
merge/core/client_wrapper.py,sha256=EUBm0gXgSH9SsCLpxw5m7oX59OKmfhAbxvCiZARETls,2621
|
|
6
6
|
merge/core/datetime_utils.py,sha256=nBys2IsYrhPdszxGKCNRPSOCwa-5DWOHG95FB8G9PKo,1047
|
|
7
7
|
merge/core/file.py,sha256=X9IbmkZmB2bB_DpmZAO3crWdXagOakAyn6UCOCImCPg,2322
|
|
8
8
|
merge/core/http_client.py,sha256=7scAV2vhOSQ3MqAoGBfEGZ5lZ5GOU65KdWdP0u9VR4A,18978
|
|
@@ -15,9 +15,9 @@ merge/core/serialization.py,sha256=D9h_t-RQON3-CHWs1C4ESY9B-Yd5d-l5lnTLb_X896g,9
|
|
|
15
15
|
merge/environment.py,sha256=_NIx-kWS6kpztpqgz6_abDGnsZkLAO1WayrcM8gKetw,260
|
|
16
16
|
merge/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
17
17
|
merge/resources/__init__.py,sha256=sNWtwImm6TNexbhV6A8U9O_3TUfRjTun_MPnDD6UVP4,206
|
|
18
|
-
merge/resources/accounting/__init__.py,sha256=
|
|
18
|
+
merge/resources/accounting/__init__.py,sha256=dNj_N2J6gQimMiUPUhSNSMJ8AlPwMi2EnMTxjPdXekY,23402
|
|
19
19
|
merge/resources/accounting/client.py,sha256=ktsSslFAS9zZqcV5DKpGphKhANqhY7onTo2Y_ENDZNg,12244
|
|
20
|
-
merge/resources/accounting/resources/__init__.py,sha256=
|
|
20
|
+
merge/resources/accounting/resources/__init__.py,sha256=IV_OqtZFvzp3Xd_PFdXji0VBYYrsXz_MKWd5Y8YMKvU,4398
|
|
21
21
|
merge/resources/accounting/resources/account_details/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
22
22
|
merge/resources/accounting/resources/account_details/client.py,sha256=-pJ1VWu4oYrPXFIfLlqJlWNbgWs6yIdR_C3MjeREMzw,3551
|
|
23
23
|
merge/resources/accounting/resources/account_token/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
@@ -33,8 +33,10 @@ merge/resources/accounting/resources/accounts/types/accounts_retrieve_request_re
|
|
|
33
33
|
merge/resources/accounting/resources/accounts/types/accounts_retrieve_request_show_enum_origins.py,sha256=19cI7NBoClZ-FmQAo_WzQgxjWJOIMWnp9CXq6VTPPt0,847
|
|
34
34
|
merge/resources/accounting/resources/addresses/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
35
35
|
merge/resources/accounting/resources/addresses/client.py,sha256=mV4nvWyhVNM2prrteKrlAaoeYfISO1N4z6LiBO8VH5A,5768
|
|
36
|
-
merge/resources/accounting/resources/async_passthrough/__init__.py,sha256=
|
|
37
|
-
merge/resources/accounting/resources/async_passthrough/client.py,sha256=
|
|
36
|
+
merge/resources/accounting/resources/async_passthrough/__init__.py,sha256=FNb-XJYPDXPG_Oay67g6m_XfY5y9p6rFr6Uqy64x_W0,165
|
|
37
|
+
merge/resources/accounting/resources/async_passthrough/client.py,sha256=bbS5sUgteDlZk3ouipx_mOX_OpManowfdo3E0SVw5Vo,8282
|
|
38
|
+
merge/resources/accounting/resources/async_passthrough/types/__init__.py,sha256=WEBMMsCdh8mBDINH9DDFD-l9DLu9BpyXfdVOZodpa4s,195
|
|
39
|
+
merge/resources/accounting/resources/async_passthrough/types/async_passthrough_retrieve_response.py,sha256=RrMogIsGSu1EZKbzu14-z52J36aptepHuYRG_02-lRo,202
|
|
38
40
|
merge/resources/accounting/resources/attachments/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
39
41
|
merge/resources/accounting/resources/attachments/client.py,sha256=96yeJSJPgnvs5z2fGqhHSNu0Gbof7xalhFleQ_gK35E,21826
|
|
40
42
|
merge/resources/accounting/resources/audit_trail/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
@@ -480,9 +482,9 @@ merge/resources/accounting/types/vendor_credit_tracking_categories_item.py,sha25
|
|
|
480
482
|
merge/resources/accounting/types/vendor_credit_vendor.py,sha256=H5uTOxzxogSvcHeYvMwlFJkIkGBYJzoklDW3dc1pUus,157
|
|
481
483
|
merge/resources/accounting/types/warning_validation_problem.py,sha256=DwQgakPOL2n0f9LYf6FqYxH3RWtRVa_lJ_NdCi6Ou7c,726
|
|
482
484
|
merge/resources/accounting/types/webhook_receiver.py,sha256=VVEx68xaqrlCu5Z3wV6nxOLr5eedRF8APh0FrALzZCw,613
|
|
483
|
-
merge/resources/ats/__init__.py,sha256=
|
|
485
|
+
merge/resources/ats/__init__.py,sha256=IqJWAcWbLDswIw18SDA7RRPsXqLzySYxZcYqPujEWoc,14756
|
|
484
486
|
merge/resources/ats/client.py,sha256=zF0EKN4MDzYMy-uu8a3h3JrFSLsXiUsW-U2Z_YApuo0,10376
|
|
485
|
-
merge/resources/ats/resources/__init__.py,sha256=
|
|
487
|
+
merge/resources/ats/resources/__init__.py,sha256=OfxVCL9CiT3Owp5YCK3xyApIB-tI0hticrtd8RYegLY,3446
|
|
486
488
|
merge/resources/ats/resources/account_details/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
487
489
|
merge/resources/ats/resources/account_details/client.py,sha256=3wigcWVsG1OkhF9mxbaaYplgH4ohc0lw0J5-74JpPBA,3523
|
|
488
490
|
merge/resources/ats/resources/account_token/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
@@ -499,8 +501,10 @@ merge/resources/ats/resources/applications/client.py,sha256=pdgxMwl77LBBtVSA7Xb_
|
|
|
499
501
|
merge/resources/ats/resources/applications/types/__init__.py,sha256=me0cAJ4PtrcK-FPvck8gxefnE2j5DC6RJCZupzrgOtk,307
|
|
500
502
|
merge/resources/ats/resources/applications/types/applications_list_request_expand.py,sha256=tR95D-B0MkMq4jRvH8NW15Ol0JZffFjG7TtaSXKfWnA,117151
|
|
501
503
|
merge/resources/ats/resources/applications/types/applications_retrieve_request_expand.py,sha256=KSVOBPTXZpSC6HBfghIMm1Uq_yJ5Qk8gsF--ZQW9c1k,118607
|
|
502
|
-
merge/resources/ats/resources/async_passthrough/__init__.py,sha256=
|
|
503
|
-
merge/resources/ats/resources/async_passthrough/client.py,sha256=
|
|
504
|
+
merge/resources/ats/resources/async_passthrough/__init__.py,sha256=FNb-XJYPDXPG_Oay67g6m_XfY5y9p6rFr6Uqy64x_W0,165
|
|
505
|
+
merge/resources/ats/resources/async_passthrough/client.py,sha256=VnzPVpb0gQNGcREPWl_VeVAE7dJHnS4i4bcG6-q9SEo,8212
|
|
506
|
+
merge/resources/ats/resources/async_passthrough/types/__init__.py,sha256=WEBMMsCdh8mBDINH9DDFD-l9DLu9BpyXfdVOZodpa4s,195
|
|
507
|
+
merge/resources/ats/resources/async_passthrough/types/async_passthrough_retrieve_response.py,sha256=RrMogIsGSu1EZKbzu14-z52J36aptepHuYRG_02-lRo,202
|
|
504
508
|
merge/resources/ats/resources/attachments/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
505
509
|
merge/resources/ats/resources/attachments/client.py,sha256=F6yrIgbF9t-Hb5YR8EHVx2GPmLMnYalmXqJpgQeLb6s,25598
|
|
506
510
|
merge/resources/ats/resources/audit_trail/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
@@ -795,9 +799,9 @@ merge/resources/ats/types/veteran_status_enum.py,sha256=QA7AeR2VTYqtj7hcCXPnDP3V
|
|
|
795
799
|
merge/resources/ats/types/visibility_enum.py,sha256=R7Vgb-kLck9T6wn3Yl2Dw--qdeCfmpR3KVD3552Qp18,760
|
|
796
800
|
merge/resources/ats/types/warning_validation_problem.py,sha256=DwQgakPOL2n0f9LYf6FqYxH3RWtRVa_lJ_NdCi6Ou7c,726
|
|
797
801
|
merge/resources/ats/types/webhook_receiver.py,sha256=VVEx68xaqrlCu5Z3wV6nxOLr5eedRF8APh0FrALzZCw,613
|
|
798
|
-
merge/resources/crm/__init__.py,sha256=
|
|
802
|
+
merge/resources/crm/__init__.py,sha256=t2tCa1ZRqDgAvBuq5DlhiA1hZeI4oZsnkPdWY9GvwK8,13750
|
|
799
803
|
merge/resources/crm/client.py,sha256=BOtkDjK6GywYjmm3xSGJycrFh1f8kEiU-ZoRPkdZAS4,9920
|
|
800
|
-
merge/resources/crm/resources/__init__.py,sha256=
|
|
804
|
+
merge/resources/crm/resources/__init__.py,sha256=U7knin_cS7TnhA99oslQY3uCoebeq-GlMERg2PuJvWc,2511
|
|
801
805
|
merge/resources/crm/resources/account_details/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
802
806
|
merge/resources/crm/resources/account_details/client.py,sha256=7FnAYMqW44lRmooOmdqdYoQ-TPdbYdyDNIrjiXZ4Tik,3523
|
|
803
807
|
merge/resources/crm/resources/account_token/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
@@ -808,8 +812,10 @@ merge/resources/crm/resources/association_types/__init__.py,sha256=FTtvy8EDg9nNN
|
|
|
808
812
|
merge/resources/crm/resources/association_types/client.py,sha256=hjMYmHm0emloXo8VKMcTWk5-vPwhnQCMCpCVlwG880U,26034
|
|
809
813
|
merge/resources/crm/resources/associations/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
810
814
|
merge/resources/crm/resources/associations/client.py,sha256=FoNpgJ-FQ6mKDIfKTHpQSLmbhTp-iLIYzQkbG3O7MDQ,17357
|
|
811
|
-
merge/resources/crm/resources/async_passthrough/__init__.py,sha256=
|
|
812
|
-
merge/resources/crm/resources/async_passthrough/client.py,sha256=
|
|
815
|
+
merge/resources/crm/resources/async_passthrough/__init__.py,sha256=FNb-XJYPDXPG_Oay67g6m_XfY5y9p6rFr6Uqy64x_W0,165
|
|
816
|
+
merge/resources/crm/resources/async_passthrough/client.py,sha256=cpJBW7ZDZ9tOW-YURMsrbJJFi267siChTm_j0NMSVLk,8212
|
|
817
|
+
merge/resources/crm/resources/async_passthrough/types/__init__.py,sha256=WEBMMsCdh8mBDINH9DDFD-l9DLu9BpyXfdVOZodpa4s,195
|
|
818
|
+
merge/resources/crm/resources/async_passthrough/types/async_passthrough_retrieve_response.py,sha256=RrMogIsGSu1EZKbzu14-z52J36aptepHuYRG_02-lRo,202
|
|
813
819
|
merge/resources/crm/resources/audit_trail/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
814
820
|
merge/resources/crm/resources/audit_trail/client.py,sha256=NLdqgp34PoZYr1e4quIC-m-tBruWZefX6Qpwar39LKU,8808
|
|
815
821
|
merge/resources/crm/resources/available_actions/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
@@ -1097,15 +1103,17 @@ merge/resources/crm/types/user.py,sha256=QsfOm1pQwH2Et7T14zhNkI2FqmCj7LK_Ly6g4dI
|
|
|
1097
1103
|
merge/resources/crm/types/validation_problem_source.py,sha256=gXj7tfZwhf1A8XMV-XrY25fA-woPmgusVdxbfqHdgNA,573
|
|
1098
1104
|
merge/resources/crm/types/warning_validation_problem.py,sha256=DwQgakPOL2n0f9LYf6FqYxH3RWtRVa_lJ_NdCi6Ou7c,726
|
|
1099
1105
|
merge/resources/crm/types/webhook_receiver.py,sha256=VVEx68xaqrlCu5Z3wV6nxOLr5eedRF8APh0FrALzZCw,613
|
|
1100
|
-
merge/resources/filestorage/__init__.py,sha256=
|
|
1106
|
+
merge/resources/filestorage/__init__.py,sha256=kFFgAN8K5YLWfCWbz0dy13Je8K9tvNRGzeo3i6DDS_M,7142
|
|
1101
1107
|
merge/resources/filestorage/client.py,sha256=k1DkU_4z_-k6aHbRL2cujBbWOg1e6Bj0OtuByLk6h_I,7198
|
|
1102
|
-
merge/resources/filestorage/resources/__init__.py,sha256=
|
|
1108
|
+
merge/resources/filestorage/resources/__init__.py,sha256=S6_LhfbjloI7HIXSaMeIn38DJXENU9MZ_OVxWO5Mjsw,1453
|
|
1103
1109
|
merge/resources/filestorage/resources/account_details/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
1104
1110
|
merge/resources/filestorage/resources/account_details/client.py,sha256=pAaMINcKpE4yBo56LsJQ9q5fUIiYee4JTkopgI2KcnQ,3555
|
|
1105
1111
|
merge/resources/filestorage/resources/account_token/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
1106
1112
|
merge/resources/filestorage/resources/account_token/client.py,sha256=r-cNSgUNDWgl4xINy7sfXiLaTjXnxOU3KMCSC_SnXH8,3945
|
|
1107
|
-
merge/resources/filestorage/resources/async_passthrough/__init__.py,sha256=
|
|
1108
|
-
merge/resources/filestorage/resources/async_passthrough/client.py,sha256=
|
|
1113
|
+
merge/resources/filestorage/resources/async_passthrough/__init__.py,sha256=FNb-XJYPDXPG_Oay67g6m_XfY5y9p6rFr6Uqy64x_W0,165
|
|
1114
|
+
merge/resources/filestorage/resources/async_passthrough/client.py,sha256=Xv_Z67vXCom9ciNxCfkyiwJn79Pth1xVeKTmxETHFmI,8292
|
|
1115
|
+
merge/resources/filestorage/resources/async_passthrough/types/__init__.py,sha256=WEBMMsCdh8mBDINH9DDFD-l9DLu9BpyXfdVOZodpa4s,195
|
|
1116
|
+
merge/resources/filestorage/resources/async_passthrough/types/async_passthrough_retrieve_response.py,sha256=RrMogIsGSu1EZKbzu14-z52J36aptepHuYRG_02-lRo,202
|
|
1109
1117
|
merge/resources/filestorage/resources/audit_trail/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
1110
1118
|
merge/resources/filestorage/resources/audit_trail/client.py,sha256=lmjAJDL15L651l0Wc-0lIkLkxpwy9MUEpKg68fLupoY,8840
|
|
1111
1119
|
merge/resources/filestorage/resources/available_actions/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
@@ -1264,15 +1272,17 @@ merge/resources/filestorage/types/user.py,sha256=reV1qEWXPzdboli9cMgiFeCrlWSuVP6
|
|
|
1264
1272
|
merge/resources/filestorage/types/validation_problem_source.py,sha256=gXj7tfZwhf1A8XMV-XrY25fA-woPmgusVdxbfqHdgNA,573
|
|
1265
1273
|
merge/resources/filestorage/types/warning_validation_problem.py,sha256=DwQgakPOL2n0f9LYf6FqYxH3RWtRVa_lJ_NdCi6Ou7c,726
|
|
1266
1274
|
merge/resources/filestorage/types/webhook_receiver.py,sha256=VVEx68xaqrlCu5Z3wV6nxOLr5eedRF8APh0FrALzZCw,613
|
|
1267
|
-
merge/resources/hris/__init__.py,sha256=
|
|
1275
|
+
merge/resources/hris/__init__.py,sha256=OUWfZG6Dy9kJOJf0nOibWd36p_NhDPD6GsIl2GGDXS8,14244
|
|
1268
1276
|
merge/resources/hris/client.py,sha256=_Q8ySffWCur8Z5i25rHWyCzuvLKfo_bo9O13LveJtDQ,10574
|
|
1269
|
-
merge/resources/hris/resources/__init__.py,sha256
|
|
1277
|
+
merge/resources/hris/resources/__init__.py,sha256=hAq3IyJGpOiE-sRU3_E0zNH3FTgcJiBpSd0lX4l--dE,4649
|
|
1270
1278
|
merge/resources/hris/resources/account_details/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
1271
1279
|
merge/resources/hris/resources/account_details/client.py,sha256=ZGmLREuzGjcyPIqQUoBTqS2k96iqlCwtAjAJsrxaqbA,3527
|
|
1272
1280
|
merge/resources/hris/resources/account_token/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
1273
1281
|
merge/resources/hris/resources/account_token/client.py,sha256=XGhsB1xo3TXCn_8s5tRZPDoPCzpyboo4N8OmrWYLkKk,3917
|
|
1274
|
-
merge/resources/hris/resources/async_passthrough/__init__.py,sha256=
|
|
1275
|
-
merge/resources/hris/resources/async_passthrough/client.py,sha256=
|
|
1282
|
+
merge/resources/hris/resources/async_passthrough/__init__.py,sha256=FNb-XJYPDXPG_Oay67g6m_XfY5y9p6rFr6Uqy64x_W0,165
|
|
1283
|
+
merge/resources/hris/resources/async_passthrough/client.py,sha256=oscjSmfoqdc2NPbTyUwsralMtMqVnKioEL83wwmD064,8222
|
|
1284
|
+
merge/resources/hris/resources/async_passthrough/types/__init__.py,sha256=WEBMMsCdh8mBDINH9DDFD-l9DLu9BpyXfdVOZodpa4s,195
|
|
1285
|
+
merge/resources/hris/resources/async_passthrough/types/async_passthrough_retrieve_response.py,sha256=RrMogIsGSu1EZKbzu14-z52J36aptepHuYRG_02-lRo,202
|
|
1276
1286
|
merge/resources/hris/resources/audit_trail/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
1277
1287
|
merge/resources/hris/resources/audit_trail/client.py,sha256=KxR30oLfC49w16cPyHY6ILHy03xnAaQ5bn4yg2uqFxI,8812
|
|
1278
1288
|
merge/resources/hris/resources/available_actions/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
@@ -1573,17 +1583,19 @@ merge/resources/hris/types/units_enum.py,sha256=wTjygSBsOjR37e1EdSaU-RL7zckImdhp
|
|
|
1573
1583
|
merge/resources/hris/types/validation_problem_source.py,sha256=gXj7tfZwhf1A8XMV-XrY25fA-woPmgusVdxbfqHdgNA,573
|
|
1574
1584
|
merge/resources/hris/types/warning_validation_problem.py,sha256=DwQgakPOL2n0f9LYf6FqYxH3RWtRVa_lJ_NdCi6Ou7c,726
|
|
1575
1585
|
merge/resources/hris/types/webhook_receiver.py,sha256=VVEx68xaqrlCu5Z3wV6nxOLr5eedRF8APh0FrALzZCw,613
|
|
1576
|
-
merge/resources/ticketing/__init__.py,sha256=
|
|
1586
|
+
merge/resources/ticketing/__init__.py,sha256=uEUwcP8_kcP3m0wtBaIayESgzzS3Ou3h658iwnLsiL4,10534
|
|
1577
1587
|
merge/resources/ticketing/client.py,sha256=61kW56q6RMM97Ya_StYC-wFvnJ3TuHZJ5mlYrvH_90w,8830
|
|
1578
|
-
merge/resources/ticketing/resources/__init__.py,sha256=
|
|
1588
|
+
merge/resources/ticketing/resources/__init__.py,sha256=zM4ch8mzWikk-wYIwxkQLZ8lzaCAa4eiNMKcHptTQk8,2532
|
|
1579
1589
|
merge/resources/ticketing/resources/account_details/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
1580
1590
|
merge/resources/ticketing/resources/account_details/client.py,sha256=DmgddTOvL3LPSoWhajcdSFSiTFLQXUdjPt3z7nWM-sA,3547
|
|
1581
1591
|
merge/resources/ticketing/resources/account_token/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
1582
1592
|
merge/resources/ticketing/resources/account_token/client.py,sha256=-jl2o7TdLPtE8Xb6oxKH73_z-X62-EHZTd1VdF9MHvI,3937
|
|
1583
1593
|
merge/resources/ticketing/resources/accounts/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
1584
1594
|
merge/resources/ticketing/resources/accounts/client.py,sha256=LHzF4tldk0bL3xkAcQ5YLyqCiNjjmcQorVUUkDw2WZk,13197
|
|
1585
|
-
merge/resources/ticketing/resources/async_passthrough/__init__.py,sha256=
|
|
1586
|
-
merge/resources/ticketing/resources/async_passthrough/client.py,sha256=
|
|
1595
|
+
merge/resources/ticketing/resources/async_passthrough/__init__.py,sha256=FNb-XJYPDXPG_Oay67g6m_XfY5y9p6rFr6Uqy64x_W0,165
|
|
1596
|
+
merge/resources/ticketing/resources/async_passthrough/client.py,sha256=7fACVY6I-08EW1hTfXunO4ZtcWHk28Q8c4AcQ-ifOOA,8272
|
|
1597
|
+
merge/resources/ticketing/resources/async_passthrough/types/__init__.py,sha256=WEBMMsCdh8mBDINH9DDFD-l9DLu9BpyXfdVOZodpa4s,195
|
|
1598
|
+
merge/resources/ticketing/resources/async_passthrough/types/async_passthrough_retrieve_response.py,sha256=RrMogIsGSu1EZKbzu14-z52J36aptepHuYRG_02-lRo,202
|
|
1587
1599
|
merge/resources/ticketing/resources/attachments/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
1588
1600
|
merge/resources/ticketing/resources/attachments/client.py,sha256=PxlArcOINl4Ihbpd8cawxi9DvqgxFf0mEtpS4ClfHPk,27449
|
|
1589
1601
|
merge/resources/ticketing/resources/audit_trail/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
@@ -1814,7 +1826,7 @@ merge/resources/ticketing/types/validation_problem_source.py,sha256=gXj7tfZwhf1A
|
|
|
1814
1826
|
merge/resources/ticketing/types/warning_validation_problem.py,sha256=DwQgakPOL2n0f9LYf6FqYxH3RWtRVa_lJ_NdCi6Ou7c,726
|
|
1815
1827
|
merge/resources/ticketing/types/webhook_receiver.py,sha256=VVEx68xaqrlCu5Z3wV6nxOLr5eedRF8APh0FrALzZCw,613
|
|
1816
1828
|
merge/version.py,sha256=kLtHrVsKjnCqlIC_JtezQUWrCPQkXhjpD_2pdlcGh18,84
|
|
1817
|
-
mergepythonclient-1.1.
|
|
1818
|
-
mergepythonclient-1.1.
|
|
1819
|
-
mergepythonclient-1.1.
|
|
1820
|
-
mergepythonclient-1.1.
|
|
1829
|
+
mergepythonclient-1.1.2.dist-info/LICENSE.md,sha256=WKO7xLnLSUInldiq5i25eVqKAjwIUKenaS4Cgir2Iuw,3275
|
|
1830
|
+
mergepythonclient-1.1.2.dist-info/METADATA,sha256=o3saBklSk9L3PdPIWhW1UI0wC7xLn_p5ho2cqAKPP_c,6683
|
|
1831
|
+
mergepythonclient-1.1.2.dist-info/WHEEL,sha256=Zb28QaM1gQi8f4VCBhsUklF61CTlNYfs9YAZn-TOGFk,88
|
|
1832
|
+
mergepythonclient-1.1.2.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|