increase 1.25.0 → 1.26.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 5e913e54ef11c134a434f442ca8f8e3f30e35c3573be854f823c86091509074d
4
- data.tar.gz: e43e31329ba38f47865992b8ab9adda4b6fe5579f2bcc60f448170f40643bfd6
3
+ metadata.gz: 56a924360e0d8ea38207c5e7f661b0825fcc4bc15856c66b99710e4e1aa47651
4
+ data.tar.gz: 82a9337987e06e0342ce0aa0cace248e23024f0a95dc585d17151649e7a43f3a
5
5
  SHA512:
6
- metadata.gz: ebf5ce5c60e3f8b112872b4d14cf2bbd713a9d762a23a05492daf35019206b82d079f7bf21bb3b5bcacf19b69fcf7b309cbafc4a7f4b97fe87f352af2d259121
7
- data.tar.gz: 69a97cc95a7352d0e67e1029a0579d3c8af53323b5775281d0228f8df725f6a55919d0765928100f4ce3fd2006ae99a4083e8bc527ccfc54ee174e5c1b81d86d
6
+ metadata.gz: ba796987e6672567c22272829bd3d12e1ffaf73f8591f91586a1ec6e7cce117cde25e8257bb4e88b9ecd61ce48826728454fa32d21e19256861fbed8af833bed
7
+ data.tar.gz: 858a9db4237e4e8cda5163e0bd51c2a2950dfc794ab6ff86f7c923bbf5b79279de2a9e82d91859656d8f9a6b989ae6979fb363060f26e6d672e7e5f987ac9769
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Changelog
2
2
 
