diff --git a/.release-please-manifest.json b/.release-please-manifest.json index b72fe778..bc54c8a6 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.450.1" + ".": "0.451.0" } \ No newline at end of file diff --git a/.stats.yml b/.stats.yml index 8e3e051f..e317ba88 100644 --- a/.stats.yml +++ b/.stats.yml @@ -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 diff --git a/CHANGELOG.md b/CHANGELOG.md index 34c88ba8..21b254fc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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) diff --git a/pyproject.toml b/pyproject.toml index 6323c452..4f3c2557 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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" diff --git a/src/increase/_version.py b/src/increase/_version.py index 98a34240..66e49682 100644 --- a/src/increase/_version.py +++ b/src/increase/_version.py @@ -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 diff --git a/src/increase/resources/fednow_transfers.py b/src/increase/resources/fednow_transfers.py index d29106d6..23c2ea80 100644 --- a/src/increase/resources/fednow_transfers.py +++ b/src/increase/resources/fednow_transfers.py @@ -45,7 +45,6 @@ def with_streaming_response(self) -> FednowTransfersResourceWithStreamingRespons def create( self, *, - account_id: str, amount: int, creditor_name: str, debtor_name: str, @@ -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. @@ -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, @@ -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, @@ -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. @@ -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, diff --git a/src/increase/types/fednow_transfer_create_params.py b/src/increase/types/fednow_transfer_create_params.py index 29fa5145..72986a54 100644 --- a/src/increase/types/fednow_transfer_create_params.py +++ b/src/increase/types/fednow_transfer_create_params.py @@ -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.""" diff --git a/tests/api_resources/test_fednow_transfers.py b/tests/api_resources/test_fednow_transfers.py index c13a3ee4..9059977e 100644 --- a/tests/api_resources/test_fednow_transfers.py +++ b/tests/api_resources/test_fednow_transfers.py @@ -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", @@ -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", @@ -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", @@ -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", @@ -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", @@ -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", @@ -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", @@ -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",