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.290.0"
".": "0.291.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-dea7b54f0adc920e4d2bc337bab1133189114389cb1f124b2f9cccedcedf881c.yml
openapi_spec_hash: c1349e34f78bfe5ba28b946fe7bb15dd
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-e37d9eb06122e71071da98a7375420ce776ad9aa05176bed89a232bd6854f26b.yml
openapi_spec_hash: 8ffb1a0fd8523b24113105717c5d85d8
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.291.0 (2025-08-20)

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

### Features

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

## 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)
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.290.0"
version = "0.291.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.290.0" # x-release-please-version
__version__ = "0.291.0" # x-release-please-version
51 changes: 0 additions & 51 deletions src/increase/types/inbound_wire_transfer.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,21 +38,6 @@ class InboundWireTransfer(BaseModel):
amount: int
"""The amount in USD cents."""

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

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

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

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

created_at: datetime
"""
The [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) date and time at which
Expand Down Expand Up @@ -105,48 +90,12 @@ class InboundWireTransfer(BaseModel):
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."""

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
"""
The American Banking Association (ABA) routing number of the bank originating
the transfer.
"""

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

reversal: Optional[Reversal] = None
"""
Information about the reversal of the inbound wire transfer if it has been
reversed.
"""

sender_reference: Optional[str] = None
"""The sending bank's reference number for the wire transfer."""

status: Literal["pending", "accepted", "declined", "reversed"]
"""The status of the transfer.

Expand Down