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.411.0"
".": "0.412.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: 230
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-6b5ac6804e3261a05214c5891c95222ef1b5e9003f211ab32db1d03a7531835a.yml
openapi_spec_hash: 611c8d38ba7122a428f57f3069aac84a
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-e2b7de6202d48efc0e77fd72d2788987e6e3ecf2dfff8a491b88fe9a838f0bd5.yml
openapi_spec_hash: 5af8bcd38aae780c364688cb048d258b
config_hash: ff2eb5f192b4de36611b37b27961c2d8
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## 0.412.0 (2025-12-15)

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

### Features

* **api:** api update ([962cd2e](https://github.com/Increase/increase-python/commit/962cd2e59b1f117bbeaeaddb10ed8a796d64316b))

## 0.411.0 (2025-12-15)

Full Changelog: [v0.410.0...v0.411.0](https://github.com/Increase/increase-python/compare/v0.410.0...v0.411.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.411.0"
version = "0.412.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.411.0" # x-release-please-version
__version__ = "0.412.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 @@ -178,6 +178,12 @@ class PhysicalCheckReturnAddress(BaseModel):
name: Optional[str] = None
"""The name component of the check's return address."""

phone: Optional[str] = None
"""The shipper's phone number to be used in case of delivery issues.

Only used for FedEx overnight shipping.
"""

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

Expand Down
11 changes: 9 additions & 2 deletions src/increase/types/check_transfer_create_params.py
Original file line number Diff line number Diff line change
Expand Up @@ -114,8 +114,8 @@ class PhysicalCheckMailingAddress(TypedDict, total=False):
phone: str
"""The phone number to associate with the check's destination address.

The number is only used when `shipping_method` is `fedex_overnight` and will be
supplied to FedEx to be used in case of delivery issues.
The phone number is only used when `shipping_method` is `fedex_overnight` and
will be supplied to FedEx to be used in case of delivery issues.
"""


Expand Down Expand Up @@ -148,6 +148,13 @@ class PhysicalCheckReturnAddress(TypedDict, total=False):
line2: str
"""The second line of the return address."""

phone: str
"""The phone number to associate with the shipper.

The phone number is only used when `shipping_method` is `fedex_overnight` and
will be supplied to FedEx to be used in case of delivery issues.
"""


class PhysicalCheckTyped(TypedDict, total=False):
"""Details relating to the physical check that Increase will print and mail.
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 @@ -63,6 +63,7 @@ def test_method_create_with_all_params(self, client: Increase) -> None:
"postal_code": "x",
"state": "x",
"line2": "x",
"phone": "x",
},
"shipping_method": "usps_first_class",
"signature_text": "Ian Crease",
Expand Down Expand Up @@ -353,6 +354,7 @@ async def test_method_create_with_all_params(self, async_client: AsyncIncrease)
"postal_code": "x",
"state": "x",
"line2": "x",
"phone": "x",
},
"shipping_method": "usps_first_class",
"signature_text": "Ian Crease",
Expand Down