From 1b20c057241316682f1d7d22858ad1169f1f7b31 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Tue, 26 Aug 2025 16:34:49 +0000 Subject: [PATCH 1/2] feat(api): api update --- .stats.yml | 4 ++-- src/increase/types/transaction.py | 6 +++--- src/increase/types/wire_transfer.py | 6 +++--- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.stats.yml b/.stats.yml index c4ea22888..fca327de8 100644 --- a/.stats.yml +++ b/.stats.yml @@ -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 diff --git a/src/increase/types/transaction.py b/src/increase/types/transaction.py index 0af672c4a..a7c60e946 100644 --- a/src/increase/types/transaction.py +++ b/src/increase/types/transaction.py @@ -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 diff --git a/src/increase/types/wire_transfer.py b/src/increase/types/wire_transfer.py index ab6989d18..3b0b0332a 100644 --- a/src/increase/types/wire_transfer.py +++ b/src/increase/types/wire_transfer.py @@ -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 From daef74200545dc6cc141624b17aa4e3e8c90849d Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Tue, 26 Aug 2025 16:35:13 +0000 Subject: [PATCH 2/2] release: 0.299.0 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 8 ++++++++ pyproject.toml | 2 +- src/increase/_version.py | 2 +- 4 files changed, 11 insertions(+), 3 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index ab7b844a7..32a4dbb4e 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.298.1" + ".": "0.299.0" } \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index 0642eb90a..4aca4c682 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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) diff --git a/pyproject.toml b/pyproject.toml index d65cdc0c5..6ee9d8669 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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" diff --git a/src/increase/_version.py b/src/increase/_version.py index d2a7691f2..76a746d9c 100644 --- a/src/increase/_version.py +++ b/src/increase/_version.py @@ -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