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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: c2a6add993e15a60a7676acb368b83327fc6c02e676022fb9f5e63d0756857b4
4
- data.tar.gz: 866c65f58683bd5cfd5c80a41af6169990a97b84b5e1967adae18ea91a081516
3
+ metadata.gz: 470d9979afdf7a5b130e7a868bd8586c48e99b42ddbca8bf136ef597019494c2
4
+ data.tar.gz: 182f6d8497882c85ef0e199960429ef82917fbc6ca4e8427528d2e5fb1224fe5
5
5
  SHA512:
6
- metadata.gz: 37545ba40577c7f601b39e76861883bc3251aceee1b510ea38d5000a244b7009143e1058a3afb96e1328528f034573b95ed8d9f71f3235039eacd8cecd667137
7
- data.tar.gz: ce21ffee4e73e42a68e2d9d8c1c56bdd44c020999a19b899470e9cfcb64be0173eb69c003f0196de1430500495ca512ad398e19fa2483b61b5d250ac63e2a800
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
@@ -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.220.0"
18
+ gem "increase", "~> 1.221.0"
19
19
  ```
20
20
 
21
21
  <!-- x-release-please-end -->
@@ -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.
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Increase
4
- VERSION = "1.220.0"
4
+ VERSION = "1.221.0"
5
5
  end
@@ -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,
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: increase
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.220.0
4
+ version: 1.221.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Increase