Skip to content

Releases: fintoc-com/fintoc-python

2.10.0

11 Jul 20:36
3c5ec9d

Choose a tag to compare

Version 2.10.0 ๐ŸŽ‰

Additions โž•

  • Added expire functionality to payment intents (cash payments only)

Changes โž–

[None]

Fixes ๐Ÿ›

[None]

2.9.0

25 Jun 14:01
a401636

Choose a tag to compare

Version 2.9.0 ๐ŸŽ‰

Additions โž•

  • Add return method to transfer API

Changes โž–

[None]

Fixes ๐Ÿ›

[None]

2.8.0

17 Jun 17:53
521537c

Choose a tag to compare

Version 2.8.0 ๐ŸŽ‰

Additions โž•

  • Add Checkout Sessions resource API

Changes โž–

[None]

Fixes ๐Ÿ›

[None]

2.7.0

23 May 17:09
2ef3c9a

Choose a tag to compare

Version 2.7.0 ๐ŸŽ‰

Additions โž•

  • Add Account Verification resource API

Changes โž–

[None]

Fixes ๐Ÿ›

[None]

2.6.0

14 May 21:56
ba59cca

Choose a tag to compare

Version 2.6.0 ๐ŸŽ‰

Additions โž•

Changes โž–

  • Remove obsolete delete account number method

Fixes ๐Ÿ›

[None]

2.5.1

23 Apr 14:50
f3c95b5

Choose a tag to compare

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

17 Apr 19:47
469bc92

Choose a tag to compare

Version 2.5.0 ๐ŸŽ‰

Additions โž•

  • Add the WebhookSignature helper to allow users to verify the Fintoc-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, replace link.accounts.all() with client.accounts.all(link_token=1234).
  • Listing resources is now done using list() instead of all(). This change aligns the SDK better with our API documentation, where we consistently use list(). For backward compatibility, customers can still use all(), but they'll receive a warning prompting them to migrate to list().

Fixes ๐Ÿ›

[None]

2.4.1

08 Oct 20:16
2682dcc

Choose a tag to compare

Version 2.4.1 ๐ŸŽ‰

Fixes ๐Ÿ›

  • Fix non-HTTPStatusError exceptions in httpx, improving error handling.

2.4.0

09 Apr 21:48
2b46b63

Choose a tag to compare

Version 2.4.0 ๐ŸŽ‰

Additions โž•

  • You can now initialize the Fintoc client with an api_version attribute, where you can pass a specific Fintoc API version.

2.3.0

16 May 19:26
a5ae3a2

Choose a tag to compare

Version 2.3.0 ๐ŸŽ‰

Additions โž•

  • Create a Charges manager
  • Create a Subscription Intents manager
  • Add the Subscription manager to the base Fintoc object