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.115.0"
".": "0.116.0"
}
6 changes: 3 additions & 3 deletions .stats.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
configured_endpoints: 176
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/lithic%2Flithic-c24eebe942f400bff8922a6fbef1ce551ad14f61eb4da21b50d823a62ca42586.yml
openapi_spec_hash: b79ed927e625dedff69cea29131a34d9
config_hash: 693dddc4721eef512d75ab6c60897794
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/lithic%2Flithic-f85b60190db68921a3a877d0dd931670c27933ba1f5031fcdd27365e99adb5c9.yml
openapi_spec_hash: 4828c2dc7543ce2a39774a9921c73c80
config_hash: fbc424e01cca916048d63adcadaa8750
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# Changelog

## 0.116.0 (2026-02-19)

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

### Features

* **api:** Add INTEREST_AND_FEES_PAUSED substatus to financial account ([c4a37de](https://github.com/lithic-com/lithic-python/commit/c4a37de9f0f7821e54d05702c4d1d809124fc7bc))


### Chores

* update mock server docs ([ec268b7](https://github.com/lithic-com/lithic-python/commit/ec268b7426be15578b2eaf92ca81107cbf9084e6))

## 0.115.0 (2026-02-13)

Full Changelog: [v0.114.0...v0.115.0](https://github.com/lithic-com/lithic-python/compare/v0.114.0...v0.115.0)
Expand Down
3 changes: 1 addition & 2 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -88,8 +88,7 @@ $ pip install ./path-to-wheel-file.whl
Most tests require you to [set up a mock server](https://github.com/stoplightio/prism) against the OpenAPI spec to run the tests.

```sh
# you will need npm installed
$ npx prism mock path/to/your/openapi.yml
$ ./scripts/mock
```

```sh
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.115.0"
version = "0.116.0"
description = "The official Python library for the lithic API"
dynamic = ["readme"]
license = "Apache-2.0"
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.115.0" # x-release-please-version
__version__ = "0.116.0" # x-release-please-version
20 changes: 18 additions & 2 deletions src/lithic/resources/financial_accounts/financial_accounts.py
Original file line number Diff line number Diff line change
Expand Up @@ -319,7 +319,15 @@ def update_status(
financial_account_token: str,
*,
status: Literal["OPEN", "CLOSED", "SUSPENDED", "PENDING"],
substatus: Optional[Literal["CHARGED_OFF_FRAUD", "END_USER_REQUEST", "BANK_REQUEST", "CHARGED_OFF_DELINQUENT"]],
substatus: Optional[
Literal[
"CHARGED_OFF_FRAUD",
"END_USER_REQUEST",
"BANK_REQUEST",
"CHARGED_OFF_DELINQUENT",
"INTEREST_AND_FEES_PAUSED",
]
],
user_defined_status: str | Omit = omit,
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
# The extra values given here take precedence over values defined on the client or passed to this method.
Expand Down Expand Up @@ -621,7 +629,15 @@ async def update_status(
financial_account_token: str,
*,
status: Literal["OPEN", "CLOSED", "SUSPENDED", "PENDING"],
substatus: Optional[Literal["CHARGED_OFF_FRAUD", "END_USER_REQUEST", "BANK_REQUEST", "CHARGED_OFF_DELINQUENT"]],
substatus: Optional[
Literal[
"CHARGED_OFF_FRAUD",
"END_USER_REQUEST",
"BANK_REQUEST",
"CHARGED_OFF_DELINQUENT",
"INTEREST_AND_FEES_PAUSED",
]
],
user_defined_status: str | Omit = omit,
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
# The extra values given here take precedence over values defined on the client or passed to this method.
Expand Down
9 changes: 8 additions & 1 deletion src/lithic/types/financial_account.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,14 @@ class FinancialAccount(BaseModel):
"""Status of the financial account"""

substatus: Optional[
Literal["CHARGED_OFF_DELINQUENT", "CHARGED_OFF_FRAUD", "END_USER_REQUEST", "BANK_REQUEST", "DELINQUENT"]
Literal[
"CHARGED_OFF_DELINQUENT",
"CHARGED_OFF_FRAUD",
"END_USER_REQUEST",
"BANK_REQUEST",
"DELINQUENT",
"INTEREST_AND_FEES_PAUSED",
]
] = None
"""Substatus for the financial account"""

Expand Down
10 changes: 9 additions & 1 deletion src/lithic/types/financial_account_update_status_params.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,15 @@ class FinancialAccountUpdateStatusParams(TypedDict, total=False):
"""Status of the financial account"""

substatus: Required[
Optional[Literal["CHARGED_OFF_FRAUD", "END_USER_REQUEST", "BANK_REQUEST", "CHARGED_OFF_DELINQUENT"]]
Optional[
Literal[
"CHARGED_OFF_FRAUD",
"END_USER_REQUEST",
"BANK_REQUEST",
"CHARGED_OFF_DELINQUENT",
"INTEREST_AND_FEES_PAUSED",
]
]
]
"""Substatus for the financial account"""

Expand Down
9 changes: 8 additions & 1 deletion src/lithic/types/financial_accounts/loan_tape.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,14 @@ class AccountStandingFinancialAccountState(BaseModel):
"""Status of the financial account"""

substatus: Optional[
Literal["CHARGED_OFF_DELINQUENT", "CHARGED_OFF_FRAUD", "END_USER_REQUEST", "BANK_REQUEST", "DELINQUENT"]
Literal[
"CHARGED_OFF_DELINQUENT",
"CHARGED_OFF_FRAUD",
"END_USER_REQUEST",
"BANK_REQUEST",
"DELINQUENT",
"INTEREST_AND_FEES_PAUSED",
]
] = None
"""Substatus for the financial account"""

Expand Down
9 changes: 8 additions & 1 deletion src/lithic/types/financial_accounts/statement.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,14 @@ class AccountStandingFinancialAccountState(BaseModel):
"""Status of the financial account"""

substatus: Optional[
Literal["CHARGED_OFF_DELINQUENT", "CHARGED_OFF_FRAUD", "END_USER_REQUEST", "BANK_REQUEST", "DELINQUENT"]
Literal[
"CHARGED_OFF_DELINQUENT",
"CHARGED_OFF_FRAUD",
"END_USER_REQUEST",
"BANK_REQUEST",
"DELINQUENT",
"INTEREST_AND_FEES_PAUSED",
]
] = None
"""Substatus for the financial account"""

Expand Down