increase 1.240.0 → 1.241.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: d636be2ae0ca907dfb7c5ea637c4b9d366ba2149304b3879fbd71d6ce9f95d75
4
- data.tar.gz: 2cead5d28ba7fe959d744fee56679e4d79082980f2084c34b40c1508c62f3792
3
+ metadata.gz: a04be041eba6a264331c3d2790223aac3bcd162e58d41c948ee77895342f59ed
4
+ data.tar.gz: acbd6d8dbf14a45bd3eca79fce36e3d6fbcd38cbc00fe9d7355133ee1269c7eb
5
5
  SHA512:
6
- metadata.gz: 3167a3a6c4f824e12a57ea5bf8c49564706a3e230ff2187439689b28c6a54f4308c2d09db8ce6160c6c79f55b26c17494bad9bf12b0fc41cfe706e6ce7baaef0
7
- data.tar.gz: f2d6d8f6fab0196864a69ac6ce5d7dbccaffdd9e220fd395e446204f71de43456cc4113b89b942f4696930a2edb6f10f8324aff6b62558eb2c85017c7c195b00
6
+ metadata.gz: 344aec2294c913273b00a4fcc7aba0ac974ced037aebd2048c5e60d482c925778ba7da9c98d909f11c50302022c3f945d9c2c0af4e72aa9f7d334d30d0cb29d2
7
+ data.tar.gz: 73c02285fab40ef9d198665de68036fe6cda8c8a7d47167371497b57d54e2516d41706d8cbcfd699b07845a4cb712b2fa40d8eda8917a03db1d6266d242e8017
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Changelog
2
2
 
