From e48d3168c9ae3ff45b3e72da6d1006d438d9c1cb Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Wed, 22 Oct 2025 18:23:27 +0000 Subject: [PATCH 1/2] feat(api): api update --- .stats.yml | 4 ++-- src/increase/types/card_payment.py | 9 ++++++--- src/increase/types/declined_transaction.py | 3 ++- src/increase/types/pending_transaction.py | 3 ++- src/increase/types/real_time_decision.py | 3 ++- src/increase/types/transaction.py | 3 ++- 6 files changed, 16 insertions(+), 9 deletions(-) diff --git a/.stats.yml b/.stats.yml index f6d731d7e..c0b1861c7 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-b4cda5505a0662dcbad16dabc86715b5353a90685fa9047384e60156f898f3b8.yml -openapi_spec_hash: 0c831296b6f59e535c73162e0e18c175 +openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-77bf980f154392e3f2070aa38e38d8927ba8cff23d81bb6e5733fdd52a4e67b5.yml +openapi_spec_hash: 18a92821c3e77f158295ca50b4aa33b0 config_hash: f0b80170c2ea09811aeae3f1e94bc422 diff --git a/src/increase/types/card_payment.py b/src/increase/types/card_payment.py index 5af5c428f..93b1c3a4d 100644 --- a/src/increase/types/card_payment.py +++ b/src/increase/types/card_payment.py @@ -772,7 +772,8 @@ class ElementCardAuthorization(BaseModel): """The risk score generated by the card network. For Visa this is the Visa Advanced Authorization risk score, from 0 to 99, where - 99 is the riskiest. + 99 is the riskiest. For Pulse the score is from 0 to 999, where 999 is the + riskiest. """ pending_transaction_id: Optional[str] = None @@ -1390,7 +1391,8 @@ class ElementCardDecline(BaseModel): """The risk score generated by the card network. For Visa this is the Visa Advanced Authorization risk score, from 0 to 99, where - 99 is the riskiest. + 99 is the riskiest. For Pulse the score is from 0 to 999, where 999 is the + riskiest. """ physical_card_id: Optional[str] = None @@ -3695,7 +3697,8 @@ class ElementCardValidation(BaseModel): """The risk score generated by the card network. For Visa this is the Visa Advanced Authorization risk score, from 0 to 99, where - 99 is the riskiest. + 99 is the riskiest. For Pulse the score is from 0 to 999, where 999 is the + riskiest. """ physical_card_id: Optional[str] = None diff --git a/src/increase/types/declined_transaction.py b/src/increase/types/declined_transaction.py index dfebaa434..9abffa208 100644 --- a/src/increase/types/declined_transaction.py +++ b/src/increase/types/declined_transaction.py @@ -623,7 +623,8 @@ class SourceCardDecline(BaseModel): """The risk score generated by the card network. For Visa this is the Visa Advanced Authorization risk score, from 0 to 99, where - 99 is the riskiest. + 99 is the riskiest. For Pulse the score is from 0 to 999, where 999 is the + riskiest. """ physical_card_id: Optional[str] = None diff --git a/src/increase/types/pending_transaction.py b/src/increase/types/pending_transaction.py index f0d364331..9e3d2aac5 100644 --- a/src/increase/types/pending_transaction.py +++ b/src/increase/types/pending_transaction.py @@ -570,7 +570,8 @@ class SourceCardAuthorization(BaseModel): """The risk score generated by the card network. For Visa this is the Visa Advanced Authorization risk score, from 0 to 99, where - 99 is the riskiest. + 99 is the riskiest. For Pulse the score is from 0 to 999, where 999 is the + riskiest. """ pending_transaction_id: Optional[str] = None diff --git a/src/increase/types/real_time_decision.py b/src/increase/types/real_time_decision.py index 6b9aa8478..372b89d1d 100644 --- a/src/increase/types/real_time_decision.py +++ b/src/increase/types/real_time_decision.py @@ -594,7 +594,8 @@ class CardAuthorization(BaseModel): """The risk score generated by the card network. For Visa this is the Visa Advanced Authorization risk score, from 0 to 99, where - 99 is the riskiest. + 99 is the riskiest. For Pulse the score is from 0 to 999, where 999 is the + riskiest. """ physical_card_id: Optional[str] = None diff --git a/src/increase/types/transaction.py b/src/increase/types/transaction.py index 202fbd341..13295e053 100644 --- a/src/increase/types/transaction.py +++ b/src/increase/types/transaction.py @@ -983,7 +983,8 @@ class SourceCardFinancial(BaseModel): """The risk score generated by the card network. For Visa this is the Visa Advanced Authorization risk score, from 0 to 99, where - 99 is the riskiest. + 99 is the riskiest. For Pulse the score is from 0 to 999, where 999 is the + riskiest. """ physical_card_id: Optional[str] = None From 87cc59052c2126b46f4da21f4b704c3cb5d486be Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Wed, 22 Oct 2025 18:23:50 +0000 Subject: [PATCH 2/2] release: 0.363.0 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 8 ++++++++ pyproject.toml | 2 +- src/increase/_version.py | 2 +- 4 files changed, 11 insertions(+), 3 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index dea90ccf5..fb22e464d 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.362.0" + ".": "0.363.0" } \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index 264de116b..23f1d1c02 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 0.363.0 (2025-10-22) + +Full Changelog: [v0.362.0...v0.363.0](https://github.com/Increase/increase-python/compare/v0.362.0...v0.363.0) + +### Features + +* **api:** api update ([e48d316](https://github.com/Increase/increase-python/commit/e48d3168c9ae3ff45b3e72da6d1006d438d9c1cb)) + ## 0.362.0 (2025-10-22) Full Changelog: [v0.361.0...v0.362.0](https://github.com/Increase/increase-python/compare/v0.361.0...v0.362.0) diff --git a/pyproject.toml b/pyproject.toml index 4c0ff9619..7602ea7ef 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "increase" -version = "0.362.0" +version = "0.363.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 e96a622ad..32bd81220 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.362.0" # x-release-please-version +__version__ = "0.363.0" # x-release-please-version