Releases: fintoc-com/fintoc-python
Releases ยท fintoc-com/fintoc-python
2.10.0
Version 2.10.0 ๐
Additions โ
- Added expire functionality to payment intents (cash payments only)
Changes โ
[None]
Fixes ๐
[None]
2.9.0
2.8.0
Version 2.8.0 ๐
Additions โ
- Add Checkout Sessions resource API
Changes โ
[None]
Fixes ๐
[None]
2.7.0
Version 2.7.0 ๐
Additions โ
- Add Account Verification resource API
Changes โ
[None]
Fixes ๐
[None]
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
WebhookSignaturehelper to allow users to verify theFintoc-Signatureheader - 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-
HTTPStatusErrorexceptions inhttpx, improving error handling.
2.4.0
Version 2.4.0 ๐
Additions โ
- You can now initialize the
Fintocclient with anapi_versionattribute, 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