Skip to content

Commit 8eabc99

Browse files
feat: sync SDK with API changes
1 parent e4db01a commit 8eabc99

5 files changed

Lines changed: 7 additions & 7 deletions

File tree

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "blindpay"
3-
version = "2.1.0"
3+
version = "2.2.0"
44
description = "Official Python SDK for the Blindpay API — Global payments infrastructure"
55
readme = "README.md"
66
authors = [{ name = "Blindpay", email = "[email protected]" }]

src/blindpay/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = "2.1.0"
1+
__version__ = "2.2.0"
22

33
from ._internal.exceptions import BlindPayError
44
from .client import BlindPay, BlindPaySync

src/blindpay/client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
from blindpay.resources.wallets.offramp import OfframpWalletsResource, OfframpWalletsResourceSync
4040
from blindpay.resources.webhooks.webhooks import WebhookEndpointsResource, WebhookEndpointsResourceSync
4141

42-
__version__ = "2.1.0"
42+
__version__ = "2.2.0"
4343

4444
T = TypeVar("T")
4545

src/blindpay/resources/payins/quotes.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
StablecoinToken,
1111
)
1212

13-
PaymentMethod = Literal["ach", "wire", "pix", "spei"]
13+
PaymentMethod = Literal["ach", "wire", "pix", "spei", "rtp"]
1414

1515

1616
class PayerRules(TypedDict, total=False):

src/blindpay/types.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,15 +39,15 @@ class BlindpaySuccessResponse(TypedDict, Generic[T]):
3939
"solana_devnet",
4040
]
4141

42-
StablecoinToken = Literal["USDC", "USDT", "USDB"]
42+
StablecoinToken = Literal["USDB"]
4343

4444
TransactionDocumentType = Literal[
4545
"invoice", "purchase_order", "delivery_slip", "contract", "customs_declaration", "bill_of_lading", "others"
4646
]
4747

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

50-
Currency = Literal["USDC", "USDT", "USDB", "BRL", "USD", "MXN", "COP", "ARS"]
50+
Currency = Literal["USDB", "BRL", "USD", "MXN", "COP", "ARS"]
5151

5252
Rail = Literal[
5353
"wire", "ach", "pix", "pix_safe", "spei_bitso", "transfers_bitso", "ach_cop_bitso", "international_swift", "rtp"
@@ -380,4 +380,4 @@ class TrackingPartnerFee(TypedDict):
380380

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

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

0 commit comments

Comments
 (0)