diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 3f4f69757..6b2a97d56 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.325.0" + ".": "0.326.0" } \ No newline at end of file diff --git a/.stats.yml b/.stats.yml index d9b2e1485..3b8e65cd7 100644 --- a/.stats.yml +++ b/.stats.yml @@ -1,4 +1,4 @@ configured_endpoints: 217 -openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-0099e03e7fa522327e05de8b00e0d0f8873c9267bbb39a29d22b2aa6bb571d16.yml -openapi_spec_hash: 8691ea0b11ed2570986fadb52e6b87db +openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-805a499f2eaf8dde9967c23bfceac96d22e583e929be7e62574442f1b2546844.yml +openapi_spec_hash: 362e3065076f1f47f73ed7306236b5f6 config_hash: e1885b38eded054b77308a024c5d80cc diff --git a/CHANGELOG.md b/CHANGELOG.md index ae1ce3c73..7fe5ace1d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 0.326.0 (2025-09-15) + +Full Changelog: [v0.325.0...v0.326.0](https://github.com/Increase/increase-python/compare/v0.325.0...v0.326.0) + +### Features + +* **api:** api update ([4c7695d](https://github.com/Increase/increase-python/commit/4c7695d7a4204629982ce79d96532c8948f04b15)) + ## 0.325.0 (2025-09-12) Full Changelog: [v0.324.0...v0.325.0](https://github.com/Increase/increase-python/compare/v0.324.0...v0.325.0) diff --git a/pyproject.toml b/pyproject.toml index ed8d575e9..f3a416ce8 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "increase" -version = "0.325.0" +version = "0.326.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 9571db7ec..d92396e6c 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.325.0" # x-release-please-version +__version__ = "0.326.0" # x-release-please-version diff --git a/src/increase/types/pending_transaction.py b/src/increase/types/pending_transaction.py index 2a1c19772..42543f655 100644 --- a/src/increase/types/pending_transaction.py +++ b/src/increase/types/pending_transaction.py @@ -31,7 +31,7 @@ "SourceCardPushTransferInstruction", "SourceCheckDepositInstruction", "SourceCheckTransferInstruction", - "SourceFedNowTransferInstruction", + "SourceFednowTransferInstruction", "SourceInboundFundsHold", "SourceInboundWireTransferReversal", "SourceRealTimePaymentsTransferInstruction", @@ -663,7 +663,7 @@ class SourceCheckTransferInstruction(BaseModel): """The identifier of the Check Transfer that led to this Pending Transaction.""" -class SourceFedNowTransferInstruction(BaseModel): +class SourceFednowTransferInstruction(BaseModel): transfer_id: str """The identifier of the FedNow Transfer that led to this Pending Transaction.""" @@ -800,7 +800,7 @@ class Source(BaseModel): "card_authorization", "check_deposit_instruction", "check_transfer_instruction", - "fed_now_transfer_instruction", + "fednow_transfer_instruction", "inbound_funds_hold", "user_initiated_hold", "real_time_payments_transfer_instruction", @@ -825,8 +825,8 @@ class Source(BaseModel): the `check_deposit_instruction` object. - `check_transfer_instruction` - Check Transfer Instruction: details will be under the `check_transfer_instruction` object. - - `fed_now_transfer_instruction` - FedNow Transfer Instruction: details will be - under the `fed_now_transfer_instruction` object. + - `fednow_transfer_instruction` - FedNow Transfer Instruction: details will be + under the `fednow_transfer_instruction` object. - `inbound_funds_hold` - Inbound Funds Hold: details will be under the `inbound_funds_hold` object. - `user_initiated_hold` - User Initiated Hold: details will be under the @@ -860,11 +860,11 @@ class Source(BaseModel): equal to `check_transfer_instruction`. """ - fed_now_transfer_instruction: Optional[SourceFedNowTransferInstruction] = None + fednow_transfer_instruction: Optional[SourceFednowTransferInstruction] = None """A FedNow Transfer Instruction object. This field will be present in the JSON response if and only if `category` is - equal to `fed_now_transfer_instruction`. + equal to `fednow_transfer_instruction`. """ inbound_funds_hold: Optional[SourceInboundFundsHold] = None diff --git a/src/increase/types/pending_transaction_list_params.py b/src/increase/types/pending_transaction_list_params.py index 04a2b98aa..49494bc33 100644 --- a/src/increase/types/pending_transaction_list_params.py +++ b/src/increase/types/pending_transaction_list_params.py @@ -44,7 +44,7 @@ class PendingTransactionListParams(TypedDict, total=False): "card_authorization", "check_deposit_instruction", "check_transfer_instruction", - "fed_now_transfer_instruction", + "fednow_transfer_instruction", "inbound_funds_hold", "user_initiated_hold", "real_time_payments_transfer_instruction", diff --git a/src/increase/types/transaction.py b/src/increase/types/transaction.py index e87bbd7b4..a684422d0 100644 --- a/src/increase/types/transaction.py +++ b/src/increase/types/transaction.py @@ -46,7 +46,7 @@ "SourceCheckDepositAcceptance", "SourceCheckDepositReturn", "SourceCheckTransferDeposit", - "SourceFedNowTransferAcknowledgement", + "SourceFednowTransferAcknowledgement", "SourceFeePayment", "SourceInboundACHTransfer", "SourceInboundACHTransferAddenda", @@ -1870,7 +1870,7 @@ class SourceCheckTransferDeposit(BaseModel): """ -class SourceFedNowTransferAcknowledgement(BaseModel): +class SourceFednowTransferAcknowledgement(BaseModel): transfer_id: str """The identifier of the FedNow Transfer that led to this Transaction.""" @@ -2440,7 +2440,7 @@ class Source(BaseModel): "card_revenue_payment", "check_deposit_acceptance", "check_deposit_return", - "fed_now_transfer_acknowledgement", + "fednow_transfer_acknowledgement", "check_transfer_deposit", "fee_payment", "inbound_ach_transfer", @@ -2492,8 +2492,8 @@ class Source(BaseModel): the `check_deposit_acceptance` object. - `check_deposit_return` - Check Deposit Return: details will be under the `check_deposit_return` object. - - `fed_now_transfer_acknowledgement` - FedNow Transfer Acknowledgement: details - will be under the `fed_now_transfer_acknowledgement` object. + - `fednow_transfer_acknowledgement` - FedNow Transfer Acknowledgement: details + will be under the `fednow_transfer_acknowledgement` object. - `check_transfer_deposit` - Check Transfer Deposit: details will be under the `check_transfer_deposit` object. - `fee_payment` - Fee Payment: details will be under the `fee_payment` object. @@ -2567,12 +2567,12 @@ class Source(BaseModel): types of checks are not pre-registered. """ - fed_now_transfer_acknowledgement: Optional[SourceFedNowTransferAcknowledgement] = None + fednow_transfer_acknowledgement: Optional[SourceFednowTransferAcknowledgement] = None """A FedNow Transfer Acknowledgement object. This field will be present in the JSON response if and only if `category` is - equal to `fed_now_transfer_acknowledgement`. A FedNow Transfer Acknowledgement - is created when a FedNow Transfer sent from Increase is acknowledged by the + equal to `fednow_transfer_acknowledgement`. A FedNow Transfer Acknowledgement is + created when a FedNow Transfer sent from Increase is acknowledged by the receiving bank. """ diff --git a/src/increase/types/transaction_list_params.py b/src/increase/types/transaction_list_params.py index 39e3955a0..bc396b47b 100644 --- a/src/increase/types/transaction_list_params.py +++ b/src/increase/types/transaction_list_params.py @@ -53,7 +53,7 @@ class TransactionListParams(TypedDict, total=False): "card_revenue_payment", "check_deposit_acceptance", "check_deposit_return", - "fed_now_transfer_acknowledgement", + "fednow_transfer_acknowledgement", "check_transfer_deposit", "fee_payment", "inbound_ach_transfer",