increase 1.231.0 → 1.233.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.
@@ -893,6 +893,7 @@ module Increase
893
893
  type stand_in_processing_reason =
894
894
  :issuer_error
895
895
  | :invalid_physical_card
896
+ | :invalid_cryptogram
896
897
  | :invalid_cardholder_authentication_verification_value
897
898
  | :internal_visa_error
898
899
  | :merchant_transaction_advisory_service_authentication_required
@@ -905,9 +906,12 @@ module Increase
905
906
  # Increase failed to process the authorization in a timely manner.
906
907
  ISSUER_ERROR: :issuer_error
907
908
 
908
- # The physical card read had an invalid CVV, dCVV, or authorization request cryptogram.
909
+ # The physical card read had an invalid CVV or dCVV.
909
910
  INVALID_PHYSICAL_CARD: :invalid_physical_card
910
911
 
912
+ # The card's authorization request cryptogram was invalid. The cryptogram can be from a physical card or a Digital Wallet Token purchase.
913
+ INVALID_CRYPTOGRAM: :invalid_cryptogram
914
+
911
915
  # The 3DS cardholder authentication verification value was invalid.
912
916
  INVALID_CARDHOLDER_AUTHENTICATION_VERIFICATION_VALUE: :invalid_cardholder_authentication_verification_value
913
917
 
@@ -1098,6 +1102,7 @@ module Increase
1098
1102
  | :declined_by_stand_in_processing
1099
1103
  | :invalid_physical_card
1100
1104
  | :missing_original_authorization
1105
+ | :invalid_cryptogram
1101
1106
  | :failed_3ds_authentication
1102
1107
  | :suspected_card_testing
1103
1108
  | :suspected_fraud
@@ -1150,12 +1155,15 @@ module Increase
1150
1155
  # Declined by stand-in processing.
1151
1156
  DECLINED_BY_STAND_IN_PROCESSING: :declined_by_stand_in_processing
1152
1157
 
1153
- # The card read had an invalid CVV, dCVV, or authorization request cryptogram.
1158
+ # The card read had an invalid CVV or dCVV.
1154
1159
  INVALID_PHYSICAL_CARD: :invalid_physical_card
1155
1160
 
1156
1161
  # The original card authorization for this incremental authorization does not exist.
1157
1162
  MISSING_ORIGINAL_AUTHORIZATION: :missing_original_authorization
1158
1163
 
1164
+ # The card's authorization request cryptogram was invalid. The cryptogram can be from a physical card or a Digital Wallet Token purchase.
1165
+ INVALID_CRYPTOGRAM: :invalid_cryptogram
1166
+
1159
1167
  # The transaction was declined because the 3DS authentication failed.
1160
1168
  FAILED_3DS_AUTHENTICATION: :failed_3ds_authentication
1161
1169
 
@@ -913,6 +913,7 @@ module Increase
913
913
  type stand_in_processing_reason =
914
914
  :issuer_error
915
915
  | :invalid_physical_card
916
+ | :invalid_cryptogram
916
917
  | :invalid_cardholder_authentication_verification_value
917
918
  | :internal_visa_error
918
919
  | :merchant_transaction_advisory_service_authentication_required
@@ -925,9 +926,12 @@ module Increase
925
926
  # Increase failed to process the authorization in a timely manner.
926
927
  ISSUER_ERROR: :issuer_error
927
928
 
928
- # The physical card read had an invalid CVV, dCVV, or authorization request cryptogram.
929
+ # The physical card read had an invalid CVV or dCVV.
929
930
  INVALID_PHYSICAL_CARD: :invalid_physical_card
930
931
 
932
+ # The card's authorization request cryptogram was invalid. The cryptogram can be from a physical card or a Digital Wallet Token purchase.
933
+ INVALID_CRYPTOGRAM: :invalid_cryptogram
934
+
931
935
  # The 3DS cardholder authentication verification value was invalid.
932
936
  INVALID_CARDHOLDER_AUTHENTICATION_VERIFICATION_VALUE: :invalid_cardholder_authentication_verification_value
933
937
 
@@ -766,6 +766,7 @@ module Increase
766
766
  type stand_in_processing_reason =
767
767
  :issuer_error
768
768
  | :invalid_physical_card
769
+ | :invalid_cryptogram
769
770
  | :invalid_cardholder_authentication_verification_value
770
771
  | :internal_visa_error
771
772
  | :merchant_transaction_advisory_service_authentication_required
