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.309.0"
".": "0.310.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: 216
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-7d240ad280fc9ed22a8bbe219835ed737b075963291d84b75efbbb38195eff8b.yml
openapi_spec_hash: f2a2cad4f01bf5ab66e1f3dcb719315a
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-a3db5141ad8a06aca3ec4fbc0a4414af61ffea1bbd6470b4a9ad13f8b24ed9eb.yml
openapi_spec_hash: 1192108447914f9233f6e0933dd36033
config_hash: 632b628b59d8f0b717153b3d8133f6cb
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## 0.310.0 (2025-08-29)

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

### Features

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

## 0.309.0 (2025-08-29)

Full Changelog: [v0.308.0...v0.309.0](https://github.com/Increase/increase-python/compare/v0.308.0...v0.309.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.309.0"
version = "0.310.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.309.0" # x-release-please-version
__version__ = "0.310.0" # x-release-please-version
10 changes: 10 additions & 0 deletions src/increase/types/transaction.py
Original file line number Diff line number Diff line change
Expand Up @@ -2081,6 +2081,16 @@ class SourceInboundWireReversal(BaseModel):
return_reason_additional_information: Optional[str] = None
"""Additional information about the reason for the reversal."""

return_reason_code: Optional[str] = None
"""A code provided by the sending bank giving a reason for the reversal.

It will generally be one of the codes defined in the ISO20022
`ExternalReturnReason1Code` code set, but this is not enforced by the network.
"""

return_reason_code_description: Optional[str] = None
"""An Increase-generated description of the `return_reason_code`."""

transaction_id: str
"""The ID for the Transaction associated with the transfer reversal."""

Expand Down
10 changes: 10 additions & 0 deletions src/increase/types/wire_transfer.py
Original file line number Diff line number Diff line change
Expand Up @@ -123,6 +123,16 @@ class Reversal(BaseModel):
return_reason_additional_information: Optional[str] = None
"""Additional information about the reason for the reversal."""

return_reason_code: Optional[str] = None
"""A code provided by the sending bank giving a reason for the reversal.

It will generally be one of the codes defined in the ISO20022
`ExternalReturnReason1Code` code set, but this is not enforced by the network.
"""

return_reason_code_description: Optional[str] = None
"""An Increase-generated description of the `return_reason_code`."""

transaction_id: str
"""The ID for the Transaction associated with the transfer reversal."""

Expand Down