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.397.0"
".": "0.398.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-3ef3456ba39c18b7b1228fd167c74b4d344057e133ef4abd3e130471b9e19ed3.yml
openapi_spec_hash: a55adf2eae6cbe811937dd7b0691939e
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-cea252dc0453b92916edc9d8fc79e120d049068b86fb4a554e91709483a5f97f.yml
openapi_spec_hash: 7d34811e865a82a1ce2117d75a04d3ac
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.398.0 (2025-11-21)

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

### Features

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

## 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)
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.397.0"
version = "0.398.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.397.0" # x-release-please-version
__version__ = "0.398.0" # x-release-please-version
6 changes: 6 additions & 0 deletions src/increase/types/check_transfer.py
Original file line number Diff line number Diff line change
Expand Up @@ -123,6 +123,12 @@ class PhysicalCheckMailingAddress(BaseModel):
name: Optional[str] = None
"""The name component of the check's mailing address."""

phone: Optional[str] = None
"""
The phone number to be used in case of delivery issues at the check's mailing
address. Only used for FedEx overnight shipping.
"""

postal_code: Optional[str] = None
"""The postal code of the check's destination."""

Expand Down
7 changes: 7 additions & 0 deletions src/increase/types/check_transfer_create_params.py
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,13 @@ class PhysicalCheckMailingAddress(TypedDict, total=False):
Defaults to the provided `recipient_name` parameter if `name` is not provided.
"""

phone: str
"""The phone number to associate with the check's destination address.

Will be supplied to FedEx as the contact phone number for the recipient to be
used in case of delivery issues.
"""


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 @@ -48,6 +48,7 @@ def test_method_create_with_all_params(self, client: Increase) -> None:
"state": "NY",
"line2": "x",
"name": "Ian Crease",
"phone": "+16505046304",
},
"memo": "Check payment",
"recipient_name": "Ian Crease",
Expand Down Expand Up @@ -336,6 +337,7 @@ async def test_method_create_with_all_params(self, async_client: AsyncIncrease)
"state": "NY",
"line2": "x",
"name": "Ian Crease",
"phone": "+16505046304",
},
"memo": "Check payment",
"recipient_name": "Ian Crease",
Expand Down