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.296.0"
".": "0.297.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: 215
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-b6af0e334922042aa3906776c1e9ddf8cd789c43597cf1c1afd1ed331c350586.yml
openapi_spec_hash: c65d4f39d2a971c60c9671444282ebe9
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-ead33c34bfbcc450c88d09e7d880fa5be57c504a66102e098ac03c5b220dea80.yml
openapi_spec_hash: 1544de50d73f80b843d5761009764ab6
config_hash: 0b0a2503208283b283fc5bc6df6a07a5
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## 0.297.0 (2025-08-21)

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

### Features

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

## 0.296.0 (2025-08-21)

Full Changelog: [v0.295.0...v0.296.0](https://github.com/Increase/increase-python/compare/v0.295.0...v0.296.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.296.0"
version = "0.297.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.296.0" # x-release-please-version
__version__ = "0.297.0" # x-release-please-version
68 changes: 33 additions & 35 deletions src/increase/types/transaction.py
Original file line number Diff line number Diff line change
Expand Up @@ -2166,67 +2166,65 @@ class SourceInboundWireTransfer(BaseModel):
amount: int
"""The amount in USD cents."""

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

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

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

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

beneficiary_reference: Optional[str] = None
"""A free-form reference string set by the sender, to help identify the transfer."""
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.
"""

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

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

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

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

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

originator_to_beneficiary_information: Optional[str] = None
"""An Increase-created concatenation of the Originator-to-Beneficiary lines."""

originator_to_beneficiary_information_line1: Optional[str] = None
"""A free-form message set by the wire originator."""

originator_to_beneficiary_information_line2: Optional[str] = None
"""A free-form message set by the wire originator."""

originator_to_beneficiary_information_line3: Optional[str] = None
"""A free-form message set by the wire originator."""

originator_to_beneficiary_information_line4: Optional[str] = None
"""A free-form message set by the wire originator."""
instruction_identification: Optional[str] = None
"""The sending bank's identifier for the wire transfer."""

transfer_id: str
"""The ID of the Inbound Wire Transfer object that resulted in this Transaction."""

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."""


class SourceInboundWireTransferReversal(BaseModel):
inbound_wire_transfer_id: str
Expand Down