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 @@
{
".": "1.25.0"
".": "1.26.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

## 1.26.0 (2025-08-06)

Full Changelog: [v1.25.0...v1.26.0](https://github.com/Increase/increase-ruby/compare/v1.25.0...v1.26.0)

### Features

* **api:** api update ([ead23ff](https://github.com/Increase/increase-ruby/commit/ead23ffebd18c71e3ae34fbec6ecbe20a0805586))

## 1.25.0 (2025-08-06)

Full Changelog: [v1.24.0...v1.25.0](https://github.com/Increase/increase-ruby/compare/v1.24.0...v1.25.0)
Expand Down
2 changes: 1 addition & 1 deletion Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ GIT
PATH
remote: .
specs:
increase (1.25.0)
increase (1.26.0)
connection_pool

GEM
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ To use this gem, install via Bundler by adding the following to your application
<!-- x-release-please-start-version -->

```ruby
gem "increase", "~> 1.25.0"
gem "increase", "~> 1.26.0"
```

<!-- x-release-please-end -->
Expand Down
11 changes: 7 additions & 4 deletions lib/increase/models/transaction.rb
Original file line number Diff line number Diff line change
Expand Up @@ -1157,19 +1157,22 @@ module EventType
CHARGEBACK_SUBMITTED = :chargeback_submitted

# The user declined the merchant's request for pre-arbitration.
MERCHANT_PREARBITRATION_DECLINED = :merchant_prearbitration_declined
MERCHANT_PREARBITRATION_REQUEST_DECLINE_SUBMITTED = :merchant_prearbitration_request_decline_submitted

# The merchant's request for pre-arbitration was received.
MERCHANT_PREARBITRATION_RECEIVED = :merchant_prearbitration_received
MERCHANT_PREARBITRATION_REQUEST_RECEIVED = :merchant_prearbitration_request_received

# The transaction was represented by the merchant.
REPRESENTED = :represented

# The user's request for pre-arbitration was declined.
USER_PREARBITRATION_DECLINED = :user_prearbitration_declined
USER_PREARBITRATION_REQUEST_DECLINE_RECEIVED = :user_prearbitration_request_decline_received

# The user's request for pre-arbitration was submitted.
USER_PREARBITRATION_SUBMITTED = :user_prearbitration_submitted
USER_PREARBITRATION_REQUEST_SUBMITTED = :user_prearbitration_request_submitted

# The user withdrew from the dispute.
USER_WITHDRAWAL_SUBMITTED = :user_withdrawal_submitted

# @!method self.values
# @return [Array<Symbol>]
Expand Down
2 changes: 1 addition & 1 deletion lib/increase/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# frozen_string_literal: true

module Increase
VERSION = "1.25.0"
VERSION = "1.26.0"
end
23 changes: 15 additions & 8 deletions rbi/increase/models/transaction.rbi
Original file line number Diff line number Diff line change
Expand Up @@ -2338,16 +2338,16 @@ module Increase
)

# The user declined the merchant's request for pre-arbitration.
MERCHANT_PREARBITRATION_DECLINED =
MERCHANT_PREARBITRATION_REQUEST_DECLINE_SUBMITTED =
T.let(
:merchant_prearbitration_declined,
:merchant_prearbitration_request_decline_submitted,
Increase::Transaction::Source::CardDisputeFinancial::Visa::EventType::TaggedSymbol
)

# The merchant's request for pre-arbitration was received.
MERCHANT_PREARBITRATION_RECEIVED =
MERCHANT_PREARBITRATION_REQUEST_RECEIVED =
T.let(
:merchant_prearbitration_received,
:merchant_prearbitration_request_received,
Increase::Transaction::Source::CardDisputeFinancial::Visa::EventType::TaggedSymbol
)

Expand All @@ -2359,16 +2359,23 @@ module Increase
)

# The user's request for pre-arbitration was declined.
USER_PREARBITRATION_DECLINED =
USER_PREARBITRATION_REQUEST_DECLINE_RECEIVED =
T.let(
:user_prearbitration_declined,
:user_prearbitration_request_decline_received,
Increase::Transaction::Source::CardDisputeFinancial::Visa::EventType::TaggedSymbol
)

# The user's request for pre-arbitration was submitted.
USER_PREARBITRATION_SUBMITTED =
USER_PREARBITRATION_REQUEST_SUBMITTED =
T.let(
:user_prearbitration_submitted,
:user_prearbitration_request_submitted,
Increase::Transaction::Source::CardDisputeFinancial::Visa::EventType::TaggedSymbol
)

# The user withdrew from the dispute.
USER_WITHDRAWAL_SUBMITTED =
T.let(
:user_withdrawal_submitted,
Increase::Transaction::Source::CardDisputeFinancial::Visa::EventType::TaggedSymbol
)

Expand Down
20 changes: 12 additions & 8 deletions sig/increase/models/transaction.rbs
Original file line number Diff line number Diff line change
Expand Up @@ -813,11 +813,12 @@ module Increase

type event_type =
: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

module EventType
extend Increase::Internal::Type::Enum
Expand All @@ -826,19 +827,22 @@ module Increase
CHARGEBACK_SUBMITTED: :chargeback_submitted

# The user declined the merchant's request for pre-arbitration.
MERCHANT_PREARBITRATION_DECLINED: :merchant_prearbitration_declined
MERCHANT_PREARBITRATION_REQUEST_DECLINE_SUBMITTED: :merchant_prearbitration_request_decline_submitted

# The merchant's request for pre-arbitration was received.
MERCHANT_PREARBITRATION_RECEIVED: :merchant_prearbitration_received
MERCHANT_PREARBITRATION_REQUEST_RECEIVED: :merchant_prearbitration_request_received

# The transaction was represented by the merchant.
REPRESENTED: :represented

# The user's request for pre-arbitration was declined.
USER_PREARBITRATION_DECLINED: :user_prearbitration_declined
USER_PREARBITRATION_REQUEST_DECLINE_RECEIVED: :user_prearbitration_request_decline_received

# The user's request for pre-arbitration was submitted.
USER_PREARBITRATION_SUBMITTED: :user_prearbitration_submitted
USER_PREARBITRATION_REQUEST_SUBMITTED: :user_prearbitration_request_submitted

# The user withdrew from the dispute.
USER_WITHDRAWAL_SUBMITTED: :user_withdrawal_submitted

def self?.values: -> ::Array[Increase::Models::Transaction::Source::CardDisputeFinancial::Visa::event_type]
end
Expand Down