increase 1.234.0 → 1.236.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 +21 -0
- data/README.md +1 -1
- data/lib/increase/models/card_payment.rb +22 -13
- data/lib/increase/models/real_time_decision.rb +22 -13
- data/lib/increase/version.rb +1 -1
- data/rbi/increase/models/card_payment.rbi +22 -12
- data/rbi/increase/models/real_time_decision.rbi +22 -12
- data/sig/increase/models/card_payment.rbs +21 -16
- data/sig/increase/models/real_time_decision.rbs +21 -16
- 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: 468b6f07ba2567556b258bad4b6d59081219db54017851e79ba7a21c62de5bb8
|
|
4
|
+
data.tar.gz: 99fcb3dfb1c0efefe98de610423945ad0b4e9126ea885b2bdcdbed00cf3a646f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ef30cd7454db2fc331340f3c40365391d90625fd90b63715661a2a3ed524f2ca49799dce3e7317ffccdfc5203c78815f612afadb4fe1083d1409d59d34208b81
|
|
7
|
+
data.tar.gz: aa26702d079fec9880d15b4b7d10919d08e58a05d93ac3597dccdbed25e41b4a30a65cbac89d839f083880be9a5abac90543c9ea007adf5a2384c0e12087b2bc
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,26 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 1.236.0 (2026-03-09)
|
|
4
|
+
|
|
5
|
+
Full Changelog: [v1.235.0...v1.236.0](https://github.com/Increase/increase-ruby/compare/v1.235.0...v1.236.0)
|
|
6
|
+
|
|
7
|
+
### Features
|
|
8
|
+
|
|
9
|
+
* **api:** api update ([623031c](https://github.com/Increase/increase-ruby/commit/623031cc393227b42ffe118a755eec0ee63da7c3))
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
### Chores
|
|
13
|
+
|
|
14
|
+
* **internal:** codegen related update ([1c8b59d](https://github.com/Increase/increase-ruby/commit/1c8b59d98eb1a7cbe2c4c033debf7b671b963beb))
|
|
15
|
+
|
|
16
|
+
## 1.235.0 (2026-03-06)
|
|
17
|
+
|
|
18
|
+
Full Changelog: [v1.234.0...v1.235.0](https://github.com/Increase/increase-ruby/compare/v1.234.0...v1.235.0)
|
|
19
|
+
|
|
20
|
+
### Features
|
|
21
|
+
|
|
22
|
+
* **api:** api update ([1615eb2](https://github.com/Increase/increase-ruby/commit/1615eb20b76cee8d5258eff5049dbb5289cbe204))
|
|
23
|
+
|
|
3
24
|
## 1.234.0 (2026-03-06)
|
|
4
25
|
|
|
5
26
|
Full Changelog: [v1.233.0...v1.234.0](https://github.com/Increase/increase-ruby/compare/v1.233.0...v1.234.0)
|
data/README.md
CHANGED
|
@@ -450,27 +450,27 @@ module Increase
|
|
|
450
450
|
# The merchant identifier (commonly abbreviated as MID) of the merchant the card
|
|
451
451
|
# is transacting with.
|
|
452
452
|
#
|
|
453
|
-
# @return [String]
|
|
454
|
-
required :merchant_acceptor_id, String
|
|
453
|
+
# @return [String, nil]
|
|
454
|
+
required :merchant_acceptor_id, String, nil?: true
|
|
455
455
|
|
|
456
456
|
# @!attribute merchant_category_code
|
|
457
457
|
# The Merchant Category Code (commonly abbreviated as MCC) of the merchant the
|
|
458
458
|
# card is transacting with.
|
|
459
459
|
#
|
|
460
|
-
# @return [String]
|
|
461
|
-
required :merchant_category_code, String
|
|
460
|
+
# @return [String, nil]
|
|
461
|
+
required :merchant_category_code, String, nil?: true
|
|
462
462
|
|
|
463
463
|
# @!attribute merchant_country
|
|
464
464
|
# The country the merchant resides in.
|
|
465
465
|
#
|
|
466
|
-
# @return [String]
|
|
467
|
-
required :merchant_country, String
|
|
466
|
+
# @return [String, nil]
|
|
467
|
+
required :merchant_country, String, nil?: true
|
|
468
468
|
|
|
469
469
|
# @!attribute merchant_name
|
|
470
470
|
# The name of the merchant.
|
|
471
471
|
#
|
|
472
|
-
# @return [String]
|
|
473
|
-
required :merchant_name, String
|
|
472
|
+
# @return [String, nil]
|
|
473
|
+
required :merchant_name, String, nil?: true
|
|
474
474
|
|
|
475
475
|
# @!attribute prior_card_authentication_id
|
|
476
476
|
# The ID of a prior Card Authentication that the requestor used to authenticate
|
|
@@ -485,6 +485,13 @@ module Increase
|
|
|
485
485
|
# @return [Integer, nil]
|
|
486
486
|
required :purchase_amount, Integer, nil?: true
|
|
487
487
|
|
|
488
|
+
# @!attribute purchase_amount_cardholder_estimated
|
|
489
|
+
# The purchase amount in the cardholder's currency (i.e., USD) estimated using
|
|
490
|
+
# daily conversion rates from the card network.
|
|
491
|
+
#
|
|
492
|
+
# @return [Integer, nil]
|
|
493
|
+
required :purchase_amount_cardholder_estimated, Integer, nil?: true
|
|
494
|
+
|
|
488
495
|
# @!attribute purchase_currency
|
|
489
496
|
# The [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) code for the
|
|
490
497
|
# authentication attempt's purchase currency.
|
|
@@ -602,7 +609,7 @@ module Increase
|
|
|
602
609
|
# @return [Symbol, Increase::Models::CardPayment::Element::CardAuthentication::Type]
|
|
603
610
|
required :type, enum: -> { Increase::CardPayment::Element::CardAuthentication::Type }
|
|
604
611
|
|
|
605
|
-
# @!method initialize(id:, access_control_server_transaction_id:, billing_address_city:, billing_address_country:, billing_address_line1:, billing_address_line2:, billing_address_line3:, billing_address_postal_code:, billing_address_state:, card_id:, card_payment_id:, cardholder_email:, cardholder_name:, category:, challenge:, created_at:, deny_reason:, device_channel:, directory_server_transaction_id:, merchant_acceptor_id:, merchant_category_code:, merchant_country:, merchant_name:, prior_card_authentication_id:, purchase_amount:, purchase_currency:, real_time_decision_id:, requestor_authentication_indicator:, requestor_challenge_indicator:, requestor_name:, requestor_url:, shipping_address_city:, shipping_address_country:, shipping_address_line1:, shipping_address_line2:, shipping_address_line3:, shipping_address_postal_code:, shipping_address_state:, status:, three_d_secure_server_transaction_id:, transaction_type:, type:)
|
|
612
|
+
# @!method initialize(id:, access_control_server_transaction_id:, billing_address_city:, billing_address_country:, billing_address_line1:, billing_address_line2:, billing_address_line3:, billing_address_postal_code:, billing_address_state:, card_id:, card_payment_id:, cardholder_email:, cardholder_name:, category:, challenge:, created_at:, deny_reason:, device_channel:, directory_server_transaction_id:, merchant_acceptor_id:, merchant_category_code:, merchant_country:, merchant_name:, prior_card_authentication_id:, purchase_amount:, purchase_amount_cardholder_estimated:, purchase_currency:, real_time_decision_id:, requestor_authentication_indicator:, requestor_challenge_indicator:, requestor_name:, requestor_url:, shipping_address_city:, shipping_address_country:, shipping_address_line1:, shipping_address_line2:, shipping_address_line3:, shipping_address_postal_code:, shipping_address_state:, status:, three_d_secure_server_transaction_id:, transaction_type:, type:)
|
|
606
613
|
# Some parameter documentations has been truncated, see
|
|
607
614
|
# {Increase::Models::CardPayment::Element::CardAuthentication} for more details.
|
|
608
615
|
#
|
|
@@ -648,18 +655,20 @@ module Increase
|
|
|
648
655
|
#
|
|
649
656
|
# @param directory_server_transaction_id [String] A unique identifier assigned by the Directory Server (the card network) for this
|
|
650
657
|
#
|
|
651
|
-
# @param merchant_acceptor_id [String] The merchant identifier (commonly abbreviated as MID) of the merchant the card i
|
|
658
|
+
# @param merchant_acceptor_id [String, nil] The merchant identifier (commonly abbreviated as MID) of the merchant the card i
|
|
652
659
|
#
|
|
653
|
-
# @param merchant_category_code [String] The Merchant Category Code (commonly abbreviated as MCC) of the merchant the car
|
|
660
|
+
# @param merchant_category_code [String, nil] The Merchant Category Code (commonly abbreviated as MCC) of the merchant the car
|
|
654
661
|
#
|
|
655
|
-
# @param merchant_country [String] The country the merchant resides in.
|
|
662
|
+
# @param merchant_country [String, nil] The country the merchant resides in.
|
|
656
663
|
#
|
|
657
|
-
# @param merchant_name [String] The name of the merchant.
|
|
664
|
+
# @param merchant_name [String, nil] The name of the merchant.
|
|
658
665
|
#
|
|
659
666
|
# @param prior_card_authentication_id [String, nil] The ID of a prior Card Authentication that the requestor used to authenticate th
|
|
660
667
|
#
|
|
661
668
|
# @param purchase_amount [Integer, nil] The purchase amount in minor units.
|
|
662
669
|
#
|
|
670
|
+
# @param purchase_amount_cardholder_estimated [Integer, nil] The purchase amount in the cardholder's currency (i.e., USD) estimated using dai
|
|
671
|
+
#
|
|
663
672
|
# @param purchase_currency [String, nil] The [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) code for the authenticati
|
|
664
673
|
#
|
|
665
674
|
# @param real_time_decision_id [String, nil] The identifier of the Real-Time Decision sent to approve or decline this authent
|
|
@@ -227,27 +227,27 @@ module Increase
|
|
|
227
227
|
# The merchant identifier (commonly abbreviated as MID) of the merchant the card
|
|
228
228
|
# is transacting with.
|
|
229
229
|
#
|
|
230
|
-
# @return [String]
|
|
231
|
-
required :merchant_acceptor_id, String
|
|
230
|
+
# @return [String, nil]
|
|
231
|
+
required :merchant_acceptor_id, String, nil?: true
|
|
232
232
|
|
|
233
233
|
# @!attribute merchant_category_code
|
|
234
234
|
# The Merchant Category Code (commonly abbreviated as MCC) of the merchant the
|
|
235
235
|
# card is transacting with.
|
|
236
236
|
#
|
|
237
|
-
# @return [String]
|
|
238
|
-
required :merchant_category_code, String
|
|
237
|
+
# @return [String, nil]
|
|
238
|
+
required :merchant_category_code, String, nil?: true
|
|
239
239
|
|
|
240
240
|
# @!attribute merchant_country
|
|
241
241
|
# The country the merchant resides in.
|
|
242
242
|
#
|
|
243
|
-
# @return [String]
|
|
244
|
-
required :merchant_country, String
|
|
243
|
+
# @return [String, nil]
|
|
244
|
+
required :merchant_country, String, nil?: true
|
|
245
245
|
|
|
246
246
|
# @!attribute merchant_name
|
|
247
247
|
# The name of the merchant.
|
|
248
248
|
#
|
|
249
|
-
# @return [String]
|
|
250
|
-
required :merchant_name, String
|
|
249
|
+
# @return [String, nil]
|
|
250
|
+
required :merchant_name, String, nil?: true
|
|
251
251
|
|
|
252
252
|
# @!attribute prior_card_authentication_id
|
|
253
253
|
# The ID of a prior Card Authentication that the requestor used to authenticate
|
|
@@ -262,6 +262,13 @@ module Increase
|
|
|
262
262
|
# @return [Integer, nil]
|
|
263
263
|
required :purchase_amount, Integer, nil?: true
|
|
264
264
|
|
|
265
|
+
# @!attribute purchase_amount_cardholder_estimated
|
|
266
|
+
# The purchase amount in the cardholder's currency (i.e., USD) estimated using
|
|
267
|
+
# daily conversion rates from the card network.
|
|
268
|
+
#
|
|
269
|
+
# @return [Integer, nil]
|
|
270
|
+
required :purchase_amount_cardholder_estimated, Integer, nil?: true
|
|
271
|
+
|
|
265
272
|
# @!attribute purchase_currency
|
|
266
273
|
# The [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) code for the
|
|
267
274
|
# authentication attempt's purchase currency.
|
|
@@ -364,7 +371,7 @@ module Increase
|
|
|
364
371
|
# @return [String]
|
|
365
372
|
required :upcoming_card_payment_id, String
|
|
366
373
|
|
|
367
|
-
# @!method initialize(access_control_server_transaction_id:, account_id:, billing_address_city:, billing_address_country:, billing_address_line1:, billing_address_line2:, billing_address_line3:, billing_address_postal_code:, billing_address_state:, card_id:, cardholder_email:, cardholder_name:, category:, decision:, device_channel:, directory_server_transaction_id:, merchant_acceptor_id:, merchant_category_code:, merchant_country:, merchant_name:, prior_card_authentication_id:, purchase_amount:, purchase_currency:, requestor_authentication_indicator:, requestor_challenge_indicator:, requestor_name:, requestor_url:, shipping_address_city:, shipping_address_country:, shipping_address_line1:, shipping_address_line2:, shipping_address_line3:, shipping_address_postal_code:, shipping_address_state:, three_d_secure_server_transaction_id:, transaction_type:, upcoming_card_payment_id:)
|
|
374
|
+
# @!method initialize(access_control_server_transaction_id:, account_id:, billing_address_city:, billing_address_country:, billing_address_line1:, billing_address_line2:, billing_address_line3:, billing_address_postal_code:, billing_address_state:, card_id:, cardholder_email:, cardholder_name:, category:, decision:, device_channel:, directory_server_transaction_id:, merchant_acceptor_id:, merchant_category_code:, merchant_country:, merchant_name:, prior_card_authentication_id:, purchase_amount:, purchase_amount_cardholder_estimated:, purchase_currency:, requestor_authentication_indicator:, requestor_challenge_indicator:, requestor_name:, requestor_url:, shipping_address_city:, shipping_address_country:, shipping_address_line1:, shipping_address_line2:, shipping_address_line3:, shipping_address_postal_code:, shipping_address_state:, three_d_secure_server_transaction_id:, transaction_type:, upcoming_card_payment_id:)
|
|
368
375
|
# Some parameter documentations has been truncated, see
|
|
369
376
|
# {Increase::Models::RealTimeDecision::CardAuthentication} for more details.
|
|
370
377
|
#
|
|
@@ -402,18 +409,20 @@ module Increase
|
|
|
402
409
|
#
|
|
403
410
|
# @param directory_server_transaction_id [String] A unique identifier assigned by the Directory Server (the card network) for this
|
|
404
411
|
#
|
|
405
|
-
# @param merchant_acceptor_id [String] The merchant identifier (commonly abbreviated as MID) of the merchant the card i
|
|
412
|
+
# @param merchant_acceptor_id [String, nil] The merchant identifier (commonly abbreviated as MID) of the merchant the card i
|
|
406
413
|
#
|
|
407
|
-
# @param merchant_category_code [String] The Merchant Category Code (commonly abbreviated as MCC) of the merchant the car
|
|
414
|
+
# @param merchant_category_code [String, nil] The Merchant Category Code (commonly abbreviated as MCC) of the merchant the car
|
|
408
415
|
#
|
|
409
|
-
# @param merchant_country [String] The country the merchant resides in.
|
|
416
|
+
# @param merchant_country [String, nil] The country the merchant resides in.
|
|
410
417
|
#
|
|
411
|
-
# @param merchant_name [String] The name of the merchant.
|
|
418
|
+
# @param merchant_name [String, nil] The name of the merchant.
|
|
412
419
|
#
|
|
413
420
|
# @param prior_card_authentication_id [String, nil] The ID of a prior Card Authentication that the requestor used to authenticate th
|
|
414
421
|
#
|
|
415
422
|
# @param purchase_amount [Integer, nil] The purchase amount in minor units.
|
|
416
423
|
#
|
|
424
|
+
# @param purchase_amount_cardholder_estimated [Integer, nil] The purchase amount in the cardholder's currency (i.e., USD) estimated using dai
|
|
425
|
+
#
|
|
417
426
|
# @param purchase_currency [String, nil] The [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) code for the authenticati
|
|
418
427
|
#
|
|
419
428
|
# @param requestor_authentication_indicator [Symbol, Increase::Models::RealTimeDecision::CardAuthentication::RequestorAuthenticationIndicator, nil] The 3DS requestor authentication indicator describes why the authentication atte
|
data/lib/increase/version.rb
CHANGED
|
@@ -750,20 +750,20 @@ module Increase
|
|
|
750
750
|
|
|
751
751
|
# The merchant identifier (commonly abbreviated as MID) of the merchant the card
|
|
752
752
|
# is transacting with.
|
|
753
|
-
sig { returns(String) }
|
|
753
|
+
sig { returns(T.nilable(String)) }
|
|
754
754
|
attr_accessor :merchant_acceptor_id
|
|
755
755
|
|
|
756
756
|
# The Merchant Category Code (commonly abbreviated as MCC) of the merchant the
|
|
757
757
|
# card is transacting with.
|
|
758
|
-
sig { returns(String) }
|
|
758
|
+
sig { returns(T.nilable(String)) }
|
|
759
759
|
attr_accessor :merchant_category_code
|
|
760
760
|
|
|
761
761
|
# The country the merchant resides in.
|
|
762
|
-
sig { returns(String) }
|
|
762
|
+
sig { returns(T.nilable(String)) }
|
|
763
763
|
attr_accessor :merchant_country
|
|
764
764
|
|
|
765
765
|
# The name of the merchant.
|
|
766
|
-
sig { returns(String) }
|
|
766
|
+
sig { returns(T.nilable(String)) }
|
|
767
767
|
attr_accessor :merchant_name
|
|
768
768
|
|
|
769
769
|
# The ID of a prior Card Authentication that the requestor used to authenticate
|
|
@@ -775,6 +775,11 @@ module Increase
|
|
|
775
775
|
sig { returns(T.nilable(Integer)) }
|
|
776
776
|
attr_accessor :purchase_amount
|
|
777
777
|
|
|
778
|
+
# The purchase amount in the cardholder's currency (i.e., USD) estimated using
|
|
779
|
+
# daily conversion rates from the card network.
|
|
780
|
+
sig { returns(T.nilable(Integer)) }
|
|
781
|
+
attr_accessor :purchase_amount_cardholder_estimated
|
|
782
|
+
|
|
778
783
|
# The [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) code for the
|
|
779
784
|
# authentication attempt's purchase currency.
|
|
780
785
|
sig { returns(T.nilable(String)) }
|
|
@@ -908,12 +913,13 @@ module Increase
|
|
|
908
913
|
device_channel:
|
|
909
914
|
Increase::CardPayment::Element::CardAuthentication::DeviceChannel::OrHash,
|
|
910
915
|
directory_server_transaction_id: String,
|
|
911
|
-
merchant_acceptor_id: String,
|
|
912
|
-
merchant_category_code: String,
|
|
913
|
-
merchant_country: String,
|
|
914
|
-
merchant_name: String,
|
|
916
|
+
merchant_acceptor_id: T.nilable(String),
|
|
917
|
+
merchant_category_code: T.nilable(String),
|
|
918
|
+
merchant_country: T.nilable(String),
|
|
919
|
+
merchant_name: T.nilable(String),
|
|
915
920
|
prior_card_authentication_id: T.nilable(String),
|
|
916
921
|
purchase_amount: T.nilable(Integer),
|
|
922
|
+
purchase_amount_cardholder_estimated: T.nilable(Integer),
|
|
917
923
|
purchase_currency: T.nilable(String),
|
|
918
924
|
real_time_decision_id: T.nilable(String),
|
|
919
925
|
requestor_authentication_indicator:
|
|
@@ -1008,6 +1014,9 @@ module Increase
|
|
|
1008
1014
|
prior_card_authentication_id:,
|
|
1009
1015
|
# The purchase amount in minor units.
|
|
1010
1016
|
purchase_amount:,
|
|
1017
|
+
# The purchase amount in the cardholder's currency (i.e., USD) estimated using
|
|
1018
|
+
# daily conversion rates from the card network.
|
|
1019
|
+
purchase_amount_cardholder_estimated:,
|
|
1011
1020
|
# The [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) code for the
|
|
1012
1021
|
# authentication attempt's purchase currency.
|
|
1013
1022
|
purchase_currency:,
|
|
@@ -1082,12 +1091,13 @@ module Increase
|
|
|
1082
1091
|
device_channel:
|
|
1083
1092
|
Increase::CardPayment::Element::CardAuthentication::DeviceChannel,
|
|
1084
1093
|
directory_server_transaction_id: String,
|
|
1085
|
-
merchant_acceptor_id: String,
|
|
1086
|
-
merchant_category_code: String,
|
|
1087
|
-
merchant_country: String,
|
|
1088
|
-
merchant_name: String,
|
|
1094
|
+
merchant_acceptor_id: T.nilable(String),
|
|
1095
|
+
merchant_category_code: T.nilable(String),
|
|
1096
|
+
merchant_country: T.nilable(String),
|
|
1097
|
+
merchant_name: T.nilable(String),
|
|
1089
1098
|
prior_card_authentication_id: T.nilable(String),
|
|
1090
1099
|
purchase_amount: T.nilable(Integer),
|
|
1100
|
+
purchase_amount_cardholder_estimated: T.nilable(Integer),
|
|
1091
1101
|
purchase_currency: T.nilable(String),
|
|
1092
1102
|
real_time_decision_id: T.nilable(String),
|
|
1093
1103
|
requestor_authentication_indicator:
|
|
@@ -317,20 +317,20 @@ module Increase
|
|
|
317
317
|
|
|
318
318
|
# The merchant identifier (commonly abbreviated as MID) of the merchant the card
|
|
319
319
|
# is transacting with.
|
|
320
|
-
sig { returns(String) }
|
|
320
|
+
sig { returns(T.nilable(String)) }
|
|
321
321
|
attr_accessor :merchant_acceptor_id
|
|
322
322
|
|
|
323
323
|
# The Merchant Category Code (commonly abbreviated as MCC) of the merchant the
|
|
324
324
|
# card is transacting with.
|
|
325
|
-
sig { returns(String) }
|
|
325
|
+
sig { returns(T.nilable(String)) }
|
|
326
326
|
attr_accessor :merchant_category_code
|
|
327
327
|
|
|
328
328
|
# The country the merchant resides in.
|
|
329
|
-
sig { returns(String) }
|
|
329
|
+
sig { returns(T.nilable(String)) }
|
|
330
330
|
attr_accessor :merchant_country
|
|
331
331
|
|
|
332
332
|
# The name of the merchant.
|
|
333
|
-
sig { returns(String) }
|
|
333
|
+
sig { returns(T.nilable(String)) }
|
|
334
334
|
attr_accessor :merchant_name
|
|
335
335
|
|
|
336
336
|
# The ID of a prior Card Authentication that the requestor used to authenticate
|
|
@@ -342,6 +342,11 @@ module Increase
|
|
|
342
342
|
sig { returns(T.nilable(Integer)) }
|
|
343
343
|
attr_accessor :purchase_amount
|
|
344
344
|
|
|
345
|
+
# The purchase amount in the cardholder's currency (i.e., USD) estimated using
|
|
346
|
+
# daily conversion rates from the card network.
|
|
347
|
+
sig { returns(T.nilable(Integer)) }
|
|
348
|
+
attr_accessor :purchase_amount_cardholder_estimated
|
|
349
|
+
|
|
345
350
|
# The [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) code for the
|
|
346
351
|
# authentication attempt's purchase currency.
|
|
347
352
|
sig { returns(T.nilable(String)) }
|
|
@@ -450,12 +455,13 @@ module Increase
|
|
|
450
455
|
device_channel:
|
|
451
456
|
Increase::RealTimeDecision::CardAuthentication::DeviceChannel::OrHash,
|
|
452
457
|
directory_server_transaction_id: String,
|
|
453
|
-
merchant_acceptor_id: String,
|
|
454
|
-
merchant_category_code: String,
|
|
455
|
-
merchant_country: String,
|
|
456
|
-
merchant_name: String,
|
|
458
|
+
merchant_acceptor_id: T.nilable(String),
|
|
459
|
+
merchant_category_code: T.nilable(String),
|
|
460
|
+
merchant_country: T.nilable(String),
|
|
461
|
+
merchant_name: T.nilable(String),
|
|
457
462
|
prior_card_authentication_id: T.nilable(String),
|
|
458
463
|
purchase_amount: T.nilable(Integer),
|
|
464
|
+
purchase_amount_cardholder_estimated: T.nilable(Integer),
|
|
459
465
|
purchase_currency: T.nilable(String),
|
|
460
466
|
requestor_authentication_indicator:
|
|
461
467
|
T.nilable(
|
|
@@ -539,6 +545,9 @@ module Increase
|
|
|
539
545
|
prior_card_authentication_id:,
|
|
540
546
|
# The purchase amount in minor units.
|
|
541
547
|
purchase_amount:,
|
|
548
|
+
# The purchase amount in the cardholder's currency (i.e., USD) estimated using
|
|
549
|
+
# daily conversion rates from the card network.
|
|
550
|
+
purchase_amount_cardholder_estimated:,
|
|
542
551
|
# The [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) code for the
|
|
543
552
|
# authentication attempt's purchase currency.
|
|
544
553
|
purchase_currency:,
|
|
@@ -602,12 +611,13 @@ module Increase
|
|
|
602
611
|
device_channel:
|
|
603
612
|
Increase::RealTimeDecision::CardAuthentication::DeviceChannel,
|
|
604
613
|
directory_server_transaction_id: String,
|
|
605
|
-
merchant_acceptor_id: String,
|
|
606
|
-
merchant_category_code: String,
|
|
607
|
-
merchant_country: String,
|
|
608
|
-
merchant_name: String,
|
|
614
|
+
merchant_acceptor_id: T.nilable(String),
|
|
615
|
+
merchant_category_code: T.nilable(String),
|
|
616
|
+
merchant_country: T.nilable(String),
|
|
617
|
+
merchant_name: T.nilable(String),
|
|
609
618
|
prior_card_authentication_id: T.nilable(String),
|
|
610
619
|
purchase_amount: T.nilable(Integer),
|
|
620
|
+
purchase_amount_cardholder_estimated: T.nilable(Integer),
|
|
611
621
|
purchase_currency: T.nilable(String),
|
|
612
622
|
requestor_authentication_indicator:
|
|
613
623
|
T.nilable(
|
|
@@ -228,12 +228,13 @@ module Increase
|
|
|
228
228
|
deny_reason: Increase::Models::CardPayment::Element::CardAuthentication::deny_reason?,
|
|
229
229
|
device_channel: Increase::CardPayment::Element::CardAuthentication::DeviceChannel,
|
|
230
230
|
directory_server_transaction_id: String,
|
|
231
|
-
merchant_acceptor_id: String
|
|
232
|
-
merchant_category_code: String
|
|
233
|
-
merchant_country: String
|
|
234
|
-
merchant_name: String
|
|
231
|
+
merchant_acceptor_id: String?,
|
|
232
|
+
merchant_category_code: String?,
|
|
233
|
+
merchant_country: String?,
|
|
234
|
+
merchant_name: String?,
|
|
235
235
|
prior_card_authentication_id: String?,
|
|
236
236
|
purchase_amount: Integer?,
|
|
237
|
+
purchase_amount_cardholder_estimated: Integer?,
|
|
237
238
|
purchase_currency: String?,
|
|
238
239
|
real_time_decision_id: String?,
|
|
239
240
|
requestor_authentication_indicator: Increase::Models::CardPayment::Element::CardAuthentication::requestor_authentication_indicator?,
|
|
@@ -292,18 +293,20 @@ module Increase
|
|
|
292
293
|
|
|
293
294
|
attr_accessor directory_server_transaction_id: String
|
|
294
295
|
|
|
295
|
-
attr_accessor merchant_acceptor_id: String
|
|
296
|
+
attr_accessor merchant_acceptor_id: String?
|
|
296
297
|
|
|
297
|
-
attr_accessor merchant_category_code: String
|
|
298
|
+
attr_accessor merchant_category_code: String?
|
|
298
299
|
|
|
299
|
-
attr_accessor merchant_country: String
|
|
300
|
+
attr_accessor merchant_country: String?
|
|
300
301
|
|
|
301
|
-
attr_accessor merchant_name: String
|
|
302
|
+
attr_accessor merchant_name: String?
|
|
302
303
|
|
|
303
304
|
attr_accessor prior_card_authentication_id: String?
|
|
304
305
|
|
|
305
306
|
attr_accessor purchase_amount: Integer?
|
|
306
307
|
|
|
308
|
+
attr_accessor purchase_amount_cardholder_estimated: Integer?
|
|
309
|
+
|
|
307
310
|
attr_accessor purchase_currency: String?
|
|
308
311
|
|
|
309
312
|
attr_accessor real_time_decision_id: String?
|
|
@@ -358,12 +361,13 @@ module Increase
|
|
|
358
361
|
deny_reason: Increase::Models::CardPayment::Element::CardAuthentication::deny_reason?,
|
|
359
362
|
device_channel: Increase::CardPayment::Element::CardAuthentication::DeviceChannel,
|
|
360
363
|
directory_server_transaction_id: String,
|
|
361
|
-
merchant_acceptor_id: String
|
|
362
|
-
merchant_category_code: String
|
|
363
|
-
merchant_country: String
|
|
364
|
-
merchant_name: String
|
|
364
|
+
merchant_acceptor_id: String?,
|
|
365
|
+
merchant_category_code: String?,
|
|
366
|
+
merchant_country: String?,
|
|
367
|
+
merchant_name: String?,
|
|
365
368
|
prior_card_authentication_id: String?,
|
|
366
369
|
purchase_amount: Integer?,
|
|
370
|
+
purchase_amount_cardholder_estimated: Integer?,
|
|
367
371
|
purchase_currency: String?,
|
|
368
372
|
real_time_decision_id: String?,
|
|
369
373
|
requestor_authentication_indicator: Increase::Models::CardPayment::Element::CardAuthentication::requestor_authentication_indicator?,
|
|
@@ -403,12 +407,13 @@ module Increase
|
|
|
403
407
|
deny_reason: Increase::Models::CardPayment::Element::CardAuthentication::deny_reason?,
|
|
404
408
|
device_channel: Increase::CardPayment::Element::CardAuthentication::DeviceChannel,
|
|
405
409
|
directory_server_transaction_id: String,
|
|
406
|
-
merchant_acceptor_id: String
|
|
407
|
-
merchant_category_code: String
|
|
408
|
-
merchant_country: String
|
|
409
|
-
merchant_name: String
|
|
410
|
+
merchant_acceptor_id: String?,
|
|
411
|
+
merchant_category_code: String?,
|
|
412
|
+
merchant_country: String?,
|
|
413
|
+
merchant_name: String?,
|
|
410
414
|
prior_card_authentication_id: String?,
|
|
411
415
|
purchase_amount: Integer?,
|
|
416
|
+
purchase_amount_cardholder_estimated: Integer?,
|
|
412
417
|
purchase_currency: String?,
|
|
413
418
|
real_time_decision_id: String?,
|
|
414
419
|
requestor_authentication_indicator: Increase::Models::CardPayment::Element::CardAuthentication::requestor_authentication_indicator?,
|
|
@@ -89,12 +89,13 @@ module Increase
|
|
|
89
89
|
decision: Increase::Models::RealTimeDecision::CardAuthentication::decision?,
|
|
90
90
|
device_channel: Increase::RealTimeDecision::CardAuthentication::DeviceChannel,
|
|
91
91
|
directory_server_transaction_id: String,
|
|
92
|
-
merchant_acceptor_id: String
|
|
93
|
-
merchant_category_code: String
|
|
94
|
-
merchant_country: String
|
|
95
|
-
merchant_name: String
|
|
92
|
+
merchant_acceptor_id: String?,
|
|
93
|
+
merchant_category_code: String?,
|
|
94
|
+
merchant_country: String?,
|
|
95
|
+
merchant_name: String?,
|
|
96
96
|
prior_card_authentication_id: String?,
|
|
97
97
|
purchase_amount: Integer?,
|
|
98
|
+
purchase_amount_cardholder_estimated: Integer?,
|
|
98
99
|
purchase_currency: String?,
|
|
99
100
|
requestor_authentication_indicator: Increase::Models::RealTimeDecision::CardAuthentication::requestor_authentication_indicator?,
|
|
100
101
|
requestor_challenge_indicator: Increase::Models::RealTimeDecision::CardAuthentication::requestor_challenge_indicator?,
|
|
@@ -145,18 +146,20 @@ module Increase
|
|
|
145
146
|
|
|
146
147
|
attr_accessor directory_server_transaction_id: String
|
|
147
148
|
|
|
148
|
-
attr_accessor merchant_acceptor_id: String
|
|
149
|
+
attr_accessor merchant_acceptor_id: String?
|
|
149
150
|
|
|
150
|
-
attr_accessor merchant_category_code: String
|
|
151
|
+
attr_accessor merchant_category_code: String?
|
|
151
152
|
|
|
152
|
-
attr_accessor merchant_country: String
|
|
153
|
+
attr_accessor merchant_country: String?
|
|
153
154
|
|
|
154
|
-
attr_accessor merchant_name: String
|
|
155
|
+
attr_accessor merchant_name: String?
|
|
155
156
|
|
|
156
157
|
attr_accessor prior_card_authentication_id: String?
|
|
157
158
|
|
|
158
159
|
attr_accessor purchase_amount: Integer?
|
|
159
160
|
|
|
161
|
+
attr_accessor purchase_amount_cardholder_estimated: Integer?
|
|
162
|
+
|
|
160
163
|
attr_accessor purchase_currency: String?
|
|
161
164
|
|
|
162
165
|
attr_accessor requestor_authentication_indicator: Increase::Models::RealTimeDecision::CardAuthentication::requestor_authentication_indicator?
|
|
@@ -204,12 +207,13 @@ module Increase
|
|
|
204
207
|
decision: Increase::Models::RealTimeDecision::CardAuthentication::decision?,
|
|
205
208
|
device_channel: Increase::RealTimeDecision::CardAuthentication::DeviceChannel,
|
|
206
209
|
directory_server_transaction_id: String,
|
|
207
|
-
merchant_acceptor_id: String
|
|
208
|
-
merchant_category_code: String
|
|
209
|
-
merchant_country: String
|
|
210
|
-
merchant_name: String
|
|
210
|
+
merchant_acceptor_id: String?,
|
|
211
|
+
merchant_category_code: String?,
|
|
212
|
+
merchant_country: String?,
|
|
213
|
+
merchant_name: String?,
|
|
211
214
|
prior_card_authentication_id: String?,
|
|
212
215
|
purchase_amount: Integer?,
|
|
216
|
+
purchase_amount_cardholder_estimated: Integer?,
|
|
213
217
|
purchase_currency: String?,
|
|
214
218
|
requestor_authentication_indicator: Increase::Models::RealTimeDecision::CardAuthentication::requestor_authentication_indicator?,
|
|
215
219
|
requestor_challenge_indicator: Increase::Models::RealTimeDecision::CardAuthentication::requestor_challenge_indicator?,
|
|
@@ -244,12 +248,13 @@ module Increase
|
|
|
244
248
|
decision: Increase::Models::RealTimeDecision::CardAuthentication::decision?,
|
|
245
249
|
device_channel: Increase::RealTimeDecision::CardAuthentication::DeviceChannel,
|
|
246
250
|
directory_server_transaction_id: String,
|
|
247
|
-
merchant_acceptor_id: String
|
|
248
|
-
merchant_category_code: String
|
|
249
|
-
merchant_country: String
|
|
250
|
-
merchant_name: String
|
|
251
|
+
merchant_acceptor_id: String?,
|
|
252
|
+
merchant_category_code: String?,
|
|
253
|
+
merchant_country: String?,
|
|
254
|
+
merchant_name: String?,
|
|
251
255
|
prior_card_authentication_id: String?,
|
|
252
256
|
purchase_amount: Integer?,
|
|
257
|
+
purchase_amount_cardholder_estimated: Integer?,
|
|
253
258
|
purchase_currency: String?,
|
|
254
259
|
requestor_authentication_indicator: Increase::Models::RealTimeDecision::CardAuthentication::requestor_authentication_indicator?,
|
|
255
260
|
requestor_challenge_indicator: Increase::Models::RealTimeDecision::CardAuthentication::requestor_challenge_indicator?,
|
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.236.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Increase
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2026-03-
|
|
11
|
+
date: 2026-03-09 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: cgi
|