increase 1.235.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 +13 -0
- data/README.md +1 -1
- data/lib/increase/models/card_payment.rb +12 -12
- data/lib/increase/models/real_time_decision.rb +12 -12
- data/lib/increase/version.rb +1 -1
- data/rbi/increase/models/card_payment.rbi +12 -12
- data/rbi/increase/models/real_time_decision.rbi +12 -12
- data/sig/increase/models/card_payment.rbs +16 -16
- data/sig/increase/models/real_time_decision.rbs +16 -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,18 @@
|
|
|
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
|
+
|
|
3
16
|
## 1.235.0 (2026-03-06)
|
|
4
17
|
|
|
5
18
|
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
|
@@ -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
|
|
@@ -655,13 +655,13 @@ 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
666
|
# @param prior_card_authentication_id [String, nil] The ID of a prior Card Authentication that the requestor used to authenticate th
|
|
667
667
|
#
|
|
@@ -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
|
|
@@ -409,13 +409,13 @@ 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
420
|
# @param prior_card_authentication_id [String, nil] The ID of a prior Card Authentication that the requestor used to authenticate th
|
|
421
421
|
#
|
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
|
|
@@ -913,10 +913,10 @@ 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,
|
|
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
920
|
prior_card_authentication_id: T.nilable(String),
|
|
921
921
|
purchase_amount: T.nilable(Integer),
|
|
922
922
|
purchase_amount_cardholder_estimated: T.nilable(Integer),
|
|
@@ -1091,10 +1091,10 @@ 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,
|
|
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
1098
|
prior_card_authentication_id: T.nilable(String),
|
|
1099
1099
|
purchase_amount: T.nilable(Integer),
|
|
1100
1100
|
purchase_amount_cardholder_estimated: T.nilable(Integer),
|
|
@@ -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
|
|
@@ -455,10 +455,10 @@ 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,
|
|
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
462
|
prior_card_authentication_id: T.nilable(String),
|
|
463
463
|
purchase_amount: T.nilable(Integer),
|
|
464
464
|
purchase_amount_cardholder_estimated: T.nilable(Integer),
|
|
@@ -611,10 +611,10 @@ 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,
|
|
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
618
|
prior_card_authentication_id: T.nilable(String),
|
|
619
619
|
purchase_amount: T.nilable(Integer),
|
|
620
620
|
purchase_amount_cardholder_estimated: T.nilable(Integer),
|
|
@@ -228,10 +228,10 @@ 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
237
|
purchase_amount_cardholder_estimated: Integer?,
|
|
@@ -293,13 +293,13 @@ 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
304
|
attr_accessor prior_card_authentication_id: String?
|
|
305
305
|
|
|
@@ -361,10 +361,10 @@ 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
|
|
364
|
+
merchant_acceptor_id: String?,
|
|
365
|
+
merchant_category_code: String?,
|
|
366
|
+
merchant_country: String?,
|
|
367
|
+
merchant_name: String?,
|
|
368
368
|
prior_card_authentication_id: String?,
|
|
369
369
|
purchase_amount: Integer?,
|
|
370
370
|
purchase_amount_cardholder_estimated: Integer?,
|
|
@@ -407,10 +407,10 @@ 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
|
|
410
|
+
merchant_acceptor_id: String?,
|
|
411
|
+
merchant_category_code: String?,
|
|
412
|
+
merchant_country: String?,
|
|
413
|
+
merchant_name: String?,
|
|
414
414
|
prior_card_authentication_id: String?,
|
|
415
415
|
purchase_amount: Integer?,
|
|
416
416
|
purchase_amount_cardholder_estimated: Integer?,
|
|
@@ -89,10 +89,10 @@ 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
98
|
purchase_amount_cardholder_estimated: Integer?,
|
|
@@ -146,13 +146,13 @@ 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
157
|
attr_accessor prior_card_authentication_id: String?
|
|
158
158
|
|
|
@@ -207,10 +207,10 @@ 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
|
|
210
|
+
merchant_acceptor_id: String?,
|
|
211
|
+
merchant_category_code: String?,
|
|
212
|
+
merchant_country: String?,
|
|
213
|
+
merchant_name: String?,
|
|
214
214
|
prior_card_authentication_id: String?,
|
|
215
215
|
purchase_amount: Integer?,
|
|
216
216
|
purchase_amount_cardholder_estimated: Integer?,
|
|
@@ -248,10 +248,10 @@ 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
|
|
251
|
+
merchant_acceptor_id: String?,
|
|
252
|
+
merchant_category_code: String?,
|
|
253
|
+
merchant_country: String?,
|
|
254
|
+
merchant_name: String?,
|
|
255
255
|
prior_card_authentication_id: String?,
|
|
256
256
|
purchase_amount: Integer?,
|
|
257
257
|
purchase_amount_cardholder_estimated: Integer?,
|
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
|