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.349.0"
".": "0.350.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: 220
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-dc0a89abaae59dd7fc23cc5463a412d79b5c8c042eb144b05e97823d11a76b2b.yml
openapi_spec_hash: 24ce07f273cf90d08b3fa22958316846
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-fcc4e952b005ab1fd26ae67fe0cac46a57699299c92e00680d4d0f6be51d7936.yml
openapi_spec_hash: f1a7326721f814625c7d5484956afded
config_hash: f0b80170c2ea09811aeae3f1e94bc422
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## 0.350.0 (2025-10-03)

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

### Features

* **api:** api update ([0257e0e](https://github.com/Increase/increase-python/commit/0257e0e3f3a59836adb64beb39bd99b6d7a6790c))

## 0.349.0 (2025-10-01)

Full Changelog: [v0.348.0...v0.349.0](https://github.com/Increase/increase-python/compare/v0.348.0...v0.349.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.349.0"
version = "0.350.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.349.0" # x-release-please-version
__version__ = "0.350.0" # x-release-please-version
12 changes: 9 additions & 3 deletions src/increase/types/card_payment.py
Original file line number Diff line number Diff line change
Expand Up @@ -3816,16 +3816,22 @@ class State(BaseModel):
transaction's currency. For dollars, for example, this is cents.
"""

refunded_amount: int
"""The total refunded amount in the minor unit of the transaction's currency.

For dollars, for example, this is cents.
"""

reversed_amount: int
"""The total reversed amount in the minor unit of the transaction's currency.

For dollars, for example, this is cents.
"""

settled_amount: int
"""
The total settled or refunded amount in the minor unit of the transaction's
currency. For dollars, for example, this is cents.
"""The total settled amount in the minor unit of the transaction's currency.

For dollars, for example, this is cents.
"""


Expand Down