increase 1.228.0 → 1.229.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: 5a0de1f149d3a02844c233f4383d8e9e26bb5f7fcdc03db331671c46ed6e1d36
4
- data.tar.gz: 2654a00ae91103172d805cf30a5f4ea8d3a530c2dc94b71451fd89129027c3fe
3
+ metadata.gz: bd594db233cdb40ffc077729f606ec67d6e095614065ef355e30e659587e048f
4
+ data.tar.gz: 4be85b5ab95cc8cb4f6e4facdc59c32f6b0caae0b8d35143c67296a0a1640a70
5
5
  SHA512:
6
- metadata.gz: 169c245ba8c81938fdb010744afb95daece299475e7fd8e6ca28a9ab8991edf48a106751255014454bb72cab4931c9ed3a74400535cf5c3f6ee46330547a63f7
7
- data.tar.gz: 6a71623b36803afcdfb1a9534c2f6a1d9061672dbaa9d3d5060c5cc45912606aefd8b4b6edcd797cce89477b75377ccbc5d0be206464c181c406376bc5f3fcf6
6
+ metadata.gz: e6f9fa92612a64174b7715fcb5c5e459dddcda9a9b893b6d7734b0bc5b2bc51a72058b635154407eacc0bd60c52b0e5f0ae2449e3ce1c58c06c4cbc173ed28ed
7
+ data.tar.gz: 4520f64e15c90b22dedcb15ec4c77c18e2fafeb37f7dcf37ba6ef186d740015a80390d1123777206cbc489ebda246541cc1f04a76793c8885e8ff4d5d192301e
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Changelog
2
2
 
