Releases: fintoc-com/fintoc-python
Releases · fintoc-com/fintoc-python
2.7.0
2.6.0
Version 2.6.0 🎉
Additions ➕
Changes ➖
- Remove obsolete delete account number method
Fixes 🐛
[None]
2.5.1
Version 2.5.1 🎉
Fixes 🐛
- Generate the JWS signature using the raw request body instead of using the pre-serialized JSON payload.
2.5.0
Version 2.5.0 🎉
Additions ➕
- Add the
WebhookSignature
helper to allow users to verify theFintoc-Signature
header - Add Transfers product API, including a helper for generating the JWS Signature
- Allow users to set an Idempotency Key
Changes ➖
- Update poetry to version
2.1.2
- Improve resource efficiency by using only one instance of
httpx.Client
, instead of creating a client for every manager. - Resource managers have been deprecated. Instead, call endpoints directly in a way that mirrors our API usage.
For example, replacelink.accounts.all()
withclient.accounts.all(link_token=1234)
. - Listing resources is now done using
list()
instead ofall()
. This change aligns the SDK better with our API documentation, where we consistently uselist()
. For backward compatibility, customers can still useall()
, but they'll receive a warning prompting them to migrate tolist()
.
Fixes 🐛
[None]
2.4.1
Version 2.4.1 🎉
Fixes 🐛
- Fix non-
HTTPStatusError
exceptions inhttpx
, improving error handling.
2.4.0
Version 2.4.0 🎉
Additions ➕
- You can now initialize the
Fintoc
client with anapi_version
attribute, where you can pass a specific Fintoc API version.
2.3.0
Version 2.3.0 🎉
Additions ➕
- Create a Charges manager
- Create a Subscription Intents manager
- Add the Subscription manager to the base Fintoc object
2.2.2
Version 2.2.2 🎉
Fixes 🐛
- Datetimes are now parsed with or without miliseconds as a temporary fix while the API standardizes the format
2.2.1
Version 2.2.1
Changes ➖
- Date serialization has now the same format as the one coming directly from the API.
Fixes 🐛
- The SDK now no longer incorrectly parses strings into dates.
- The
dateutil
dependency was removed.
2.2.0
Version 2.2.0 🎉
Additions ➕
- Payment Intents are now supported through the
payment_intents
manager located on theFintoc
class 🎉