Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "blindpay"
version = "2.1.0"
version = "2.2.0"
description = "Official Python SDK for the Blindpay API — Global payments infrastructure"
readme = "README.md"
authors = [{ name = "Blindpay", email = "alves@blindpay.com" }]
Expand Down
6 changes: 5 additions & 1 deletion src/blindpay/__init__.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
__version__ = "2.1.0"
__version__ = "2.2.0"

from ._internal.exceptions import BlindPayError
from .client import BlindPay, BlindPaySync
from .types import (
AccountClass,
ActorType,
BankAccountType,
BankingPartner,
BlindpayApiResponse,
Expand All @@ -14,6 +15,7 @@
CurrencyType,
ErrorResponse,
Network,
Operation,
PaginationMetadata,
PaginationParams,
PaymentMethod,
Expand All @@ -34,12 +36,14 @@
"BlindPaySync",
"BlindPayError",
"AccountClass",
"ActorType",
"BankAccountType",
"BankingPartner",
"Country",
"Currency",
"CurrencyType",
"Network",
"Operation",
"PaymentMethod",
"Rail",
"RecipientRelationship",
Expand Down
2 changes: 1 addition & 1 deletion src/blindpay/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
from blindpay.resources.wallets.offramp import OfframpWalletsResource, OfframpWalletsResourceSync
from blindpay.resources.webhooks.webhooks import WebhookEndpointsResource, WebhookEndpointsResourceSync

__version__ = "2.1.0"
__version__ = "2.2.0"

T = TypeVar("T")

Expand Down
2 changes: 1 addition & 1 deletion src/blindpay/resources/payins/quotes.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
StablecoinToken,
)

PaymentMethod = Literal["ach", "wire", "pix", "spei"]
PaymentMethod = Literal["ach", "wire", "pix", "spei", "rtp"]


class PayerRules(TypedDict, total=False):
Expand Down
10 changes: 7 additions & 3 deletions src/blindpay/types.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,15 +39,15 @@ class BlindpaySuccessResponse(TypedDict, Generic[T]):
"solana_devnet",
]

StablecoinToken = Literal["USDC", "USDT", "USDB"]
StablecoinToken = Literal["USDB"]

TransactionDocumentType = Literal[
"invoice", "purchase_order", "delivery_slip", "contract", "customs_declaration", "bill_of_lading", "others"
]

BankAccountType = Literal["checking", "savings"]

Currency = Literal["USDC", "USDT", "USDB", "BRL", "USD", "MXN", "COP", "ARS"]
Currency = Literal["USDB", "BRL", "USD", "MXN", "COP", "ARS"]

Rail = Literal[
"wire", "ach", "pix", "pix_safe", "spei_bitso", "transfers_bitso", "ach_cop_bitso", "international_swift", "rtp"
Expand Down Expand Up @@ -380,4 +380,8 @@ class TrackingPartnerFee(TypedDict):

BankingPartner = Literal["cfsb", "citi", "hsbc", "jpmorgan"]

PaymentMethod = Literal["ach", "wire", "pix", "spei", "transfers", "pse", "international_swift"]
PaymentMethod = Literal["ach", "wire", "pix", "spei", "transfers", "pse", "international_swift", "rtp"]

ActorType = Literal["api_key", "user"]

Operation = Literal["create", "delete", "update"]
Loading