increase 1.26.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: 56a924360e0d8ea38207c5e7f661b0825fcc4bc15856c66b99710e4e1aa47651
4
- data.tar.gz: 82a9337987e06e0342ce0aa0cace248e23024f0a95dc585d17151649e7a43f3a
3
+ metadata.gz: fd793f88bc4f5866c7507f8385c92ad33a0f3b2036e908179bbc38b388e199e5
4
+ data.tar.gz: a09bc3cb79458b89a94510c88f6541b6475fefdc8c9247e3a21ec5f768eb78c8
5
5
  SHA512:
6
- metadata.gz: ba796987e6672567c22272829bd3d12e1ffaf73f8591f91586a1ec6e7cce117cde25e8257bb4e88b9ecd61ce48826728454fa32d21e19256861fbed8af833bed
7
- data.tar.gz: 858a9db4237e4e8cda5163e0bd51c2a2950dfc794ab6ff86f7c923bbf5b79279de2a9e82d91859656d8f9a6b989ae6979fb363060f26e6d672e7e5f987ac9769
6
+ metadata.gz: 1ceb76137128dbae249f47779434768271ad67fc38b8a4a8f4a0d78a40cb96117e0748a19809532f269d9615822e8b9b40aff24b1ea807b1ca1f8f8b4851c883
7
+ data.tar.gz: d3dbbbbcb53d24e2b392aca73226f1c991c311e0a39d84ccf8542403fdbf089854a3c23a68080279a512c9ca10d75a87f475044e7b3b64853292b65068604bee
data/CHANGELOG.md CHANGED
@@ -1,5 +1,21 @@
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
+
11
+ ## 1.27.0 (2025-08-07)
12
+
13
+ Full Changelog: [v1.26.0...v1.27.0](https://github.com/Increase/increase-ruby/compare/v1.26.0...v1.27.0)
14
+
15
+ ### Features
16
+
17
+ * **api:** api update ([44729b9](https://github.com/Increase/increase-ruby/commit/44729b9363b7c96a58f9e5bf77ffdbd981dc7a3e))
18
+
3
19
  ## 1.26.0 (2025-08-06)
4
20
 
5
21
  Full Changelog: [v1.25.0...v1.26.0](https://github.com/Increase/increase-ruby/compare/v1.25.0...v1.26.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.26.0"
18
+ gem "increase", "~> 1.28.0"
19
19
  ```
20
20
 
21
21
  <!-- x-release-please-end -->
@@ -114,6 +114,9 @@ module Increase
114
114
  module Purpose
115
115
  extend Increase::Internal::Type::Enum
116
116
 
117
+ # A file to be attached to a Card Dispute.
118
+ CARD_DISPUTE_ATTACHMENT = :card_dispute_attachment
119
+
117
120
  # An image of the front of a check, used for check deposits.
118
121
  CHECK_IMAGE_FRONT = :check_image_front
119
122
 
@@ -43,6 +43,9 @@ module Increase
43
43
  module Purpose
44
44
  extend Increase::Internal::Type::Enum
45
45
 
46
+ # A file to be attached to a Card Dispute.
47
+ CARD_DISPUTE_ATTACHMENT = :card_dispute_attachment
48
+
46
49
  # An image of the front of a check, used for check deposits.
47
50
  CHECK_IMAGE_FRONT = :check_image_front
48
51
 
@@ -116,6 +116,9 @@ module Increase
116
116
  module In
117
117
  extend Increase::Internal::Type::Enum
118
118
 
119
+ # A file to be attached to a Card Dispute.
120
+ CARD_DISPUTE_ATTACHMENT = :card_dispute_attachment
121
+
119
122
  # An image of the front of a check, used for check deposits.
120
123
  CHECK_IMAGE_FRONT = :check_image_front
121
124
 
@@ -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.26.0"
4
+ VERSION = "1.28.0"
5
5
  end
@@ -140,6 +140,10 @@ module Increase
140
140
  TaggedSymbol = T.type_alias { T.all(Symbol, Increase::File::Purpose) }
141
141
  OrSymbol = T.type_alias { T.any(Symbol, String) }
142
142
 
143
+ # A file to be attached to a Card Dispute.
144
+ CARD_DISPUTE_ATTACHMENT =
145
+ T.let(:card_dispute_attachment, Increase::File::Purpose::TaggedSymbol)
146
+
143
147
  # An image of the front of a check, used for check deposits.
144
148
  CHECK_IMAGE_FRONT =
145
149
  T.let(:check_image_front, Increase::File::Purpose::TaggedSymbol)
@@ -70,6 +70,13 @@ module Increase
70
70
  T.type_alias { T.all(Symbol, Increase::FileCreateParams::Purpose) }
71
71
  OrSymbol = T.type_alias { T.any(Symbol, String) }
72
72
 
73
+ # A file to be attached to a Card Dispute.
74
+ CARD_DISPUTE_ATTACHMENT =
75
+ T.let(
76
+ :card_dispute_attachment,
77
+ Increase::FileCreateParams::Purpose::TaggedSymbol
78
+ )
79
+
73
80
  # An image of the front of a check, used for check deposits.
74
81
  CHECK_IMAGE_FRONT =
75
82
  T.let(
@@ -220,6 +220,13 @@ module Increase
220
220
  end
221
221
  OrSymbol = T.type_alias { T.any(Symbol, String) }
222
222
 
223
+ # A file to be attached to a Card Dispute.
224
+ CARD_DISPUTE_ATTACHMENT =
225
+ T.let(
226
+ :card_dispute_attachment,
227
+ Increase::FileListParams::Purpose::In::TaggedSymbol
228
+ )
229
+
223
230
  # An image of the front of a check, used for check deposits.
224
231
  CHECK_IMAGE_FRONT =
225
232
  T.let(
@@ -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
 
@@ -71,7 +71,8 @@ module Increase
71
71
  end
72
72
 
73
73
  type purpose =
74
- :check_image_front
74
+ :card_dispute_attachment
75
+ | :check_image_front
75
76
  | :check_image_back
76
77
  | :processed_check_image_front
77
78
  | :processed_check_image_back
@@ -103,6 +104,9 @@ module Increase
103
104
  module Purpose
104
105
  extend Increase::Internal::Type::Enum
105
106
 
107
+ # A file to be attached to a Card Dispute.
108
+ CARD_DISPUTE_ATTACHMENT: :card_dispute_attachment
109
+
106
110
  # An image of the front of a check, used for check deposits.
107
111
  CHECK_IMAGE_FRONT: :check_image_front
108
112
 
@@ -35,7 +35,8 @@ module Increase
35
35
  }
36
36
 
37
37
  type purpose =
38
- :check_image_front
38
+ :card_dispute_attachment
39
+ | :check_image_front
39
40
  | :check_image_back
40
41
  | :mailed_check_image
41
42
  | :check_attachment
@@ -55,6 +56,9 @@ module Increase
55
56
  module Purpose
56
57
  extend Increase::Internal::Type::Enum
57
58
 
59
+ # A file to be attached to a Card Dispute.
60
+ CARD_DISPUTE_ATTACHMENT: :card_dispute_attachment
61
+
58
62
  # An image of the front of a check, used for check deposits.
59
63
  CHECK_IMAGE_FRONT: :check_image_front
60
64
 
@@ -110,7 +110,8 @@ module Increase
110
110
  }
111
111
 
112
112
  type in_ =
113
- :check_image_front
113
+ :card_dispute_attachment
114
+ | :check_image_front
114
115
  | :check_image_back
115
116
  | :processed_check_image_front
116
117
  | :processed_check_image_back
@@ -142,6 +143,9 @@ module Increase
142
143
  module In
143
144
  extend Increase::Internal::Type::Enum
144
145
 
146
+ # A file to be attached to a Card Dispute.
147
+ CARD_DISPUTE_ATTACHMENT: :card_dispute_attachment
148
+
145
149
  # An image of the front of a check, used for check deposits.
146
150
  CHECK_IMAGE_FRONT: :check_image_front
147
151
 
@@ -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,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: increase
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.26.0
4
+ version: 1.28.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Increase
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2025-08-06 00:00:00.000000000 Z
11
+ date: 2025-08-07 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: connection_pool