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.396.0"
".": "0.397.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: 229
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-fadbd087449a336a91be2645c64e2fe1e81e0f52d9810ab5f830af7e1c727138.yml
openapi_spec_hash: 7e44d91e713fb44925a3565b882248d7
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-3ef3456ba39c18b7b1228fd167c74b4d344057e133ef4abd3e130471b9e19ed3.yml
openapi_spec_hash: a55adf2eae6cbe811937dd7b0691939e
config_hash: ca1425272e17fa23d4466d33492334fa
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## 0.397.0 (2025-11-20)

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

### Features

* **api:** api update ([7d6df99](https://github.com/Increase/increase-python/commit/7d6df99f55702f887888e63c2e7aba090f56a51a))

## 0.396.0 (2025-11-18)

Full Changelog: [v0.395.0...v0.396.0](https://github.com/Increase/increase-python/compare/v0.395.0...v0.396.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.396.0"
version = "0.397.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/_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.396.0" # x-release-please-version
__version__ = "0.397.0" # x-release-please-version
6 changes: 6 additions & 0 deletions src/increase/types/check_transfer_create_params.py
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,12 @@ class PhysicalCheckMailingAddress(TypedDict, total=False):
line2: str
"""The second line of the address component of the check's destination address."""

name: str
"""The name component of the check's destination address.

Defaults to the provided `recipient_name` parameter if `name` is not provided.
"""


class PhysicalCheckPayer(TypedDict, total=False):
contents: Required[str]
Expand Down
2 changes: 2 additions & 0 deletions tests/api_resources/test_check_transfers.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ def test_method_create_with_all_params(self, client: Increase) -> None:
"postal_code": "10045",
"state": "NY",
"line2": "x",
"name": "Ian Crease",
},
"memo": "Check payment",
"recipient_name": "Ian Crease",
Expand Down Expand Up @@ -334,6 +335,7 @@ async def test_method_create_with_all_params(self, async_client: AsyncIncrease)
"postal_code": "10045",
"state": "NY",
"line2": "x",
"name": "Ian Crease",
},
"memo": "Check payment",
"recipient_name": "Ian Crease",
Expand Down