From f9cac343e782a0b27b1b300a235d6bb545039e9e Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Wed, 27 Aug 2025 20:25:19 +0000 Subject: [PATCH 1/2] feat(api): api update --- .stats.yml | 4 +-- src/increase/types/transaction.py | 43 +++++------------------------ src/increase/types/wire_transfer.py | 43 +++++------------------------ 3 files changed, 16 insertions(+), 74 deletions(-) diff --git a/.stats.yml b/.stats.yml index a52464a81..cb84ec279 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-f848edf1a38bbdc834fb3855aaf2eaeb77711e36e9a560cadfeb49428b4ac3de.yml -openapi_spec_hash: 52e32b8e609fa290c285bbd44f8bc74a +openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-a98d22578526265c9d1ef5ee69db277ab4e3548d5f12ab740eabc7babd33ba1c.yml +openapi_spec_hash: eefa018725a526a04f4fda690fedf0ec config_hash: 632b628b59d8f0b717153b3d8133f6cb diff --git a/src/increase/types/transaction.py b/src/increase/types/transaction.py index db2dbbe3d..877dd1687 100644 --- a/src/increase/types/transaction.py +++ b/src/increase/types/transaction.py @@ -2039,14 +2039,14 @@ class SourceInboundWireReversal(BaseModel): the reversal was created. """ + debtor_routing_number: Optional[str] = None + """The debtor's routing number.""" + description: str """ The description on the reversal message from Fedwire, set by the reversing bank. """ - financial_institution_to_financial_institution_information: Optional[str] = None - """Additional financial institution information included in the wire reversal.""" - input_cycle_date: date """The Fedwire cycle date for the wire reversal. @@ -2063,40 +2063,11 @@ class SourceInboundWireReversal(BaseModel): input_source: str """The Fedwire input source identifier.""" - 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 - """ - Additional information included in the wire reversal by the reversal originator. - """ - - 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: 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: Optional[str] = None - """The Fedwire input source identifier for the wire transfer that was reversed.""" - - receiver_financial_institution_information: Optional[str] = None - """ - Information included in the wire reversal for the receiving financial - institution. - """ + instruction_identification: Optional[str] = None + """The sending bank's identifier for the reversal.""" - sender_reference: Optional[str] = None - """The sending bank's reference number for the wire reversal.""" + return_reason_additional_information: Optional[str] = None + """Additional information about the reason for the reversal.""" transaction_id: str """The ID for the Transaction associated with the transfer reversal.""" diff --git a/src/increase/types/wire_transfer.py b/src/increase/types/wire_transfer.py index 3b0b0332a..be58bd9e8 100644 --- a/src/increase/types/wire_transfer.py +++ b/src/increase/types/wire_transfer.py @@ -93,14 +93,14 @@ class Reversal(BaseModel): the reversal was created. """ + debtor_routing_number: Optional[str] = None + """The debtor's routing number.""" + description: str """ The description on the reversal message from Fedwire, set by the reversing bank. """ - financial_institution_to_financial_institution_information: Optional[str] = None - """Additional financial institution information included in the wire reversal.""" - input_cycle_date: date """The Fedwire cycle date for the wire reversal. @@ -117,40 +117,11 @@ class Reversal(BaseModel): input_source: str """The Fedwire input source identifier.""" - 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 - """ - Additional information included in the wire reversal by the reversal originator. - """ - - 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: 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: Optional[str] = None - """The Fedwire input source identifier for the wire transfer that was reversed.""" - - receiver_financial_institution_information: Optional[str] = None - """ - Information included in the wire reversal for the receiving financial - institution. - """ + instruction_identification: Optional[str] = None + """The sending bank's identifier for the reversal.""" - sender_reference: Optional[str] = None - """The sending bank's reference number for the wire reversal.""" + return_reason_additional_information: Optional[str] = None + """Additional information about the reason for the reversal.""" transaction_id: str """The ID for the Transaction associated with the transfer reversal.""" From 96f2e5b7a8023451e05ce8a3ba305d26809f9013 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Wed, 27 Aug 2025 20:25:43 +0000 Subject: [PATCH 2/2] release: 0.303.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 028c6e3fc..7915eb1e2 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.302.0" + ".": "0.303.0" } \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index d11b067f8..c3e8a2771 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 0.303.0 (2025-08-27) + +Full Changelog: [v0.302.0...v0.303.0](https://github.com/Increase/increase-python/compare/v0.302.0...v0.303.0) + +### Features + +* **api:** api update ([f9cac34](https://github.com/Increase/increase-python/commit/f9cac343e782a0b27b1b300a235d6bb545039e9e)) + ## 0.302.0 (2025-08-26) Full Changelog: [v0.301.0...v0.302.0](https://github.com/Increase/increase-python/compare/v0.301.0...v0.302.0) diff --git a/pyproject.toml b/pyproject.toml index f7f68371f..2a79813bb 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "increase" -version = "0.302.0" +version = "0.303.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 84a84f4c7..8fb795242 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.302.0" # x-release-please-version +__version__ = "0.303.0" # x-release-please-version