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.353.0"
".": "0.354.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: 220
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-2f24b343a9f099286b8e3dbd0e38f2bd237a7b174a275ea81cd9173bea33c601.yml
openapi_spec_hash: fd71bd10930be2849fdb5614c1878866
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-4d0b54206ef7c159e14154c892fe3146fa1ed1108a06cf53731ba27ac27b962a.yml
openapi_spec_hash: 7a575e29fc5e9fd1e74e9de7ddb8ba67
config_hash: f0b80170c2ea09811aeae3f1e94bc422
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## 0.354.0 (2025-10-08)

Full Changelog: [v0.353.0...v0.354.0](https://github.com/Increase/increase-python/compare/v0.353.0...v0.354.0)

### Features

* **api:** api update ([a9bbcb0](https://github.com/Increase/increase-python/commit/a9bbcb0fb2dcc1595d720b287910ddce5ef96136))

## 0.353.0 (2025-10-07)

Full Changelog: [v0.352.0...v0.353.0](https://github.com/Increase/increase-python/compare/v0.352.0...v0.353.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.353.0"
version = "0.354.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.353.0" # x-release-please-version
__version__ = "0.354.0" # x-release-please-version
6 changes: 4 additions & 2 deletions src/increase/types/transaction.py
Original file line number Diff line number Diff line change
Expand Up @@ -2826,12 +2826,14 @@ class SourceInternalSource(BaseModel):

reason: Literal[
"account_closure",
"account_revenue_payment_distribution",
"bank_drawn_check",
"bank_drawn_check_credit",
"bank_migration",
"check_adjustment",
"collection_payment",
"collection_receivable",
"dishonored_ach_return",
"empyreal_adjustment",
"error",
"error_correction",
Expand All @@ -2840,19 +2842,20 @@ class SourceInternalSource(BaseModel):
"negative_balance_forgiveness",
"sample_funds",
"sample_funds_return",
"account_revenue_payment_distribution",
]
"""An Internal Source is a transaction between you and Increase.

This describes the reason for the transaction.

- `account_closure` - Account closure
- `account_revenue_payment_distribution` - Account revenue payment distribution
- `bank_drawn_check` - Bank-drawn check
- `bank_drawn_check_credit` - Bank-drawn check credit
- `bank_migration` - Bank migration
- `check_adjustment` - Check adjustment
- `collection_payment` - Collection payment
- `collection_receivable` - Collection receivable
- `dishonored_ach_return` - Dishonored ACH return
- `empyreal_adjustment` - Empyreal adjustment
- `error` - Error
- `error_correction` - Error correction
Expand All @@ -2861,7 +2864,6 @@ class SourceInternalSource(BaseModel):
- `negative_balance_forgiveness` - Negative balance forgiveness
- `sample_funds` - Sample funds
- `sample_funds_return` - Sample funds return
- `account_revenue_payment_distribution` - Account revenue payment distribution
"""


Expand Down