Skip to content
Merged
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.514.0"
".": "0.515.0"
}
4 changes: 2 additions & 2 deletions .stats.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
configured_endpoints: 238
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase/increase-894485303846b0d3d71172a30ddb9de5903207874792f84c774e9d9900fe0769.yml
openapi_spec_hash: 9a4d6d3040580b3d0a4e0264dd77127f
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase/increase-b6168f5ea09213fe8a507a6b13ac02357a31fff02d2801be24c35f8f495142cd.yml
openapi_spec_hash: c0e12e8e60af1893509f4dea2ea2feae
config_hash: ac050010e5453883d5e5fa603554a2e0
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
# Changelog

## 0.515.0 (2026-05-08)

Full Changelog: [v0.514.0...v0.515.0](https://github.com/Increase/increase-python/compare/v0.514.0...v0.515.0)

### Features

* **api:** api update ([2566081](https://github.com/Increase/increase-python/commit/2566081f0fab640ca0f944c04a3f78e20b15c942))
* **api:** api update ([5559687](https://github.com/Increase/increase-python/commit/5559687ce4b00924f772480b48f3152e268b6555))
* **api:** api update ([b347c83](https://github.com/Increase/increase-python/commit/b347c83bc2ffc000f7c306c331a6b74d6f42a325))


### Bug Fixes

* **client:** add missing f-string prefix in file type error message ([bab71ae](https://github.com/Increase/increase-python/commit/bab71ae7f5e297075b3f020b02d6467281d44e92))

## 0.514.0 (2026-05-04)

Full Changelog: [v0.513.0...v0.514.0](https://github.com/Increase/increase-python/compare/v0.513.0...v0.514.0)
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 = "increase"
version = "0.514.0"
version = "0.515.0"
description = "The official Python library for the increase API"
dynamic = ["readme"]
license = "Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion src/increase/_files.py
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ async def async_to_httpx_files(files: RequestFiles | None) -> HttpxRequestFiles
elif is_sequence_t(files):
files = [(key, await _async_transform_file(file)) for key, file in files]
else:
raise TypeError("Unexpected file type input {type(files)}, expected mapping or sequence")
raise TypeError(f"Unexpected file type input {type(files)}, expected mapping or sequence")

return files

Expand Down
2 changes: 1 addition & 1 deletion src/increase/_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__ = "increase"
__version__ = "0.514.0" # x-release-please-version
__version__ = "0.515.0" # x-release-please-version
8 changes: 4 additions & 4 deletions src/increase/resources/exports.py
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ def create(
a given date and optional Account.
- `transaction_csv` - Export a CSV of all transactions for a given time range.
- `balance_csv` - Export a CSV of account balances for the dates in a given
range.
range. (deprecated, use `daily_account_balance_csv` instead)
- `bookkeeping_account_balance_csv` - Export a CSV of bookkeeping account
balances for the dates in a given range.
- `entity_csv` - Export a CSV of entities with a given status.
Expand Down Expand Up @@ -250,7 +250,7 @@ def list(
a given date and optional Account.
- `transaction_csv` - Export a CSV of all transactions for a given time range.
- `balance_csv` - Export a CSV of account balances for the dates in a given
range.
range. (deprecated, use `daily_account_balance_csv` instead)
- `bookkeeping_account_balance_csv` - Export a CSV of bookkeeping account
balances for the dates in a given range.
- `entity_csv` - Export a CSV of entities with a given status.
Expand Down Expand Up @@ -378,7 +378,7 @@ async def create(
a given date and optional Account.
- `transaction_csv` - Export a CSV of all transactions for a given time range.
- `balance_csv` - Export a CSV of account balances for the dates in a given
range.
range. (deprecated, use `daily_account_balance_csv` instead)
- `bookkeeping_account_balance_csv` - Export a CSV of bookkeeping account
balances for the dates in a given range.
- `entity_csv` - Export a CSV of entities with a given status.
Expand Down Expand Up @@ -538,7 +538,7 @@ def list(
a given date and optional Account.
- `transaction_csv` - Export a CSV of all transactions for a given time range.
- `balance_csv` - Export a CSV of account balances for the dates in a given
range.
range. (deprecated, use `daily_account_balance_csv` instead)
- `bookkeeping_account_balance_csv` - Export a CSV of bookkeeping account
balances for the dates in a given range.
- `entity_csv` - Export a CSV of entities with a given status.
Expand Down
2 changes: 1 addition & 1 deletion src/increase/types/export.py
Original file line number Diff line number Diff line change
Expand Up @@ -361,7 +361,7 @@ class Export(BaseModel):
a given date and optional Account.
- `transaction_csv` - Export a CSV of all transactions for a given time range.
- `balance_csv` - Export a CSV of account balances for the dates in a given
range.
range. (deprecated, use `daily_account_balance_csv` instead)
- `bookkeeping_account_balance_csv` - Export a CSV of bookkeeping account
balances for the dates in a given range.
- `entity_csv` - Export a CSV of entities with a given status.
Expand Down
2 changes: 1 addition & 1 deletion src/increase/types/export_create_params.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ class ExportCreateParams(TypedDict, total=False):
a given date and optional Account.
- `transaction_csv` - Export a CSV of all transactions for a given time range.
- `balance_csv` - Export a CSV of account balances for the dates in a given
range.
range. (deprecated, use `daily_account_balance_csv` instead)
- `bookkeeping_account_balance_csv` - Export a CSV of bookkeeping account
balances for the dates in a given range.
- `entity_csv` - Export a CSV of entities with a given status.
Expand Down
2 changes: 1 addition & 1 deletion src/increase/types/export_list_params.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ class ExportListParams(TypedDict, total=False):
a given date and optional Account.
- `transaction_csv` - Export a CSV of all transactions for a given time range.
- `balance_csv` - Export a CSV of account balances for the dates in a given
range.
range. (deprecated, use `daily_account_balance_csv` instead)
- `bookkeeping_account_balance_csv` - Export a CSV of bookkeeping account
balances for the dates in a given range.
- `entity_csv` - Export a CSV of entities with a given status.
Expand Down
8 changes: 4 additions & 4 deletions tests/api_resources/test_beneficial_owners.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ def test_method_create_with_all_params(self, client: Increase) -> None:
"drivers_license": {
"expiration_date": parse_date("2019-12-27"),
"file_id": "file_id",
"state": "x",
"state": "xx",
"back_file_id": "back_file_id",
},
"other": {
Expand Down Expand Up @@ -204,7 +204,7 @@ def test_method_update_with_all_params(self, client: Increase) -> None:
"drivers_license": {
"expiration_date": parse_date("2019-12-27"),
"file_id": "file_id",
"state": "x",
"state": "xx",
"back_file_id": "back_file_id",
},
"other": {
Expand Down Expand Up @@ -385,7 +385,7 @@ async def test_method_create_with_all_params(self, async_client: AsyncIncrease)
"drivers_license": {
"expiration_date": parse_date("2019-12-27"),
"file_id": "file_id",
"state": "x",
"state": "xx",
"back_file_id": "back_file_id",
},
"other": {
Expand Down Expand Up @@ -527,7 +527,7 @@ async def test_method_update_with_all_params(self, async_client: AsyncIncrease)
"drivers_license": {
"expiration_date": parse_date("2019-12-27"),
"file_id": "file_id",
"state": "x",
"state": "xx",
"back_file_id": "back_file_id",
},
"other": {
Expand Down
16 changes: 8 additions & 8 deletions tests/api_resources/test_card_push_transfers.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ def test_method_create(self, client: Increase) -> None:
card_push_transfer = client.card_push_transfers.create(
business_application_identifier="funds_disbursement",
card_token_id="outbound_card_token_zlt0ml6youq3q7vcdlg0",
merchant_category_code="1234",
merchant_category_code="5734",
merchant_city_name="New York",
merchant_name="Acme Corp",
merchant_name_prefix="Acme",
Expand All @@ -49,7 +49,7 @@ def test_method_create_with_all_params(self, client: Increase) -> None:
card_push_transfer = client.card_push_transfers.create(
business_application_identifier="funds_disbursement",
card_token_id="outbound_card_token_zlt0ml6youq3q7vcdlg0",
merchant_category_code="1234",
merchant_category_code="5734",
merchant_city_name="New York",
merchant_name="Acme Corp",
merchant_name_prefix="Acme",
Expand Down Expand Up @@ -81,7 +81,7 @@ def test_raw_response_create(self, client: Increase) -> None:
response = client.card_push_transfers.with_raw_response.create(
business_application_identifier="funds_disbursement",
card_token_id="outbound_card_token_zlt0ml6youq3q7vcdlg0",
merchant_category_code="1234",
merchant_category_code="5734",
merchant_city_name="New York",
merchant_name="Acme Corp",
merchant_name_prefix="Acme",
Expand Down Expand Up @@ -110,7 +110,7 @@ def test_streaming_response_create(self, client: Increase) -> None:
with client.card_push_transfers.with_streaming_response.create(
business_application_identifier="funds_disbursement",
card_token_id="outbound_card_token_zlt0ml6youq3q7vcdlg0",
merchant_category_code="1234",
merchant_category_code="5734",
merchant_city_name="New York",
merchant_name="Acme Corp",
merchant_name_prefix="Acme",
Expand Down Expand Up @@ -303,7 +303,7 @@ async def test_method_create(self, async_client: AsyncIncrease) -> None:
card_push_transfer = await async_client.card_push_transfers.create(
business_application_identifier="funds_disbursement",
card_token_id="outbound_card_token_zlt0ml6youq3q7vcdlg0",
merchant_category_code="1234",
merchant_category_code="5734",
merchant_city_name="New York",
merchant_name="Acme Corp",
merchant_name_prefix="Acme",
Expand All @@ -328,7 +328,7 @@ async def test_method_create_with_all_params(self, async_client: AsyncIncrease)
card_push_transfer = await async_client.card_push_transfers.create(
business_application_identifier="funds_disbursement",
card_token_id="outbound_card_token_zlt0ml6youq3q7vcdlg0",
merchant_category_code="1234",
merchant_category_code="5734",
merchant_city_name="New York",
merchant_name="Acme Corp",
merchant_name_prefix="Acme",
Expand Down Expand Up @@ -360,7 +360,7 @@ async def test_raw_response_create(self, async_client: AsyncIncrease) -> None:
response = await async_client.card_push_transfers.with_raw_response.create(
business_application_identifier="funds_disbursement",
card_token_id="outbound_card_token_zlt0ml6youq3q7vcdlg0",
merchant_category_code="1234",
merchant_category_code="5734",
merchant_city_name="New York",
merchant_name="Acme Corp",
merchant_name_prefix="Acme",
Expand Down Expand Up @@ -389,7 +389,7 @@ async def test_streaming_response_create(self, async_client: AsyncIncrease) -> N
async with async_client.card_push_transfers.with_streaming_response.create(
business_application_identifier="funds_disbursement",
card_token_id="outbound_card_token_zlt0ml6youq3q7vcdlg0",
merchant_category_code="1234",
merchant_category_code="5734",
merchant_city_name="New York",
merchant_name="Acme Corp",
merchant_name_prefix="Acme",
Expand Down
Loading