diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 11b781d1..d5f4d2ce 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.445.2" + ".": "0.446.0" } \ No newline at end of file diff --git a/.stats.yml b/.stats.yml index eef567c9..77a70612 100644 --- a/.stats.yml +++ b/.stats.yml @@ -1,4 +1,4 @@ configured_endpoints: 236 -openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-5c964c697b9545e26471dd5e8c9b83f7efe803561637c072efd8706dfe3f1839.yml -openapi_spec_hash: a8e4426f491b10f93457a6cd517d948e +openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-36f56ec639c447a9374b42b2dc9e278844c838d51b88c4f128e7e46662a75a81.yml +openapi_spec_hash: 7c15b5db4bf14fd71f7220a445ae2ada config_hash: 25d7d7aa4882db6189b4b53e8e249e80 diff --git a/CHANGELOG.md b/CHANGELOG.md index cca182ad..f63713ac 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 0.446.0 (2026-03-16) + +Full Changelog: [v0.445.2...v0.446.0](https://github.com/Increase/increase-python/compare/v0.445.2...v0.446.0) + +### Features + +* **api:** api update ([ab05c7f](https://github.com/Increase/increase-python/commit/ab05c7f8f1eef5a9f6a19ec4bbc7359a9b388176)) + ## 0.445.2 (2026-03-16) Full Changelog: [v0.445.1...v0.445.2](https://github.com/Increase/increase-python/compare/v0.445.1...v0.445.2) diff --git a/pyproject.toml b/pyproject.toml index 02c05c8a..8cfa26cd 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "increase" -version = "0.445.2" +version = "0.446.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 19011eb5..049b4b7f 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.445.2" # x-release-please-version +__version__ = "0.446.0" # x-release-please-version diff --git a/src/increase/types/card_push_transfer.py b/src/increase/types/card_push_transfer.py index ce3de14d..1d83db9a 100644 --- a/src/increase/types/card_push_transfer.py +++ b/src/increase/types/card_push_transfer.py @@ -170,6 +170,7 @@ class Decline(BaseModel): "expired_card", "transaction_not_permitted_to_cardholder", "transaction_not_allowed_at_terminal", + "transaction_not_supported_or_blocked_by_issuer", "suspected_fraud", "activity_amount_limit_exceeded", "restricted_card", @@ -226,6 +227,8 @@ class Decline(BaseModel): for this cardholder. - `transaction_not_allowed_at_terminal` - The transaction is not allowed at this terminal. + - `transaction_not_supported_or_blocked_by_issuer` - The transaction is not + supported or has been blocked by the issuer. - `suspected_fraud` - The transaction has been flagged as suspected fraud and cannot be processed. - `activity_amount_limit_exceeded` - The amount of activity on the card has diff --git a/src/increase/types/card_validation.py b/src/increase/types/card_validation.py index 3f73ba76..5e4af80d 100644 --- a/src/increase/types/card_validation.py +++ b/src/increase/types/card_validation.py @@ -180,6 +180,7 @@ class Decline(BaseModel): "expired_card", "transaction_not_permitted_to_cardholder", "transaction_not_allowed_at_terminal", + "transaction_not_supported_or_blocked_by_issuer", "suspected_fraud", "activity_amount_limit_exceeded", "restricted_card", @@ -236,6 +237,8 @@ class Decline(BaseModel): for this cardholder. - `transaction_not_allowed_at_terminal` - The transaction is not allowed at this terminal. + - `transaction_not_supported_or_blocked_by_issuer` - The transaction is not + supported or has been blocked by the issuer. - `suspected_fraud` - The transaction has been flagged as suspected fraud and cannot be processed. - `activity_amount_limit_exceeded` - The amount of activity on the card has diff --git a/src/increase/types/simulations/card_token_create_params.py b/src/increase/types/simulations/card_token_create_params.py index 9cd6986d..b73aea03 100644 --- a/src/increase/types/simulations/card_token_create_params.py +++ b/src/increase/types/simulations/card_token_create_params.py @@ -81,6 +81,7 @@ class OutcomeDecline(TypedDict, total=False): "expired_card", "transaction_not_permitted_to_cardholder", "transaction_not_allowed_at_terminal", + "transaction_not_supported_or_blocked_by_issuer", "suspected_fraud", "activity_amount_limit_exceeded", "restricted_card", @@ -137,6 +138,8 @@ class OutcomeDecline(TypedDict, total=False): for this cardholder. - `transaction_not_allowed_at_terminal` - The transaction is not allowed at this terminal. + - `transaction_not_supported_or_blocked_by_issuer` - The transaction is not + supported or has been blocked by the issuer. - `suspected_fraud` - The transaction has been flagged as suspected fraud and cannot be processed. - `activity_amount_limit_exceeded` - The amount of activity on the card has