- Integration with v3 version of the api
- API resources are under `SDK` and consistently organized into `create`, `get`, `list` and `delete`.
python
sdk.transactions.create(...)
sdk.account_holders.create(...)
- Auto-pagination is now supported for listing resources
python
for txn in sdk.transactions.list().auto_paginate():
...
- Request ID integration for easier debugging
- Easier session lifecycle management through `SDK(session=http_session)`
- Added support for new resources: `webhooks`
- Added support for missing resources: `account_holders`, `entities`, `rules`, `categories`