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.486.0"
".": "0.487.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: 241
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-c073272ef500d513b8cbfb34d34df2d533037ac9154417004dc9071cbc60357e.yml
openapi_spec_hash: 45bfadd7b28234485f1064ae5bd4edfc
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-05341d7f8aa36455db1b6bb5f613a08ee7c7beba3e868c7e18befe429cfd7625.yml
openapi_spec_hash: 321b419c81281651e70db5ab2549af67
config_hash: cb5b8736705c06b670f6a25484622d62
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## 0.487.0 (2026-04-16)

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

### Features

* **api:** api update ([41eb1b5](https://github.com/Increase/increase-python/commit/41eb1b53ad0a50440403990dfcc54fd0064d745b))

## 0.486.0 (2026-04-15)

Full Changelog: [v0.485.0...v0.486.0](https://github.com/Increase/increase-python/compare/v0.485.0...v0.486.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.486.0"
version = "0.487.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.486.0" # x-release-please-version
__version__ = "0.487.0" # x-release-please-version
7 changes: 7 additions & 0 deletions src/increase/types/wire_transfer.py
Original file line number Diff line number Diff line change
Expand Up @@ -443,6 +443,13 @@ class WireTransfer(BaseModel):
For this resource it will always be `wire_transfer`.
"""

unique_end_to_end_transaction_reference: Optional[str] = None
"""
The unique end-to-end transaction reference
([UETR](https://www.swift.com/payments/what-unique-end-end-transaction-reference-uetr))
of the transfer.
"""

if TYPE_CHECKING:
# Some versions of Pydantic <2.8.0 have a bug and don’t allow assigning a
# value to this field, so for compatibility we avoid doing it at runtime.
Expand Down