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.455.0"
".": "0.456.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: 236
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-b95cd103dded0963ab1ae960b10846a8640c538d12beefb085cfcccd40e4e374.yml
openapi_spec_hash: 4cea779180b9bcdc631ae2cbc3aa9c4c
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-297d19c04d7384ffc16c672182c0439c3880fc912fbabf20a378d38182cc7420.yml
openapi_spec_hash: 02126c1ab3c22027a0f0aa1ce12cf7f6
config_hash: 0997ade8b52ec04e82d5b0c3b61bb51e
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## 0.456.0 (2026-03-24)

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

### Features

* **api:** api update ([48d7b56](https://github.com/Increase/increase-python/commit/48d7b561a3490f23b7cbaed1eb9978446ed4f0b8))

## 0.455.0 (2026-03-24)

Full Changelog: [v0.454.0...v0.455.0](https://github.com/Increase/increase-python/compare/v0.454.0...v0.455.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.455.0"
version = "0.456.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.455.0" # x-release-please-version
__version__ = "0.456.0" # x-release-please-version
8 changes: 0 additions & 8 deletions src/increase/resources/real_time_payments_transfers.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,6 @@ def create(
unstructured_remittance_information: str,
account_number: str | Omit = omit,
debtor_name: str | Omit = omit,
destination_account_number: str | Omit = omit,
destination_routing_number: str | Omit = omit,
external_account_id: str | Omit = omit,
require_approval: bool | Omit = omit,
routing_number: str | Omit = omit,
Expand Down Expand Up @@ -118,8 +116,6 @@ def create(
"unstructured_remittance_information": unstructured_remittance_information,
"account_number": account_number,
"debtor_name": debtor_name,
"destination_account_number": destination_account_number,
"destination_routing_number": destination_routing_number,
"external_account_id": external_account_id,
"require_approval": require_approval,
"routing_number": routing_number,
Expand Down Expand Up @@ -370,8 +366,6 @@ async def create(
unstructured_remittance_information: str,
account_number: str | Omit = omit,
debtor_name: str | Omit = omit,
destination_account_number: str | Omit = omit,
destination_routing_number: str | Omit = omit,
external_account_id: str | Omit = omit,
require_approval: bool | Omit = omit,
routing_number: str | Omit = omit,
Expand Down Expand Up @@ -437,8 +431,6 @@ async def create(
"unstructured_remittance_information": unstructured_remittance_information,
"account_number": account_number,
"debtor_name": debtor_name,
"destination_account_number": destination_account_number,
"destination_routing_number": destination_routing_number,
"external_account_id": external_account_id,
"require_approval": require_approval,
"routing_number": routing_number,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,6 @@ class RealTimePaymentsTransferCreateParams(TypedDict, total=False):
If not provided, defaults to the name of the account's entity.
"""

destination_account_number: str

destination_routing_number: str

external_account_id: str
"""The ID of an External Account to initiate a transfer to.

Expand Down
4 changes: 0 additions & 4 deletions tests/api_resources/test_real_time_payments_transfers.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,6 @@ def test_method_create_with_all_params(self, client: Increase) -> None:
unstructured_remittance_information="Invoice 29582",
account_number="987654321",
debtor_name="x",
destination_account_number="x",
destination_routing_number="xxxxxxxxx",
external_account_id="external_account_id",
require_approval=True,
routing_number="101050001",
Expand Down Expand Up @@ -268,8 +266,6 @@ async def test_method_create_with_all_params(self, async_client: AsyncIncrease)
unstructured_remittance_information="Invoice 29582",
account_number="987654321",
debtor_name="x",
destination_account_number="x",
destination_routing_number="xxxxxxxxx",
external_account_id="external_account_id",
require_approval=True,
routing_number="101050001",
Expand Down