increase 1.235.0 → 1.237.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: b7b8b1fe09bc1ce545e7063f9b5612a325ae4ad2584e9977fbc9818c4871bc86
4
- data.tar.gz: 2b56cb378b8a0bd769df0d13f2761a746fc3fa8cf309944e5537aaad5066176c
3
+ metadata.gz: e50ce00e19ba41296b74e0588319265a9844f22b4338c518a73c22f9b924628a
4
+ data.tar.gz: 38633aab650e0736ea7d3e24389353a03fc85160a81fc2990cba94dd5c3839dd
5
5
  SHA512:
6
- metadata.gz: 5db0f97c3eb0b4fdfe2a97a4296934979da293b313037e9fc7c954442404512420e14189111877688108148dfee00f60a7822f25583672db12e1a6417848e519
7
- data.tar.gz: 7530bdfc2e4b9491c6642bfb9d6f9105551da956cb5c5b06b1f1fa0eba625f9eaa2c6a7fc672f3a78ffb197907adc80d32b32a0b6c45bf79b70930599354f4e7
6
+ metadata.gz: fb072206b742adfb762c626f7afdb033063cd87d1e00456c0035f4fdc47563a666419e2346daeaf6499ba1934a326c48c595900c8ba00d8ffcee5421d210c9f5
7
+ data.tar.gz: 90851981fde20b49b158bff2205e4d28439209bdf2b859a23b558bb01caf607289189fafdc6872a786c793bc20d16b7886ae980552fccce645be9f9cc5a95e67
data/CHANGELOG.md CHANGED
@@ -1,5 +1,26 @@
1
1
  # Changelog
2
2
 
