increase 1.27.0 → 1.28.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: 19774f02f0d7c5cc8292878a4157a0074006611b1cfb5f71f24a8c4cf7250406
4
- data.tar.gz: 557d9b19db840937aa44e3792d4f5d40014f5d73db2f9c16e245f5a42422ad8c
3
+ metadata.gz: fd793f88bc4f5866c7507f8385c92ad33a0f3b2036e908179bbc38b388e199e5
4
+ data.tar.gz: a09bc3cb79458b89a94510c88f6541b6475fefdc8c9247e3a21ec5f768eb78c8
5
5
  SHA512:
6
- metadata.gz: 4c49f1338f2681debedb5c68a65f0e191b9366766d57353890908cf49f67d2e62eec94f99d12f13348da744d3c08965a4a96d17c24fe2e001d215d4146c7d82f
7
- data.tar.gz: fea2dacba8503378793ee41a544f0af7a6a9d08790d46154aa001e960ca71a312ed20d2cc6b362153f4d3f2068b56e1213b26d146c339d4710d26fbef511bb73
6
+ metadata.gz: 1ceb76137128dbae249f47779434768271ad67fc38b8a4a8f4a0d78a40cb96117e0748a19809532f269d9615822e8b9b40aff24b1ea807b1ca1f8f8b4851c883
7
+ data.tar.gz: d3dbbbbcb53d24e2b392aca73226f1c991c311e0a39d84ccf8542403fdbf089854a3c23a68080279a512c9ca10d75a87f475044e7b3b64853292b65068604bee
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Changelog
2
2
 
