increase 1.107.1 → 1.109.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 +16 -0
- data/README.md +1 -1
- data/lib/increase/models/card_dispute.rb +3 -0
- data/lib/increase/models/card_payment.rb +131 -11
- data/lib/increase/models/declined_transaction.rb +22 -2
- data/lib/increase/models/pending_transaction.rb +22 -2
- data/lib/increase/models/real_time_decision.rb +22 -2
- data/lib/increase/models/transaction.rb +48 -4
- data/lib/increase/version.rb +1 -1
- data/rbi/increase/models/card_dispute.rbi +3 -0
- data/rbi/increase/models/card_payment.rbi +160 -0
- data/rbi/increase/models/declined_transaction.rbi +25 -0
- data/rbi/increase/models/pending_transaction.rbi +25 -0
- data/rbi/increase/models/real_time_decision.rbi +25 -0
- data/rbi/increase/models/transaction.rbi +59 -0
- data/sig/increase/models/card_dispute.rbs +4 -1
- data/sig/increase/models/card_payment.rbs +87 -8
- data/sig/increase/models/declined_transaction.rbs +14 -1
- data/sig/increase/models/pending_transaction.rbs +14 -1
- data/sig/increase/models/real_time_decision.rbs +14 -1
- data/sig/increase/models/transaction.rbs +32 -3
- metadata +1 -1
| @@ -812,25 +812,30 @@ module Increase | |
| 812 812 | 
             
                      type network_details =
         | 
| 813 813 | 
             
                        {
         | 
| 814 814 | 
             
                          category: Increase::Models::CardPayment::Element::CardAuthorization::NetworkDetails::category,
         | 
| 815 | 
            +
                          pulse: top?,
         | 
| 815 816 | 
             
                          visa: Increase::CardPayment::Element::CardAuthorization::NetworkDetails::Visa?
         | 
| 816 817 | 
             
                        }
         | 
| 817 818 |  | 
| 818 819 | 
             
                      class NetworkDetails < Increase::Internal::Type::BaseModel
         | 
| 819 820 | 
             
                        attr_accessor category: Increase::Models::CardPayment::Element::CardAuthorization::NetworkDetails::category
         | 
| 820 821 |  | 
| 822 | 
            +
                        attr_accessor pulse: top?
         | 
| 823 | 
            +
             | 
| 821 824 | 
             
                        attr_accessor visa: Increase::CardPayment::Element::CardAuthorization::NetworkDetails::Visa?
         | 
| 822 825 |  | 
| 823 826 | 
             
                        def initialize: (
         | 
| 824 827 | 
             
                          category: Increase::Models::CardPayment::Element::CardAuthorization::NetworkDetails::category,
         | 
| 828 | 
            +
                          pulse: top?,
         | 
| 825 829 | 
             
                          visa: Increase::CardPayment::Element::CardAuthorization::NetworkDetails::Visa?
         | 
| 826 830 | 
             
                        ) -> void
         | 
| 827 831 |  | 
| 828 832 | 
             
                        def to_hash: -> {
         | 
| 829 833 | 
             
                          category: Increase::Models::CardPayment::Element::CardAuthorization::NetworkDetails::category,
         | 
| 834 | 
            +
                          pulse: top?,
         | 
| 830 835 | 
             
                          visa: Increase::CardPayment::Element::CardAuthorization::NetworkDetails::Visa?
         | 
| 831 836 | 
             
                        }
         | 
| 832 837 |  | 
| 833 | 
            -
                        type category = :visa
         | 
| 838 | 
            +
                        type category = :visa | :pulse
         | 
| 834 839 |  | 
| 835 840 | 
             
                        module Category
         | 
| 836 841 | 
             
                          extend Increase::Internal::Type::Enum
         | 
| @@ -838,6 +843,9 @@ module Increase | |
| 838 843 | 
             
                          # Visa
         | 
| 839 844 | 
             
                          VISA: :visa
         | 
| 840 845 |  | 
| 846 | 
            +
                          # Pulse
         | 
| 847 | 
            +
                          PULSE: :pulse
         | 
| 848 | 
            +
             | 
| 841 849 | 
             
                          def self?.values: -> ::Array[Increase::Models::CardPayment::Element::CardAuthorization::NetworkDetails::category]
         | 
| 842 850 | 
             
                        end
         | 
| 843 851 |  | 
| @@ -995,12 +1003,15 @@ module Increase | |
| 995 1003 |  | 
| 996 1004 | 
             
                      type network_identifiers =
         | 
| 997 1005 | 
             
                        {
         | 
| 1006 | 
            +
                          authorization_identification_response: String?,
         | 
| 998 1007 | 
             
                          retrieval_reference_number: String?,
         | 
| 999 1008 | 
             
                          trace_number: String?,
         | 
| 1000 1009 | 
             
                          transaction_id: String?
         | 
| 1001 1010 | 
             
                        }
         | 
| 1002 1011 |  | 
| 1003 1012 | 
             
                      class NetworkIdentifiers < Increase::Internal::Type::BaseModel
         | 
| 1013 | 
            +
                        attr_accessor authorization_identification_response: String?
         | 
| 1014 | 
            +
             | 
| 1004 1015 | 
             
                        attr_accessor retrieval_reference_number: String?
         | 
| 1005 1016 |  | 
| 1006 1017 | 
             
                        attr_accessor trace_number: String?
         | 
| @@ -1008,12 +1019,14 @@ module Increase | |
| 1008 1019 | 
             
                        attr_accessor transaction_id: String?
         | 
| 1009 1020 |  | 
| 1010 1021 | 
             
                        def initialize: (
         | 
| 1022 | 
            +
                          authorization_identification_response: String?,
         | 
| 1011 1023 | 
             
                          retrieval_reference_number: String?,
         | 
| 1012 1024 | 
             
                          trace_number: String?,
         | 
| 1013 1025 | 
             
                          transaction_id: String?
         | 
| 1014 1026 | 
             
                        ) -> void
         | 
