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.213.0"
".": "0.214.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: 199
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-33b4fdf3af0d0c7816a818cea776370220613e9ea8812a8339e6203d0f4b23e6.yml
openapi_spec_hash: 242db9c21568746bbbbdf9cf090db82e
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-cc8e6b6ae3f31bfee6a3b1ed5d48604196757c1a78fec7054dc453c44ab8aa86.yml
openapi_spec_hash: 720e772da4156f4325664fb8b8df1d81
config_hash: 20a463ecd33bd32b7b9bc6f4990907ac
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# Changelog

## 0.214.0 (2025-03-28)

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

### Features

* **api:** api update ([#1057](https://github.com/Increase/increase-python/issues/1057)) ([64f9052](https://github.com/Increase/increase-python/commit/64f90524a5bee7f84aa3684d7708878bb90974d2))
* **api:** api update ([#1059](https://github.com/Increase/increase-python/issues/1059)) ([6986f66](https://github.com/Increase/increase-python/commit/6986f66fcb48dcf9a195fd8282194517878576fa))

## 0.213.0 (2025-03-26)

Full Changelog: [v0.212.0...v0.213.0](https://github.com/Increase/increase-python/compare/v0.212.0...v0.213.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.213.0"
version = "0.214.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.213.0" # x-release-please-version
__version__ = "0.214.0" # x-release-please-version
8 changes: 6 additions & 2 deletions src/increase/resources/simulations/ach_transfers.py
Original file line number Diff line number Diff line change
Expand Up @@ -488,7 +488,9 @@ def settle(
) -> ACHTransfer:
"""
Simulates the settlement of an [ACH Transfer](#ach-transfers) by the Federal
Reserve. This transfer must first have a `status` of `submitted`. Without this
Reserve. This transfer must first have a `status` of `pending_submission` or
`submitted`. For convenience, if the transfer is in `status`:
`pending_submission`, the simulation will also submit the transfer. Without this
simulation the transfer will eventually settle on its own following the same
Federal Reserve timeline as in production.

Expand Down Expand Up @@ -1029,7 +1031,9 @@ async def settle(
) -> ACHTransfer:
"""
Simulates the settlement of an [ACH Transfer](#ach-transfers) by the Federal
Reserve. This transfer must first have a `status` of `submitted`. Without this
Reserve. This transfer must first have a `status` of `pending_submission` or
`submitted`. For convenience, if the transfer is in `status`:
`pending_submission`, the simulation will also submit the transfer. Without this
simulation the transfer will eventually settle on its own following the same
Federal Reserve timeline as in production.

Expand Down
8 changes: 8 additions & 0 deletions src/increase/types/check_transfer_create_params.py
Original file line number Diff line number Diff line change
Expand Up @@ -133,3 +133,11 @@ class ThirdParty(TypedDict, total=False):
generate a check number for you; you should inspect the response and use that
check number.
"""

recipient_name: str
"""The pay-to name you will print on the check.

If provided, this is used for [Positive Pay](/documentation/positive-pay). If
this is omitted, Increase will be unable to validate the payee name when the
check is deposited.
"""
10 changes: 8 additions & 2 deletions tests/api_resources/test_check_transfers.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,10 @@ def test_method_create_with_all_params(self, client: Increase) -> None:
"signature_text": "Ian Crease",
},
require_approval=True,
third_party={"check_number": "x"},
third_party={
"check_number": "x",
"recipient_name": "x",
},
)
assert_matches_type(CheckTransfer, check_transfer, path=["response"])

Expand Down Expand Up @@ -341,7 +344,10 @@ async def test_method_create_with_all_params(self, async_client: AsyncIncrease)
"signature_text": "Ian Crease",
},
require_approval=True,
third_party={"check_number": "x"},
third_party={
"check_number": "x",
"recipient_name": "x",
},
)
assert_matches_type(CheckTransfer, check_transfer, path=["response"])

Expand Down