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.298.1"
".": "0.299.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-658e39148e80216f2f6064ec405b424afb64c63842e8f6c61f14100bb149d069.yml
openapi_spec_hash: 38618257a4272f341695cd522f3e6dce
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-f9cc7049ef70f37da85a196a822ee878a193af22d9894422fdc9100255b2a4c6.yml
openapi_spec_hash: efc2e40d9d10c87827994458d0101cd0
config_hash: 29e452035e915a07cd64333b10a83077
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## 0.299.0 (2025-08-26)

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

### Features

* **api:** api update ([1b20c05](https://github.com/Increase/increase-python/commit/1b20c057241316682f1d7d22858ad1169f1f7b31))

## 0.298.1 (2025-08-26)

Full Changelog: [v0.298.0...v0.298.1](https://github.com/Increase/increase-python/compare/v0.298.0...v0.298.1)
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.298.1"
version = "0.299.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.298.1" # x-release-please-version
__version__ = "0.299.0" # x-release-please-version
6 changes: 3 additions & 3 deletions src/increase/types/transaction.py
Original file line number Diff line number Diff line change
Expand Up @@ -2068,19 +2068,19 @@ class SourceInboundWireReversal(BaseModel):
Additional information included in the wire reversal by the reversal originator.
"""

previous_message_input_cycle_date: date
previous_message_input_cycle_date: Optional[date] = None
"""
The Fedwire cycle date for the wire transfer that is being reversed by this
message.
"""

previous_message_input_message_accountability_data: str
previous_message_input_message_accountability_data: Optional[str] = None
"""The Fedwire transaction identifier for the wire transfer that was reversed."""

previous_message_input_sequence_number: str
"""The Fedwire sequence number for the wire transfer that was reversed."""

previous_message_input_source: str
previous_message_input_source: Optional[str] = None
"""The Fedwire input source identifier for the wire transfer that was reversed."""

receiver_financial_institution_information: Optional[str] = None
Expand Down
6 changes: 3 additions & 3 deletions src/increase/types/wire_transfer.py
Original file line number Diff line number Diff line change
Expand Up @@ -128,19 +128,19 @@ class Reversal(BaseModel):
Additional information included in the wire reversal by the reversal originator.
"""

previous_message_input_cycle_date: date
previous_message_input_cycle_date: Optional[date] = None
"""
The Fedwire cycle date for the wire transfer that is being reversed by this
message.
"""

previous_message_input_message_accountability_data: str
previous_message_input_message_accountability_data: Optional[str] = None
"""The Fedwire transaction identifier for the wire transfer that was reversed."""

previous_message_input_sequence_number: str
"""The Fedwire sequence number for the wire transfer that was reversed."""

previous_message_input_source: str
previous_message_input_source: Optional[str] = None
"""The Fedwire input source identifier for the wire transfer that was reversed."""

receiver_financial_institution_information: Optional[str] = None
Expand Down