increase 1.236.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 +4 -4
- data/CHANGELOG.md +8 -0
- data/README.md +1 -1
- data/lib/increase/models/card_payment.rb +4 -4
- data/lib/increase/models/real_time_decision.rb +4 -4
- data/lib/increase/version.rb +1 -1
- data/rbi/increase/models/card_payment.rbi +4 -4
- data/rbi/increase/models/real_time_decision.rbi +4 -4
- data/sig/increase/models/card_payment.rbs +4 -4
- data/sig/increase/models/real_time_decision.rbs +4 -4
- 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: e50ce00e19ba41296b74e0588319265a9844f22b4338c518a73c22f9b924628a
|
|
4
|
+
data.tar.gz: 38633aab650e0736ea7d3e24389353a03fc85160a81fc2990cba94dd5c3839dd
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: fb072206b742adfb762c626f7afdb033063cd87d1e00456c0035f4fdc47563a666419e2346daeaf6499ba1934a326c48c595900c8ba00d8ffcee5421d210c9f5
|
|
7
|
+
data.tar.gz: 90851981fde20b49b158bff2205e4d28439209bdf2b859a23b558bb01caf607289189fafdc6872a786c793bc20d16b7886ae980552fccce645be9f9cc5a95e67
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
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
|
+
|
|
3
11
|
## 1.236.0 (2026-03-09)
|
|
4
12
|
|
|
5
13
|
Full Changelog: [v1.235.0...v1.236.0](https://github.com/Increase/increase-ruby/compare/v1.235.0...v1.236.0)
|
data/README.md
CHANGED
|
@@ -472,12 +472,12 @@ module Increase
|
|
|
472
472
|
# @return [String, nil]
|
|
473
473
|
required :merchant_name, String, nil?: true
|
|
474
474
|
|
|
475
|
-
# @!attribute
|
|
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 :
|
|
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:,
|
|
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
|
#
|
|
@@ -663,7 +663,7 @@ module Increase
|
|
|
663
663
|
#
|
|
664
664
|
# @param merchant_name [String, nil] The name of the merchant.
|
|
665
665
|
#
|
|
666
|
-
# @param
|
|
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
|
#
|
|
@@ -249,12 +249,12 @@ module Increase
|
|
|
249
249
|
# @return [String, nil]
|
|
250
250
|
required :merchant_name, String, nil?: true
|
|
251
251
|
|
|
252
|
-
# @!attribute
|
|
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 :
|
|
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:,
|
|
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
|
#
|
|
@@ -417,7 +417,7 @@ module Increase
|
|
|
417
417
|
#
|
|
418
418
|
# @param merchant_name [String, nil] The name of the merchant.
|
|
419
419
|
#
|
|
420
|
-
# @param
|
|
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
|
#
|
data/lib/increase/version.rb
CHANGED
|
@@ -769,7 +769,7 @@ module Increase
|
|
|
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 :
|
|
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)) }
|
|
@@ -917,7 +917,7 @@ module Increase
|
|
|
917
917
|
merchant_category_code: T.nilable(String),
|
|
918
918
|
merchant_country: T.nilable(String),
|
|
919
919
|
merchant_name: T.nilable(String),
|
|
920
|
-
|
|
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
|
-
|
|
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
|
|
@@ -1095,7 +1095,7 @@ module Increase
|
|
|
1095
1095
|
merchant_category_code: T.nilable(String),
|
|
1096
1096
|
merchant_country: T.nilable(String),
|
|
1097
1097
|
merchant_name: T.nilable(String),
|
|
1098
|
-
|
|
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),
|
|
@@ -336,7 +336,7 @@ module Increase
|
|
|
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 :
|
|
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)) }
|
|
@@ -459,7 +459,7 @@ module Increase
|
|
|
459
459
|
merchant_category_code: T.nilable(String),
|
|
460
460
|
merchant_country: T.nilable(String),
|
|
461
461
|
merchant_name: T.nilable(String),
|
|
462
|
-
|
|
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
|
-
|
|
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
|
|
@@ -615,7 +615,7 @@ module Increase
|
|
|
615
615
|
merchant_category_code: T.nilable(String),
|
|
616
616
|
merchant_country: T.nilable(String),
|
|
617
617
|
merchant_name: T.nilable(String),
|
|
618
|
-
|
|
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),
|
|
@@ -232,7 +232,7 @@ module Increase
|
|
|
232
232
|
merchant_category_code: String?,
|
|
233
233
|
merchant_country: String?,
|
|
234
234
|
merchant_name: String?,
|
|
235
|
-
|
|
235
|
+
prior_authenticated_card_payment_id: String?,
|
|
236
236
|
purchase_amount: Integer?,
|
|
237
237
|
purchase_amount_cardholder_estimated: Integer?,
|
|
238
238
|
purchase_currency: String?,
|
|
@@ -301,7 +301,7 @@ module Increase
|
|
|
301
301
|
|
|
302
302
|
attr_accessor merchant_name: String?
|
|
303
303
|
|
|
304
|
-
attr_accessor
|
|
304
|
+
attr_accessor prior_authenticated_card_payment_id: String?
|
|
305
305
|
|
|
306
306
|
attr_accessor purchase_amount: Integer?
|
|
307
307
|
|
|
@@ -365,7 +365,7 @@ module Increase
|
|
|
365
365
|
merchant_category_code: String?,
|
|
366
366
|
merchant_country: String?,
|
|
367
367
|
merchant_name: String?,
|
|
368
|
-
|
|
368
|
+
prior_authenticated_card_payment_id: String?,
|
|
369
369
|
purchase_amount: Integer?,
|
|
370
370
|
purchase_amount_cardholder_estimated: Integer?,
|
|
371
371
|
purchase_currency: String?,
|
|
@@ -411,7 +411,7 @@ module Increase
|
|
|
411
411
|
merchant_category_code: String?,
|
|
412
412
|
merchant_country: String?,
|
|
413
413
|
merchant_name: String?,
|
|
414
|
-
|
|
414
|
+
prior_authenticated_card_payment_id: String?,
|
|
415
415
|
purchase_amount: Integer?,
|
|
416
416
|
purchase_amount_cardholder_estimated: Integer?,
|
|
417
417
|
purchase_currency: String?,
|
|
@@ -93,7 +93,7 @@ module Increase
|
|
|
93
93
|
merchant_category_code: String?,
|
|
94
94
|
merchant_country: String?,
|
|
95
95
|
merchant_name: String?,
|
|
96
|
-
|
|
96
|
+
prior_authenticated_card_payment_id: String?,
|
|
97
97
|
purchase_amount: Integer?,
|
|
98
98
|
purchase_amount_cardholder_estimated: Integer?,
|
|
99
99
|
purchase_currency: String?,
|
|
@@ -154,7 +154,7 @@ module Increase
|
|
|
154
154
|
|
|
155
155
|
attr_accessor merchant_name: String?
|
|
156
156
|
|
|
157
|
-
attr_accessor
|
|
157
|
+
attr_accessor prior_authenticated_card_payment_id: String?
|
|
158
158
|
|
|
159
159
|
attr_accessor purchase_amount: Integer?
|
|
160
160
|
|
|
@@ -211,7 +211,7 @@ module Increase
|
|
|
211
211
|
merchant_category_code: String?,
|
|
212
212
|
merchant_country: String?,
|
|
213
213
|
merchant_name: String?,
|
|
214
|
-
|
|
214
|
+
prior_authenticated_card_payment_id: String?,
|
|
215
215
|
purchase_amount: Integer?,
|
|
216
216
|
purchase_amount_cardholder_estimated: Integer?,
|
|
217
217
|
purchase_currency: String?,
|
|
@@ -252,7 +252,7 @@ module Increase
|
|
|
252
252
|
merchant_category_code: String?,
|
|
253
253
|
merchant_country: String?,
|
|
254
254
|
merchant_name: String?,
|
|
255
|
-
|
|
255
|
+
prior_authenticated_card_payment_id: String?,
|
|
256
256
|
purchase_amount: Integer?,
|
|
257
257
|
purchase_amount_cardholder_estimated: Integer?,
|
|
258
258
|
purchase_currency: String?,
|