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.404.0"
".": "0.405.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: 229
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-d3646347697623deab851a220ce4b217e923bde3b3108af9eceb4da6df0534e2.yml
openapi_spec_hash: 516fabeef616c695941d3a4aa4051f76
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-979679fb897563997cb8d20590ac73729287354524a0c2579f4dfd41fa8b63d9.yml
openapi_spec_hash: 22eae96401c4a0de1d135e18133924d1
config_hash: b6f365add90e618b2174634df140826e
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## 0.405.0 (2025-12-05)

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

### Features

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

## 0.404.0 (2025-12-04)

Full Changelog: [v0.403.0...v0.404.0](https://github.com/Increase/increase-python/compare/v0.403.0...v0.404.0)
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.404.0"
version = "0.405.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.404.0" # x-release-please-version
__version__ = "0.405.0" # x-release-please-version
14 changes: 8 additions & 6 deletions src/increase/resources/pending_transactions.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,9 +59,10 @@ def create(
"""Creates a pending transaction on an account.

This can be useful to hold funds
for an external payment or known future transaction outside of Increase. The
resulting Pending Transaction will have a `category` of `user_initiated_hold`
and can be released via the API to unlock the held funds.
for an external payment or known future transaction outside of Increase (only
negative amounts are supported). The resulting Pending Transaction will have a
`category` of `user_initiated_hold` and can be released via the API to unlock
the held funds.

Args:
account_id: The Account to place the hold on.
Expand Down Expand Up @@ -287,9 +288,10 @@ async def create(
"""Creates a pending transaction on an account.

This can be useful to hold funds
for an external payment or known future transaction outside of Increase. The
resulting Pending Transaction will have a `category` of `user_initiated_hold`
and can be released via the API to unlock the held funds.
for an external payment or known future transaction outside of Increase (only
negative amounts are supported). The resulting Pending Transaction will have a
`category` of `user_initiated_hold` and can be released via the API to unlock
the held funds.

Args:
account_id: The Account to place the hold on.
Expand Down