3
+ ## 1.28.0 (2025-08-07)
4
+
5
+ Full Changelog: [v1.27.0...v1.28.0](https://github.com/Increase/increase-ruby/compare/v1.27.0...v1.28.0)
6
+
7
+ ### Features
8
+
9
+ * **api:** api update ([e3cfc2d](https://github.com/Increase/increase-ruby/commit/e3cfc2d3f8b3d0927f21d78ebde304ae99a4c8bd))
10
+
3
11
  ## 1.27.0 (2025-08-07)
4
12
 
5
13
  Full Changelog: [v1.26.0...v1.27.0](https://github.com/Increase/increase-ruby/compare/v1.26.0...v1.27.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.27.0"
18
+ gem "increase", "~> 1.28.0"
19
19
  ```
20
20
 
21
21
  <!-- x-release-please-end -->
@@ -1156,20 +1156,20 @@ module Increase
1156
1156
  # The user's chargeback was submitted.
1157
1157
  CHARGEBACK_SUBMITTED = :chargeback_submitted
1158
1158
 
1159
- # The user declined the merchant's request for pre-arbitration.
1160
- MERCHANT_PREARBITRATION_REQUEST_DECLINE_SUBMITTED = :merchant_prearbitration_request_decline_submitted
1159
+ # The user declined the merchant's pre-arbitration submission.
1160
+ MERCHANT_PREARBITRATION_DECLINE_SUBMITTED = :merchant_prearbitration_decline_submitted
1161
1161
 
1162
- # The merchant's request for pre-arbitration was received.
1163
- MERCHANT_PREARBITRATION_REQUEST_RECEIVED = :merchant_prearbitration_request_received
1162
+ # The merchant's pre-arbitration submission was received.
1163
+ MERCHANT_PREARBITRATION_RECEIVED = :merchant_prearbitration_received
1164
1164
 
1165
- # The transaction was represented by the merchant.
1165
+ # The transaction was re-presented by the merchant.
1166
1166
  REPRESENTED = :represented
1167
1167
 
1168
- # The user's request for pre-arbitration was declined.
1169
- USER_PREARBITRATION_REQUEST_DECLINE_RECEIVED = :user_prearbitration_request_decline_received
1168
+ # The user's pre-arbitration was declined by the merchant.
1169
+ USER_PREARBITRATION_DECLINE_RECEIVED = :user_prearbitration_decline_received
1170
1170
 
1171
- # The user's request for pre-arbitration was submitted.
1172
- USER_PREARBITRATION_REQUEST_SUBMITTED = :user_prearbitration_request_submitted
1171
+ # The user's pre-arbitration was submitted.
1172
+ USER_PREARBITRATION_SUBMITTED = :user_prearbitration_submitted
1173
1173
 
1174
1174
  # The user withdrew from the dispute.
1175
1175
  USER_WITHDRAWAL_SUBMITTED = :user_withdrawal_submitted
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Increase
4
- VERSION = "1.27.0"
4
+ VERSION = "1.28.0"
5
5
  end
@@ -2337,38 +2337,38 @@ module Increase
2337
2337
  Increase::Transaction::Source::CardDisputeFinancial::Visa::EventType::TaggedSymbol
2338
2338
  )
2339
2339
 
2340
- # The user declined the merchant's request for pre-arbitration.
2341
- MERCHANT_PREARBITRATION_REQUEST_DECLINE_SUBMITTED =
2340
+ # The user declined the merchant's pre-arbitration submission.
2341
+ MERCHANT_PREARBITRATION_DECLINE_SUBMITTED =
2342
2342
  T.let(
2343
- :merchant_prearbitration_request_decline_submitted,
2343
+ :merchant_prearbitration_decline_submitted,
2344
2344
  Increase::Transaction::Source::CardDisputeFinancial::Visa::EventType::TaggedSymbol
2345
2345
  )
2346
2346
 
2347
- # The merchant's request for pre-arbitration was received.
2348
- MERCHANT_PREARBITRATION_REQUEST_RECEIVED =
2347
+ # The merchant's pre-arbitration submission was received.
2348
+ MERCHANT_PREARBITRATION_RECEIVED =
2349
2349
  T.let(
2350
- :merchant_prearbitration_request_received,
2350
+ :merchant_prearbitration_received,
2351
2351
  Increase::Transaction::Source::CardDisputeFinancial::Visa::EventType::TaggedSymbol
2352
2352
  )
2353
2353
 
2354
- # The transaction was represented by the merchant.
2354
+ # The transaction was re-presented by the merchant.
2355
2355
  REPRESENTED =
2356
2356
  T.let(
2357
2357
  :represented,
2358
2358
  Increase::Transaction::Source::CardDisputeFinancial::Visa::EventType::TaggedSymbol
2359
2359
  )
2360
2360
 
2361
- # The user's request for pre-arbitration was declined.
2362
- USER_PREARBITRATION_REQUEST_DECLINE_RECEIVED =
2361
+ # The user's pre-arbitration was declined by the merchant.
2362
+ USER_PREARBITRATION_DECLINE_RECEIVED =
2363
2363
  T.let(
2364
- :user_prearbitration_request_decline_received,
2364
+ :user_prearbitration_decline_received,
2365
2365
  Increase::Transaction::Source::CardDisputeFinancial::Visa::EventType::TaggedSymbol
2366
2366
  )
2367
2367
 
2368
- # The user's request for pre-arbitration was submitted.
2369
- USER_PREARBITRATION_REQUEST_SUBMITTED =
2368
+ # The user's pre-arbitration was submitted.
2369
+ USER_PREARBITRATION_SUBMITTED =
2370
2370
  T.let(
2371
- :user_prearbitration_request_submitted,
2371
+ :user_prearbitration_submitted,
2372
2372
  Increase::Transaction::Source::CardDisputeFinancial::Visa::EventType::TaggedSymbol
2373
2373
  )
2374
2374
 
@@ -813,11 +813,11 @@ module Increase
813
813
 
814
814
  type event_type =
815
815
  :chargeback_submitted
816
- | :merchant_prearbitration_request_decline_submitted
817
- | :merchant_prearbitration_request_received
816
+ | :merchant_prearbitration_decline_submitted
817
+ | :merchant_prearbitration_received
818
818
  | :represented
819
- | :user_prearbitration_request_decline_received
820
- | :user_prearbitration_request_submitted
819
+ | :user_prearbitration_decline_received
820
+ | :user_prearbitration_submitted
821
821
  | :user_withdrawal_submitted
822
822
 
823
823
  module EventType
@@ -826,20 +826,20 @@ module Increase
826
826
  # The user's chargeback was submitted.
827
827
  CHARGEBACK_SUBMITTED: :chargeback_submitted
828
828
 
829
- # The user declined the merchant's request for pre-arbitration.
830
- MERCHANT_PREARBITRATION_REQUEST_DECLINE_SUBMITTED: :merchant_prearbitration_request_decline_submitted
829
+ # The user declined the merchant's pre-arbitration submission.
830
+ MERCHANT_PREARBITRATION_DECLINE_SUBMITTED: :merchant_prearbitration_decline_submitted
831
831
 
832
- # The merchant's request for pre-arbitration was received.
833
- MERCHANT_PREARBITRATION_REQUEST_RECEIVED: :merchant_prearbitration_request_received
832
+ # The merchant's pre-arbitration submission was received.
833
+ MERCHANT_PREARBITRATION_RECEIVED: :merchant_prearbitration_received
834
834
 
835
- # The transaction was represented by the merchant.
835
+ # The transaction was re-presented by the merchant.
836
836
  REPRESENTED: :represented
837
837
 
838
- # The user's request for pre-arbitration was declined.
839
- USER_PREARBITRATION_REQUEST_DECLINE_RECEIVED: :user_prearbitration_request_decline_received
838
+ # The user's pre-arbitration was declined by the merchant.
839
+ USER_PREARBITRATION_DECLINE_RECEIVED: :user_prearbitration_decline_received
840
840
 
841
- # The user's request for pre-arbitration was submitted.
842
- USER_PREARBITRATION_REQUEST_SUBMITTED: :user_prearbitration_request_submitted
841
+ # The user's pre-arbitration was submitted.
842
+ USER_PREARBITRATION_SUBMITTED: :user_prearbitration_submitted
843
843
 
844
844
  # The user withdrew from the dispute.
845
845
  USER_WITHDRAWAL_SUBMITTED: :user_withdrawal_submitted
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.27.0
4
+ version: 1.28.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Increase