Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "0.371.1"
".": "0.372.0"
}
4 changes: 2 additions & 2 deletions .stats.yml
Original file line number Diff line number Diff line change
@@ -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
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
2 changes: 1 addition & 1 deletion src/increase/_version.py
Original file line number Diff line number Diff line change
@@ -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
16 changes: 14 additions & 2 deletions src/increase/types/card_dispute.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
"VisaNetworkEventRepresentedCardholderNoLongerDisputes",
"VisaNetworkEventRepresentedCreditOrReversalProcessed",
"VisaNetworkEventRepresentedInvalidDispute",
"VisaNetworkEventRepresentedNonFiatCurrencyOrNonFungibleTokenAsDescribed",
"VisaNetworkEventRepresentedNonFiatCurrencyOrNonFungibleTokenReceived",
"VisaNetworkEventRepresentedProofOfCashDisbursement",
"VisaNetworkEventRepresentedReversalIssued",
Expand Down Expand Up @@ -59,6 +60,7 @@
"VisaUserSubmissionChargebackConsumerMerchandiseNotReceivedDelayedReturned",
"VisaUserSubmissionChargebackConsumerMerchandiseNotReceivedDeliveredToWrongLocation",
"VisaUserSubmissionChargebackConsumerMerchandiseNotReceivedMerchantCancellation",
"VisaUserSubmissionChargebackConsumerNonReceiptOfCash",
"VisaUserSubmissionChargebackConsumerOriginalCreditTransactionNotAccepted",
"VisaUserSubmissionChargebackConsumerQualityMerchandise",
"VisaUserSubmissionChargebackConsumerQualityMerchandiseOngoingNegotiations",
Expand Down Expand Up @@ -441,6 +443,10 @@ class VisaNetworkEventRepresentedInvalidDispute(BaseModel):
"""


class VisaNetworkEventRepresentedNonFiatCurrencyOrNonFungibleTokenAsDescribed(BaseModel):
pass


class VisaNetworkEventRepresentedNonFiatCurrencyOrNonFungibleTokenReceived(BaseModel):
blockchain_transaction_hash: str
"""Blockchain transaction hash."""
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -1363,6 +1371,10 @@ class VisaUserSubmissionChargebackConsumerMerchandiseNotReceived(BaseModel):
"""Purchase information and explanation."""


class VisaUserSubmissionChargebackConsumerNonReceiptOfCash(BaseModel):
pass


class VisaUserSubmissionChargebackConsumerOriginalCreditTransactionNotAccepted(BaseModel):
explanation: str
"""Explanation."""
Expand Down Expand Up @@ -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`.
Expand Down