mergepythonclient 2.6.1__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.
@@ -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.1",
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.1",
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:
@@ -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
@@ -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/).
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: mergepythonclient
3
- Version: 2.6.1
3
+ Version: 2.6.2
4
4
  Summary:
5
5
  Requires-Python: >=3.8,<4.0
6
6
  Classifier: Intended Audience :: Developers
@@ -288,3 +288,5 @@ while response.next is not None:
288
288
 
289
289
 
290
290
 
291
+
292
+
@@ -2,7 +2,7 @@ merge/__init__.py,sha256=K3KxH-H0yK6Mp-fSHYH_I6TxE3EquIdXUOeclJm6yYg,1697
2
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=RJ__5g8UPoNTuC6rMYV1GEGBfMFNwqyrIP-hoEqSSPo,3096
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
@@ -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=-byfMRjCwIYfLHFJoTcV5YFgIP7OYTMXgEQxKJejLbQ,14202
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=CurXFn2-8mL9hoFQVjvSGz0x4vdj4ZyLEL5-J9ck-YM,13967
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
@@ -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=NYZ49KG8hBTDy2hjX3A65yA2NbScsfkGKxPMw2kjzTs,2236
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
@@ -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.1.dist-info/LICENSE.md,sha256=WKO7xLnLSUInldiq5i25eVqKAjwIUKenaS4Cgir2Iuw,3275
2686
- mergepythonclient-2.6.1.dist-info/METADATA,sha256=ZOPZske7tphDGl4V4OaXJLRmt0UhNG-QiJZEYqXmP_g,7902
2687
- mergepythonclient-2.6.1.dist-info/WHEEL,sha256=Zb28QaM1gQi8f4VCBhsUklF61CTlNYfs9YAZn-TOGFk,88
2688
- mergepythonclient-2.6.1.dist-info/RECORD,,
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,,