diff --git a/.release-please-manifest.json b/.release-please-manifest.json index e6115961d..7d0480c96 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.248.0" + ".": "0.249.0" } \ No newline at end of file diff --git a/.stats.yml b/.stats.yml index 51cb36719..bccf31fb0 100644 --- a/.stats.yml +++ b/.stats.yml @@ -1,4 +1,4 @@ configured_endpoints: 199 -openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-75fe352618195712049f1cde5a80bfab2510a7a1e52f792ab0ca560d9d40a4b9.yml -openapi_spec_hash: c8cc277c248d9527fa442d11ce958132 +openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-0ecd4933d3a1f2e6363dc40b619d296a033732ec245018effd3e5f687f60bb04.yml +openapi_spec_hash: 41f0a23615d13ed80758208130da6abd config_hash: 0c284b69f3dccb22b24877f61d0d8a9a diff --git a/CHANGELOG.md b/CHANGELOG.md index 0f1e20aaf..2edbf023f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 0.249.0 (2025-06-08) + +Full Changelog: [v0.248.0...v0.249.0](https://github.com/Increase/increase-python/compare/v0.248.0...v0.249.0) + +### Features + +* **api:** api update ([3be08d7](https://github.com/Increase/increase-python/commit/3be08d759f293dbb9cb4134e5e962a1bdab84907)) + ## 0.248.0 (2025-06-05) Full Changelog: [v0.247.0...v0.248.0](https://github.com/Increase/increase-python/compare/v0.247.0...v0.248.0) diff --git a/pyproject.toml b/pyproject.toml index d951d837c..e64a060a7 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "increase" -version = "0.248.0" +version = "0.249.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 421a3d457..9fea6c936 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.248.0" # x-release-please-version +__version__ = "0.249.0" # x-release-please-version diff --git a/src/increase/types/pending_transaction.py b/src/increase/types/pending_transaction.py index 50d3e9b80..009304ddd 100644 --- a/src/increase/types/pending_transaction.py +++ b/src/increase/types/pending_transaction.py @@ -20,6 +20,7 @@ "SourceCardAuthorizationVerificationCardholderAddress", "SourceCheckDepositInstruction", "SourceCheckTransferInstruction", + "SourceGroupInitiatedHold", "SourceInboundFundsHold", "SourceInboundWireTransferReversal", "SourceOutboundCardPushTransferInstruction", @@ -501,6 +502,11 @@ class SourceCheckTransferInstruction(BaseModel): """The identifier of the Check Transfer that led to this Pending Transaction.""" +class SourceGroupInitiatedHold(BaseModel): + id: str + """The Group Initiated Hold identifier.""" + + class SourceInboundFundsHold(BaseModel): id: str """The Inbound Funds Hold identifier.""" @@ -641,6 +647,7 @@ class Source(BaseModel): "check_deposit_instruction", "check_transfer_instruction", "inbound_funds_hold", + "group_initiated_hold", "real_time_payments_transfer_instruction", "wire_transfer_instruction", "inbound_wire_transfer_reversal", @@ -665,6 +672,8 @@ class Source(BaseModel): under the `check_transfer_instruction` object. - `inbound_funds_hold` - Inbound Funds Hold: details will be under the `inbound_funds_hold` object. + - `group_initiated_hold` - Group Initiated Hold Source: details will be under + the `group_initiated_hold` object. - `real_time_payments_transfer_instruction` - Real-Time Payments Transfer Instruction: details will be under the `real_time_payments_transfer_instruction` object. @@ -695,6 +704,13 @@ class Source(BaseModel): equal to `check_transfer_instruction`. """ + group_initiated_hold: Optional[SourceGroupInitiatedHold] = None + """A Group Initiated Hold Source object. + + This field will be present in the JSON response if and only if `category` is + equal to `group_initiated_hold`. + """ + inbound_funds_hold: Optional[SourceInboundFundsHold] = None """An Inbound Funds Hold object. diff --git a/src/increase/types/pending_transaction_list_params.py b/src/increase/types/pending_transaction_list_params.py index 438522f00..2979d4bde 100644 --- a/src/increase/types/pending_transaction_list_params.py +++ b/src/increase/types/pending_transaction_list_params.py @@ -45,6 +45,7 @@ class PendingTransactionListParams(TypedDict, total=False): "check_deposit_instruction", "check_transfer_instruction", "inbound_funds_hold", + "group_initiated_hold", "real_time_payments_transfer_instruction", "wire_transfer_instruction", "inbound_wire_transfer_reversal",