3
+ ## 1.241.0 (2026-03-11)
4
+
5
+ Full Changelog: [v1.240.0...v1.241.0](https://github.com/Increase/increase-ruby/compare/v1.240.0...v1.241.0)
6
+
7
+ ### Features
8
+
9
+ * **api:** api update ([bb3ea5f](https://github.com/Increase/increase-ruby/commit/bb3ea5f6f2b649f19a38ba32b5f5ffd75e7cc9b0))
10
+
3
11
  ## 1.240.0 (2026-03-10)
4
12
 
5
13
  Full Changelog: [v1.239.0...v1.240.0](https://github.com/Increase/increase-ruby/compare/v1.239.0...v1.240.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.240.0"
18
+ gem "increase", "~> 1.241.0"
19
19
  ```
20
20
 
21
21
  <!-- x-release-please-end -->
@@ -685,6 +685,12 @@ module Increase
685
685
  # @return [String]
686
686
  required :one_time_code, String
687
687
 
688
+ # @!attribute real_time_decision_id
689
+ # The identifier of the Real-Time Decision used to deliver this challenge.
690
+ #
691
+ # @return [String, nil]
692
+ required :real_time_decision_id, String, nil?: true
693
+
688
694
  # @!attribute verification_method
689
695
  # The method used to verify the Card Authentication Challenge.
690
696
  #
@@ -699,7 +705,7 @@ module Increase
699
705
  # @return [String, nil]
700
706
  required :verification_value, String, nil?: true
701
707
 
702
- # @!method initialize(attempts:, created_at:, one_time_code:, verification_method:, verification_value:)
708
+ # @!method initialize(attempts:, created_at:, one_time_code:, real_time_decision_id:, verification_method:, verification_value:)
703
709
  # Some parameter documentations has been truncated, see
704
710
  # {Increase::Models::CardPayment::Element::CardAuthentication::Challenge} for more
705
711
  # details.
@@ -712,6 +718,8 @@ module Increase
712
718
  #
713
719
  # @param one_time_code [String] The one-time code used for the Card Authentication Challenge.
714
720
  #
721
+ # @param real_time_decision_id [String, nil] The identifier of the Real-Time Decision used to deliver this challenge.
722
+ #
715
723
  # @param verification_method [Symbol, Increase::Models::CardPayment::Element::CardAuthentication::Challenge::VerificationMethod] The method used to verify the Card Authentication Challenge.
716
724
  #
717
725
  # @param verification_value [String, nil] E.g., the email address or phone number used for the Card Authentication Challen
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Increase
4
- VERSION = "1.240.0"
4
+ VERSION = "1.241.0"
5
5
  end
@@ -1114,6 +1114,10 @@ module Increase
1114
1114
  sig { returns(String) }
1115
1115
  attr_accessor :one_time_code
1116
1116
 
1117
+ # The identifier of the Real-Time Decision used to deliver this challenge.
1118
+ sig { returns(T.nilable(String)) }
1119
+ attr_accessor :real_time_decision_id
1120
+
1117
1121
  # The method used to verify the Card Authentication Challenge.
1118
1122
  sig do
1119
1123
  returns(
@@ -1136,6 +1140,7 @@ module Increase
1136
1140
  ],
1137
1141
  created_at: Time,
1138
1142
  one_time_code: String,
1143
+ real_time_decision_id: T.nilable(String),
1139
1144
  verification_method:
1140
1145
  Increase::CardPayment::Element::CardAuthentication::Challenge::VerificationMethod::OrSymbol,
1141
1146
  verification_value: T.nilable(String)
@@ -1149,6 +1154,8 @@ module Increase
1149
1154
  created_at:,
1150
1155
  # The one-time code used for the Card Authentication Challenge.
1151
1156
  one_time_code:,
1157
+ # The identifier of the Real-Time Decision used to deliver this challenge.
1158
+ real_time_decision_id:,
1152
1159
  # The method used to verify the Card Authentication Challenge.
1153
1160
  verification_method:,
1154
1161
  # E.g., the email address or phone number used for the Card Authentication
@@ -1166,6 +1173,7 @@ module Increase
1166
1173
  ],
1167
1174
  created_at: Time,
1168
1175
  one_time_code: String,
1176
+ real_time_decision_id: T.nilable(String),
1169
1177
  verification_method:
1170
1178
  Increase::CardPayment::Element::CardAuthentication::Challenge::VerificationMethod::TaggedSymbol,
1171
1179
  verification_value: T.nilable(String)
@@ -418,6 +418,7 @@ module Increase
418
418
  attempts: ::Array[Increase::CardPayment::Element::CardAuthentication::Challenge::Attempt],
419
419
  created_at: Time,
420
420
  one_time_code: String,
421
+ real_time_decision_id: String?,
421
422
  verification_method: Increase::Models::CardPayment::Element::CardAuthentication::Challenge::verification_method,
422
423
  verification_value: String?
423
424
  }
@@ -429,6 +430,8 @@ module Increase
429
430
 
430
431
  attr_accessor one_time_code: String
431
432
 
433
+ attr_accessor real_time_decision_id: String?
434
+
432
435
  attr_accessor verification_method: Increase::Models::CardPayment::Element::CardAuthentication::Challenge::verification_method
433
436
 
434
437
  attr_accessor verification_value: String?
@@ -437,6 +440,7 @@ module Increase
437
440
  attempts: ::Array[Increase::CardPayment::Element::CardAuthentication::Challenge::Attempt],
438
441
  created_at: Time,
439
442
  one_time_code: String,
443
+ real_time_decision_id: String?,
440
444
  verification_method: Increase::Models::CardPayment::Element::CardAuthentication::Challenge::verification_method,
441
445
  verification_value: String?
442
446
  ) -> void
@@ -445,6 +449,7 @@ module Increase
445
449
  attempts: ::Array[Increase::CardPayment::Element::CardAuthentication::Challenge::Attempt],
446
450
  created_at: Time,
447
451
  one_time_code: String,
452
+ real_time_decision_id: String?,
448
453
  verification_method: Increase::Models::CardPayment::Element::CardAuthentication::Challenge::verification_method,
449
454
  verification_value: String?
450
455
  }
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.240.0
4
+ version: 1.241.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Increase