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.409.0"
".": "0.410.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: 229
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-79f55910f087930ab5447372ef856ab63fe18f08d2151c59b8aebcccd6f41700.yml
openapi_spec_hash: 5b6d915106e3361863168d9b084a570c
config_hash: b6f365add90e618b2174634df140826e
configured_endpoints: 230
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-6f7d8729d517e528b4a2bad402f49122fdf982be7b2df213c393e0d692cef7e7.yml
openapi_spec_hash: bd048174c7a122d23818810434e7881d
config_hash: dd86da070cc89eb6d3868bf23764c847
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## 0.410.0 (2025-12-09)

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

### Features

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

## 0.409.0 (2025-12-08)

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

- <code title="post /simulations/card_authorizations">client.simulations.card_authorizations.<a href="./src/increase/resources/simulations/card_authorizations.py">create</a>(\*\*<a href="src/increase/types/simulations/card_authorization_create_params.py">params</a>) -> <a href="./src/increase/types/simulations/card_authorization_create_response.py">CardAuthorizationCreateResponse</a></code>

## CardBalanceInquiries

Methods:

- <code title="post /simulations/card_balance_inquiries">client.simulations.card_balance_inquiries.<a href="./src/increase/resources/simulations/card_balance_inquiries.py">create</a>(\*\*<a href="src/increase/types/simulations/card_balance_inquiry_create_params.py">params</a>) -> <a href="./src/increase/types/card_payment.py">CardPayment</a></code>

## CardAuthorizationExpirations

Methods:
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.409.0"
version = "0.410.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.409.0" # x-release-please-version
__version__ = "0.410.0" # x-release-please-version
14 changes: 14 additions & 0 deletions src/increase/resources/simulations/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -168,6 +168,14 @@
InboundACHTransfersResourceWithStreamingResponse,
AsyncInboundACHTransfersResourceWithStreamingResponse,
)
from .card_balance_inquiries import (
CardBalanceInquiriesResource,
AsyncCardBalanceInquiriesResource,
CardBalanceInquiriesResourceWithRawResponse,
AsyncCardBalanceInquiriesResourceWithRawResponse,
CardBalanceInquiriesResourceWithStreamingResponse,
AsyncCardBalanceInquiriesResourceWithStreamingResponse,
)
from .inbound_check_deposits import (
InboundCheckDepositsResource,
AsyncInboundCheckDepositsResource,
Expand Down Expand Up @@ -268,6 +276,12 @@
"AsyncCardAuthorizationsResourceWithRawResponse",
"CardAuthorizationsResourceWithStreamingResponse",
"AsyncCardAuthorizationsResourceWithStreamingResponse",
"CardBalanceInquiriesResource",
"AsyncCardBalanceInquiriesResource",
"CardBalanceInquiriesResourceWithRawResponse",
"AsyncCardBalanceInquiriesResourceWithRawResponse",
"CardBalanceInquiriesResourceWithStreamingResponse",
"AsyncCardBalanceInquiriesResourceWithStreamingResponse",
"CardAuthorizationExpirationsResource",
"AsyncCardAuthorizationExpirationsResource",
"CardAuthorizationExpirationsResourceWithRawResponse",
Expand Down
Loading