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 +4 -4
- data/CHANGELOG.md +8 -0
- data/README.md +1 -1
- data/lib/increase/models/transaction.rb +9 -9
- data/lib/increase/version.rb +1 -1
- data/rbi/increase/models/transaction.rbi +13 -13
- data/sig/increase/models/transaction.rbs +13 -13
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: fd793f88bc4f5866c7507f8385c92ad33a0f3b2036e908179bbc38b388e199e5
|
4
|
+
data.tar.gz: a09bc3cb79458b89a94510c88f6541b6475fefdc8c9247e3a21ec5f768eb78c8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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
@@ -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
|
1160
|
-
|
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
|
1163
|
-
|
1162
|
+
# The merchant's pre-arbitration submission was received.
|
1163
|
+
MERCHANT_PREARBITRATION_RECEIVED = :merchant_prearbitration_received
|
1164
1164
|
|
1165
|
-
# The transaction was
|
1165
|
+
# The transaction was re-presented by the merchant.
|
1166
1166
|
REPRESENTED = :represented
|
1167
1167
|
|
1168
|
-
# The user's
|
1169
|
-
|
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
|
1172
|
-
|
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
|
data/lib/increase/version.rb
CHANGED
@@ -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
|
2341
|
-
|
2340
|
+
# The user declined the merchant's pre-arbitration submission.
|
2341
|
+
MERCHANT_PREARBITRATION_DECLINE_SUBMITTED =
|
2342
2342
|
T.let(
|
2343
|
-
:
|
2343
|
+
:merchant_prearbitration_decline_submitted,
|
2344
2344
|
Increase::Transaction::Source::CardDisputeFinancial::Visa::EventType::TaggedSymbol
|
2345
2345
|
)
|
2346
2346
|
|
2347
|
-
# The merchant's
|
2348
|
-
|
2347
|
+
# The merchant's pre-arbitration submission was received.
|
2348
|
+
MERCHANT_PREARBITRATION_RECEIVED =
|
2349
2349
|
T.let(
|
2350
|
-
:
|
2350
|
+
:merchant_prearbitration_received,
|
2351
2351
|
Increase::Transaction::Source::CardDisputeFinancial::Visa::EventType::TaggedSymbol
|
2352
2352
|
)
|
2353
2353
|
|
2354
|
-
# The transaction was
|
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
|
2362
|
-
|
2361
|
+
# The user's pre-arbitration was declined by the merchant.
|
2362
|
+
USER_PREARBITRATION_DECLINE_RECEIVED =
|
2363
2363
|
T.let(
|
2364
|
-
:
|
2364
|
+
:user_prearbitration_decline_received,
|
2365
2365
|
Increase::Transaction::Source::CardDisputeFinancial::Visa::EventType::TaggedSymbol
|
2366
2366
|
)
|
2367
2367
|
|
2368
|
-
# The user's
|
2369
|
-
|
2368
|
+
# The user's pre-arbitration was submitted.
|
2369
|
+
USER_PREARBITRATION_SUBMITTED =
|
2370
2370
|
T.let(
|
2371
|
-
:
|
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
|
-
| :
|
817
|
-
| :
|
816
|
+
| :merchant_prearbitration_decline_submitted
|
817
|
+
| :merchant_prearbitration_received
|
818
818
|
| :represented
|
819
|
-
| :
|
820
|
-
| :
|
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
|
830
|
-
|
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
|
833
|
-
|
832
|
+
# The merchant's pre-arbitration submission was received.
|
833
|
+
MERCHANT_PREARBITRATION_RECEIVED: :merchant_prearbitration_received
|
834
834
|
|
835
|
-
# The transaction was
|
835
|
+
# The transaction was re-presented by the merchant.
|
836
836
|
REPRESENTED: :represented
|
837
837
|
|
838
|
-
# The user's
|
839
|
-
|
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
|
842
|
-
|
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
|