From 65d960e2e1c4343f4c1721f0410b715314de15ba Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Fri, 5 Sep 2025 21:50:45 +0000 Subject: [PATCH 1/2] feat(api): api update --- .stats.yml | 6 +-- api.md | 44 ++++++++--------- src/increase/_client.py | 28 +++++------ src/increase/resources/__init__.py | 12 ++--- .../resources/simulations/__init__.py | 12 ++--- .../resources/simulations/simulations.py | 48 +++++++++---------- 6 files changed, 75 insertions(+), 75 deletions(-) diff --git a/.stats.yml b/.stats.yml index 602fdb7cc..11b34180d 100644 --- a/.stats.yml +++ b/.stats.yml @@ -1,4 +1,4 @@ configured_endpoints: 217 -openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-6d1cfc3f93b6829318d0905c04d24008ab3576d5c00d8eb17c7d55fc34beef9e.yml -openapi_spec_hash: 12f331a1ebc9c7c8465a850736a8d8c6 -config_hash: 2a4a1945e6eefa24fa5b0590cf580fb4 +openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-e74540ca75fc4e7a0e28d2c41c53c6131dff74e1e3c1472601db19509bb77451.yml +openapi_spec_hash: 4030ac2965b556670d1b427ffc5c554b +config_hash: e1885b38eded054b77308a024c5d80cc diff --git a/api.md b/api.md index 217645bfd..c42718fa8 100644 --- a/api.md +++ b/api.md @@ -30,6 +30,22 @@ Methods: - client.account_numbers.update(account_number_id, \*\*params) -> AccountNumber - client.account_numbers.list(\*\*params) -> SyncPage[AccountNumber] +# AccountTransfers + +Types: + +```python +from increase.types import AccountTransfer +``` + +Methods: + +- client.account_transfers.create(\*\*params) -> AccountTransfer +- client.account_transfers.retrieve(account_transfer_id) -> AccountTransfer +- client.account_transfers.list(\*\*params) -> SyncPage[AccountTransfer] +- client.account_transfers.approve(account_transfer_id) -> AccountTransfer +- client.account_transfers.cancel(account_transfer_id) -> AccountTransfer + # Cards Types: @@ -188,22 +204,6 @@ Methods: - client.declined_transactions.retrieve(declined_transaction_id) -> DeclinedTransaction - client.declined_transactions.list(\*\*params) -> SyncPage[DeclinedTransaction] -# AccountTransfers - -Types: - -```python -from increase.types import AccountTransfer -``` - -Methods: - -- client.account_transfers.create(\*\*params) -> AccountTransfer -- client.account_transfers.retrieve(account_transfer_id) -> AccountTransfer -- client.account_transfers.list(\*\*params) -> SyncPage[AccountTransfer] -- client.account_transfers.approve(account_transfer_id) -> AccountTransfer -- client.account_transfers.cancel(account_transfer_id) -> AccountTransfer - # ACHTransfers Types: @@ -786,6 +786,12 @@ Methods: - client.simulations.interest_payments.create(\*\*params) -> Transaction +## AccountTransfers + +Methods: + +- client.simulations.account_transfers.complete(account_transfer_id) -> AccountTransfer + ## CardAuthorizations Types: @@ -865,12 +871,6 @@ Methods: - client.simulations.pending_transactions.release_inbound_funds_hold(pending_transaction_id) -> PendingTransaction -## AccountTransfers - -Methods: - -- client.simulations.account_transfers.complete(account_transfer_id) -> AccountTransfer - ## ACHTransfers Methods: diff --git a/src/increase/_client.py b/src/increase/_client.py index 9e7401e83..9d50bd591 100644 --- a/src/increase/_client.py +++ b/src/increase/_client.py @@ -112,6 +112,7 @@ class Increase(SyncAPIClient): accounts: accounts.AccountsResource account_numbers: account_numbers.AccountNumbersResource + account_transfers: account_transfers.AccountTransfersResource cards: cards.CardsResource card_payments: card_payments.CardPaymentsResource card_purchase_supplements: card_purchase_supplements.CardPurchaseSupplementsResource @@ -123,7 +124,6 @@ class Increase(SyncAPIClient): transactions: transactions.TransactionsResource pending_transactions: pending_transactions.PendingTransactionsResource declined_transactions: declined_transactions.DeclinedTransactionsResource - account_transfers: account_transfers.AccountTransfersResource ach_transfers: ach_transfers.ACHTransfersResource ach_prenotifications: ach_prenotifications.ACHPrenotificationsResource inbound_ach_transfers: inbound_ach_transfers.InboundACHTransfersResource @@ -259,6 +259,7 @@ def __init__( self.accounts = accounts.AccountsResource(self) self.account_numbers = account_numbers.AccountNumbersResource(self) + self.account_transfers = account_transfers.AccountTransfersResource(self) self.cards = cards.CardsResource(self) self.card_payments = card_payments.CardPaymentsResource(self) self.card_purchase_supplements = card_purchase_supplements.CardPurchaseSupplementsResource(self) @@ -270,7 +271,6 @@ def __init__( self.transactions = transactions.TransactionsResource(self) self.pending_transactions = pending_transactions.PendingTransactionsResource(self) self.declined_transactions = declined_transactions.DeclinedTransactionsResource(self) - self.account_transfers = account_transfers.AccountTransfersResource(self) self.ach_transfers = ach_transfers.ACHTransfersResource(self) self.ach_prenotifications = ach_prenotifications.ACHPrenotificationsResource(self) self.inbound_ach_transfers = inbound_ach_transfers.InboundACHTransfersResource(self) @@ -475,6 +475,7 @@ def _make_status_error( class AsyncIncrease(AsyncAPIClient): accounts: accounts.AsyncAccountsResource account_numbers: account_numbers.AsyncAccountNumbersResource + account_transfers: account_transfers.AsyncAccountTransfersResource cards: cards.AsyncCardsResource card_payments: card_payments.AsyncCardPaymentsResource card_purchase_supplements: card_purchase_supplements.AsyncCardPurchaseSupplementsResource @@ -486,7 +487,6 @@ class AsyncIncrease(AsyncAPIClient): transactions: transactions.AsyncTransactionsResource pending_transactions: pending_transactions.AsyncPendingTransactionsResource declined_transactions: declined_transactions.AsyncDeclinedTransactionsResource - account_transfers: account_transfers.AsyncAccountTransfersResource ach_transfers: ach_transfers.AsyncACHTransfersResource ach_prenotifications: ach_prenotifications.AsyncACHPrenotificationsResource inbound_ach_transfers: inbound_ach_transfers.AsyncInboundACHTransfersResource @@ -624,6 +624,7 @@ def __init__( self.accounts = accounts.AsyncAccountsResource(self) self.account_numbers = account_numbers.AsyncAccountNumbersResource(self) + self.account_transfers = account_transfers.AsyncAccountTransfersResource(self) self.cards = cards.AsyncCardsResource(self) self.card_payments = card_payments.AsyncCardPaymentsResource(self) self.card_purchase_supplements = card_purchase_supplements.AsyncCardPurchaseSupplementsResource(self) @@ -635,7 +636,6 @@ def __init__( self.transactions = transactions.AsyncTransactionsResource(self) self.pending_transactions = pending_transactions.AsyncPendingTransactionsResource(self) self.declined_transactions = declined_transactions.AsyncDeclinedTransactionsResource(self) - self.account_transfers = account_transfers.AsyncAccountTransfersResource(self) self.ach_transfers = ach_transfers.AsyncACHTransfersResource(self) self.ach_prenotifications = ach_prenotifications.AsyncACHPrenotificationsResource(self) self.inbound_ach_transfers = inbound_ach_transfers.AsyncInboundACHTransfersResource(self) @@ -843,6 +843,7 @@ class IncreaseWithRawResponse: def __init__(self, client: Increase) -> None: self.accounts = accounts.AccountsResourceWithRawResponse(client.accounts) self.account_numbers = account_numbers.AccountNumbersResourceWithRawResponse(client.account_numbers) + self.account_transfers = account_transfers.AccountTransfersResourceWithRawResponse(client.account_transfers) self.cards = cards.CardsResourceWithRawResponse(client.cards) self.card_payments = card_payments.CardPaymentsResourceWithRawResponse(client.card_payments) self.card_purchase_supplements = card_purchase_supplements.CardPurchaseSupplementsResourceWithRawResponse( @@ -866,7 +867,6 @@ def __init__(self, client: Increase) -> None: self.declined_transactions = declined_transactions.DeclinedTransactionsResourceWithRawResponse( client.declined_transactions ) - self.account_transfers = account_transfers.AccountTransfersResourceWithRawResponse(client.account_transfers) self.ach_transfers = ach_transfers.ACHTransfersResourceWithRawResponse(client.ach_transfers) self.ach_prenotifications = ach_prenotifications.ACHPrenotificationsResourceWithRawResponse( client.ach_prenotifications @@ -952,6 +952,9 @@ class AsyncIncreaseWithRawResponse: def __init__(self, client: AsyncIncrease) -> None: self.accounts = accounts.AsyncAccountsResourceWithRawResponse(client.accounts) self.account_numbers = account_numbers.AsyncAccountNumbersResourceWithRawResponse(client.account_numbers) + self.account_transfers = account_transfers.AsyncAccountTransfersResourceWithRawResponse( + client.account_transfers + ) self.cards = cards.AsyncCardsResourceWithRawResponse(client.cards) self.card_payments = card_payments.AsyncCardPaymentsResourceWithRawResponse(client.card_payments) self.card_purchase_supplements = card_purchase_supplements.AsyncCardPurchaseSupplementsResourceWithRawResponse( @@ -975,9 +978,6 @@ def __init__(self, client: AsyncIncrease) -> None: self.declined_transactions = declined_transactions.AsyncDeclinedTransactionsResourceWithRawResponse( client.declined_transactions ) - self.account_transfers = account_transfers.AsyncAccountTransfersResourceWithRawResponse( - client.account_transfers - ) self.ach_transfers = ach_transfers.AsyncACHTransfersResourceWithRawResponse(client.ach_transfers) self.ach_prenotifications = ach_prenotifications.AsyncACHPrenotificationsResourceWithRawResponse( client.ach_prenotifications @@ -1077,6 +1077,9 @@ class IncreaseWithStreamedResponse: def __init__(self, client: Increase) -> None: self.accounts = accounts.AccountsResourceWithStreamingResponse(client.accounts) self.account_numbers = account_numbers.AccountNumbersResourceWithStreamingResponse(client.account_numbers) + self.account_transfers = account_transfers.AccountTransfersResourceWithStreamingResponse( + client.account_transfers + ) self.cards = cards.CardsResourceWithStreamingResponse(client.cards) self.card_payments = card_payments.CardPaymentsResourceWithStreamingResponse(client.card_payments) self.card_purchase_supplements = card_purchase_supplements.CardPurchaseSupplementsResourceWithStreamingResponse( @@ -1100,9 +1103,6 @@ def __init__(self, client: Increase) -> None: self.declined_transactions = declined_transactions.DeclinedTransactionsResourceWithStreamingResponse( client.declined_transactions ) - self.account_transfers = account_transfers.AccountTransfersResourceWithStreamingResponse( - client.account_transfers - ) self.ach_transfers = ach_transfers.ACHTransfersResourceWithStreamingResponse(client.ach_transfers) self.ach_prenotifications = ach_prenotifications.ACHPrenotificationsResourceWithStreamingResponse( client.ach_prenotifications @@ -1202,6 +1202,9 @@ class AsyncIncreaseWithStreamedResponse: def __init__(self, client: AsyncIncrease) -> None: self.accounts = accounts.AsyncAccountsResourceWithStreamingResponse(client.accounts) self.account_numbers = account_numbers.AsyncAccountNumbersResourceWithStreamingResponse(client.account_numbers) + self.account_transfers = account_transfers.AsyncAccountTransfersResourceWithStreamingResponse( + client.account_transfers + ) self.cards = cards.AsyncCardsResourceWithStreamingResponse(client.cards) self.card_payments = card_payments.AsyncCardPaymentsResourceWithStreamingResponse(client.card_payments) self.card_purchase_supplements = ( @@ -1227,9 +1230,6 @@ def __init__(self, client: AsyncIncrease) -> None: self.declined_transactions = declined_transactions.AsyncDeclinedTransactionsResourceWithStreamingResponse( client.declined_transactions ) - self.account_transfers = account_transfers.AsyncAccountTransfersResourceWithStreamingResponse( - client.account_transfers - ) self.ach_transfers = ach_transfers.AsyncACHTransfersResourceWithStreamingResponse(client.ach_transfers) self.ach_prenotifications = ach_prenotifications.AsyncACHPrenotificationsResourceWithStreamingResponse( client.ach_prenotifications diff --git a/src/increase/resources/__init__.py b/src/increase/resources/__init__.py index aff330664..d00f033c3 100644 --- a/src/increase/resources/__init__.py +++ b/src/increase/resources/__init__.py @@ -455,6 +455,12 @@ "AsyncAccountNumbersResourceWithRawResponse", "AccountNumbersResourceWithStreamingResponse", "AsyncAccountNumbersResourceWithStreamingResponse", + "AccountTransfersResource", + "AsyncAccountTransfersResource", + "AccountTransfersResourceWithRawResponse", + "AsyncAccountTransfersResourceWithRawResponse", + "AccountTransfersResourceWithStreamingResponse", + "AsyncAccountTransfersResourceWithStreamingResponse", "CardsResource", "AsyncCardsResource", "CardsResourceWithRawResponse", @@ -521,12 +527,6 @@ "AsyncDeclinedTransactionsResourceWithRawResponse", "DeclinedTransactionsResourceWithStreamingResponse", "AsyncDeclinedTransactionsResourceWithStreamingResponse", - "AccountTransfersResource", - "AsyncAccountTransfersResource", - "AccountTransfersResourceWithRawResponse", - "AsyncAccountTransfersResourceWithRawResponse", - "AccountTransfersResourceWithStreamingResponse", - "AsyncAccountTransfersResourceWithStreamingResponse", "ACHTransfersResource", "AsyncACHTransfersResource", "ACHTransfersResourceWithRawResponse", diff --git a/src/increase/resources/simulations/__init__.py b/src/increase/resources/simulations/__init__.py index fddc2a393..c1a47a541 100644 --- a/src/increase/resources/simulations/__init__.py +++ b/src/increase/resources/simulations/__init__.py @@ -248,6 +248,12 @@ "AsyncInterestPaymentsResourceWithRawResponse", "InterestPaymentsResourceWithStreamingResponse", "AsyncInterestPaymentsResourceWithStreamingResponse", + "AccountTransfersResource", + "AsyncAccountTransfersResource", + "AccountTransfersResourceWithRawResponse", + "AsyncAccountTransfersResourceWithRawResponse", + "AccountTransfersResourceWithStreamingResponse", + "AsyncAccountTransfersResourceWithStreamingResponse", "CardAuthorizationsResource", "AsyncCardAuthorizationsResource", "CardAuthorizationsResourceWithRawResponse", @@ -314,12 +320,6 @@ "AsyncPendingTransactionsResourceWithRawResponse", "PendingTransactionsResourceWithStreamingResponse", "AsyncPendingTransactionsResourceWithStreamingResponse", - "AccountTransfersResource", - "AsyncAccountTransfersResource", - "AccountTransfersResourceWithRawResponse", - "AsyncAccountTransfersResourceWithRawResponse", - "AccountTransfersResourceWithStreamingResponse", - "AsyncAccountTransfersResourceWithStreamingResponse", "ACHTransfersResource", "AsyncACHTransfersResource", "ACHTransfersResourceWithRawResponse", diff --git a/src/increase/resources/simulations/simulations.py b/src/increase/resources/simulations/simulations.py index 977defe5c..4b1ea1a12 100644 --- a/src/increase/resources/simulations/simulations.py +++ b/src/increase/resources/simulations/simulations.py @@ -245,6 +245,10 @@ 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) @@ -289,10 +293,6 @@ def digital_wallet_token_requests(self) -> DigitalWalletTokenRequestsResource: def pending_transactions(self) -> PendingTransactionsResource: return PendingTransactionsResource(self._client) - @cached_property - def account_transfers(self) -> AccountTransfersResource: - return AccountTransfersResource(self._client) - @cached_property def ach_transfers(self) -> ACHTransfersResource: return ACHTransfersResource(self._client) @@ -382,6 +382,10 @@ 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) @@ -426,10 +430,6 @@ def digital_wallet_token_requests(self) -> AsyncDigitalWalletTokenRequestsResour def pending_transactions(self) -> AsyncPendingTransactionsResource: return AsyncPendingTransactionsResource(self._client) - @cached_property - def account_transfers(self) -> AsyncAccountTransfersResource: - return AsyncAccountTransfersResource(self._client) - @cached_property def ach_transfers(self) -> AsyncACHTransfersResource: return AsyncACHTransfersResource(self._client) @@ -522,6 +522,10 @@ 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) @@ -566,10 +570,6 @@ def digital_wallet_token_requests(self) -> DigitalWalletTokenRequestsResourceWit def pending_transactions(self) -> PendingTransactionsResourceWithRawResponse: return PendingTransactionsResourceWithRawResponse(self._simulations.pending_transactions) - @cached_property - def account_transfers(self) -> AccountTransfersResourceWithRawResponse: - return AccountTransfersResourceWithRawResponse(self._simulations.account_transfers) - @cached_property def ach_transfers(self) -> ACHTransfersResourceWithRawResponse: return ACHTransfersResourceWithRawResponse(self._simulations.ach_transfers) @@ -645,6 +645,10 @@ 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) @@ -691,10 +695,6 @@ def digital_wallet_token_requests(self) -> AsyncDigitalWalletTokenRequestsResour def pending_transactions(self) -> AsyncPendingTransactionsResourceWithRawResponse: return AsyncPendingTransactionsResourceWithRawResponse(self._simulations.pending_transactions) - @cached_property - def account_transfers(self) -> AsyncAccountTransfersResourceWithRawResponse: - return AsyncAccountTransfersResourceWithRawResponse(self._simulations.account_transfers) - @cached_property def ach_transfers(self) -> AsyncACHTransfersResourceWithRawResponse: return AsyncACHTransfersResourceWithRawResponse(self._simulations.ach_transfers) @@ -770,6 +770,10 @@ 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) @@ -816,10 +820,6 @@ def digital_wallet_token_requests(self) -> DigitalWalletTokenRequestsResourceWit def pending_transactions(self) -> PendingTransactionsResourceWithStreamingResponse: return PendingTransactionsResourceWithStreamingResponse(self._simulations.pending_transactions) - @cached_property - def account_transfers(self) -> AccountTransfersResourceWithStreamingResponse: - return AccountTransfersResourceWithStreamingResponse(self._simulations.account_transfers) - @cached_property def ach_transfers(self) -> ACHTransfersResourceWithStreamingResponse: return ACHTransfersResourceWithStreamingResponse(self._simulations.ach_transfers) @@ -897,6 +897,10 @@ 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) @@ -945,10 +949,6 @@ def digital_wallet_token_requests(self) -> AsyncDigitalWalletTokenRequestsResour def pending_transactions(self) -> AsyncPendingTransactionsResourceWithStreamingResponse: return AsyncPendingTransactionsResourceWithStreamingResponse(self._simulations.pending_transactions) - @cached_property - def account_transfers(self) -> AsyncAccountTransfersResourceWithStreamingResponse: - return AsyncAccountTransfersResourceWithStreamingResponse(self._simulations.account_transfers) - @cached_property def ach_transfers(self) -> AsyncACHTransfersResourceWithStreamingResponse: return AsyncACHTransfersResourceWithStreamingResponse(self._simulations.ach_transfers) From 75d93748223375c209f2bef5ff58f2bdfb0a08dc Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Fri, 5 Sep 2025 21:51:06 +0000 Subject: [PATCH 2/2] release: 0.316.0 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 8 ++++++++ pyproject.toml | 2 +- src/increase/_version.py | 2 +- 4 files changed, 11 insertions(+), 3 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index f93c4039e..d4bd34171 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.315.0" + ".": "0.316.0" } \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index 41d153384..6250872c1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 0.316.0 (2025-09-05) + +Full Changelog: [v0.315.0...v0.316.0](https://github.com/Increase/increase-python/compare/v0.315.0...v0.316.0) + +### Features + +* **api:** api update ([65d960e](https://github.com/Increase/increase-python/commit/65d960e2e1c4343f4c1721f0410b715314de15ba)) + ## 0.315.0 (2025-09-05) Full Changelog: [v0.314.0...v0.315.0](https://github.com/Increase/increase-python/compare/v0.314.0...v0.315.0) diff --git a/pyproject.toml b/pyproject.toml index 9a86e5236..f4fbcd694 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "increase" -version = "0.315.0" +version = "0.316.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 ea05acb79..21aa1fec6 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.315.0" # x-release-please-version +__version__ = "0.316.0" # x-release-please-version