mergepythonclient 2.5.0__py3-none-any.whl → 2.6.0__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/chat/__init__.py +6 -0
- merge/resources/chat/resources/__init__.py +5 -0
- merge/resources/chat/resources/messages/__init__.py +31 -0
- merge/resources/chat/resources/messages/client.py +46 -0
- merge/resources/chat/resources/messages/raw_client.py +32 -0
- merge/resources/chat/resources/messages/types/__init__.py +36 -0
- merge/resources/chat/resources/messages/types/messages_list_request_order_by.py +21 -0
- merge/resources/chat/resources/messages/types/messages_replies_list_request_order_by.py +21 -0
- merge/resources/chat/types/conversation.py +10 -0
- merge/resources/chat/types/group.py +10 -0
- merge/resources/chat/types/member.py +10 -0
- merge/resources/chat/types/message.py +10 -0
- merge/resources/chat/types/user.py +10 -0
- {mergepythonclient-2.5.0.dist-info → mergepythonclient-2.6.0.dist-info}/METADATA +21 -1
- {mergepythonclient-2.5.0.dist-info → mergepythonclient-2.6.0.dist-info}/RECORD +19 -16
- {mergepythonclient-2.5.0.dist-info → mergepythonclient-2.6.0.dist-info}/LICENSE.md +0 -0
- {mergepythonclient-2.5.0.dist-info → mergepythonclient-2.6.0.dist-info}/WHEEL +0 -0
merge/client.py
CHANGED
|
@@ -92,8 +92,8 @@ class Merge:
|
|
|
92
92
|
self._chat: typing.Optional[ChatClient] = None
|
|
93
93
|
self._crm: typing.Optional[CrmClient] = None
|
|
94
94
|
self._filestorage: typing.Optional[FilestorageClient] = None
|
|
95
|
-
self._hris: typing.Optional[HrisClient] = None
|
|
96
95
|
self._knowledgebase: typing.Optional[KnowledgebaseClient] = None
|
|
96
|
+
self._hris: typing.Optional[HrisClient] = None
|
|
97
97
|
self._ticketing: typing.Optional[TicketingClient] = None
|
|
98
98
|
self._accounting: typing.Optional[AccountingClient] = None
|
|
99
99
|
|
|
@@ -129,14 +129,6 @@ class Merge:
|
|
|
129
129
|
self._filestorage = FilestorageClient(client_wrapper=self._client_wrapper)
|
|
130
130
|
return self._filestorage
|
|
131
131
|
|
|
132
|
-
@property
|
|
133
|
-
def hris(self):
|
|
134
|
-
if self._hris is None:
|
|
135
|
-
from .resources.hris.client import HrisClient # noqa: E402
|
|
136
|
-
|
|
137
|
-
self._hris = HrisClient(client_wrapper=self._client_wrapper)
|
|
138
|
-
return self._hris
|
|
139
|
-
|
|
140
132
|
@property
|
|
141
133
|
def knowledgebase(self):
|
|
142
134
|
if self._knowledgebase is None:
|
|
@@ -145,6 +137,14 @@ class Merge:
|
|
|
145
137
|
self._knowledgebase = KnowledgebaseClient(client_wrapper=self._client_wrapper)
|
|
146
138
|
return self._knowledgebase
|
|
147
139
|
|
|
140
|
+
@property
|
|
141
|
+
def hris(self):
|
|
142
|
+
if self._hris is None:
|
|
143
|
+
from .resources.hris.client import HrisClient # noqa: E402
|
|
144
|
+
|
|
145
|
+
self._hris = HrisClient(client_wrapper=self._client_wrapper)
|
|
146
|
+
return self._hris
|
|
147
|
+
|
|
148
148
|
@property
|
|
149
149
|
def ticketing(self):
|
|
150
150
|
if self._ticketing is None:
|
|
@@ -235,8 +235,8 @@ class AsyncMerge:
|
|
|
235
235
|
self._chat: typing.Optional[AsyncChatClient] = None
|
|
236
236
|
self._crm: typing.Optional[AsyncCrmClient] = None
|
|
237
237
|
self._filestorage: typing.Optional[AsyncFilestorageClient] = None
|
|
238
|
-
self._hris: typing.Optional[AsyncHrisClient] = None
|
|
239
238
|
self._knowledgebase: typing.Optional[AsyncKnowledgebaseClient] = None
|
|
239
|
+
self._hris: typing.Optional[AsyncHrisClient] = None
|
|
240
240
|
self._ticketing: typing.Optional[AsyncTicketingClient] = None
|
|
241
241
|
self._accounting: typing.Optional[AsyncAccountingClient] = None
|
|
242
242
|
|
|
@@ -272,14 +272,6 @@ class AsyncMerge:
|
|
|
272
272
|
self._filestorage = AsyncFilestorageClient(client_wrapper=self._client_wrapper)
|
|
273
273
|
return self._filestorage
|
|
274
274
|
|
|
275
|
-
@property
|
|
276
|
-
def hris(self):
|
|
277
|
-
if self._hris is None:
|
|
278
|
-
from .resources.hris.client import AsyncHrisClient # noqa: E402
|
|
279
|
-
|
|
280
|
-
self._hris = AsyncHrisClient(client_wrapper=self._client_wrapper)
|
|
281
|
-
return self._hris
|
|
282
|
-
|
|
283
275
|
@property
|
|
284
276
|
def knowledgebase(self):
|
|
285
277
|
if self._knowledgebase is None:
|
|
@@ -288,6 +280,14 @@ class AsyncMerge:
|
|
|
288
280
|
self._knowledgebase = AsyncKnowledgebaseClient(client_wrapper=self._client_wrapper)
|
|
289
281
|
return self._knowledgebase
|
|
290
282
|
|
|
283
|
+
@property
|
|
284
|
+
def hris(self):
|
|
285
|
+
if self._hris is None:
|
|
286
|
+
from .resources.hris.client import AsyncHrisClient # noqa: E402
|
|
287
|
+
|
|
288
|
+
self._hris = AsyncHrisClient(client_wrapper=self._client_wrapper)
|
|
289
|
+
return self._hris
|
|
290
|
+
|
|
291
291
|
@property
|
|
292
292
|
def ticketing(self):
|
|
293
293
|
if self._ticketing 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.
|
|
27
|
+
"User-Agent": "MergePythonClient/2.6.0",
|
|
28
28
|
"X-Fern-Language": "Python",
|
|
29
29
|
"X-Fern-SDK-Name": "MergePythonClient",
|
|
30
|
-
"X-Fern-SDK-Version": "2.
|
|
30
|
+
"X-Fern-SDK-Version": "2.6.0",
|
|
31
31
|
**(self.get_custom_headers() or {}),
|
|
32
32
|
}
|
|
33
33
|
if self._account_token is not None:
|
merge/resources/chat/__init__.py
CHANGED
|
@@ -104,6 +104,8 @@ if typing.TYPE_CHECKING:
|
|
|
104
104
|
EndUserDetailsRequestLanguage,
|
|
105
105
|
IssuesListRequestStatus,
|
|
106
106
|
LinkedAccountsListRequestCategory,
|
|
107
|
+
MessagesListRequestOrderBy,
|
|
108
|
+
MessagesRepliesListRequestOrderBy,
|
|
107
109
|
account_details,
|
|
108
110
|
account_token,
|
|
109
111
|
async_passthrough,
|
|
@@ -185,6 +187,8 @@ _dynamic_imports: typing.Dict[str, str] = {
|
|
|
185
187
|
"LinkedAccountsListRequestCategory": ".resources",
|
|
186
188
|
"Member": ".types",
|
|
187
189
|
"Message": ".types",
|
|
190
|
+
"MessagesListRequestOrderBy": ".resources",
|
|
191
|
+
"MessagesRepliesListRequestOrderBy": ".resources",
|
|
188
192
|
"MethodEnum": ".types",
|
|
189
193
|
"ModelOperation": ".types",
|
|
190
194
|
"ModelPermissionDeserializer": ".types",
|
|
@@ -324,6 +328,8 @@ __all__ = [
|
|
|
324
328
|
"LinkedAccountsListRequestCategory",
|
|
325
329
|
"Member",
|
|
326
330
|
"Message",
|
|
331
|
+
"MessagesListRequestOrderBy",
|
|
332
|
+
"MessagesRepliesListRequestOrderBy",
|
|
327
333
|
"MethodEnum",
|
|
328
334
|
"ModelOperation",
|
|
329
335
|
"ModelPermissionDeserializer",
|
|
@@ -34,6 +34,7 @@ if typing.TYPE_CHECKING:
|
|
|
34
34
|
from .issues import IssuesListRequestStatus
|
|
35
35
|
from .link_token import EndUserDetailsRequestCompletedAccountInitialScreen, EndUserDetailsRequestLanguage
|
|
36
36
|
from .linked_accounts import LinkedAccountsListRequestCategory
|
|
37
|
+
from .messages import MessagesListRequestOrderBy, MessagesRepliesListRequestOrderBy
|
|
37
38
|
_dynamic_imports: typing.Dict[str, str] = {
|
|
38
39
|
"AsyncPassthroughRetrieveResponse": ".async_passthrough",
|
|
39
40
|
"ConversationsMembersListRequestExpand": ".conversations",
|
|
@@ -41,6 +42,8 @@ _dynamic_imports: typing.Dict[str, str] = {
|
|
|
41
42
|
"EndUserDetailsRequestLanguage": ".link_token",
|
|
42
43
|
"IssuesListRequestStatus": ".issues",
|
|
43
44
|
"LinkedAccountsListRequestCategory": ".linked_accounts",
|
|
45
|
+
"MessagesListRequestOrderBy": ".messages",
|
|
46
|
+
"MessagesRepliesListRequestOrderBy": ".messages",
|
|
44
47
|
"account_details": ".",
|
|
45
48
|
"account_token": ".",
|
|
46
49
|
"async_passthrough": ".",
|
|
@@ -91,6 +94,8 @@ __all__ = [
|
|
|
91
94
|
"EndUserDetailsRequestLanguage",
|
|
92
95
|
"IssuesListRequestStatus",
|
|
93
96
|
"LinkedAccountsListRequestCategory",
|
|
97
|
+
"MessagesListRequestOrderBy",
|
|
98
|
+
"MessagesRepliesListRequestOrderBy",
|
|
94
99
|
"account_details",
|
|
95
100
|
"account_token",
|
|
96
101
|
"async_passthrough",
|
|
@@ -2,3 +2,34 @@
|
|
|
2
2
|
|
|
3
3
|
# isort: skip_file
|
|
4
4
|
|
|
5
|
+
import typing
|
|
6
|
+
from importlib import import_module
|
|
7
|
+
|
|
8
|
+
if typing.TYPE_CHECKING:
|
|
9
|
+
from .types import MessagesListRequestOrderBy, MessagesRepliesListRequestOrderBy
|
|
10
|
+
_dynamic_imports: typing.Dict[str, str] = {
|
|
11
|
+
"MessagesListRequestOrderBy": ".types",
|
|
12
|
+
"MessagesRepliesListRequestOrderBy": ".types",
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
def __getattr__(attr_name: str) -> typing.Any:
|
|
17
|
+
module_name = _dynamic_imports.get(attr_name)
|
|
18
|
+
if module_name is None:
|
|
19
|
+
raise AttributeError(f"No {attr_name} found in _dynamic_imports for module name -> {__name__}")
|
|
20
|
+
try:
|
|
21
|
+
module = import_module(module_name, __package__)
|
|
22
|
+
result = getattr(module, attr_name)
|
|
23
|
+
return result
|
|
24
|
+
except ImportError as e:
|
|
25
|
+
raise ImportError(f"Failed to import {attr_name} from {module_name}: {e}") from e
|
|
26
|
+
except AttributeError as e:
|
|
27
|
+
raise AttributeError(f"Failed to get {attr_name} from {module_name}: {e}") from e
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
def __dir__():
|
|
31
|
+
lazy_attrs = list(_dynamic_imports.keys())
|
|
32
|
+
return sorted(lazy_attrs)
|
|
33
|
+
|
|
34
|
+
|
|
35
|
+
__all__ = ["MessagesListRequestOrderBy", "MessagesRepliesListRequestOrderBy"]
|
|
@@ -8,6 +8,8 @@ from .....core.request_options import RequestOptions
|
|
|
8
8
|
from ...types.message import Message
|
|
9
9
|
from ...types.paginated_message_list import PaginatedMessageList
|
|
10
10
|
from .raw_client import AsyncRawMessagesClient, RawMessagesClient
|
|
11
|
+
from .types.messages_list_request_order_by import MessagesListRequestOrderBy
|
|
12
|
+
from .types.messages_replies_list_request_order_by import MessagesRepliesListRequestOrderBy
|
|
11
13
|
|
|
12
14
|
|
|
13
15
|
class MessagesClient:
|
|
@@ -36,8 +38,10 @@ class MessagesClient:
|
|
|
36
38
|
include_shell_data: typing.Optional[bool] = None,
|
|
37
39
|
modified_after: typing.Optional[dt.datetime] = None,
|
|
38
40
|
modified_before: typing.Optional[dt.datetime] = None,
|
|
41
|
+
order_by: typing.Optional[MessagesListRequestOrderBy] = None,
|
|
39
42
|
page_size: typing.Optional[int] = None,
|
|
40
43
|
remote_id: typing.Optional[str] = None,
|
|
44
|
+
root_message: typing.Optional[str] = None,
|
|
41
45
|
request_options: typing.Optional[RequestOptions] = None,
|
|
42
46
|
) -> PaginatedMessageList:
|
|
43
47
|
"""
|
|
@@ -69,12 +73,18 @@ class MessagesClient:
|
|
|
69
73
|
modified_before : typing.Optional[dt.datetime]
|
|
70
74
|
If provided, only objects synced by Merge before this date time will be returned.
|
|
71
75
|
|
|
76
|
+
order_by : typing.Optional[MessagesListRequestOrderBy]
|
|
77
|
+
Overrides the default ordering for this endpoint. Possible values include: remote_created_at, -remote_created_at.
|
|
78
|
+
|
|
72
79
|
page_size : typing.Optional[int]
|
|
73
80
|
Number of results to return per page. The maximum limit is 100.
|
|
74
81
|
|
|
75
82
|
remote_id : typing.Optional[str]
|
|
76
83
|
The API provider's ID for the given object.
|
|
77
84
|
|
|
85
|
+
root_message : typing.Optional[str]
|
|
86
|
+
If provided as 'true', will only return root messages (messages without a parent message).
|
|
87
|
+
|
|
78
88
|
request_options : typing.Optional[RequestOptions]
|
|
79
89
|
Request-specific configuration.
|
|
80
90
|
|
|
@@ -88,6 +98,7 @@ class MessagesClient:
|
|
|
88
98
|
import datetime
|
|
89
99
|
|
|
90
100
|
from merge import Merge
|
|
101
|
+
from merge.resources.chat.resources.messages import MessagesListRequestOrderBy
|
|
91
102
|
|
|
92
103
|
client = Merge(
|
|
93
104
|
account_token="YOUR_ACCOUNT_TOKEN",
|
|
@@ -110,8 +121,10 @@ class MessagesClient:
|
|
|
110
121
|
modified_before=datetime.datetime.fromisoformat(
|
|
111
122
|
"2024-01-15 09:30:00+00:00",
|
|
112
123
|
),
|
|
124
|
+
order_by=MessagesListRequestOrderBy.REMOTE_CREATED_AT_DESCENDING,
|
|
113
125
|
page_size=1,
|
|
114
126
|
remote_id="remote_id",
|
|
127
|
+
root_message="root_message",
|
|
115
128
|
)
|
|
116
129
|
"""
|
|
117
130
|
_response = self._raw_client.list(
|
|
@@ -123,8 +136,10 @@ class MessagesClient:
|
|
|
123
136
|
include_shell_data=include_shell_data,
|
|
124
137
|
modified_after=modified_after,
|
|
125
138
|
modified_before=modified_before,
|
|
139
|
+
order_by=order_by,
|
|
126
140
|
page_size=page_size,
|
|
127
141
|
remote_id=remote_id,
|
|
142
|
+
root_message=root_message,
|
|
128
143
|
request_options=request_options,
|
|
129
144
|
)
|
|
130
145
|
return _response.data
|
|
@@ -188,6 +203,7 @@ class MessagesClient:
|
|
|
188
203
|
include_deleted_data: typing.Optional[bool] = None,
|
|
189
204
|
include_remote_data: typing.Optional[bool] = None,
|
|
190
205
|
include_shell_data: typing.Optional[bool] = None,
|
|
206
|
+
order_by: typing.Optional[MessagesRepliesListRequestOrderBy] = None,
|
|
191
207
|
page_size: typing.Optional[int] = None,
|
|
192
208
|
request_options: typing.Optional[RequestOptions] = None,
|
|
193
209
|
) -> PaginatedMessageList:
|
|
@@ -210,6 +226,9 @@ class MessagesClient:
|
|
|
210
226
|
include_shell_data : typing.Optional[bool]
|
|
211
227
|
Whether to include shell records. Shell records are empty records (they may contain some metadata but all other fields are null).
|
|
212
228
|
|
|
229
|
+
order_by : typing.Optional[MessagesRepliesListRequestOrderBy]
|
|
230
|
+
Overrides the default ordering for this endpoint. Possible values include: remote_created_at, -remote_created_at.
|
|
231
|
+
|
|
213
232
|
page_size : typing.Optional[int]
|
|
214
233
|
Number of results to return per page. The maximum limit is 100.
|
|
215
234
|
|
|
@@ -224,6 +243,9 @@ class MessagesClient:
|
|
|
224
243
|
Examples
|
|
225
244
|
--------
|
|
226
245
|
from merge import Merge
|
|
246
|
+
from merge.resources.chat.resources.messages import (
|
|
247
|
+
MessagesRepliesListRequestOrderBy,
|
|
248
|
+
)
|
|
227
249
|
|
|
228
250
|
client = Merge(
|
|
229
251
|
account_token="YOUR_ACCOUNT_TOKEN",
|
|
@@ -235,6 +257,7 @@ class MessagesClient:
|
|
|
235
257
|
include_deleted_data=True,
|
|
236
258
|
include_remote_data=True,
|
|
237
259
|
include_shell_data=True,
|
|
260
|
+
order_by=MessagesRepliesListRequestOrderBy.REMOTE_CREATED_AT_DESCENDING,
|
|
238
261
|
page_size=1,
|
|
239
262
|
)
|
|
240
263
|
"""
|
|
@@ -244,6 +267,7 @@ class MessagesClient:
|
|
|
244
267
|
include_deleted_data=include_deleted_data,
|
|
245
268
|
include_remote_data=include_remote_data,
|
|
246
269
|
include_shell_data=include_shell_data,
|
|
270
|
+
order_by=order_by,
|
|
247
271
|
page_size=page_size,
|
|
248
272
|
request_options=request_options,
|
|
249
273
|
)
|
|
@@ -276,8 +300,10 @@ class AsyncMessagesClient:
|
|
|
276
300
|
include_shell_data: typing.Optional[bool] = None,
|
|
277
301
|
modified_after: typing.Optional[dt.datetime] = None,
|
|
278
302
|
modified_before: typing.Optional[dt.datetime] = None,
|
|
303
|
+
order_by: typing.Optional[MessagesListRequestOrderBy] = None,
|
|
279
304
|
page_size: typing.Optional[int] = None,
|
|
280
305
|
remote_id: typing.Optional[str] = None,
|
|
306
|
+
root_message: typing.Optional[str] = None,
|
|
281
307
|
request_options: typing.Optional[RequestOptions] = None,
|
|
282
308
|
) -> PaginatedMessageList:
|
|
283
309
|
"""
|
|
@@ -309,12 +335,18 @@ class AsyncMessagesClient:
|
|
|
309
335
|
modified_before : typing.Optional[dt.datetime]
|
|
310
336
|
If provided, only objects synced by Merge before this date time will be returned.
|
|
311
337
|
|
|
338
|
+
order_by : typing.Optional[MessagesListRequestOrderBy]
|
|
339
|
+
Overrides the default ordering for this endpoint. Possible values include: remote_created_at, -remote_created_at.
|
|
340
|
+
|
|
312
341
|
page_size : typing.Optional[int]
|
|
313
342
|
Number of results to return per page. The maximum limit is 100.
|
|
314
343
|
|
|
315
344
|
remote_id : typing.Optional[str]
|
|
316
345
|
The API provider's ID for the given object.
|
|
317
346
|
|
|
347
|
+
root_message : typing.Optional[str]
|
|
348
|
+
If provided as 'true', will only return root messages (messages without a parent message).
|
|
349
|
+
|
|
318
350
|
request_options : typing.Optional[RequestOptions]
|
|
319
351
|
Request-specific configuration.
|
|
320
352
|
|
|
@@ -329,6 +361,7 @@ class AsyncMessagesClient:
|
|
|
329
361
|
import datetime
|
|
330
362
|
|
|
331
363
|
from merge import AsyncMerge
|
|
364
|
+
from merge.resources.chat.resources.messages import MessagesListRequestOrderBy
|
|
332
365
|
|
|
333
366
|
client = AsyncMerge(
|
|
334
367
|
account_token="YOUR_ACCOUNT_TOKEN",
|
|
@@ -354,8 +387,10 @@ class AsyncMessagesClient:
|
|
|
354
387
|
modified_before=datetime.datetime.fromisoformat(
|
|
355
388
|
"2024-01-15 09:30:00+00:00",
|
|
356
389
|
),
|
|
390
|
+
order_by=MessagesListRequestOrderBy.REMOTE_CREATED_AT_DESCENDING,
|
|
357
391
|
page_size=1,
|
|
358
392
|
remote_id="remote_id",
|
|
393
|
+
root_message="root_message",
|
|
359
394
|
)
|
|
360
395
|
|
|
361
396
|
|
|
@@ -370,8 +405,10 @@ class AsyncMessagesClient:
|
|
|
370
405
|
include_shell_data=include_shell_data,
|
|
371
406
|
modified_after=modified_after,
|
|
372
407
|
modified_before=modified_before,
|
|
408
|
+
order_by=order_by,
|
|
373
409
|
page_size=page_size,
|
|
374
410
|
remote_id=remote_id,
|
|
411
|
+
root_message=root_message,
|
|
375
412
|
request_options=request_options,
|
|
376
413
|
)
|
|
377
414
|
return _response.data
|
|
@@ -443,6 +480,7 @@ class AsyncMessagesClient:
|
|
|
443
480
|
include_deleted_data: typing.Optional[bool] = None,
|
|
444
481
|
include_remote_data: typing.Optional[bool] = None,
|
|
445
482
|
include_shell_data: typing.Optional[bool] = None,
|
|
483
|
+
order_by: typing.Optional[MessagesRepliesListRequestOrderBy] = None,
|
|
446
484
|
page_size: typing.Optional[int] = None,
|
|
447
485
|
request_options: typing.Optional[RequestOptions] = None,
|
|
448
486
|
) -> PaginatedMessageList:
|
|
@@ -465,6 +503,9 @@ class AsyncMessagesClient:
|
|
|
465
503
|
include_shell_data : typing.Optional[bool]
|
|
466
504
|
Whether to include shell records. Shell records are empty records (they may contain some metadata but all other fields are null).
|
|
467
505
|
|
|
506
|
+
order_by : typing.Optional[MessagesRepliesListRequestOrderBy]
|
|
507
|
+
Overrides the default ordering for this endpoint. Possible values include: remote_created_at, -remote_created_at.
|
|
508
|
+
|
|
468
509
|
page_size : typing.Optional[int]
|
|
469
510
|
Number of results to return per page. The maximum limit is 100.
|
|
470
511
|
|
|
@@ -481,6 +522,9 @@ class AsyncMessagesClient:
|
|
|
481
522
|
import asyncio
|
|
482
523
|
|
|
483
524
|
from merge import AsyncMerge
|
|
525
|
+
from merge.resources.chat.resources.messages import (
|
|
526
|
+
MessagesRepliesListRequestOrderBy,
|
|
527
|
+
)
|
|
484
528
|
|
|
485
529
|
client = AsyncMerge(
|
|
486
530
|
account_token="YOUR_ACCOUNT_TOKEN",
|
|
@@ -495,6 +539,7 @@ class AsyncMessagesClient:
|
|
|
495
539
|
include_deleted_data=True,
|
|
496
540
|
include_remote_data=True,
|
|
497
541
|
include_shell_data=True,
|
|
542
|
+
order_by=MessagesRepliesListRequestOrderBy.REMOTE_CREATED_AT_DESCENDING,
|
|
498
543
|
page_size=1,
|
|
499
544
|
)
|
|
500
545
|
|
|
@@ -507,6 +552,7 @@ class AsyncMessagesClient:
|
|
|
507
552
|
include_deleted_data=include_deleted_data,
|
|
508
553
|
include_remote_data=include_remote_data,
|
|
509
554
|
include_shell_data=include_shell_data,
|
|
555
|
+
order_by=order_by,
|
|
510
556
|
page_size=page_size,
|
|
511
557
|
request_options=request_options,
|
|
512
558
|
)
|
|
@@ -13,6 +13,8 @@ from .....core.request_options import RequestOptions
|
|
|
13
13
|
from .....core.unchecked_base_model import construct_type
|
|
14
14
|
from ...types.message import Message
|
|
15
15
|
from ...types.paginated_message_list import PaginatedMessageList
|
|
16
|
+
from .types.messages_list_request_order_by import MessagesListRequestOrderBy
|
|
17
|
+
from .types.messages_replies_list_request_order_by import MessagesRepliesListRequestOrderBy
|
|
16
18
|
|
|
17
19
|
|
|
18
20
|
class RawMessagesClient:
|
|
@@ -30,8 +32,10 @@ class RawMessagesClient:
|
|
|
30
32
|
include_shell_data: typing.Optional[bool] = None,
|
|
31
33
|
modified_after: typing.Optional[dt.datetime] = None,
|
|
32
34
|
modified_before: typing.Optional[dt.datetime] = None,
|
|
35
|
+
order_by: typing.Optional[MessagesListRequestOrderBy] = None,
|
|
33
36
|
page_size: typing.Optional[int] = None,
|
|
34
37
|
remote_id: typing.Optional[str] = None,
|
|
38
|
+
root_message: typing.Optional[str] = None,
|
|
35
39
|
request_options: typing.Optional[RequestOptions] = None,
|
|
36
40
|
) -> HttpResponse[PaginatedMessageList]:
|
|
37
41
|
"""
|
|
@@ -63,12 +67,18 @@ class RawMessagesClient:
|
|
|
63
67
|
modified_before : typing.Optional[dt.datetime]
|
|
64
68
|
If provided, only objects synced by Merge before this date time will be returned.
|
|
65
69
|
|
|
70
|
+
order_by : typing.Optional[MessagesListRequestOrderBy]
|
|
71
|
+
Overrides the default ordering for this endpoint. Possible values include: remote_created_at, -remote_created_at.
|
|
72
|
+
|
|
66
73
|
page_size : typing.Optional[int]
|
|
67
74
|
Number of results to return per page. The maximum limit is 100.
|
|
68
75
|
|
|
69
76
|
remote_id : typing.Optional[str]
|
|
70
77
|
The API provider's ID for the given object.
|
|
71
78
|
|
|
79
|
+
root_message : typing.Optional[str]
|
|
80
|
+
If provided as 'true', will only return root messages (messages without a parent message).
|
|
81
|
+
|
|
72
82
|
request_options : typing.Optional[RequestOptions]
|
|
73
83
|
Request-specific configuration.
|
|
74
84
|
|
|
@@ -89,8 +99,10 @@ class RawMessagesClient:
|
|
|
89
99
|
"include_shell_data": include_shell_data,
|
|
90
100
|
"modified_after": serialize_datetime(modified_after) if modified_after is not None else None,
|
|
91
101
|
"modified_before": serialize_datetime(modified_before) if modified_before is not None else None,
|
|
102
|
+
"order_by": order_by,
|
|
92
103
|
"page_size": page_size,
|
|
93
104
|
"remote_id": remote_id,
|
|
105
|
+
"root_message": root_message,
|
|
94
106
|
},
|
|
95
107
|
request_options=request_options,
|
|
96
108
|
)
|
|
@@ -170,6 +182,7 @@ class RawMessagesClient:
|
|
|
170
182
|
include_deleted_data: typing.Optional[bool] = None,
|
|
171
183
|
include_remote_data: typing.Optional[bool] = None,
|
|
172
184
|
include_shell_data: typing.Optional[bool] = None,
|
|
185
|
+
order_by: typing.Optional[MessagesRepliesListRequestOrderBy] = None,
|
|
173
186
|
page_size: typing.Optional[int] = None,
|
|
174
187
|
request_options: typing.Optional[RequestOptions] = None,
|
|
175
188
|
) -> HttpResponse[PaginatedMessageList]:
|
|
@@ -192,6 +205,9 @@ class RawMessagesClient:
|
|
|
192
205
|
include_shell_data : typing.Optional[bool]
|
|
193
206
|
Whether to include shell records. Shell records are empty records (they may contain some metadata but all other fields are null).
|
|
194
207
|
|
|
208
|
+
order_by : typing.Optional[MessagesRepliesListRequestOrderBy]
|
|
209
|
+
Overrides the default ordering for this endpoint. Possible values include: remote_created_at, -remote_created_at.
|
|
210
|
+
|
|
195
211
|
page_size : typing.Optional[int]
|
|
196
212
|
Number of results to return per page. The maximum limit is 100.
|
|
197
213
|
|
|
@@ -211,6 +227,7 @@ class RawMessagesClient:
|
|
|
211
227
|
"include_deleted_data": include_deleted_data,
|
|
212
228
|
"include_remote_data": include_remote_data,
|
|
213
229
|
"include_shell_data": include_shell_data,
|
|
230
|
+
"order_by": order_by,
|
|
214
231
|
"page_size": page_size,
|
|
215
232
|
},
|
|
216
233
|
request_options=request_options,
|
|
@@ -246,8 +263,10 @@ class AsyncRawMessagesClient:
|
|
|
246
263
|
include_shell_data: typing.Optional[bool] = None,
|
|
247
264
|
modified_after: typing.Optional[dt.datetime] = None,
|
|
248
265
|
modified_before: typing.Optional[dt.datetime] = None,
|
|
266
|
+
order_by: typing.Optional[MessagesListRequestOrderBy] = None,
|
|
249
267
|
page_size: typing.Optional[int] = None,
|
|
250
268
|
remote_id: typing.Optional[str] = None,
|
|
269
|
+
root_message: typing.Optional[str] = None,
|
|
251
270
|
request_options: typing.Optional[RequestOptions] = None,
|
|
252
271
|
) -> AsyncHttpResponse[PaginatedMessageList]:
|
|
253
272
|
"""
|
|
@@ -279,12 +298,18 @@ class AsyncRawMessagesClient:
|
|
|
279
298
|
modified_before : typing.Optional[dt.datetime]
|
|
280
299
|
If provided, only objects synced by Merge before this date time will be returned.
|
|
281
300
|
|
|
301
|
+
order_by : typing.Optional[MessagesListRequestOrderBy]
|
|
302
|
+
Overrides the default ordering for this endpoint. Possible values include: remote_created_at, -remote_created_at.
|
|
303
|
+
|
|
282
304
|
page_size : typing.Optional[int]
|
|
283
305
|
Number of results to return per page. The maximum limit is 100.
|
|
284
306
|
|
|
285
307
|
remote_id : typing.Optional[str]
|
|
286
308
|
The API provider's ID for the given object.
|
|
287
309
|
|
|
310
|
+
root_message : typing.Optional[str]
|
|
311
|
+
If provided as 'true', will only return root messages (messages without a parent message).
|
|
312
|
+
|
|
288
313
|
request_options : typing.Optional[RequestOptions]
|
|
289
314
|
Request-specific configuration.
|
|
290
315
|
|
|
@@ -305,8 +330,10 @@ class AsyncRawMessagesClient:
|
|
|
305
330
|
"include_shell_data": include_shell_data,
|
|
306
331
|
"modified_after": serialize_datetime(modified_after) if modified_after is not None else None,
|
|
307
332
|
"modified_before": serialize_datetime(modified_before) if modified_before is not None else None,
|
|
333
|
+
"order_by": order_by,
|
|
308
334
|
"page_size": page_size,
|
|
309
335
|
"remote_id": remote_id,
|
|
336
|
+
"root_message": root_message,
|
|
310
337
|
},
|
|
311
338
|
request_options=request_options,
|
|
312
339
|
)
|
|
@@ -386,6 +413,7 @@ class AsyncRawMessagesClient:
|
|
|
386
413
|
include_deleted_data: typing.Optional[bool] = None,
|
|
387
414
|
include_remote_data: typing.Optional[bool] = None,
|
|
388
415
|
include_shell_data: typing.Optional[bool] = None,
|
|
416
|
+
order_by: typing.Optional[MessagesRepliesListRequestOrderBy] = None,
|
|
389
417
|
page_size: typing.Optional[int] = None,
|
|
390
418
|
request_options: typing.Optional[RequestOptions] = None,
|
|
391
419
|
) -> AsyncHttpResponse[PaginatedMessageList]:
|
|
@@ -408,6 +436,9 @@ class AsyncRawMessagesClient:
|
|
|
408
436
|
include_shell_data : typing.Optional[bool]
|
|
409
437
|
Whether to include shell records. Shell records are empty records (they may contain some metadata but all other fields are null).
|
|
410
438
|
|
|
439
|
+
order_by : typing.Optional[MessagesRepliesListRequestOrderBy]
|
|
440
|
+
Overrides the default ordering for this endpoint. Possible values include: remote_created_at, -remote_created_at.
|
|
441
|
+
|
|
411
442
|
page_size : typing.Optional[int]
|
|
412
443
|
Number of results to return per page. The maximum limit is 100.
|
|
413
444
|
|
|
@@ -427,6 +458,7 @@ class AsyncRawMessagesClient:
|
|
|
427
458
|
"include_deleted_data": include_deleted_data,
|
|
428
459
|
"include_remote_data": include_remote_data,
|
|
429
460
|
"include_shell_data": include_shell_data,
|
|
461
|
+
"order_by": order_by,
|
|
430
462
|
"page_size": page_size,
|
|
431
463
|
},
|
|
432
464
|
request_options=request_options,
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
# This file was auto-generated by Fern from our API Definition.
|
|
2
|
+
|
|
3
|
+
# isort: skip_file
|
|
4
|
+
|
|
5
|
+
import typing
|
|
6
|
+
from importlib import import_module
|
|
7
|
+
|
|
8
|
+
if typing.TYPE_CHECKING:
|
|
9
|
+
from .messages_list_request_order_by import MessagesListRequestOrderBy
|
|
10
|
+
from .messages_replies_list_request_order_by import MessagesRepliesListRequestOrderBy
|
|
11
|
+
_dynamic_imports: typing.Dict[str, str] = {
|
|
12
|
+
"MessagesListRequestOrderBy": ".messages_list_request_order_by",
|
|
13
|
+
"MessagesRepliesListRequestOrderBy": ".messages_replies_list_request_order_by",
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
def __getattr__(attr_name: str) -> typing.Any:
|
|
18
|
+
module_name = _dynamic_imports.get(attr_name)
|
|
19
|
+
if module_name is None:
|
|
20
|
+
raise AttributeError(f"No {attr_name} found in _dynamic_imports for module name -> {__name__}")
|
|
21
|
+
try:
|
|
22
|
+
module = import_module(module_name, __package__)
|
|
23
|
+
result = getattr(module, attr_name)
|
|
24
|
+
return result
|
|
25
|
+
except ImportError as e:
|
|
26
|
+
raise ImportError(f"Failed to import {attr_name} from {module_name}: {e}") from e
|
|
27
|
+
except AttributeError as e:
|
|
28
|
+
raise AttributeError(f"Failed to get {attr_name} from {module_name}: {e}") from e
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
def __dir__():
|
|
32
|
+
lazy_attrs = list(_dynamic_imports.keys())
|
|
33
|
+
return sorted(lazy_attrs)
|
|
34
|
+
|
|
35
|
+
|
|
36
|
+
__all__ = ["MessagesListRequestOrderBy", "MessagesRepliesListRequestOrderBy"]
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
# This file was auto-generated by Fern from our API Definition.
|
|
2
|
+
|
|
3
|
+
import enum
|
|
4
|
+
import typing
|
|
5
|
+
|
|
6
|
+
T_Result = typing.TypeVar("T_Result")
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
class MessagesListRequestOrderBy(str, enum.Enum):
|
|
10
|
+
REMOTE_CREATED_AT_DESCENDING = "-remote_created_at"
|
|
11
|
+
REMOTE_CREATED_AT_ASCENDING = "remote_created_at"
|
|
12
|
+
|
|
13
|
+
def visit(
|
|
14
|
+
self,
|
|
15
|
+
remote_created_at_descending: typing.Callable[[], T_Result],
|
|
16
|
+
remote_created_at_ascending: typing.Callable[[], T_Result],
|
|
17
|
+
) -> T_Result:
|
|
18
|
+
if self is MessagesListRequestOrderBy.REMOTE_CREATED_AT_DESCENDING:
|
|
19
|
+
return remote_created_at_descending()
|
|
20
|
+
if self is MessagesListRequestOrderBy.REMOTE_CREATED_AT_ASCENDING:
|
|
21
|
+
return remote_created_at_ascending()
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
# This file was auto-generated by Fern from our API Definition.
|
|
2
|
+
|
|
3
|
+
import enum
|
|
4
|
+
import typing
|
|
5
|
+
|
|
6
|
+
T_Result = typing.TypeVar("T_Result")
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
class MessagesRepliesListRequestOrderBy(str, enum.Enum):
|
|
10
|
+
REMOTE_CREATED_AT_DESCENDING = "-remote_created_at"
|
|
11
|
+
REMOTE_CREATED_AT_ASCENDING = "remote_created_at"
|
|
12
|
+
|
|
13
|
+
def visit(
|
|
14
|
+
self,
|
|
15
|
+
remote_created_at_descending: typing.Callable[[], T_Result],
|
|
16
|
+
remote_created_at_ascending: typing.Callable[[], T_Result],
|
|
17
|
+
) -> T_Result:
|
|
18
|
+
if self is MessagesRepliesListRequestOrderBy.REMOTE_CREATED_AT_DESCENDING:
|
|
19
|
+
return remote_created_at_descending()
|
|
20
|
+
if self is MessagesRepliesListRequestOrderBy.REMOTE_CREATED_AT_ASCENDING:
|
|
21
|
+
return remote_created_at_ascending()
|
|
@@ -62,6 +62,16 @@ class Conversation(UncheckedBaseModel):
|
|
|
62
62
|
"""
|
|
63
63
|
|
|
64
64
|
members: typing.Optional[typing.List[typing.Optional[str]]] = None
|
|
65
|
+
remote_created_at: typing.Optional[dt.datetime] = pydantic.Field(default=None)
|
|
66
|
+
"""
|
|
67
|
+
When the third party's conversation was created.
|
|
68
|
+
"""
|
|
69
|
+
|
|
70
|
+
remote_updated_at: typing.Optional[dt.datetime] = pydantic.Field(default=None)
|
|
71
|
+
"""
|
|
72
|
+
When the third party's conversation was updated.
|
|
73
|
+
"""
|
|
74
|
+
|
|
65
75
|
remote_was_deleted: typing.Optional[bool] = pydantic.Field(default=None)
|
|
66
76
|
"""
|
|
67
77
|
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/).
|
|
@@ -39,6 +39,16 @@ class Group(UncheckedBaseModel):
|
|
|
39
39
|
The name of the Group
|
|
40
40
|
"""
|
|
41
41
|
|
|
42
|
+
remote_created_at: typing.Optional[dt.datetime] = pydantic.Field(default=None)
|
|
43
|
+
"""
|
|
44
|
+
When the third party's group was created.
|
|
45
|
+
"""
|
|
46
|
+
|
|
47
|
+
remote_updated_at: typing.Optional[dt.datetime] = pydantic.Field(default=None)
|
|
48
|
+
"""
|
|
49
|
+
When the third party's group was updated.
|
|
50
|
+
"""
|
|
51
|
+
|
|
42
52
|
remote_was_deleted: typing.Optional[bool] = pydantic.Field(default=None)
|
|
43
53
|
"""
|
|
44
54
|
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/).
|
|
@@ -45,6 +45,16 @@ class Member(UncheckedBaseModel):
|
|
|
45
45
|
The group that is a member of the conversation. Only populated if the member is a group.
|
|
46
46
|
"""
|
|
47
47
|
|
|
48
|
+
remote_created_at: typing.Optional[dt.datetime] = pydantic.Field(default=None)
|
|
49
|
+
"""
|
|
50
|
+
When the third party's conversation was created.
|
|
51
|
+
"""
|
|
52
|
+
|
|
53
|
+
remote_updated_at: typing.Optional[dt.datetime] = pydantic.Field(default=None)
|
|
54
|
+
"""
|
|
55
|
+
When the third party's conversation was updated.
|
|
56
|
+
"""
|
|
57
|
+
|
|
48
58
|
remote_was_deleted: typing.Optional[bool] = pydantic.Field(default=None)
|
|
49
59
|
"""
|
|
50
60
|
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/).
|
|
@@ -63,6 +63,16 @@ class Message(UncheckedBaseModel):
|
|
|
63
63
|
The url of the message.
|
|
64
64
|
"""
|
|
65
65
|
|
|
66
|
+
remote_created_at: typing.Optional[dt.datetime] = pydantic.Field(default=None)
|
|
67
|
+
"""
|
|
68
|
+
When the third party's conversation was created.
|
|
69
|
+
"""
|
|
70
|
+
|
|
71
|
+
remote_updated_at: typing.Optional[dt.datetime] = pydantic.Field(default=None)
|
|
72
|
+
"""
|
|
73
|
+
When the third party's conversation was updated.
|
|
74
|
+
"""
|
|
75
|
+
|
|
66
76
|
remote_was_deleted: typing.Optional[bool] = pydantic.Field(default=None)
|
|
67
77
|
"""
|
|
68
78
|
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/).
|
|
@@ -66,6 +66,16 @@ class User(UncheckedBaseModel):
|
|
|
66
66
|
The user's avatar image
|
|
67
67
|
"""
|
|
68
68
|
|
|
69
|
+
remote_created_at: typing.Optional[dt.datetime] = pydantic.Field(default=None)
|
|
70
|
+
"""
|
|
71
|
+
When the third party's user was created.
|
|
72
|
+
"""
|
|
73
|
+
|
|
74
|
+
remote_updated_at: typing.Optional[dt.datetime] = pydantic.Field(default=None)
|
|
75
|
+
"""
|
|
76
|
+
When the third party's user was updated.
|
|
77
|
+
"""
|
|
78
|
+
|
|
69
79
|
remote_was_deleted: typing.Optional[bool] = pydantic.Field(default=None)
|
|
70
80
|
"""
|
|
71
81
|
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
|
+
Version: 2.6.0
|
|
4
4
|
Summary:
|
|
5
5
|
Requires-Python: >=3.8,<4.0
|
|
6
6
|
Classifier: Intended Audience :: Developers
|
|
@@ -31,6 +31,25 @@ Description-Content-Type: text/markdown
|
|
|
31
31
|
|
|
32
32
|
The Merge Python library provides convenient access to the Merge APIs from Python.
|
|
33
33
|
|
|
34
|
+
## Table of Contents
|
|
35
|
+
|
|
36
|
+
- [Documentation](#documentation)
|
|
37
|
+
- [Installation](#installation)
|
|
38
|
+
- [Reference](#reference)
|
|
39
|
+
- [Usage](#usage)
|
|
40
|
+
- [Instantiation](#instantiation)
|
|
41
|
+
- [Categories](#categories)
|
|
42
|
+
- [Async Client](#async-client)
|
|
43
|
+
- [Exception Handling](#exception-handling)
|
|
44
|
+
- [Advanced](#advanced)
|
|
45
|
+
- [Access Raw Response Data](#access-raw-response-data)
|
|
46
|
+
- [Retries](#retries)
|
|
47
|
+
- [Timeouts](#timeouts)
|
|
48
|
+
- [Custom Client](#custom-client)
|
|
49
|
+
- [Contributing](#contributing)
|
|
50
|
+
- [File Download](#file-download)
|
|
51
|
+
- [Pagination](#pagination)
|
|
52
|
+
|
|
34
53
|
## Documentation
|
|
35
54
|
|
|
36
55
|
API reference documentation is available [here](https://docs.merge.dev/).
|
|
@@ -267,3 +286,4 @@ while response.next is not None:
|
|
|
267
286
|
|
|
268
287
|
|
|
269
288
|
|
|
289
|
+
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
merge/__init__.py,sha256=K3KxH-H0yK6Mp-fSHYH_I6TxE3EquIdXUOeclJm6yYg,1697
|
|
2
|
-
merge/client.py,sha256=
|
|
2
|
+
merge/client.py,sha256=u3FHPoCNhzHfRWmRz68jTPhjtxb4SCryCCTG3qyITOo,11937
|
|
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=9awRWSritgYmZ6vqc8NUDsBcQE3QRtmhqgoIcbeHJpk,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
|
|
@@ -1110,10 +1110,10 @@ merge/resources/ats/types/veteran_status_enum.py,sha256=SiiRJPvP11x6q2EWojgvD8ni
|
|
|
1110
1110
|
merge/resources/ats/types/visibility_enum.py,sha256=c2n5A9Y267-9PpEqpNZaSCL-_-do51MdUJpTvtu-JC0,760
|
|
1111
1111
|
merge/resources/ats/types/warning_validation_problem.py,sha256=RXDtt3t3FwIeGGXkIr_OHOAybDZg44L_5hOqa2sLlJ0,736
|
|
1112
1112
|
merge/resources/ats/types/webhook_receiver.py,sha256=g4KQnc-vZPJGlXK-OOFIn2WGyTLKoeaq9TPWQ46VwFY,623
|
|
1113
|
-
merge/resources/chat/__init__.py,sha256=
|
|
1113
|
+
merge/resources/chat/__init__.py,sha256=9IBq2pmKZ89LfNwWzkKp9BVKCnfCVPrSOFkNQIISU-U,12443
|
|
1114
1114
|
merge/resources/chat/client.py,sha256=sEuGeoZraPcRIc3PJhpP_WDGsYJjocvFxMfjNvE00RI,19286
|
|
1115
1115
|
merge/resources/chat/raw_client.py,sha256=p2JWtUp5VP9wEDfOycxOZjv6ircNRYTfmv3oXwBFYnE,406
|
|
1116
|
-
merge/resources/chat/resources/__init__.py,sha256=
|
|
1116
|
+
merge/resources/chat/resources/__init__.py,sha256=oA2TauQLaA8kMIJccGyBvGbO6ullsSm51DcGnldZ3Xg,3567
|
|
1117
1117
|
merge/resources/chat/resources/account_details/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
|
|
1118
1118
|
merge/resources/chat/resources/account_details/client.py,sha256=q95tDRg6gIVvQQtanf9Eg8wjQZlHZRznTdSj5gDECj8,2803
|
|
1119
1119
|
merge/resources/chat/resources/account_details/raw_client.py,sha256=aUWsq4oMWstzPT-48GntR5qNTu-yKvYI08Brw5iCCC8,3353
|
|
@@ -1167,9 +1167,12 @@ merge/resources/chat/resources/linked_accounts/client.py,sha256=1dAyYdqz1iToDJ7O
|
|
|
1167
1167
|
merge/resources/chat/resources/linked_accounts/raw_client.py,sha256=KyULuXyzfHUWXdLqEAVPX_80kUmGyq4ymGKUxaSHtD4,10854
|
|
1168
1168
|
merge/resources/chat/resources/linked_accounts/types/__init__.py,sha256=xWSbOu74X9JxtUN921_jbVtBDygRoEcDyGXySS5soJc,1126
|
|
1169
1169
|
merge/resources/chat/resources/linked_accounts/types/linked_accounts_list_request_category.py,sha256=nMUd7egTlOvafi_qQeARFnM7QranlVTlk1i_8bOVQX4,1695
|
|
1170
|
-
merge/resources/chat/resources/messages/__init__.py,sha256=
|
|
1171
|
-
merge/resources/chat/resources/messages/client.py,sha256=
|
|
1172
|
-
merge/resources/chat/resources/messages/raw_client.py,sha256=
|
|
1170
|
+
merge/resources/chat/resources/messages/__init__.py,sha256=nXolfKmAWeNctqmPfSMT9ZXyL60-c1kdigvOpA0eYm4,1165
|
|
1171
|
+
merge/resources/chat/resources/messages/client.py,sha256=WGv19FofyzeB8CTskZXVwwgdh6R314wF7I5_eB0qYOE,20589
|
|
1172
|
+
merge/resources/chat/resources/messages/raw_client.py,sha256=lQ0rL0beq0fMhpjXWeKXG5zqeCycEbdx5sEmEe-9gj8,21054
|
|
1173
|
+
merge/resources/chat/resources/messages/types/__init__.py,sha256=_Kuotn9l0SRtLMrh3nqfHsiOHzfQ-nGrCWrs2NRHiVE,1303
|
|
1174
|
+
merge/resources/chat/resources/messages/types/messages_list_request_order_by.py,sha256=cDuJdpvy1SQmkZRY5tUEKO56PNv_F7GkAfTUDlxUI7k,728
|
|
1175
|
+
merge/resources/chat/resources/messages/types/messages_replies_list_request_order_by.py,sha256=GhFxbbKZr_S4LizLPDOHBN5Y7bM6cDpnW2igqgbBCkI,749
|
|
1173
1176
|
merge/resources/chat/resources/passthrough/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
|
|
1174
1177
|
merge/resources/chat/resources/passthrough/client.py,sha256=jdKnFCd3IPKEv5rCB3iacfWBtEuN4a9h0Ec9XVL_0Vk,3639
|
|
1175
1178
|
merge/resources/chat/resources/passthrough/raw_client.py,sha256=IBn1ueeu4yaHJR_0HCvfzBE9b-S0ls_I2UMsu56bBvE,3997
|
|
@@ -1209,7 +1212,7 @@ merge/resources/chat/types/category_enum.py,sha256=7hv-PXVE1JmNQD7yjp16POyeGfZQS
|
|
|
1209
1212
|
merge/resources/chat/types/common_model_scope_api.py,sha256=iikeXuknnlFYmnwoRcQ34AnBwbpAPIYhgmov3HpeBGg,812
|
|
1210
1213
|
merge/resources/chat/types/common_model_scopes_body_request.py,sha256=KMnJBN-wDY0eQNjXYAgoiyoyXY74T9pzZum_2BIiUhU,726
|
|
1211
1214
|
merge/resources/chat/types/completed_account_initial_screen_enum.py,sha256=O8ZkUxzZ79KqliNtuFiA2dhVSsYCysziBgyRDG3pGZI,149
|
|
1212
|
-
merge/resources/chat/types/conversation.py,sha256=
|
|
1215
|
+
merge/resources/chat/types/conversation.py,sha256=TSwVvPJdqlkQ-iRY-sSjg4v6edtcSVScn6-SHDrH-8o,2962
|
|
1213
1216
|
merge/resources/chat/types/conversation_type.py,sha256=r2ju7rTTCvCaSzTxV17fFjubI0GKTVDwpHN5G3tLg6s,160
|
|
1214
1217
|
merge/resources/chat/types/data_passthrough_request.py,sha256=arL5gXYjwGtbdAcjx3hggnoLmZsiRITvn9lXPn08sNw,2533
|
|
1215
1218
|
merge/resources/chat/types/data_passthrough_request_method.py,sha256=pPQyuc3sRVbGsvXWrtdwzNYsosT3CzBjXEFLVkGWolo,178
|
|
@@ -1230,7 +1233,7 @@ merge/resources/chat/types/field_mapping_api_instance_target_field.py,sha256=Bjo
|
|
|
1230
1233
|
merge/resources/chat/types/field_mapping_instance_response.py,sha256=wrRYB0RI5TkHt6ugR5aKYB7at2sgbuPJ-6zQ9DBm43Y,990
|
|
1231
1234
|
merge/resources/chat/types/field_permission_deserializer.py,sha256=iycoe64xsMDW-luGbNhfdQw3fANbvS7cUxzfyUezzHQ,734
|
|
1232
1235
|
merge/resources/chat/types/field_permission_deserializer_request.py,sha256=cotKpyilSrE7wP4UEhu8W0f8MSpzG8PqvIiMgrhtWwk,741
|
|
1233
|
-
merge/resources/chat/types/group.py,sha256=
|
|
1236
|
+
merge/resources/chat/types/group.py,sha256=_eDrFaYZRsBC3hcASQERJM2Sc_pK0xKvTA6ArXexM6Q,2228
|
|
1234
1237
|
merge/resources/chat/types/individual_common_model_scope_deserializer.py,sha256=BJzQQjO4cycEfSJZEiN6jurJrxGYQlRsBgKSAStlRD0,904
|
|
1235
1238
|
merge/resources/chat/types/individual_common_model_scope_deserializer_request.py,sha256=w4C16ZKCwfd621lTG2grC5SHNkvwmIfSQtyzPex0Jns,955
|
|
1236
1239
|
merge/resources/chat/types/issue.py,sha256=F1fGOu_vvsxF3ZJa8y6egizcSFujLJ5BHkwWnnjGpKQ,1178
|
|
@@ -1239,8 +1242,8 @@ merge/resources/chat/types/issue_status_enum.py,sha256=LyAyUrrmvKbovYkhYTPMzVGvv
|
|
|
1239
1242
|
merge/resources/chat/types/language_enum.py,sha256=FuF4oIahcE954MHHDIZHmvBf9ENLvUrkmNFryHzO-oE,469
|
|
1240
1243
|
merge/resources/chat/types/last_sync_result_enum.py,sha256=iKiu1Zk-mue5Ki725f7_DorLDboH1l4W86upM77y1hQ,1319
|
|
1241
1244
|
merge/resources/chat/types/link_token.py,sha256=fYa5j3XnK01j8XHUx_A6fa95qXQ3OrRHs43vW54VU1g,663
|
|
1242
|
-
merge/resources/chat/types/member.py,sha256=
|
|
1243
|
-
merge/resources/chat/types/message.py,sha256
|
|
1245
|
+
merge/resources/chat/types/member.py,sha256=boBYnAMTxhItGVYvK9j3jpcysXIq3-1B5VoUKKoMPLM,2497
|
|
1246
|
+
merge/resources/chat/types/message.py,sha256=-DKy1jQJad6xpw4HD7bkZhZAi61N7Koqjdzjvx1pRSQ,2694
|
|
1244
1247
|
merge/resources/chat/types/method_enum.py,sha256=TSpKQkDMHSQWo_kyeYo4g1uh7DqyVgZx_REojfiLw0Q,1275
|
|
1245
1248
|
merge/resources/chat/types/model_operation.py,sha256=43OJAKzDJO2_lza7ZpUZRweK8d467yGi7Gc61nGHHbg,976
|
|
1246
1249
|
merge/resources/chat/types/model_permission_deserializer.py,sha256=v6Zcw8iqy2BikPwjRbjFkb8XHtwRQ9dPwglVv6RRQ2w,608
|
|
@@ -1274,7 +1277,7 @@ merge/resources/chat/types/sync_status.py,sha256=dSf0uOh8TCgMJ7S3YeU6KyFIOqzgKJD
|
|
|
1274
1277
|
merge/resources/chat/types/sync_status_last_sync_result.py,sha256=NY6veRnsfFgeHEMlj9Q35FFJCKoCOQAmtLotkPTPbSU,200
|
|
1275
1278
|
merge/resources/chat/types/sync_status_status.py,sha256=VAGVIs8Hv1VAaU0_UNCXjXLFcbMHs4P7muYSh9gkUX4,177
|
|
1276
1279
|
merge/resources/chat/types/type_enum.py,sha256=MJmuA-T921SdmeMWqLbkYbCNYMvsiyhESCn16UHQKrk,1124
|
|
1277
|
-
merge/resources/chat/types/user.py,sha256=
|
|
1280
|
+
merge/resources/chat/types/user.py,sha256=uVxNSjRnMJgN8IOsWl14s_EDe7wn0-J-7rKei_AIrIg,2868
|
|
1278
1281
|
merge/resources/chat/types/validation_problem_source.py,sha256=0ayE7x_uM8R0pzVRz9ZZEc6WS1RUZO3VW3zXjh61RVs,576
|
|
1279
1282
|
merge/resources/chat/types/warning_validation_problem.py,sha256=t9CzZaDPK9NykBCj9ok4cJoOXNixtxQCf_DuQg48xDc,787
|
|
1280
1283
|
merge/resources/chat/types/webhook_receiver.py,sha256=g4KQnc-vZPJGlXK-OOFIn2WGyTLKoeaq9TPWQ46VwFY,623
|
|
@@ -2679,7 +2682,7 @@ merge/resources/ticketing/types/viewer_user.py,sha256=VrOx8xWvNadSYjdErIMg2pPsHV
|
|
|
2679
2682
|
merge/resources/ticketing/types/warning_validation_problem.py,sha256=RXDtt3t3FwIeGGXkIr_OHOAybDZg44L_5hOqa2sLlJ0,736
|
|
2680
2683
|
merge/resources/ticketing/types/webhook_receiver.py,sha256=g4KQnc-vZPJGlXK-OOFIn2WGyTLKoeaq9TPWQ46VwFY,623
|
|
2681
2684
|
merge/version.py,sha256=kLtHrVsKjnCqlIC_JtezQUWrCPQkXhjpD_2pdlcGh18,84
|
|
2682
|
-
mergepythonclient-2.
|
|
2683
|
-
mergepythonclient-2.
|
|
2684
|
-
mergepythonclient-2.
|
|
2685
|
-
mergepythonclient-2.
|
|
2685
|
+
mergepythonclient-2.6.0.dist-info/LICENSE.md,sha256=WKO7xLnLSUInldiq5i25eVqKAjwIUKenaS4Cgir2Iuw,3275
|
|
2686
|
+
mergepythonclient-2.6.0.dist-info/METADATA,sha256=0ON1uzvvICB22d3c2I2JfXpLahYmRureGzh5sZ391Fk,7901
|
|
2687
|
+
mergepythonclient-2.6.0.dist-info/WHEEL,sha256=Zb28QaM1gQi8f4VCBhsUklF61CTlNYfs9YAZn-TOGFk,88
|
|
2688
|
+
mergepythonclient-2.6.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|