increase 1.25.0 → 1.27.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 +4 -4
- data/CHANGELOG.md +16 -0
- data/README.md +1 -1
- data/lib/increase/models/file.rb +3 -0
- data/lib/increase/models/file_create_params.rb +3 -0
- data/lib/increase/models/file_list_params.rb +3 -0
- data/lib/increase/models/transaction.rb +7 -4
- data/lib/increase/version.rb +1 -1
- data/rbi/increase/models/file.rbi +4 -0
- data/rbi/increase/models/file_create_params.rbi +7 -0
- data/rbi/increase/models/file_list_params.rbi +7 -0
- data/rbi/increase/models/transaction.rbi +15 -8
- data/sig/increase/models/file.rbs +5 -1
- data/sig/increase/models/file_create_params.rbs +5 -1
- data/sig/increase/models/file_list_params.rbs +5 -1
- data/sig/increase/models/transaction.rbs +12 -8
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 19774f02f0d7c5cc8292878a4157a0074006611b1cfb5f71f24a8c4cf7250406
|
4
|
+
data.tar.gz: 557d9b19db840937aa44e3792d4f5d40014f5d73db2f9c16e245f5a42422ad8c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4c49f1338f2681debedb5c68a65f0e191b9366766d57353890908cf49f67d2e62eec94f99d12f13348da744d3c08965a4a96d17c24fe2e001d215d4146c7d82f
|
7
|
+
data.tar.gz: fea2dacba8503378793ee41a544f0af7a6a9d08790d46154aa001e960ca71a312ed20d2cc6b362153f4d3f2068b56e1213b26d146c339d4710d26fbef511bb73
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,21 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
## 1.27.0 (2025-08-07)
|
4
|
+
|
5
|
+
Full Changelog: [v1.26.0...v1.27.0](https://github.com/Increase/increase-ruby/compare/v1.26.0...v1.27.0)
|
6
|
+
|
7
|
+
### Features
|
8
|
+
|
9
|
+
* **api:** api update ([44729b9](https://github.com/Increase/increase-ruby/commit/44729b9363b7c96a58f9e5bf77ffdbd981dc7a3e))
|
10
|
+
|
11
|
+
## 1.26.0 (2025-08-06)
|
12
|
+
|
13
|
+
Full Changelog: [v1.25.0...v1.26.0](https://github.com/Increase/increase-ruby/compare/v1.25.0...v1.26.0)
|
14
|
+
|
15
|
+
### Features
|
16
|
+
|
17
|
+
* **api:** api update ([ead23ff](https://github.com/Increase/increase-ruby/commit/ead23ffebd18c71e3ae34fbec6ecbe20a0805586))
|
18
|
+
|
3
19
|
## 1.25.0 (2025-08-06)
|
4
20
|
|
5
21
|
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
data/lib/increase/models/file.rb
CHANGED
@@ -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
|
|
@@ -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
|
-
|
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
|
-
|
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
|
-
|
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
|
-
|
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>]
|
data/lib/increase/version.rb
CHANGED
@@ -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(
|
@@ -2338,16 +2338,16 @@ module Increase
|
|
2338
2338
|
)
|
2339
2339
|
|
2340
2340
|
# The user declined the merchant's request for pre-arbitration.
|
2341
|
-
|
2341
|
+
MERCHANT_PREARBITRATION_REQUEST_DECLINE_SUBMITTED =
|
2342
2342
|
T.let(
|
2343
|
-
:
|
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
|
-
|
2348
|
+
MERCHANT_PREARBITRATION_REQUEST_RECEIVED =
|
2349
2349
|
T.let(
|
2350
|
-
:
|
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
|
-
|
2362
|
+
USER_PREARBITRATION_REQUEST_DECLINE_RECEIVED =
|
2363
2363
|
T.let(
|
2364
|
-
:
|
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
|
-
|
2369
|
+
USER_PREARBITRATION_REQUEST_SUBMITTED =
|
2370
2370
|
T.let(
|
2371
|
-
:
|
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
|
|
@@ -71,7 +71,8 @@ module Increase
|
|
71
71
|
end
|
72
72
|
|
73
73
|
type purpose =
|
74
|
-
:
|
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
|
-
:
|
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
|
-
:
|
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,12 @@ module Increase
|
|
813
813
|
|
814
814
|
type event_type =
|
815
815
|
:chargeback_submitted
|
816
|
-
| :
|
817
|
-
| :
|
816
|
+
| :merchant_prearbitration_request_decline_submitted
|
817
|
+
| :merchant_prearbitration_request_received
|
818
818
|
| :represented
|
819
|
-
| :
|
820
|
-
| :
|
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
|
-
|
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
|
-
|
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
|
-
|
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
|
-
|
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,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: increase
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.27.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-
|
11
|
+
date: 2025-08-07 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: connection_pool
|