From 227deb1beb93dc9e09546fd00f71f71646dba7c8 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Wed, 29 Oct 2025 21:15:23 +0000 Subject: [PATCH 1/2] feat(api): api update --- .stats.yml | 4 ++-- src/increase/types/card_dispute.py | 16 ++++++++++++++-- 2 files changed, 16 insertions(+), 4 deletions(-) diff --git a/.stats.yml b/.stats.yml index 174c00620..4cb0dd946 100644 --- a/.stats.yml +++ b/.stats.yml @@ -1,4 +1,4 @@ configured_endpoints: 228 -openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-5e23344ee5f70c17195f26e0af9e85bed0a92f4e8597db349d0038c316be4ff2.yml +openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-1c544c0cd5413b2f03b701aba1a0868838270dbe44ebf79d4b4820704e90594b.yml openapi_spec_hash: 02057c342dd5b1c72f2006dd28234429 -config_hash: eb2035151c7b49c2f12caf55469b8f9a +config_hash: fc8a0ae068f2feeac76f728ac6838543 diff --git a/src/increase/types/card_dispute.py b/src/increase/types/card_dispute.py index eced5df31..fc04b7a5e 100644 --- a/src/increase/types/card_dispute.py +++ b/src/increase/types/card_dispute.py @@ -25,6 +25,7 @@ "VisaNetworkEventRepresentedCardholderNoLongerDisputes", "VisaNetworkEventRepresentedCreditOrReversalProcessed", "VisaNetworkEventRepresentedInvalidDispute", + "VisaNetworkEventRepresentedNonFiatCurrencyOrNonFungibleTokenAsDescribed", "VisaNetworkEventRepresentedNonFiatCurrencyOrNonFungibleTokenReceived", "VisaNetworkEventRepresentedProofOfCashDisbursement", "VisaNetworkEventRepresentedReversalIssued", @@ -59,6 +60,7 @@ "VisaUserSubmissionChargebackConsumerMerchandiseNotReceivedDelayedReturned", "VisaUserSubmissionChargebackConsumerMerchandiseNotReceivedDeliveredToWrongLocation", "VisaUserSubmissionChargebackConsumerMerchandiseNotReceivedMerchantCancellation", + "VisaUserSubmissionChargebackConsumerNonReceiptOfCash", "VisaUserSubmissionChargebackConsumerOriginalCreditTransactionNotAccepted", "VisaUserSubmissionChargebackConsumerQualityMerchandise", "VisaUserSubmissionChargebackConsumerQualityMerchandiseOngoingNegotiations", @@ -441,6 +443,10 @@ class VisaNetworkEventRepresentedInvalidDispute(BaseModel): """ +class VisaNetworkEventRepresentedNonFiatCurrencyOrNonFungibleTokenAsDescribed(BaseModel): + pass + + class VisaNetworkEventRepresentedNonFiatCurrencyOrNonFungibleTokenReceived(BaseModel): blockchain_transaction_hash: str """Blockchain transaction hash.""" @@ -481,7 +487,9 @@ class VisaNetworkEventRepresented(BaseModel): invalid_dispute: Optional[VisaNetworkEventRepresentedInvalidDispute] = None """Invalid dispute details. Present if and only if `reason` is `invalid_dispute`.""" - non_fiat_currency_or_non_fungible_token_as_described: Optional[object] = None + non_fiat_currency_or_non_fungible_token_as_described: Optional[ + VisaNetworkEventRepresentedNonFiatCurrencyOrNonFungibleTokenAsDescribed + ] = None """Non-fiat currency or non-fungible token as described details. Present if and only if `reason` is @@ -1363,6 +1371,10 @@ class VisaUserSubmissionChargebackConsumerMerchandiseNotReceived(BaseModel): """Purchase information and explanation.""" +class VisaUserSubmissionChargebackConsumerNonReceiptOfCash(BaseModel): + pass + + class VisaUserSubmissionChargebackConsumerOriginalCreditTransactionNotAccepted(BaseModel): explanation: str """Explanation.""" @@ -1885,7 +1897,7 @@ class VisaUserSubmissionChargeback(BaseModel): Present if and only if `category` is `consumer_merchandise_not_received`. """ - consumer_non_receipt_of_cash: Optional[object] = None + consumer_non_receipt_of_cash: Optional[VisaUserSubmissionChargebackConsumerNonReceiptOfCash] = None """Non-receipt of cash. Present if and only if `category` is `consumer_non_receipt_of_cash`. From 09ff00e600d13c393f1ec60b0a7adecabb2fda3b Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Wed, 29 Oct 2025 21:15:45 +0000 Subject: [PATCH 2/2] release: 0.372.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 b9143c29a..9a91926af 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.371.1" + ".": "0.372.0" } \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index 1aea2070d..432b73270 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 0.372.0 (2025-10-29) + +Full Changelog: [v0.371.1...v0.372.0](https://github.com/Increase/increase-python/compare/v0.371.1...v0.372.0) + +### Features + +* **api:** api update ([227deb1](https://github.com/Increase/increase-python/commit/227deb1beb93dc9e09546fd00f71f71646dba7c8)) + ## 0.371.1 (2025-10-29) Full Changelog: [v0.371.0...v0.371.1](https://github.com/Increase/increase-python/compare/v0.371.0...v0.371.1) diff --git a/pyproject.toml b/pyproject.toml index f7096c6b0..b971bae61 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "increase" -version = "0.371.1" +version = "0.372.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 55163a7a8..a598b7ffd 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.371.1" # x-release-please-version +__version__ = "0.372.0" # x-release-please-version