diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 9a634053c..9e26915df 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.353.0" + ".": "0.354.0" } \ No newline at end of file diff --git a/.stats.yml b/.stats.yml index 6612d81f1..8490456b1 100644 --- a/.stats.yml +++ b/.stats.yml @@ -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 diff --git a/CHANGELOG.md b/CHANGELOG.md index 142ef3e84..a037eb5b5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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) diff --git a/pyproject.toml b/pyproject.toml index d489a0834..b1b41a7a2 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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" diff --git a/src/increase/_version.py b/src/increase/_version.py index b91aa6d26..9e2841be9 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.353.0" # x-release-please-version +__version__ = "0.354.0" # x-release-please-version diff --git a/src/increase/types/transaction.py b/src/increase/types/transaction.py index 95832172c..fef8583ca 100644 --- a/src/increase/types/transaction.py +++ b/src/increase/types/transaction.py @@ -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", @@ -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 @@ -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 """