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.289.0"
".": "0.290.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: 214
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-db453f5a5c4734d0cc56f9f61a1cbfaceb9b51f47076b75595bdc9fdedd439c7.yml
openapi_spec_hash: 0cd9098d2af2b4cee4f6678d01fb9516
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-dea7b54f0adc920e4d2bc337bab1133189114389cb1f124b2f9cccedcedf881c.yml
openapi_spec_hash: c1349e34f78bfe5ba28b946fe7bb15dd
config_hash: b0b366d8c705ea0efe62093bae953e5a
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## 0.290.0 (2025-08-19)

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

### Features

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

## 0.289.0 (2025-08-18)

Full Changelog: [v0.288.0...v0.289.0](https://github.com/Increase/increase-python/compare/v0.288.0...v0.289.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.289.0"
version = "0.290.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.289.0" # x-release-please-version
__version__ = "0.290.0" # x-release-please-version
46 changes: 46 additions & 0 deletions src/increase/types/inbound_wire_transfer.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,16 +59,52 @@ class InboundWireTransfer(BaseModel):
the inbound wire transfer was created.
"""

creditor_address_line1: Optional[str] = None
"""A free-form address field set by the sender."""

creditor_address_line2: Optional[str] = None
"""A free-form address field set by the sender."""

creditor_address_line3: Optional[str] = None
"""A free-form address field set by the sender."""

creditor_name: Optional[str] = None
"""A name set by the sender."""

debtor_address_line1: Optional[str] = None
"""A free-form address field set by the sender."""

debtor_address_line2: Optional[str] = None
"""A free-form address field set by the sender."""

debtor_address_line3: Optional[str] = None
"""A free-form address field set by the sender."""

debtor_name: Optional[str] = None
"""A name set by the sender."""

description: str
"""An Increase-constructed description of the transfer."""

end_to_end_identification: Optional[str] = None
"""A free-form reference string set by the sender, to help identify the transfer."""

input_message_accountability_data: Optional[str] = None
"""
A unique identifier available to the originating and receiving banks, commonly
abbreviated as IMAD. It is created when the wire is submitted to the Fedwire
service and is helpful when debugging wires with the originating bank.
"""

instructing_agent_routing_number: Optional[str] = None
"""
The American Banking Association (ABA) routing number of the bank that sent the
wire.
"""

instruction_identification: Optional[str] = None
"""The sending bank's identifier for the wire transfer."""

originator_address_line1: Optional[str] = None
"""The address of the wire originator, set by the sending bank."""

Expand Down Expand Up @@ -127,5 +163,15 @@ class InboundWireTransfer(BaseModel):
For this resource it will always be `inbound_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.
"""

unstructured_remittance_information: Optional[str] = None
"""A free-form message set by the sender."""

wire_drawdown_request_id: Optional[str] = None
"""The wire drawdown request the inbound wire transfer is fulfilling."""