mergepythonclient 2.6.0__py3-none-any.whl → 2.6.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/types/address.py +5 -1
- merge/resources/accounting/types/expense_line.py +10 -0
- merge/resources/accounting/types/expense_line_request.py +10 -0
- merge/resources/accounting/types/remote_data.py +4 -1
- merge/resources/ats/types/remote_data.py +4 -1
- merge/resources/chat/resources/groups/client.py +20 -0
- merge/resources/chat/resources/groups/raw_client.py +20 -0
- merge/resources/chat/resources/link_token/client.py +2 -2
- merge/resources/chat/resources/link_token/raw_client.py +2 -2
- merge/resources/chat/resources/messages/client.py +12 -0
- merge/resources/chat/resources/messages/raw_client.py +10 -0
- merge/resources/chat/types/group.py +1 -0
- merge/resources/chat/types/remote_data.py +4 -1
- merge/resources/crm/types/remote_data.py +4 -1
- merge/resources/filestorage/types/drive.py +5 -0
- merge/resources/filestorage/types/remote_data.py +4 -1
- merge/resources/hris/types/remote_data.py +4 -1
- merge/resources/knowledgebase/types/remote_data.py +4 -1
- merge/resources/ticketing/types/remote_data.py +4 -1
- {mergepythonclient-2.6.0.dist-info → mergepythonclient-2.6.2.dist-info}/METADATA +4 -1
- {mergepythonclient-2.6.0.dist-info → mergepythonclient-2.6.2.dist-info}/RECORD +25 -25
- {mergepythonclient-2.6.0.dist-info → mergepythonclient-2.6.2.dist-info}/LICENSE.md +0 -0
- {mergepythonclient-2.6.0.dist-info → mergepythonclient-2.6.2.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._knowledgebase: typing.Optional[KnowledgebaseClient] = None
|
|
96
95
|
self._hris: typing.Optional[HrisClient] = None
|
|
96
|
+
self._knowledgebase: typing.Optional[KnowledgebaseClient] = 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 knowledgebase(self):
|
|
134
|
-
if self._knowledgebase is None:
|
|
135
|
-
from .resources.knowledgebase.client import KnowledgebaseClient # noqa: E402
|
|
136
|
-
|
|
137
|
-
self._knowledgebase = KnowledgebaseClient(client_wrapper=self._client_wrapper)
|
|
138
|
-
return self._knowledgebase
|
|
139
|
-
|
|
140
132
|
@property
|
|
141
133
|
def hris(self):
|
|
142
134
|
if self._hris is None:
|
|
@@ -145,6 +137,14 @@ class Merge:
|
|
|
145
137
|
self._hris = HrisClient(client_wrapper=self._client_wrapper)
|
|
146
138
|
return self._hris
|
|
147
139
|
|
|
140
|
+
@property
|
|
141
|
+
def knowledgebase(self):
|
|
142
|
+
if self._knowledgebase is None:
|
|
143
|
+
from .resources.knowledgebase.client import KnowledgebaseClient # noqa: E402
|
|
144
|
+
|
|
145
|
+
self._knowledgebase = KnowledgebaseClient(client_wrapper=self._client_wrapper)
|
|
146
|
+
return self._knowledgebase
|
|
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._knowledgebase: typing.Optional[AsyncKnowledgebaseClient] = None
|
|
239
238
|
self._hris: typing.Optional[AsyncHrisClient] = None
|
|
239
|
+
self._knowledgebase: typing.Optional[AsyncKnowledgebaseClient] = 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 knowledgebase(self):
|
|
277
|
-
if self._knowledgebase is None:
|
|
278
|
-
from .resources.knowledgebase.client import AsyncKnowledgebaseClient # noqa: E402
|
|
279
|
-
|
|
280
|
-
self._knowledgebase = AsyncKnowledgebaseClient(client_wrapper=self._client_wrapper)
|
|
281
|
-
return self._knowledgebase
|
|
282
|
-
|
|
283
275
|
@property
|
|
284
276
|
def hris(self):
|
|
285
277
|
if self._hris is None:
|
|
@@ -288,6 +280,14 @@ class AsyncMerge:
|
|
|
288
280
|
self._hris = AsyncHrisClient(client_wrapper=self._client_wrapper)
|
|
289
281
|
return self._hris
|
|
290
282
|
|
|
283
|
+
@property
|
|
284
|
+
def knowledgebase(self):
|
|
285
|
+
if self._knowledgebase is None:
|
|
286
|
+
from .resources.knowledgebase.client import AsyncKnowledgebaseClient # noqa: E402
|
|
287
|
+
|
|
288
|
+
self._knowledgebase = AsyncKnowledgebaseClient(client_wrapper=self._client_wrapper)
|
|
289
|
+
return self._knowledgebase
|
|
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.6.
|
|
27
|
+
"User-Agent": "MergePythonClient/2.6.2",
|
|
28
28
|
"X-Fern-Language": "Python",
|
|
29
29
|
"X-Fern-SDK-Name": "MergePythonClient",
|
|
30
|
-
"X-Fern-SDK-Version": "2.6.
|
|
30
|
+
"X-Fern-SDK-Version": "2.6.2",
|
|
31
31
|
**(self.get_custom_headers() or {}),
|
|
32
32
|
}
|
|
33
33
|
if self._account_token is not None:
|
|
@@ -53,7 +53,11 @@ class Address(UncheckedBaseModel):
|
|
|
53
53
|
The address's city.
|
|
54
54
|
"""
|
|
55
55
|
|
|
56
|
-
state: typing.Optional[typing.Optional[typing.Any]] = None
|
|
56
|
+
state: typing.Optional[typing.Optional[typing.Any]] = pydantic.Field(default=None)
|
|
57
|
+
"""
|
|
58
|
+
The address's state or region.
|
|
59
|
+
"""
|
|
60
|
+
|
|
57
61
|
country_subdivision: typing.Optional[str] = pydantic.Field(default=None)
|
|
58
62
|
"""
|
|
59
63
|
The address's state or region.
|
|
@@ -408,6 +408,16 @@ class ExpenseLine(UncheckedBaseModel):
|
|
|
408
408
|
The tax rate that applies to this line item.
|
|
409
409
|
"""
|
|
410
410
|
|
|
411
|
+
quantity: typing.Optional[str] = pydantic.Field(default=None)
|
|
412
|
+
"""
|
|
413
|
+
Number of items for the expense line.
|
|
414
|
+
"""
|
|
415
|
+
|
|
416
|
+
unit_price: typing.Optional[str] = pydantic.Field(default=None)
|
|
417
|
+
"""
|
|
418
|
+
Unit price of the item for the expense line.
|
|
419
|
+
"""
|
|
420
|
+
|
|
411
421
|
remote_was_deleted: typing.Optional[bool] = pydantic.Field(default=None)
|
|
412
422
|
"""
|
|
413
423
|
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/).
|
|
@@ -397,6 +397,16 @@ class ExpenseLineRequest(UncheckedBaseModel):
|
|
|
397
397
|
The tax rate that applies to this line item.
|
|
398
398
|
"""
|
|
399
399
|
|
|
400
|
+
quantity: typing.Optional[str] = pydantic.Field(default=None)
|
|
401
|
+
"""
|
|
402
|
+
Number of items for the expense line.
|
|
403
|
+
"""
|
|
404
|
+
|
|
405
|
+
unit_price: typing.Optional[str] = pydantic.Field(default=None)
|
|
406
|
+
"""
|
|
407
|
+
Unit price of the item for the expense line.
|
|
408
|
+
"""
|
|
409
|
+
|
|
400
410
|
integration_params: typing.Optional[typing.Dict[str, typing.Optional[typing.Any]]] = None
|
|
401
411
|
linked_account_params: typing.Optional[typing.Dict[str, typing.Optional[typing.Any]]] = None
|
|
402
412
|
remote_fields: typing.Optional[typing.List[RemoteFieldRequest]] = None
|
|
@@ -22,7 +22,10 @@ class RemoteData(UncheckedBaseModel):
|
|
|
22
22
|
The third-party API path that is being called.
|
|
23
23
|
"""
|
|
24
24
|
|
|
25
|
-
data: typing.Optional[typing.Optional[typing.Any]] = None
|
|
25
|
+
data: typing.Optional[typing.Optional[typing.Any]] = pydantic.Field(default=None)
|
|
26
|
+
"""
|
|
27
|
+
The data returned from the third-party for this object in its original, unnormalized format.
|
|
28
|
+
"""
|
|
26
29
|
|
|
27
30
|
if IS_PYDANTIC_V2:
|
|
28
31
|
model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow", frozen=True) # type: ignore # Pydantic v2
|
|
@@ -22,7 +22,10 @@ class RemoteData(UncheckedBaseModel):
|
|
|
22
22
|
The third-party API path that is being called.
|
|
23
23
|
"""
|
|
24
24
|
|
|
25
|
-
data: typing.Optional[typing.Optional[typing.Any]] = None
|
|
25
|
+
data: typing.Optional[typing.Optional[typing.Any]] = pydantic.Field(default=None)
|
|
26
|
+
"""
|
|
27
|
+
The data returned from the third-party for this object in its original, unnormalized format.
|
|
28
|
+
"""
|
|
26
29
|
|
|
27
30
|
if IS_PYDANTIC_V2:
|
|
28
31
|
model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow", frozen=True) # type: ignore # Pydantic v2
|
|
@@ -31,6 +31,7 @@ class GroupsClient:
|
|
|
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
|
+
expand: typing.Optional[typing.Literal["users"]] = None,
|
|
34
35
|
include_deleted_data: typing.Optional[bool] = None,
|
|
35
36
|
include_remote_data: typing.Optional[bool] = None,
|
|
36
37
|
include_shell_data: typing.Optional[bool] = None,
|
|
@@ -54,6 +55,9 @@ class GroupsClient:
|
|
|
54
55
|
cursor : typing.Optional[str]
|
|
55
56
|
The pagination cursor value.
|
|
56
57
|
|
|
58
|
+
expand : typing.Optional[typing.Literal["users"]]
|
|
59
|
+
Which relations should be returned in expanded form. Multiple relation names should be comma separated without spaces.
|
|
60
|
+
|
|
57
61
|
include_deleted_data : typing.Optional[bool]
|
|
58
62
|
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/).
|
|
59
63
|
|
|
@@ -118,6 +122,7 @@ class GroupsClient:
|
|
|
118
122
|
created_after=created_after,
|
|
119
123
|
created_before=created_before,
|
|
120
124
|
cursor=cursor,
|
|
125
|
+
expand=expand,
|
|
121
126
|
include_deleted_data=include_deleted_data,
|
|
122
127
|
include_remote_data=include_remote_data,
|
|
123
128
|
include_shell_data=include_shell_data,
|
|
@@ -133,6 +138,7 @@ class GroupsClient:
|
|
|
133
138
|
self,
|
|
134
139
|
id: str,
|
|
135
140
|
*,
|
|
141
|
+
expand: typing.Optional[typing.Literal["users"]] = None,
|
|
136
142
|
include_remote_data: typing.Optional[bool] = None,
|
|
137
143
|
include_shell_data: typing.Optional[bool] = None,
|
|
138
144
|
request_options: typing.Optional[RequestOptions] = None,
|
|
@@ -144,6 +150,9 @@ class GroupsClient:
|
|
|
144
150
|
----------
|
|
145
151
|
id : str
|
|
146
152
|
|
|
153
|
+
expand : typing.Optional[typing.Literal["users"]]
|
|
154
|
+
Which relations should be returned in expanded form. Multiple relation names should be comma separated without spaces.
|
|
155
|
+
|
|
147
156
|
include_remote_data : typing.Optional[bool]
|
|
148
157
|
Whether to include the original data Merge fetched from the third-party to produce these models.
|
|
149
158
|
|
|
@@ -174,6 +183,7 @@ class GroupsClient:
|
|
|
174
183
|
"""
|
|
175
184
|
_response = self._raw_client.retrieve(
|
|
176
185
|
id,
|
|
186
|
+
expand=expand,
|
|
177
187
|
include_remote_data=include_remote_data,
|
|
178
188
|
include_shell_data=include_shell_data,
|
|
179
189
|
request_options=request_options,
|
|
@@ -202,6 +212,7 @@ class AsyncGroupsClient:
|
|
|
202
212
|
created_after: typing.Optional[dt.datetime] = None,
|
|
203
213
|
created_before: typing.Optional[dt.datetime] = None,
|
|
204
214
|
cursor: typing.Optional[str] = None,
|
|
215
|
+
expand: typing.Optional[typing.Literal["users"]] = None,
|
|
205
216
|
include_deleted_data: typing.Optional[bool] = None,
|
|
206
217
|
include_remote_data: typing.Optional[bool] = None,
|
|
207
218
|
include_shell_data: typing.Optional[bool] = None,
|
|
@@ -225,6 +236,9 @@ class AsyncGroupsClient:
|
|
|
225
236
|
cursor : typing.Optional[str]
|
|
226
237
|
The pagination cursor value.
|
|
227
238
|
|
|
239
|
+
expand : typing.Optional[typing.Literal["users"]]
|
|
240
|
+
Which relations should be returned in expanded form. Multiple relation names should be comma separated without spaces.
|
|
241
|
+
|
|
228
242
|
include_deleted_data : typing.Optional[bool]
|
|
229
243
|
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/).
|
|
230
244
|
|
|
@@ -296,6 +310,7 @@ class AsyncGroupsClient:
|
|
|
296
310
|
created_after=created_after,
|
|
297
311
|
created_before=created_before,
|
|
298
312
|
cursor=cursor,
|
|
313
|
+
expand=expand,
|
|
299
314
|
include_deleted_data=include_deleted_data,
|
|
300
315
|
include_remote_data=include_remote_data,
|
|
301
316
|
include_shell_data=include_shell_data,
|
|
@@ -311,6 +326,7 @@ class AsyncGroupsClient:
|
|
|
311
326
|
self,
|
|
312
327
|
id: str,
|
|
313
328
|
*,
|
|
329
|
+
expand: typing.Optional[typing.Literal["users"]] = None,
|
|
314
330
|
include_remote_data: typing.Optional[bool] = None,
|
|
315
331
|
include_shell_data: typing.Optional[bool] = None,
|
|
316
332
|
request_options: typing.Optional[RequestOptions] = None,
|
|
@@ -322,6 +338,9 @@ class AsyncGroupsClient:
|
|
|
322
338
|
----------
|
|
323
339
|
id : str
|
|
324
340
|
|
|
341
|
+
expand : typing.Optional[typing.Literal["users"]]
|
|
342
|
+
Which relations should be returned in expanded form. Multiple relation names should be comma separated without spaces.
|
|
343
|
+
|
|
325
344
|
include_remote_data : typing.Optional[bool]
|
|
326
345
|
Whether to include the original data Merge fetched from the third-party to produce these models.
|
|
327
346
|
|
|
@@ -360,6 +379,7 @@ class AsyncGroupsClient:
|
|
|
360
379
|
"""
|
|
361
380
|
_response = await self._raw_client.retrieve(
|
|
362
381
|
id,
|
|
382
|
+
expand=expand,
|
|
363
383
|
include_remote_data=include_remote_data,
|
|
364
384
|
include_shell_data=include_shell_data,
|
|
365
385
|
request_options=request_options,
|
|
@@ -25,6 +25,7 @@ class RawGroupsClient:
|
|
|
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
|
+
expand: typing.Optional[typing.Literal["users"]] = None,
|
|
28
29
|
include_deleted_data: typing.Optional[bool] = None,
|
|
29
30
|
include_remote_data: typing.Optional[bool] = None,
|
|
30
31
|
include_shell_data: typing.Optional[bool] = None,
|
|
@@ -48,6 +49,9 @@ class RawGroupsClient:
|
|
|
48
49
|
cursor : typing.Optional[str]
|
|
49
50
|
The pagination cursor value.
|
|
50
51
|
|
|
52
|
+
expand : typing.Optional[typing.Literal["users"]]
|
|
53
|
+
Which relations should be returned in expanded form. Multiple relation names should be comma separated without spaces.
|
|
54
|
+
|
|
51
55
|
include_deleted_data : typing.Optional[bool]
|
|
52
56
|
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/).
|
|
53
57
|
|
|
@@ -84,6 +88,7 @@ class RawGroupsClient:
|
|
|
84
88
|
"created_after": serialize_datetime(created_after) if created_after is not None else None,
|
|
85
89
|
"created_before": serialize_datetime(created_before) if created_before is not None else None,
|
|
86
90
|
"cursor": cursor,
|
|
91
|
+
"expand": expand,
|
|
87
92
|
"include_deleted_data": include_deleted_data,
|
|
88
93
|
"include_remote_data": include_remote_data,
|
|
89
94
|
"include_shell_data": include_shell_data,
|
|
@@ -113,6 +118,7 @@ class RawGroupsClient:
|
|
|
113
118
|
self,
|
|
114
119
|
id: str,
|
|
115
120
|
*,
|
|
121
|
+
expand: typing.Optional[typing.Literal["users"]] = None,
|
|
116
122
|
include_remote_data: typing.Optional[bool] = None,
|
|
117
123
|
include_shell_data: typing.Optional[bool] = None,
|
|
118
124
|
request_options: typing.Optional[RequestOptions] = None,
|
|
@@ -124,6 +130,9 @@ class RawGroupsClient:
|
|
|
124
130
|
----------
|
|
125
131
|
id : str
|
|
126
132
|
|
|
133
|
+
expand : typing.Optional[typing.Literal["users"]]
|
|
134
|
+
Which relations should be returned in expanded form. Multiple relation names should be comma separated without spaces.
|
|
135
|
+
|
|
127
136
|
include_remote_data : typing.Optional[bool]
|
|
128
137
|
Whether to include the original data Merge fetched from the third-party to produce these models.
|
|
129
138
|
|
|
@@ -142,6 +151,7 @@ class RawGroupsClient:
|
|
|
142
151
|
f"chat/v1/groups/{jsonable_encoder(id)}",
|
|
143
152
|
method="GET",
|
|
144
153
|
params={
|
|
154
|
+
"expand": expand,
|
|
145
155
|
"include_remote_data": include_remote_data,
|
|
146
156
|
"include_shell_data": include_shell_data,
|
|
147
157
|
},
|
|
@@ -173,6 +183,7 @@ class AsyncRawGroupsClient:
|
|
|
173
183
|
created_after: typing.Optional[dt.datetime] = None,
|
|
174
184
|
created_before: typing.Optional[dt.datetime] = None,
|
|
175
185
|
cursor: typing.Optional[str] = None,
|
|
186
|
+
expand: typing.Optional[typing.Literal["users"]] = None,
|
|
176
187
|
include_deleted_data: typing.Optional[bool] = None,
|
|
177
188
|
include_remote_data: typing.Optional[bool] = None,
|
|
178
189
|
include_shell_data: typing.Optional[bool] = None,
|
|
@@ -196,6 +207,9 @@ class AsyncRawGroupsClient:
|
|
|
196
207
|
cursor : typing.Optional[str]
|
|
197
208
|
The pagination cursor value.
|
|
198
209
|
|
|
210
|
+
expand : typing.Optional[typing.Literal["users"]]
|
|
211
|
+
Which relations should be returned in expanded form. Multiple relation names should be comma separated without spaces.
|
|
212
|
+
|
|
199
213
|
include_deleted_data : typing.Optional[bool]
|
|
200
214
|
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/).
|
|
201
215
|
|
|
@@ -232,6 +246,7 @@ class AsyncRawGroupsClient:
|
|
|
232
246
|
"created_after": serialize_datetime(created_after) if created_after is not None else None,
|
|
233
247
|
"created_before": serialize_datetime(created_before) if created_before is not None else None,
|
|
234
248
|
"cursor": cursor,
|
|
249
|
+
"expand": expand,
|
|
235
250
|
"include_deleted_data": include_deleted_data,
|
|
236
251
|
"include_remote_data": include_remote_data,
|
|
237
252
|
"include_shell_data": include_shell_data,
|
|
@@ -261,6 +276,7 @@ class AsyncRawGroupsClient:
|
|
|
261
276
|
self,
|
|
262
277
|
id: str,
|
|
263
278
|
*,
|
|
279
|
+
expand: typing.Optional[typing.Literal["users"]] = None,
|
|
264
280
|
include_remote_data: typing.Optional[bool] = None,
|
|
265
281
|
include_shell_data: typing.Optional[bool] = None,
|
|
266
282
|
request_options: typing.Optional[RequestOptions] = None,
|
|
@@ -272,6 +288,9 @@ class AsyncRawGroupsClient:
|
|
|
272
288
|
----------
|
|
273
289
|
id : str
|
|
274
290
|
|
|
291
|
+
expand : typing.Optional[typing.Literal["users"]]
|
|
292
|
+
Which relations should be returned in expanded form. Multiple relation names should be comma separated without spaces.
|
|
293
|
+
|
|
275
294
|
include_remote_data : typing.Optional[bool]
|
|
276
295
|
Whether to include the original data Merge fetched from the third-party to produce these models.
|
|
277
296
|
|
|
@@ -290,6 +309,7 @@ class AsyncRawGroupsClient:
|
|
|
290
309
|
f"chat/v1/groups/{jsonable_encoder(id)}",
|
|
291
310
|
method="GET",
|
|
292
311
|
params={
|
|
312
|
+
"expand": expand,
|
|
293
313
|
"include_remote_data": include_remote_data,
|
|
294
314
|
"include_shell_data": include_shell_data,
|
|
295
315
|
},
|
|
@@ -55,7 +55,7 @@ class LinkTokenClient:
|
|
|
55
55
|
request_options: typing.Optional[RequestOptions] = None,
|
|
56
56
|
) -> LinkToken:
|
|
57
57
|
"""
|
|
58
|
-
Creates a link token to be used when linking a new end user.
|
|
58
|
+
Creates a link token to be used when linking a new end user. The link token expires after single use.
|
|
59
59
|
|
|
60
60
|
Parameters
|
|
61
61
|
----------
|
|
@@ -187,7 +187,7 @@ class AsyncLinkTokenClient:
|
|
|
187
187
|
request_options: typing.Optional[RequestOptions] = None,
|
|
188
188
|
) -> LinkToken:
|
|
189
189
|
"""
|
|
190
|
-
Creates a link token to be used when linking a new end user.
|
|
190
|
+
Creates a link token to be used when linking a new end user. The link token expires after single use.
|
|
191
191
|
|
|
192
192
|
Parameters
|
|
193
193
|
----------
|
|
@@ -47,7 +47,7 @@ class RawLinkTokenClient:
|
|
|
47
47
|
request_options: typing.Optional[RequestOptions] = None,
|
|
48
48
|
) -> HttpResponse[LinkToken]:
|
|
49
49
|
"""
|
|
50
|
-
Creates a link token to be used when linking a new end user.
|
|
50
|
+
Creates a link token to be used when linking a new end user. The link token expires after single use.
|
|
51
51
|
|
|
52
52
|
Parameters
|
|
53
53
|
----------
|
|
@@ -173,7 +173,7 @@ class AsyncRawLinkTokenClient:
|
|
|
173
173
|
request_options: typing.Optional[RequestOptions] = None,
|
|
174
174
|
) -> AsyncHttpResponse[LinkToken]:
|
|
175
175
|
"""
|
|
176
|
-
Creates a link token to be used when linking a new end user.
|
|
176
|
+
Creates a link token to be used when linking a new end user. The link token expires after single use.
|
|
177
177
|
|
|
178
178
|
Parameters
|
|
179
179
|
----------
|
|
@@ -30,6 +30,7 @@ class MessagesClient:
|
|
|
30
30
|
def list(
|
|
31
31
|
self,
|
|
32
32
|
*,
|
|
33
|
+
conversation_id: typing.Optional[str] = None,
|
|
33
34
|
created_after: typing.Optional[dt.datetime] = None,
|
|
34
35
|
created_before: typing.Optional[dt.datetime] = None,
|
|
35
36
|
cursor: typing.Optional[str] = None,
|
|
@@ -49,6 +50,9 @@ class MessagesClient:
|
|
|
49
50
|
|
|
50
51
|
Parameters
|
|
51
52
|
----------
|
|
53
|
+
conversation_id : typing.Optional[str]
|
|
54
|
+
Filter messages by conversation ID.
|
|
55
|
+
|
|
52
56
|
created_after : typing.Optional[dt.datetime]
|
|
53
57
|
If provided, will only return objects created after this datetime.
|
|
54
58
|
|
|
@@ -105,6 +109,7 @@ class MessagesClient:
|
|
|
105
109
|
api_key="YOUR_API_KEY",
|
|
106
110
|
)
|
|
107
111
|
client.chat.messages.list(
|
|
112
|
+
conversation_id="conversation_id",
|
|
108
113
|
created_after=datetime.datetime.fromisoformat(
|
|
109
114
|
"2024-01-15 09:30:00+00:00",
|
|
110
115
|
),
|
|
@@ -128,6 +133,7 @@ class MessagesClient:
|
|
|
128
133
|
)
|
|
129
134
|
"""
|
|
130
135
|
_response = self._raw_client.list(
|
|
136
|
+
conversation_id=conversation_id,
|
|
131
137
|
created_after=created_after,
|
|
132
138
|
created_before=created_before,
|
|
133
139
|
cursor=cursor,
|
|
@@ -292,6 +298,7 @@ class AsyncMessagesClient:
|
|
|
292
298
|
async def list(
|
|
293
299
|
self,
|
|
294
300
|
*,
|
|
301
|
+
conversation_id: typing.Optional[str] = None,
|
|
295
302
|
created_after: typing.Optional[dt.datetime] = None,
|
|
296
303
|
created_before: typing.Optional[dt.datetime] = None,
|
|
297
304
|
cursor: typing.Optional[str] = None,
|
|
@@ -311,6 +318,9 @@ class AsyncMessagesClient:
|
|
|
311
318
|
|
|
312
319
|
Parameters
|
|
313
320
|
----------
|
|
321
|
+
conversation_id : typing.Optional[str]
|
|
322
|
+
Filter messages by conversation ID.
|
|
323
|
+
|
|
314
324
|
created_after : typing.Optional[dt.datetime]
|
|
315
325
|
If provided, will only return objects created after this datetime.
|
|
316
326
|
|
|
@@ -371,6 +381,7 @@ class AsyncMessagesClient:
|
|
|
371
381
|
|
|
372
382
|
async def main() -> None:
|
|
373
383
|
await client.chat.messages.list(
|
|
384
|
+
conversation_id="conversation_id",
|
|
374
385
|
created_after=datetime.datetime.fromisoformat(
|
|
375
386
|
"2024-01-15 09:30:00+00:00",
|
|
376
387
|
),
|
|
@@ -397,6 +408,7 @@ class AsyncMessagesClient:
|
|
|
397
408
|
asyncio.run(main())
|
|
398
409
|
"""
|
|
399
410
|
_response = await self._raw_client.list(
|
|
411
|
+
conversation_id=conversation_id,
|
|
400
412
|
created_after=created_after,
|
|
401
413
|
created_before=created_before,
|
|
402
414
|
cursor=cursor,
|
|
@@ -24,6 +24,7 @@ class RawMessagesClient:
|
|
|
24
24
|
def list(
|
|
25
25
|
self,
|
|
26
26
|
*,
|
|
27
|
+
conversation_id: typing.Optional[str] = None,
|
|
27
28
|
created_after: typing.Optional[dt.datetime] = None,
|
|
28
29
|
created_before: typing.Optional[dt.datetime] = None,
|
|
29
30
|
cursor: typing.Optional[str] = None,
|
|
@@ -43,6 +44,9 @@ class RawMessagesClient:
|
|
|
43
44
|
|
|
44
45
|
Parameters
|
|
45
46
|
----------
|
|
47
|
+
conversation_id : typing.Optional[str]
|
|
48
|
+
Filter messages by conversation ID.
|
|
49
|
+
|
|
46
50
|
created_after : typing.Optional[dt.datetime]
|
|
47
51
|
If provided, will only return objects created after this datetime.
|
|
48
52
|
|
|
@@ -91,6 +95,7 @@ class RawMessagesClient:
|
|
|
91
95
|
"chat/v1/messages",
|
|
92
96
|
method="GET",
|
|
93
97
|
params={
|
|
98
|
+
"conversation_id": conversation_id,
|
|
94
99
|
"created_after": serialize_datetime(created_after) if created_after is not None else None,
|
|
95
100
|
"created_before": serialize_datetime(created_before) if created_before is not None else None,
|
|
96
101
|
"cursor": cursor,
|
|
@@ -255,6 +260,7 @@ class AsyncRawMessagesClient:
|
|
|
255
260
|
async def list(
|
|
256
261
|
self,
|
|
257
262
|
*,
|
|
263
|
+
conversation_id: typing.Optional[str] = None,
|
|
258
264
|
created_after: typing.Optional[dt.datetime] = None,
|
|
259
265
|
created_before: typing.Optional[dt.datetime] = None,
|
|
260
266
|
cursor: typing.Optional[str] = None,
|
|
@@ -274,6 +280,9 @@ class AsyncRawMessagesClient:
|
|
|
274
280
|
|
|
275
281
|
Parameters
|
|
276
282
|
----------
|
|
283
|
+
conversation_id : typing.Optional[str]
|
|
284
|
+
Filter messages by conversation ID.
|
|
285
|
+
|
|
277
286
|
created_after : typing.Optional[dt.datetime]
|
|
278
287
|
If provided, will only return objects created after this datetime.
|
|
279
288
|
|
|
@@ -322,6 +331,7 @@ class AsyncRawMessagesClient:
|
|
|
322
331
|
"chat/v1/messages",
|
|
323
332
|
method="GET",
|
|
324
333
|
params={
|
|
334
|
+
"conversation_id": conversation_id,
|
|
325
335
|
"created_after": serialize_datetime(created_after) if created_after is not None else None,
|
|
326
336
|
"created_before": serialize_datetime(created_before) if created_before is not None else None,
|
|
327
337
|
"cursor": cursor,
|
|
@@ -39,6 +39,7 @@ class Group(UncheckedBaseModel):
|
|
|
39
39
|
The name of the Group
|
|
40
40
|
"""
|
|
41
41
|
|
|
42
|
+
users: typing.Optional[typing.List[typing.Optional[str]]] = None
|
|
42
43
|
remote_created_at: typing.Optional[dt.datetime] = pydantic.Field(default=None)
|
|
43
44
|
"""
|
|
44
45
|
When the third party's group was created.
|
|
@@ -22,7 +22,10 @@ class RemoteData(UncheckedBaseModel):
|
|
|
22
22
|
The third-party API path that is being called.
|
|
23
23
|
"""
|
|
24
24
|
|
|
25
|
-
data: typing.Optional[typing.Optional[typing.Any]] = None
|
|
25
|
+
data: typing.Optional[typing.Optional[typing.Any]] = pydantic.Field(default=None)
|
|
26
|
+
"""
|
|
27
|
+
The data returned from the third-party for this object in its original, unnormalized format.
|
|
28
|
+
"""
|
|
26
29
|
|
|
27
30
|
if IS_PYDANTIC_V2:
|
|
28
31
|
model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow", frozen=True) # type: ignore # Pydantic v2
|
|
@@ -22,7 +22,10 @@ class RemoteData(UncheckedBaseModel):
|
|
|
22
22
|
The third-party API path that is being called.
|
|
23
23
|
"""
|
|
24
24
|
|
|
25
|
-
data: typing.Optional[typing.Optional[typing.Any]] = None
|
|
25
|
+
data: typing.Optional[typing.Optional[typing.Any]] = pydantic.Field(default=None)
|
|
26
|
+
"""
|
|
27
|
+
The data returned from the third-party for this object in its original, unnormalized format.
|
|
28
|
+
"""
|
|
26
29
|
|
|
27
30
|
if IS_PYDANTIC_V2:
|
|
28
31
|
model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow", frozen=True) # type: ignore # Pydantic v2
|
|
@@ -49,6 +49,11 @@ class Drive(UncheckedBaseModel):
|
|
|
49
49
|
The drive's url.
|
|
50
50
|
"""
|
|
51
51
|
|
|
52
|
+
size: typing.Optional[int] = pydantic.Field(default=None)
|
|
53
|
+
"""
|
|
54
|
+
The drive's size, in bytes.
|
|
55
|
+
"""
|
|
56
|
+
|
|
52
57
|
remote_was_deleted: typing.Optional[bool] = pydantic.Field(default=None)
|
|
53
58
|
"""
|
|
54
59
|
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/).
|
|
@@ -22,7 +22,10 @@ class RemoteData(UncheckedBaseModel):
|
|
|
22
22
|
The third-party API path that is being called.
|
|
23
23
|
"""
|
|
24
24
|
|
|
25
|
-
data: typing.Optional[typing.Optional[typing.Any]] = None
|
|
25
|
+
data: typing.Optional[typing.Optional[typing.Any]] = pydantic.Field(default=None)
|
|
26
|
+
"""
|
|
27
|
+
The data returned from the third-party for this object in its original, unnormalized format.
|
|
28
|
+
"""
|
|
26
29
|
|
|
27
30
|
if IS_PYDANTIC_V2:
|
|
28
31
|
model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow", frozen=True) # type: ignore # Pydantic v2
|
|
@@ -22,7 +22,10 @@ class RemoteData(UncheckedBaseModel):
|
|
|
22
22
|
The third-party API path that is being called.
|
|
23
23
|
"""
|
|
24
24
|
|
|
25
|
-
data: typing.Optional[typing.Optional[typing.Any]] = None
|
|
25
|
+
data: typing.Optional[typing.Optional[typing.Any]] = pydantic.Field(default=None)
|
|
26
|
+
"""
|
|
27
|
+
The data returned from the third-party for this object in its original, unnormalized format.
|
|
28
|
+
"""
|
|
26
29
|
|
|
27
30
|
if IS_PYDANTIC_V2:
|
|
28
31
|
model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow", frozen=True) # type: ignore # Pydantic v2
|
|
@@ -22,7 +22,10 @@ class RemoteData(UncheckedBaseModel):
|
|
|
22
22
|
The third-party API path that is being called.
|
|
23
23
|
"""
|
|
24
24
|
|
|
25
|
-
data: typing.Optional[typing.Optional[typing.Any]] = None
|
|
25
|
+
data: typing.Optional[typing.Optional[typing.Any]] = pydantic.Field(default=None)
|
|
26
|
+
"""
|
|
27
|
+
The data returned from the third-party for this object in its original, unnormalized format.
|
|
28
|
+
"""
|
|
26
29
|
|
|
27
30
|
if IS_PYDANTIC_V2:
|
|
28
31
|
model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow", frozen=True) # type: ignore # Pydantic v2
|
|
@@ -22,7 +22,10 @@ class RemoteData(UncheckedBaseModel):
|
|
|
22
22
|
The third-party API path that is being called.
|
|
23
23
|
"""
|
|
24
24
|
|
|
25
|
-
data: typing.Optional[typing.Optional[typing.Any]] = None
|
|
25
|
+
data: typing.Optional[typing.Optional[typing.Any]] = pydantic.Field(default=None)
|
|
26
|
+
"""
|
|
27
|
+
The data returned from the third-party for this object in its original, unnormalized format.
|
|
28
|
+
"""
|
|
26
29
|
|
|
27
30
|
if IS_PYDANTIC_V2:
|
|
28
31
|
model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow", frozen=True) # type: ignore # Pydantic v2
|
|
@@ -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=_bxMTHVjU04PvdYXojUCiTwazrodJRBX9dtthm6pdYY,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=S8dFPU8Xw1EIBvGjv8p9U82heZ008dnlMlmGxenQ7PI,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
|
|
@@ -261,7 +261,7 @@ merge/resources/accounting/types/accounting_period.py,sha256=YLOnjt2QnI5ovQOZbIS
|
|
|
261
261
|
merge/resources/accounting/types/accounting_period_status.py,sha256=8gg4a6WRlrwoV1iKKOv6MA5v5Q40ew0cwWCLWlykzeA,182
|
|
262
262
|
merge/resources/accounting/types/accounting_phone_number.py,sha256=4ucbk9a5urwToF8JrTzv9NjQ2po4ZDbvYOV7Btdn1EY,1371
|
|
263
263
|
merge/resources/accounting/types/accounting_phone_number_request.py,sha256=dNdz3-xth-RfRRkrpOUlXM_XigzuzYgNpRPiv2y0brw,1248
|
|
264
|
-
merge/resources/accounting/types/address.py,sha256=
|
|
264
|
+
merge/resources/accounting/types/address.py,sha256=WosG97Is1voZ5sE3ER78Ar7h2ToyIXVqGVgqqIBnz5w,8259
|
|
265
265
|
merge/resources/accounting/types/address_country.py,sha256=-t4TLGuv0QUmd-5LmuGS9D3Dohwx31xIjRHFOxkynTg,167
|
|
266
266
|
merge/resources/accounting/types/address_request.py,sha256=vhBk7UitgUP15zgBfcTcrwO08Z7dwbXo8J1_iKqCQXw,8041
|
|
267
267
|
merge/resources/accounting/types/address_request_country.py,sha256=80H1Eotymk464-uN3W3-qPufGI3Ph7olLhhWJyEoUtI,174
|
|
@@ -375,14 +375,14 @@ merge/resources/accounting/types/expense_company.py,sha256=glTlqCHP1Y2X7xrP-yDsM
|
|
|
375
375
|
merge/resources/accounting/types/expense_contact.py,sha256=v2WJR_Olv2mgIBDjg3c4DK_fYkWobZl01K48Gh4FMAs,154
|
|
376
376
|
merge/resources/accounting/types/expense_currency.py,sha256=dHd3C636Ox7A8QKVO6_apAy5byVA4c5rrQg9Vx4SYo0,205
|
|
377
377
|
merge/resources/accounting/types/expense_employee.py,sha256=S3sA6dB-WyIkL7y_0zy87bSVebNNl12NXVAwOEmCJhg,158
|
|
378
|
-
merge/resources/accounting/types/expense_line.py,sha256
|
|
378
|
+
merge/resources/accounting/types/expense_line.py,sha256=pHstgkkrc3OIcMweFHnPY_uf-cnHBzNyWuwCU1ivNvw,14461
|
|
379
379
|
merge/resources/accounting/types/expense_line_account.py,sha256=wTUrDpQPDny2ra3HOtJHqxHORL4y35uGVzEt2PNsSrE,158
|
|
380
380
|
merge/resources/accounting/types/expense_line_contact.py,sha256=NAKcWM9_Sx_ARbBjIzrzav-Ze6dTu2D_OrNz_rI5iX8,158
|
|
381
381
|
merge/resources/accounting/types/expense_line_currency.py,sha256=nrMWy_mCLbCvRETnX25hNFm_nS_1hXbzJkCpyPRp6QI,209
|
|
382
382
|
merge/resources/accounting/types/expense_line_employee.py,sha256=2bM0YYOHOTT-xHYCLr9BskDe8ELCSVX6E8BGZrsjuC0,162
|
|
383
383
|
merge/resources/accounting/types/expense_line_item.py,sha256=b-aJtnORuLKOGyTku1hRjzhs6YOGdgTOQxDr2qOvtjE,146
|
|
384
384
|
merge/resources/accounting/types/expense_line_project.py,sha256=At1oso7pSTcIxELj0jS2NJf1Slyl4MaSwqOl9noOx4A,158
|
|
385
|
-
merge/resources/accounting/types/expense_line_request.py,sha256=
|
|
385
|
+
merge/resources/accounting/types/expense_line_request.py,sha256=xPtSoxCgmjBD98WG7D6SClQA7z7al5WLpfaAHHI3Tkg,14226
|
|
386
386
|
merge/resources/accounting/types/expense_line_request_account.py,sha256=ijRKpEyGlkSaq7RihyEVS2Wap-5_Cri3M99D6UY6uds,165
|
|
387
387
|
merge/resources/accounting/types/expense_line_request_contact.py,sha256=v151IzW49Juu6dQ9e1yJJVvT1G6Ychh4d4xcuLUC4wM,165
|
|
388
388
|
merge/resources/accounting/types/expense_line_request_currency.py,sha256=-e9s-a9vAgHdXP5BkAtcXl7UNZwhWnCJ2Rt17_ovlgc,216
|
|
@@ -674,7 +674,7 @@ merge/resources/accounting/types/purchase_order_status.py,sha256=BI3fYfLSkCTLNcb
|
|
|
674
674
|
merge/resources/accounting/types/purchase_order_status_enum.py,sha256=YaSSmjOXn2TUvSCxJl8s5T1diJ_ChRkZcff5zxGnWxk,1154
|
|
675
675
|
merge/resources/accounting/types/purchase_order_tracking_categories_item.py,sha256=wnYL_c5JU5E0ZuBDwUEAS3u8TBuUqC8Tx7jDvvPpOm4,203
|
|
676
676
|
merge/resources/accounting/types/purchase_order_vendor.py,sha256=QbvISOnShV1w9cyIVyyNe5uCq7ALXaU9rGE6XvjAM30,159
|
|
677
|
-
merge/resources/accounting/types/remote_data.py,sha256=
|
|
677
|
+
merge/resources/accounting/types/remote_data.py,sha256=2KgOxzhOl9qP9jTJrAFxu54KEYto22lk00alu1PQtnA,1053
|
|
678
678
|
merge/resources/accounting/types/remote_endpoint_info.py,sha256=0BxMkicfPbBLjFDQ71H0TQ9BbTDcGduHmBZjsPZss1M,655
|
|
679
679
|
merge/resources/accounting/types/remote_field.py,sha256=VYODTdHsSUSj1aaWzcWKdDzSy6076USrytlybKIk4Nc,735
|
|
680
680
|
merge/resources/accounting/types/remote_field_api.py,sha256=o7WbCUNUnmPtn6F09P3lKsXSHpEjAN8ZEfu8xsZL4Ko,1085
|
|
@@ -1053,7 +1053,7 @@ merge/resources/ats/types/phone_number_type_enum.py,sha256=NX9QcoSa2054PAbVKKx7Z
|
|
|
1053
1053
|
merge/resources/ats/types/race_enum.py,sha256=2KWR8V7_FiHXJJFhpMLJlzukaui2SjrLXBAItQvfOXU,2326
|
|
1054
1054
|
merge/resources/ats/types/reason_enum.py,sha256=_8cpQd1CZP5n2v2a0zPKQHrMb8x2zZNFm-xeM-V0FFE,814
|
|
1055
1055
|
merge/resources/ats/types/reject_reason.py,sha256=nbTns5jgdZ4Sn3WzQ5gXCd_xt53X24x006rmLYxd7ic,2050
|
|
1056
|
-
merge/resources/ats/types/remote_data.py,sha256=
|
|
1056
|
+
merge/resources/ats/types/remote_data.py,sha256=2KgOxzhOl9qP9jTJrAFxu54KEYto22lk00alu1PQtnA,1053
|
|
1057
1057
|
merge/resources/ats/types/remote_endpoint_info.py,sha256=0BxMkicfPbBLjFDQ71H0TQ9BbTDcGduHmBZjsPZss1M,655
|
|
1058
1058
|
merge/resources/ats/types/remote_field_api.py,sha256=o7WbCUNUnmPtn6F09P3lKsXSHpEjAN8ZEfu8xsZL4Ko,1085
|
|
1059
1059
|
merge/resources/ats/types/remote_field_api_coverage.py,sha256=4bdB5WY4RcmZWXAIOeR_vTqnwIJsGr5eeSJDJFKxgq4,130
|
|
@@ -1149,16 +1149,16 @@ merge/resources/chat/resources/generate_key/__init__.py,sha256=_VhToAyIt_5axN6CL
|
|
|
1149
1149
|
merge/resources/chat/resources/generate_key/client.py,sha256=MFdY2ZQXGS_FpthQ_ylrKjqXawrI7xyOij8m_z1afdU,3072
|
|
1150
1150
|
merge/resources/chat/resources/generate_key/raw_client.py,sha256=RxgM5PtJX5uMjZeecON8o8g1uv2hvpzviLjbiMhHQo4,3852
|
|
1151
1151
|
merge/resources/chat/resources/groups/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
|
|
1152
|
-
merge/resources/chat/resources/groups/client.py,sha256=
|
|
1153
|
-
merge/resources/chat/resources/groups/raw_client.py,sha256=
|
|
1152
|
+
merge/resources/chat/resources/groups/client.py,sha256=yxxDG8d7dUj7QWj4UKuj9gZnBaRzjLbcS6g-gpDwm0A,13812
|
|
1153
|
+
merge/resources/chat/resources/groups/raw_client.py,sha256=f2qYxT4wblcslKfuaWCw17P4nP0UQc2tAyYsW92xG3o,14472
|
|
1154
1154
|
merge/resources/chat/resources/issues/__init__.py,sha256=fKOCxeYsbS41Y58p81luMrp7eaz6BLop2enXQ3HTvtc,1026
|
|
1155
1155
|
merge/resources/chat/resources/issues/client.py,sha256=48ryjiHc5Op4Ku0atjyUNRlP9dRMUOU4kTSe5fFghDc,13292
|
|
1156
1156
|
merge/resources/chat/resources/issues/raw_client.py,sha256=eKfH1zitjVVnaF_MUSvE99ccNosnhwIr8nV_jFA0FII,13742
|
|
1157
1157
|
merge/resources/chat/resources/issues/types/__init__.py,sha256=c7N5BxoJGun2-0qD15I96eDPA36xKVGjt08VJoifSNo,1068
|
|
1158
1158
|
merge/resources/chat/resources/issues/types/issues_list_request_status.py,sha256=cBbfu1Q5A0ZPOzB7nM_VHRKEJHnxk8lqN-cGmRX6_x4,508
|
|
1159
1159
|
merge/resources/chat/resources/link_token/__init__.py,sha256=SnrZh75KCWfeI4PNUZFwHVSreQcmMJIqJiYcC_Ngtpo,1225
|
|
1160
|
-
merge/resources/chat/resources/link_token/client.py,sha256=
|
|
1161
|
-
merge/resources/chat/resources/link_token/raw_client.py,sha256=
|
|
1160
|
+
merge/resources/chat/resources/link_token/client.py,sha256=Ep8hKeSe7km7-c_6SwZTIRgdE6_U8WBdUhKgZb3iBW0,13907
|
|
1161
|
+
merge/resources/chat/resources/link_token/raw_client.py,sha256=vFQasjGvj8Zaytb1j0VIFobX-ux8SDTwlXiiHG5F6_8,14321
|
|
1162
1162
|
merge/resources/chat/resources/link_token/types/__init__.py,sha256=_R_BKsWS8EzRz6fT2MqvVt4S8shrLKb2fVJFkfPtm-Y,1424
|
|
1163
1163
|
merge/resources/chat/resources/link_token/types/end_user_details_request_completed_account_initial_screen.py,sha256=zukDNJ3gyH3NNfkChH2SATk-rfFOnL0e1jxqJoY3g28,281
|
|
1164
1164
|
merge/resources/chat/resources/link_token/types/end_user_details_request_language.py,sha256=2BMH_lFqvpT1C4ljoUh5YUm2dgiuLYil6s3_pKcn540,194
|
|
@@ -1168,8 +1168,8 @@ merge/resources/chat/resources/linked_accounts/raw_client.py,sha256=KyULuXyzfHUW
|
|
|
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
1170
|
merge/resources/chat/resources/messages/__init__.py,sha256=nXolfKmAWeNctqmPfSMT9ZXyL60-c1kdigvOpA0eYm4,1165
|
|
1171
|
-
merge/resources/chat/resources/messages/client.py,sha256=
|
|
1172
|
-
merge/resources/chat/resources/messages/raw_client.py,sha256=
|
|
1171
|
+
merge/resources/chat/resources/messages/client.py,sha256=iS9VuR0FnjScr7wpK4F0Aq5pm477XvGHoZmHPp8vniU,21077
|
|
1172
|
+
merge/resources/chat/resources/messages/raw_client.py,sha256=YJx8TGsUX08fMyr4WuBnDLaljx34bTXDcy0h5PdnAUo,21458
|
|
1173
1173
|
merge/resources/chat/resources/messages/types/__init__.py,sha256=_Kuotn9l0SRtLMrh3nqfHsiOHzfQ-nGrCWrs2NRHiVE,1303
|
|
1174
1174
|
merge/resources/chat/resources/messages/types/messages_list_request_order_by.py,sha256=cDuJdpvy1SQmkZRY5tUEKO56PNv_F7GkAfTUDlxUI7k,728
|
|
1175
1175
|
merge/resources/chat/resources/messages/types/messages_replies_list_request_order_by.py,sha256=GhFxbbKZr_S4LizLPDOHBN5Y7bM6cDpnW2igqgbBCkI,749
|
|
@@ -1233,7 +1233,7 @@ merge/resources/chat/types/field_mapping_api_instance_target_field.py,sha256=Bjo
|
|
|
1233
1233
|
merge/resources/chat/types/field_mapping_instance_response.py,sha256=wrRYB0RI5TkHt6ugR5aKYB7at2sgbuPJ-6zQ9DBm43Y,990
|
|
1234
1234
|
merge/resources/chat/types/field_permission_deserializer.py,sha256=iycoe64xsMDW-luGbNhfdQw3fANbvS7cUxzfyUezzHQ,734
|
|
1235
1235
|
merge/resources/chat/types/field_permission_deserializer_request.py,sha256=cotKpyilSrE7wP4UEhu8W0f8MSpzG8PqvIiMgrhtWwk,741
|
|
1236
|
-
merge/resources/chat/types/group.py,sha256=
|
|
1236
|
+
merge/resources/chat/types/group.py,sha256=aqyTAfcNxmMJXHwRDbpA4VaLtup1dOd9PTTL_HbHJNQ,2297
|
|
1237
1237
|
merge/resources/chat/types/individual_common_model_scope_deserializer.py,sha256=BJzQQjO4cycEfSJZEiN6jurJrxGYQlRsBgKSAStlRD0,904
|
|
1238
1238
|
merge/resources/chat/types/individual_common_model_scope_deserializer_request.py,sha256=w4C16ZKCwfd621lTG2grC5SHNkvwmIfSQtyzPex0Jns,955
|
|
1239
1239
|
merge/resources/chat/types/issue.py,sha256=F1fGOu_vvsxF3ZJa8y6egizcSFujLJ5BHkwWnnjGpKQ,1178
|
|
@@ -1259,7 +1259,7 @@ merge/resources/chat/types/paginated_member_list.py,sha256=zGy8jKgoEmQUMHrbgWGU3
|
|
|
1259
1259
|
merge/resources/chat/types/paginated_message_list.py,sha256=A_cOPoEDUxau9b480Lz8sQm2mZEuYix26o-TfDV7O9U,723
|
|
1260
1260
|
merge/resources/chat/types/paginated_sync_status_list.py,sha256=FWYeHhnnJZII_HHKzO12Vr4UJLReNd1qqIoDtDCV6rQ,736
|
|
1261
1261
|
merge/resources/chat/types/paginated_user_list.py,sha256=QmSAMQlC-Ji0rJbh16YfXw9j20QqNo0Mn6W4fOxcDPg,711
|
|
1262
|
-
merge/resources/chat/types/remote_data.py,sha256=
|
|
1262
|
+
merge/resources/chat/types/remote_data.py,sha256=2KgOxzhOl9qP9jTJrAFxu54KEYto22lk00alu1PQtnA,1053
|
|
1263
1263
|
merge/resources/chat/types/remote_endpoint_info.py,sha256=0BxMkicfPbBLjFDQ71H0TQ9BbTDcGduHmBZjsPZss1M,655
|
|
1264
1264
|
merge/resources/chat/types/remote_field_api.py,sha256=wMBjIwazeFhCKlvi9_gCl7l7pX4Cl0ySF4CZyW9-zsE,1130
|
|
1265
1265
|
merge/resources/chat/types/remote_field_api_advanced_metadata.py,sha256=jaPWv3UaoR-vuA7YruzUGYFTKheP4cBMHnvXKjZVVl0,198
|
|
@@ -1581,7 +1581,7 @@ merge/resources/crm/types/patched_task_request_status.py,sha256=ClwL3_Aaf7RCmk3A
|
|
|
1581
1581
|
merge/resources/crm/types/phone_number.py,sha256=40MhWA32ms7wGXUpOtgS7m9bRXgJ-uRYYMIMW9ZeDZ4,1334
|
|
1582
1582
|
merge/resources/crm/types/phone_number_request.py,sha256=7gE51P2xhJEcPudWYTHvpsVsT1u1CuieoUgHRpAsVdg,1211
|
|
1583
1583
|
merge/resources/crm/types/reason_enum.py,sha256=_8cpQd1CZP5n2v2a0zPKQHrMb8x2zZNFm-xeM-V0FFE,814
|
|
1584
|
-
merge/resources/crm/types/remote_data.py,sha256=
|
|
1584
|
+
merge/resources/crm/types/remote_data.py,sha256=2KgOxzhOl9qP9jTJrAFxu54KEYto22lk00alu1PQtnA,1053
|
|
1585
1585
|
merge/resources/crm/types/remote_endpoint_info.py,sha256=0BxMkicfPbBLjFDQ71H0TQ9BbTDcGduHmBZjsPZss1M,655
|
|
1586
1586
|
merge/resources/crm/types/remote_field.py,sha256=VYODTdHsSUSj1aaWzcWKdDzSy6076USrytlybKIk4Nc,735
|
|
1587
1587
|
merge/resources/crm/types/remote_field_api.py,sha256=o7WbCUNUnmPtn6F09P3lKsXSHpEjAN8ZEfu8xsZL4Ko,1085
|
|
@@ -1731,7 +1731,7 @@ merge/resources/filestorage/types/data_passthrough_request.py,sha256=gG8yqvRRpSD
|
|
|
1731
1731
|
merge/resources/filestorage/types/debug_mode_log.py,sha256=_aDyb6W3eB98mw4lcnG-oXwpOx99KbuBnrUXP6IwdTc,684
|
|
1732
1732
|
merge/resources/filestorage/types/debug_model_log_summary.py,sha256=Ab0MWIdzb7pBW6U6lJwhN1VL6H9qDcXnNmUAd1pZuE8,606
|
|
1733
1733
|
merge/resources/filestorage/types/download_request_meta.py,sha256=hzPprsRMUhXu15znpQoFA02XoGCtOOKQtDuVPri5DWQ,655
|
|
1734
|
-
merge/resources/filestorage/types/drive.py,sha256=
|
|
1734
|
+
merge/resources/filestorage/types/drive.py,sha256=71b7TbtdEhEB-hANdlG1cnR3mU4UFbHIydpZ03r0iDg,2347
|
|
1735
1735
|
merge/resources/filestorage/types/enabled_actions_enum.py,sha256=RBwvCMjrrdPPAbnQXAwKczXklo0uxpgYVrfcDs6lSRo,522
|
|
1736
1736
|
merge/resources/filestorage/types/encoding_enum.py,sha256=ervs42mwv6m0bBeWe-QKdG02RRVLIlFhLOVjzmqen3c,739
|
|
1737
1737
|
merge/resources/filestorage/types/error_validation_problem.py,sha256=kTcN_MW8qd0YV5bMdeQfhxCyx5z3RYSfQkjjhrQcX0Y,734
|
|
@@ -1806,7 +1806,7 @@ merge/resources/filestorage/types/permission_request_user.py,sha256=6vnuwOXaSHCE
|
|
|
1806
1806
|
merge/resources/filestorage/types/permission_roles_item.py,sha256=y9uaZ-jd5Kvaj3qA5EZl_QgUgjVfuu4AVfZEClT7_0o,166
|
|
1807
1807
|
merge/resources/filestorage/types/permission_type.py,sha256=PhYLDdyxTNmHMk6-XqTHsyiXGZ5jNmMH6UmmlpWGU3o,158
|
|
1808
1808
|
merge/resources/filestorage/types/permission_user.py,sha256=GGpNnDu32Jrso-MDaR1Lvw1QTuO3esesTZHVKseizag,145
|
|
1809
|
-
merge/resources/filestorage/types/remote_data.py,sha256=
|
|
1809
|
+
merge/resources/filestorage/types/remote_data.py,sha256=2KgOxzhOl9qP9jTJrAFxu54KEYto22lk00alu1PQtnA,1053
|
|
1810
1810
|
merge/resources/filestorage/types/remote_endpoint_info.py,sha256=0BxMkicfPbBLjFDQ71H0TQ9BbTDcGduHmBZjsPZss1M,655
|
|
1811
1811
|
merge/resources/filestorage/types/remote_field_api.py,sha256=o7WbCUNUnmPtn6F09P3lKsXSHpEjAN8ZEfu8xsZL4Ko,1085
|
|
1812
1812
|
merge/resources/filestorage/types/remote_field_api_coverage.py,sha256=4bdB5WY4RcmZWXAIOeR_vTqnwIJsGr5eeSJDJFKxgq4,130
|
|
@@ -2139,7 +2139,7 @@ merge/resources/hris/types/payroll_run_run_type.py,sha256=mSvs2rzn52fleYCvKQ9n4U
|
|
|
2139
2139
|
merge/resources/hris/types/policy_type_enum.py,sha256=gwL6u9Mt_xHf8vNsApjaM8xXor61zCb5XgvkFJePTEc,1305
|
|
2140
2140
|
merge/resources/hris/types/reason_enum.py,sha256=_8cpQd1CZP5n2v2a0zPKQHrMb8x2zZNFm-xeM-V0FFE,814
|
|
2141
2141
|
merge/resources/hris/types/relationship_enum.py,sha256=hiQJr84PT0FZ9m1qe5OYFslhkB5dIfopGFXE0n_8QSA,796
|
|
2142
|
-
merge/resources/hris/types/remote_data.py,sha256=
|
|
2142
|
+
merge/resources/hris/types/remote_data.py,sha256=2KgOxzhOl9qP9jTJrAFxu54KEYto22lk00alu1PQtnA,1053
|
|
2143
2143
|
merge/resources/hris/types/remote_endpoint_info.py,sha256=0BxMkicfPbBLjFDQ71H0TQ9BbTDcGduHmBZjsPZss1M,655
|
|
2144
2144
|
merge/resources/hris/types/remote_field_api.py,sha256=o7WbCUNUnmPtn6F09P3lKsXSHpEjAN8ZEfu8xsZL4Ko,1085
|
|
2145
2145
|
merge/resources/hris/types/remote_field_api_coverage.py,sha256=4bdB5WY4RcmZWXAIOeR_vTqnwIJsGr5eeSJDJFKxgq4,130
|
|
@@ -2366,7 +2366,7 @@ merge/resources/knowledgebase/types/permission_group.py,sha256=Tms_gEhIQ644Z7oDl
|
|
|
2366
2366
|
merge/resources/knowledgebase/types/permission_type.py,sha256=9zhGCeDgjL_so3ra9ZNDocApPkO-j3GiEPRpjAdJ1kw,189
|
|
2367
2367
|
merge/resources/knowledgebase/types/permission_type_enum.py,sha256=wx8pbHHq6_o2Gpoo8iznynaG2yrTHtD4DlUusdrSziQ,894
|
|
2368
2368
|
merge/resources/knowledgebase/types/permission_user.py,sha256=GGpNnDu32Jrso-MDaR1Lvw1QTuO3esesTZHVKseizag,145
|
|
2369
|
-
merge/resources/knowledgebase/types/remote_data.py,sha256=
|
|
2369
|
+
merge/resources/knowledgebase/types/remote_data.py,sha256=2KgOxzhOl9qP9jTJrAFxu54KEYto22lk00alu1PQtnA,1053
|
|
2370
2370
|
merge/resources/knowledgebase/types/remote_endpoint_info.py,sha256=0BxMkicfPbBLjFDQ71H0TQ9BbTDcGduHmBZjsPZss1M,655
|
|
2371
2371
|
merge/resources/knowledgebase/types/remote_field_api.py,sha256=wMBjIwazeFhCKlvi9_gCl7l7pX4Cl0ySF4CZyW9-zsE,1130
|
|
2372
2372
|
merge/resources/knowledgebase/types/remote_field_api_advanced_metadata.py,sha256=jaPWv3UaoR-vuA7YruzUGYFTKheP4cBMHnvXKjZVVl0,198
|
|
@@ -2614,7 +2614,7 @@ merge/resources/ticketing/types/patched_ticket_request_priority.py,sha256=IllBp1
|
|
|
2614
2614
|
merge/resources/ticketing/types/patched_ticket_request_status.py,sha256=MOoLcSVHs_ubo7VXG1YhkWwYnS5d8WCr5GPlGMiG3B4,195
|
|
2615
2615
|
merge/resources/ticketing/types/priority_enum.py,sha256=acnkqUZdEKYNA109BL65Mq-kqu4csjuhFeunBnXvQs0,843
|
|
2616
2616
|
merge/resources/ticketing/types/project.py,sha256=zp2sJWj5Zmw7C_MMhwdtMZ7urvJezIaR9nds3C50QWo,2011
|
|
2617
|
-
merge/resources/ticketing/types/remote_data.py,sha256=
|
|
2617
|
+
merge/resources/ticketing/types/remote_data.py,sha256=2KgOxzhOl9qP9jTJrAFxu54KEYto22lk00alu1PQtnA,1053
|
|
2618
2618
|
merge/resources/ticketing/types/remote_endpoint_info.py,sha256=0BxMkicfPbBLjFDQ71H0TQ9BbTDcGduHmBZjsPZss1M,655
|
|
2619
2619
|
merge/resources/ticketing/types/remote_field.py,sha256=VYODTdHsSUSj1aaWzcWKdDzSy6076USrytlybKIk4Nc,735
|
|
2620
2620
|
merge/resources/ticketing/types/remote_field_api.py,sha256=o7WbCUNUnmPtn6F09P3lKsXSHpEjAN8ZEfu8xsZL4Ko,1085
|
|
@@ -2682,7 +2682,7 @@ merge/resources/ticketing/types/viewer_user.py,sha256=VrOx8xWvNadSYjdErIMg2pPsHV
|
|
|
2682
2682
|
merge/resources/ticketing/types/warning_validation_problem.py,sha256=RXDtt3t3FwIeGGXkIr_OHOAybDZg44L_5hOqa2sLlJ0,736
|
|
2683
2683
|
merge/resources/ticketing/types/webhook_receiver.py,sha256=g4KQnc-vZPJGlXK-OOFIn2WGyTLKoeaq9TPWQ46VwFY,623
|
|
2684
2684
|
merge/version.py,sha256=kLtHrVsKjnCqlIC_JtezQUWrCPQkXhjpD_2pdlcGh18,84
|
|
2685
|
-
mergepythonclient-2.6.
|
|
2686
|
-
mergepythonclient-2.6.
|
|
2687
|
-
mergepythonclient-2.6.
|
|
2688
|
-
mergepythonclient-2.6.
|
|
2685
|
+
mergepythonclient-2.6.2.dist-info/LICENSE.md,sha256=WKO7xLnLSUInldiq5i25eVqKAjwIUKenaS4Cgir2Iuw,3275
|
|
2686
|
+
mergepythonclient-2.6.2.dist-info/METADATA,sha256=E29KkHrO9aGkQ7ZdOVlWuyqAkoyAZ_BmyKFRL62s8Nc,7904
|
|
2687
|
+
mergepythonclient-2.6.2.dist-info/WHEEL,sha256=Zb28QaM1gQi8f4VCBhsUklF61CTlNYfs9YAZn-TOGFk,88
|
|
2688
|
+
mergepythonclient-2.6.2.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|