Latest Threat Research:SANDWORM_MODE: Shai-Hulud-Style npm Worm Hijacks CI Workflows and Poisons AI Toolchains.Details
Socket
Book a DemoInstallSign 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 - npm Package Compare versions

Comparing version
2.9.0
to
2.10.0
+6
-1
fintoc/managers/payment_intents_manager.py

@@ -11,2 +11,7 @@ """Module to hold the payment_intents manager."""

resource = "payment_intent"
methods = ["list", "get", "create"]
methods = ["list", "get", "create", "expire"]
def _expire(self, identifier, **kwargs):
"""Expire a payment intent."""
path = f"{self._build_path(**kwargs)}/{identifier}/expire"
return self._create(path_=path, **kwargs)
+1
-1
"""Module to hold the version utilities."""
version_info = (2, 9, 0)
version_info = (2, 10, 0)
__version__ = ".".join([str(x) for x in version_info])
Metadata-Version: 2.3
Name: fintoc
Version: 2.9.0
Version: 2.10.0
Summary: The official Python client for the Fintoc API.

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

[tool.poetry]
name = "fintoc"
version = "2.9.0"
version = "2.10.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>"]