increase 1.232.0 → 1.234.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/card_payment.rb +24 -6
- data/lib/increase/models/declined_transaction.rb +8 -2
- data/lib/increase/models/pending_transaction.rb +4 -1
- data/lib/increase/models/real_time_decision.rb +613 -5
- data/lib/increase/models/simulations/card_authorization_create_params.rb +8 -2
- data/lib/increase/models/simulations/card_balance_inquiry_create_params.rb +8 -2
- data/lib/increase/models/transaction.rb +4 -1
- data/lib/increase/version.rb +1 -1
- data/rbi/increase/models/card_payment.rbi +48 -6
- data/rbi/increase/models/declined_transaction.rbi +16 -2
- data/rbi/increase/models/pending_transaction.rbi +8 -1
- data/rbi/increase/models/real_time_decision.rbi +1157 -67
- data/rbi/increase/models/simulations/card_authorization_create_params.rbi +16 -2
- data/rbi/increase/models/simulations/card_balance_inquiry_create_params.rbi +16 -2
- data/rbi/increase/models/transaction.rbi +8 -1
- data/sig/increase/models/card_payment.rbs +30 -6
- data/sig/increase/models/declined_transaction.rbs +10 -2
- data/sig/increase/models/pending_transaction.rbs +5 -1
- data/sig/increase/models/real_time_decision.rbs +493 -2
- data/sig/increase/models/simulations/card_authorization_create_params.rbs +10 -2
- data/sig/increase/models/simulations/card_balance_inquiry_create_params.rbs +10 -2
- data/sig/increase/models/transaction.rbs +5 -1
- 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: c17f042673181ce2ce25d7e18530dc03efa3e6c43aaee6d9499b62a3029a6442
|
|
4
|
+
data.tar.gz: 86db4a6fd21825d6dec8639c5a1d518b7a54940e710ad66540a8e56b0469b137
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 9714657d4a686b3e458efa07b137fe5c1f6f31d6294ae94c10fd9c4b00e06a20e5d6934ee218f033f8d5733dc91878183e6efd79a63970b9d84602af35139455
|
|
7
|
+
data.tar.gz: d8f0e484536b4c72ee08c06b4cf594fd33a94976efac7bebaccea94f93373bafdd004521e25422ab03f9e9d8f4a9e2b11926b8b4ae9557aec8f9c4d5e3e50338
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 1.234.0 (2026-03-06)
|
|
4
|
+
|
|
5
|
+
Full Changelog: [v1.233.0...v1.234.0](https://github.com/Increase/increase-ruby/compare/v1.233.0...v1.234.0)
|
|
6
|
+
|
|
7
|
+
### Features
|
|
8
|
+
|
|
9
|
+
* **api:** api update ([b6c7325](https://github.com/Increase/increase-ruby/commit/b6c7325c671925b430c9e2dba7a0b354589bb57d))
|
|
10
|
+
|
|
11
|
+
## 1.233.0 (2026-03-05)
|
|
12
|
+
|
|
13
|
+
Full Changelog: [v1.232.0...v1.233.0](https://github.com/Increase/increase-ruby/compare/v1.232.0...v1.233.0)
|
|
14
|
+
|
|
15
|
+
### Features
|
|
16
|
+
|
|
17
|
+
* **api:** api update ([b54bea1](https://github.com/Increase/increase-ruby/commit/b54bea11390a8b03669a6a332f153448e259d9c9))
|
|
18
|
+
|
|
3
19
|
## 1.232.0 (2026-03-05)
|
|
4
20
|
|
|
5
21
|
Full Changelog: [v1.231.0...v1.232.0](https://github.com/Increase/increase-ruby/compare/v1.231.0...v1.232.0)
|
data/README.md
CHANGED
|
@@ -2131,9 +2131,12 @@ module Increase
|
|
|
2131
2131
|
# Increase failed to process the authorization in a timely manner.
|
|
2132
2132
|
ISSUER_ERROR = :issuer_error
|
|
2133
2133
|
|
|
2134
|
-
# The physical card read had an invalid CVV
|
|
2134
|
+
# The physical card read had an invalid CVV or dCVV.
|
|
2135
2135
|
INVALID_PHYSICAL_CARD = :invalid_physical_card
|
|
2136
2136
|
|
|
2137
|
+
# The card's authorization request cryptogram was invalid. The cryptogram can be from a physical card or a Digital Wallet Token purchase.
|
|
2138
|
+
INVALID_CRYPTOGRAM = :invalid_cryptogram
|
|
2139
|
+
|
|
2137
2140
|
# The 3DS cardholder authentication verification value was invalid.
|
|
2138
2141
|
INVALID_CARDHOLDER_AUTHENTICATION_VERIFICATION_VALUE =
|
|
2139
2142
|
:invalid_cardholder_authentication_verification_value
|
|
@@ -3416,9 +3419,12 @@ module Increase
|
|
|
3416
3419
|
# Increase failed to process the authorization in a timely manner.
|
|
3417
3420
|
ISSUER_ERROR = :issuer_error
|
|
3418
3421
|
|
|
3419
|
-
# The physical card read had an invalid CVV
|
|
3422
|
+
# The physical card read had an invalid CVV or dCVV.
|
|
3420
3423
|
INVALID_PHYSICAL_CARD = :invalid_physical_card
|
|
3421
3424
|
|
|
3425
|
+
# The card's authorization request cryptogram was invalid. The cryptogram can be from a physical card or a Digital Wallet Token purchase.
|
|
3426
|
+
INVALID_CRYPTOGRAM = :invalid_cryptogram
|
|
3427
|
+
|
|
3422
3428
|
# The 3DS cardholder authentication verification value was invalid.
|
|
3423
3429
|
INVALID_CARDHOLDER_AUTHENTICATION_VERIFICATION_VALUE =
|
|
3424
3430
|
:invalid_cardholder_authentication_verification_value
|
|
@@ -4655,9 +4661,12 @@ module Increase
|
|
|
4655
4661
|
# Increase failed to process the authorization in a timely manner.
|
|
4656
4662
|
ISSUER_ERROR = :issuer_error
|
|
4657
4663
|
|
|
4658
|
-
# The physical card read had an invalid CVV
|
|
4664
|
+
# The physical card read had an invalid CVV or dCVV.
|
|
4659
4665
|
INVALID_PHYSICAL_CARD = :invalid_physical_card
|
|
4660
4666
|
|
|
4667
|
+
# The card's authorization request cryptogram was invalid. The cryptogram can be from a physical card or a Digital Wallet Token purchase.
|
|
4668
|
+
INVALID_CRYPTOGRAM = :invalid_cryptogram
|
|
4669
|
+
|
|
4661
4670
|
# The 3DS cardholder authentication verification value was invalid.
|
|
4662
4671
|
INVALID_CARDHOLDER_AUTHENTICATION_VERIFICATION_VALUE =
|
|
4663
4672
|
:invalid_cardholder_authentication_verification_value
|
|
@@ -4887,12 +4896,15 @@ module Increase
|
|
|
4887
4896
|
# Declined by stand-in processing.
|
|
4888
4897
|
DECLINED_BY_STAND_IN_PROCESSING = :declined_by_stand_in_processing
|
|
4889
4898
|
|
|
4890
|
-
# The card read had an invalid CVV
|
|
4899
|
+
# The card read had an invalid CVV or dCVV.
|
|
4891
4900
|
INVALID_PHYSICAL_CARD = :invalid_physical_card
|
|
4892
4901
|
|
|
4893
4902
|
# The original card authorization for this incremental authorization does not exist.
|
|
4894
4903
|
MISSING_ORIGINAL_AUTHORIZATION = :missing_original_authorization
|
|
4895
4904
|
|
|
4905
|
+
# The card's authorization request cryptogram was invalid. The cryptogram can be from a physical card or a Digital Wallet Token purchase.
|
|
4906
|
+
INVALID_CRYPTOGRAM = :invalid_cryptogram
|
|
4907
|
+
|
|
4896
4908
|
# The transaction was declined because the 3DS authentication failed.
|
|
4897
4909
|
FAILED_3DS_AUTHENTICATION = :failed_3ds_authentication
|
|
4898
4910
|
|
|
@@ -6003,9 +6015,12 @@ module Increase
|
|
|
6003
6015
|
# Increase failed to process the authorization in a timely manner.
|
|
6004
6016
|
ISSUER_ERROR = :issuer_error
|
|
6005
6017
|
|
|
6006
|
-
# The physical card read had an invalid CVV
|
|
6018
|
+
# The physical card read had an invalid CVV or dCVV.
|
|
6007
6019
|
INVALID_PHYSICAL_CARD = :invalid_physical_card
|
|
6008
6020
|
|
|
6021
|
+
# The card's authorization request cryptogram was invalid. The cryptogram can be from a physical card or a Digital Wallet Token purchase.
|
|
6022
|
+
INVALID_CRYPTOGRAM = :invalid_cryptogram
|
|
6023
|
+
|
|
6009
6024
|
# The 3DS cardholder authentication verification value was invalid.
|
|
6010
6025
|
INVALID_CARDHOLDER_AUTHENTICATION_VERIFICATION_VALUE =
|
|
6011
6026
|
:invalid_cardholder_authentication_verification_value
|
|
@@ -11046,9 +11061,12 @@ module Increase
|
|
|
11046
11061
|
# Increase failed to process the authorization in a timely manner.
|
|
11047
11062
|
ISSUER_ERROR = :issuer_error
|
|
11048
11063
|
|
|
11049
|
-
# The physical card read had an invalid CVV
|
|
11064
|
+
# The physical card read had an invalid CVV or dCVV.
|
|
11050
11065
|
INVALID_PHYSICAL_CARD = :invalid_physical_card
|
|
11051
11066
|
|
|
11067
|
+
# The card's authorization request cryptogram was invalid. The cryptogram can be from a physical card or a Digital Wallet Token purchase.
|
|
11068
|
+
INVALID_CRYPTOGRAM = :invalid_cryptogram
|
|
11069
|
+
|
|
11052
11070
|
# The 3DS cardholder authentication verification value was invalid.
|
|
11053
11071
|
INVALID_CARDHOLDER_AUTHENTICATION_VERIFICATION_VALUE =
|
|
11054
11072
|
:invalid_cardholder_authentication_verification_value
|
|
@@ -1387,9 +1387,12 @@ module Increase
|
|
|
1387
1387
|
# Increase failed to process the authorization in a timely manner.
|
|
1388
1388
|
ISSUER_ERROR = :issuer_error
|
|
1389
1389
|
|
|
1390
|
-
# The physical card read had an invalid CVV
|
|
1390
|
+
# The physical card read had an invalid CVV or dCVV.
|
|
1391
1391
|
INVALID_PHYSICAL_CARD = :invalid_physical_card
|
|
1392
1392
|
|
|
1393
|
+
# The card's authorization request cryptogram was invalid. The cryptogram can be from a physical card or a Digital Wallet Token purchase.
|
|
1394
|
+
INVALID_CRYPTOGRAM = :invalid_cryptogram
|
|
1395
|
+
|
|
1393
1396
|
# The 3DS cardholder authentication verification value was invalid.
|
|
1394
1397
|
INVALID_CARDHOLDER_AUTHENTICATION_VERIFICATION_VALUE =
|
|
1395
1398
|
:invalid_cardholder_authentication_verification_value
|
|
@@ -1619,12 +1622,15 @@ module Increase
|
|
|
1619
1622
|
# Declined by stand-in processing.
|
|
1620
1623
|
DECLINED_BY_STAND_IN_PROCESSING = :declined_by_stand_in_processing
|
|
1621
1624
|
|
|
1622
|
-
# The card read had an invalid CVV
|
|
1625
|
+
# The card read had an invalid CVV or dCVV.
|
|
1623
1626
|
INVALID_PHYSICAL_CARD = :invalid_physical_card
|
|
1624
1627
|
|
|
1625
1628
|
# The original card authorization for this incremental authorization does not exist.
|
|
1626
1629
|
MISSING_ORIGINAL_AUTHORIZATION = :missing_original_authorization
|
|
1627
1630
|
|
|
1631
|
+
# The card's authorization request cryptogram was invalid. The cryptogram can be from a physical card or a Digital Wallet Token purchase.
|
|
1632
|
+
INVALID_CRYPTOGRAM = :invalid_cryptogram
|
|
1633
|
+
|
|
1628
1634
|
# The transaction was declined because the 3DS authentication failed.
|
|
1629
1635
|
FAILED_3DS_AUTHENTICATION = :failed_3ds_authentication
|
|
1630
1636
|
|
|
@@ -1511,9 +1511,12 @@ module Increase
|
|
|
1511
1511
|
# Increase failed to process the authorization in a timely manner.
|
|
1512
1512
|
ISSUER_ERROR = :issuer_error
|
|
1513
1513
|
|
|
1514
|
-
# The physical card read had an invalid CVV
|
|
1514
|
+
# The physical card read had an invalid CVV or dCVV.
|
|
1515
1515
|
INVALID_PHYSICAL_CARD = :invalid_physical_card
|
|
1516
1516
|
|
|
1517
|
+
# The card's authorization request cryptogram was invalid. The cryptogram can be from a physical card or a Digital Wallet Token purchase.
|
|
1518
|
+
INVALID_CRYPTOGRAM = :invalid_cryptogram
|
|
1519
|
+
|
|
1517
1520
|
# The 3DS cardholder authentication verification value was invalid.
|
|
1518
1521
|
INVALID_CARDHOLDER_AUTHENTICATION_VERIFICATION_VALUE =
|
|
1519
1522
|
:invalid_cardholder_authentication_verification_value
|