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 .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "0.130.0"
".": "0.131.0"
}
8 changes: 4 additions & 4 deletions .stats.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
configured_endpoints: 213
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/lithic/lithic-59c09c7355b21b663e001d2ee1086ebd0a70d9b5433823282bca296eedff9eb0.yml
openapi_spec_hash: d9c3b932c810809abc6e973d662ad376
config_hash: 337a99d8cc30006358b7bc2531401669
configured_endpoints: 214
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/lithic/lithic-113e179e6007c80abd835ff26bfdce4dd24beee5174678687431cb672ce06be8.yml
openapi_spec_hash: 0f42308e15d062d48e3d4857c39ac749
config_hash: f6d04d790aaddf639fc04b7f0092e7ec
20 changes: 20 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,25 @@
# Changelog

## 0.131.0 (2026-08-14)

Full Changelog: [v0.130.0...v0.131.0](https://github.com/lithic-com/lithic-python/compare/v0.130.0...v0.131.0)

### Features

* **api:** add blockchain_addresses field to financial account ([168e194](https://github.com/lithic-com/lithic-python/commit/168e194dce255e6b907a65b3387dffec89ca0426))
* **api:** add claim_token parameter/field, WRITE_OFF_REVERSED enum to disputes_v2 ([1ce906c](https://github.com/lithic-com/lithic-python/commit/1ce906c05421ae00dfc09d6513552c1f9a130d68))
* **api:** Add limit_cash_amount and limit_cash_count to VelocityLimit template ([64068f8](https://github.com/lithic-com/lithic-python/commit/64068f89bd9400b4e684b8eb1fdf5bdede893a36))
* **api:** add PROGRAM scope to auth_rules and case entity types ([7d67d35](https://github.com/lithic-com/lithic-python/commit/7d67d35bafb84f3cb24fade78214478bcc3204f2))
* **api:** add stablecoin event types to payment/statement/financial_event ([9c1cfe4](https://github.com/lithic-com/lithic-python/commit/9c1cfe46e6538c2429653dd65bf72938544f1fe4))
* **api:** add stablecoin method and attributes to payment ([ed5c9b0](https://github.com/lithic-com/lithic-python/commit/ed5c9b0496b984876497c39a6110020979f93bfb))
* **api:** add STABLECOIN method, make method_attributes optional in payment ([ebb1b60](https://github.com/lithic-com/lithic-python/commit/ebb1b60c55251a27d0da338875be625a67cea4c2))
* **api:** Add STABLECOIN to approvals request and transfer type enums ([8c277b5](https://github.com/lithic-com/lithic-python/commit/8c277b59aefd35e571026c97177a50223fd0622d))


### Documentation

* **api:** clarify CVV format in tokenizations and card ([8980c52](https://github.com/lithic-com/lithic-python/commit/8980c5219db6e83e4cc8e9d2445fbd223c24a728))

## 0.130.0 (2026-07-30)

Full Changelog: [v0.129.0...v0.130.0](https://github.com/lithic-com/lithic-python/compare/v0.129.0...v0.130.0)
Expand Down
12 changes: 12 additions & 0 deletions api.md
Original file line number Diff line number Diff line change
Expand Up @@ -690,6 +690,18 @@ Methods:

- <code title="post /v1/external_bank_accounts/{external_bank_account_token}/micro_deposits">client.external_bank_accounts.micro_deposits.<a href="./src/lithic/resources/external_bank_accounts/micro_deposits.py">create</a>(external_bank_account_token, \*\*<a href="src/lithic/types/external_bank_accounts/micro_deposit_create_params.py">params</a>) -> <a href="./src/lithic/types/external_bank_accounts/micro_deposit_create_response.py">MicroDepositCreateResponse</a></code>

# BlockchainRecipients

Types:

```python
from lithic.types import BlockchainRecipient
```

Methods:

- <code title="post /v1/blockchain_recipients">client.blockchain_recipients.<a href="./src/lithic/resources/blockchain_recipients.py">create</a>(\*\*<a href="src/lithic/types/blockchain_recipient_create_params.py">params</a>) -> <a href="./src/lithic/types/blockchain_recipient.py">BlockchainRecipient</a></code>

# Payments

Types:
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "lithic"
version = "0.130.0"
version = "0.131.0"
description = "The official Python library for the lithic API"
dynamic = ["readme"]
license = "Apache-2.0"
Expand Down
38 changes: 38 additions & 0 deletions src/lithic/_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,7 @@
financial_accounts,
card_authorizations,
responder_endpoints,
blockchain_recipients,
management_operations,
auth_stream_enrollment,
external_bank_accounts,
Expand Down Expand Up @@ -101,6 +102,7 @@
from .resources.card_authorizations import CardAuthorizations, AsyncCardAuthorizations
from .resources.responder_endpoints import ResponderEndpoints, AsyncResponderEndpoints
from .resources.auth_rules.auth_rules import AuthRules, AsyncAuthRules
from .resources.blockchain_recipients import BlockchainRecipients, AsyncBlockchainRecipients
from .resources.management_operations import ManagementOperations, AsyncManagementOperations
from .resources.auth_stream_enrollment import AuthStreamEnrollment, AsyncAuthStreamEnrollment
from .resources.tokenization_decisioning import TokenizationDecisioning, AsyncTokenizationDecisioning
Expand Down Expand Up @@ -336,6 +338,12 @@ def external_bank_accounts(self) -> ExternalBankAccounts:

return ExternalBankAccounts(self)

@cached_property
def blockchain_recipients(self) -> BlockchainRecipients:
from .resources.blockchain_recipients import BlockchainRecipients

return BlockchainRecipients(self)

@cached_property
def payments(self) -> Payments:
from .resources.payments import Payments
Expand Down Expand Up @@ -772,6 +780,12 @@ def external_bank_accounts(self) -> AsyncExternalBankAccounts:

return AsyncExternalBankAccounts(self)

@cached_property
def blockchain_recipients(self) -> AsyncBlockchainRecipients:
from .resources.blockchain_recipients import AsyncBlockchainRecipients

return AsyncBlockchainRecipients(self)

@cached_property
def payments(self) -> AsyncPayments:
from .resources.payments import AsyncPayments
Expand Down Expand Up @@ -1122,6 +1136,12 @@ def external_bank_accounts(self) -> external_bank_accounts.ExternalBankAccountsW

return ExternalBankAccountsWithRawResponse(self._client.external_bank_accounts)

@cached_property
def blockchain_recipients(self) -> blockchain_recipients.BlockchainRecipientsWithRawResponse:
from .resources.blockchain_recipients import BlockchainRecipientsWithRawResponse

return BlockchainRecipientsWithRawResponse(self._client.blockchain_recipients)

@cached_property
def payments(self) -> payments.PaymentsWithRawResponse:
from .resources.payments import PaymentsWithRawResponse
Expand Down Expand Up @@ -1331,6 +1351,12 @@ def external_bank_accounts(self) -> external_bank_accounts.AsyncExternalBankAcco

return AsyncExternalBankAccountsWithRawResponse(self._client.external_bank_accounts)

@cached_property
def blockchain_recipients(self) -> blockchain_recipients.AsyncBlockchainRecipientsWithRawResponse:
from .resources.blockchain_recipients import AsyncBlockchainRecipientsWithRawResponse

return AsyncBlockchainRecipientsWithRawResponse(self._client.blockchain_recipients)

@cached_property
def payments(self) -> payments.AsyncPaymentsWithRawResponse:
from .resources.payments import AsyncPaymentsWithRawResponse
Expand Down Expand Up @@ -1540,6 +1566,12 @@ def external_bank_accounts(self) -> external_bank_accounts.ExternalBankAccountsW

return ExternalBankAccountsWithStreamingResponse(self._client.external_bank_accounts)

@cached_property
def blockchain_recipients(self) -> blockchain_recipients.BlockchainRecipientsWithStreamingResponse:
from .resources.blockchain_recipients import BlockchainRecipientsWithStreamingResponse

return BlockchainRecipientsWithStreamingResponse(self._client.blockchain_recipients)

@cached_property
def payments(self) -> payments.PaymentsWithStreamingResponse:
from .resources.payments import PaymentsWithStreamingResponse
Expand Down Expand Up @@ -1749,6 +1781,12 @@ def external_bank_accounts(self) -> external_bank_accounts.AsyncExternalBankAcco

return AsyncExternalBankAccountsWithStreamingResponse(self._client.external_bank_accounts)

@cached_property
def blockchain_recipients(self) -> blockchain_recipients.AsyncBlockchainRecipientsWithStreamingResponse:
from .resources.blockchain_recipients import AsyncBlockchainRecipientsWithStreamingResponse

return AsyncBlockchainRecipientsWithStreamingResponse(self._client.blockchain_recipients)

@cached_property
def payments(self) -> payments.AsyncPaymentsWithStreamingResponse:
from .resources.payments import AsyncPaymentsWithStreamingResponse
Expand Down
2 changes: 1 addition & 1 deletion src/lithic/_version.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.

__title__ = "lithic"
__version__ = "0.130.0" # x-release-please-version
__version__ = "0.131.0" # x-release-please-version
14 changes: 14 additions & 0 deletions src/lithic/resources/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -225,6 +225,14 @@
ResponderEndpointsWithStreamingResponse,
AsyncResponderEndpointsWithStreamingResponse,
)
from .blockchain_recipients import (
BlockchainRecipients,
AsyncBlockchainRecipients,
BlockchainRecipientsWithRawResponse,
AsyncBlockchainRecipientsWithRawResponse,
BlockchainRecipientsWithStreamingResponse,
AsyncBlockchainRecipientsWithStreamingResponse,
)
from .management_operations import (
ManagementOperations,
AsyncManagementOperations,
Expand Down Expand Up @@ -375,6 +383,12 @@
"AsyncExternalBankAccountsWithRawResponse",
"ExternalBankAccountsWithStreamingResponse",
"AsyncExternalBankAccountsWithStreamingResponse",
"BlockchainRecipients",
"AsyncBlockchainRecipients",
"BlockchainRecipientsWithRawResponse",
"AsyncBlockchainRecipientsWithRawResponse",
"BlockchainRecipientsWithStreamingResponse",
"AsyncBlockchainRecipientsWithStreamingResponse",
"Payments",
"AsyncPayments",
"PaymentsWithRawResponse",
Expand Down
Loading