You're Invited:Meet the Socket Team at RSAC and BSidesSF 2026, March 23–26.RSVP
Socket
Book a DemoSign in
Socket

fintoc

Package Overview
Dependencies
Maintainers
2
Versions
34
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

fintoc - pypi Package Compare versions

Comparing version
2.16.0
to
2.17.0
+10
fintoc/managers/v2/payment_intents_manager.py
"""Module to hold the payment_intents manager."""
from fintoc.mixins import ManagerMixin
class PaymentIntentsManager(ManagerMixin):
"""Represents a payment_intents manager."""
resource = "payment_intent"
methods = ["list", "get", "create"]
# pylint: disable=duplicate-code
"""Module to hold the PaymentIntent resource."""
from fintoc.mixins import ResourceMixin
class PaymentIntent(ResourceMixin):
"""Represents a Fintoc Payment Intent."""
+4
-6

@@ -26,8 +26,5 @@ """

from fintoc.managers.v2 import CheckoutSessionsManager as CheckoutSessionsManagerV2
from fintoc.managers.v2 import (
CustomersManager,
EntitiesManager,
SimulateManager,
TransfersManager,
)
from fintoc.managers.v2 import CustomersManager, EntitiesManager
from fintoc.managers.v2 import PaymentIntentsManager as PaymentIntentsManagerV2
from fintoc.managers.v2 import SimulateManager, TransfersManager
from fintoc.version import __version__

@@ -90,1 +87,2 @@

)
self.payment_intents = PaymentIntentsManagerV2("/v2/payment_intents", client)
+1
-0

@@ -10,3 +10,4 @@ """Init file for the v2 managers module of the SDK."""

from .movements_manager import MovementsManager
from .payment_intents_manager import PaymentIntentsManager
from .simulate_manager import SimulateManager
from .transfers_manager import TransfersManager
"""Module to hold the version utilities."""
version_info = (2, 16, 0)
version_info = (2, 17, 0)
__version__ = ".".join([str(x) for x in version_info])
Metadata-Version: 2.3
Name: fintoc
Version: 2.16.0
Version: 2.17.0
Summary: The official Python client for the Fintoc API.

@@ -5,0 +5,0 @@ License: BSD-3-Clause

[tool.poetry]
name = "fintoc"
version = "2.16.0"
version = "2.17.0"
description = "The official Python client for the Fintoc API."

@@ -5,0 +5,0 @@ authors = ["Daniel Leal <daniel@fintoc.com>", "Nebil Kawas <nebil@uc.cl>"]