3
+ ## 1.26.0 (2025-08-06)
4
+
5
+ Full Changelog: [v1.25.0...v1.26.0](https://github.com/Increase/increase-ruby/compare/v1.25.0...v1.26.0)
6
+
7
+ ### Features
8
+
9
+ * **api:** api update ([ead23ff](https://github.com/Increase/increase-ruby/commit/ead23ffebd18c71e3ae34fbec6ecbe20a0805586))
10
+
3
11
  ## 1.25.0 (2025-08-06)
4
12
 
5
13
  Full Changelog: [v1.24.0...v1.25.0](https://github.com/Increase/increase-ruby/compare/v1.24.0...v1.25.0)
data/README.md CHANGED
@@ -15,7 +15,7 @@ To use this gem, install via Bundler by adding the following to your application
15
15
  <!-- x-release-please-start-version -->
16
16
 
17
17
  ```ruby
18
- gem "increase", "~> 1.25.0"
18
+ gem "increase", "~> 1.26.0"
19
19
  ```
20
20
 
21
21
  <!-- x-release-please-end -->
@@ -1157,19 +1157,22 @@ module Increase
1157
1157
  CHARGEBACK_SUBMITTED = :chargeback_submitted
1158
1158
 
1159
1159
  # The user declined the merchant's request for pre-arbitration.
1160
- MERCHANT_PREARBITRATION_DECLINED = :merchant_prearbitration_declined
1160
+ MERCHANT_PREARBITRATION_REQUEST_DECLINE_SUBMITTED = :merchant_prearbitration_request_decline_submitted
1161
1161
 
1162
1162
  # The merchant's request for pre-arbitration was received.
1163
- MERCHANT_PREARBITRATION_RECEIVED = :merchant_prearbitration_received
1163
+ MERCHANT_PREARBITRATION_REQUEST_RECEIVED = :merchant_prearbitration_request_received
1164
1164
 
1165
1165
  # The transaction was represented by the merchant.
1166
1166
  REPRESENTED = :represented
1167
1167
 
1168
1168
  # The user's request for pre-arbitration was declined.
1169
- USER_PREARBITRATION_DECLINED = :user_prearbitration_declined
1169
+ USER_PREARBITRATION_REQUEST_DECLINE_RECEIVED = :user_prearbitration_request_decline_received
1170
1170
 
1171
1171
  # The user's request for pre-arbitration was submitted.
1172
- USER_PREARBITRATION_SUBMITTED = :user_prearbitration_submitted
1172
+ USER_PREARBITRATION_REQUEST_SUBMITTED = :user_prearbitration_request_submitted
1173
+
1174
+ # The user withdrew from the dispute.
1175
+ USER_WITHDRAWAL_SUBMITTED = :user_withdrawal_submitted
1173
1176
 
1174
1177
  # @!method self.values
1175
1178
  # @return [Array<Symbol>]
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Increase
4
- VERSION = "1.25.0"
4
+ VERSION = "1.26.0"
5
5
  end
@@ -2338,16 +2338,16 @@ module Increase
2338
2338
  )
2339
2339
 
2340
2340
  # The user declined the merchant's request for pre-arbitration.
2341
- MERCHANT_PREARBITRATION_DECLINED =
2341
+ MERCHANT_PREARBITRATION_REQUEST_DECLINE_SUBMITTED =
2342
2342
  T.let(
2343
- :merchant_prearbitration_declined,
2343
+ :merchant_prearbitration_request_decline_submitted,
2344
2344
  Increase::Transaction::Source::CardDisputeFinancial::Visa::EventType::TaggedSymbol
2345
2345
  )
2346
2346
 
2347
2347
  # The merchant's request for pre-arbitration was received.
2348
- MERCHANT_PREARBITRATION_RECEIVED =
2348
+ MERCHANT_PREARBITRATION_REQUEST_RECEIVED =
2349
2349
  T.let(
2350
- :merchant_prearbitration_received,
2350
+ :merchant_prearbitration_request_received,
2351
2351
  Increase::Transaction::Source::CardDisputeFinancial::Visa::EventType::TaggedSymbol
2352
2352
  )
2353
2353
 
@@ -2359,16 +2359,23 @@ module Increase
2359
2359
  )
2360
2360
 
2361
2361
  # The user's request for pre-arbitration was declined.
2362
- USER_PREARBITRATION_DECLINED =
2362
+ USER_PREARBITRATION_REQUEST_DECLINE_RECEIVED =
2363
2363
  T.let(
2364
- :user_prearbitration_declined,
2364
+ :user_prearbitration_request_decline_received,
2365
2365
  Increase::Transaction::Source::CardDisputeFinancial::Visa::EventType::TaggedSymbol
2366
2366
  )
2367
2367
 
2368
2368
  # The user's request for pre-arbitration was submitted.
2369
- USER_PREARBITRATION_SUBMITTED =
2369
+ USER_PREARBITRATION_REQUEST_SUBMITTED =
2370
2370
  T.let(
2371
- :user_prearbitration_submitted,
2371
+ :user_prearbitration_request_submitted,
2372
+ Increase::Transaction::Source::CardDisputeFinancial::Visa::EventType::TaggedSymbol
2373
+ )
2374
+
2375
+ # The user withdrew from the dispute.
2376
+ USER_WITHDRAWAL_SUBMITTED =
2377
+ T.let(
2378
+ :user_withdrawal_submitted,
2372
2379
  Increase::Transaction::Source::CardDisputeFinancial::Visa::EventType::TaggedSymbol
2373
2380
  )
2374
2381
 
@@ -813,11 +813,12 @@ module Increase
813
813
 
814
814
  type event_type =
815
815
  :chargeback_submitted
816
- | :merchant_prearbitration_declined
817
- | :merchant_prearbitration_received
816
+ | :merchant_prearbitration_request_decline_submitted
817
+ | :merchant_prearbitration_request_received
818
818
  | :represented
819
- | :user_prearbitration_declined
820
- | :user_prearbitration_submitted
819
+ | :user_prearbitration_request_decline_received
820
+ | :user_prearbitration_request_submitted
821
+ | :user_withdrawal_submitted
821
822
 
822
823
  module EventType
823
824
  extend Increase::Internal::Type::Enum
@@ -826,19 +827,22 @@ module Increase
826
827
  CHARGEBACK_SUBMITTED: :chargeback_submitted
827
828
 
828
829
  # The user declined the merchant's request for pre-arbitration.
829
- MERCHANT_PREARBITRATION_DECLINED: :merchant_prearbitration_declined
830
+ MERCHANT_PREARBITRATION_REQUEST_DECLINE_SUBMITTED: :merchant_prearbitration_request_decline_submitted
830
831
 
831
832
  # The merchant's request for pre-arbitration was received.
832
- MERCHANT_PREARBITRATION_RECEIVED: :merchant_prearbitration_received
833
+ MERCHANT_PREARBITRATION_REQUEST_RECEIVED: :merchant_prearbitration_request_received
833
834
 
834
835
  # The transaction was represented by the merchant.
835
836
  REPRESENTED: :represented
836
837
 
837
838
  # The user's request for pre-arbitration was declined.
838
- USER_PREARBITRATION_DECLINED: :user_prearbitration_declined
839
+ USER_PREARBITRATION_REQUEST_DECLINE_RECEIVED: :user_prearbitration_request_decline_received
839
840
 
840
841
  # The user's request for pre-arbitration was submitted.
841
- USER_PREARBITRATION_SUBMITTED: :user_prearbitration_submitted
842
+ USER_PREARBITRATION_REQUEST_SUBMITTED: :user_prearbitration_request_submitted
843
+
844
+ # The user withdrew from the dispute.
845
+ USER_WITHDRAWAL_SUBMITTED: :user_withdrawal_submitted
842
846
 
843
847
  def self?.values: -> ::Array[Increase::Models::Transaction::Source::CardDisputeFinancial::Visa::event_type]
844
848
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: increase
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.25.0
4
+ version: 1.26.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Increase