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.482.0"
".": "0.483.0"
}
8 changes: 4 additions & 4 deletions .stats.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
configured_endpoints: 241
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-ec147e2dbcccb835ada48a743903d43ab228330e476558ba74dc87f248345303.yml
openapi_spec_hash: 333fdaec2de515a123cc44401b432aa2
config_hash: d48e9f65bcf642f92610034d6c43f07a
configured_endpoints: 240
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-c9957e6ab1c9adef0dfb9a3956c8e7505a1661d22e79531eaee71b2a3a699b61.yml
openapi_spec_hash: 1190741469af674747df81908239a601
config_hash: 82cb0fb1fae47b3467cd6da4273541de
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## 0.483.0 (2026-04-13)

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

### Features

* **api:** api update ([a56256d](https://github.com/Increase/increase-python/commit/a56256d714ab151e425ffdea9c5e2c1ad1e2e0bc))

## 0.482.0 (2026-04-13)

Full Changelog: [v0.481.0...v0.482.0](https://github.com/Increase/increase-python/compare/v0.481.0...v0.482.0)
Expand Down
6 changes: 0 additions & 6 deletions api.md
Original file line number Diff line number Diff line change
Expand Up @@ -839,12 +839,6 @@ Methods:

- <code title="post /simulations/interest_payments">client.simulations.interest_payments.<a href="./src/increase/resources/simulations/interest_payments.py">create</a>(\*\*<a href="src/increase/types/simulations/interest_payment_create_params.py">params</a>) -> <a href="./src/increase/types/transaction.py">Transaction</a></code>

## AccountTransfers

Methods:

- <code title="post /simulations/account_transfers/{account_transfer_id}/complete">client.simulations.account_transfers.<a href="./src/increase/resources/simulations/account_transfers.py">complete</a>(account_transfer_id) -> <a href="./src/increase/types/account_transfer.py">AccountTransfer</a></code>

## CardAuthorizations

Types:
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.482.0"
version = "0.483.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.482.0" # x-release-please-version
__version__ = "0.483.0" # x-release-please-version
14 changes: 0 additions & 14 deletions src/increase/resources/simulations/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -112,14 +112,6 @@
CardSettlementsResourceWithStreamingResponse,
AsyncCardSettlementsResourceWithStreamingResponse,
)
from .account_transfers import (
AccountTransfersResource,
AsyncAccountTransfersResource,
AccountTransfersResourceWithRawResponse,
AsyncAccountTransfersResourceWithRawResponse,
AccountTransfersResourceWithStreamingResponse,
AsyncAccountTransfersResourceWithStreamingResponse,
)
from .interest_payments import (
InterestPaymentsResource,
AsyncInterestPaymentsResource,
Expand Down Expand Up @@ -280,12 +272,6 @@
"AsyncInterestPaymentsResourceWithRawResponse",
"InterestPaymentsResourceWithStreamingResponse",
"AsyncInterestPaymentsResourceWithStreamingResponse",
"AccountTransfersResource",
"AsyncAccountTransfersResource",
"AccountTransfersResourceWithRawResponse",
"AsyncAccountTransfersResourceWithRawResponse",
"AccountTransfersResourceWithStreamingResponse",
"AsyncAccountTransfersResourceWithStreamingResponse",
"CardAuthorizationsResource",
"AsyncCardAuthorizationsResource",
"CardAuthorizationsResourceWithRawResponse",
Expand Down
196 changes: 0 additions & 196 deletions src/increase/resources/simulations/account_transfers.py

This file was deleted.

32 changes: 0 additions & 32 deletions src/increase/resources/simulations/simulations.py
Original file line number Diff line number Diff line change
Expand Up @@ -108,14 +108,6 @@
CardSettlementsResourceWithStreamingResponse,
AsyncCardSettlementsResourceWithStreamingResponse,
)
from .account_transfers import (
AccountTransfersResource,
AsyncAccountTransfersResource,
AccountTransfersResourceWithRawResponse,
AsyncAccountTransfersResourceWithRawResponse,
AccountTransfersResourceWithStreamingResponse,
AsyncAccountTransfersResourceWithStreamingResponse,
)
from .interest_payments import (
InterestPaymentsResource,
AsyncInterestPaymentsResource,
Expand Down Expand Up @@ -277,10 +269,6 @@ class SimulationsResource(SyncAPIResource):
def interest_payments(self) -> InterestPaymentsResource:
return InterestPaymentsResource(self._client)

@cached_property
def account_transfers(self) -> AccountTransfersResource:
return AccountTransfersResource(self._client)

@cached_property
def card_authorizations(self) -> CardAuthorizationsResource:
return CardAuthorizationsResource(self._client)
Expand Down Expand Up @@ -430,10 +418,6 @@ class AsyncSimulationsResource(AsyncAPIResource):
def interest_payments(self) -> AsyncInterestPaymentsResource:
return AsyncInterestPaymentsResource(self._client)

@cached_property
def account_transfers(self) -> AsyncAccountTransfersResource:
return AsyncAccountTransfersResource(self._client)

@cached_property
def card_authorizations(self) -> AsyncCardAuthorizationsResource:
return AsyncCardAuthorizationsResource(self._client)
Expand Down Expand Up @@ -586,10 +570,6 @@ def __init__(self, simulations: SimulationsResource) -> None:
def interest_payments(self) -> InterestPaymentsResourceWithRawResponse:
return InterestPaymentsResourceWithRawResponse(self._simulations.interest_payments)

@cached_property
def account_transfers(self) -> AccountTransfersResourceWithRawResponse:
return AccountTransfersResourceWithRawResponse(self._simulations.account_transfers)

@cached_property
def card_authorizations(self) -> CardAuthorizationsResourceWithRawResponse:
return CardAuthorizationsResourceWithRawResponse(self._simulations.card_authorizations)
Expand Down Expand Up @@ -725,10 +705,6 @@ def __init__(self, simulations: AsyncSimulationsResource) -> None:
def interest_payments(self) -> AsyncInterestPaymentsResourceWithRawResponse:
return AsyncInterestPaymentsResourceWithRawResponse(self._simulations.interest_payments)

@cached_property
def account_transfers(self) -> AsyncAccountTransfersResourceWithRawResponse:
return AsyncAccountTransfersResourceWithRawResponse(self._simulations.account_transfers)

@cached_property
def card_authorizations(self) -> AsyncCardAuthorizationsResourceWithRawResponse:
return AsyncCardAuthorizationsResourceWithRawResponse(self._simulations.card_authorizations)
Expand Down Expand Up @@ -866,10 +842,6 @@ def __init__(self, simulations: SimulationsResource) -> None:
def interest_payments(self) -> InterestPaymentsResourceWithStreamingResponse:
return InterestPaymentsResourceWithStreamingResponse(self._simulations.interest_payments)

@cached_property
def account_transfers(self) -> AccountTransfersResourceWithStreamingResponse:
return AccountTransfersResourceWithStreamingResponse(self._simulations.account_transfers)

@cached_property
def card_authorizations(self) -> CardAuthorizationsResourceWithStreamingResponse:
return CardAuthorizationsResourceWithStreamingResponse(self._simulations.card_authorizations)
Expand Down Expand Up @@ -1009,10 +981,6 @@ def __init__(self, simulations: AsyncSimulationsResource) -> None:
def interest_payments(self) -> AsyncInterestPaymentsResourceWithStreamingResponse:
return AsyncInterestPaymentsResourceWithStreamingResponse(self._simulations.interest_payments)

@cached_property
def account_transfers(self) -> AsyncAccountTransfersResourceWithStreamingResponse:
return AsyncAccountTransfersResourceWithStreamingResponse(self._simulations.account_transfers)

@cached_property
def card_authorizations(self) -> AsyncCardAuthorizationsResourceWithStreamingResponse:
return AsyncCardAuthorizationsResourceWithStreamingResponse(self._simulations.card_authorizations)
Expand Down
Loading