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.250.0"
".": "0.251.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: 201
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-101cab80ae65141fb306c316367abab195616ae8f2ce61d87e0d66e3caa4ef2f.yml
openapi_spec_hash: 9338ab9453d1a0f426e9998e574bff67
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-2c62370ab61731722fddc5be1652ccfd9188ae052be44fae639b4a7920afc3b3.yml
openapi_spec_hash: aefdd344388757e80e1fea0ad0506be8
config_hash: 97774f946585cecb19181a1817870d0b
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## 0.251.0 (2025-06-12)

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

### Features

* **api:** api update ([4d12775](https://github.com/Increase/increase-python/commit/4d12775c0ddd0cb3e53c45b7de6cd50c31c69e9a))

## 0.250.0 (2025-06-11)

Full Changelog: [v0.249.0...v0.250.0](https://github.com/Increase/increase-python/compare/v0.249.0...v0.250.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.250.0"
version = "0.251.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.250.0" # x-release-please-version
__version__ = "0.251.0" # x-release-please-version
11 changes: 11 additions & 0 deletions src/increase/types/pending_transaction.py
Original file line number Diff line number Diff line change
Expand Up @@ -772,6 +772,17 @@ class PendingTransaction(BaseModel):
For dollars, for example, this is cents.
"""

balance_impact: Literal["affects_available_balance", "none"]
"""
How the Pending Transaction affects the balance of its Account while its status
is `pending`.

- `affects_available_balance` - This Pending Transaction will decrement the
available balance on the Account while its status is `pending`.
- `none` - This Pending Transaction does not affect the available balance on the
Account.
"""

completed_at: Optional[datetime] = None
"""
The [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) date on which the Pending
Expand Down