| 1015 1027 |  | 
| 1016 1028 | 
             
                        def to_hash: -> {
         | 
| 1029 | 
            +
                          authorization_identification_response: String?,
         | 
| 1017 1030 | 
             
                          retrieval_reference_number: String?,
         | 
| 1018 1031 | 
             
                          trace_number: String?,
         | 
| 1019 1032 | 
             
                          transaction_id: String?
         | 
| @@ -1267,7 +1280,7 @@ module Increase | |
| 1267 1280 | 
             
                        def self?.values: -> ::Array[Increase::Models::CardPayment::Element::CardAuthorizationExpiration::currency]
         | 
| 1268 1281 | 
             
                      end
         | 
| 1269 1282 |  | 
| 1270 | 
            -
                      type network = :visa
         | 
| 1283 | 
            +
                      type network = :visa | :pulse
         | 
| 1271 1284 |  | 
| 1272 1285 | 
             
                      module Network
         | 
| 1273 1286 | 
             
                        extend Increase::Internal::Type::Enum
         | 
| @@ -1275,6 +1288,9 @@ module Increase | |
| 1275 1288 | 
             
                        # Visa
         | 
| 1276 1289 | 
             
                        VISA: :visa
         | 
| 1277 1290 |  | 
| 1291 | 
            +
                        # Pulse
         | 
| 1292 | 
            +
                        PULSE: :pulse
         | 
| 1293 | 
            +
             | 
| 1278 1294 | 
             
                        def self?.values: -> ::Array[Increase::Models::CardPayment::Element::CardAuthorizationExpiration::network]
         | 
| 1279 1295 | 
             
                      end
         | 
| 1280 1296 |  | 
| @@ -1670,25 +1686,30 @@ module Increase | |
| 1670 1686 | 
             
                      type network_details =
         | 
| 1671 1687 | 
             
                        {
         | 
| 1672 1688 | 
             
                          category: Increase::Models::CardPayment::Element::CardDecline::NetworkDetails::category,
         | 
| 1689 | 
            +
                          pulse: top?,
         | 
| 1673 1690 | 
             
                          visa: Increase::CardPayment::Element::CardDecline::NetworkDetails::Visa?
         | 
| 1674 1691 | 
             
                        }
         | 
| 1675 1692 |  | 
| 1676 1693 | 
             
                      class NetworkDetails < Increase::Internal::Type::BaseModel
         | 
| 1677 1694 | 
             
                        attr_accessor category: Increase::Models::CardPayment::Element::CardDecline::NetworkDetails::category
         | 
| 1678 1695 |  | 
| 1696 | 
            +
                        attr_accessor pulse: top?
         | 
| 1697 | 
            +
             | 
| 1679 1698 | 
             
                        attr_accessor visa: Increase::CardPayment::Element::CardDecline::NetworkDetails::Visa?
         | 
| 1680 1699 |  | 
| 1681 1700 | 
             
                        def initialize: (
         | 
| 1682 1701 | 
             
                          category: Increase::Models::CardPayment::Element::CardDecline::NetworkDetails::category,
         | 
| 1702 | 
            +
                          pulse: top?,
         | 
| 1683 1703 | 
             
                          visa: Increase::CardPayment::Element::CardDecline::NetworkDetails::Visa?
         | 
| 1684 1704 | 
             
                        ) -> void
         | 
| 1685 1705 |  | 
| 1686 1706 | 
             
                        def to_hash: -> {
         | 
| 1687 1707 | 
             
                          category: Increase::Models::CardPayment::Element::CardDecline::NetworkDetails::category,
         | 
| 1708 | 
            +
                          pulse: top?,
         | 
| 1688 1709 | 
             
                          visa: Increase::CardPayment::Element::CardDecline::NetworkDetails::Visa?
         | 
| 1689 1710 | 
             
                        }
         | 
| 1690 1711 |  | 
| 1691 | 
            -
                        type category = :visa
         | 
| 1712 | 
            +
                        type category = :visa | :pulse
         | 
| 1692 1713 |  | 
| 1693 1714 | 
             
                        module Category
         | 
| 1694 1715 | 
             
                          extend Increase::Internal::Type::Enum
         | 
| @@ -1696,6 +1717,9 @@ module Increase | |
| 1696 1717 | 
             
                          # Visa
         | 
| 1697 1718 | 
             
                          VISA: :visa
         | 
| 1698 1719 |  | 
| 1720 | 
            +
                          # Pulse
         | 
| 1721 | 
            +
                          PULSE: :pulse
         | 
| 1722 | 
            +
             | 
| 1699 1723 | 
             
                          def self?.values: -> ::Array[Increase::Models::CardPayment::Element::CardDecline::NetworkDetails::category]
         | 
| 1700 1724 | 
             
                        end
         | 
| 1701 1725 |  | 
| @@ -1853,12 +1877,15 @@ module Increase | |
| 1853 1877 |  | 
| 1854 1878 | 
             
                      type network_identifiers =
         | 
| 1855 1879 | 
             
                        {
         | 
| 1880 | 
            +
                          authorization_identification_response: String?,
         | 
| 1856 1881 | 
             
                          retrieval_reference_number: String?,
         | 
| 1857 1882 | 
             
                          trace_number: String?,
         | 
| 1858 1883 | 
             
                          transaction_id: String?
         | 
| 1859 1884 | 
             
                        }
         | 
| 1860 1885 |  | 
| 1861 1886 | 
             
                      class NetworkIdentifiers < Increase::Internal::Type::BaseModel
         | 
| 1887 | 
            +
                        attr_accessor authorization_identification_response: String?
         | 
| 1888 | 
            +
             | 
| 1862 1889 | 
             
                        attr_accessor retrieval_reference_number: String?
         | 
| 1863 1890 |  | 
| 1864 1891 | 
             
                        attr_accessor trace_number: String?
         | 
| @@ -1866,12 +1893,14 @@ module Increase | |
| 1866 1893 | 
             
                        attr_accessor transaction_id: String?
         | 
| 1867 1894 |  | 
| 1868 1895 | 
             
                        def initialize: (
         | 
| 1896 | 
            +
                          authorization_identification_response: String?,
         | 
| 1869 1897 | 
             
                          retrieval_reference_number: String?,
         | 
| 1870 1898 | 
             
                          trace_number: String?,
         | 
| 1871 1899 | 
             
                          transaction_id: String?
         | 
| 1872 1900 | 
             
                        ) -> void
         | 
| 1873 1901 |  | 
| 1874 1902 | 
             
                        def to_hash: -> {
         | 
| 1903 | 
            +
                          authorization_identification_response: String?,
         | 
| 1875 1904 | 
             
                          retrieval_reference_number: String?,
         | 
| 1876 1905 | 
             
                          trace_number: String?,
         | 
| 1877 1906 | 
             
                          transaction_id: String?
         | 
| @@ -2245,7 +2274,7 @@ module Increase | |
| 2245 2274 | 
             
                        def self?.values: -> ::Array[Increase::Models::CardPayment::Element::CardFuelConfirmation::currency]
         | 
| 2246 2275 | 
             
                      end
         | 
| 2247 2276 |  | 
| 2248 | 
            -
                      type network = :visa
         | 
| 2277 | 
            +
                      type network = :visa | :pulse
         | 
| 2249 2278 |  | 
| 2250 2279 | 
             
                      module Network
         | 
| 2251 2280 | 
             
                        extend Increase::Internal::Type::Enum
         | 
| @@ -2253,17 +2282,23 @@ module Increase | |
| 2253 2282 | 
             
                        # Visa
         | 
| 2254 2283 | 
             
                        VISA: :visa
         | 
| 2255 2284 |  | 
| 2285 | 
            +
                        # Pulse
         | 
| 2286 | 
            +
                        PULSE: :pulse
         | 
| 2287 | 
            +
             | 
| 2256 2288 | 
             
                        def self?.values: -> ::Array[Increase::Models::CardPayment::Element::CardFuelConfirmation::network]
         | 
| 2257 2289 | 
             
                      end
         | 
| 2258 2290 |  | 
| 2259 2291 | 
             
                      type network_identifiers =
         | 
| 2260 2292 | 
             
                        {
         | 
| 2293 | 
            +
                          authorization_identification_response: String?,
         | 
| 2261 2294 | 
             
                          retrieval_reference_number: String?,
         | 
| 2262 2295 | 
             
                          trace_number: String?,
         | 
| 2263 2296 | 
             
                          transaction_id: String?
         | 
| 2264 2297 | 
             
                        }
         | 
| 2265 2298 |  | 
| 2266 2299 | 
             
                      class NetworkIdentifiers < Increase::Internal::Type::BaseModel
         | 
| 2300 | 
            +
                        attr_accessor authorization_identification_response: String?
         | 
| 2301 | 
            +
             | 
| 2267 2302 | 
             
                        attr_accessor retrieval_reference_number: String?
         | 
| 2268 2303 |  | 
| 2269 2304 | 
             
                        attr_accessor trace_number: String?
         | 
| @@ -2271,12 +2306,14 @@ module Increase | |
| 2271 2306 | 
             
                        attr_accessor transaction_id: String?
         | 
| 2272 2307 |  | 
| 2273 2308 | 
             
                        def initialize: (
         | 
| 2309 | 
            +
                          authorization_identification_response: String?,
         | 
| 2274 2310 | 
             
                          retrieval_reference_number: String?,
         | 
| 2275 2311 | 
             
                          trace_number: String?,
         | 
| 2276 2312 | 
             
                          transaction_id: String?
         | 
| 2277 2313 | 
             
                        ) -> void
         | 
| 2278 2314 |  | 
| 2279 2315 | 
             
                        def to_hash: -> {
         | 
| 2316 | 
            +
                          authorization_identification_response: String?,
         | 
| 2280 2317 | 
             
                          retrieval_reference_number: String?,
         | 
| 2281 2318 | 
             
                          trace_number: String?,
         | 
| 2282 2319 | 
             
                          transaction_id: String?
         | 
| @@ -2588,7 +2625,7 @@ module Increase | |
| 2588 2625 | 
             
                        def self?.values: -> ::Array[Increase::Models::CardPayment::Element::CardIncrement::currency]
         | 
| 2589 2626 | 
             
                      end
         | 
| 2590 2627 |  | 
| 2591 | 
            -
                      type network = :visa
         | 
| 2628 | 
            +
                      type network = :visa | :pulse
         | 
| 2592 2629 |  | 
| 2593 2630 | 
             
                      module Network
         | 
| 2594 2631 | 
             
                        extend Increase::Internal::Type::Enum
         | 
| @@ -2596,17 +2633,23 @@ module Increase | |
| 2596 2633 | 
             
                        # Visa
         | 
| 2597 2634 | 
             
                        VISA: :visa
         | 
| 2598 2635 |  | 
| 2636 | 
            +
                        # Pulse
         | 
| 2637 | 
            +
                        PULSE: :pulse
         | 
| 2638 | 
            +
             | 
| 2599 2639 | 
             
                        def self?.values: -> ::Array[Increase::Models::CardPayment::Element::CardIncrement::network]
         | 
| 2600 2640 | 
             
                      end
         | 
| 2601 2641 |  | 
| 2602 2642 | 
             
                      type network_identifiers =
         | 
| 2603 2643 | 
             
                        {
         | 
| 2644 | 
            +
                          authorization_identification_response: String?,
         | 
| 2604 2645 | 
             
                          retrieval_reference_number: String?,
         | 
| 2605 2646 | 
             
                          trace_number: String?,
         | 
| 2606 2647 | 
             
                          transaction_id: String?
         | 
| 2607 2648 | 
             
                        }
         | 
| 2608 2649 |  | 
| 2609 2650 | 
             
                      class NetworkIdentifiers < Increase::Internal::Type::BaseModel
         | 
| 2651 | 
            +
                        attr_accessor authorization_identification_response: String?
         | 
| 2652 | 
            +
             | 
| 2610 2653 | 
             
                        attr_accessor retrieval_reference_number: String?
         | 
| 2611 2654 |  | 
| 2612 2655 | 
             
                        attr_accessor trace_number: String?
         | 
| @@ -2614,12 +2657,14 @@ module Increase | |
| 2614 2657 | 
             
                        attr_accessor transaction_id: String?
         | 
| 2615 2658 |  | 
| 2616 2659 | 
             
                        def initialize: (
         | 
| 2660 | 
            +
                          authorization_identification_response: String?,
         | 
| 2617 2661 | 
             
                          retrieval_reference_number: String?,
         | 
| 2618 2662 | 
             
                          trace_number: String?,
         | 
| 2619 2663 | 
             
                          transaction_id: String?
         | 
| 2620 2664 | 
             
                        ) -> void
         | 
| 2621 2665 |  | 
| 2622 2666 | 
             
                        def to_hash: -> {
         | 
| 2667 | 
            +
                          authorization_identification_response: String?,
         | 
| 2623 2668 | 
             
                          retrieval_reference_number: String?,
         | 
| 2624 2669 | 
             
                          trace_number: String?,
         | 
| 2625 2670 | 
             
                          transaction_id: String?
         | 
| @@ -2874,6 +2919,7 @@ module Increase | |
| 2874 2919 | 
             
                        {
         | 
| 2875 2920 | 
             
                          acquirer_business_id: String,
         | 
| 2876 2921 | 
             
                          acquirer_reference_number: String,
         | 
| 2922 | 
            +
                          authorization_identification_response: String?,
         | 
| 2877 2923 | 
             
                          transaction_id: String?
         | 
| 2878 2924 | 
             
                        }
         | 
| 2879 2925 |  | 
| @@ -2882,17 +2928,21 @@ module Increase | |
| 2882 2928 |  | 
| 2883 2929 | 
             
                        attr_accessor acquirer_reference_number: String
         | 
| 2884 2930 |  | 
| 2931 | 
            +
                        attr_accessor authorization_identification_response: String?
         | 
| 2932 | 
            +
             | 
| 2885 2933 | 
             
                        attr_accessor transaction_id: String?
         | 
| 2886 2934 |  | 
| 2887 2935 | 
             
                        def initialize: (
         | 
| 2888 2936 | 
             
                          acquirer_business_id: String,
         | 
| 2889 2937 | 
             
                          acquirer_reference_number: String,
         | 
| 2938 | 
            +
                          authorization_identification_response: String?,
         | 
| 2890 2939 | 
             
                          transaction_id: String?
         | 
| 2891 2940 | 
             
                        ) -> void
         | 
| 2892 2941 |  | 
| 2893 2942 | 
             
                        def to_hash: -> {
         | 
| 2894 2943 | 
             
                          acquirer_business_id: String,
         | 
| 2895 2944 | 
             
                          acquirer_reference_number: String,
         | 
| 2945 | 
            +
                          authorization_identification_response: String?,
         | 
| 2896 2946 | 
             
                          transaction_id: String?
         | 
| 2897 2947 | 
             
                        }
         | 
| 2898 2948 | 
             
                      end
         | 
| @@ -3805,7 +3855,7 @@ module Increase | |
| 3805 3855 | 
             
                        def self?.values: -> ::Array[Increase::Models::CardPayment::Element::CardReversal::currency]
         | 
| 3806 3856 | 
             
                      end
         | 
| 3807 3857 |  | 
| 3808 | 
            -
                      type network = :visa
         | 
| 3858 | 
            +
                      type network = :visa | :pulse
         | 
| 3809 3859 |  | 
| 3810 3860 | 
             
                      module Network
         | 
| 3811 3861 | 
             
                        extend Increase::Internal::Type::Enum
         | 
| @@ -3813,17 +3863,23 @@ module Increase | |
| 3813 3863 | 
             
                        # Visa
         | 
| 3814 3864 | 
             
                        VISA: :visa
         | 
| 3815 3865 |  | 
| 3866 | 
            +
                        # Pulse
         | 
| 3867 | 
            +
                        PULSE: :pulse
         | 
| 3868 | 
            +
             | 
| 3816 3869 | 
             
                        def self?.values: -> ::Array[Increase::Models::CardPayment::Element::CardReversal::network]
         | 
| 3817 3870 | 
             
                      end
         | 
| 3818 3871 |  | 
| 3819 3872 | 
             
                      type network_identifiers =
         | 
| 3820 3873 | 
             
                        {
         | 
| 3874 | 
            +
                          authorization_identification_response: String?,
         | 
| 3821 3875 | 
             
                          retrieval_reference_number: String?,
         | 
| 3822 3876 | 
             
                          trace_number: String?,
         | 
| 3823 3877 | 
             
                          transaction_id: String?
         | 
| 3824 3878 | 
             
                        }
         | 
| 3825 3879 |  | 
| 3826 3880 | 
             
                      class NetworkIdentifiers < Increase::Internal::Type::BaseModel
         | 
| 3881 | 
            +
                        attr_accessor authorization_identification_response: String?
         | 
| 3882 | 
            +
             | 
| 3827 3883 | 
             
                        attr_accessor retrieval_reference_number: String?
         | 
| 3828 3884 |  | 
| 3829 3885 | 
             
                        attr_accessor trace_number: String?
         | 
| @@ -3831,12 +3887,14 @@ module Increase | |
| 3831 3887 | 
             
                        attr_accessor transaction_id: String?
         | 
| 3832 3888 |  | 
| 3833 3889 | 
             
                        def initialize: (
         | 
| 3890 | 
            +
                          authorization_identification_response: String?,
         | 
| 3834 3891 | 
             
                          retrieval_reference_number: String?,
         | 
| 3835 3892 | 
             
                          trace_number: String?,
         | 
| 3836 3893 | 
             
                          transaction_id: String?
         | 
| 3837 3894 | 
             
                        ) -> void
         | 
| 3838 3895 |  | 
| 3839 3896 | 
             
                        def to_hash: -> {
         | 
| 3897 | 
            +
                          authorization_identification_response: String?,
         | 
| 3840 3898 | 
             
                          retrieval_reference_number: String?,
         | 
| 3841 3899 | 
             
                          trace_number: String?,
         | 
| 3842 3900 | 
             
                          transaction_id: String?
         | 
| @@ -4131,7 +4189,7 @@ module Increase | |
| 4131 4189 | 
             
                        end
         | 
| 4132 4190 | 
             
                      end
         | 
| 4133 4191 |  | 
| 4134 | 
            -
                      type network = :visa
         | 
| 4192 | 
            +
                      type network = :visa | :pulse
         | 
| 4135 4193 |  | 
| 4136 4194 | 
             
                      module Network
         | 
| 4137 4195 | 
             
                        extend Increase::Internal::Type::Enum
         | 
| @@ -4139,6 +4197,9 @@ module Increase | |
| 4139 4197 | 
             
                        # Visa
         | 
| 4140 4198 | 
             
                        VISA: :visa
         | 
| 4141 4199 |  | 
| 4200 | 
            +
                        # Pulse
         | 
| 4201 | 
            +
                        PULSE: :pulse
         | 
| 4202 | 
            +
             | 
| 4142 4203 | 
             
                        def self?.values: -> ::Array[Increase::Models::CardPayment::Element::CardSettlement::network]
         | 
| 4143 4204 | 
             
                      end
         | 
| 4144 4205 |  | 
| @@ -4146,6 +4207,7 @@ module Increase | |
| 4146 4207 | 
             
                        {
         | 
| 4147 4208 | 
             
                          acquirer_business_id: String,
         | 
| 4148 4209 | 
             
                          acquirer_reference_number: String,
         | 
| 4210 | 
            +
                          authorization_identification_response: String?,
         | 
| 4149 4211 | 
             
                          transaction_id: String?
         | 
| 4150 4212 | 
             
                        }
         | 
| 4151 4213 |  | 
| @@ -4154,17 +4216,21 @@ module Increase | |
| 4154 4216 |  | 
| 4155 4217 | 
             
                        attr_accessor acquirer_reference_number: String
         | 
| 4156 4218 |  | 
| 4219 | 
            +
                        attr_accessor authorization_identification_response: String?
         | 
| 4220 | 
            +
             | 
| 4157 4221 | 
             
                        attr_accessor transaction_id: String?
         | 
| 4158 4222 |  | 
| 4159 4223 | 
             
                        def initialize: (
         | 
| 4160 4224 | 
             
                          acquirer_business_id: String,
         | 
| 4161 4225 | 
             
                          acquirer_reference_number: String,
         | 
| 4226 | 
            +
                          authorization_identification_response: String?,
         | 
| 4162 4227 | 
             
                          transaction_id: String?
         | 
| 4163 4228 | 
             
                        ) -> void
         | 
| 4164 4229 |  | 
| 4165 4230 | 
             
                        def to_hash: -> {
         | 
| 4166 4231 | 
             
                          acquirer_business_id: String,
         | 
| 4167 4232 | 
             
                          acquirer_reference_number: String,
         | 
| 4233 | 
            +
                          authorization_identification_response: String?,
         | 
| 4168 4234 | 
             
                          transaction_id: String?
         | 
| 4169 4235 | 
             
                        }
         | 
| 4170 4236 | 
             
                      end
         | 
| @@ -5277,25 +5343,30 @@ module Increase | |
| 5277 5343 | 
             
                      type network_details =
         | 
| 5278 5344 | 
             
                        {
         | 
| 5279 5345 | 
             
                          category: Increase::Models::CardPayment::Element::CardValidation::NetworkDetails::category,
         | 
| 5346 | 
            +
                          pulse: top?,
         | 
| 5280 5347 | 
             
                          visa: Increase::CardPayment::Element::CardValidation::NetworkDetails::Visa?
         | 
| 5281 5348 | 
             
                        }
         | 
| 5282 5349 |  | 
| 5283 5350 | 
             
                      class NetworkDetails < Increase::Internal::Type::BaseModel
         | 
| 5284 5351 | 
             
                        attr_accessor category: Increase::Models::CardPayment::Element::CardValidation::NetworkDetails::category
         | 
| 5285 5352 |  | 
| 5353 | 
            +
                        attr_accessor pulse: top?
         | 
| 5354 | 
            +
             | 
| 5286 5355 | 
             
                        attr_accessor visa: Increase::CardPayment::Element::CardValidation::NetworkDetails::Visa?
         | 
| 5287 5356 |  | 
| 5288 5357 | 
             
                        def initialize: (
         | 
| 5289 5358 | 
             
                          category: Increase::Models::CardPayment::Element::CardValidation::NetworkDetails::category,
         | 
| 5359 | 
            +
                          pulse: top?,
         | 
| 5290 5360 | 
             
                          visa: Increase::CardPayment::Element::CardValidation::NetworkDetails::Visa?
         | 
| 5291 5361 | 
             
                        ) -> void
         | 
| 5292 5362 |  | 
| 5293 5363 | 
             
                        def to_hash: -> {
         | 
| 5294 5364 | 
             
                          category: Increase::Models::CardPayment::Element::CardValidation::NetworkDetails::category,
         | 
| 5365 | 
            +
                          pulse: top?,
         | 
| 5295 5366 | 
             
                          visa: Increase::CardPayment::Element::CardValidation::NetworkDetails::Visa?
         | 
| 5296 5367 | 
             
                        }
         | 
| 5297 5368 |  | 
| 5298 | 
            -
                        type category = :visa
         | 
| 5369 | 
            +
                        type category = :visa | :pulse
         | 
| 5299 5370 |  | 
| 5300 5371 | 
             
                        module Category
         | 
| 5301 5372 | 
             
                          extend Increase::Internal::Type::Enum
         | 
| @@ -5303,6 +5374,9 @@ module Increase | |
| 5303 5374 | 
             
                          # Visa
         | 
| 5304 5375 | 
             
                          VISA: :visa
         | 
| 5305 5376 |  | 
| 5377 | 
            +
                          # Pulse
         | 
| 5378 | 
            +
                          PULSE: :pulse
         | 
| 5379 | 
            +
             | 
| 5306 5380 | 
             
                          def self?.values: -> ::Array[Increase::Models::CardPayment::Element::CardValidation::NetworkDetails::category]
         | 
| 5307 5381 | 
             
                        end
         | 
| 5308 5382 |  | 
| @@ -5460,12 +5534,15 @@ module Increase | |
| 5460 5534 |  | 
| 5461 5535 | 
             
                      type network_identifiers =
         | 
| 5462 5536 | 
             
                        {
         | 
| 5537 | 
            +
                          authorization_identification_response: String?,
         | 
| 5463 5538 | 
             
                          retrieval_reference_number: String?,
         | 
| 5464 5539 | 
             
                          trace_number: String?,
         | 
| 5465 5540 | 
             
                          transaction_id: String?
         | 
| 5466 5541 | 
             
                        }
         | 
| 5467 5542 |  | 
| 5468 5543 | 
             
                      class NetworkIdentifiers < Increase::Internal::Type::BaseModel
         | 
| 5544 | 
            +
                        attr_accessor authorization_identification_response: String?
         | 
| 5545 | 
            +
             | 
| 5469 5546 | 
             
                        attr_accessor retrieval_reference_number: String?
         | 
| 5470 5547 |  | 
| 5471 5548 | 
             
                        attr_accessor trace_number: String?
         | 
| @@ -5473,12 +5550,14 @@ module Increase | |
| 5473 5550 | 
             
                        attr_accessor transaction_id: String?
         | 
| 5474 5551 |  | 
| 5475 5552 | 
             
                        def initialize: (
         | 
| 5553 | 
            +
                          authorization_identification_response: String?,
         | 
| 5476 5554 | 
             
                          retrieval_reference_number: String?,
         | 
| 5477 5555 | 
             
                          trace_number: String?,
         | 
| 5478 5556 | 
             
                          transaction_id: String?
         | 
| 5479 5557 | 
             
                        ) -> void
         | 
| 5480 5558 |  | 
| 5481 5559 | 
             
                        def to_hash: -> {
         | 
| 5560 | 
            +
                          authorization_identification_response: String?,
         | 
| 5482 5561 | 
             
                          retrieval_reference_number: String?,
         | 
| 5483 5562 | 
             
                          trace_number: String?,
         | 
| 5484 5563 | 
             
                          transaction_id: String?
         | 
| @@ -699,25 +699,30 @@ module Increase | |
| 699 699 | 
             
                      type network_details =
         | 
| 700 700 | 
             
                        {
         | 
| 701 701 | 
             
                          category: Increase::Models::DeclinedTransaction::Source::CardDecline::NetworkDetails::category,
         | 
| 702 | 
            +
                          pulse: top?,
         | 
| 702 703 | 
             
                          visa: Increase::DeclinedTransaction::Source::CardDecline::NetworkDetails::Visa?
         | 
| 703 704 | 
             
                        }
         | 
| 704 705 |  | 
| 705 706 | 
             
                      class NetworkDetails < Increase::Internal::Type::BaseModel
         | 
| 706 707 | 
             
                        attr_accessor category: Increase::Models::DeclinedTransaction::Source::CardDecline::NetworkDetails::category
         | 
| 707 708 |  | 
| 709 | 
            +
                        attr_accessor pulse: top?
         | 
| 710 | 
            +
             | 
| 708 711 | 
             
                        attr_accessor visa: Increase::DeclinedTransaction::Source::CardDecline::NetworkDetails::Visa?
         | 
| 709 712 |  | 
| 710 713 | 
             
                        def initialize: (
         | 
| 711 714 | 
             
                          category: Increase::Models::DeclinedTransaction::Source::CardDecline::NetworkDetails::category,
         | 
| 715 | 
            +
                          pulse: top?,
         | 
| 712 716 | 
             
                          visa: Increase::DeclinedTransaction::Source::CardDecline::NetworkDetails::Visa?
         | 
| 713 717 | 
             
                        ) -> void
         | 
| 714 718 |  | 
| 715 719 | 
             
                        def to_hash: -> {
         | 
| 716 720 | 
             
                          category: Increase::Models::DeclinedTransaction::Source::CardDecline::NetworkDetails::category,
         | 
| 721 | 
            +
                          pulse: top?,
         | 
| 717 722 | 
             
                          visa: Increase::DeclinedTransaction::Source::CardDecline::NetworkDetails::Visa?
         | 
| 718 723 | 
             
                        }
         | 
| 719 724 |  | 
| 720 | 
            -
                        type category = :visa
         | 
| 725 | 
            +
                        type category = :visa | :pulse
         | 
| 721 726 |  | 
| 722 727 | 
             
                        module Category
         | 
| 723 728 | 
             
                          extend Increase::Internal::Type::Enum
         | 
| @@ -725,6 +730,9 @@ module Increase | |
| 725 730 | 
             
                          # Visa
         | 
| 726 731 | 
             
                          VISA: :visa
         | 
| 727 732 |  | 
| 733 | 
            +
                          # Pulse
         | 
| 734 | 
            +
                          PULSE: :pulse
         | 
| 735 | 
            +
             | 
| 728 736 | 
             
                          def self?.values: -> ::Array[Increase::Models::DeclinedTransaction::Source::CardDecline::NetworkDetails::category]
         | 
| 729 737 | 
             
                        end
         | 
| 730 738 |  | 
| @@ -882,12 +890,15 @@ module Increase | |
| 882 890 |  | 
| 883 891 | 
             
                      type network_identifiers =
         | 
| 884 892 | 
             
                        {
         | 
| 893 | 
            +
                          authorization_identification_response: String?,
         | 
| 885 894 | 
             
                          retrieval_reference_number: String?,
         | 
| 886 895 | 
             
                          trace_number: String?,
         | 
| 887 896 | 
             
                          transaction_id: String?
         | 
| 888 897 | 
             
                        }
         | 
| 889 898 |  | 
| 890 899 | 
             
                      class NetworkIdentifiers < Increase::Internal::Type::BaseModel
         | 
| 900 | 
            +
                        attr_accessor authorization_identification_response: String?
         | 
| 901 | 
            +
             | 
| 891 902 | 
             
                        attr_accessor retrieval_reference_number: String?
         | 
| 892 903 |  | 
| 893 904 | 
             
                        attr_accessor trace_number: String?
         | 
| @@ -895,12 +906,14 @@ module Increase | |
| 895 906 | 
             
                        attr_accessor transaction_id: String?
         | 
| 896 907 |  | 
| 897 908 | 
             
                        def initialize: (
         | 
| 909 | 
            +
                          authorization_identification_response: String?,
         | 
| 898 910 | 
             
                          retrieval_reference_number: String?,
         | 
| 899 911 | 
             
                          trace_number: String?,
         | 
| 900 912 | 
             
                          transaction_id: String?
         | 
| 901 913 | 
             
                        ) -> void
         | 
| 902 914 |  | 
| 903 915 | 
             
                        def to_hash: -> {
         | 
| 916 | 
            +
                          authorization_identification_response: String?,
         | 
| 904 917 | 
             
                          retrieval_reference_number: String?,
         | 
| 905 918 | 
             
                          trace_number: String?,
         | 
| 906 919 | 
             
                          transaction_id: String?
         | 
| @@ -660,25 +660,30 @@ module Increase | |
| 660 660 | 
             
                      type network_details =
         | 
| 661 661 | 
             
                        {
         | 
| 662 662 | 
             
                          category: Increase::Models::PendingTransaction::Source::CardAuthorization::NetworkDetails::category,
         | 
| 663 | 
            +
                          pulse: top?,
         | 
| 663 664 | 
             
                          visa: Increase::PendingTransaction::Source::CardAuthorization::NetworkDetails::Visa?
         | 
| 664 665 | 
             
                        }
         | 
| 665 666 |  | 
| 666 667 | 
             
                      class NetworkDetails < Increase::Internal::Type::BaseModel
         | 
| 667 668 | 
             
                        attr_accessor category: Increase::Models::PendingTransaction::Source::CardAuthorization::NetworkDetails::category
         | 
| 668 669 |  | 
| 670 | 
            +
                        attr_accessor pulse: top?
         | 
| 671 | 
            +
             | 
| 669 672 | 
             
                        attr_accessor visa: Increase::PendingTransaction::Source::CardAuthorization::NetworkDetails::Visa?
         | 
| 670 673 |  | 
| 671 674 | 
             
                        def initialize: (
         | 
| 672 675 | 
             
                          category: Increase::Models::PendingTransaction::Source::CardAuthorization::NetworkDetails::category,
         | 
| 676 | 
            +
                          pulse: top?,
         | 
| 673 677 | 
             
                          visa: Increase::PendingTransaction::Source::CardAuthorization::NetworkDetails::Visa?
         | 
| 674 678 | 
             
                        ) -> void
         | 
| 675 679 |  | 
| 676 680 | 
             
                        def to_hash: -> {
         | 
| 677 681 | 
             
                          category: Increase::Models::PendingTransaction::Source::CardAuthorization::NetworkDetails::category,
         | 
| 682 | 
            +
                          pulse: top?,
         | 
| 678 683 | 
             
                          visa: Increase::PendingTransaction::Source::CardAuthorization::NetworkDetails::Visa?
         | 
| 679 684 | 
             
                        }
         | 
| 680 685 |  | 
| 681 | 
            -
                        type category = :visa
         | 
| 686 | 
            +
                        type category = :visa | :pulse
         | 
| 682 687 |  | 
| 683 688 | 
             
                        module Category
         | 
| 684 689 | 
             
                          extend Increase::Internal::Type::Enum
         | 
| @@ -686,6 +691,9 @@ module Increase | |
| 686 691 | 
             
                          # Visa
         | 
| 687 692 | 
             
                          VISA: :visa
         | 
| 688 693 |  | 
| 694 | 
            +
                          # Pulse
         | 
| 695 | 
            +
                          PULSE: :pulse
         | 
| 696 | 
            +
             | 
| 689 697 | 
             
                          def self?.values: -> ::Array[Increase::Models::PendingTransaction::Source::CardAuthorization::NetworkDetails::category]
         | 
| 690 698 | 
             
                        end
         | 
| 691 699 |  | 
| @@ -843,12 +851,15 @@ module Increase | |
| 843 851 |  | 
| 844 852 | 
             
                      type network_identifiers =
         | 
| 845 853 | 
             
                        {
         | 
| 854 | 
            +
                          authorization_identification_response: String?,
         | 
| 846 855 | 
             
                          retrieval_reference_number: String?,
         | 
| 847 856 | 
             
                          trace_number: String?,
         | 
| 848 857 | 
             
                          transaction_id: String?
         | 
| 849 858 | 
             
                        }
         | 
| 850 859 |  | 
| 851 860 | 
             
                      class NetworkIdentifiers < Increase::Internal::Type::BaseModel
         | 
| 861 | 
            +
                        attr_accessor authorization_identification_response: String?
         | 
| 862 | 
            +
             | 
| 852 863 | 
             
                        attr_accessor retrieval_reference_number: String?
         | 
| 853 864 |  | 
| 854 865 | 
             
                        attr_accessor trace_number: String?
         | 
| @@ -856,12 +867,14 @@ module Increase | |
| 856 867 | 
             
                        attr_accessor transaction_id: String?
         | 
| 857 868 |  | 
| 858 869 | 
             
                        def initialize: (
         | 
| 870 | 
            +
                          authorization_identification_response: String?,
         | 
| 859 871 | 
             
                          retrieval_reference_number: String?,
         | 
| 860 872 | 
             
                          trace_number: String?,
         | 
| 861 873 | 
             
                          transaction_id: String?
         | 
| 862 874 | 
             
                        ) -> void
         | 
| 863 875 |  | 
| 864 876 | 
             
                        def to_hash: -> {
         | 
| 877 | 
            +
                          authorization_identification_response: String?,
         | 
| 865 878 | 
             
                          retrieval_reference_number: String?,
         | 
| 866 879 | 
             
                          trace_number: String?,
         | 
| 867 880 | 
             
                          transaction_id: String?
         | 
| @@ -518,25 +518,30 @@ module Increase | |
| 518 518 | 
             
                    type network_details =
         | 
| 519 519 | 
             
                      {
         | 
| 520 520 | 
             
                        category: Increase::Models::RealTimeDecision::CardAuthorization::NetworkDetails::category,
         | 
| 521 | 
            +
                        pulse: top?,
         | 
| 521 522 | 
             
                        visa: Increase::RealTimeDecision::CardAuthorization::NetworkDetails::Visa?
         | 
| 522 523 | 
             
                      }
         | 
| 523 524 |  | 
| 524 525 | 
             
                    class NetworkDetails < Increase::Internal::Type::BaseModel
         | 
| 525 526 | 
             
                      attr_accessor category: Increase::Models::RealTimeDecision::CardAuthorization::NetworkDetails::category
         | 
| 526 527 |  | 
| 528 | 
            +
                      attr_accessor pulse: top?
         | 
| 529 | 
            +
             | 
| 527 530 | 
             
                      attr_accessor visa: Increase::RealTimeDecision::CardAuthorization::NetworkDetails::Visa?
         | 
| 528 531 |  | 
| 529 532 | 
             
                      def initialize: (
         | 
| 530 533 | 
             
                        category: Increase::Models::RealTimeDecision::CardAuthorization::NetworkDetails::category,
         | 
| 534 | 
            +
                        pulse: top?,
         | 
| 531 535 | 
             
                        visa: Increase::RealTimeDecision::CardAuthorization::NetworkDetails::Visa?
         | 
| 532 536 | 
             
                      ) -> void
         | 
| 533 537 |  | 
| 534 538 | 
             
                      def to_hash: -> {
         | 
| 535 539 | 
             
                        category: Increase::Models::RealTimeDecision::CardAuthorization::NetworkDetails::category,
         | 
| 540 | 
            +
                        pulse: top?,
         | 
| 536 541 | 
             
                        visa: Increase::RealTimeDecision::CardAuthorization::NetworkDetails::Visa?
         | 
| 537 542 | 
             
                      }
         | 
| 538 543 |  | 
| 539 | 
            -
                      type category = :visa
         | 
| 544 | 
            +
                      type category = :visa | :pulse
         | 
| 540 545 |  | 
| 541 546 | 
             
                      module Category
         | 
| 542 547 | 
             
                        extend Increase::Internal::Type::Enum
         | 
| @@ -544,6 +549,9 @@ module Increase | |
| 544 549 | 
             
                        # Visa
         | 
| 545 550 | 
             
                        VISA: :visa
         | 
| 546 551 |  | 
| 552 | 
            +
                        # Pulse
         | 
| 553 | 
            +
                        PULSE: :pulse
         | 
| 554 | 
            +
             | 
| 547 555 | 
             
                        def self?.values: -> ::Array[Increase::Models::RealTimeDecision::CardAuthorization::NetworkDetails::category]
         | 
| 548 556 | 
             
                      end
         | 
| 549 557 |  | 
| @@ -701,12 +709,15 @@ module Increase | |
| 701 709 |  | 
| 702 710 | 
             
                    type network_identifiers =
         | 
| 703 711 | 
             
                      {
         | 
| 712 | 
            +
                        authorization_identification_response: String?,
         | 
| 704 713 | 
             
                        retrieval_reference_number: String?,
         | 
| 705 714 | 
             
                        trace_number: String?,
         | 
| 706 715 | 
             
                        transaction_id: String?
         | 
| 707 716 | 
             
                      }
         | 
| 708 717 |  | 
| 709 718 | 
             
                    class NetworkIdentifiers < Increase::Internal::Type::BaseModel
         | 
| 719 | 
            +
                      attr_accessor authorization_identification_response: String?
         | 
| 720 | 
            +
             | 
| 710 721 | 
             
                      attr_accessor retrieval_reference_number: String?
         | 
| 711 722 |  | 
| 712 723 | 
             
                      attr_accessor trace_number: String?
         | 
| @@ -714,12 +725,14 @@ module Increase | |
| 714 725 | 
             
                      attr_accessor transaction_id: String?
         | 
| 715 726 |  | 
| 716 727 | 
             
                      def initialize: (
         | 
| 728 | 
            +
                        authorization_identification_response: String?,
         | 
| 717 729 | 
             
                        retrieval_reference_number: String?,
         | 
| 718 730 | 
             
                        trace_number: String?,
         | 
| 719 731 | 
             
                        transaction_id: String?
         | 
| 720 732 | 
             
                      ) -> void
         | 
| 721 733 |  | 
| 722 734 | 
             
                      def to_hash: -> {
         | 
| 735 | 
            +
                        authorization_identification_response: String?,
         | 
| 723 736 | 
             
                        retrieval_reference_number: String?,
         | 
| 724 737 | 
             
                        trace_number: String?,
         | 
| 725 738 | 
             
                        transaction_id: String?
         |