diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 084a05ed..b2b4443f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -1,12 +1,14 @@ name: CI on: push: - branches-ignore: - - 'generated' - - 'codegen/**' - - 'integrated/**' - - 'stl-preview-head/**' - - 'stl-preview-base/**' + branches: + - '**' + - '!integrated/**' + - '!stl-preview-head/**' + - '!stl-preview-base/**' + - '!generated' + - '!codegen/**' + - 'codegen/stl/**' pull_request: branches-ignore: - 'stl-preview-head/**' diff --git a/.release-please-manifest.json b/.release-please-manifest.json index d5f4d2ce..0510f41f 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.446.0" + ".": "0.447.0" } \ No newline at end of file diff --git a/.stats.yml b/.stats.yml index 77a70612..b2955447 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-36f56ec639c447a9374b42b2dc9e278844c838d51b88c4f128e7e46662a75a81.yml -openapi_spec_hash: 7c15b5db4bf14fd71f7220a445ae2ada +openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-732196e2e3b5f785aafd5a7035f8683adc6060fe483a24787e3b6085f99d1cfe.yml +openapi_spec_hash: c929ecc168017a4a2d8343384a0a33f8 config_hash: 25d7d7aa4882db6189b4b53e8e249e80 diff --git a/CHANGELOG.md b/CHANGELOG.md index f63713ac..b4676647 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,18 @@ # Changelog +## 0.447.0 (2026-03-18) + +Full Changelog: [v0.446.0...v0.447.0](https://github.com/Increase/increase-python/compare/v0.446.0...v0.447.0) + +### Features + +* **api:** api update ([9321ecb](https://github.com/Increase/increase-python/commit/9321ecb342aa5f6003797a580699f108258ee859)) + + +### Chores + +* **internal:** tweak CI branches ([20e4795](https://github.com/Increase/increase-python/commit/20e4795db0d885e92369367c941f6b1ca218207f)) + ## 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) diff --git a/pyproject.toml b/pyproject.toml index 8cfa26cd..942366eb 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "increase" -version = "0.446.0" +version = "0.447.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 049b4b7f..9c33aa9d 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.446.0" # x-release-please-version +__version__ = "0.447.0" # x-release-please-version diff --git a/src/increase/types/card_push_transfer.py b/src/increase/types/card_push_transfer.py index 1d83db9a..4740484f 100644 --- a/src/increase/types/card_push_transfer.py +++ b/src/increase/types/card_push_transfer.py @@ -176,6 +176,7 @@ class Decline(BaseModel): "restricted_card", "security_violation", "transaction_does_not_fulfill_anti_money_laundering_requirement", + "blocked_by_cardholder", "blocked_first_use", "credit_issuer_unavailable", "negative_card_verification_value_results", @@ -240,6 +241,7 @@ class Decline(BaseModel): - `transaction_does_not_fulfill_anti_money_laundering_requirement` - The transaction does not meet the anti-money laundering requirements set by the issuer. + - `blocked_by_cardholder` - The transaction was blocked by the cardholder. - `blocked_first_use` - The first use of the card has been blocked by the issuer. - `credit_issuer_unavailable` - The credit issuer is currently unavailable to diff --git a/src/increase/types/card_validation.py b/src/increase/types/card_validation.py index 5e4af80d..5d18b9b5 100644 --- a/src/increase/types/card_validation.py +++ b/src/increase/types/card_validation.py @@ -186,6 +186,7 @@ class Decline(BaseModel): "restricted_card", "security_violation", "transaction_does_not_fulfill_anti_money_laundering_requirement", + "blocked_by_cardholder", "blocked_first_use", "credit_issuer_unavailable", "negative_card_verification_value_results", @@ -250,6 +251,7 @@ class Decline(BaseModel): - `transaction_does_not_fulfill_anti_money_laundering_requirement` - The transaction does not meet the anti-money laundering requirements set by the issuer. + - `blocked_by_cardholder` - The transaction was blocked by the cardholder. - `blocked_first_use` - The first use of the card has been blocked by the issuer. - `credit_issuer_unavailable` - The credit issuer is currently unavailable to diff --git a/src/increase/types/simulations/card_token_create_params.py b/src/increase/types/simulations/card_token_create_params.py index b73aea03..3184796f 100644 --- a/src/increase/types/simulations/card_token_create_params.py +++ b/src/increase/types/simulations/card_token_create_params.py @@ -87,6 +87,7 @@ class OutcomeDecline(TypedDict, total=False): "restricted_card", "security_violation", "transaction_does_not_fulfill_anti_money_laundering_requirement", + "blocked_by_cardholder", "blocked_first_use", "credit_issuer_unavailable", "negative_card_verification_value_results", @@ -151,6 +152,7 @@ class OutcomeDecline(TypedDict, total=False): - `transaction_does_not_fulfill_anti_money_laundering_requirement` - The transaction does not meet the anti-money laundering requirements set by the issuer. + - `blocked_by_cardholder` - The transaction was blocked by the cardholder. - `blocked_first_use` - The first use of the card has been blocked by the issuer. - `credit_issuer_unavailable` - The credit issuer is currently unavailable to