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.277.0"
".": "0.278.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: 202
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-147712ba3a72b1dea9a966f9b0ebc99ccebe38e1789426115f3b4c8977ed03c8.yml
openapi_spec_hash: 6c6fc01c8ea4f34b3c2553928945c100
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-aca6b5e100fcf8da7f6fc67bfbf47543f197f1c3fed52d5f1147b7cbad515546.yml
openapi_spec_hash: 369011703600762a5a5d701b4e843f7b
config_hash: a185e9a72778cc4658ea73fb3a7f1354
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## 0.278.0 (2025-08-06)

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

### Features

* **api:** api update ([b8e0b20](https://github.com/Increase/increase-python/commit/b8e0b20eb0a4fa4637014078fcf499af07130ba4))

## 0.277.0 (2025-08-06)

Full Changelog: [v0.276.0...v0.277.0](https://github.com/Increase/increase-python/compare/v0.276.0...v0.277.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.277.0"
version = "0.278.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.277.0" # x-release-please-version
__version__ = "0.278.0" # x-release-please-version
24 changes: 13 additions & 11 deletions src/increase/types/transaction.py
Original file line number Diff line number Diff line change
Expand Up @@ -398,24 +398,26 @@ class SourceCardDisputeAcceptance(BaseModel):
class SourceCardDisputeFinancialVisa(BaseModel):
event_type: Literal[
"chargeback_submitted",
"merchant_prearbitration_declined",
"merchant_prearbitration_received",
"merchant_prearbitration_request_decline_submitted",
"merchant_prearbitration_request_received",
"represented",
"user_prearbitration_declined",
"user_prearbitration_submitted",
"user_prearbitration_request_decline_received",
"user_prearbitration_request_submitted",
"user_withdrawal_submitted",
]
"""The type of card dispute financial event.

- `chargeback_submitted` - The user's chargeback was submitted.
- `merchant_prearbitration_declined` - The user declined the merchant's request
for pre-arbitration.
- `merchant_prearbitration_received` - The merchant's request for
- `merchant_prearbitration_request_decline_submitted` - The user declined the
merchant's request for pre-arbitration.
- `merchant_prearbitration_request_received` - The merchant's request for
pre-arbitration was received.
- `represented` - The transaction was represented by the merchant.
- `user_prearbitration_declined` - The user's request for pre-arbitration was
declined.
- `user_prearbitration_submitted` - The user's request for pre-arbitration was
submitted.
- `user_prearbitration_request_decline_received` - The user's request for
pre-arbitration was declined.
- `user_prearbitration_request_submitted` - The user's request for
pre-arbitration was submitted.
- `user_withdrawal_submitted` - The user withdrew from the dispute.
"""


Expand Down