mergepythonclient 0.2.2__py3-none-any.whl → 0.2.4__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.
Files changed (23) hide show
  1. merge/core/client_wrapper.py +1 -1
  2. merge/resources/crm/__init__.py +10 -0
  3. merge/resources/crm/types/__init__.py +12 -0
  4. merge/resources/crm/types/remote_field.py +3 -3
  5. merge/resources/crm/types/remote_field_class.py +6 -5
  6. merge/resources/crm/types/remote_field_class_field_choices_item.py +25 -0
  7. merge/resources/crm/types/remote_field_class_field_format.py +7 -0
  8. merge/resources/crm/types/remote_field_class_field_type.py +7 -0
  9. merge/resources/crm/types/remote_field_class_for_custom_object_class.py +4 -1
  10. merge/resources/crm/types/remote_field_class_for_custom_object_class_field_choices_item.py +25 -0
  11. merge/resources/crm/types/remote_field_remote_field_class.py +7 -0
  12. merge/resources/ticketing/__init__.py +8 -0
  13. merge/resources/ticketing/types/__init__.py +8 -0
  14. merge/resources/ticketing/types/remote_field.py +3 -3
  15. merge/resources/ticketing/types/remote_field_class.py +6 -5
  16. merge/resources/ticketing/types/remote_field_class_field_choices_item.py +25 -0
  17. merge/resources/ticketing/types/remote_field_class_field_format.py +7 -0
  18. merge/resources/ticketing/types/remote_field_class_field_type.py +7 -0
  19. merge/resources/ticketing/types/remote_field_remote_field_class.py +7 -0
  20. {mergepythonclient-0.2.2.dist-info → mergepythonclient-0.2.4.dist-info}/METADATA +1 -1
  21. {mergepythonclient-0.2.2.dist-info → mergepythonclient-0.2.4.dist-info}/RECORD +23 -14
  22. {mergepythonclient-0.2.2.dist-info → mergepythonclient-0.2.4.dist-info}/LICENSE.md +0 -0
  23. {mergepythonclient-0.2.2.dist-info → mergepythonclient-0.2.4.dist-info}/WHEEL +0 -0
@@ -16,7 +16,7 @@ class BaseClientWrapper:
16
16
  headers: typing.Dict[str, str] = {
17
17
  "X-Fern-Language": "Python",
18
18
  "X-Fern-SDK-Name": "MergePythonClient",
19
- "X-Fern-SDK-Version": "0.2.2",
19
+ "X-Fern-SDK-Version": "0.2.4",
20
20
  }
21
21
  if self._account_token is not None:
22
22
  headers["X-Account-Token"] = self._account_token
