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.361.0"
".": "0.362.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-d7cf5ee0996fbe47611e26c72b8bd36151ce065c410488583977102f1812b84d.yml
openapi_spec_hash: 8c0f2a172afc0eb0f9fae50250c89216
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-b4cda5505a0662dcbad16dabc86715b5353a90685fa9047384e60156f898f3b8.yml
openapi_spec_hash: 0c831296b6f59e535c73162e0e18c175
config_hash: f0b80170c2ea09811aeae3f1e94bc422
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# Changelog

## 0.362.0 (2025-10-22)

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

### Features

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


### Chores

* bump `httpx-aiohttp` version to 0.1.9 ([49a604f](https://github.com/Increase/increase-python/commit/49a604f718924639aa042d4d6b56b04dea1fa8fb))

## 0.361.0 (2025-10-16)

Full Changelog: [v0.360.0...v0.361.0](https://github.com/Increase/increase-python/compare/v0.360.0...v0.361.0)
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "increase"
version = "0.361.0"
version = "0.362.0"
description = "The official Python library for the increase API"
dynamic = ["readme"]
license = "Apache-2.0"
Expand Down Expand Up @@ -39,7 +39,7 @@ Homepage = "https://github.com/Increase/increase-python"
Repository = "https://github.com/Increase/increase-python"

[project.optional-dependencies]
aiohttp = ["aiohttp", "httpx_aiohttp>=0.1.8"]
aiohttp = ["aiohttp", "httpx_aiohttp>=0.1.9"]

[tool.rye]
managed = true
Expand Down
2 changes: 1 addition & 1 deletion requirements-dev.lock
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ httpx==0.28.1
# via httpx-aiohttp
# via increase
# via respx
httpx-aiohttp==0.1.8
httpx-aiohttp==0.1.9
# via increase
idna==3.4
# via anyio
Expand Down
2 changes: 1 addition & 1 deletion requirements.lock
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ httpcore==1.0.9
httpx==0.28.1
# via httpx-aiohttp
# via increase
httpx-aiohttp==0.1.8
httpx-aiohttp==0.1.9
# via increase
idna==3.4
# via anyio
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.361.0" # x-release-please-version
__version__ = "0.362.0" # x-release-please-version
6 changes: 6 additions & 0 deletions src/increase/types/card_payment.py
Original file line number Diff line number Diff line change
Expand Up @@ -3881,6 +3881,12 @@ class State(BaseModel):
transaction's currency. For dollars, for example, this is cents.
"""

refund_authorized_amount: int
"""
The total refund authorized amount in the minor unit of the 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.

Expand Down