@@ -778,9 +779,12 @@ module Increase
778
779
  # Increase failed to process the authorization in a timely manner.
779
780
  ISSUER_ERROR: :issuer_error
780
781
 
781
- # The physical card read had an invalid CVV, dCVV, or authorization request cryptogram.
782
+ # The physical card read had an invalid CVV or dCVV.
782
783
  INVALID_PHYSICAL_CARD: :invalid_physical_card
783
784
 
785
+ # The card's authorization request cryptogram was invalid. The cryptogram can be from a physical card or a Digital Wallet Token purchase.
786
+ INVALID_CRYPTOGRAM: :invalid_cryptogram
787
+
784
788
  # The 3DS cardholder authentication verification value was invalid.
785
789
  INVALID_CARDHOLDER_AUTHENTICATION_VERIFICATION_VALUE: :invalid_cardholder_authentication_verification_value
786
790
 
@@ -1648,6 +1652,7 @@ module Increase
1648
1652
  type stand_in_processing_reason =
1649
1653
  :issuer_error
1650
1654
  | :invalid_physical_card
1655
+ | :invalid_cryptogram
1651
1656
  | :invalid_cardholder_authentication_verification_value
1652
1657
  | :internal_visa_error
1653
1658
  | :merchant_transaction_advisory_service_authentication_required
@@ -1660,9 +1665,12 @@ module Increase
1660
1665
  # Increase failed to process the authorization in a timely manner.
1661
1666
  ISSUER_ERROR: :issuer_error
1662
1667
 
1663
- # The physical card read had an invalid CVV, dCVV, or authorization request cryptogram.
1668
+ # The physical card read had an invalid CVV or dCVV.
1664
1669
  INVALID_PHYSICAL_CARD: :invalid_physical_card
1665
1670
 
1671
+ # The card's authorization request cryptogram was invalid. The cryptogram can be from a physical card or a Digital Wallet Token purchase.
1672
+ INVALID_CRYPTOGRAM: :invalid_cryptogram
1673
+
1666
1674
  # The 3DS cardholder authentication verification value was invalid.
1667
1675
  INVALID_CARDHOLDER_AUTHENTICATION_VERIFICATION_VALUE: :invalid_cardholder_authentication_verification_value
1668
1676
 
@@ -159,6 +159,7 @@ module Increase
159
159
  | :declined_by_stand_in_processing
160
160
  | :invalid_physical_card
161
161
  | :missing_original_authorization
162
+ | :invalid_cryptogram
162
163
  | :failed_3ds_authentication
163
164
  | :suspected_card_testing
164
165
  | :suspected_fraud
@@ -211,12 +212,15 @@ module Increase
211
212
  # Declined by stand-in processing.
212
213
  DECLINED_BY_STAND_IN_PROCESSING: :declined_by_stand_in_processing
213
214
 
214
- # The card read had an invalid CVV, dCVV, or authorization request cryptogram.
215
+ # The card read had an invalid CVV or dCVV.
215
216
  INVALID_PHYSICAL_CARD: :invalid_physical_card
216
217
 
217
218
  # The original card authorization for this incremental authorization does not exist.
218
219
  MISSING_ORIGINAL_AUTHORIZATION: :missing_original_authorization
219
220
 
221
+ # The card's authorization request cryptogram was invalid. The cryptogram can be from a physical card or a Digital Wallet Token purchase.
222
+ INVALID_CRYPTOGRAM: :invalid_cryptogram
223
+
220
224
  # The transaction was declined because the 3DS authentication failed.
221
225
  FAILED_3DS_AUTHENTICATION: :failed_3ds_authentication
222
226
 
@@ -268,6 +272,7 @@ module Increase
268
272
  type stand_in_processing_reason =
269
273
  :issuer_error
270
274
  | :invalid_physical_card
275
+ | :invalid_cryptogram
271
276
  | :invalid_cardholder_authentication_verification_value
272
277
  | :internal_visa_error
273
278
  | :merchant_transaction_advisory_service_authentication_required
@@ -280,9 +285,12 @@ module Increase
280
285
  # Increase failed to process the authorization in a timely manner.
281
286
  ISSUER_ERROR: :issuer_error
282
287
 
283
- # The physical card read had an invalid CVV, dCVV, or authorization request cryptogram.
288
+ # The physical card read had an invalid CVV or dCVV.
284
289
  INVALID_PHYSICAL_CARD: :invalid_physical_card
285
290
 