@@ -169,10 +169,15 @@ from .types import (
169
169
  RemoteData,
170
170
  RemoteField,
171
171
  RemoteFieldClass,
172
+ RemoteFieldClassFieldChoicesItem,
173
+ RemoteFieldClassFieldFormat,
174
+ RemoteFieldClassFieldType,
172
175
  RemoteFieldClassForCustomObjectClass,
176
+ RemoteFieldClassForCustomObjectClassFieldChoicesItem,
173
177
  RemoteFieldClassForCustomObjectClassFieldFormat,
174
178
  RemoteFieldClassForCustomObjectClassFieldType,
175
179
  RemoteFieldClassForCustomObjectClassItemSchema,
180
+ RemoteFieldRemoteFieldClass,
176
181
  RemoteFieldRequest,
177
182
  RemoteFieldRequestRemoteFieldClass,
178
183
  RemoteKey,
@@ -403,10 +408,15 @@ __all__ = [
403
408
  "RemoteData",
404
409
  "RemoteField",
405
410
  "RemoteFieldClass",
411
+ "RemoteFieldClassFieldChoicesItem",
412
+ "RemoteFieldClassFieldFormat",
413
+ "RemoteFieldClassFieldType",
406
414
  "RemoteFieldClassForCustomObjectClass",
415
+ "RemoteFieldClassForCustomObjectClassFieldChoicesItem",
407
416
  "RemoteFieldClassForCustomObjectClassFieldFormat",
408
417
  "RemoteFieldClassForCustomObjectClassFieldType",
409
418
  "RemoteFieldClassForCustomObjectClassItemSchema",
419
+ "RemoteFieldRemoteFieldClass",
410
420
  "RemoteFieldRequest",
411
421
  "RemoteFieldRequestRemoteFieldClass",
412
422
  "RemoteKey",
@@ -168,10 +168,17 @@ from .reason_enum import ReasonEnum
168
168
  from .remote_data import RemoteData
169
169
  from .remote_field import RemoteField
170
170
  from .remote_field_class import RemoteFieldClass
171
+ from .remote_field_class_field_choices_item import RemoteFieldClassFieldChoicesItem
172
+ from .remote_field_class_field_format import RemoteFieldClassFieldFormat
173
+ from .remote_field_class_field_type import RemoteFieldClassFieldType
171
174
  from .remote_field_class_for_custom_object_class import RemoteFieldClassForCustomObjectClass
175
+ from .remote_field_class_for_custom_object_class_field_choices_item import (
176
+ RemoteFieldClassForCustomObjectClassFieldChoicesItem,
177
+ )
172
178
  from .remote_field_class_for_custom_object_class_field_format import RemoteFieldClassForCustomObjectClassFieldFormat
173
179
  from .remote_field_class_for_custom_object_class_field_type import RemoteFieldClassForCustomObjectClassFieldType
174
180
  from .remote_field_class_for_custom_object_class_item_schema import RemoteFieldClassForCustomObjectClassItemSchema
181
+ from .remote_field_remote_field_class import RemoteFieldRemoteFieldClass
175
182
  from .remote_field_request import RemoteFieldRequest
176
183
  from .remote_field_request_remote_field_class import RemoteFieldRequestRemoteFieldClass
177
184
  from .remote_key import RemoteKey
@@ -370,10 +377,15 @@ __all__ = [
370
377
  "RemoteData",
371
378
  "RemoteField",
372
379
  "RemoteFieldClass",
380
+ "RemoteFieldClassFieldChoicesItem",
381
+ "RemoteFieldClassFieldFormat",
382
+ "RemoteFieldClassFieldType",
373
383
  "RemoteFieldClassForCustomObjectClass",
384
+ "RemoteFieldClassForCustomObjectClassFieldChoicesItem",
374
385
  "RemoteFieldClassForCustomObjectClassFieldFormat",
375
386
  "RemoteFieldClassForCustomObjectClassFieldType",
376
387
  "RemoteFieldClassForCustomObjectClassItemSchema",
388
+ "RemoteFieldRemoteFieldClass",
377
389
  "RemoteFieldRequest",
378
390
  "RemoteFieldRequestRemoteFieldClass",
379
391
  "RemoteKey",
@@ -6,12 +6,12 @@ import typing
6
6
  import pydantic
7
7
 
8
8
  from ....core.datetime_utils import serialize_datetime
9
- from .remote_field_class import RemoteFieldClass
9
+ from .remote_field_remote_field_class import RemoteFieldRemoteFieldClass
10
10
 
11
11
 
12
12
  class RemoteField(pydantic.BaseModel):
13
- remote_field_class: RemoteFieldClass
14
- value: typing.Optional[typing.Dict[str, typing.Any]]
13
+ remote_field_class: RemoteFieldRemoteFieldClass
14
+ value: typing.Optional[typing.Any]
15
15
 
16
16
  def json(self, **kwargs: typing.Any) -> str:
17
17
  kwargs_with_defaults: typing.Any = {"by_alias": True, "exclude_unset": True, **kwargs}
@@ -6,9 +6,10 @@ import typing
6
6
  import pydantic
7
7
 
8
8
  from ....core.datetime_utils import serialize_datetime
9
- from .field_format_enum import FieldFormatEnum
10
- from .field_type_enum import FieldTypeEnum
11
9
  from .item_schema import ItemSchema
10
+ from .remote_field_class_field_choices_item import RemoteFieldClassFieldChoicesItem
11
+ from .remote_field_class_field_format import RemoteFieldClassFieldFormat
12
+ from .remote_field_class_field_type import RemoteFieldClassFieldType
12
13
 
13
14
 
14
15
  class RemoteFieldClass(pydantic.BaseModel):
@@ -18,9 +19,9 @@ class RemoteFieldClass(pydantic.BaseModel):
18
19
  description: typing.Optional[str]
19
20
  is_custom: typing.Optional[bool]
20
21
  is_required: typing.Optional[bool]
21
- field_type: typing.Optional[FieldTypeEnum]
22
- field_format: typing.Optional[FieldFormatEnum]
23
- field_choices: typing.Optional[typing.List[str]]
22
+ field_type: typing.Optional[RemoteFieldClassFieldType]
23
+ field_format: typing.Optional[RemoteFieldClassFieldFormat]
24
+ field_choices: typing.Optional[typing.List[RemoteFieldClassFieldChoicesItem]]
24
25
  item_schema: typing.Optional[ItemSchema]
25
26
 
26
27
  def json(self, **kwargs: typing.Any) -> str:
@@ -0,0 +1,25 @@
1
+ # This file was auto-generated by Fern from our API Definition.
2
+
3
+ import datetime as dt
4
+ import typing
5
+
6
+ import pydantic
7
+
8
+ from ....core.datetime_utils import serialize_datetime
9
+
10
+
11
+ class RemoteFieldClassFieldChoicesItem(pydantic.BaseModel):
12
+ value: typing.Optional[typing.Any]
13
+ display_name: typing.Optional[str]
14
+
15
+ def json(self, **kwargs: typing.Any) -> str:
16
+ kwargs_with_defaults: typing.Any = {"by_alias": True, "exclude_unset": True, **kwargs}
17
+ return super().json(**kwargs_with_defaults)
18
+
19
+ def dict(self, **kwargs: typing.Any) -> typing.Dict[str, typing.Any]:
20
+ kwargs_with_defaults: typing.Any = {"by_alias": True, "exclude_unset": True, **kwargs}
21
+ return super().dict(**kwargs_with_defaults)
22
+
23
+ class Config:
24
+ frozen = True
25
+ json_encoders = {dt.datetime: serialize_datetime}
@@ -0,0 +1,7 @@
1
+ # This file was auto-generated by Fern from our API Definition.
2
+
3
+ import typing
4
+
5
+ from .field_format_enum import FieldFormatEnum
6
+
7
+ RemoteFieldClassFieldFormat = typing.Union[FieldFormatEnum, str]
@@ -0,0 +1,7 @@
1
+ # This file was auto-generated by Fern from our API Definition.
2
+
3
+ import typing
4
+
5
+ from .field_type_enum import FieldTypeEnum
6
+
7
+ RemoteFieldClassFieldType = typing.Union[FieldTypeEnum, str]
@@ -6,6 +6,9 @@ import typing
6
6
  import pydantic
7
7
 
8
8
  from ....core.datetime_utils import serialize_datetime
9
+ from .remote_field_class_for_custom_object_class_field_choices_item import (
10
+ RemoteFieldClassForCustomObjectClassFieldChoicesItem,
11
+ )
9
12
  from .remote_field_class_for_custom_object_class_field_format import RemoteFieldClassForCustomObjectClassFieldFormat
10
13
  from .remote_field_class_for_custom_object_class_field_type import RemoteFieldClassForCustomObjectClassFieldType
11
14
  from .remote_field_class_for_custom_object_class_item_schema import RemoteFieldClassForCustomObjectClassItemSchema
@@ -18,7 +21,7 @@ class RemoteFieldClassForCustomObjectClass(pydantic.BaseModel):
18
21
  is_required: typing.Optional[bool]
19
22
  field_type: typing.Optional[RemoteFieldClassForCustomObjectClassFieldType]
20
23
  field_format: typing.Optional[RemoteFieldClassForCustomObjectClassFieldFormat]
21
- field_choices: typing.Optional[typing.List[typing.Optional[str]]]
24
+ field_choices: typing.Optional[typing.List[RemoteFieldClassForCustomObjectClassFieldChoicesItem]]
22
25
  item_schema: typing.Optional[RemoteFieldClassForCustomObjectClassItemSchema]
23
26
  modified_at: typing.Optional[dt.datetime] = pydantic.Field(
24
27
  description="This is the datetime that this object was last updated by Merge"
@@ -0,0 +1,25 @@
1
+ # This file was auto-generated by Fern from our API Definition.
2
+
3
+ import datetime as dt
4
+ import typing
5
+
6
+ import pydantic
7
+
8
+ from ....core.datetime_utils import serialize_datetime
9
+
10
+
11
+ class RemoteFieldClassForCustomObjectClassFieldChoicesItem(pydantic.BaseModel):
12
+ value: typing.Optional[typing.Any]
13
+ display_name: typing.Optional[str]
14
+
15
+ def json(self, **kwargs: typing.Any) -> str:
16
+ kwargs_with_defaults: typing.Any = {"by_alias": True, "exclude_unset": True, **kwargs}
17
+ return super().json(**kwargs_with_defaults)
18
+
19
+ def dict(self, **kwargs: typing.Any) -> typing.Dict[str, typing.Any]:
20
+ kwargs_with_defaults: typing.Any = {"by_alias": True, "exclude_unset": True, **kwargs}
21
+ return super().dict(**kwargs_with_defaults)
22
+
23
+ class Config:
24
+ frozen = True
25
+ json_encoders = {dt.datetime: serialize_datetime}
@@ -0,0 +1,7 @@
1
+ # This file was auto-generated by Fern from our API Definition.
2
+
3
+ import typing
4
+
5
+ from .remote_field_class import RemoteFieldClass
6
+
7
+ RemoteFieldRemoteFieldClass = typing.Union[str, RemoteFieldClass]
@@ -93,6 +93,10 @@ from .types import (
93
93
  RemoteData,
94
94
  RemoteField,
95
95
  RemoteFieldClass,
96
+ RemoteFieldClassFieldChoicesItem,
97
+ RemoteFieldClassFieldFormat,
98
+ RemoteFieldClassFieldType,
99
+ RemoteFieldRemoteFieldClass,
96
100
  RemoteFieldRequest,
97
101
  RemoteFieldRequestRemoteFieldClass,
98
102
  RemoteKey,
@@ -265,6 +269,10 @@ __all__ = [
265
269
  "RemoteData",
266
270
  "RemoteField",
267
271
  "RemoteFieldClass",
272
+ "RemoteFieldClassFieldChoicesItem",
273
+ "RemoteFieldClassFieldFormat",
274
+ "RemoteFieldClassFieldType",
275
+ "RemoteFieldRemoteFieldClass",
268
276
  "RemoteFieldRequest",
269
277
  "RemoteFieldRequestRemoteFieldClass",
270
278
  "RemoteKey",
@@ -92,6 +92,10 @@ from .projects_users_list_request_expand import ProjectsUsersListRequestExpand
92
92
  from .remote_data import RemoteData
93
93
  from .remote_field import RemoteField
94
94
  from .remote_field_class import RemoteFieldClass
95
+ from .remote_field_class_field_choices_item import RemoteFieldClassFieldChoicesItem
96
+ from .remote_field_class_field_format import RemoteFieldClassFieldFormat
97
+ from .remote_field_class_field_type import RemoteFieldClassFieldType
98
+ from .remote_field_remote_field_class import RemoteFieldRemoteFieldClass
95
99
  from .remote_field_request import RemoteFieldRequest
96
100
  from .remote_field_request_remote_field_class import RemoteFieldRequestRemoteFieldClass
97
101
  from .remote_key import RemoteKey
@@ -236,6 +240,10 @@ __all__ = [
236
240
  "RemoteData",
237
241
  "RemoteField",
238
242
  "RemoteFieldClass",
243
+ "RemoteFieldClassFieldChoicesItem",
244
+ "RemoteFieldClassFieldFormat",
245
+ "RemoteFieldClassFieldType",
246
+ "RemoteFieldRemoteFieldClass",
239
247
  "RemoteFieldRequest",
240
248
  "RemoteFieldRequestRemoteFieldClass",
241
249
  "RemoteKey",
@@ -6,12 +6,12 @@ import typing
6
6
  import pydantic
7
7
 
8
8
  from ....core.datetime_utils import serialize_datetime
9
- from .remote_field_class import RemoteFieldClass
9
+ from .remote_field_remote_field_class import RemoteFieldRemoteFieldClass
10
10
 
11
11
 
12
12
  class RemoteField(pydantic.BaseModel):
13
- remote_field_class: RemoteFieldClass
14
- value: typing.Optional[typing.Dict[str, typing.Any]]
13
+ remote_field_class: RemoteFieldRemoteFieldClass
14
+ value: typing.Optional[typing.Any]
15
15
 
16
16
  def json(self, **kwargs: typing.Any) -> str:
17
17
  kwargs_with_defaults: typing.Any = {"by_alias": True, "exclude_unset": True, **kwargs}
@@ -6,9 +6,10 @@ import typing
6
6
  import pydantic
7
7
 
8
8
  from ....core.datetime_utils import serialize_datetime
9
- from .field_format_enum import FieldFormatEnum
10
- from .field_type_enum import FieldTypeEnum
11
9
  from .item_schema import ItemSchema
10
+ from .remote_field_class_field_choices_item import RemoteFieldClassFieldChoicesItem
11
+ from .remote_field_class_field_format import RemoteFieldClassFieldFormat
12
+ from .remote_field_class_field_type import RemoteFieldClassFieldType
12
13
 
13
14
 
14
15
  class RemoteFieldClass(pydantic.BaseModel):
@@ -18,9 +19,9 @@ class RemoteFieldClass(pydantic.BaseModel):
18
19
  description: typing.Optional[str]
19
20
  is_custom: typing.Optional[bool]
20
21
  is_required: typing.Optional[bool]
21
- field_type: typing.Optional[FieldTypeEnum]
22
- field_format: typing.Optional[FieldFormatEnum]
23
- field_choices: typing.Optional[typing.List[str]]
22
+ field_type: typing.Optional[RemoteFieldClassFieldType]
23
+ field_format: typing.Optional[RemoteFieldClassFieldFormat]
24
+ field_choices: typing.Optional[typing.List[RemoteFieldClassFieldChoicesItem]]
24
25
  item_schema: typing.Optional[ItemSchema]
25
26
 
26
27
  def json(self, **kwargs: typing.Any) -> str:
@@ -0,0 +1,25 @@
1
+ # This file was auto-generated by Fern from our API Definition.
2
+
3
+ import datetime as dt
4
+ import typing
5
+
6
+ import pydantic
7
+
8
+ from ....core.datetime_utils import serialize_datetime
9
+
10
+
11
+ class RemoteFieldClassFieldChoicesItem(pydantic.BaseModel):
12
+ value: typing.Optional[typing.Any]
13
+ display_name: typing.Optional[str]
14
+
15
+ def json(self, **kwargs: typing.Any) -> str:
16
+ kwargs_with_defaults: typing.Any = {"by_alias": True, "exclude_unset": True, **kwargs}
17
+ return super().json(**kwargs_with_defaults)
18
+
19
+ def dict(self, **kwargs: typing.Any) -> typing.Dict[str, typing.Any]:
20
+ kwargs_with_defaults: typing.Any = {"by_alias": True, "exclude_unset": True, **kwargs}
21
+ return super().dict(**kwargs_with_defaults)
22
+
23
+ class Config:
24
+ frozen = True
25
+ json_encoders = {dt.datetime: serialize_datetime}
@@ -0,0 +1,7 @@
1
+ # This file was auto-generated by Fern from our API Definition.
2
+
3
+ import typing
4
+
5
+ from .field_format_enum import FieldFormatEnum
6
+
7
+ RemoteFieldClassFieldFormat = typing.Union[str, FieldFormatEnum]
@@ -0,0 +1,7 @@
1
+ # This file was auto-generated by Fern from our API Definition.
2
+
3
+ import typing
4
+
5
+ from .field_type_enum import FieldTypeEnum
6
+
7
+ RemoteFieldClassFieldType = typing.Union[str, FieldTypeEnum]
@@ -0,0 +1,7 @@
1
+ # This file was auto-generated by Fern from our API Definition.
2
+
3
+ import typing
4
+
5
+ from .remote_field_class import RemoteFieldClass
6
+
7
+ RemoteFieldRemoteFieldClass = typing.Union[str, RemoteFieldClass]
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: mergepythonclient
3
- Version: 0.2.2
3
+ Version: 0.2.4
4
4
  Summary:
5
5
  Requires-Python: >=3.7,<4.0
6
6
  Classifier: Programming Language :: Python :: 3
@@ -2,7 +2,7 @@ merge/__init__.py,sha256=kCutiAeK1wG6JWNnryGRbPgG1_H9H8HY7gk1LkHwWHU,277
2
2
  merge/client.py,sha256=k1PDUYfgQOPPoz6xleAlKGt6dRF52-rhWya_iXe8uPg,2842
3
3
  merge/core/__init__.py,sha256=QJS3CJ2TYP2E1Tge0CS6Z7r8LTNzJHQVX1hD3558eP0,519
4
4
  merge/core/api_error.py,sha256=RE8LELok2QCjABadECTvtDp7qejA1VmINCh6TbqPwSE,426
5
- merge/core/client_wrapper.py,sha256=nYQjKa-o8PlSWp2qY9-NyD5ML62EhWM3i2aCdXbcIKs,1655
5
+ merge/core/client_wrapper.py,sha256=y972JHOFElIIBoDhTSPTDTCTNHpymJyeNiPNkjDqmvc,1655
6
6
  merge/core/datetime_utils.py,sha256=nBys2IsYrhPdszxGKCNRPSOCwa-5DWOHG95FB8G9PKo,1047
7
7
  merge/core/jsonable_encoder.py,sha256=yHrx0C19n1H77G-GanO-HsFyBPVMlsJz7WffsHwXEVI,3710
8
8
  merge/core/remove_none_from_dict.py,sha256=8m91FC3YuVem0Gm9_sXhJ2tGvP33owJJdrqCLEdowGw,330
@@ -626,7 +626,7 @@ merge/resources/ats/types/veteran_status_enum.py,sha256=SiiRJPvP11x6q2EWojgvD8ni
626
626
  merge/resources/ats/types/visibility_enum.py,sha256=c2n5A9Y267-9PpEqpNZaSCL-_-do51MdUJpTvtu-JC0,760
627
627
  merge/resources/ats/types/warning_validation_problem.py,sha256=EWFbHYkaLM65xitbGEbzk4dK504kqziiLAFaeCvkza8,915
628
628
  merge/resources/ats/types/webhook_receiver.py,sha256=723DFZBDkBj8WJ2fInCYF_05lVnJTRudvdtqUcuZ_KE,802
629
- merge/resources/crm/__init__.py,sha256=U2pXGdp1Lcxuejmn1_n-M_5AhdT-IPACg038S1cc-qU,11786
629
+ merge/resources/crm/__init__.py,sha256=1YlaobcUMWj02tyCQmYQWeHjrgGagxZ7tVsct6kpoyc,12182
630
630
  merge/resources/crm/client.py,sha256=zd1sbcBu1B5Pjj6i-WZ2F1hYzeTAcHD2pK41Ei8b6GU,10692
631
631
  merge/resources/crm/resources/__init__.py,sha256=TiX_TqExPFTb1RVabR-FXok8Hde8wF5yKW81Fa0jbTA,1192
632
632
  merge/resources/crm/resources/account_details/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
@@ -687,7 +687,7 @@ merge/resources/crm/resources/users/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRY
687
687
  merge/resources/crm/resources/users/client.py,sha256=k7Nym_WFNE9OeeAR6sAIdVrBMA_6i85SHklIct4-1cY,17892
688
688
  merge/resources/crm/resources/webhook_receivers/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
689
689
  merge/resources/crm/resources/webhook_receivers/client.py,sha256=ywIeRt5xNTzx2EDvASEP-4HOwxPJ1AFcS1XaE5M4ea4,5243
690
- merge/resources/crm/types/__init__.py,sha256=E9ahIoLsqgx1mk1XnV4lcZG5pn4qRUocAQwk2b3M8J4,16724
690
+ merge/resources/crm/types/__init__.py,sha256=EReT27wHVdZz_BwFi7T3BLYPViNrZEA0MG78l3eDAdg,17363
691
691
  merge/resources/crm/types/account.py,sha256=E3yAbwNA6c6UYi5zG4gge4Ce7PbTrPhfoQl47RVjcUg,2803
692
692
  merge/resources/crm/types/account_details.py,sha256=vx6IKZqpYio_HkY9bcje4h1d6D343YRxLdFAPB_yZQE,1483
693
693
  merge/resources/crm/types/account_details_and_actions.py,sha256=NRnHozK3tgfXvXCeWbZ5KqHmnF5q_MT7PBMCiB16B5Y,1900
@@ -854,12 +854,17 @@ merge/resources/crm/types/phone_number.py,sha256=MyTeG7xRYo5qEI1Llxu_zDrmwCjWCqh
854
854
  merge/resources/crm/types/phone_number_request.py,sha256=9g-V6KIEhYls8FW1Oc_4tYxj_IxaEt5KEG6Z5KctpIU,1309
855
855
  merge/resources/crm/types/reason_enum.py,sha256=_8cpQd1CZP5n2v2a0zPKQHrMb8x2zZNFm-xeM-V0FFE,814
856
856
  merge/resources/crm/types/remote_data.py,sha256=GWKTaQ8vzPrIVnsFYQRk9zg2OE4ytRfOTUIIu4TkCaQ,802
857
- merge/resources/crm/types/remote_field.py,sha256=zBVDwumAiKBv3erpSXkB0_BbbTfiCB1C_FC6pasyi0c,880
858
- merge/resources/crm/types/remote_field_class.py,sha256=p1j1xVX7J2mlHkcfXDi2axkb9e5jcF48LySRQwnrXZg,1284
859
- merge/resources/crm/types/remote_field_class_for_custom_object_class.py,sha256=rTFYNFDYFvnz6_pZVuq7h_7seU7Xaw_zn9YsDZiW_9E,1730
857
+ merge/resources/crm/types/remote_field.py,sha256=WLsTK2H6SH572UsZz5grZWsTsAn31lIshN0lEoE7Fj8,897
858
+ merge/resources/crm/types/remote_field_class.py,sha256=3ApvmwWNiJ_6Ibvr3UmB1jILNhOsmIl-CvyEJJRfpMU,1473
859
+ merge/resources/crm/types/remote_field_class_field_choices_item.py,sha256=wTrwlJYQhAg_tH4mx8Byir0MJKs9jr3UqX7zWBPrcD0,832
860
+ merge/resources/crm/types/remote_field_class_field_format.py,sha256=SiD46GD6y9f5y1xOJ51_r7BZJBfsTjT4ChetGIzikEw,193
861
+ merge/resources/crm/types/remote_field_class_field_type.py,sha256=yoj_DEE3MenAnIe9ASAD9rb75dw6IOdgRif2rrMyVvw,185
862
+ merge/resources/crm/types/remote_field_class_for_custom_object_class.py,sha256=K5JBeYOiEf7pHSao7iK5c9icF-lWpR27IanIhGGyt88,1899
863
+ merge/resources/crm/types/remote_field_class_for_custom_object_class_field_choices_item.py,sha256=TGjlYFmUjo0soXpvXS6hJmPJPTplSeKvrDijW6PWiXE,852
860
864
  merge/resources/crm/types/remote_field_class_for_custom_object_class_field_format.py,sha256=mOLvgJ0iedsjIiSInJ-uNQ6M2cb_qjbOUPJZ2lAJbJ0,213
861
865
  merge/resources/crm/types/remote_field_class_for_custom_object_class_field_type.py,sha256=GtqLWPazfTTsYDRsg2A3w_OzBxv0aAOzmZNJbRG6VP8,205
862
866
  merge/resources/crm/types/remote_field_class_for_custom_object_class_item_schema.py,sha256=WIggHK3XToyfH1E5ll4oeEAuxE7KK4q-k-fnnUEKPZ4,911
867
+ merge/resources/crm/types/remote_field_remote_field_class.py,sha256=hO2WF1YOop9W_KViuHPjwdvK2sYjq8Wh43U87C9hEso,196
863
868
  merge/resources/crm/types/remote_field_request.py,sha256=N5sJGWPrHawAyeUDVH7QjLxMi4nNFWmicV_obrhLDE8,944
864
869
  merge/resources/crm/types/remote_field_request_remote_field_class.py,sha256=CF0MIbwvcvBlT3_Pw_KmUD8f5_JyOY8hn-ajehwOrlo,203
865
870
  merge/resources/crm/types/remote_key.py,sha256=YSBpK-N4nJ-FnpxtIXldbUdv1BhniDhIQ_F1NW9796k,986
@@ -1269,7 +1274,7 @@ merge/resources/hris/types/units_enum.py,sha256=XIZYjVmI4pBqviS_FDF9jQ4pJ8Nmn-K8
1269
1274
  merge/resources/hris/types/validation_problem_source.py,sha256=bXDELVNGedfF0Aq-Yfqlm9e7i8cej9ro4Pg-zSQSyRE,762
1270
1275
  merge/resources/hris/types/warning_validation_problem.py,sha256=EWFbHYkaLM65xitbGEbzk4dK504kqziiLAFaeCvkza8,915
1271
1276
  merge/resources/hris/types/webhook_receiver.py,sha256=723DFZBDkBj8WJ2fInCYF_05lVnJTRudvdtqUcuZ_KE,802
1272
- merge/resources/ticketing/__init__.py,sha256=vaw2sPgT9ckOpZhfz6QWnjUQwhoEsN4H0o-a-2vFAwo,8576
1277
+ merge/resources/ticketing/__init__.py,sha256=0Qg7G2lc5FZ9zGI_JbfJ81jhKKspxYh55Y3Ugq_bi5g,8854
1273
1278
  merge/resources/ticketing/client.py,sha256=8jhZgGClufFubf7YW3uY2hva1MmrsRUIdT7qyou60Ko,9123
1274
1279
  merge/resources/ticketing/resources/__init__.py,sha256=pZW5QH4ROJGPlfppIBPIRT1CZRjklE6YvvphNV_vvVg,994
1275
1280
  merge/resources/ticketing/resources/account_details/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
@@ -1322,7 +1327,7 @@ merge/resources/ticketing/resources/users/__init__.py,sha256=FTtvy8EDg9nNNg9WCat
1322
1327
  merge/resources/ticketing/resources/users/client.py,sha256=Wx21tZMhZO3dIwljC1vNDDkkJ_JLiHbvQqOh1hSPOG4,11536
1323
1328
  merge/resources/ticketing/resources/webhook_receivers/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
1324
1329
  merge/resources/ticketing/resources/webhook_receivers/client.py,sha256=BMdl-Gdndl65MQJg5qdo6eK_NpMtIgMQ_U0HFP2UVM0,5267
1325
- merge/resources/ticketing/types/__init__.py,sha256=naKwDcZQhQBGJKjFWCXLZvnStrAGD76mnit1QekN3ek,11981
1330
+ merge/resources/ticketing/types/__init__.py,sha256=1ZdF-Z6Z7N1CfMIQp78gFcOIPDn3sxEVcShlHEEPMD8,12423
1326
1331
  merge/resources/ticketing/types/access_level_enum.py,sha256=-fDX1Px7mp2AExHyOr9cnsQbFfW1qSw2ynTfu0sq8jE,743
1327
1332
  merge/resources/ticketing/types/account.py,sha256=4GvFJXgz3ojNdk5UzDDU_PDNZW_9EaxVjoBPgJQFxxU,1887
1328
1333
  merge/resources/ticketing/types/account_details.py,sha256=vx6IKZqpYio_HkY9bcje4h1d6D343YRxLdFAPB_yZQE,1483
@@ -1413,8 +1418,12 @@ merge/resources/ticketing/types/priority_enum.py,sha256=acnkqUZdEKYNA109BL65Mq-k
1413
1418
  merge/resources/ticketing/types/project.py,sha256=gkvkEPSdZBIJCsE38VbwiMfYiz7PUC_2swSHC-e2R3k,1712
1414
1419
  merge/resources/ticketing/types/projects_users_list_request_expand.py,sha256=OLtNd0uNab7xwrGpL3_BZsMZqwIpJEjRt9MahqSmdvs,715
1415
1420
  merge/resources/ticketing/types/remote_data.py,sha256=GWKTaQ8vzPrIVnsFYQRk9zg2OE4ytRfOTUIIu4TkCaQ,802
1416
- merge/resources/ticketing/types/remote_field.py,sha256=zBVDwumAiKBv3erpSXkB0_BbbTfiCB1C_FC6pasyi0c,880
1417
- merge/resources/ticketing/types/remote_field_class.py,sha256=p1j1xVX7J2mlHkcfXDi2axkb9e5jcF48LySRQwnrXZg,1284
1421
+ merge/resources/ticketing/types/remote_field.py,sha256=WLsTK2H6SH572UsZz5grZWsTsAn31lIshN0lEoE7Fj8,897
1422
+ merge/resources/ticketing/types/remote_field_class.py,sha256=3ApvmwWNiJ_6Ibvr3UmB1jILNhOsmIl-CvyEJJRfpMU,1473
1423
+ merge/resources/ticketing/types/remote_field_class_field_choices_item.py,sha256=wTrwlJYQhAg_tH4mx8Byir0MJKs9jr3UqX7zWBPrcD0,832
1424
+ merge/resources/ticketing/types/remote_field_class_field_format.py,sha256=PR-0fMwHrlYE34w2JhFMjoPyk-LuwcAmzzVRt3eF2mM,193
1425
+ merge/resources/ticketing/types/remote_field_class_field_type.py,sha256=1lWymJnLa1XuEzd3rMlAb1S5KmTtqm8Z24-EGqby9oQ,185
1426
+ merge/resources/ticketing/types/remote_field_remote_field_class.py,sha256=hO2WF1YOop9W_KViuHPjwdvK2sYjq8Wh43U87C9hEso,196
1418
1427
  merge/resources/ticketing/types/remote_field_request.py,sha256=N5sJGWPrHawAyeUDVH7QjLxMi4nNFWmicV_obrhLDE8,944
1419
1428
  merge/resources/ticketing/types/remote_field_request_remote_field_class.py,sha256=CF0MIbwvcvBlT3_Pw_KmUD8f5_JyOY8hn-ajehwOrlo,203
1420
1429
  merge/resources/ticketing/types/remote_key.py,sha256=YSBpK-N4nJ-FnpxtIXldbUdv1BhniDhIQ_F1NW9796k,986
@@ -1465,7 +1474,7 @@ merge/resources/ticketing/types/users_retrieve_request_expand.py,sha256=01JMChGj
1465
1474
  merge/resources/ticketing/types/validation_problem_source.py,sha256=bXDELVNGedfF0Aq-Yfqlm9e7i8cej9ro4Pg-zSQSyRE,762
1466
1475
  merge/resources/ticketing/types/warning_validation_problem.py,sha256=EWFbHYkaLM65xitbGEbzk4dK504kqziiLAFaeCvkza8,915
1467
1476
  merge/resources/ticketing/types/webhook_receiver.py,sha256=723DFZBDkBj8WJ2fInCYF_05lVnJTRudvdtqUcuZ_KE,802
1468
- mergepythonclient-0.2.2.dist-info/LICENSE.md,sha256=WKO7xLnLSUInldiq5i25eVqKAjwIUKenaS4Cgir2Iuw,3275
1469
- mergepythonclient-0.2.2.dist-info/METADATA,sha256=38RNsxmr9mAmm-ThUgeO7LytXJDRbJqUzGlEfW4e7HI,5989
1470
- mergepythonclient-0.2.2.dist-info/WHEEL,sha256=Zb28QaM1gQi8f4VCBhsUklF61CTlNYfs9YAZn-TOGFk,88
1471
- mergepythonclient-0.2.2.dist-info/RECORD,,
1477
+ mergepythonclient-0.2.4.dist-info/LICENSE.md,sha256=WKO7xLnLSUInldiq5i25eVqKAjwIUKenaS4Cgir2Iuw,3275
1478
+ mergepythonclient-0.2.4.dist-info/METADATA,sha256=u_r-QCab-cdTRkXD7UeJI0CMudaAxuCbN5SMyRuAmVo,5989
1479
+ mergepythonclient-0.2.4.dist-info/WHEEL,sha256=Zb28QaM1gQi8f4VCBhsUklF61CTlNYfs9YAZn-TOGFk,88
1480
+ mergepythonclient-0.2.4.dist-info/RECORD,,