mergepythonclient 2.3.0__py3-none-any.whl → 2.3.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 +18 -18
- merge/core/client_wrapper.py +2 -2
- merge/resources/accounting/client.py +8 -0
- merge/resources/ats/client.py +8 -0
- merge/resources/crm/client.py +8 -0
- merge/resources/filestorage/client.py +8 -0
- merge/resources/hris/client.py +8 -0
- merge/resources/hris/resources/dependents/client.py +10 -0
- merge/resources/hris/resources/dependents/raw_client.py +10 -0
- merge/resources/hris/resources/employees/client.py +10 -0
- merge/resources/hris/resources/employees/raw_client.py +10 -0
- merge/resources/ticketing/client.py +8 -0
- merge/resources/ticketing/resources/collections/client.py +10 -0
- merge/resources/ticketing/resources/collections/raw_client.py +10 -0
- merge/resources/ticketing/resources/contacts/client.py +10 -0
- merge/resources/ticketing/resources/contacts/raw_client.py +10 -0
- merge/resources/ticketing/resources/tickets/client.py +10 -0
- merge/resources/ticketing/resources/tickets/raw_client.py +10 -0
- merge/resources/ticketing/types/collection.py +15 -0
- {mergepythonclient-2.3.0.dist-info → mergepythonclient-2.3.2.dist-info}/METADATA +3 -2
- {mergepythonclient-2.3.0.dist-info → mergepythonclient-2.3.2.dist-info}/RECORD +23 -23
- {mergepythonclient-2.3.0.dist-info → mergepythonclient-2.3.2.dist-info}/LICENSE.md +0 -0
- {mergepythonclient-2.3.0.dist-info → mergepythonclient-2.3.2.dist-info}/WHEEL +0 -0
merge/client.py
CHANGED
|
@@ -89,8 +89,8 @@ class Merge:
|
|
|
89
89
|
self._ats: typing.Optional[AtsClient] = None
|
|
90
90
|
self._crm: typing.Optional[CrmClient] = None
|
|
91
91
|
self._filestorage: typing.Optional[FilestorageClient] = None
|
|
92
|
-
self._hris: typing.Optional[HrisClient] = None
|
|
93
92
|
self._ticketing: typing.Optional[TicketingClient] = None
|
|
93
|
+
self._hris: typing.Optional[HrisClient] = None
|
|
94
94
|
self._accounting: typing.Optional[AccountingClient] = None
|
|
95
95
|
|
|
96
96
|
@property
|
|
@@ -117,14 +117,6 @@ class Merge:
|
|
|
117
117
|
self._filestorage = FilestorageClient(client_wrapper=self._client_wrapper)
|
|
118
118
|
return self._filestorage
|
|
119
119
|
|
|
120
|
-
@property
|
|
121
|
-
def hris(self):
|
|
122
|
-
if self._hris is None:
|
|
123
|
-
from .resources.hris.client import HrisClient # noqa: E402
|
|
124
|
-
|
|
125
|
-
self._hris = HrisClient(client_wrapper=self._client_wrapper)
|
|
126
|
-
return self._hris
|
|
127
|
-
|
|
128
120
|
@property
|
|
129
121
|
def ticketing(self):
|
|
130
122
|
if self._ticketing is None:
|
|
@@ -133,6 +125,14 @@ class Merge:
|
|
|
133
125
|
self._ticketing = TicketingClient(client_wrapper=self._client_wrapper)
|
|
134
126
|
return self._ticketing
|
|
135
127
|
|
|
128
|
+
@property
|
|
129
|
+
def hris(self):
|
|
130
|
+
if self._hris is None:
|
|
131
|
+
from .resources.hris.client import HrisClient # noqa: E402
|
|
132
|
+
|
|
133
|
+
self._hris = HrisClient(client_wrapper=self._client_wrapper)
|
|
134
|
+
return self._hris
|
|
135
|
+
|
|
136
136
|
@property
|
|
137
137
|
def accounting(self):
|
|
138
138
|
if self._accounting is None:
|
|
@@ -214,8 +214,8 @@ class AsyncMerge:
|
|
|
214
214
|
self._ats: typing.Optional[AsyncAtsClient] = None
|
|
215
215
|
self._crm: typing.Optional[AsyncCrmClient] = None
|
|
216
216
|
self._filestorage: typing.Optional[AsyncFilestorageClient] = None
|
|
217
|
-
self._hris: typing.Optional[AsyncHrisClient] = None
|
|
218
217
|
self._ticketing: typing.Optional[AsyncTicketingClient] = None
|
|
218
|
+
self._hris: typing.Optional[AsyncHrisClient] = None
|
|
219
219
|
self._accounting: typing.Optional[AsyncAccountingClient] = None
|
|
220
220
|
|
|
221
221
|
@property
|
|
@@ -242,14 +242,6 @@ class AsyncMerge:
|
|
|
242
242
|
self._filestorage = AsyncFilestorageClient(client_wrapper=self._client_wrapper)
|
|
243
243
|
return self._filestorage
|
|
244
244
|
|
|
245
|
-
@property
|
|
246
|
-
def hris(self):
|
|
247
|
-
if self._hris is None:
|
|
248
|
-
from .resources.hris.client import AsyncHrisClient # noqa: E402
|
|
249
|
-
|
|
250
|
-
self._hris = AsyncHrisClient(client_wrapper=self._client_wrapper)
|
|
251
|
-
return self._hris
|
|
252
|
-
|
|
253
245
|
@property
|
|
254
246
|
def ticketing(self):
|
|
255
247
|
if self._ticketing is None:
|
|
@@ -258,6 +250,14 @@ class AsyncMerge:
|
|
|
258
250
|
self._ticketing = AsyncTicketingClient(client_wrapper=self._client_wrapper)
|
|
259
251
|
return self._ticketing
|
|
260
252
|
|
|
253
|
+
@property
|
|
254
|
+
def hris(self):
|
|
255
|
+
if self._hris is None:
|
|
256
|
+
from .resources.hris.client import AsyncHrisClient # noqa: E402
|
|
257
|
+
|
|
258
|
+
self._hris = AsyncHrisClient(client_wrapper=self._client_wrapper)
|
|
259
|
+
return self._hris
|
|
260
|
+
|
|
261
261
|
@property
|
|
262
262
|
def accounting(self):
|
|
263
263
|
if self._accounting is None:
|
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.2",
|
|
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.2",
|
|
31
31
|
**(self.get_custom_headers() or {}),
|
|
32
32
|
}
|
|
33
33
|
if self._account_token is not None:
|
|
@@ -174,6 +174,10 @@ class AccountingClient:
|
|
|
174
174
|
@property
|
|
175
175
|
def async_passthrough(self):
|
|
176
176
|
if self._async_passthrough is None:
|
|
177
|
+
from .resources.async_passthrough.client import (
|
|
178
|
+
AsyncPassthroughClient as resources_accounting_resources_async_passthrough_client_AsyncPassthroughClient, # noqa: E402
|
|
179
|
+
)
|
|
180
|
+
|
|
177
181
|
self._async_passthrough = resources_accounting_resources_async_passthrough_client_AsyncPassthroughClient(
|
|
178
182
|
client_wrapper=self._client_wrapper
|
|
179
183
|
)
|
|
@@ -834,6 +838,10 @@ class AsyncAccountingClient:
|
|
|
834
838
|
@property
|
|
835
839
|
def passthrough(self):
|
|
836
840
|
if self._passthrough is None:
|
|
841
|
+
from .resources.passthrough.client import (
|
|
842
|
+
AsyncPassthroughClient as resources_accounting_resources_passthrough_client_AsyncPassthroughClient, # noqa: E402
|
|
843
|
+
)
|
|
844
|
+
|
|
837
845
|
self._passthrough = resources_accounting_resources_passthrough_client_AsyncPassthroughClient(
|
|
838
846
|
client_wrapper=self._client_wrapper
|
|
839
847
|
)
|
merge/resources/ats/client.py
CHANGED
|
@@ -135,6 +135,10 @@ class AtsClient:
|
|
|
135
135
|
@property
|
|
136
136
|
def async_passthrough(self):
|
|
137
137
|
if self._async_passthrough is None:
|
|
138
|
+
from .resources.async_passthrough.client import (
|
|
139
|
+
AsyncPassthroughClient as resources_ats_resources_async_passthrough_client_AsyncPassthroughClient, # noqa: E402
|
|
140
|
+
)
|
|
141
|
+
|
|
138
142
|
self._async_passthrough = resources_ats_resources_async_passthrough_client_AsyncPassthroughClient(
|
|
139
143
|
client_wrapper=self._client_wrapper
|
|
140
144
|
)
|
|
@@ -609,6 +613,10 @@ class AsyncAtsClient:
|
|
|
609
613
|
@property
|
|
610
614
|
def passthrough(self):
|
|
611
615
|
if self._passthrough is None:
|
|
616
|
+
from .resources.passthrough.client import (
|
|
617
|
+
AsyncPassthroughClient as resources_ats_resources_passthrough_client_AsyncPassthroughClient, # noqa: E402
|
|
618
|
+
)
|
|
619
|
+
|
|
612
620
|
self._passthrough = resources_ats_resources_passthrough_client_AsyncPassthroughClient(
|
|
613
621
|
client_wrapper=self._client_wrapper
|
|
614
622
|
)
|
merge/resources/crm/client.py
CHANGED
|
@@ -123,6 +123,10 @@ class CrmClient:
|
|
|
123
123
|
@property
|
|
124
124
|
def async_passthrough(self):
|
|
125
125
|
if self._async_passthrough is None:
|
|
126
|
+
from .resources.async_passthrough.client import (
|
|
127
|
+
AsyncPassthroughClient as resources_crm_resources_async_passthrough_client_AsyncPassthroughClient, # noqa: E402
|
|
128
|
+
)
|
|
129
|
+
|
|
126
130
|
self._async_passthrough = resources_crm_resources_async_passthrough_client_AsyncPassthroughClient(
|
|
127
131
|
client_wrapper=self._client_wrapper
|
|
128
132
|
)
|
|
@@ -579,6 +583,10 @@ class AsyncCrmClient:
|
|
|
579
583
|
@property
|
|
580
584
|
def passthrough(self):
|
|
581
585
|
if self._passthrough is None:
|
|
586
|
+
from .resources.passthrough.client import (
|
|
587
|
+
AsyncPassthroughClient as resources_crm_resources_passthrough_client_AsyncPassthroughClient, # noqa: E402
|
|
588
|
+
)
|
|
589
|
+
|
|
582
590
|
self._passthrough = resources_crm_resources_passthrough_client_AsyncPassthroughClient(
|
|
583
591
|
client_wrapper=self._client_wrapper
|
|
584
592
|
)
|
|
@@ -97,6 +97,10 @@ class FilestorageClient:
|
|
|
97
97
|
@property
|
|
98
98
|
def async_passthrough(self):
|
|
99
99
|
if self._async_passthrough is None:
|
|
100
|
+
from .resources.async_passthrough.client import (
|
|
101
|
+
AsyncPassthroughClient as resources_filestorage_resources_async_passthrough_client_AsyncPassthroughClient, # noqa: E402
|
|
102
|
+
)
|
|
103
|
+
|
|
100
104
|
self._async_passthrough = resources_filestorage_resources_async_passthrough_client_AsyncPassthroughClient(
|
|
101
105
|
client_wrapper=self._client_wrapper
|
|
102
106
|
)
|
|
@@ -426,6 +430,10 @@ class AsyncFilestorageClient:
|
|
|
426
430
|
@property
|
|
427
431
|
def passthrough(self):
|
|
428
432
|
if self._passthrough is None:
|
|
433
|
+
from .resources.passthrough.client import (
|
|
434
|
+
AsyncPassthroughClient as resources_filestorage_resources_passthrough_client_AsyncPassthroughClient, # noqa: E402
|
|
435
|
+
)
|
|
436
|
+
|
|
429
437
|
self._passthrough = resources_filestorage_resources_passthrough_client_AsyncPassthroughClient(
|
|
430
438
|
client_wrapper=self._client_wrapper
|
|
431
439
|
)
|
merge/resources/hris/client.py
CHANGED
|
@@ -119,6 +119,10 @@ class HrisClient:
|
|
|
119
119
|
@property
|
|
120
120
|
def async_passthrough(self):
|
|
121
121
|
if self._async_passthrough is None:
|
|
122
|
+
from .resources.async_passthrough.client import (
|
|
123
|
+
AsyncPassthroughClient as resources_hris_resources_async_passthrough_client_AsyncPassthroughClient, # noqa: E402
|
|
124
|
+
)
|
|
125
|
+
|
|
122
126
|
self._async_passthrough = resources_hris_resources_async_passthrough_client_AsyncPassthroughClient(
|
|
123
127
|
client_wrapper=self._client_wrapper
|
|
124
128
|
)
|
|
@@ -593,6 +597,10 @@ class AsyncHrisClient:
|
|
|
593
597
|
@property
|
|
594
598
|
def passthrough(self):
|
|
595
599
|
if self._passthrough is None:
|
|
600
|
+
from .resources.passthrough.client import (
|
|
601
|
+
AsyncPassthroughClient as resources_hris_resources_passthrough_client_AsyncPassthroughClient, # noqa: E402
|
|
602
|
+
)
|
|
603
|
+
|
|
596
604
|
self._passthrough = resources_hris_resources_passthrough_client_AsyncPassthroughClient(
|
|
597
605
|
client_wrapper=self._client_wrapper
|
|
598
606
|
)
|
|
@@ -31,6 +31,7 @@ class DependentsClient:
|
|
|
31
31
|
created_after: typing.Optional[dt.datetime] = None,
|
|
32
32
|
created_before: typing.Optional[dt.datetime] = None,
|
|
33
33
|
cursor: typing.Optional[str] = None,
|
|
34
|
+
employee_id: typing.Optional[str] = None,
|
|
34
35
|
include_deleted_data: typing.Optional[bool] = None,
|
|
35
36
|
include_remote_data: typing.Optional[bool] = None,
|
|
36
37
|
include_sensitive_fields: typing.Optional[bool] = None,
|
|
@@ -55,6 +56,9 @@ class DependentsClient:
|
|
|
55
56
|
cursor : typing.Optional[str]
|
|
56
57
|
The pagination cursor value.
|
|
57
58
|
|
|
59
|
+
employee_id : typing.Optional[str]
|
|
60
|
+
If provided, will only return dependents for this employee.
|
|
61
|
+
|
|
58
62
|
include_deleted_data : typing.Optional[bool]
|
|
59
63
|
Indicates whether or not this object has been deleted in the third party platform. Full coverage deletion detection is a premium add-on. Native deletion detection is offered for free with limited coverage. [Learn more](https://docs.merge.dev/integrations/hris/supported-features/).
|
|
60
64
|
|
|
@@ -103,6 +107,7 @@ class DependentsClient:
|
|
|
103
107
|
created_after=created_after,
|
|
104
108
|
created_before=created_before,
|
|
105
109
|
cursor=cursor,
|
|
110
|
+
employee_id=employee_id,
|
|
106
111
|
include_deleted_data=include_deleted_data,
|
|
107
112
|
include_remote_data=include_remote_data,
|
|
108
113
|
include_sensitive_fields=include_sensitive_fields,
|
|
@@ -191,6 +196,7 @@ class AsyncDependentsClient:
|
|
|
191
196
|
created_after: typing.Optional[dt.datetime] = None,
|
|
192
197
|
created_before: typing.Optional[dt.datetime] = None,
|
|
193
198
|
cursor: typing.Optional[str] = None,
|
|
199
|
+
employee_id: typing.Optional[str] = None,
|
|
194
200
|
include_deleted_data: typing.Optional[bool] = None,
|
|
195
201
|
include_remote_data: typing.Optional[bool] = None,
|
|
196
202
|
include_sensitive_fields: typing.Optional[bool] = None,
|
|
@@ -215,6 +221,9 @@ class AsyncDependentsClient:
|
|
|
215
221
|
cursor : typing.Optional[str]
|
|
216
222
|
The pagination cursor value.
|
|
217
223
|
|
|
224
|
+
employee_id : typing.Optional[str]
|
|
225
|
+
If provided, will only return dependents for this employee.
|
|
226
|
+
|
|
218
227
|
include_deleted_data : typing.Optional[bool]
|
|
219
228
|
Indicates whether or not this object has been deleted in the third party platform. Full coverage deletion detection is a premium add-on. Native deletion detection is offered for free with limited coverage. [Learn more](https://docs.merge.dev/integrations/hris/supported-features/).
|
|
220
229
|
|
|
@@ -271,6 +280,7 @@ class AsyncDependentsClient:
|
|
|
271
280
|
created_after=created_after,
|
|
272
281
|
created_before=created_before,
|
|
273
282
|
cursor=cursor,
|
|
283
|
+
employee_id=employee_id,
|
|
274
284
|
include_deleted_data=include_deleted_data,
|
|
275
285
|
include_remote_data=include_remote_data,
|
|
276
286
|
include_sensitive_fields=include_sensitive_fields,
|
|
@@ -25,6 +25,7 @@ class RawDependentsClient:
|
|
|
25
25
|
created_after: typing.Optional[dt.datetime] = None,
|
|
26
26
|
created_before: typing.Optional[dt.datetime] = None,
|
|
27
27
|
cursor: typing.Optional[str] = None,
|
|
28
|
+
employee_id: typing.Optional[str] = None,
|
|
28
29
|
include_deleted_data: typing.Optional[bool] = None,
|
|
29
30
|
include_remote_data: typing.Optional[bool] = None,
|
|
30
31
|
include_sensitive_fields: typing.Optional[bool] = None,
|
|
@@ -49,6 +50,9 @@ class RawDependentsClient:
|
|
|
49
50
|
cursor : typing.Optional[str]
|
|
50
51
|
The pagination cursor value.
|
|
51
52
|
|
|
53
|
+
employee_id : typing.Optional[str]
|
|
54
|
+
If provided, will only return dependents for this employee.
|
|
55
|
+
|
|
52
56
|
include_deleted_data : typing.Optional[bool]
|
|
53
57
|
Indicates whether or not this object has been deleted in the third party platform. Full coverage deletion detection is a premium add-on. Native deletion detection is offered for free with limited coverage. [Learn more](https://docs.merge.dev/integrations/hris/supported-features/).
|
|
54
58
|
|
|
@@ -88,6 +92,7 @@ class RawDependentsClient:
|
|
|
88
92
|
"created_after": serialize_datetime(created_after) if created_after is not None else None,
|
|
89
93
|
"created_before": serialize_datetime(created_before) if created_before is not None else None,
|
|
90
94
|
"cursor": cursor,
|
|
95
|
+
"employee_id": employee_id,
|
|
91
96
|
"include_deleted_data": include_deleted_data,
|
|
92
97
|
"include_remote_data": include_remote_data,
|
|
93
98
|
"include_sensitive_fields": include_sensitive_fields,
|
|
@@ -183,6 +188,7 @@ class AsyncRawDependentsClient:
|
|
|
183
188
|
created_after: typing.Optional[dt.datetime] = None,
|
|
184
189
|
created_before: typing.Optional[dt.datetime] = None,
|
|
185
190
|
cursor: typing.Optional[str] = None,
|
|
191
|
+
employee_id: typing.Optional[str] = None,
|
|
186
192
|
include_deleted_data: typing.Optional[bool] = None,
|
|
187
193
|
include_remote_data: typing.Optional[bool] = None,
|
|
188
194
|
include_sensitive_fields: typing.Optional[bool] = None,
|
|
@@ -207,6 +213,9 @@ class AsyncRawDependentsClient:
|
|
|
207
213
|
cursor : typing.Optional[str]
|
|
208
214
|
The pagination cursor value.
|
|
209
215
|
|
|
216
|
+
employee_id : typing.Optional[str]
|
|
217
|
+
If provided, will only return dependents for this employee.
|
|
218
|
+
|
|
210
219
|
include_deleted_data : typing.Optional[bool]
|
|
211
220
|
Indicates whether or not this object has been deleted in the third party platform. Full coverage deletion detection is a premium add-on. Native deletion detection is offered for free with limited coverage. [Learn more](https://docs.merge.dev/integrations/hris/supported-features/).
|
|
212
221
|
|
|
@@ -246,6 +255,7 @@ class AsyncRawDependentsClient:
|
|
|
246
255
|
"created_after": serialize_datetime(created_after) if created_after is not None else None,
|
|
247
256
|
"created_before": serialize_datetime(created_before) if created_before is not None else None,
|
|
248
257
|
"cursor": cursor,
|
|
258
|
+
"employee_id": employee_id,
|
|
249
259
|
"include_deleted_data": include_deleted_data,
|
|
250
260
|
"include_remote_data": include_remote_data,
|
|
251
261
|
"include_sensitive_fields": include_sensitive_fields,
|
|
@@ -47,6 +47,7 @@ class EmployeesClient:
|
|
|
47
47
|
created_before: typing.Optional[dt.datetime] = None,
|
|
48
48
|
cursor: typing.Optional[str] = None,
|
|
49
49
|
display_full_name: typing.Optional[str] = None,
|
|
50
|
+
employee_number: typing.Optional[str] = None,
|
|
50
51
|
employment_status: typing.Optional[EmployeesListRequestEmploymentStatus] = None,
|
|
51
52
|
employment_type: typing.Optional[str] = None,
|
|
52
53
|
expand: typing.Optional[EmployeesListRequestExpand] = None,
|
|
@@ -97,6 +98,9 @@ class EmployeesClient:
|
|
|
97
98
|
display_full_name : typing.Optional[str]
|
|
98
99
|
If provided, will only return employees with this display name.
|
|
99
100
|
|
|
101
|
+
employee_number : typing.Optional[str]
|
|
102
|
+
If provided, will only return employees with this employee number.
|
|
103
|
+
|
|
100
104
|
employment_status : typing.Optional[EmployeesListRequestEmploymentStatus]
|
|
101
105
|
If provided, will only return employees with this employment status.
|
|
102
106
|
|
|
@@ -211,6 +215,7 @@ class EmployeesClient:
|
|
|
211
215
|
created_before=created_before,
|
|
212
216
|
cursor=cursor,
|
|
213
217
|
display_full_name=display_full_name,
|
|
218
|
+
employee_number=employee_number,
|
|
214
219
|
employment_status=employment_status,
|
|
215
220
|
employment_type=employment_type,
|
|
216
221
|
expand=expand,
|
|
@@ -455,6 +460,7 @@ class AsyncEmployeesClient:
|
|
|
455
460
|
created_before: typing.Optional[dt.datetime] = None,
|
|
456
461
|
cursor: typing.Optional[str] = None,
|
|
457
462
|
display_full_name: typing.Optional[str] = None,
|
|
463
|
+
employee_number: typing.Optional[str] = None,
|
|
458
464
|
employment_status: typing.Optional[EmployeesListRequestEmploymentStatus] = None,
|
|
459
465
|
employment_type: typing.Optional[str] = None,
|
|
460
466
|
expand: typing.Optional[EmployeesListRequestExpand] = None,
|
|
@@ -505,6 +511,9 @@ class AsyncEmployeesClient:
|
|
|
505
511
|
display_full_name : typing.Optional[str]
|
|
506
512
|
If provided, will only return employees with this display name.
|
|
507
513
|
|
|
514
|
+
employee_number : typing.Optional[str]
|
|
515
|
+
If provided, will only return employees with this employee number.
|
|
516
|
+
|
|
508
517
|
employment_status : typing.Optional[EmployeesListRequestEmploymentStatus]
|
|
509
518
|
If provided, will only return employees with this employment status.
|
|
510
519
|
|
|
@@ -627,6 +636,7 @@ class AsyncEmployeesClient:
|
|
|
627
636
|
created_before=created_before,
|
|
628
637
|
cursor=cursor,
|
|
629
638
|
display_full_name=display_full_name,
|
|
639
|
+
employee_number=employee_number,
|
|
630
640
|
employment_status=employment_status,
|
|
631
641
|
employment_type=employment_type,
|
|
632
642
|
expand=expand,
|
|
@@ -41,6 +41,7 @@ class RawEmployeesClient:
|
|
|
41
41
|
created_before: typing.Optional[dt.datetime] = None,
|
|
42
42
|
cursor: typing.Optional[str] = None,
|
|
43
43
|
display_full_name: typing.Optional[str] = None,
|
|
44
|
+
employee_number: typing.Optional[str] = None,
|
|
44
45
|
employment_status: typing.Optional[EmployeesListRequestEmploymentStatus] = None,
|
|
45
46
|
employment_type: typing.Optional[str] = None,
|
|
46
47
|
expand: typing.Optional[EmployeesListRequestExpand] = None,
|
|
@@ -91,6 +92,9 @@ class RawEmployeesClient:
|
|
|
91
92
|
display_full_name : typing.Optional[str]
|
|
92
93
|
If provided, will only return employees with this display name.
|
|
93
94
|
|
|
95
|
+
employee_number : typing.Optional[str]
|
|
96
|
+
If provided, will only return employees with this employee number.
|
|
97
|
+
|
|
94
98
|
employment_status : typing.Optional[EmployeesListRequestEmploymentStatus]
|
|
95
99
|
If provided, will only return employees with this employment status.
|
|
96
100
|
|
|
@@ -196,6 +200,7 @@ class RawEmployeesClient:
|
|
|
196
200
|
"created_before": serialize_datetime(created_before) if created_before is not None else None,
|
|
197
201
|
"cursor": cursor,
|
|
198
202
|
"display_full_name": display_full_name,
|
|
203
|
+
"employee_number": employee_number,
|
|
199
204
|
"employment_status": employment_status,
|
|
200
205
|
"employment_type": employment_type,
|
|
201
206
|
"expand": expand,
|
|
@@ -471,6 +476,7 @@ class AsyncRawEmployeesClient:
|
|
|
471
476
|
created_before: typing.Optional[dt.datetime] = None,
|
|
472
477
|
cursor: typing.Optional[str] = None,
|
|
473
478
|
display_full_name: typing.Optional[str] = None,
|
|
479
|
+
employee_number: typing.Optional[str] = None,
|
|
474
480
|
employment_status: typing.Optional[EmployeesListRequestEmploymentStatus] = None,
|
|
475
481
|
employment_type: typing.Optional[str] = None,
|
|
476
482
|
expand: typing.Optional[EmployeesListRequestExpand] = None,
|
|
@@ -521,6 +527,9 @@ class AsyncRawEmployeesClient:
|
|
|
521
527
|
display_full_name : typing.Optional[str]
|
|
522
528
|
If provided, will only return employees with this display name.
|
|
523
529
|
|
|
530
|
+
employee_number : typing.Optional[str]
|
|
531
|
+
If provided, will only return employees with this employee number.
|
|
532
|
+
|
|
524
533
|
employment_status : typing.Optional[EmployeesListRequestEmploymentStatus]
|
|
525
534
|
If provided, will only return employees with this employment status.
|
|
526
535
|
|
|
@@ -626,6 +635,7 @@ class AsyncRawEmployeesClient:
|
|
|
626
635
|
"created_before": serialize_datetime(created_before) if created_before is not None else None,
|
|
627
636
|
"cursor": cursor,
|
|
628
637
|
"display_full_name": display_full_name,
|
|
638
|
+
"employee_number": employee_number,
|
|
629
639
|
"employment_status": employment_status,
|
|
630
640
|
"employment_type": employment_type,
|
|
631
641
|
"expand": expand,
|
|
@@ -117,6 +117,10 @@ class TicketingClient:
|
|
|
117
117
|
@property
|
|
118
118
|
def async_passthrough(self):
|
|
119
119
|
if self._async_passthrough is None:
|
|
120
|
+
from .resources.async_passthrough.client import (
|
|
121
|
+
AsyncPassthroughClient as resources_ticketing_resources_async_passthrough_client_AsyncPassthroughClient, # noqa: E402
|
|
122
|
+
)
|
|
123
|
+
|
|
120
124
|
self._async_passthrough = resources_ticketing_resources_async_passthrough_client_AsyncPassthroughClient(
|
|
121
125
|
client_wrapper=self._client_wrapper
|
|
122
126
|
)
|
|
@@ -500,6 +504,10 @@ class AsyncTicketingClient:
|
|
|
500
504
|
@property
|
|
501
505
|
def passthrough(self):
|
|
502
506
|
if self._passthrough is None:
|
|
507
|
+
from .resources.passthrough.client import (
|
|
508
|
+
AsyncPassthroughClient as resources_ticketing_resources_passthrough_client_AsyncPassthroughClient, # noqa: E402
|
|
509
|
+
)
|
|
510
|
+
|
|
503
511
|
self._passthrough = resources_ticketing_resources_passthrough_client_AsyncPassthroughClient(
|
|
504
512
|
client_wrapper=self._client_wrapper
|
|
505
513
|
)
|
|
@@ -40,6 +40,7 @@ class CollectionsClient:
|
|
|
40
40
|
include_shell_data: typing.Optional[bool] = None,
|
|
41
41
|
modified_after: typing.Optional[dt.datetime] = None,
|
|
42
42
|
modified_before: typing.Optional[dt.datetime] = None,
|
|
43
|
+
name: typing.Optional[str] = None,
|
|
43
44
|
page_size: typing.Optional[int] = None,
|
|
44
45
|
parent_collection_id: typing.Optional[str] = None,
|
|
45
46
|
remote_fields: typing.Optional[typing.Literal["collection_type"]] = None,
|
|
@@ -82,6 +83,9 @@ class CollectionsClient:
|
|
|
82
83
|
modified_before : typing.Optional[dt.datetime]
|
|
83
84
|
If provided, only objects synced by Merge before this date time will be returned.
|
|
84
85
|
|
|
86
|
+
name : typing.Optional[str]
|
|
87
|
+
If provided, will only return collections with this name.
|
|
88
|
+
|
|
85
89
|
page_size : typing.Optional[int]
|
|
86
90
|
Number of results to return per page.
|
|
87
91
|
|
|
@@ -128,6 +132,7 @@ class CollectionsClient:
|
|
|
128
132
|
include_shell_data=include_shell_data,
|
|
129
133
|
modified_after=modified_after,
|
|
130
134
|
modified_before=modified_before,
|
|
135
|
+
name=name,
|
|
131
136
|
page_size=page_size,
|
|
132
137
|
parent_collection_id=parent_collection_id,
|
|
133
138
|
remote_fields=remote_fields,
|
|
@@ -300,6 +305,7 @@ class AsyncCollectionsClient:
|
|
|
300
305
|
include_shell_data: typing.Optional[bool] = None,
|
|
301
306
|
modified_after: typing.Optional[dt.datetime] = None,
|
|
302
307
|
modified_before: typing.Optional[dt.datetime] = None,
|
|
308
|
+
name: typing.Optional[str] = None,
|
|
303
309
|
page_size: typing.Optional[int] = None,
|
|
304
310
|
parent_collection_id: typing.Optional[str] = None,
|
|
305
311
|
remote_fields: typing.Optional[typing.Literal["collection_type"]] = None,
|
|
@@ -342,6 +348,9 @@ class AsyncCollectionsClient:
|
|
|
342
348
|
modified_before : typing.Optional[dt.datetime]
|
|
343
349
|
If provided, only objects synced by Merge before this date time will be returned.
|
|
344
350
|
|
|
351
|
+
name : typing.Optional[str]
|
|
352
|
+
If provided, will only return collections with this name.
|
|
353
|
+
|
|
345
354
|
page_size : typing.Optional[int]
|
|
346
355
|
Number of results to return per page.
|
|
347
356
|
|
|
@@ -396,6 +405,7 @@ class AsyncCollectionsClient:
|
|
|
396
405
|
include_shell_data=include_shell_data,
|
|
397
406
|
modified_after=modified_after,
|
|
398
407
|
modified_before=modified_before,
|
|
408
|
+
name=name,
|
|
399
409
|
page_size=page_size,
|
|
400
410
|
parent_collection_id=parent_collection_id,
|
|
401
411
|
remote_fields=remote_fields,
|
|
@@ -34,6 +34,7 @@ class RawCollectionsClient:
|
|
|
34
34
|
include_shell_data: typing.Optional[bool] = None,
|
|
35
35
|
modified_after: typing.Optional[dt.datetime] = None,
|
|
36
36
|
modified_before: typing.Optional[dt.datetime] = None,
|
|
37
|
+
name: typing.Optional[str] = None,
|
|
37
38
|
page_size: typing.Optional[int] = None,
|
|
38
39
|
parent_collection_id: typing.Optional[str] = None,
|
|
39
40
|
remote_fields: typing.Optional[typing.Literal["collection_type"]] = None,
|
|
@@ -76,6 +77,9 @@ class RawCollectionsClient:
|
|
|
76
77
|
modified_before : typing.Optional[dt.datetime]
|
|
77
78
|
If provided, only objects synced by Merge before this date time will be returned.
|
|
78
79
|
|
|
80
|
+
name : typing.Optional[str]
|
|
81
|
+
If provided, will only return collections with this name.
|
|
82
|
+
|
|
79
83
|
page_size : typing.Optional[int]
|
|
80
84
|
Number of results to return per page.
|
|
81
85
|
|
|
@@ -113,6 +117,7 @@ class RawCollectionsClient:
|
|
|
113
117
|
"include_shell_data": include_shell_data,
|
|
114
118
|
"modified_after": serialize_datetime(modified_after) if modified_after is not None else None,
|
|
115
119
|
"modified_before": serialize_datetime(modified_before) if modified_before is not None else None,
|
|
120
|
+
"name": name,
|
|
116
121
|
"page_size": page_size,
|
|
117
122
|
"parent_collection_id": parent_collection_id,
|
|
118
123
|
"remote_fields": remote_fields,
|
|
@@ -295,6 +300,7 @@ class AsyncRawCollectionsClient:
|
|
|
295
300
|
include_shell_data: typing.Optional[bool] = None,
|
|
296
301
|
modified_after: typing.Optional[dt.datetime] = None,
|
|
297
302
|
modified_before: typing.Optional[dt.datetime] = None,
|
|
303
|
+
name: typing.Optional[str] = None,
|
|
298
304
|
page_size: typing.Optional[int] = None,
|
|
299
305
|
parent_collection_id: typing.Optional[str] = None,
|
|
300
306
|
remote_fields: typing.Optional[typing.Literal["collection_type"]] = None,
|
|
@@ -337,6 +343,9 @@ class AsyncRawCollectionsClient:
|
|
|
337
343
|
modified_before : typing.Optional[dt.datetime]
|
|
338
344
|
If provided, only objects synced by Merge before this date time will be returned.
|
|
339
345
|
|
|
346
|
+
name : typing.Optional[str]
|
|
347
|
+
If provided, will only return collections with this name.
|
|
348
|
+
|
|
340
349
|
page_size : typing.Optional[int]
|
|
341
350
|
Number of results to return per page.
|
|
342
351
|
|
|
@@ -374,6 +383,7 @@ class AsyncRawCollectionsClient:
|
|
|
374
383
|
"include_shell_data": include_shell_data,
|
|
375
384
|
"modified_after": serialize_datetime(modified_after) if modified_after is not None else None,
|
|
376
385
|
"modified_before": serialize_datetime(modified_before) if modified_before is not None else None,
|
|
386
|
+
"name": name,
|
|
377
387
|
"page_size": page_size,
|
|
378
388
|
"parent_collection_id": parent_collection_id,
|
|
379
389
|
"remote_fields": remote_fields,
|
|
@@ -37,6 +37,7 @@ class ContactsClient:
|
|
|
37
37
|
created_after: typing.Optional[dt.datetime] = None,
|
|
38
38
|
created_before: typing.Optional[dt.datetime] = None,
|
|
39
39
|
cursor: typing.Optional[str] = None,
|
|
40
|
+
email_address: typing.Optional[str] = None,
|
|
40
41
|
expand: typing.Optional[typing.Literal["account"]] = None,
|
|
41
42
|
include_deleted_data: typing.Optional[bool] = None,
|
|
42
43
|
include_remote_data: typing.Optional[bool] = None,
|
|
@@ -61,6 +62,9 @@ class ContactsClient:
|
|
|
61
62
|
cursor : typing.Optional[str]
|
|
62
63
|
The pagination cursor value.
|
|
63
64
|
|
|
65
|
+
email_address : typing.Optional[str]
|
|
66
|
+
If provided, will only return Contacts that match this email.
|
|
67
|
+
|
|
64
68
|
expand : typing.Optional[typing.Literal["account"]]
|
|
65
69
|
Which relations should be returned in expanded form. Multiple relation names should be comma separated without spaces.
|
|
66
70
|
|
|
@@ -109,6 +113,7 @@ class ContactsClient:
|
|
|
109
113
|
created_after=created_after,
|
|
110
114
|
created_before=created_before,
|
|
111
115
|
cursor=cursor,
|
|
116
|
+
email_address=email_address,
|
|
112
117
|
expand=expand,
|
|
113
118
|
include_deleted_data=include_deleted_data,
|
|
114
119
|
include_remote_data=include_remote_data,
|
|
@@ -271,6 +276,7 @@ class AsyncContactsClient:
|
|
|
271
276
|
created_after: typing.Optional[dt.datetime] = None,
|
|
272
277
|
created_before: typing.Optional[dt.datetime] = None,
|
|
273
278
|
cursor: typing.Optional[str] = None,
|
|
279
|
+
email_address: typing.Optional[str] = None,
|
|
274
280
|
expand: typing.Optional[typing.Literal["account"]] = None,
|
|
275
281
|
include_deleted_data: typing.Optional[bool] = None,
|
|
276
282
|
include_remote_data: typing.Optional[bool] = None,
|
|
@@ -295,6 +301,9 @@ class AsyncContactsClient:
|
|
|
295
301
|
cursor : typing.Optional[str]
|
|
296
302
|
The pagination cursor value.
|
|
297
303
|
|
|
304
|
+
email_address : typing.Optional[str]
|
|
305
|
+
If provided, will only return Contacts that match this email.
|
|
306
|
+
|
|
298
307
|
expand : typing.Optional[typing.Literal["account"]]
|
|
299
308
|
Which relations should be returned in expanded form. Multiple relation names should be comma separated without spaces.
|
|
300
309
|
|
|
@@ -351,6 +360,7 @@ class AsyncContactsClient:
|
|
|
351
360
|
created_after=created_after,
|
|
352
361
|
created_before=created_before,
|
|
353
362
|
cursor=cursor,
|
|
363
|
+
email_address=email_address,
|
|
354
364
|
expand=expand,
|
|
355
365
|
include_deleted_data=include_deleted_data,
|
|
356
366
|
include_remote_data=include_remote_data,
|
|
@@ -31,6 +31,7 @@ class RawContactsClient:
|
|
|
31
31
|
created_after: typing.Optional[dt.datetime] = None,
|
|
32
32
|
created_before: typing.Optional[dt.datetime] = None,
|
|
33
33
|
cursor: typing.Optional[str] = None,
|
|
34
|
+
email_address: typing.Optional[str] = None,
|
|
34
35
|
expand: typing.Optional[typing.Literal["account"]] = None,
|
|
35
36
|
include_deleted_data: typing.Optional[bool] = None,
|
|
36
37
|
include_remote_data: typing.Optional[bool] = None,
|
|
@@ -55,6 +56,9 @@ class RawContactsClient:
|
|
|
55
56
|
cursor : typing.Optional[str]
|
|
56
57
|
The pagination cursor value.
|
|
57
58
|
|
|
59
|
+
email_address : typing.Optional[str]
|
|
60
|
+
If provided, will only return Contacts that match this email.
|
|
61
|
+
|
|
58
62
|
expand : typing.Optional[typing.Literal["account"]]
|
|
59
63
|
Which relations should be returned in expanded form. Multiple relation names should be comma separated without spaces.
|
|
60
64
|
|
|
@@ -94,6 +98,7 @@ class RawContactsClient:
|
|
|
94
98
|
"created_after": serialize_datetime(created_after) if created_after is not None else None,
|
|
95
99
|
"created_before": serialize_datetime(created_before) if created_before is not None else None,
|
|
96
100
|
"cursor": cursor,
|
|
101
|
+
"email_address": email_address,
|
|
97
102
|
"expand": expand,
|
|
98
103
|
"include_deleted_data": include_deleted_data,
|
|
99
104
|
"include_remote_data": include_remote_data,
|
|
@@ -285,6 +290,7 @@ class AsyncRawContactsClient:
|
|
|
285
290
|
created_after: typing.Optional[dt.datetime] = None,
|
|
286
291
|
created_before: typing.Optional[dt.datetime] = None,
|
|
287
292
|
cursor: typing.Optional[str] = None,
|
|
293
|
+
email_address: typing.Optional[str] = None,
|
|
288
294
|
expand: typing.Optional[typing.Literal["account"]] = None,
|
|
289
295
|
include_deleted_data: typing.Optional[bool] = None,
|
|
290
296
|
include_remote_data: typing.Optional[bool] = None,
|
|
@@ -309,6 +315,9 @@ class AsyncRawContactsClient:
|
|
|
309
315
|
cursor : typing.Optional[str]
|
|
310
316
|
The pagination cursor value.
|
|
311
317
|
|
|
318
|
+
email_address : typing.Optional[str]
|
|
319
|
+
If provided, will only return Contacts that match this email.
|
|
320
|
+
|
|
312
321
|
expand : typing.Optional[typing.Literal["account"]]
|
|
313
322
|
Which relations should be returned in expanded form. Multiple relation names should be comma separated without spaces.
|
|
314
323
|
|
|
@@ -348,6 +357,7 @@ class AsyncRawContactsClient:
|
|
|
348
357
|
"created_after": serialize_datetime(created_after) if created_after is not None else None,
|
|
349
358
|
"created_before": serialize_datetime(created_before) if created_before is not None else None,
|
|
350
359
|
"cursor": cursor,
|
|
360
|
+
"email_address": email_address,
|
|
351
361
|
"expand": expand,
|
|
352
362
|
"include_deleted_data": include_deleted_data,
|
|
353
363
|
"include_remote_data": include_remote_data,
|
|
@@ -64,6 +64,7 @@ class TicketsClient:
|
|
|
64
64
|
include_shell_data: typing.Optional[bool] = None,
|
|
65
65
|
modified_after: typing.Optional[dt.datetime] = None,
|
|
66
66
|
modified_before: typing.Optional[dt.datetime] = None,
|
|
67
|
+
name: typing.Optional[str] = None,
|
|
67
68
|
page_size: typing.Optional[int] = None,
|
|
68
69
|
parent_ticket_id: typing.Optional[str] = None,
|
|
69
70
|
priority: typing.Optional[TicketsListRequestPriority] = None,
|
|
@@ -142,6 +143,9 @@ class TicketsClient:
|
|
|
142
143
|
modified_before : typing.Optional[dt.datetime]
|
|
143
144
|
If provided, only objects synced by Merge before this date time will be returned.
|
|
144
145
|
|
|
146
|
+
name : typing.Optional[str]
|
|
147
|
+
If provided, will only return tickets with this name.
|
|
148
|
+
|
|
145
149
|
page_size : typing.Optional[int]
|
|
146
150
|
Number of results to return per page.
|
|
147
151
|
|
|
@@ -229,6 +233,7 @@ class TicketsClient:
|
|
|
229
233
|
include_shell_data=include_shell_data,
|
|
230
234
|
modified_after=modified_after,
|
|
231
235
|
modified_before=modified_before,
|
|
236
|
+
name=name,
|
|
232
237
|
page_size=page_size,
|
|
233
238
|
parent_ticket_id=parent_ticket_id,
|
|
234
239
|
priority=priority,
|
|
@@ -669,6 +674,7 @@ class AsyncTicketsClient:
|
|
|
669
674
|
include_shell_data: typing.Optional[bool] = None,
|
|
670
675
|
modified_after: typing.Optional[dt.datetime] = None,
|
|
671
676
|
modified_before: typing.Optional[dt.datetime] = None,
|
|
677
|
+
name: typing.Optional[str] = None,
|
|
672
678
|
page_size: typing.Optional[int] = None,
|
|
673
679
|
parent_ticket_id: typing.Optional[str] = None,
|
|
674
680
|
priority: typing.Optional[TicketsListRequestPriority] = None,
|
|
@@ -747,6 +753,9 @@ class AsyncTicketsClient:
|
|
|
747
753
|
modified_before : typing.Optional[dt.datetime]
|
|
748
754
|
If provided, only objects synced by Merge before this date time will be returned.
|
|
749
755
|
|
|
756
|
+
name : typing.Optional[str]
|
|
757
|
+
If provided, will only return tickets with this name.
|
|
758
|
+
|
|
750
759
|
page_size : typing.Optional[int]
|
|
751
760
|
Number of results to return per page.
|
|
752
761
|
|
|
@@ -842,6 +851,7 @@ class AsyncTicketsClient:
|
|
|
842
851
|
include_shell_data=include_shell_data,
|
|
843
852
|
modified_after=modified_after,
|
|
844
853
|
modified_before=modified_before,
|
|
854
|
+
name=name,
|
|
845
855
|
page_size=page_size,
|
|
846
856
|
parent_ticket_id=parent_ticket_id,
|
|
847
857
|
priority=priority,
|
|
@@ -58,6 +58,7 @@ class RawTicketsClient:
|
|
|
58
58
|
include_shell_data: typing.Optional[bool] = None,
|
|
59
59
|
modified_after: typing.Optional[dt.datetime] = None,
|
|
60
60
|
modified_before: typing.Optional[dt.datetime] = None,
|
|
61
|
+
name: typing.Optional[str] = None,
|
|
61
62
|
page_size: typing.Optional[int] = None,
|
|
62
63
|
parent_ticket_id: typing.Optional[str] = None,
|
|
63
64
|
priority: typing.Optional[TicketsListRequestPriority] = None,
|
|
@@ -136,6 +137,9 @@ class RawTicketsClient:
|
|
|
136
137
|
modified_before : typing.Optional[dt.datetime]
|
|
137
138
|
If provided, only objects synced by Merge before this date time will be returned.
|
|
138
139
|
|
|
140
|
+
name : typing.Optional[str]
|
|
141
|
+
If provided, will only return tickets with this name.
|
|
142
|
+
|
|
139
143
|
page_size : typing.Optional[int]
|
|
140
144
|
Number of results to return per page.
|
|
141
145
|
|
|
@@ -214,6 +218,7 @@ class RawTicketsClient:
|
|
|
214
218
|
"include_shell_data": include_shell_data,
|
|
215
219
|
"modified_after": serialize_datetime(modified_after) if modified_after is not None else None,
|
|
216
220
|
"modified_before": serialize_datetime(modified_before) if modified_before is not None else None,
|
|
221
|
+
"name": name,
|
|
217
222
|
"page_size": page_size,
|
|
218
223
|
"parent_ticket_id": parent_ticket_id,
|
|
219
224
|
"priority": priority,
|
|
@@ -718,6 +723,7 @@ class AsyncRawTicketsClient:
|
|
|
718
723
|
include_shell_data: typing.Optional[bool] = None,
|
|
719
724
|
modified_after: typing.Optional[dt.datetime] = None,
|
|
720
725
|
modified_before: typing.Optional[dt.datetime] = None,
|
|
726
|
+
name: typing.Optional[str] = None,
|
|
721
727
|
page_size: typing.Optional[int] = None,
|
|
722
728
|
parent_ticket_id: typing.Optional[str] = None,
|
|
723
729
|
priority: typing.Optional[TicketsListRequestPriority] = None,
|
|
@@ -796,6 +802,9 @@ class AsyncRawTicketsClient:
|
|
|
796
802
|
modified_before : typing.Optional[dt.datetime]
|
|
797
803
|
If provided, only objects synced by Merge before this date time will be returned.
|
|
798
804
|
|
|
805
|
+
name : typing.Optional[str]
|
|
806
|
+
If provided, will only return tickets with this name.
|
|
807
|
+
|
|
799
808
|
page_size : typing.Optional[int]
|
|
800
809
|
Number of results to return per page.
|
|
801
810
|
|
|
@@ -874,6 +883,7 @@ class AsyncRawTicketsClient:
|
|
|
874
883
|
"include_shell_data": include_shell_data,
|
|
875
884
|
"modified_after": serialize_datetime(modified_after) if modified_after is not None else None,
|
|
876
885
|
"modified_before": serialize_datetime(modified_before) if modified_before is not None else None,
|
|
886
|
+
"name": name,
|
|
877
887
|
"page_size": page_size,
|
|
878
888
|
"parent_ticket_id": parent_ticket_id,
|
|
879
889
|
"priority": priority,
|
|
@@ -72,6 +72,21 @@ class Collection(UncheckedBaseModel):
|
|
|
72
72
|
The parent collection for this collection.
|
|
73
73
|
"""
|
|
74
74
|
|
|
75
|
+
collection_url: typing.Optional[str] = pydantic.Field(default=None)
|
|
76
|
+
"""
|
|
77
|
+
The 3rd party url of the Collection.
|
|
78
|
+
"""
|
|
79
|
+
|
|
80
|
+
remote_created_at: typing.Optional[dt.datetime] = pydantic.Field(default=None)
|
|
81
|
+
"""
|
|
82
|
+
When the third party's collection was created.
|
|
83
|
+
"""
|
|
84
|
+
|
|
85
|
+
remote_updated_at: typing.Optional[dt.datetime] = pydantic.Field(default=None)
|
|
86
|
+
"""
|
|
87
|
+
When the third party's collection was updated.
|
|
88
|
+
"""
|
|
89
|
+
|
|
75
90
|
remote_was_deleted: typing.Optional[bool] = pydantic.Field(default=None)
|
|
76
91
|
"""
|
|
77
92
|
Indicates whether or not this object has been deleted in the third party platform. Full coverage deletion detection is a premium add-on. Native deletion detection is offered for free with limited coverage. [Learn more](https://docs.merge.dev/integrations/hris/supported-features/).
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: mergepythonclient
|
|
3
|
-
Version: 2.3.
|
|
3
|
+
Version: 2.3.2
|
|
4
4
|
Summary:
|
|
5
5
|
Requires-Python: >=3.8,<4.0
|
|
6
6
|
Classifier: Intended Audience :: Developers
|
|
@@ -197,7 +197,7 @@ from merge import Merge
|
|
|
197
197
|
client = Merge(
|
|
198
198
|
...,
|
|
199
199
|
httpx_client=httpx.Client(
|
|
200
|
-
|
|
200
|
+
proxy="http://my.test.proxy.example.com",
|
|
201
201
|
transport=httpx.HTTPTransport(local_address="0.0.0.0"),
|
|
202
202
|
),
|
|
203
203
|
)
|
|
@@ -260,3 +260,4 @@ while response.next is not None:
|
|
|
260
260
|
|
|
261
261
|
|
|
262
262
|
|
|
263
|
+
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
merge/__init__.py,sha256=7CpPMlOY5g9lp7RtOX7wB2O6rqlVjboKEcEwmF0EHL4,1582
|
|
2
|
-
merge/client.py,sha256=
|
|
2
|
+
merge/client.py,sha256=DIvk5MaPoFctxbD500-XVKS7uG8cSXgxpYo1Pg1j82w,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=CFhFS5Upah_C-GCX6ESudK6v_wwieX08zsiDfk5U6Uc,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=0BdFAcBmbPlUMziYy6UXvqP6jMp7jH6qX4JTFRlAxpE,42054
|
|
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=e8YYKPWcG-WtSq91-f_qP9ae2w_v--p4MhmzzkSBTl8,28743
|
|
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=fpunHX755dQIqGkddtd9FRFVYKmArc1yDgFVPnkgeog,27462
|
|
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=wYWkcg2P9jfN1EBLRwi-t7M42bxiHXoYimivAD10rGU,19955
|
|
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=87slfB-phfRkryRElmVjF5hDO3TtWp3MG_SK7VSVgCI,29280
|
|
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
|
|
@@ -1686,8 +1686,8 @@ merge/resources/hris/resources/delete_account/__init__.py,sha256=_VhToAyIt_5axN6
|
|
|
1686
1686
|
merge/resources/hris/resources/delete_account/client.py,sha256=l0EKsOUWZQ9NyaFb7PqETeb9bnnFhZNfYxcuvQ8PE0A,2667
|
|
1687
1687
|
merge/resources/hris/resources/delete_account/raw_client.py,sha256=QTvig4eJsnMJ_RdFDw4G1TvwUzUvh1VYxMAJi9RGj9I,2637
|
|
1688
1688
|
merge/resources/hris/resources/dependents/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
|
|
1689
|
-
merge/resources/hris/resources/dependents/client.py,sha256=
|
|
1690
|
-
merge/resources/hris/resources/dependents/raw_client.py,sha256=
|
|
1689
|
+
merge/resources/hris/resources/dependents/client.py,sha256=xyebKtDDLP46Co2Af8gUR7-_l-I3Xi8WRpCQeZzcvYY,12711
|
|
1690
|
+
merge/resources/hris/resources/dependents/raw_client.py,sha256=G4pbhZix_wqB7FY8CVzggUCPfwoLDQan47ApTlCvr_8,14968
|
|
1691
1691
|
merge/resources/hris/resources/employee_payroll_runs/__init__.py,sha256=enjEMt5A9ijimHvvW3FV28d9u0FE95JxYbmIW8jhpCU,1216
|
|
1692
1692
|
merge/resources/hris/resources/employee_payroll_runs/client.py,sha256=hnpgR42kyCxbDYA-047NZDykJcykGfdYAe-KI9wCv5U,15749
|
|
1693
1693
|
merge/resources/hris/resources/employee_payroll_runs/raw_client.py,sha256=45jAB-Hq4PMnD4ixo0WYJkfMAeZn2VL24T2XKe5ntFE,18544
|
|
@@ -1695,8 +1695,8 @@ merge/resources/hris/resources/employee_payroll_runs/types/__init__.py,sha256=Ze
|
|
|
1695
1695
|
merge/resources/hris/resources/employee_payroll_runs/types/employee_payroll_runs_list_request_expand.py,sha256=zTW66wQmK-5lNIsfQUewfAcPwPEnLiJmGP4iq7VY-YA,829
|
|
1696
1696
|
merge/resources/hris/resources/employee_payroll_runs/types/employee_payroll_runs_retrieve_request_expand.py,sha256=Wal9UB9KcMJwpulAHNu_mobxClWUbFjE5GnaWi6fOBg,845
|
|
1697
1697
|
merge/resources/hris/resources/employees/__init__.py,sha256=zzzZvE_HZ5WnMt3mH1HqMF1VAePaByO6sB_6gmJyL98,2032
|
|
1698
|
-
merge/resources/hris/resources/employees/client.py,sha256=
|
|
1699
|
-
merge/resources/hris/resources/employees/raw_client.py,sha256=
|
|
1698
|
+
merge/resources/hris/resources/employees/client.py,sha256=yIKNIxa8kcz6MJoI8gkUVuj7z7RlhEIB7kLiMAdQC24,33906
|
|
1699
|
+
merge/resources/hris/resources/employees/raw_client.py,sha256=ghh0piQ08Fs26DGHHdMH2KpZpxV6MZsvHtgCwQ4vKQg,39890
|
|
1700
1700
|
merge/resources/hris/resources/employees/types/__init__.py,sha256=ho_jX7f9JoE8V1f7EpPvgU94H1Ep127PxvBSUY4J1Fs,2625
|
|
1701
1701
|
merge/resources/hris/resources/employees/types/employees_list_request_employment_status.py,sha256=BY67cCw8kzJS1KypaePpcMKyGUVP71w5VwpOiD_GTSM,739
|
|
1702
1702
|
merge/resources/hris/resources/employees/types/employees_list_request_expand.py,sha256=yIzn_8nt-SkvZt0qIfZro5clWjhqNy6iBf2anA9ixlA,80247
|
|
@@ -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=kioyOQqFTh18MypzQZEPPBUSa8zXRo41ba2ybI5hSC8,24496
|
|
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
|
|
@@ -2034,8 +2034,8 @@ merge/resources/ticketing/resources/available_actions/__init__.py,sha256=_VhToAy
|
|
|
2034
2034
|
merge/resources/ticketing/resources/available_actions/client.py,sha256=0ZuT2-IouQtS2djKSuMl_kjh384RtNxDJXPjt2vr4q8,2907
|
|
2035
2035
|
merge/resources/ticketing/resources/available_actions/raw_client.py,sha256=bqHzLRUZnmV-0yc6e3JJQgI68Rf8C1bJItdcQ4SBwfI,3449
|
|
2036
2036
|
merge/resources/ticketing/resources/collections/__init__.py,sha256=yzQrpCSEQDsIFmwVIz3dki0SBCv0iF2iO9G4mUCElBY,1062
|
|
2037
|
-
merge/resources/ticketing/resources/collections/client.py,sha256=
|
|
2038
|
-
merge/resources/ticketing/resources/collections/raw_client.py,sha256=
|
|
2037
|
+
merge/resources/ticketing/resources/collections/client.py,sha256=94Hx7UBieWENq-arOaOwlBwrroyG7BxwaMr5z8IM-l8,22635
|
|
2038
|
+
merge/resources/ticketing/resources/collections/raw_client.py,sha256=AXFevui5SvaozIgMRJitxk6L7bGyrp7MpuzUbycTKVs,25891
|
|
2039
2039
|
merge/resources/ticketing/resources/collections/types/__init__.py,sha256=N7Z33MY0yvoP4hp7YILUcy6ZW-5IGLzPW_ZPMHDMmaA,1136
|
|
2040
2040
|
merge/resources/ticketing/resources/collections/types/collections_viewers_list_request_expand.py,sha256=OJlzFVlszeOLtpbqPGUN2Vndb1Txaooy9GpFIIUAyjA,715
|
|
2041
2041
|
merge/resources/ticketing/resources/comments/__init__.py,sha256=NmHEkKeKhNPwbtx8Rf6sNuSPSVdGhPMoYHI3mZB7KiM,1150
|
|
@@ -2045,8 +2045,8 @@ merge/resources/ticketing/resources/comments/types/__init__.py,sha256=E47ia0Pdd0
|
|
|
2045
2045
|
merge/resources/ticketing/resources/comments/types/comments_list_request_expand.py,sha256=nKoGDtfRuefnl4HY6gbLt-31Ma5JuoKwJVOlmszWpkM,1435
|
|
2046
2046
|
merge/resources/ticketing/resources/comments/types/comments_retrieve_request_expand.py,sha256=uzvlPNelOETowutZAc7eGSzotIOgFW5PdE2PpfxsM64,1467
|
|
2047
2047
|
merge/resources/ticketing/resources/contacts/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
|
|
2048
|
-
merge/resources/ticketing/resources/contacts/client.py,sha256=
|
|
2049
|
-
merge/resources/ticketing/resources/contacts/raw_client.py,sha256=
|
|
2048
|
+
merge/resources/ticketing/resources/contacts/client.py,sha256=cq7x7koU5EVDQ9gZxSFgK4lyDDP2j8vDgRH65LfI94A,17467
|
|
2049
|
+
merge/resources/ticketing/resources/contacts/raw_client.py,sha256=9gy-_3SMnw-CSwI-lgzWS6C0WcPfRzwSKeZ6uiKf_p4,22074
|
|
2050
2050
|
merge/resources/ticketing/resources/delete_account/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
|
|
2051
2051
|
merge/resources/ticketing/resources/delete_account/client.py,sha256=mGGWMgMjplnEsjt42J2059posWuCj-FyuAPhPhcLdQs,2677
|
|
2052
2052
|
merge/resources/ticketing/resources/delete_account/raw_client.py,sha256=dEzvAjF-eusLG3buwgndEeSLeIavl5kCK051Gf1cKD4,2647
|
|
@@ -2101,8 +2101,8 @@ merge/resources/ticketing/resources/teams/__init__.py,sha256=_VhToAyIt_5axN6CLJw
|
|
|
2101
2101
|
merge/resources/ticketing/resources/teams/client.py,sha256=yh5we_JqqPWQJSfoQR30lGq3TsplaCUS_dUQUb1u6uQ,11039
|
|
2102
2102
|
merge/resources/ticketing/resources/teams/raw_client.py,sha256=ZORtIL48lj-2gLymgrZcVZtgN9nPxMMNbKVIJc81xf4,13254
|
|
2103
2103
|
merge/resources/ticketing/resources/tickets/__init__.py,sha256=FYL9mDiw0QgkoUN2PcDIXe0j9QytUY3Jsa4vCVCpo9E,1969
|
|
2104
|
-
merge/resources/ticketing/resources/tickets/client.py,sha256=
|
|
2105
|
-
merge/resources/ticketing/resources/tickets/raw_client.py,sha256=
|
|
2104
|
+
merge/resources/ticketing/resources/tickets/client.py,sha256=zxWf55nTUli5JwCTKvG4OhkALrl2k70JQoG6wyjIv8w,49064
|
|
2105
|
+
merge/resources/ticketing/resources/tickets/raw_client.py,sha256=iMjeMFQx6hMt2JTFJCMDeUKeD5lRmOMGpWZ1oX9U8ro,59485
|
|
2106
2106
|
merge/resources/ticketing/resources/tickets/types/__init__.py,sha256=1tZDeuby1cP_MxknSPoiJTIPIHkaVLKqPSAOBPiLhak,2518
|
|
2107
2107
|
merge/resources/ticketing/resources/tickets/types/tickets_list_request_expand.py,sha256=KxXHoeLtnz3GIdhceulanFd62gXIvznYedNVDMIs1jc,86077
|
|
2108
2108
|
merge/resources/ticketing/resources/tickets/types/tickets_list_request_priority.py,sha256=u1BXrjcjqAv-prW6BJboeyw_CdBsjj6Lo8a8bnnsHA8,810
|
|
@@ -2144,7 +2144,7 @@ merge/resources/ticketing/types/audit_log_event_role.py,sha256=PsoFhqmQ9DiuAx5xQ
|
|
|
2144
2144
|
merge/resources/ticketing/types/available_actions.py,sha256=j-KMLrxEDj8gAlMsEIPs0kRW_LjtEk0IjGB_W04vDMc,1066
|
|
2145
2145
|
merge/resources/ticketing/types/categories_enum.py,sha256=D8WazEwlr8J2tRQT14nO_samkLIS9-gixLmortWbOoE,1391
|
|
2146
2146
|
merge/resources/ticketing/types/category_enum.py,sha256=j9DOZYeKZvnejiWqyXXdXbgxFx0IXd5yPkh7t64Prhc,1375
|
|
2147
|
-
merge/resources/ticketing/types/collection.py,sha256=
|
|
2147
|
+
merge/resources/ticketing/types/collection.py,sha256=brmTVcS10zWEdrJPn__gtGmWIObeTp_rmcRv2O48Z54,3508
|
|
2148
2148
|
merge/resources/ticketing/types/collection_access_level.py,sha256=_FtCzwDYNnsE0YlwUXe0YLhY6Yk01qmcZOupSqmLhb8,218
|
|
2149
2149
|
merge/resources/ticketing/types/collection_access_level_enum.py,sha256=T80ySkaZrk90nKnZCmbm_9DbzIWNzfPhEb4-Tthi2QQ,1034
|
|
2150
2150
|
merge/resources/ticketing/types/collection_collection_type.py,sha256=r3HZRvb4P5wzYzZ5gOsYaT7vLoGvHknKr2gpGDuR76g,199
|
|
@@ -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.2.dist-info/LICENSE.md,sha256=WKO7xLnLSUInldiq5i25eVqKAjwIUKenaS4Cgir2Iuw,3275
|
|
2298
|
+
mergepythonclient-2.3.2.dist-info/METADATA,sha256=t6BqOa9Hqi_dZeDUeQYVWmV8gm6YY3TRRmM74Lyg990,7269
|
|
2299
|
+
mergepythonclient-2.3.2.dist-info/WHEEL,sha256=Zb28QaM1gQi8f4VCBhsUklF61CTlNYfs9YAZn-TOGFk,88
|
|
2300
|
+
mergepythonclient-2.3.2.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|