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.325.0"
".": "0.326.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: 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
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)
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.325.0"
version = "0.326.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.325.0" # x-release-please-version
__version__ = "0.326.0" # x-release-please-version
14 changes: 7 additions & 7 deletions src/increase/types/pending_transaction.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
"SourceCardPushTransferInstruction",
"SourceCheckDepositInstruction",
"SourceCheckTransferInstruction",
"SourceFedNowTransferInstruction",
"SourceFednowTransferInstruction",
"SourceInboundFundsHold",
"SourceInboundWireTransferReversal",
"SourceRealTimePaymentsTransferInstruction",
Expand Down Expand Up @@ -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."""

Expand Down Expand Up @@ -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",
Expand All @@ -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
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/increase/types/pending_transaction_list_params.py
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
16 changes: 8 additions & 8 deletions src/increase/types/transaction.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
"SourceCheckDepositAcceptance",
"SourceCheckDepositReturn",
"SourceCheckTransferDeposit",
"SourceFedNowTransferAcknowledgement",
"SourceFednowTransferAcknowledgement",
"SourceFeePayment",
"SourceInboundACHTransfer",
"SourceInboundACHTransferAddenda",
Expand Down Expand Up @@ -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."""

Expand Down Expand Up @@ -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",
Expand Down Expand Up @@ -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.
Expand Down Expand Up @@ -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.
"""

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