291
+ # The card's authorization request cryptogram was invalid. The cryptogram can be from a physical card or a Digital Wallet Token purchase.
292
+ INVALID_CRYPTOGRAM: :invalid_cryptogram
293
+
286
294
  # The 3DS cardholder authentication verification value was invalid.
287
295
  INVALID_CARDHOLDER_AUTHENTICATION_VERIFICATION_VALUE: :invalid_cardholder_authentication_verification_value
288
296
 
@@ -145,6 +145,7 @@ module Increase
145
145
  | :declined_by_stand_in_processing
146
146
  | :invalid_physical_card
147
147
  | :missing_original_authorization
148
+ | :invalid_cryptogram
148
149
  | :failed_3ds_authentication
149
150
  | :suspected_card_testing
150
151
  | :suspected_fraud
@@ -197,12 +198,15 @@ module Increase
197
198
  # Declined by stand-in processing.
198
199
  DECLINED_BY_STAND_IN_PROCESSING: :declined_by_stand_in_processing
199
200
 
200
- # The card read had an invalid CVV, dCVV, or authorization request cryptogram.
201
+ # The card read had an invalid CVV or dCVV.
201
202
  INVALID_PHYSICAL_CARD: :invalid_physical_card
202
203
 
203
204
  # The original card authorization for this incremental authorization does not exist.
204
205
  MISSING_ORIGINAL_AUTHORIZATION: :missing_original_authorization
205
206
 
207
+ # The card's authorization request cryptogram was invalid. The cryptogram can be from a physical card or a Digital Wallet Token purchase.
208
+ INVALID_CRYPTOGRAM: :invalid_cryptogram
209
+
206
210
  # The transaction was declined because the 3DS authentication failed.
207
211
  FAILED_3DS_AUTHENTICATION: :failed_3ds_authentication
208
212
 
@@ -254,6 +258,7 @@ module Increase
254
258
  type stand_in_processing_reason =
255
259
  :issuer_error
256
260
  | :invalid_physical_card
261
+ | :invalid_cryptogram
257
262
  | :invalid_cardholder_authentication_verification_value
258
263
  | :internal_visa_error
259
264
  | :merchant_transaction_advisory_service_authentication_required
@@ -266,9 +271,12 @@ module Increase
266
271
  # Increase failed to process the authorization in a timely manner.
267
272
  ISSUER_ERROR: :issuer_error
268
273
 
269
- # The physical card read had an invalid CVV, dCVV, or authorization request cryptogram.
274
+ # The physical card read had an invalid CVV or dCVV.
270
275
  INVALID_PHYSICAL_CARD: :invalid_physical_card
271
276
 
277
+ # The card's authorization request cryptogram was invalid. The cryptogram can be from a physical card or a Digital Wallet Token purchase.
278
+ INVALID_CRYPTOGRAM: :invalid_cryptogram
279
+
272
280
  # The 3DS cardholder authentication verification value was invalid.
273
281
  INVALID_CARDHOLDER_AUTHENTICATION_VERIFICATION_VALUE: :invalid_cardholder_authentication_verification_value
274
282
 
@@ -1625,6 +1625,7 @@ module Increase
1625
1625
  type stand_in_processing_reason =
1626
1626
  :issuer_error
1627
1627
  | :invalid_physical_card
1628
+ | :invalid_cryptogram
1628
1629
  | :invalid_cardholder_authentication_verification_value
1629
1630
  | :internal_visa_error
1630
1631
  | :merchant_transaction_advisory_service_authentication_required
@@ -1637,9 +1638,12 @@ module Increase
1637
1638
  # Increase failed to process the authorization in a timely manner.
1638
1639
  ISSUER_ERROR: :issuer_error
1639
1640
 
1640
- # The physical card read had an invalid CVV, dCVV, or authorization request cryptogram.
1641
+ # The physical card read had an invalid CVV or dCVV.
1641
1642
  INVALID_PHYSICAL_CARD: :invalid_physical_card
1642
1643
 
1644
+ # The card's authorization request cryptogram was invalid. The cryptogram can be from a physical card or a Digital Wallet Token purchase.
1645
+ INVALID_CRYPTOGRAM: :invalid_cryptogram
1646
+
1643
1647
  # The 3DS cardholder authentication verification value was invalid.
1644
1648
  INVALID_CARDHOLDER_AUTHENTICATION_VERIFICATION_VALUE: :invalid_cardholder_authentication_verification_value
1645
1649
 
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.231.0
4
+ version: 1.233.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Increase