Skip to content

Commit 5e47aa8

Browse files
feat: sync SDK with API changes (#22)
* feat: sync SDK with API changes * fix: resolve CI errors from api-sync --------- Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
1 parent 255b4c9 commit 5e47aa8

8 files changed

Lines changed: 1141 additions & 8 deletions

File tree

.claude-pr/CLAUDE.md

Lines changed: 737 additions & 0 deletions
Large diffs are not rendered by default.

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 = "1.3.0"
3+
version = "1.4.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__ = "1.3.0"
1+
__version__ = "1.4.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
@@ -38,7 +38,7 @@
3838
from blindpay.resources.wallets.offramp import OfframpWalletsResource, OfframpWalletsResourceSync
3939
from blindpay.resources.webhooks.webhooks import WebhookEndpointsResource, WebhookEndpointsResourceSync
4040

41-
__version__ = "1.3.0"
41+
__version__ = "1.4.0"
4242

4343
T = TypeVar("T")
4444

src/blindpay/resources/receivers/__init__.py

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
11
from .receivers import (
2+
AccountPurpose,
3+
AmlHits,
4+
AmlStatus,
5+
BusinessIndustry,
26
BusinessType,
37
BusinessWithStandardKYB,
48
CreateBusinessWithStandardKYBInput,
@@ -8,6 +12,9 @@
812
CreateIndividualWithStandardKYCInput,
913
CreateIndividualWithStandardKYCResponse,
1014
EnhancedKycType,
15+
EstimatedAnnualRevenue,
16+
FraudWarning,
17+
GetLimitIncreaseRequestsResponse,
1118
GetReceiverLimitsResponse,
1219
GetReceiverResponse,
1320
IdentificationDocument,
@@ -16,15 +23,26 @@
1623
IndividualWithStandardKYC,
1724
KycType,
1825
KycWarning,
26+
LimitIncreaseRequest,
27+
LimitIncreaseRequestStatus,
28+
LimitIncreaseRequestSupportingDocumentType,
29+
ListReceiversInput,
30+
ListReceiversPaginatedResponse,
1931
ListReceiversResponse,
2032
Owner,
2133
OwnerRole,
2234
OwnerUpdate,
2335
ProofOfAddressDocType,
2436
PurposeOfTransactions,
37+
ReceiverBusinessType,
2538
ReceiversResource,
2639
ReceiversResourceSync,
40+
ReceiverStatus,
41+
RequestLimitIncreaseInput,
42+
RequestLimitIncreaseResponse,
2743
SourceOfFundsDocType,
44+
SourceOfWealth,
45+
TaxType,
2846
TransactionLimit,
2947
UpdateReceiverInput,
3048
create_receivers_resource,
@@ -63,4 +81,22 @@
6381
"GetReceiverResponse",
6482
"OwnerUpdate",
6583
"UpdateReceiverInput",
84+
"LimitIncreaseRequest",
85+
"LimitIncreaseRequestStatus",
86+
"LimitIncreaseRequestSupportingDocumentType",
87+
"GetLimitIncreaseRequestsResponse",
88+
"RequestLimitIncreaseInput",
89+
"RequestLimitIncreaseResponse",
90+
"ReceiverStatus",
91+
"AccountPurpose",
92+
"ReceiverBusinessType",
93+
"BusinessIndustry",
94+
"EstimatedAnnualRevenue",
95+
"SourceOfWealth",
96+
"TaxType",
97+
"AmlStatus",
98+
"FraudWarning",
99+
"AmlHits",
100+
"ListReceiversInput",
101+
"ListReceiversPaginatedResponse",
66102
]

0 commit comments

Comments
 (0)