3
+ ## 1.229.0 (2026-03-05)
4
+
5
+ Full Changelog: [v1.228.0...v1.229.0](https://github.com/Increase/increase-ruby/compare/v1.228.0...v1.229.0)
6
+
7
+ ### Features
8
+
9
+ * **api:** api update ([ece1a38](https://github.com/Increase/increase-ruby/commit/ece1a380172005d1ad991faf6dd7b65b0b12bcc7))
10
+
3
11
  ## 1.228.0 (2026-03-05)
4
12
 
5
13
  Full Changelog: [v1.227.0...v1.228.0](https://github.com/Increase/increase-ruby/compare/v1.227.0...v1.228.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.228.0"
18
+ gem "increase", "~> 1.229.0"
19
19
  ```
20
20
 
21
21
  <!-- x-release-please-end -->
@@ -485,6 +485,39 @@ module Increase
485
485
  # @return [String, nil]
486
486
  required :real_time_decision_id, String, nil?: true
487
487
 
488
+ # @!attribute requestor_authentication_indicator
489
+ # The 3DS requestor authentication indicator describes why the authentication
490
+ # attempt is performed, such as for a recurring transaction.
491
+ #
492
+ # @return [Symbol, Increase::Models::CardPayment::Element::CardAuthentication::RequestorAuthenticationIndicator, nil]
493
+ required :requestor_authentication_indicator,
494
+ enum: -> {
495
+ Increase::CardPayment::Element::CardAuthentication::RequestorAuthenticationIndicator
496
+ },
497
+ nil?: true
498
+
499
+ # @!attribute requestor_challenge_indicator
500
+ # Indicates whether a challenge is requested for this transaction.
501
+ #
502
+ # @return [Symbol, Increase::Models::CardPayment::Element::CardAuthentication::RequestorChallengeIndicator, nil]
503
+ required :requestor_challenge_indicator,
504
+ enum: -> {
505
+ Increase::CardPayment::Element::CardAuthentication::RequestorChallengeIndicator
506
+ },
507
+ nil?: true
508
+
509
+ # @!attribute requestor_name
510
+ # The name of the 3DS requestor.
511
+ #
512
+ # @return [String]
513
+ required :requestor_name, String
514
+
515
+ # @!attribute requestor_url
516
+ # The URL of the 3DS requestor.
517
+ #
518
+ # @return [String]
519
+ required :requestor_url, String
520
+
488
521
  # @!attribute status
489
522
  # The status of the card authentication.
490
523
  #
@@ -498,7 +531,7 @@ module Increase
498
531
  # @return [Symbol, Increase::Models::CardPayment::Element::CardAuthentication::Type]
499
532
  required :type, enum: -> { Increase::CardPayment::Element::CardAuthentication::Type }
500
533
 
501
- # @!method initialize(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:, merchant_acceptor_id:, merchant_category_code:, merchant_country:, merchant_name:, prior_card_authentication_id:, purchase_amount:, purchase_currency:, real_time_decision_id:, status:, type:)
534
+ # @!method initialize(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:, merchant_acceptor_id:, merchant_category_code:, merchant_country:, merchant_name:, prior_card_authentication_id:, purchase_amount:, purchase_currency:, real_time_decision_id:, requestor_authentication_indicator:, requestor_challenge_indicator:, requestor_name:, requestor_url:, status:, type:)
502
535
  # Some parameter documentations has been truncated, see
503
536
  # {Increase::Models::CardPayment::Element::CardAuthentication} for more details.
504
537
  #
@@ -556,6 +589,14 @@ module Increase
556
589
  #
557
590
  # @param real_time_decision_id [String, nil] The identifier of the Real-Time Decision sent to approve or decline this authent
558
591
  #
592
+ # @param requestor_authentication_indicator [Symbol, Increase::Models::CardPayment::Element::CardAuthentication::RequestorAuthenticationIndicator, nil] The 3DS requestor authentication indicator describes why the authentication atte
593
+ #
594
+ # @param requestor_challenge_indicator [Symbol, Increase::Models::CardPayment::Element::CardAuthentication::RequestorChallengeIndicator, nil] Indicates whether a challenge is requested for this transaction.
595
+ #
596
+ # @param requestor_name [String] The name of the 3DS requestor.
597
+ #
598
+ # @param requestor_url [String] The URL of the 3DS requestor.
599
+ #
559
600
  # @param status [Symbol, Increase::Models::CardPayment::Element::CardAuthentication::Status] The status of the card authentication.
560
601
  #
561
602
  # @param type [Symbol, Increase::Models::CardPayment::Element::CardAuthentication::Type] A constant representing the object's type. For this resource it will always be `
@@ -828,6 +869,79 @@ module Increase
828
869
  end
829
870
  end
830
871
 
872
+ # The 3DS requestor authentication indicator describes why the authentication
873
+ # attempt is performed, such as for a recurring transaction.
874
+ #
875
+ # @see Increase::Models::CardPayment::Element::CardAuthentication#requestor_authentication_indicator
876
+ module RequestorAuthenticationIndicator
877
+ extend Increase::Internal::Type::Enum
878
+
879
+ # The authentication is for a payment transaction.
880
+ PAYMENT_TRANSACTION = :payment_transaction
881
+
882
+ # The authentication is for a recurring transaction.
883
+ RECURRING_TRANSACTION = :recurring_transaction
884
+
885
+ # The authentication is for an installment transaction.
886
+ INSTALLMENT_TRANSACTION = :installment_transaction
887
+
888
+ # The authentication is for adding a card.
889
+ ADD_CARD = :add_card
890
+
891
+ # The authentication is for maintaining a card.
892
+ MAINTAIN_CARD = :maintain_card
893
+
894
+ # The authentication is for EMV token cardholder verification.
895
+ EMV_TOKEN_CARDHOLDER_VERIFICATION = :emv_token_cardholder_verification
896
+
897
+ # The authentication is for a billing agreement.
898
+ BILLING_AGREEMENT = :billing_agreement
899
+
900
+ # @!method self.values
901
+ # @return [Array<Symbol>]
902
+ end
903
+
904
+ # Indicates whether a challenge is requested for this transaction.
905
+ #
906
+ # @see Increase::Models::CardPayment::Element::CardAuthentication#requestor_challenge_indicator
907
+ module RequestorChallengeIndicator
908
+ extend Increase::Internal::Type::Enum
909
+
910
+ # No preference.
911
+ NO_PREFERENCE = :no_preference
912
+
913
+ # No challenge requested.
914
+ NO_CHALLENGE_REQUESTED = :no_challenge_requested
915
+
916
+ # Challenge requested, 3DS Requestor preference.
917
+ CHALLENGE_REQUESTED_3DS_REQUESTOR_PREFERENCE = :challenge_requested_3ds_requestor_preference
918
+
919
+ # Challenge requested, mandate.
920
+ CHALLENGE_REQUESTED_MANDATE = :challenge_requested_mandate
921
+
922
+ # No challenge requested, transactional risk analysis already performed.
923
+ NO_CHALLENGE_REQUESTED_TRANSACTIONAL_RISK_ANALYSIS_ALREADY_PERFORMED =
924
+ :no_challenge_requested_transactional_risk_analysis_already_performed
925
+
926
+ # No challenge requested, data share only.
927
+ NO_CHALLENGE_REQUESTED_DATA_SHARE_ONLY = :no_challenge_requested_data_share_only
928
+
929
+ # No challenge requested, strong consumer authentication already performed.
930
+ NO_CHALLENGE_REQUESTED_STRONG_CONSUMER_AUTHENTICATION_ALREADY_PERFORMED =
931
+ :no_challenge_requested_strong_consumer_authentication_already_performed
932
+
933
+ # No challenge requested, utilize whitelist exemption if no challenge required.
934
+ NO_CHALLENGE_REQUESTED_UTILIZE_WHITELIST_EXEMPTION_IF_NO_CHALLENGE_REQUIRED =
935
+ :no_challenge_requested_utilize_whitelist_exemption_if_no_challenge_required
936
+
937
+ # Challenge requested, whitelist prompt requested if challenge required.
938
+ CHALLENGE_REQUESTED_WHITELIST_PROMPT_REQUESTED_IF_CHALLENGE_REQUIRED =
939
+ :challenge_requested_whitelist_prompt_requested_if_challenge_required
940
+
941
+ # @!method self.values
942
+ # @return [Array<Symbol>]
943
+ end
944
+
831
945
  # The status of the card authentication.
832
946
  #
833
947
  # @see Increase::Models::CardPayment::Element::CardAuthentication#status
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Increase
4
- VERSION = "1.228.0"
4
+ VERSION = "1.229.0"
5
5
  end
@@ -775,6 +775,35 @@ module Increase
775
775
  sig { returns(T.nilable(String)) }
776
776
  attr_accessor :real_time_decision_id
777
777
 
778
+ # The 3DS requestor authentication indicator describes why the authentication
779
+ # attempt is performed, such as for a recurring transaction.
780
+ sig do
781
+ returns(
782
+ T.nilable(
783
+ Increase::CardPayment::Element::CardAuthentication::RequestorAuthenticationIndicator::TaggedSymbol
784
+ )
785
+ )
786
+ end
787
+ attr_accessor :requestor_authentication_indicator
788
+
789
+ # Indicates whether a challenge is requested for this transaction.
790
+ sig do
791
+ returns(
792
+ T.nilable(
793
+ Increase::CardPayment::Element::CardAuthentication::RequestorChallengeIndicator::TaggedSymbol
794
+ )
795
+ )
796
+ end
797
+ attr_accessor :requestor_challenge_indicator
798
+
799
+ # The name of the 3DS requestor.
800
+ sig { returns(String) }
801
+ attr_accessor :requestor_name
802
+
803
+ # The URL of the 3DS requestor.
804
+ sig { returns(String) }
805
+ attr_accessor :requestor_url
806
+
778
807
  # The status of the card authentication.
779
808
  sig do
780
809
  returns(
@@ -832,6 +861,16 @@ module Increase
832
861
  purchase_amount: T.nilable(Integer),
833
862
  purchase_currency: T.nilable(String),
834
863
  real_time_decision_id: T.nilable(String),
864
+ requestor_authentication_indicator:
865
+ T.nilable(
866
+ Increase::CardPayment::Element::CardAuthentication::RequestorAuthenticationIndicator::OrSymbol
867
+ ),
868
+ requestor_challenge_indicator:
869
+ T.nilable(
870
+ Increase::CardPayment::Element::CardAuthentication::RequestorChallengeIndicator::OrSymbol
871
+ ),
872
+ requestor_name: String,
873
+ requestor_url: String,
835
874
  status:
836
875
  Increase::CardPayment::Element::CardAuthentication::Status::OrSymbol,
837
876
  type:
@@ -902,6 +941,15 @@ module Increase
902
941
  # The identifier of the Real-Time Decision sent to approve or decline this
903
942
  # authentication attempt.
904
943
  real_time_decision_id:,
944
+ # The 3DS requestor authentication indicator describes why the authentication
945
+ # attempt is performed, such as for a recurring transaction.
946
+ requestor_authentication_indicator:,
947
+ # Indicates whether a challenge is requested for this transaction.
948
+ requestor_challenge_indicator:,
949
+ # The name of the 3DS requestor.
950
+ requestor_name:,
951
+ # The URL of the 3DS requestor.
952
+ requestor_url:,
905
953
  # The status of the card authentication.
906
954
  status:,
907
955
  # A constant representing the object's type. For this resource it will always be
@@ -948,6 +996,16 @@ module Increase
948
996
  purchase_amount: T.nilable(Integer),
949
997
  purchase_currency: T.nilable(String),
950
998
  real_time_decision_id: T.nilable(String),
999
+ requestor_authentication_indicator:
1000
+ T.nilable(
1001
+ Increase::CardPayment::Element::CardAuthentication::RequestorAuthenticationIndicator::TaggedSymbol
1002
+ ),
1003
+ requestor_challenge_indicator:
1004
+ T.nilable(
1005
+ Increase::CardPayment::Element::CardAuthentication::RequestorChallengeIndicator::TaggedSymbol
1006
+ ),
1007
+ requestor_name: String,
1008
+ requestor_url: String,
951
1009
  status:
952
1010
  Increase::CardPayment::Element::CardAuthentication::Status::TaggedSymbol,
953
1011
  type:
@@ -1521,6 +1579,167 @@ module Increase
1521
1579
  end
1522
1580
  end
1523
1581
 
1582
+ # The 3DS requestor authentication indicator describes why the authentication
1583
+ # attempt is performed, such as for a recurring transaction.
1584
+ module RequestorAuthenticationIndicator
1585
+ extend Increase::Internal::Type::Enum
1586
+
1587
+ TaggedSymbol =
1588
+ T.type_alias do
1589
+ T.all(
1590
+ Symbol,
1591
+ Increase::CardPayment::Element::CardAuthentication::RequestorAuthenticationIndicator
1592
+ )
1593
+ end
1594
+ OrSymbol = T.type_alias { T.any(Symbol, String) }
1595
+
1596
+ # The authentication is for a payment transaction.
1597
+ PAYMENT_TRANSACTION =
1598
+ T.let(
1599
+ :payment_transaction,
1600
+ Increase::CardPayment::Element::CardAuthentication::RequestorAuthenticationIndicator::TaggedSymbol
1601
+ )
1602
+
1603
+ # The authentication is for a recurring transaction.
1604
+ RECURRING_TRANSACTION =
1605
+ T.let(
1606
+ :recurring_transaction,
1607
+ Increase::CardPayment::Element::CardAuthentication::RequestorAuthenticationIndicator::TaggedSymbol
1608
+ )
1609
+
1610
+ # The authentication is for an installment transaction.
1611
+ INSTALLMENT_TRANSACTION =
1612
+ T.let(
1613
+ :installment_transaction,
1614
+ Increase::CardPayment::Element::CardAuthentication::RequestorAuthenticationIndicator::TaggedSymbol
1615
+ )
1616
+
1617
+ # The authentication is for adding a card.
1618
+ ADD_CARD =
1619
+ T.let(
1620
+ :add_card,
1621
+ Increase::CardPayment::Element::CardAuthentication::RequestorAuthenticationIndicator::TaggedSymbol
1622
+ )
1623
+
1624
+ # The authentication is for maintaining a card.
1625
+ MAINTAIN_CARD =
1626
+ T.let(
1627
+ :maintain_card,
1628
+ Increase::CardPayment::Element::CardAuthentication::RequestorAuthenticationIndicator::TaggedSymbol
1629
+ )
1630
+
1631
+ # The authentication is for EMV token cardholder verification.
1632
+ EMV_TOKEN_CARDHOLDER_VERIFICATION =
1633
+ T.let(
1634
+ :emv_token_cardholder_verification,
1635
+ Increase::CardPayment::Element::CardAuthentication::RequestorAuthenticationIndicator::TaggedSymbol
1636
+ )
1637
+
1638
+ # The authentication is for a billing agreement.
1639
+ BILLING_AGREEMENT =
1640
+ T.let(
1641
+ :billing_agreement,
1642
+ Increase::CardPayment::Element::CardAuthentication::RequestorAuthenticationIndicator::TaggedSymbol
1643
+ )
1644
+
1645
+ sig do
1646
+ override.returns(
1647
+ T::Array[
1648
+ Increase::CardPayment::Element::CardAuthentication::RequestorAuthenticationIndicator::TaggedSymbol
1649
+ ]
1650
+ )
1651
+ end
1652
+ def self.values
1653
+ end
1654
+ end
1655
+
1656
+ # Indicates whether a challenge is requested for this transaction.
1657
+ module RequestorChallengeIndicator
1658
+ extend Increase::Internal::Type::Enum
1659
+
1660
+ TaggedSymbol =
1661
+ T.type_alias do
1662
+ T.all(
1663
+ Symbol,
1664
+ Increase::CardPayment::Element::CardAuthentication::RequestorChallengeIndicator
1665
+ )
1666
+ end
1667
+ OrSymbol = T.type_alias { T.any(Symbol, String) }
1668
+
1669
+ # No preference.
1670
+ NO_PREFERENCE =
1671
+ T.let(
1672
+ :no_preference,
1673
+ Increase::CardPayment::Element::CardAuthentication::RequestorChallengeIndicator::TaggedSymbol
1674
+ )
1675
+
1676
+ # No challenge requested.
1677
+ NO_CHALLENGE_REQUESTED =
1678
+ T.let(
1679
+ :no_challenge_requested,
1680
+ Increase::CardPayment::Element::CardAuthentication::RequestorChallengeIndicator::TaggedSymbol
1681
+ )
1682
+
1683
+ # Challenge requested, 3DS Requestor preference.
1684
+ CHALLENGE_REQUESTED_3DS_REQUESTOR_PREFERENCE =
1685
+ T.let(
1686
+ :challenge_requested_3ds_requestor_preference,
1687
+ Increase::CardPayment::Element::CardAuthentication::RequestorChallengeIndicator::TaggedSymbol
1688
+ )
1689
+
1690
+ # Challenge requested, mandate.
1691
+ CHALLENGE_REQUESTED_MANDATE =
1692
+ T.let(
1693
+ :challenge_requested_mandate,
1694
+ Increase::CardPayment::Element::CardAuthentication::RequestorChallengeIndicator::TaggedSymbol
1695
+ )
1696
+
1697
+ # No challenge requested, transactional risk analysis already performed.
1698
+ NO_CHALLENGE_REQUESTED_TRANSACTIONAL_RISK_ANALYSIS_ALREADY_PERFORMED =
1699
+ T.let(
1700
+ :no_challenge_requested_transactional_risk_analysis_already_performed,
1701
+ Increase::CardPayment::Element::CardAuthentication::RequestorChallengeIndicator::TaggedSymbol
1702
+ )
1703
+
1704
+ # No challenge requested, data share only.
1705
+ NO_CHALLENGE_REQUESTED_DATA_SHARE_ONLY =
1706
+ T.let(
1707
+ :no_challenge_requested_data_share_only,
1708
+ Increase::CardPayment::Element::CardAuthentication::RequestorChallengeIndicator::TaggedSymbol
1709
+ )
1710
+
1711
+ # No challenge requested, strong consumer authentication already performed.
1712
+ NO_CHALLENGE_REQUESTED_STRONG_CONSUMER_AUTHENTICATION_ALREADY_PERFORMED =
1713
+ T.let(
1714
+ :no_challenge_requested_strong_consumer_authentication_already_performed,
1715
+ Increase::CardPayment::Element::CardAuthentication::RequestorChallengeIndicator::TaggedSymbol
1716
+ )
1717
+
1718
+ # No challenge requested, utilize whitelist exemption if no challenge required.
1719
+ NO_CHALLENGE_REQUESTED_UTILIZE_WHITELIST_EXEMPTION_IF_NO_CHALLENGE_REQUIRED =
1720
+ T.let(
1721
+ :no_challenge_requested_utilize_whitelist_exemption_if_no_challenge_required,
1722
+ Increase::CardPayment::Element::CardAuthentication::RequestorChallengeIndicator::TaggedSymbol
1723
+ )
1724
+
1725
+ # Challenge requested, whitelist prompt requested if challenge required.
1726
+ CHALLENGE_REQUESTED_WHITELIST_PROMPT_REQUESTED_IF_CHALLENGE_REQUIRED =
1727
+ T.let(
1728
+ :challenge_requested_whitelist_prompt_requested_if_challenge_required,
1729
+ Increase::CardPayment::Element::CardAuthentication::RequestorChallengeIndicator::TaggedSymbol
1730
+ )
1731
+
1732
+ sig do
1733
+ override.returns(
1734
+ T::Array[
1735
+ Increase::CardPayment::Element::CardAuthentication::RequestorChallengeIndicator::TaggedSymbol
1736
+ ]
1737
+ )
1738
+ end
1739
+ def self.values
1740
+ end
1741
+ end
1742
+
1524
1743
  # The status of the card authentication.
1525
1744
  module Status
1526
1745
  extend Increase::Internal::Type::Enum
@@ -234,6 +234,10 @@ module Increase
234
234
  purchase_amount: Integer?,
235
235
  purchase_currency: String?,
236
236
  real_time_decision_id: String?,
237
+ requestor_authentication_indicator: Increase::Models::CardPayment::Element::CardAuthentication::requestor_authentication_indicator?,
238
+ requestor_challenge_indicator: Increase::Models::CardPayment::Element::CardAuthentication::requestor_challenge_indicator?,
239
+ requestor_name: String,
240
+ requestor_url: String,
237
241
  status: Increase::Models::CardPayment::Element::CardAuthentication::status,
238
242
  type: Increase::Models::CardPayment::Element::CardAuthentication::type_
239
243
  }
@@ -289,6 +293,14 @@ module Increase
289
293
 
290
294
  attr_accessor real_time_decision_id: String?
291
295
 
296
+ attr_accessor requestor_authentication_indicator: Increase::Models::CardPayment::Element::CardAuthentication::requestor_authentication_indicator?
297
+
298
+ attr_accessor requestor_challenge_indicator: Increase::Models::CardPayment::Element::CardAuthentication::requestor_challenge_indicator?
299
+
300
+ attr_accessor requestor_name: String
301
+
302
+ attr_accessor requestor_url: String
303
+
292
304
  attr_accessor status: Increase::Models::CardPayment::Element::CardAuthentication::status
293
305
 
294
306
  attr_accessor type: Increase::Models::CardPayment::Element::CardAuthentication::type_
@@ -319,6 +331,10 @@ module Increase
319
331
  purchase_amount: Integer?,
320
332
  purchase_currency: String?,
321
333
  real_time_decision_id: String?,
334
+ requestor_authentication_indicator: Increase::Models::CardPayment::Element::CardAuthentication::requestor_authentication_indicator?,
335
+ requestor_challenge_indicator: Increase::Models::CardPayment::Element::CardAuthentication::requestor_challenge_indicator?,
336
+ requestor_name: String,
337
+ requestor_url: String,
322
338
  status: Increase::Models::CardPayment::Element::CardAuthentication::status,
323
339
  type: Increase::Models::CardPayment::Element::CardAuthentication::type_
324
340
  ) -> void
@@ -349,6 +365,10 @@ module Increase
349
365
  purchase_amount: Integer?,
350
366
  purchase_currency: String?,
351
367
  real_time_decision_id: String?,
368
+ requestor_authentication_indicator: Increase::Models::CardPayment::Element::CardAuthentication::requestor_authentication_indicator?,
369
+ requestor_challenge_indicator: Increase::Models::CardPayment::Element::CardAuthentication::requestor_challenge_indicator?,
370
+ requestor_name: String,
371
+ requestor_url: String,
352
372
  status: Increase::Models::CardPayment::Element::CardAuthentication::status,
353
373
  type: Increase::Models::CardPayment::Element::CardAuthentication::type_
354
374
  }
@@ -579,6 +599,86 @@ module Increase
579
599
  end
580
600
  end
581
601
 
602
+ type requestor_authentication_indicator =
603
+ :payment_transaction
604
+ | :recurring_transaction
605
+ | :installment_transaction
606
+ | :add_card
607
+ | :maintain_card
608
+ | :emv_token_cardholder_verification
609
+ | :billing_agreement
610
+
611
+ module RequestorAuthenticationIndicator
612
+ extend Increase::Internal::Type::Enum
613
+
614
+ # The authentication is for a payment transaction.
615
+ PAYMENT_TRANSACTION: :payment_transaction
616
+
617
+ # The authentication is for a recurring transaction.
618
+ RECURRING_TRANSACTION: :recurring_transaction
619
+
620
+ # The authentication is for an installment transaction.
621
+ INSTALLMENT_TRANSACTION: :installment_transaction
622
+
623
+ # The authentication is for adding a card.
624
+ ADD_CARD: :add_card
625
+
626
+ # The authentication is for maintaining a card.
627
+ MAINTAIN_CARD: :maintain_card
628
+
629
+ # The authentication is for EMV token cardholder verification.
630
+ EMV_TOKEN_CARDHOLDER_VERIFICATION: :emv_token_cardholder_verification
631
+
632
+ # The authentication is for a billing agreement.
633
+ BILLING_AGREEMENT: :billing_agreement
634
+
635
+ def self?.values: -> ::Array[Increase::Models::CardPayment::Element::CardAuthentication::requestor_authentication_indicator]
636
+ end
637
+
638
+ type requestor_challenge_indicator =
639
+ :no_preference
640
+ | :no_challenge_requested
641
+ | :challenge_requested_3ds_requestor_preference
642
+ | :challenge_requested_mandate
643
+ | :no_challenge_requested_transactional_risk_analysis_already_performed
644
+ | :no_challenge_requested_data_share_only
645
+ | :no_challenge_requested_strong_consumer_authentication_already_performed
646
+ | :no_challenge_requested_utilize_whitelist_exemption_if_no_challenge_required
647
+ | :challenge_requested_whitelist_prompt_requested_if_challenge_required
648
+
649
+ module RequestorChallengeIndicator
650
+ extend Increase::Internal::Type::Enum
651
+
652
+ # No preference.
653
+ NO_PREFERENCE: :no_preference
654
+
655
+ # No challenge requested.
656
+ NO_CHALLENGE_REQUESTED: :no_challenge_requested
657
+
658
+ # Challenge requested, 3DS Requestor preference.
659
+ CHALLENGE_REQUESTED_3DS_REQUESTOR_PREFERENCE: :challenge_requested_3ds_requestor_preference
660
+
661
+ # Challenge requested, mandate.
662
+ CHALLENGE_REQUESTED_MANDATE: :challenge_requested_mandate
663
+
664
+ # No challenge requested, transactional risk analysis already performed.
665
+ NO_CHALLENGE_REQUESTED_TRANSACTIONAL_RISK_ANALYSIS_ALREADY_PERFORMED: :no_challenge_requested_transactional_risk_analysis_already_performed
666
+
667
+ # No challenge requested, data share only.
668
+ NO_CHALLENGE_REQUESTED_DATA_SHARE_ONLY: :no_challenge_requested_data_share_only
669
+
670
+ # No challenge requested, strong consumer authentication already performed.
671
+ NO_CHALLENGE_REQUESTED_STRONG_CONSUMER_AUTHENTICATION_ALREADY_PERFORMED: :no_challenge_requested_strong_consumer_authentication_already_performed
672
+
673
+ # No challenge requested, utilize whitelist exemption if no challenge required.
674
+ NO_CHALLENGE_REQUESTED_UTILIZE_WHITELIST_EXEMPTION_IF_NO_CHALLENGE_REQUIRED: :no_challenge_requested_utilize_whitelist_exemption_if_no_challenge_required
675
+
676
+ # Challenge requested, whitelist prompt requested if challenge required.
677
+ CHALLENGE_REQUESTED_WHITELIST_PROMPT_REQUESTED_IF_CHALLENGE_REQUIRED: :challenge_requested_whitelist_prompt_requested_if_challenge_required
678
+
679
+ def self?.values: -> ::Array[Increase::Models::CardPayment::Element::CardAuthentication::requestor_challenge_indicator]
680
+ end
681
+
582
682
  type status =
583
683
  :denied
584
684
  | :authenticated_with_challenge
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.228.0
4
+ version: 1.229.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Increase