increase 1.210.0 → 1.211.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: 867d0e57bbd9462f134f01ee368e927d2ef47f98de9e185c146d4bac5ca03537
4
- data.tar.gz: 9bf4dcf6858c6c6bb742f1da67d373081fccf95e00ee421ef5a5b2b606f8196a
3
+ metadata.gz: f6a28279b2750919773c9c11a7351b66747a9cdfa425a55a4528b64de6363866
4
+ data.tar.gz: 6d2b984cee188afe22a223dcf862aa6e235629b9719433f2969407a45a37d29d
5
5
  SHA512:
6
- metadata.gz: 7a383fc41ccfee3bd411b086e1776b02014448192f1d109a2395ec0baa20acd17043b0f1edeb5500a9bbec6db5c914d5db67d50535838b574519c7e972be1c8d
7
- data.tar.gz: 30469ea7832ed792da43bcb8a67a1ce2f077dfa81776e5d867e10fc01c8f0fb4b6baecdec04dbb7a70a949c054c85ecf825a30291f52de7cbf43e34158077b25
6
+ metadata.gz: 75d1316f8e139743298dabfc4a13bbcbb5adb66dca48457f4a8609f4b12bdeb3764c93020ac79508d3af8d99a5f4dd4f92b74acf55e8a88909155f89258c676a
7
+ data.tar.gz: d123aef744f6b1e9720318f1047092a95ac5817c4864538deccca423547b7a68963289f8862f9d6435afeae38921659384600892c56271eaf21f1dc987f07668
data/CHANGELOG.md CHANGED
@@ -1,5 +1,18 @@
1
1
  # Changelog
2
2
 
