From 3a976ac5931c1d7f71e9575c0f3f455b26b09bfc Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Sat, 6 Dec 2025 01:15:20 +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 +++ .../simulations/card_authorization_create_params.py | 3 +++ src/increase/types/transaction.py | 3 +++ 7 files changed, 26 insertions(+), 2 deletions(-) diff --git a/.stats.yml b/.stats.yml index 9130f4384..f25fc9162 100644 --- a/.stats.yml +++ b/.stats.yml @@ -1,4 +1,4 @@ configured_endpoints: 229 -openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-979679fb897563997cb8d20590ac73729287354524a0c2579f4dfd41fa8b63d9.yml -openapi_spec_hash: 22eae96401c4a0de1d135e18133924d1 +openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-db504b55f81ac4d64ccbfc4d2fecdd346b2a671da840afd3b47fd499ea52e640.yml +openapi_spec_hash: 06d1e20101565b4c8ba616cfa84fbfdd config_hash: b6f365add90e618b2174634df140826e diff --git a/src/increase/types/card_payment.py b/src/increase/types/card_payment.py index c243faf76..35434edac 100644 --- a/src/increase/types/card_payment.py +++ b/src/increase/types/card_payment.py @@ -861,6 +861,7 @@ class ElementCardAuthorization(BaseModel): "quasi_cash", "refund", "cash_disbursement", + "balance_inquiry", "unknown", ] """ @@ -883,6 +884,8 @@ class ElementCardAuthorization(BaseModel): voucher authorization, where funds are credited to the cardholder. - `cash_disbursement` - Cash disbursement transactions are used to withdraw cash from an ATM or a point of sale. + - `balance_inquiry` - A balance inquiry transaction is used to check the balance + of an account associated with a card. - `unknown` - The processing category is unknown. """ @@ -1515,6 +1518,7 @@ class ElementCardDecline(BaseModel): "quasi_cash", "refund", "cash_disbursement", + "balance_inquiry", "unknown", ] """ @@ -1537,6 +1541,8 @@ class ElementCardDecline(BaseModel): voucher authorization, where funds are credited to the cardholder. - `cash_disbursement` - Cash disbursement transactions are used to withdraw cash from an ATM or a point of sale. + - `balance_inquiry` - A balance inquiry transaction is used to check the balance + of an account associated with a card. - `unknown` - The processing category is unknown. """ @@ -2188,6 +2194,7 @@ class ElementCardFinancial(BaseModel): "quasi_cash", "refund", "cash_disbursement", + "balance_inquiry", "unknown", ] """ @@ -2210,6 +2217,8 @@ class ElementCardFinancial(BaseModel): voucher authorization, where funds are credited to the cardholder. - `cash_disbursement` - Cash disbursement transactions are used to withdraw cash from an ATM or a point of sale. + - `balance_inquiry` - A balance inquiry transaction is used to check the balance + of an account associated with a card. - `unknown` - The processing category is unknown. """ diff --git a/src/increase/types/declined_transaction.py b/src/increase/types/declined_transaction.py index f15808ce7..ba7b3dcbd 100644 --- a/src/increase/types/declined_transaction.py +++ b/src/increase/types/declined_transaction.py @@ -687,6 +687,7 @@ class SourceCardDecline(BaseModel): "quasi_cash", "refund", "cash_disbursement", + "balance_inquiry", "unknown", ] """ @@ -709,6 +710,8 @@ class SourceCardDecline(BaseModel): voucher authorization, where funds are credited to the cardholder. - `cash_disbursement` - Cash disbursement transactions are used to withdraw cash from an ATM or a point of sale. + - `balance_inquiry` - A balance inquiry transaction is used to check the balance + of an account associated with a card. - `unknown` - The processing category is unknown. """ diff --git a/src/increase/types/pending_transaction.py b/src/increase/types/pending_transaction.py index 9858faeb8..655dd916d 100644 --- a/src/increase/types/pending_transaction.py +++ b/src/increase/types/pending_transaction.py @@ -642,6 +642,7 @@ class SourceCardAuthorization(BaseModel): "quasi_cash", "refund", "cash_disbursement", + "balance_inquiry", "unknown", ] """ @@ -664,6 +665,8 @@ class SourceCardAuthorization(BaseModel): voucher authorization, where funds are credited to the cardholder. - `cash_disbursement` - Cash disbursement transactions are used to withdraw cash from an ATM or a point of sale. + - `balance_inquiry` - A balance inquiry transaction is used to check the balance + of an account associated with a card. - `unknown` - The processing category is unknown. """ diff --git a/src/increase/types/real_time_decision.py b/src/increase/types/real_time_decision.py index ebe9f4f02..a4d56c1fa 100644 --- a/src/increase/types/real_time_decision.py +++ b/src/increase/types/real_time_decision.py @@ -700,6 +700,7 @@ class CardAuthorization(BaseModel): "quasi_cash", "refund", "cash_disbursement", + "balance_inquiry", "unknown", ] """ @@ -722,6 +723,8 @@ class CardAuthorization(BaseModel): voucher authorization, where funds are credited to the cardholder. - `cash_disbursement` - Cash disbursement transactions are used to withdraw cash from an ATM or a point of sale. + - `balance_inquiry` - A balance inquiry transaction is used to check the balance + of an account associated with a card. - `unknown` - The processing category is unknown. """ diff --git a/src/increase/types/simulations/card_authorization_create_params.py b/src/increase/types/simulations/card_authorization_create_params.py index 6907569dd..f11ed0c71 100644 --- a/src/increase/types/simulations/card_authorization_create_params.py +++ b/src/increase/types/simulations/card_authorization_create_params.py @@ -197,6 +197,7 @@ class ProcessingCategory(TypedDict, total=False): "quasi_cash", "refund", "cash_disbursement", + "balance_inquiry", ] ] """ @@ -219,6 +220,8 @@ class ProcessingCategory(TypedDict, total=False): voucher authorization, where funds are credited to the cardholder. - `cash_disbursement` - Cash disbursement transactions are used to withdraw cash from an ATM or a point of sale. + - `balance_inquiry` - A balance inquiry transaction is used to check the balance + of an account associated with a card. """ refund: ProcessingCategoryRefund diff --git a/src/increase/types/transaction.py b/src/increase/types/transaction.py index d3a0b993e..5a6922690 100644 --- a/src/increase/types/transaction.py +++ b/src/increase/types/transaction.py @@ -1124,6 +1124,7 @@ class SourceCardFinancial(BaseModel): "quasi_cash", "refund", "cash_disbursement", + "balance_inquiry", "unknown", ] """ @@ -1146,6 +1147,8 @@ class SourceCardFinancial(BaseModel): voucher authorization, where funds are credited to the cardholder. - `cash_disbursement` - Cash disbursement transactions are used to withdraw cash from an ATM or a point of sale. + - `balance_inquiry` - A balance inquiry transaction is used to check the balance + of an account associated with a card. - `unknown` - The processing category is unknown. """ From 0f84a72d250ed0904d2cbdef3729c7159deff5a6 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Sat, 6 Dec 2025 01:15:42 +0000 Subject: [PATCH 2/2] release: 0.406.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 4b59bd483..f86031a6a 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.405.0" + ".": "0.406.0" } \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index 493b6cdbc..d54567fc5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 0.406.0 (2025-12-06) + +Full Changelog: [v0.405.0...v0.406.0](https://github.com/Increase/increase-python/compare/v0.405.0...v0.406.0) + +### Features + +* **api:** api update ([3a976ac](https://github.com/Increase/increase-python/commit/3a976ac5931c1d7f71e9575c0f3f455b26b09bfc)) + ## 0.405.0 (2025-12-05) Full Changelog: [v0.404.0...v0.405.0](https://github.com/Increase/increase-python/compare/v0.404.0...v0.405.0) diff --git a/pyproject.toml b/pyproject.toml index 7c5811cc3..77db21a8b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "increase" -version = "0.405.0" +version = "0.406.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 e9c705f2f..9a3df12c7 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.405.0" # x-release-please-version +__version__ = "0.406.0" # x-release-please-version