3
+ ## 1.237.0 (2026-03-09)
4
+
5
+ Full Changelog: [v1.236.0...v1.237.0](https://github.com/Increase/increase-ruby/compare/v1.236.0...v1.237.0)
6
+
7
+ ### Features
8
+
9
+ * **api:** api update ([3cdf913](https://github.com/Increase/increase-ruby/commit/3cdf9134f8ed32fee781dae6570f9812130af33e))
10
+
11
+ ## 1.236.0 (2026-03-09)
12
+
13
+ Full Changelog: [v1.235.0...v1.236.0](https://github.com/Increase/increase-ruby/compare/v1.235.0...v1.236.0)
14
+
15
+ ### Features
16
+
17
+ * **api:** api update ([623031c](https://github.com/Increase/increase-ruby/commit/623031cc393227b42ffe118a755eec0ee63da7c3))
18
+
19
+
20
+ ### Chores
21
+
22
+ * **internal:** codegen related update ([1c8b59d](https://github.com/Increase/increase-ruby/commit/1c8b59d98eb1a7cbe2c4c033debf7b671b963beb))
23
+
3
24
  ## 1.235.0 (2026-03-06)
4
25
 
5
26
  Full Changelog: [v1.234.0...v1.235.0](https://github.com/Increase/increase-ruby/compare/v1.234.0...v1.235.0)
data/README.md CHANGED
@@ -15,7 +15,7 @@ To use this gem, install via Bundler by adding the following to your application
15
15
  <!-- x-release-please-start-version -->
16
16
 
17
17
  ```ruby
18
- gem "increase", "~> 1.235.0"
18
+ gem "increase", "~> 1.237.0"
19
19
  ```
20
20
 
21
21
  <!-- x-release-please-end -->
@@ -450,34 +450,34 @@ 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
- # @!attribute prior_card_authentication_id
475
+ # @!attribute prior_authenticated_card_payment_id
476
476
  # The ID of a prior Card Authentication that the requestor used to authenticate
477
477
  # this cardholder for a previous transaction.
478
478
  #
479
479
  # @return [String, nil]
480
- required :prior_card_authentication_id, String, nil?: true
480
+ required :prior_authenticated_card_payment_id, String, nil?: true
481
481
 
482
482
  # @!attribute purchase_amount
483
483
  # The purchase amount in minor units.
@@ -609,7 +609,7 @@ module Increase
609
609
  # @return [Symbol, Increase::Models::CardPayment::Element::CardAuthentication::Type]
610
610
  required :type, enum: -> { Increase::CardPayment::Element::CardAuthentication::Type }
611
611
 
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:)
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_authenticated_card_payment_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:)
613
613
  # Some parameter documentations has been truncated, see
614
614
  # {Increase::Models::CardPayment::Element::CardAuthentication} for more details.
615
615
  #
@@ -655,15 +655,15 @@ module Increase
655
655
  #
656
656
  # @param directory_server_transaction_id [String] A unique identifier assigned by the Directory Server (the card network) for this
657
657
  #
658
- # @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
659
659
  #
660
- # @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
661
661
  #
662
- # @param merchant_country [String] The country the merchant resides in.
662
+ # @param merchant_country [String, nil] The country the merchant resides in.
663
663
  #
664
- # @param merchant_name [String] The name of the merchant.
664
+ # @param merchant_name [String, nil] The name of the merchant.
665
665
  #
666
- # @param prior_card_authentication_id [String, nil] The ID of a prior Card Authentication that the requestor used to authenticate th
666
+ # @param prior_authenticated_card_payment_id [String, nil] The ID of a prior Card Authentication that the requestor used to authenticate th
667
667
  #
668
668
  # @param purchase_amount [Integer, nil] The purchase amount in minor units.
669
669
  #
@@ -227,34 +227,34 @@ 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
- # @!attribute prior_card_authentication_id
252
+ # @!attribute prior_authenticated_card_payment_id
253
253
  # The ID of a prior Card Authentication that the requestor used to authenticate
254
254
  # this cardholder for a previous transaction.
255
255
  #
256
256
  # @return [String, nil]
257
- required :prior_card_authentication_id, String, nil?: true
257
+ required :prior_authenticated_card_payment_id, String, nil?: true
258
258
 
259
259
  # @!attribute purchase_amount
260
260
  # The purchase amount in minor units.
@@ -371,7 +371,7 @@ module Increase
371
371
  # @return [String]
372
372
  required :upcoming_card_payment_id, String
373
373
 
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:)
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_authenticated_card_payment_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:)
375
375
  # Some parameter documentations has been truncated, see
376
376
  # {Increase::Models::RealTimeDecision::CardAuthentication} for more details.
377
377
  #
@@ -409,15 +409,15 @@ module Increase
409
409
  #
410
410
  # @param directory_server_transaction_id [String] A unique identifier assigned by the Directory Server (the card network) for this
411
411
  #
412
- # @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
413
413
  #
414
- # @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
415
415
  #
416
- # @param merchant_country [String] The country the merchant resides in.
416
+ # @param merchant_country [String, nil] The country the merchant resides in.
417
417
  #
418
- # @param merchant_name [String] The name of the merchant.
418
+ # @param merchant_name [String, nil] The name of the merchant.
419
419
  #
420
- # @param prior_card_authentication_id [String, nil] The ID of a prior Card Authentication that the requestor used to authenticate th
420
+ # @param prior_authenticated_card_payment_id [String, nil] The ID of a prior Card Authentication that the requestor used to authenticate th
421
421
  #
422
422
  # @param purchase_amount [Integer, nil] The purchase amount in minor units.
423
423
  #
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Increase
4
- VERSION = "1.235.0"
4
+ VERSION = "1.237.0"
5
5
  end
@@ -750,26 +750,26 @@ 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
770
770
  # this cardholder for a previous transaction.
771
771
  sig { returns(T.nilable(String)) }
772
- attr_accessor :prior_card_authentication_id
772
+ attr_accessor :prior_authenticated_card_payment_id
773
773
 
774
774
  # The purchase amount in minor units.
775
775
  sig { returns(T.nilable(Integer)) }
@@ -913,11 +913,11 @@ module Increase
913
913
  device_channel:
914
914
  Increase::CardPayment::Element::CardAuthentication::DeviceChannel::OrHash,
915
915
  directory_server_transaction_id: String,
916
- merchant_acceptor_id: String,
917
- merchant_category_code: String,
918
- merchant_country: String,
919
- merchant_name: String,
920
- prior_card_authentication_id: T.nilable(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),
920
+ prior_authenticated_card_payment_id: T.nilable(String),
921
921
  purchase_amount: T.nilable(Integer),
922
922
  purchase_amount_cardholder_estimated: T.nilable(Integer),
923
923
  purchase_currency: T.nilable(String),
@@ -1011,7 +1011,7 @@ module Increase
1011
1011
  merchant_name:,
1012
1012
  # The ID of a prior Card Authentication that the requestor used to authenticate
1013
1013
  # this cardholder for a previous transaction.
1014
- prior_card_authentication_id:,
1014
+ prior_authenticated_card_payment_id:,
1015
1015
  # The purchase amount in minor units.
1016
1016
  purchase_amount:,
1017
1017
  # The purchase amount in the cardholder's currency (i.e., USD) estimated using
@@ -1091,11 +1091,11 @@ module Increase
1091
1091
  device_channel:
1092
1092
  Increase::CardPayment::Element::CardAuthentication::DeviceChannel,
1093
1093
  directory_server_transaction_id: String,
1094
- merchant_acceptor_id: String,
1095
- merchant_category_code: String,
1096
- merchant_country: String,
1097
- merchant_name: String,
1098
- prior_card_authentication_id: T.nilable(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),
1098
+ prior_authenticated_card_payment_id: T.nilable(String),
1099
1099
  purchase_amount: T.nilable(Integer),
1100
1100
  purchase_amount_cardholder_estimated: T.nilable(Integer),
1101
1101
  purchase_currency: T.nilable(String),
@@ -317,26 +317,26 @@ 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
337
337
  # this cardholder for a previous transaction.
338
338
  sig { returns(T.nilable(String)) }
339
- attr_accessor :prior_card_authentication_id
339
+ attr_accessor :prior_authenticated_card_payment_id
340
340
 
341
341
  # The purchase amount in minor units.
342
342
  sig { returns(T.nilable(Integer)) }
@@ -455,11 +455,11 @@ module Increase
455
455
  device_channel:
456
456
  Increase::RealTimeDecision::CardAuthentication::DeviceChannel::OrHash,
457
457
  directory_server_transaction_id: String,
458
- merchant_acceptor_id: String,
459
- merchant_category_code: String,
460
- merchant_country: String,
461
- merchant_name: String,
462
- prior_card_authentication_id: T.nilable(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),
462
+ prior_authenticated_card_payment_id: T.nilable(String),
463
463
  purchase_amount: T.nilable(Integer),
464
464
  purchase_amount_cardholder_estimated: T.nilable(Integer),
465
465
  purchase_currency: T.nilable(String),
@@ -542,7 +542,7 @@ module Increase
542
542
  merchant_name:,
543
543
  # The ID of a prior Card Authentication that the requestor used to authenticate
544
544
  # this cardholder for a previous transaction.
545
- prior_card_authentication_id:,
545
+ prior_authenticated_card_payment_id:,
546
546
  # The purchase amount in minor units.
547
547
  purchase_amount:,
548
548
  # The purchase amount in the cardholder's currency (i.e., USD) estimated using
@@ -611,11 +611,11 @@ module Increase
611
611
  device_channel:
612
612
  Increase::RealTimeDecision::CardAuthentication::DeviceChannel,
613
613
  directory_server_transaction_id: String,
614
- merchant_acceptor_id: String,
615
- merchant_category_code: String,
616
- merchant_country: String,
617
- merchant_name: String,
618
- prior_card_authentication_id: T.nilable(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),
618
+ prior_authenticated_card_payment_id: T.nilable(String),
619
619
  purchase_amount: T.nilable(Integer),
620
620
  purchase_amount_cardholder_estimated: T.nilable(Integer),
621
621
  purchase_currency: T.nilable(String),
@@ -228,11 +228,11 @@ 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,
235
- prior_card_authentication_id: String?,
231
+ merchant_acceptor_id: String?,
232
+ merchant_category_code: String?,
233
+ merchant_country: String?,
234
+ merchant_name: String?,
235
+ prior_authenticated_card_payment_id: String?,
236
236
  purchase_amount: Integer?,
237
237
  purchase_amount_cardholder_estimated: Integer?,
238
238
  purchase_currency: String?,
@@ -293,15 +293,15 @@ module Increase
293
293
 
294
294
  attr_accessor directory_server_transaction_id: String
295
295
 
296
- attr_accessor merchant_acceptor_id: String
296
+ attr_accessor merchant_acceptor_id: String?
297
297
 
298
- attr_accessor merchant_category_code: String
298
+ attr_accessor merchant_category_code: String?
299
299
 
300
- attr_accessor merchant_country: String
300
+ attr_accessor merchant_country: String?
301
301
 
302
- attr_accessor merchant_name: String
302
+ attr_accessor merchant_name: String?
303
303
 
304
- attr_accessor prior_card_authentication_id: String?
304
+ attr_accessor prior_authenticated_card_payment_id: String?
305
305
 
306
306
  attr_accessor purchase_amount: Integer?
307
307
 
@@ -361,11 +361,11 @@ module Increase
361
361
  deny_reason: Increase::Models::CardPayment::Element::CardAuthentication::deny_reason?,
362
362
  device_channel: Increase::CardPayment::Element::CardAuthentication::DeviceChannel,
363
363
  directory_server_transaction_id: String,
364
- merchant_acceptor_id: String,
365
- merchant_category_code: String,
366
- merchant_country: String,
367
- merchant_name: String,
368
- prior_card_authentication_id: String?,
364
+ merchant_acceptor_id: String?,
365
+ merchant_category_code: String?,
366
+ merchant_country: String?,
367
+ merchant_name: String?,
368
+ prior_authenticated_card_payment_id: String?,
369
369
  purchase_amount: Integer?,
370
370
  purchase_amount_cardholder_estimated: Integer?,
371
371
  purchase_currency: String?,
@@ -407,11 +407,11 @@ module Increase
407
407
  deny_reason: Increase::Models::CardPayment::Element::CardAuthentication::deny_reason?,
408
408
  device_channel: Increase::CardPayment::Element::CardAuthentication::DeviceChannel,
409
409
  directory_server_transaction_id: String,
410
- merchant_acceptor_id: String,
411
- merchant_category_code: String,
412
- merchant_country: String,
413
- merchant_name: String,
414
- prior_card_authentication_id: String?,
410
+ merchant_acceptor_id: String?,
411
+ merchant_category_code: String?,
412
+ merchant_country: String?,
413
+ merchant_name: String?,
414
+ prior_authenticated_card_payment_id: String?,
415
415
  purchase_amount: Integer?,
416
416
  purchase_amount_cardholder_estimated: Integer?,
417
417
  purchase_currency: String?,
@@ -89,11 +89,11 @@ 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,
96
- prior_card_authentication_id: String?,
92
+ merchant_acceptor_id: String?,
93
+ merchant_category_code: String?,
94
+ merchant_country: String?,
95
+ merchant_name: String?,
96
+ prior_authenticated_card_payment_id: String?,
97
97
  purchase_amount: Integer?,
98
98
  purchase_amount_cardholder_estimated: Integer?,
99
99
  purchase_currency: String?,
@@ -146,15 +146,15 @@ module Increase
146
146
 
147
147
  attr_accessor directory_server_transaction_id: String
148
148
 
149
- attr_accessor merchant_acceptor_id: String
149
+ attr_accessor merchant_acceptor_id: String?
150
150
 
151
- attr_accessor merchant_category_code: String
151
+ attr_accessor merchant_category_code: String?
152
152
 
153
- attr_accessor merchant_country: String
153
+ attr_accessor merchant_country: String?
154
154
 
155
- attr_accessor merchant_name: String
155
+ attr_accessor merchant_name: String?
156
156
 
157
- attr_accessor prior_card_authentication_id: String?
157
+ attr_accessor prior_authenticated_card_payment_id: String?
158
158
 
159
159
  attr_accessor purchase_amount: Integer?
160
160
 
@@ -207,11 +207,11 @@ module Increase
207
207
  decision: Increase::Models::RealTimeDecision::CardAuthentication::decision?,
208
208
  device_channel: Increase::RealTimeDecision::CardAuthentication::DeviceChannel,
209
209
  directory_server_transaction_id: String,
210
- merchant_acceptor_id: String,
211
- merchant_category_code: String,
212
- merchant_country: String,
213
- merchant_name: String,
214
- prior_card_authentication_id: String?,
210
+ merchant_acceptor_id: String?,
211
+ merchant_category_code: String?,
212
+ merchant_country: String?,
213
+ merchant_name: String?,
214
+ prior_authenticated_card_payment_id: String?,
215
215
  purchase_amount: Integer?,
216
216
  purchase_amount_cardholder_estimated: Integer?,
217
217
  purchase_currency: String?,
@@ -248,11 +248,11 @@ module Increase
248
248
  decision: Increase::Models::RealTimeDecision::CardAuthentication::decision?,
249
249
  device_channel: Increase::RealTimeDecision::CardAuthentication::DeviceChannel,
250
250
  directory_server_transaction_id: String,
251
- merchant_acceptor_id: String,
252
- merchant_category_code: String,
253
- merchant_country: String,
254
- merchant_name: String,
255
- prior_card_authentication_id: String?,
251
+ merchant_acceptor_id: String?,
252
+ merchant_category_code: String?,
253
+ merchant_country: String?,
254
+ merchant_name: String?,
255
+ prior_authenticated_card_payment_id: String?,
256
256
  purchase_amount: Integer?,
257
257
  purchase_amount_cardholder_estimated: Integer?,
258
258
  purchase_currency: String?,
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.235.0
4
+ version: 1.237.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-06 00:00:00.000000000 Z
11
+ date: 2026-03-09 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: cgi