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.248.0"
".": "0.249.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: 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
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)
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.248.0"
version = "0.249.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.248.0" # x-release-please-version
__version__ = "0.249.0" # x-release-please-version
16 changes: 16 additions & 0 deletions src/increase/types/pending_transaction.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
"SourceCardAuthorizationVerificationCardholderAddress",
"SourceCheckDepositInstruction",
"SourceCheckTransferInstruction",
"SourceGroupInitiatedHold",
"SourceInboundFundsHold",
"SourceInboundWireTransferReversal",
"SourceOutboundCardPushTransferInstruction",
Expand Down Expand Up @@ -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."""
Expand Down Expand Up @@ -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",
Expand All @@ -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.
Expand Down Expand Up @@ -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.

Expand Down
1 change: 1 addition & 0 deletions src/increase/types/pending_transaction_list_params.py
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down