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.350.0"
".": "0.350.1"
}
4 changes: 2 additions & 2 deletions .stats.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
configured_endpoints: 220
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-fcc4e952b005ab1fd26ae67fe0cac46a57699299c92e00680d4d0f6be51d7936.yml
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-9e8783129ea725992844a51e7d6f6a639cae93753228cef7262eccb2e4bae58d.yml
openapi_spec_hash: f1a7326721f814625c7d5484956afded
config_hash: f0b80170c2ea09811aeae3f1e94bc422
config_hash: 4489d6e123ed885f5cb74fe619668e4b
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## 0.350.1 (2025-10-06)

Full Changelog: [v0.350.0...v0.350.1](https://github.com/Increase/increase-python/compare/v0.350.0...v0.350.1)

### Bug Fixes

* **client:** handle some Dispute objects as empty rather than unknown ([4f17295](https://github.com/Increase/increase-python/commit/4f172950ded31e0e26daba3af128417f72053874))

## 0.350.0 (2025-10-03)

Full Changelog: [v0.349.0...v0.350.0](https://github.com/Increase/increase-python/compare/v0.349.0...v0.350.0)
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.350.0"
version = "0.350.1"
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.350.0" # x-release-please-version
__version__ = "0.350.1" # 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