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.450.1"
".": "0.451.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-f3d22401feb4671870673cb67688b163ee7f26acb6d2f89dcf79b26b0675523f.yml
openapi_spec_hash: 4d6dbce33f5de203d92df4c20a957665
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-4a8fb0a78ec74e41f3c1f5d8d455b1496d567948e3a7a3ae375338173ced538e.yml
openapi_spec_hash: 6dbffca55fa0226c3603ee180594bd2b
config_hash: 25d7d7aa4882db6189b4b53e8e249e80
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## 0.451.0 (2026-03-19)

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

### Features

* **api:** api update ([380d0b2](https://github.com/Increase/increase-python/commit/380d0b241d7b6807edbea8362959922ceb5a3e2e))

## 0.450.1 (2026-03-19)

Full Changelog: [v0.450.0...v0.450.1](https://github.com/Increase/increase-python/compare/v0.450.0...v0.450.1)
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.450.1"
version = "0.451.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.450.1" # x-release-please-version
__version__ = "0.451.0" # x-release-please-version
8 changes: 0 additions & 8 deletions src/increase/resources/fednow_transfers.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,6 @@ def with_streaming_response(self) -> FednowTransfersResourceWithStreamingRespons
def create(
self,
*,
account_id: str,
amount: int,
creditor_name: str,
debtor_name: str,
Expand All @@ -69,8 +68,6 @@ def create(
Create a FedNow Transfer

Args:
account_id: The identifier for the account that will send the transfer.

amount: The amount, in minor units, to send to the creditor.

creditor_name: The creditor's name.
Expand Down Expand Up @@ -108,7 +105,6 @@ def create(
"/fednow_transfers",
body=maybe_transform(
{
"account_id": account_id,
"amount": amount,
"creditor_name": creditor_name,
"debtor_name": debtor_name,
Expand Down Expand Up @@ -343,7 +339,6 @@ def with_streaming_response(self) -> AsyncFednowTransfersResourceWithStreamingRe
async def create(
self,
*,
account_id: str,
amount: int,
creditor_name: str,
debtor_name: str,
Expand All @@ -367,8 +362,6 @@ async def create(
Create a FedNow Transfer

Args:
account_id: The identifier for the account that will send the transfer.

amount: The amount, in minor units, to send to the creditor.

creditor_name: The creditor's name.
Expand Down Expand Up @@ -406,7 +399,6 @@ async def create(
"/fednow_transfers",
body=await async_maybe_transform(
{
"account_id": account_id,
"amount": amount,
"creditor_name": creditor_name,
"debtor_name": debtor_name,
Expand Down
3 changes: 0 additions & 3 deletions src/increase/types/fednow_transfer_create_params.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,6 @@


class FednowTransferCreateParams(TypedDict, total=False):
account_id: Required[str]
"""The identifier for the account that will send the transfer."""

amount: Required[int]
"""The amount, in minor units, to send to the creditor."""

Expand Down
8 changes: 0 additions & 8 deletions tests/api_resources/test_fednow_transfers.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ class TestFednowTransfers:
@parametrize
def test_method_create(self, client: Increase) -> None:
fednow_transfer = client.fednow_transfers.create(
account_id="account_in71c4amph0vgo2qllky",
amount=100,
creditor_name="Ian Crease",
debtor_name="National Phonograph Company",
Expand All @@ -34,7 +33,6 @@ def test_method_create(self, client: Increase) -> None:
@parametrize
def test_method_create_with_all_params(self, client: Increase) -> None:
fednow_transfer = client.fednow_transfers.create(
account_id="account_in71c4amph0vgo2qllky",
amount=100,
creditor_name="Ian Crease",
debtor_name="National Phonograph Company",
Expand Down Expand Up @@ -62,7 +60,6 @@ def test_method_create_with_all_params(self, client: Increase) -> None:
@parametrize
def test_raw_response_create(self, client: Increase) -> None:
response = client.fednow_transfers.with_raw_response.create(
account_id="account_in71c4amph0vgo2qllky",
amount=100,
creditor_name="Ian Crease",
debtor_name="National Phonograph Company",
Expand All @@ -78,7 +75,6 @@ def test_raw_response_create(self, client: Increase) -> None:
@parametrize
def test_streaming_response_create(self, client: Increase) -> None:
with client.fednow_transfers.with_streaming_response.create(
account_id="account_in71c4amph0vgo2qllky",
amount=100,
creditor_name="Ian Crease",
debtor_name="National Phonograph Company",
Expand Down Expand Up @@ -259,7 +255,6 @@ class TestAsyncFednowTransfers:
@parametrize
async def test_method_create(self, async_client: AsyncIncrease) -> None:
fednow_transfer = await async_client.fednow_transfers.create(
account_id="account_in71c4amph0vgo2qllky",
amount=100,
creditor_name="Ian Crease",
debtor_name="National Phonograph Company",
Expand All @@ -271,7 +266,6 @@ async def test_method_create(self, async_client: AsyncIncrease) -> None:
@parametrize
async def test_method_create_with_all_params(self, async_client: AsyncIncrease) -> None:
fednow_transfer = await async_client.fednow_transfers.create(
account_id="account_in71c4amph0vgo2qllky",
amount=100,
creditor_name="Ian Crease",
debtor_name="National Phonograph Company",
Expand Down Expand Up @@ -299,7 +293,6 @@ async def test_method_create_with_all_params(self, async_client: AsyncIncrease)
@parametrize
async def test_raw_response_create(self, async_client: AsyncIncrease) -> None:
response = await async_client.fednow_transfers.with_raw_response.create(
account_id="account_in71c4amph0vgo2qllky",
amount=100,
creditor_name="Ian Crease",
debtor_name="National Phonograph Company",
Expand All @@ -315,7 +308,6 @@ async def test_raw_response_create(self, async_client: AsyncIncrease) -> None:
@parametrize
async def test_streaming_response_create(self, async_client: AsyncIncrease) -> None:
async with async_client.fednow_transfers.with_streaming_response.create(
account_id="account_in71c4amph0vgo2qllky",
amount=100,
creditor_name="Ian Crease",
debtor_name="National Phonograph Company",
Expand Down