increase 1.220.0 → 1.221.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 +17 -1
- data/lib/increase/version.rb +1 -1
- data/rbi/increase/models/card_payment.rbi +16 -0
- data/sig/increase/models/card_payment.rbs +10 -0
- 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: 470d9979afdf7a5b130e7a868bd8586c48e99b42ddbca8bf136ef597019494c2
|
|
4
|
+
data.tar.gz: 182f6d8497882c85ef0e199960429ef82917fbc6ca4e8427528d2e5fb1224fe5
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ac23ef41e6b5aad664b611b80904eac3619dd1c4b98f97bae484f7d8652a52bc1bb858383e35f4079498be8573afab4d70f351523d24b7bb0eda45d6cecea504
|
|
7
|
+
data.tar.gz: c3bc3836ad314da413a5f2a6051aeb5bf1c0b2aa0c0e4781cbc6aea0905f98b05ab61e07d29e53df548c3f41ec7a82b72d679f777cd9fadf8557b17900d3c1cb
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 1.221.0 (2026-03-03)
|
|
4
|
+
|
|
5
|
+
Full Changelog: [v1.220.0...v1.221.0](https://github.com/Increase/increase-ruby/compare/v1.220.0...v1.221.0)
|
|
6
|
+
|
|
7
|
+
### Features
|
|
8
|
+
|
|
9
|
+
* **api:** api update ([3cd867c](https://github.com/Increase/increase-ruby/commit/3cd867cb677a1d99441f21b30a25da513faf9a70))
|
|
10
|
+
|
|
3
11
|
## 1.220.0 (2026-03-03)
|
|
4
12
|
|
|
5
13
|
Full Changelog: [v1.219.0...v1.220.0](https://github.com/Increase/increase-ruby/compare/v1.219.0...v1.220.0)
|
data/README.md
CHANGED
|
@@ -330,6 +330,18 @@ module Increase
|
|
|
330
330
|
# @return [String]
|
|
331
331
|
required :card_payment_id, String
|
|
332
332
|
|
|
333
|
+
# @!attribute cardholder_email
|
|
334
|
+
# The email address of the cardholder.
|
|
335
|
+
#
|
|
336
|
+
# @return [String, nil]
|
|
337
|
+
required :cardholder_email, String, nil?: true
|
|
338
|
+
|
|
339
|
+
# @!attribute cardholder_name
|
|
340
|
+
# The name of the cardholder.
|
|
341
|
+
#
|
|
342
|
+
# @return [String, nil]
|
|
343
|
+
required :cardholder_name, String, nil?: true
|
|
344
|
+
|
|
333
345
|
# @!attribute category
|
|
334
346
|
# The category of the card authentication attempt.
|
|
335
347
|
#
|
|
@@ -432,7 +444,7 @@ module Increase
|
|
|
432
444
|
# @return [Symbol, Increase::Models::CardPayment::Element::CardAuthentication::Type]
|
|
433
445
|
required :type, enum: -> { Increase::CardPayment::Element::CardAuthentication::Type }
|
|
434
446
|
|
|
435
|
-
# @!method initialize(id:, card_id:, card_payment_id:, category:, challenge:, created_at:, deny_reason:, device_channel:, merchant_acceptor_id:, merchant_category_code:, merchant_country:, merchant_name:, purchase_amount:, purchase_currency:, real_time_decision_id:, status:, type:)
|
|
447
|
+
# @!method initialize(id:, card_id:, card_payment_id:, cardholder_email:, cardholder_name:, category:, challenge:, created_at:, deny_reason:, device_channel:, merchant_acceptor_id:, merchant_category_code:, merchant_country:, merchant_name:, purchase_amount:, purchase_currency:, real_time_decision_id:, status:, type:)
|
|
436
448
|
# Some parameter documentations has been truncated, see
|
|
437
449
|
# {Increase::Models::CardPayment::Element::CardAuthentication} for more details.
|
|
438
450
|
#
|
|
@@ -446,6 +458,10 @@ module Increase
|
|
|
446
458
|
#
|
|
447
459
|
# @param card_payment_id [String] The ID of the Card Payment this transaction belongs to.
|
|
448
460
|
#
|
|
461
|
+
# @param cardholder_email [String, nil] The email address of the cardholder.
|
|
462
|
+
#
|
|
463
|
+
# @param cardholder_name [String, nil] The name of the cardholder.
|
|
464
|
+
#
|
|
449
465
|
# @param category [Symbol, Increase::Models::CardPayment::Element::CardAuthentication::Category, nil] The category of the card authentication attempt.
|
|
450
466
|
#
|
|
451
467
|
# @param challenge [Increase::Models::CardPayment::Element::CardAuthentication::Challenge, nil] Details about the challenge, if one was requested.
|
data/lib/increase/version.rb
CHANGED
|
@@ -634,6 +634,14 @@ module Increase
|
|
|
634
634
|
sig { returns(String) }
|
|
635
635
|
attr_accessor :card_payment_id
|
|
636
636
|
|
|
637
|
+
# The email address of the cardholder.
|
|
638
|
+
sig { returns(T.nilable(String)) }
|
|
639
|
+
attr_accessor :cardholder_email
|
|
640
|
+
|
|
641
|
+
# The name of the cardholder.
|
|
642
|
+
sig { returns(T.nilable(String)) }
|
|
643
|
+
attr_accessor :cardholder_name
|
|
644
|
+
|
|
637
645
|
# The category of the card authentication attempt.
|
|
638
646
|
sig do
|
|
639
647
|
returns(
|
|
@@ -746,6 +754,8 @@ module Increase
|
|
|
746
754
|
id: String,
|
|
747
755
|
card_id: String,
|
|
748
756
|
card_payment_id: String,
|
|
757
|
+
cardholder_email: T.nilable(String),
|
|
758
|
+
cardholder_name: T.nilable(String),
|
|
749
759
|
category:
|
|
750
760
|
T.nilable(
|
|
751
761
|
Increase::CardPayment::Element::CardAuthentication::Category::OrSymbol
|
|
@@ -783,6 +793,10 @@ module Increase
|
|
|
783
793
|
card_id:,
|
|
784
794
|
# The ID of the Card Payment this transaction belongs to.
|
|
785
795
|
card_payment_id:,
|
|
796
|
+
# The email address of the cardholder.
|
|
797
|
+
cardholder_email:,
|
|
798
|
+
# The name of the cardholder.
|
|
799
|
+
cardholder_name:,
|
|
786
800
|
# The category of the card authentication attempt.
|
|
787
801
|
category:,
|
|
788
802
|
# Details about the challenge, if one was requested.
|
|
@@ -826,6 +840,8 @@ module Increase
|
|
|
826
840
|
id: String,
|
|
827
841
|
card_id: String,
|
|
828
842
|
card_payment_id: String,
|
|
843
|
+
cardholder_email: T.nilable(String),
|
|
844
|
+
cardholder_name: T.nilable(String),
|
|
829
845
|
category:
|
|
830
846
|
T.nilable(
|
|
831
847
|
Increase::CardPayment::Element::CardAuthentication::Category::TaggedSymbol
|
|
@@ -212,6 +212,8 @@ module Increase
|
|
|
212
212
|
id: String,
|
|
213
213
|
card_id: String,
|
|
214
214
|
card_payment_id: String,
|
|
215
|
+
cardholder_email: String?,
|
|
216
|
+
cardholder_name: String?,
|
|
215
217
|
category: Increase::Models::CardPayment::Element::CardAuthentication::category?,
|
|
216
218
|
challenge: Increase::CardPayment::Element::CardAuthentication::Challenge?,
|
|
217
219
|
created_at: Time,
|
|
@@ -235,6 +237,10 @@ module Increase
|
|
|
235
237
|
|
|
236
238
|
attr_accessor card_payment_id: String
|
|
237
239
|
|
|
240
|
+
attr_accessor cardholder_email: String?
|
|
241
|
+
|
|
242
|
+
attr_accessor cardholder_name: String?
|
|
243
|
+
|
|
238
244
|
attr_accessor category: Increase::Models::CardPayment::Element::CardAuthentication::category?
|
|
239
245
|
|
|
240
246
|
attr_accessor challenge: Increase::CardPayment::Element::CardAuthentication::Challenge?
|
|
@@ -267,6 +273,8 @@ module Increase
|
|
|
267
273
|
id: String,
|
|
268
274
|
card_id: String,
|
|
269
275
|
card_payment_id: String,
|
|
276
|
+
cardholder_email: String?,
|
|
277
|
+
cardholder_name: String?,
|
|
270
278
|
category: Increase::Models::CardPayment::Element::CardAuthentication::category?,
|
|
271
279
|
challenge: Increase::CardPayment::Element::CardAuthentication::Challenge?,
|
|
272
280
|
created_at: Time,
|
|
@@ -287,6 +295,8 @@ module Increase
|
|
|
287
295
|
id: String,
|
|
288
296
|
card_id: String,
|
|
289
297
|
card_payment_id: String,
|
|
298
|
+
cardholder_email: String?,
|
|
299
|
+
cardholder_name: String?,
|
|
290
300
|
category: Increase::Models::CardPayment::Element::CardAuthentication::category?,
|
|
291
301
|
challenge: Increase::CardPayment::Element::CardAuthentication::Challenge?,
|
|
292
302
|
created_at: Time,
|