diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c3505e3..2530be6 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 5c03edc..0d51a36 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.77.0" + ".": "0.78.0" } \ No newline at end of file diff --git a/.stats.yml b/.stats.yml index 77a7061..b295544 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 6bdf8bf..4923c04 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,18 @@ # Changelog +## 0.78.0 (2026-03-18) + +Full Changelog: [v0.77.0...v0.78.0](https://github.com/Increase/increase-php/compare/v0.77.0...v0.78.0) + +### Features + +* **api:** api update ([3db0e17](https://github.com/Increase/increase-php/commit/3db0e17ea34d1554dd2665273001a5c4019fc516)) + + +### Chores + +* **internal:** tweak CI branches ([59478fe](https://github.com/Increase/increase-php/commit/59478fe5c2c65fbbce17d3ca4931de476a6c22af)) + ## 0.77.0 (2026-03-16) Full Changelog: [v0.76.0...v0.77.0](https://github.com/Increase/increase-php/compare/v0.76.0...v0.77.0) diff --git a/README.md b/README.md index 5f8f2cf..3712a1e 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,7 @@ The REST API documentation can be found on [increase.com](https://increase.com/d ``` -composer require "increase/increase 0.77.0" +composer require "increase/increase 0.78.0" ``` diff --git a/src/CardPushTransfers/CardPushTransfer/Decline/Reason.php b/src/CardPushTransfers/CardPushTransfer/Decline/Reason.php index 3639948..9fc23db 100644 --- a/src/CardPushTransfers/CardPushTransfer/Decline/Reason.php +++ b/src/CardPushTransfers/CardPushTransfer/Decline/Reason.php @@ -67,6 +67,8 @@ enum Reason: string case TRANSACTION_DOES_NOT_FULFILL_ANTI_MONEY_LAUNDERING_REQUIREMENT = 'transaction_does_not_fulfill_anti_money_laundering_requirement'; + case BLOCKED_BY_CARDHOLDER = 'blocked_by_cardholder'; + case BLOCKED_FIRST_USE = 'blocked_first_use'; case CREDIT_ISSUER_UNAVAILABLE = 'credit_issuer_unavailable'; diff --git a/src/CardValidations/CardValidation/Decline/Reason.php b/src/CardValidations/CardValidation/Decline/Reason.php index 3875eed..2f09102 100644 --- a/src/CardValidations/CardValidation/Decline/Reason.php +++ b/src/CardValidations/CardValidation/Decline/Reason.php @@ -67,6 +67,8 @@ enum Reason: string case TRANSACTION_DOES_NOT_FULFILL_ANTI_MONEY_LAUNDERING_REQUIREMENT = 'transaction_does_not_fulfill_anti_money_laundering_requirement'; + case BLOCKED_BY_CARDHOLDER = 'blocked_by_cardholder'; + case BLOCKED_FIRST_USE = 'blocked_first_use'; case CREDIT_ISSUER_UNAVAILABLE = 'credit_issuer_unavailable'; diff --git a/src/Simulations/CardTokens/CardTokenCreateParams/Outcome/Decline/Reason.php b/src/Simulations/CardTokens/CardTokenCreateParams/Outcome/Decline/Reason.php index d9fbb09..68dcf16 100644 --- a/src/Simulations/CardTokens/CardTokenCreateParams/Outcome/Decline/Reason.php +++ b/src/Simulations/CardTokens/CardTokenCreateParams/Outcome/Decline/Reason.php @@ -67,6 +67,8 @@ enum Reason: string case TRANSACTION_DOES_NOT_FULFILL_ANTI_MONEY_LAUNDERING_REQUIREMENT = 'transaction_does_not_fulfill_anti_money_laundering_requirement'; + case BLOCKED_BY_CARDHOLDER = 'blocked_by_cardholder'; + case BLOCKED_FIRST_USE = 'blocked_first_use'; case CREDIT_ISSUER_UNAVAILABLE = 'credit_issuer_unavailable'; diff --git a/src/Version.php b/src/Version.php index f646b31..31eba22 100644 --- a/src/Version.php +++ b/src/Version.php @@ -5,5 +5,5 @@ namespace Increase; // x-release-please-start-version -const VERSION = '0.77.0'; +const VERSION = '0.78.0'; // x-release-please-end