3
+ ## 1.211.0 (2026-02-23)
4
+
5
+ Full Changelog: [v1.210.0...v1.211.0](https://github.com/Increase/increase-ruby/compare/v1.210.0...v1.211.0)
6
+
7
+ ### Features
8
+
9
+ * **api:** api update ([915d9cc](https://github.com/Increase/increase-ruby/commit/915d9ccf3b0ac96031d9dd60241ec7180317d9ad))
10
+
11
+
12
+ ### Chores
13
+
14
+ * update mock server docs ([2647d67](https://github.com/Increase/increase-ruby/commit/2647d67787d9d4db2b5cb543ceadaaed9014e11b))
15
+
3
16
  ## 1.210.0 (2026-02-18)
4
17
 
5
18
  Full Changelog: [v1.209.0...v1.210.0](https://github.com/Increase/increase-ruby/compare/v1.209.0...v1.210.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.210.0"
18
+ gem "increase", "~> 1.211.0"
19
19
  ```
20
20
 
21
21
  <!-- x-release-please-end -->
@@ -1503,7 +1503,21 @@ module Increase
1503
1503
  },
1504
1504
  nil?: true
1505
1505
 
1506
- # @!method initialize(electronic_commerce_indicator:, point_of_service_entry_mode:, stand_in_processing_reason:)
1506
+ # @!attribute terminal_entry_capability
1507
+ # The capability of the terminal being used to read the card. Shows whether a
1508
+ # terminal can e.g., accept chip cards or if it only supports magnetic stripe
1509
+ # reads. This reflects the highest capability of the terminal — for example, a
1510
+ # terminal that supports both chip and magnetic stripe will be identified as
1511
+ # chip-capable.
1512
+ #
1513
+ # @return [Symbol, Increase::Models::CardPayment::Element::CardAuthorization::NetworkDetails::Visa::TerminalEntryCapability, nil]
1514
+ required :terminal_entry_capability,
1515
+ enum: -> {
1516
+ Increase::CardPayment::Element::CardAuthorization::NetworkDetails::Visa::TerminalEntryCapability
1517
+ },
1518
+ nil?: true
1519
+
1520
+ # @!method initialize(electronic_commerce_indicator:, point_of_service_entry_mode:, stand_in_processing_reason:, terminal_entry_capability:)
1507
1521
  # Some parameter documentations has been truncated, see
1508
1522
  # {Increase::Models::CardPayment::Element::CardAuthorization::NetworkDetails::Visa}
1509
1523
  # for more details.
@@ -1515,6 +1529,8 @@ module Increase
1515
1529
  # @param point_of_service_entry_mode [Symbol, Increase::Models::CardPayment::Element::CardAuthorization::NetworkDetails::Visa::PointOfServiceEntryMode, nil] The method used to enter the cardholder's primary account number and card expira
1516
1530
  #
1517
1531
  # @param stand_in_processing_reason [Symbol, Increase::Models::CardPayment::Element::CardAuthorization::NetworkDetails::Visa::StandInProcessingReason, nil] Only present when `actioner: network`. Describes why a card authorization was ap
1532
+ #
1533
+ # @param terminal_entry_capability [Symbol, Increase::Models::CardPayment::Element::CardAuthorization::NetworkDetails::Visa::TerminalEntryCapability, nil] The capability of the terminal being used to read the card. Shows whether a term
1518
1534
 
1519
1535
  # For electronic commerce transactions, this identifies the level of security used
1520
1536
  # in obtaining the customer's payment credential. For mail or telephone order
@@ -1627,6 +1643,44 @@ module Increase
1627
1643
  # @!method self.values
1628
1644
  # @return [Array<Symbol>]
1629
1645
  end
1646
+
1647
+ # The capability of the terminal being used to read the card. Shows whether a
1648
+ # terminal can e.g., accept chip cards or if it only supports magnetic stripe
1649
+ # reads. This reflects the highest capability of the terminal — for example, a
1650
+ # terminal that supports both chip and magnetic stripe will be identified as
1651
+ # chip-capable.
1652
+ #
1653
+ # @see Increase::Models::CardPayment::Element::CardAuthorization::NetworkDetails::Visa#terminal_entry_capability
1654
+ module TerminalEntryCapability
1655
+ extend Increase::Internal::Type::Enum
1656
+
1657
+ # Unknown
1658
+ UNKNOWN = :unknown
1659
+
1660
+ # No terminal was used for this transaction.
1661
+ TERMINAL_NOT_USED = :terminal_not_used
1662
+
1663
+ # The terminal can only read magnetic stripes and does not have chip or contactless reading capability.
1664
+ MAGNETIC_STRIPE = :magnetic_stripe
1665
+
1666
+ # The terminal can only read barcodes.
1667
+ BARCODE = :barcode
1668
+
1669
+ # The terminal can only read cards via Optical Character Recognition.
1670
+ OPTICAL_CHARACTER_RECOGNITION = :optical_character_recognition
1671
+
1672
+ # The terminal supports contact chip cards and can also read the magnetic stripe. If contact chip is supported, this value is used regardless of whether contactless is also supported.
1673
+ CHIP_OR_CONTACTLESS = :chip_or_contactless
1674
+
1675
+ # The terminal supports contactless reads but does not support contact chip. Only used when the terminal lacks contact chip capability.
1676
+ CONTACTLESS_ONLY = :contactless_only
1677
+
1678
+ # The terminal has no card reading capability.
1679
+ NO_CAPABILITY = :no_capability
1680
+
1681
+ # @!method self.values
1682
+ # @return [Array<Symbol>]
1683
+ end
1630
1684
  end
1631
1685
  end
1632
1686
 
@@ -2734,7 +2788,21 @@ module Increase
2734
2788
  },
2735
2789
  nil?: true
2736
2790
 
2737
- # @!method initialize(electronic_commerce_indicator:, point_of_service_entry_mode:, stand_in_processing_reason:)
2791
+ # @!attribute terminal_entry_capability
2792
+ # The capability of the terminal being used to read the card. Shows whether a
2793
+ # terminal can e.g., accept chip cards or if it only supports magnetic stripe
2794
+ # reads. This reflects the highest capability of the terminal — for example, a
2795
+ # terminal that supports both chip and magnetic stripe will be identified as
2796
+ # chip-capable.
2797
+ #
2798
+ # @return [Symbol, Increase::Models::CardPayment::Element::CardBalanceInquiry::NetworkDetails::Visa::TerminalEntryCapability, nil]
2799
+ required :terminal_entry_capability,
2800
+ enum: -> {
2801
+ Increase::CardPayment::Element::CardBalanceInquiry::NetworkDetails::Visa::TerminalEntryCapability
2802
+ },
2803
+ nil?: true
2804
+
2805
+ # @!method initialize(electronic_commerce_indicator:, point_of_service_entry_mode:, stand_in_processing_reason:, terminal_entry_capability:)
2738
2806
  # Some parameter documentations has been truncated, see
2739
2807
  # {Increase::Models::CardPayment::Element::CardBalanceInquiry::NetworkDetails::Visa}
2740
2808
  # for more details.
@@ -2746,6 +2814,8 @@ module Increase
2746
2814
  # @param point_of_service_entry_mode [Symbol, Increase::Models::CardPayment::Element::CardBalanceInquiry::NetworkDetails::Visa::PointOfServiceEntryMode, nil] The method used to enter the cardholder's primary account number and card expira
2747
2815
  #
2748
2816
  # @param stand_in_processing_reason [Symbol, Increase::Models::CardPayment::Element::CardBalanceInquiry::NetworkDetails::Visa::StandInProcessingReason, nil] Only present when `actioner: network`. Describes why a card authorization was ap
2817
+ #
2818
+ # @param terminal_entry_capability [Symbol, Increase::Models::CardPayment::Element::CardBalanceInquiry::NetworkDetails::Visa::TerminalEntryCapability, nil] The capability of the terminal being used to read the card. Shows whether a term
2749
2819
 
2750
2820
  # For electronic commerce transactions, this identifies the level of security used
2751
2821
  # in obtaining the customer's payment credential. For mail or telephone order
@@ -2858,6 +2928,44 @@ module Increase
2858
2928
  # @!method self.values
2859
2929
  # @return [Array<Symbol>]
2860
2930
  end
2931
+
2932
+ # The capability of the terminal being used to read the card. Shows whether a
2933
+ # terminal can e.g., accept chip cards or if it only supports magnetic stripe
2934
+ # reads. This reflects the highest capability of the terminal — for example, a
2935
+ # terminal that supports both chip and magnetic stripe will be identified as
2936
+ # chip-capable.
2937
+ #
2938
+ # @see Increase::Models::CardPayment::Element::CardBalanceInquiry::NetworkDetails::Visa#terminal_entry_capability
2939
+ module TerminalEntryCapability
2940
+ extend Increase::Internal::Type::Enum
2941
+
2942
+ # Unknown
2943
+ UNKNOWN = :unknown
2944
+
2945
+ # No terminal was used for this transaction.
2946
+ TERMINAL_NOT_USED = :terminal_not_used
2947
+
2948
+ # The terminal can only read magnetic stripes and does not have chip or contactless reading capability.
2949
+ MAGNETIC_STRIPE = :magnetic_stripe
2950
+
2951
+ # The terminal can only read barcodes.
2952
+ BARCODE = :barcode
2953
+
2954
+ # The terminal can only read cards via Optical Character Recognition.
2955
+ OPTICAL_CHARACTER_RECOGNITION = :optical_character_recognition
2956
+
2957
+ # The terminal supports contact chip cards and can also read the magnetic stripe. If contact chip is supported, this value is used regardless of whether contactless is also supported.
2958
+ CHIP_OR_CONTACTLESS = :chip_or_contactless
2959
+
2960
+ # The terminal supports contactless reads but does not support contact chip. Only used when the terminal lacks contact chip capability.
2961
+ CONTACTLESS_ONLY = :contactless_only
2962
+
2963
+ # The terminal has no card reading capability.
2964
+ NO_CAPABILITY = :no_capability
2965
+
2966
+ # @!method self.values
2967
+ # @return [Array<Symbol>]
2968
+ end
2861
2969
  end
2862
2970
  end
2863
2971
 
@@ -3919,7 +4027,21 @@ module Increase
3919
4027
  },
3920
4028
  nil?: true
3921
4029
 
3922
- # @!method initialize(electronic_commerce_indicator:, point_of_service_entry_mode:, stand_in_processing_reason:)
4030
+ # @!attribute terminal_entry_capability
4031
+ # The capability of the terminal being used to read the card. Shows whether a
4032
+ # terminal can e.g., accept chip cards or if it only supports magnetic stripe
4033
+ # reads. This reflects the highest capability of the terminal — for example, a
4034
+ # terminal that supports both chip and magnetic stripe will be identified as
4035
+ # chip-capable.
4036
+ #
4037
+ # @return [Symbol, Increase::Models::CardPayment::Element::CardDecline::NetworkDetails::Visa::TerminalEntryCapability, nil]
4038
+ required :terminal_entry_capability,
4039
+ enum: -> {
4040
+ Increase::CardPayment::Element::CardDecline::NetworkDetails::Visa::TerminalEntryCapability
4041
+ },
4042
+ nil?: true
4043
+
4044
+ # @!method initialize(electronic_commerce_indicator:, point_of_service_entry_mode:, stand_in_processing_reason:, terminal_entry_capability:)
3923
4045
  # Some parameter documentations has been truncated, see
3924
4046
  # {Increase::Models::CardPayment::Element::CardDecline::NetworkDetails::Visa} for
3925
4047
  # more details.
@@ -3931,6 +4053,8 @@ module Increase
3931
4053
  # @param point_of_service_entry_mode [Symbol, Increase::Models::CardPayment::Element::CardDecline::NetworkDetails::Visa::PointOfServiceEntryMode, nil] The method used to enter the cardholder's primary account number and card expira
3932
4054
  #
3933
4055
  # @param stand_in_processing_reason [Symbol, Increase::Models::CardPayment::Element::CardDecline::NetworkDetails::Visa::StandInProcessingReason, nil] Only present when `actioner: network`. Describes why a card authorization was ap
4056
+ #
4057
+ # @param terminal_entry_capability [Symbol, Increase::Models::CardPayment::Element::CardDecline::NetworkDetails::Visa::TerminalEntryCapability, nil] The capability of the terminal being used to read the card. Shows whether a term
3934
4058
 
3935
4059
  # For electronic commerce transactions, this identifies the level of security used
3936
4060
  # in obtaining the customer's payment credential. For mail or telephone order
@@ -4043,6 +4167,44 @@ module Increase
4043
4167
  # @!method self.values
4044
4168
  # @return [Array<Symbol>]
4045
4169
  end
4170
+
4171
+ # The capability of the terminal being used to read the card. Shows whether a
4172
+ # terminal can e.g., accept chip cards or if it only supports magnetic stripe
4173
+ # reads. This reflects the highest capability of the terminal — for example, a
4174
+ # terminal that supports both chip and magnetic stripe will be identified as
4175
+ # chip-capable.
4176
+ #
4177
+ # @see Increase::Models::CardPayment::Element::CardDecline::NetworkDetails::Visa#terminal_entry_capability
4178
+ module TerminalEntryCapability
4179
+ extend Increase::Internal::Type::Enum
4180
+
4181
+ # Unknown
4182
+ UNKNOWN = :unknown
4183
+
4184
+ # No terminal was used for this transaction.
4185
+ TERMINAL_NOT_USED = :terminal_not_used
4186
+
4187
+ # The terminal can only read magnetic stripes and does not have chip or contactless reading capability.
4188
+ MAGNETIC_STRIPE = :magnetic_stripe
4189
+
4190
+ # The terminal can only read barcodes.
4191
+ BARCODE = :barcode
4192
+
4193
+ # The terminal can only read cards via Optical Character Recognition.
4194
+ OPTICAL_CHARACTER_RECOGNITION = :optical_character_recognition
4195
+
4196
+ # The terminal supports contact chip cards and can also read the magnetic stripe. If contact chip is supported, this value is used regardless of whether contactless is also supported.
4197
+ CHIP_OR_CONTACTLESS = :chip_or_contactless
4198
+
4199
+ # The terminal supports contactless reads but does not support contact chip. Only used when the terminal lacks contact chip capability.
4200
+ CONTACTLESS_ONLY = :contactless_only
4201
+
4202
+ # The terminal has no card reading capability.
4203
+ NO_CAPABILITY = :no_capability
4204
+
4205
+ # @!method self.values
4206
+ # @return [Array<Symbol>]
4207
+ end
4046
4208
  end
4047
4209
  end
4048
4210
 
@@ -5213,7 +5375,21 @@ module Increase
5213
5375
  },
5214
5376
  nil?: true
5215
5377
 
5216
- # @!method initialize(electronic_commerce_indicator:, point_of_service_entry_mode:, stand_in_processing_reason:)
5378
+ # @!attribute terminal_entry_capability
5379
+ # The capability of the terminal being used to read the card. Shows whether a
5380
+ # terminal can e.g., accept chip cards or if it only supports magnetic stripe
5381
+ # reads. This reflects the highest capability of the terminal — for example, a
5382
+ # terminal that supports both chip and magnetic stripe will be identified as
5383
+ # chip-capable.
5384
+ #
5385
+ # @return [Symbol, Increase::Models::CardPayment::Element::CardFinancial::NetworkDetails::Visa::TerminalEntryCapability, nil]
5386
+ required :terminal_entry_capability,
5387
+ enum: -> {
5388
+ Increase::CardPayment::Element::CardFinancial::NetworkDetails::Visa::TerminalEntryCapability
5389
+ },
5390
+ nil?: true
5391
+
5392
+ # @!method initialize(electronic_commerce_indicator:, point_of_service_entry_mode:, stand_in_processing_reason:, terminal_entry_capability:)
5217
5393
  # Some parameter documentations has been truncated, see
5218
5394
  # {Increase::Models::CardPayment::Element::CardFinancial::NetworkDetails::Visa}
5219
5395
  # for more details.
@@ -5225,6 +5401,8 @@ module Increase
5225
5401
  # @param point_of_service_entry_mode [Symbol, Increase::Models::CardPayment::Element::CardFinancial::NetworkDetails::Visa::PointOfServiceEntryMode, nil] The method used to enter the cardholder's primary account number and card expira
5226
5402
  #
5227
5403
  # @param stand_in_processing_reason [Symbol, Increase::Models::CardPayment::Element::CardFinancial::NetworkDetails::Visa::StandInProcessingReason, nil] Only present when `actioner: network`. Describes why a card authorization was ap
5404
+ #
5405
+ # @param terminal_entry_capability [Symbol, Increase::Models::CardPayment::Element::CardFinancial::NetworkDetails::Visa::TerminalEntryCapability, nil] The capability of the terminal being used to read the card. Shows whether a term
5228
5406
 
5229
5407
  # For electronic commerce transactions, this identifies the level of security used
5230
5408
  # in obtaining the customer's payment credential. For mail or telephone order
@@ -5337,6 +5515,44 @@ module Increase
5337
5515
  # @!method self.values
5338
5516
  # @return [Array<Symbol>]
5339
5517
  end
5518
+
5519
+ # The capability of the terminal being used to read the card. Shows whether a
5520
+ # terminal can e.g., accept chip cards or if it only supports magnetic stripe
5521
+ # reads. This reflects the highest capability of the terminal — for example, a
5522
+ # terminal that supports both chip and magnetic stripe will be identified as
5523
+ # chip-capable.
5524
+ #
5525
+ # @see Increase::Models::CardPayment::Element::CardFinancial::NetworkDetails::Visa#terminal_entry_capability
5526
+ module TerminalEntryCapability
5527
+ extend Increase::Internal::Type::Enum
5528
+
5529
+ # Unknown
5530
+ UNKNOWN = :unknown
5531
+
5532
+ # No terminal was used for this transaction.
5533
+ TERMINAL_NOT_USED = :terminal_not_used
5534
+
5535
+ # The terminal can only read magnetic stripes and does not have chip or contactless reading capability.
5536
+ MAGNETIC_STRIPE = :magnetic_stripe
5537
+
5538
+ # The terminal can only read barcodes.
5539
+ BARCODE = :barcode
5540
+
5541
+ # The terminal can only read cards via Optical Character Recognition.
5542
+ OPTICAL_CHARACTER_RECOGNITION = :optical_character_recognition
5543
+
5544
+ # The terminal supports contact chip cards and can also read the magnetic stripe. If contact chip is supported, this value is used regardless of whether contactless is also supported.
5545
+ CHIP_OR_CONTACTLESS = :chip_or_contactless
5546
+
5547
+ # The terminal supports contactless reads but does not support contact chip. Only used when the terminal lacks contact chip capability.
5548
+ CONTACTLESS_ONLY = :contactless_only
5549
+
5550
+ # The terminal has no card reading capability.
5551
+ NO_CAPABILITY = :no_capability
5552
+
5553
+ # @!method self.values
5554
+ # @return [Array<Symbol>]
5555
+ end
5340
5556
  end
5341
5557
  end
5342
5558
 
@@ -10202,7 +10418,21 @@ module Increase
10202
10418
  },
10203
10419
  nil?: true
10204
10420
 
10205
- # @!method initialize(electronic_commerce_indicator:, point_of_service_entry_mode:, stand_in_processing_reason:)
10421
+ # @!attribute terminal_entry_capability
10422
+ # The capability of the terminal being used to read the card. Shows whether a
10423
+ # terminal can e.g., accept chip cards or if it only supports magnetic stripe
10424
+ # reads. This reflects the highest capability of the terminal — for example, a
10425
+ # terminal that supports both chip and magnetic stripe will be identified as
10426
+ # chip-capable.
10427
+ #
10428
+ # @return [Symbol, Increase::Models::CardPayment::Element::CardValidation::NetworkDetails::Visa::TerminalEntryCapability, nil]
10429
+ required :terminal_entry_capability,
10430
+ enum: -> {
10431
+ Increase::CardPayment::Element::CardValidation::NetworkDetails::Visa::TerminalEntryCapability
10432
+ },
10433
+ nil?: true
10434
+
10435
+ # @!method initialize(electronic_commerce_indicator:, point_of_service_entry_mode:, stand_in_processing_reason:, terminal_entry_capability:)
10206
10436
  # Some parameter documentations has been truncated, see
10207
10437
  # {Increase::Models::CardPayment::Element::CardValidation::NetworkDetails::Visa}
10208
10438
  # for more details.
@@ -10214,6 +10444,8 @@ module Increase
10214
10444
  # @param point_of_service_entry_mode [Symbol, Increase::Models::CardPayment::Element::CardValidation::NetworkDetails::Visa::PointOfServiceEntryMode, nil] The method used to enter the cardholder's primary account number and card expira
10215
10445
  #
10216
10446
  # @param stand_in_processing_reason [Symbol, Increase::Models::CardPayment::Element::CardValidation::NetworkDetails::Visa::StandInProcessingReason, nil] Only present when `actioner: network`. Describes why a card authorization was ap
10447
+ #
10448
+ # @param terminal_entry_capability [Symbol, Increase::Models::CardPayment::Element::CardValidation::NetworkDetails::Visa::TerminalEntryCapability, nil] The capability of the terminal being used to read the card. Shows whether a term
10217
10449
 
10218
10450
  # For electronic commerce transactions, this identifies the level of security used
10219
10451
  # in obtaining the customer's payment credential. For mail or telephone order
@@ -10326,6 +10558,44 @@ module Increase
10326
10558
  # @!method self.values
10327
10559
  # @return [Array<Symbol>]
10328
10560
  end
10561
+
10562
+ # The capability of the terminal being used to read the card. Shows whether a
10563
+ # terminal can e.g., accept chip cards or if it only supports magnetic stripe
10564
+ # reads. This reflects the highest capability of the terminal — for example, a
10565
+ # terminal that supports both chip and magnetic stripe will be identified as
10566
+ # chip-capable.
10567
+ #
10568
+ # @see Increase::Models::CardPayment::Element::CardValidation::NetworkDetails::Visa#terminal_entry_capability
10569
+ module TerminalEntryCapability
10570
+ extend Increase::Internal::Type::Enum
10571
+
10572
+ # Unknown
10573
+ UNKNOWN = :unknown
10574
+
10575
+ # No terminal was used for this transaction.
10576
+ TERMINAL_NOT_USED = :terminal_not_used
10577
+
10578
+ # The terminal can only read magnetic stripes and does not have chip or contactless reading capability.
10579
+ MAGNETIC_STRIPE = :magnetic_stripe
10580
+
10581
+ # The terminal can only read barcodes.
10582
+ BARCODE = :barcode
10583
+
10584
+ # The terminal can only read cards via Optical Character Recognition.
10585
+ OPTICAL_CHARACTER_RECOGNITION = :optical_character_recognition
10586
+
10587
+ # The terminal supports contact chip cards and can also read the magnetic stripe. If contact chip is supported, this value is used regardless of whether contactless is also supported.
10588
+ CHIP_OR_CONTACTLESS = :chip_or_contactless
10589
+
10590
+ # The terminal supports contactless reads but does not support contact chip. Only used when the terminal lacks contact chip capability.
10591
+ CONTACTLESS_ONLY = :contactless_only
10592
+
10593
+ # The terminal has no card reading capability.
10594
+ NO_CAPABILITY = :no_capability
10595
+
10596
+ # @!method self.values
10597
+ # @return [Array<Symbol>]
10598
+ end
10329
10599
  end
10330
10600
  end
10331
10601
 
@@ -1270,7 +1270,21 @@ module Increase
1270
1270
  },
1271
1271
  nil?: true
1272
1272
 
1273
- # @!method initialize(electronic_commerce_indicator:, point_of_service_entry_mode:, stand_in_processing_reason:)
1273
+ # @!attribute terminal_entry_capability
1274
+ # The capability of the terminal being used to read the card. Shows whether a
1275
+ # terminal can e.g., accept chip cards or if it only supports magnetic stripe
1276
+ # reads. This reflects the highest capability of the terminal — for example, a
1277
+ # terminal that supports both chip and magnetic stripe will be identified as
1278
+ # chip-capable.
1279
+ #
1280
+ # @return [Symbol, Increase::Models::DeclinedTransaction::Source::CardDecline::NetworkDetails::Visa::TerminalEntryCapability, nil]
1281
+ required :terminal_entry_capability,
1282
+ enum: -> {
1283
+ Increase::DeclinedTransaction::Source::CardDecline::NetworkDetails::Visa::TerminalEntryCapability
1284
+ },
1285
+ nil?: true
1286
+
1287
+ # @!method initialize(electronic_commerce_indicator:, point_of_service_entry_mode:, stand_in_processing_reason:, terminal_entry_capability:)
1274
1288
  # Some parameter documentations has been truncated, see
1275
1289
  # {Increase::Models::DeclinedTransaction::Source::CardDecline::NetworkDetails::Visa}
1276
1290
  # for more details.
@@ -1282,6 +1296,8 @@ module Increase
1282
1296
  # @param point_of_service_entry_mode [Symbol, Increase::Models::DeclinedTransaction::Source::CardDecline::NetworkDetails::Visa::PointOfServiceEntryMode, nil] The method used to enter the cardholder's primary account number and card expira
1283
1297
  #
1284
1298
  # @param stand_in_processing_reason [Symbol, Increase::Models::DeclinedTransaction::Source::CardDecline::NetworkDetails::Visa::StandInProcessingReason, nil] Only present when `actioner: network`. Describes why a card authorization was ap
1299
+ #
1300
+ # @param terminal_entry_capability [Symbol, Increase::Models::DeclinedTransaction::Source::CardDecline::NetworkDetails::Visa::TerminalEntryCapability, nil] The capability of the terminal being used to read the card. Shows whether a term
1285
1301
 
1286
1302
  # For electronic commerce transactions, this identifies the level of security used
1287
1303
  # in obtaining the customer's payment credential. For mail or telephone order
@@ -1394,6 +1410,44 @@ module Increase
1394
1410
  # @!method self.values
1395
1411
  # @return [Array<Symbol>]
1396
1412
  end
1413
+
1414
+ # The capability of the terminal being used to read the card. Shows whether a
1415
+ # terminal can e.g., accept chip cards or if it only supports magnetic stripe
1416
+ # reads. This reflects the highest capability of the terminal — for example, a
1417
+ # terminal that supports both chip and magnetic stripe will be identified as
1418
+ # chip-capable.
1419
+ #
1420
+ # @see Increase::Models::DeclinedTransaction::Source::CardDecline::NetworkDetails::Visa#terminal_entry_capability
1421
+ module TerminalEntryCapability
1422
+ extend Increase::Internal::Type::Enum
1423
+
1424
+ # Unknown
1425
+ UNKNOWN = :unknown
1426
+
1427
+ # No terminal was used for this transaction.
1428
+ TERMINAL_NOT_USED = :terminal_not_used
1429
+
1430
+ # The terminal can only read magnetic stripes and does not have chip or contactless reading capability.
1431
+ MAGNETIC_STRIPE = :magnetic_stripe
1432
+
1433
+ # The terminal can only read barcodes.
1434
+ BARCODE = :barcode
1435
+
1436
+ # The terminal can only read cards via Optical Character Recognition.
1437
+ OPTICAL_CHARACTER_RECOGNITION = :optical_character_recognition
1438
+
1439
+ # The terminal supports contact chip cards and can also read the magnetic stripe. If contact chip is supported, this value is used regardless of whether contactless is also supported.
1440
+ CHIP_OR_CONTACTLESS = :chip_or_contactless
1441
+
1442
+ # The terminal supports contactless reads but does not support contact chip. Only used when the terminal lacks contact chip capability.
1443
+ CONTACTLESS_ONLY = :contactless_only
1444
+
1445
+ # The terminal has no card reading capability.
1446
+ NO_CAPABILITY = :no_capability
1447
+
1448
+ # @!method self.values
1449
+ # @return [Array<Symbol>]
1450
+ end
1397
1451
  end
1398
1452
  end
1399
1453
 
@@ -1394,7 +1394,21 @@ module Increase
1394
1394
  },
1395
1395
  nil?: true
1396
1396
 
1397
- # @!method initialize(electronic_commerce_indicator:, point_of_service_entry_mode:, stand_in_processing_reason:)
1397
+ # @!attribute terminal_entry_capability
1398
+ # The capability of the terminal being used to read the card. Shows whether a
1399
+ # terminal can e.g., accept chip cards or if it only supports magnetic stripe
1400
+ # reads. This reflects the highest capability of the terminal — for example, a
1401
+ # terminal that supports both chip and magnetic stripe will be identified as
1402
+ # chip-capable.
1403
+ #
1404
+ # @return [Symbol, Increase::Models::PendingTransaction::Source::CardAuthorization::NetworkDetails::Visa::TerminalEntryCapability, nil]
1405
+ required :terminal_entry_capability,
1406
+ enum: -> {
1407
+ Increase::PendingTransaction::Source::CardAuthorization::NetworkDetails::Visa::TerminalEntryCapability
1408
+ },
1409
+ nil?: true
1410
+
1411
+ # @!method initialize(electronic_commerce_indicator:, point_of_service_entry_mode:, stand_in_processing_reason:, terminal_entry_capability:)
1398
1412
  # Some parameter documentations has been truncated, see
1399
1413
  # {Increase::Models::PendingTransaction::Source::CardAuthorization::NetworkDetails::Visa}
1400
1414
  # for more details.
@@ -1406,6 +1420,8 @@ module Increase
1406
1420
  # @param point_of_service_entry_mode [Symbol, Increase::Models::PendingTransaction::Source::CardAuthorization::NetworkDetails::Visa::PointOfServiceEntryMode, nil] The method used to enter the cardholder's primary account number and card expira
1407
1421
  #
1408
1422
  # @param stand_in_processing_reason [Symbol, Increase::Models::PendingTransaction::Source::CardAuthorization::NetworkDetails::Visa::StandInProcessingReason, nil] Only present when `actioner: network`. Describes why a card authorization was ap
1423
+ #
1424
+ # @param terminal_entry_capability [Symbol, Increase::Models::PendingTransaction::Source::CardAuthorization::NetworkDetails::Visa::TerminalEntryCapability, nil] The capability of the terminal being used to read the card. Shows whether a term
1409
1425
 
1410
1426
  # For electronic commerce transactions, this identifies the level of security used
1411
1427
  # in obtaining the customer's payment credential. For mail or telephone order
@@ -1518,6 +1534,44 @@ module Increase
1518
1534
  # @!method self.values
1519
1535
  # @return [Array<Symbol>]
1520
1536
  end
1537
+
1538
+ # The capability of the terminal being used to read the card. Shows whether a
1539
+ # terminal can e.g., accept chip cards or if it only supports magnetic stripe
1540
+ # reads. This reflects the highest capability of the terminal — for example, a
1541
+ # terminal that supports both chip and magnetic stripe will be identified as
1542
+ # chip-capable.
1543
+ #
1544
+ # @see Increase::Models::PendingTransaction::Source::CardAuthorization::NetworkDetails::Visa#terminal_entry_capability
1545
+ module TerminalEntryCapability
1546
+ extend Increase::Internal::Type::Enum
1547
+
1548
+ # Unknown
1549
+ UNKNOWN = :unknown
1550
+
1551
+ # No terminal was used for this transaction.
1552
+ TERMINAL_NOT_USED = :terminal_not_used
1553
+
1554
+ # The terminal can only read magnetic stripes and does not have chip or contactless reading capability.
1555
+ MAGNETIC_STRIPE = :magnetic_stripe
1556
+
1557
+ # The terminal can only read barcodes.
1558
+ BARCODE = :barcode
1559
+
1560
+ # The terminal can only read cards via Optical Character Recognition.
1561
+ OPTICAL_CHARACTER_RECOGNITION = :optical_character_recognition
1562
+
1563
+ # The terminal supports contact chip cards and can also read the magnetic stripe. If contact chip is supported, this value is used regardless of whether contactless is also supported.
1564
+ CHIP_OR_CONTACTLESS = :chip_or_contactless
1565
+
1566
+ # The terminal supports contactless reads but does not support contact chip. Only used when the terminal lacks contact chip capability.
1567
+ CONTACTLESS_ONLY = :contactless_only
1568
+
1569
+ # The terminal has no card reading capability.
1570
+ NO_CAPABILITY = :no_capability
1571
+
1572
+ # @!method self.values
1573
+ # @return [Array<Symbol>]
1574
+ end
1521
1575
  end
1522
1576
  end
1523
1577