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.27.0"
".": "1.28.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-66fad62aee38079ae7b0574a128763512b551d0b0f107a056bc981123d8e348d.yml
openapi_spec_hash: 299b75e8d2f36e6fe3d2df4c10d2557c
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-244805b184601a0639e868cb601337a5ebe0f259576a7e22d46c881ee22e17d3.yml
openapi_spec_hash: a667a8fca7bc57f82f22ddc2a9829e19
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.28.0 (2025-08-07)

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

### Features

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

## 1.27.0 (2025-08-07)

Full Changelog: [v1.26.0...v1.27.0](https://github.com/Increase/increase-ruby/compare/v1.26.0...v1.27.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.27.0)
increase (1.28.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.27.0"
gem "increase", "~> 1.28.0"
```

<!-- x-release-please-end -->
Expand Down
18 changes: 9 additions & 9 deletions lib/increase/models/transaction.rb
Original file line number Diff line number Diff line change
Expand Up @@ -1156,20 +1156,20 @@ module EventType
# The user's chargeback was submitted.
CHARGEBACK_SUBMITTED = :chargeback_submitted

# The user declined the merchant's request for pre-arbitration.
MERCHANT_PREARBITRATION_REQUEST_DECLINE_SUBMITTED = :merchant_prearbitration_request_decline_submitted
# The user declined the merchant's pre-arbitration submission.
MERCHANT_PREARBITRATION_DECLINE_SUBMITTED = :merchant_prearbitration_decline_submitted

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

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

# The user's request for pre-arbitration was declined.
USER_PREARBITRATION_REQUEST_DECLINE_RECEIVED = :user_prearbitration_request_decline_received
# The user's pre-arbitration was declined by the merchant.
USER_PREARBITRATION_DECLINE_RECEIVED = :user_prearbitration_decline_received

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

# The user withdrew from the dispute.
USER_WITHDRAWAL_SUBMITTED = :user_withdrawal_submitted
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.27.0"
VERSION = "1.28.0"
end
26 changes: 13 additions & 13 deletions rbi/increase/models/transaction.rbi
Original file line number Diff line number Diff line change
Expand Up @@ -2337,38 +2337,38 @@ module Increase
Increase::Transaction::Source::CardDisputeFinancial::Visa::EventType::TaggedSymbol
)

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

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

# The transaction was represented by the merchant.
# The transaction was re-presented by the merchant.
REPRESENTED =
T.let(
:represented,
Increase::Transaction::Source::CardDisputeFinancial::Visa::EventType::TaggedSymbol
)

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

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

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

type event_type =
:chargeback_submitted
| :merchant_prearbitration_request_decline_submitted
| :merchant_prearbitration_request_received
| :merchant_prearbitration_decline_submitted
| :merchant_prearbitration_received
| :represented
| :user_prearbitration_request_decline_received
| :user_prearbitration_request_submitted
| :user_prearbitration_decline_received
| :user_prearbitration_submitted
| :user_withdrawal_submitted

module EventType
Expand All @@ -826,20 +826,20 @@ module Increase
# The user's chargeback was submitted.
CHARGEBACK_SUBMITTED: :chargeback_submitted

# The user declined the merchant's request for pre-arbitration.
MERCHANT_PREARBITRATION_REQUEST_DECLINE_SUBMITTED: :merchant_prearbitration_request_decline_submitted
# The user declined the merchant's pre-arbitration submission.
MERCHANT_PREARBITRATION_DECLINE_SUBMITTED: :merchant_prearbitration_decline_submitted

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

# The transaction was represented by the merchant.
# The transaction was re-presented by the merchant.
REPRESENTED: :represented

# The user's request for pre-arbitration was declined.
USER_PREARBITRATION_REQUEST_DECLINE_RECEIVED: :user_prearbitration_request_decline_received
# The user's pre-arbitration was declined by the merchant.
USER_PREARBITRATION_DECLINE_RECEIVED: :user_prearbitration_decline_received

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

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