diff --git a/.release-please-manifest.json b/.release-please-manifest.json index aa39267..5c03edc 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.76.0" + ".": "0.77.0" } \ No newline at end of file diff --git a/.stats.yml b/.stats.yml index c2ad697..77a7061 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-f8f6ba45132556b8cd3b7aec8578241638d4774e41ac769df78731d919c1825f.yml -openapi_spec_hash: 9c80a378f9fb89d648f47596aef948d9 +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 684ca15..6bdf8bf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 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) + +### Features + +* **api:** api update ([e9c56f0](https://github.com/Increase/increase-php/commit/e9c56f08bfefc6ae1a2e0a4d7a003649aafc36be)) + ## 0.76.0 (2026-03-16) Full Changelog: [v0.75.0...v0.76.0](https://github.com/Increase/increase-php/compare/v0.75.0...v0.76.0) diff --git a/README.md b/README.md index 9aca2b0..5f8f2cf 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.76.0" +composer require "increase/increase 0.77.0" ``` diff --git a/src/CardPushTransfers/CardPushTransfer/Decline/Reason.php b/src/CardPushTransfers/CardPushTransfer/Decline/Reason.php index 02c7343..3639948 100644 --- a/src/CardPushTransfers/CardPushTransfer/Decline/Reason.php +++ b/src/CardPushTransfers/CardPushTransfer/Decline/Reason.php @@ -55,6 +55,8 @@ enum Reason: string case TRANSACTION_NOT_ALLOWED_AT_TERMINAL = 'transaction_not_allowed_at_terminal'; + case TRANSACTION_NOT_SUPPORTED_OR_BLOCKED_BY_ISSUER = 'transaction_not_supported_or_blocked_by_issuer'; + case SUSPECTED_FRAUD = 'suspected_fraud'; case ACTIVITY_AMOUNT_LIMIT_EXCEEDED = 'activity_amount_limit_exceeded'; diff --git a/src/CardValidations/CardValidation/Decline/Reason.php b/src/CardValidations/CardValidation/Decline/Reason.php index eccf303..3875eed 100644 --- a/src/CardValidations/CardValidation/Decline/Reason.php +++ b/src/CardValidations/CardValidation/Decline/Reason.php @@ -55,6 +55,8 @@ enum Reason: string case TRANSACTION_NOT_ALLOWED_AT_TERMINAL = 'transaction_not_allowed_at_terminal'; + case TRANSACTION_NOT_SUPPORTED_OR_BLOCKED_BY_ISSUER = 'transaction_not_supported_or_blocked_by_issuer'; + case SUSPECTED_FRAUD = 'suspected_fraud'; case ACTIVITY_AMOUNT_LIMIT_EXCEEDED = 'activity_amount_limit_exceeded'; diff --git a/src/Simulations/CardTokens/CardTokenCreateParams/Outcome/Decline/Reason.php b/src/Simulations/CardTokens/CardTokenCreateParams/Outcome/Decline/Reason.php index 1665a7c..d9fbb09 100644 --- a/src/Simulations/CardTokens/CardTokenCreateParams/Outcome/Decline/Reason.php +++ b/src/Simulations/CardTokens/CardTokenCreateParams/Outcome/Decline/Reason.php @@ -55,6 +55,8 @@ enum Reason: string case TRANSACTION_NOT_ALLOWED_AT_TERMINAL = 'transaction_not_allowed_at_terminal'; + case TRANSACTION_NOT_SUPPORTED_OR_BLOCKED_BY_ISSUER = 'transaction_not_supported_or_blocked_by_issuer'; + case SUSPECTED_FRAUD = 'suspected_fraud'; case ACTIVITY_AMOUNT_LIMIT_EXCEEDED = 'activity_amount_limit_exceeded'; diff --git a/src/Version.php b/src/Version.php index b4d694d..f646b31 100644 --- a/src/Version.php +++ b/src/Version.php @@ -5,5 +5,5 @@ namespace Increase; // x-release-please-start-version -const VERSION = '0.76.0'; +const VERSION = '0.77.0'; // x-release-please-end