Skip to content

Releases: merge-api/merge-python-client

v2.6.2

30 Mar 15:50
872f70d

Choose a tag to compare

Merge Python SDK Release Notes - Version [2.6.2]

Improvements

  • Accounting: Added quantity and unit_price fields to ExpenseLine and ExpenseLineRequest models
  • File Storage: Added size field to Drive model

v2.6.1

18 Dec 16:32
a6e1c6a

Choose a tag to compare

Merge Python SDK Release Notes - Version [2.6.1]

This release includes support for all of the latest updates to the Merge API. For more information, see https://www.merge.dev/changelog

v2.6.0

21 Nov 03:31
add67ed

Choose a tag to compare

Merge Python SDK Release Notes - Version [2.6.0]

This release includes support for all of the latest updates to the Merge API. For more information, see https://www.merge.dev/changelog

v2.5.0

31 Oct 17:00
b15443c

Choose a tag to compare

Merge Python SDK Release Notes - Version [2.5.0]

This release includes support for all of the latest updates to the Merge API. For more information, see https://www.merge.dev/changelog

v2.4.0

25 Sep 16:28
fcae4cf

Choose a tag to compare

Merge Python SDK Release Notes - Version [2.4.0]

  • Knowledge Base category now included in the SDK!

v2.3.2

23 Sep 18:07
bcdd1f7

Choose a tag to compare

Merge Python SDK Release Notes - Version [2.3.2]

Improvements

  • Adds the following fields to ticketing collection collection_url, remote_created_at and remote_updated_at
  • Adds a name query param to ticketing collection
  • Adds a email_address query param to ticketing contact
  • Add a name query param to ticketing ticket
  • Add employee_id and employee_number to hris employee and dependent

v2.3.1

15 Sep 15:29
e913fcb

Choose a tag to compare

Merge Python SDK Release Notes - Version [2.3.1]

Improvements

  • This release addresses an issue with passthrough when using the Async client AsyncMerge where calls to the passthrough client were failing with the following error name 'resources_ticketing_resources_passthrough_client_AsyncPassthroughClient' is not defined.

v2.3.0

04 Sep 22:41
ba6d743

Choose a tag to compare

Merge Python SDK Release Notes - Version [2.3.0]

Improvements

  • This release adds lazy loading of imports to greatly reduce the memory footprint of the SDK. Note the first usage of a client will have additional latency.

v2.2.0

03 Sep 22:55
ec265db

Choose a tag to compare

Merge Python SDK Release Notes - Version [2.2.0]

This release includes support for all of the latest updates to the Merge API. For more information, see https://www.merge.dev/changelog

v2.1.1

21 Jul 23:22
799d9b4

Choose a tag to compare

Merge Python SDK Release Notes - Version [2.1.1]

Changes

  • Update nested object return type
    Dictionaries of objects, or lists of strings and objects will now be typed with the object. For example for the following code snippet:
import merge
from merge.client import Merge

merge_client = merge.Merge(api_key=api_key, account_token=account_token)
response = merge_client.filestorage.files.list(page_size=1)
assert response.results
file = response.results[0]
permission = file.permissions[0]
  • The type of permission will be <class 'merge.resources.filestorage.types.permission.Permission'> instead of <class 'dict'>