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
| @@ -2027,6 +2027,10 @@ module Increase | |
| 2027 2027 | 
             
                        end
         | 
| 2028 2028 | 
             
                        attr_accessor :category
         | 
| 2029 2029 |  | 
| 2030 | 
            +
                        # Fields specific to the `pulse` network.
         | 
| 2031 | 
            +
                        sig { returns(T.nilable(T.anything)) }
         | 
| 2032 | 
            +
                        attr_accessor :pulse
         | 
| 2033 | 
            +
             | 
| 2030 2034 | 
             
                        # Fields specific to the `visa` network.
         | 
| 2031 2035 | 
             
                        sig do
         | 
| 2032 2036 | 
             
                          returns(
         | 
| @@ -2052,6 +2056,7 @@ module Increase | |
| 2052 2056 | 
             
                          params(
         | 
| 2053 2057 | 
             
                            category:
         | 
| 2054 2058 | 
             
                              Increase::DeclinedTransaction::Source::CardDecline::NetworkDetails::Category::OrSymbol,
         | 
| 2059 | 
            +
                            pulse: T.nilable(T.anything),
         | 
| 2055 2060 | 
             
                            visa:
         | 
| 2056 2061 | 
             
                              T.nilable(
         | 
| 2057 2062 | 
             
                                Increase::DeclinedTransaction::Source::CardDecline::NetworkDetails::Visa::OrHash
         | 
| @@ -2061,6 +2066,8 @@ module Increase | |
| 2061 2066 | 
             
                        def self.new(
         | 
| 2062 2067 | 
             
                          # The payment network used to process this card authorization.
         | 
| 2063 2068 | 
             
                          category:,
         | 
| 2069 | 
            +
                          # Fields specific to the `pulse` network.
         | 
| 2070 | 
            +
                          pulse:,
         | 
| 2064 2071 | 
             
                          # Fields specific to the `visa` network.
         | 
| 2065 2072 | 
             
                          visa:
         | 
| 2066 2073 | 
             
                        )
         | 
| @@ -2071,6 +2078,7 @@ module Increase | |
| 2071 2078 | 
             
                            {
         | 
| 2072 2079 | 
             
                              category:
         | 
| 2073 2080 | 
             
                                Increase::DeclinedTransaction::Source::CardDecline::NetworkDetails::Category::TaggedSymbol,
         | 
| 2081 | 
            +
                              pulse: T.nilable(T.anything),
         | 
| 2074 2082 | 
             
                              visa:
         | 
| 2075 2083 | 
             
                                T.nilable(
         | 
| 2076 2084 | 
             
                                  Increase::DeclinedTransaction::Source::CardDecline::NetworkDetails::Visa
         | 
| @@ -2101,6 +2109,13 @@ module Increase | |
| 2101 2109 | 
             
                              Increase::DeclinedTransaction::Source::CardDecline::NetworkDetails::Category::TaggedSymbol
         | 
| 2102 2110 | 
             
                            )
         | 
| 2103 2111 |  | 
| 2112 | 
            +
                          # Pulse
         | 
| 2113 | 
            +
                          PULSE =
         | 
| 2114 | 
            +
                            T.let(
         | 
| 2115 | 
            +
                              :pulse,
         | 
| 2116 | 
            +
                              Increase::DeclinedTransaction::Source::CardDecline::NetworkDetails::Category::TaggedSymbol
         | 
| 2117 | 
            +
                            )
         | 
| 2118 | 
            +
             | 
| 2104 2119 | 
             
                          sig do
         | 
| 2105 2120 | 
             
                            override.returns(
         | 
| 2106 2121 | 
             
                              T::Array[
         | 
| @@ -2469,6 +2484,11 @@ module Increase | |
| 2469 2484 | 
             
                            )
         | 
| 2470 2485 | 
             
                          end
         | 
| 2471 2486 |  | 
| 2487 | 
            +
                        # The randomly generated 6-character Authorization Identification Response code
         | 
| 2488 | 
            +
                        # sent back to the acquirer in an approved response.
         | 
| 2489 | 
            +
                        sig { returns(T.nilable(String)) }
         | 
| 2490 | 
            +
                        attr_accessor :authorization_identification_response
         | 
| 2491 | 
            +
             | 
| 2472 2492 | 
             
                        # A life-cycle identifier used across e.g., an authorization and a reversal.
         | 
| 2473 2493 | 
             
                        # Expected to be unique per acquirer within a window of time. For some card
         | 
| 2474 2494 | 
             
                        # networks the retrieval reference number includes the trace counter.
         | 
| @@ -2488,12 +2508,16 @@ module Increase | |
| 2488 2508 | 
             
                        # Network-specific identifiers for a specific request or transaction.
         | 
| 2489 2509 | 
             
                        sig do
         | 
| 2490 2510 | 
             
                          params(
         | 
| 2511 | 
            +
                            authorization_identification_response: T.nilable(String),
         | 
| 2491 2512 | 
             
                            retrieval_reference_number: T.nilable(String),
         | 
| 2492 2513 | 
             
                            trace_number: T.nilable(String),
         | 
| 2493 2514 | 
             
                            transaction_id: T.nilable(String)
         | 
| 2494 2515 | 
             
                          ).returns(T.attached_class)
         | 
| 2495 2516 | 
             
                        end
         | 
| 2496 2517 | 
             
                        def self.new(
         | 
| 2518 | 
            +
                          # The randomly generated 6-character Authorization Identification Response code
         | 
| 2519 | 
            +
                          # sent back to the acquirer in an approved response.
         | 
| 2520 | 
            +
                          authorization_identification_response:,
         | 
| 2497 2521 | 
             
                          # A life-cycle identifier used across e.g., an authorization and a reversal.
         | 
| 2498 2522 | 
             
                          # Expected to be unique per acquirer within a window of time. For some card
         | 
| 2499 2523 | 
             
                          # networks the retrieval reference number includes the trace counter.
         | 
| @@ -2510,6 +2534,7 @@ module Increase | |
| 2510 2534 | 
             
                        sig do
         | 
| 2511 2535 | 
             
                          override.returns(
         | 
| 2512 2536 | 
             
                            {
         | 
| 2537 | 
            +
                              authorization_identification_response: T.nilable(String),
         | 
| 2513 2538 | 
             
                              retrieval_reference_number: T.nilable(String),
         | 
| 2514 2539 | 
             
                              trace_number: T.nilable(String),
         | 
| 2515 2540 | 
             
                              transaction_id: T.nilable(String)
         | 
| @@ -2122,6 +2122,10 @@ module Increase | |
| 2122 2122 | 
             
                        end
         | 
| 2123 2123 | 
             
                        attr_accessor :category
         | 
| 2124 2124 |  | 
| 2125 | 
            +
                        # Fields specific to the `pulse` network.
         | 
| 2126 | 
            +
                        sig { returns(T.nilable(T.anything)) }
         | 
| 2127 | 
            +
                        attr_accessor :pulse
         | 
| 2128 | 
            +
             | 
| 2125 2129 | 
             
                        # Fields specific to the `visa` network.
         | 
| 2126 2130 | 
             
                        sig do
         | 
| 2127 2131 | 
             
                          returns(
         | 
| @@ -2147,6 +2151,7 @@ module Increase | |
| 2147 2151 | 
             
                          params(
         | 
| 2148 2152 | 
             
                            category:
         | 
| 2149 2153 | 
             
                              Increase::PendingTransaction::Source::CardAuthorization::NetworkDetails::Category::OrSymbol,
         | 
| 2154 | 
            +
                            pulse: T.nilable(T.anything),
         | 
| 2150 2155 | 
             
                            visa:
         | 
| 2151 2156 | 
             
                              T.nilable(
         | 
| 2152 2157 | 
             
                                Increase::PendingTransaction::Source::CardAuthorization::NetworkDetails::Visa::OrHash
         | 
| @@ -2156,6 +2161,8 @@ module Increase | |
| 2156 2161 | 
             
                        def self.new(
         | 
| 2157 2162 | 
             
                          # The payment network used to process this card authorization.
         | 
| 2158 2163 | 
             
                          category:,
         | 
| 2164 | 
            +
                          # Fields specific to the `pulse` network.
         | 
| 2165 | 
            +
                          pulse:,
         | 
| 2159 2166 | 
             
                          # Fields specific to the `visa` network.
         | 
| 2160 2167 | 
             
                          visa:
         | 
| 2161 2168 | 
             
                        )
         | 
| @@ -2166,6 +2173,7 @@ module Increase | |
| 2166 2173 | 
             
                            {
         | 
| 2167 2174 | 
             
                              category:
         | 
| 2168 2175 | 
             
                                Increase::PendingTransaction::Source::CardAuthorization::NetworkDetails::Category::TaggedSymbol,
         | 
| 2176 | 
            +
                              pulse: T.nilable(T.anything),
         | 
| 2169 2177 | 
             
                              visa:
         | 
| 2170 2178 | 
             
                                T.nilable(
         | 
| 2171 2179 | 
             
                                  Increase::PendingTransaction::Source::CardAuthorization::NetworkDetails::Visa
         | 
| @@ -2196,6 +2204,13 @@ module Increase | |
| 2196 2204 | 
             
                              Increase::PendingTransaction::Source::CardAuthorization::NetworkDetails::Category::TaggedSymbol
         | 
| 2197 2205 | 
             
                            )
         | 
| 2198 2206 |  | 
| 2207 | 
            +
                          # Pulse
         | 
| 2208 | 
            +
                          PULSE =
         | 
| 2209 | 
            +
                            T.let(
         | 
| 2210 | 
            +
                              :pulse,
         | 
| 2211 | 
            +
                              Increase::PendingTransaction::Source::CardAuthorization::NetworkDetails::Category::TaggedSymbol
         | 
| 2212 | 
            +
                            )
         | 
| 2213 | 
            +
             | 
| 2199 2214 | 
             
                          sig do
         | 
| 2200 2215 | 
             
                            override.returns(
         | 
| 2201 2216 | 
             
                              T::Array[
         | 
| @@ -2564,6 +2579,11 @@ module Increase | |
| 2564 2579 | 
             
                            )
         | 
| 2565 2580 | 
             
                          end
         | 
| 2566 2581 |  | 
| 2582 | 
            +
                        # The randomly generated 6-character Authorization Identification Response code
         | 
| 2583 | 
            +
                        # sent back to the acquirer in an approved response.
         | 
| 2584 | 
            +
                        sig { returns(T.nilable(String)) }
         | 
| 2585 | 
            +
                        attr_accessor :authorization_identification_response
         | 
| 2586 | 
            +
             | 
| 2567 2587 | 
             
                        # A life-cycle identifier used across e.g., an authorization and a reversal.
         | 
| 2568 2588 | 
             
                        # Expected to be unique per acquirer within a window of time. For some card
         | 
| 2569 2589 | 
             
                        # networks the retrieval reference number includes the trace counter.
         | 
| @@ -2583,12 +2603,16 @@ module Increase | |
| 2583 2603 | 
             
                        # Network-specific identifiers for a specific request or transaction.
         | 
| 2584 2604 | 
             
                        sig do
         | 
| 2585 2605 | 
             
                          params(
         | 
| 2606 | 
            +
                            authorization_identification_response: T.nilable(String),
         | 
| 2586 2607 | 
             
                            retrieval_reference_number: T.nilable(String),
         | 
| 2587 2608 | 
             
                            trace_number: T.nilable(String),
         | 
| 2588 2609 | 
             
                            transaction_id: T.nilable(String)
         | 
| 2589 2610 | 
             
                          ).returns(T.attached_class)
         | 
| 2590 2611 | 
             
                        end
         | 
| 2591 2612 | 
             
                        def self.new(
         | 
| 2613 | 
            +
                          # The randomly generated 6-character Authorization Identification Response code
         | 
| 2614 | 
            +
                          # sent back to the acquirer in an approved response.
         | 
| 2615 | 
            +
                          authorization_identification_response:,
         | 
| 2592 2616 | 
             
                          # A life-cycle identifier used across e.g., an authorization and a reversal.
         | 
| 2593 2617 | 
             
                          # Expected to be unique per acquirer within a window of time. For some card
         | 
| 2594 2618 | 
             
                          # networks the retrieval reference number includes the trace counter.
         | 
| @@ -2605,6 +2629,7 @@ module Increase | |
| 2605 2629 | 
             
                        sig do
         | 
| 2606 2630 | 
             
                          override.returns(
         | 
| 2607 2631 | 
             
                            {
         | 
| 2632 | 
            +
                              authorization_identification_response: T.nilable(String),
         | 
| 2608 2633 | 
             
                              retrieval_reference_number: T.nilable(String),
         | 
| 2609 2634 | 
             
                              trace_number: T.nilable(String),
         | 
| 2610 2635 | 
             
                              transaction_id: T.nilable(String)
         | 
| @@ -1618,6 +1618,10 @@ module Increase | |
| 1618 1618 | 
             
                      end
         | 
| 1619 1619 | 
             
                      attr_accessor :category
         | 
| 1620 1620 |  | 
| 1621 | 
            +
                      # Fields specific to the `pulse` network.
         | 
| 1622 | 
            +
                      sig { returns(T.nilable(T.anything)) }
         | 
| 1623 | 
            +
                      attr_accessor :pulse
         | 
| 1624 | 
            +
             | 
| 1621 1625 | 
             
                      # Fields specific to the `visa` network.
         | 
| 1622 1626 | 
             
                      sig do
         | 
| 1623 1627 | 
             
                        returns(
         | 
| @@ -1643,6 +1647,7 @@ module Increase | |
| 1643 1647 | 
             
                        params(
         | 
| 1644 1648 | 
             
                          category:
         | 
| 1645 1649 | 
             
                            Increase::RealTimeDecision::CardAuthorization::NetworkDetails::Category::OrSymbol,
         | 
| 1650 | 
            +
                          pulse: T.nilable(T.anything),
         | 
| 1646 1651 | 
             
                          visa:
         | 
| 1647 1652 | 
             
                            T.nilable(
         | 
| 1648 1653 | 
             
                              Increase::RealTimeDecision::CardAuthorization::NetworkDetails::Visa::OrHash
         | 
| @@ -1652,6 +1657,8 @@ module Increase | |
| 1652 1657 | 
             
                      def self.new(
         | 
| 1653 1658 | 
             
                        # The payment network used to process this card authorization.
         | 
| 1654 1659 | 
             
                        category:,
         | 
| 1660 | 
            +
                        # Fields specific to the `pulse` network.
         | 
| 1661 | 
            +
                        pulse:,
         | 
| 1655 1662 | 
             
                        # Fields specific to the `visa` network.
         | 
| 1656 1663 | 
             
                        visa:
         | 
| 1657 1664 | 
             
                      )
         | 
| @@ -1662,6 +1669,7 @@ module Increase | |
| 1662 1669 | 
             
                          {
         | 
| 1663 1670 | 
             
                            category:
         | 
| 1664 1671 | 
             
                              Increase::RealTimeDecision::CardAuthorization::NetworkDetails::Category::TaggedSymbol,
         | 
| 1672 | 
            +
                            pulse: T.nilable(T.anything),
         | 
| 1665 1673 | 
             
                            visa:
         | 
| 1666 1674 | 
             
                              T.nilable(
         | 
| 1667 1675 | 
             
                                Increase::RealTimeDecision::CardAuthorization::NetworkDetails::Visa
         | 
| @@ -1692,6 +1700,13 @@ module Increase | |
| 1692 1700 | 
             
                            Increase::RealTimeDecision::CardAuthorization::NetworkDetails::Category::TaggedSymbol
         | 
| 1693 1701 | 
             
                          )
         | 
| 1694 1702 |  | 
| 1703 | 
            +
                        # Pulse
         | 
| 1704 | 
            +
                        PULSE =
         | 
| 1705 | 
            +
                          T.let(
         | 
| 1706 | 
            +
                            :pulse,
         | 
| 1707 | 
            +
                            Increase::RealTimeDecision::CardAuthorization::NetworkDetails::Category::TaggedSymbol
         | 
| 1708 | 
            +
                          )
         | 
| 1709 | 
            +
             | 
| 1695 1710 | 
             
                        sig do
         | 
| 1696 1711 | 
             
                          override.returns(
         | 
| 1697 1712 | 
             
                            T::Array[
         | 
| @@ -2060,6 +2075,11 @@ module Increase | |
| 2060 2075 | 
             
                          )
         | 
| 2061 2076 | 
             
                        end
         | 
| 2062 2077 |  | 
| 2078 | 
            +
                      # The randomly generated 6-character Authorization Identification Response code
         | 
| 2079 | 
            +
                      # sent back to the acquirer in an approved response.
         | 
| 2080 | 
            +
                      sig { returns(T.nilable(String)) }
         | 
| 2081 | 
            +
                      attr_accessor :authorization_identification_response
         | 
| 2082 | 
            +
             | 
| 2063 2083 | 
             
                      # A life-cycle identifier used across e.g., an authorization and a reversal.
         | 
| 2064 2084 | 
             
                      # Expected to be unique per acquirer within a window of time. For some card
         | 
| 2065 2085 | 
             
                      # networks the retrieval reference number includes the trace counter.
         | 
| @@ -2079,12 +2099,16 @@ module Increase | |
| 2079 2099 | 
             
                      # Network-specific identifiers for a specific request or transaction.
         | 
| 2080 2100 | 
             
                      sig do
         | 
| 2081 2101 | 
             
                        params(
         | 
| 2102 | 
            +
                          authorization_identification_response: T.nilable(String),
         | 
| 2082 2103 | 
             
                          retrieval_reference_number: T.nilable(String),
         | 
| 2083 2104 | 
             
                          trace_number: T.nilable(String),
         | 
| 2084 2105 | 
             
                          transaction_id: T.nilable(String)
         | 
| 2085 2106 | 
             
                        ).returns(T.attached_class)
         | 
| 2086 2107 | 
             
                      end
         | 
| 2087 2108 | 
             
                      def self.new(
         | 
| 2109 | 
            +
                        # The randomly generated 6-character Authorization Identification Response code
         | 
| 2110 | 
            +
                        # sent back to the acquirer in an approved response.
         | 
| 2111 | 
            +
                        authorization_identification_response:,
         | 
| 2088 2112 | 
             
                        # A life-cycle identifier used across e.g., an authorization and a reversal.
         | 
| 2089 2113 | 
             
                        # Expected to be unique per acquirer within a window of time. For some card
         | 
| 2090 2114 | 
             
                        # networks the retrieval reference number includes the trace counter.
         | 
| @@ -2101,6 +2125,7 @@ module Increase | |
| 2101 2125 | 
             
                      sig do
         | 
| 2102 2126 | 
             
                        override.returns(
         | 
| 2103 2127 | 
             
                          {
         | 
| 2128 | 
            +
                            authorization_identification_response: T.nilable(String),
         | 
| 2104 2129 | 
             
                            retrieval_reference_number: T.nilable(String),
         | 
| 2105 2130 | 
             
                            trace_number: T.nilable(String),
         | 
| 2106 2131 | 
             
                            transaction_id: T.nilable(String)
         | 
| @@ -2418,6 +2418,13 @@ module Increase | |
| 2418 2418 | 
             
                            Increase::Transaction::Source::CardDisputeFinancial::Network::TaggedSymbol
         | 
| 2419 2419 | 
             
                          )
         | 
| 2420 2420 |  | 
| 2421 | 
            +
                        # Pulse: details will be under the `pulse` object.
         | 
| 2422 | 
            +
                        PULSE =
         | 
| 2423 | 
            +
                          T.let(
         | 
| 2424 | 
            +
                            :pulse,
         | 
| 2425 | 
            +
                            Increase::Transaction::Source::CardDisputeFinancial::Network::TaggedSymbol
         | 
| 2426 | 
            +
                          )
         | 
| 2427 | 
            +
             | 
| 2421 2428 | 
             
                        sig do
         | 
| 2422 2429 | 
             
                          override.returns(
         | 
| 2423 2430 | 
             
                            T::Array[
         | 
| @@ -3811,6 +3818,10 @@ module Increase | |
| 3811 3818 | 
             
                        end
         | 
| 3812 3819 | 
             
                        attr_accessor :category
         | 
| 3813 3820 |  | 
| 3821 | 
            +
                        # Fields specific to the `pulse` network.
         | 
| 3822 | 
            +
                        sig { returns(T.nilable(T.anything)) }
         | 
| 3823 | 
            +
                        attr_accessor :pulse
         | 
| 3824 | 
            +
             | 
| 3814 3825 | 
             
                        # Fields specific to the `visa` network.
         | 
| 3815 3826 | 
             
                        sig do
         | 
| 3816 3827 | 
             
                          returns(
         | 
| @@ -3836,6 +3847,7 @@ module Increase | |
| 3836 3847 | 
             
                          params(
         | 
| 3837 3848 | 
             
                            category:
         | 
| 3838 3849 | 
             
                              Increase::Transaction::Source::CardFinancial::NetworkDetails::Category::OrSymbol,
         | 
| 3850 | 
            +
                            pulse: T.nilable(T.anything),
         | 
| 3839 3851 | 
             
                            visa:
         | 
| 3840 3852 | 
             
                              T.nilable(
         | 
| 3841 3853 | 
             
                                Increase::Transaction::Source::CardFinancial::NetworkDetails::Visa::OrHash
         | 
| @@ -3845,6 +3857,8 @@ module Increase | |
| 3845 3857 | 
             
                        def self.new(
         | 
| 3846 3858 | 
             
                          # The payment network used to process this card authorization.
         | 
| 3847 3859 | 
             
                          category:,
         | 
| 3860 | 
            +
                          # Fields specific to the `pulse` network.
         | 
| 3861 | 
            +
                          pulse:,
         | 
| 3848 3862 | 
             
                          # Fields specific to the `visa` network.
         | 
| 3849 3863 | 
             
                          visa:
         | 
| 3850 3864 | 
             
                        )
         | 
| @@ -3855,6 +3869,7 @@ module Increase | |
| 3855 3869 | 
             
                            {
         | 
| 3856 3870 | 
             
                              category:
         | 
| 3857 3871 | 
             
                                Increase::Transaction::Source::CardFinancial::NetworkDetails::Category::TaggedSymbol,
         | 
| 3872 | 
            +
                              pulse: T.nilable(T.anything),
         | 
| 3858 3873 | 
             
                              visa:
         | 
| 3859 3874 | 
             
                                T.nilable(
         | 
| 3860 3875 | 
             
                                  Increase::Transaction::Source::CardFinancial::NetworkDetails::Visa
         | 
| @@ -3885,6 +3900,13 @@ module Increase | |
| 3885 3900 | 
             
                              Increase::Transaction::Source::CardFinancial::NetworkDetails::Category::TaggedSymbol
         | 
| 3886 3901 | 
             
                            )
         | 
| 3887 3902 |  | 
| 3903 | 
            +
                          # Pulse
         | 
| 3904 | 
            +
                          PULSE =
         | 
| 3905 | 
            +
                            T.let(
         | 
| 3906 | 
            +
                              :pulse,
         | 
| 3907 | 
            +
                              Increase::Transaction::Source::CardFinancial::NetworkDetails::Category::TaggedSymbol
         | 
| 3908 | 
            +
                            )
         | 
| 3909 | 
            +
             | 
| 3888 3910 | 
             
                          sig do
         | 
| 3889 3911 | 
             
                            override.returns(
         | 
| 3890 3912 | 
             
                              T::Array[
         | 
| @@ -4253,6 +4275,11 @@ module Increase | |
| 4253 4275 | 
             
                            )
         | 
| 4254 4276 | 
             
                          end
         | 
| 4255 4277 |  | 
| 4278 | 
            +
                        # The randomly generated 6-character Authorization Identification Response code
         | 
| 4279 | 
            +
                        # sent back to the acquirer in an approved response.
         | 
| 4280 | 
            +
                        sig { returns(T.nilable(String)) }
         | 
| 4281 | 
            +
                        attr_accessor :authorization_identification_response
         | 
| 4282 | 
            +
             | 
| 4256 4283 | 
             
                        # A life-cycle identifier used across e.g., an authorization and a reversal.
         | 
| 4257 4284 | 
             
                        # Expected to be unique per acquirer within a window of time. For some card
         | 
| 4258 4285 | 
             
                        # networks the retrieval reference number includes the trace counter.
         | 
| @@ -4272,12 +4299,16 @@ module Increase | |
| 4272 4299 | 
             
                        # Network-specific identifiers for a specific request or transaction.
         | 
| 4273 4300 | 
             
                        sig do
         | 
| 4274 4301 | 
             
                          params(
         | 
| 4302 | 
            +
                            authorization_identification_response: T.nilable(String),
         | 
| 4275 4303 | 
             
                            retrieval_reference_number: T.nilable(String),
         | 
| 4276 4304 | 
             
                            trace_number: T.nilable(String),
         | 
| 4277 4305 | 
             
                            transaction_id: T.nilable(String)
         | 
| 4278 4306 | 
             
                          ).returns(T.attached_class)
         | 
| 4279 4307 | 
             
                        end
         | 
| 4280 4308 | 
             
                        def self.new(
         | 
| 4309 | 
            +
                          # The randomly generated 6-character Authorization Identification Response code
         | 
| 4310 | 
            +
                          # sent back to the acquirer in an approved response.
         | 
| 4311 | 
            +
                          authorization_identification_response:,
         | 
| 4281 4312 | 
             
                          # A life-cycle identifier used across e.g., an authorization and a reversal.
         | 
| 4282 4313 | 
             
                          # Expected to be unique per acquirer within a window of time. For some card
         | 
| 4283 4314 | 
             
                          # networks the retrieval reference number includes the trace counter.
         | 
| @@ -4294,6 +4325,7 @@ module Increase | |
| 4294 4325 | 
             
                        sig do
         | 
| 4295 4326 | 
             
                          override.returns(
         | 
| 4296 4327 | 
             
                            {
         | 
| 4328 | 
            +
                              authorization_identification_response: T.nilable(String),
         | 
| 4297 4329 | 
             
                              retrieval_reference_number: T.nilable(String),
         | 
| 4298 4330 | 
             
                              trace_number: T.nilable(String),
         | 
| 4299 4331 | 
             
                              transaction_id: T.nilable(String)
         | 
| @@ -5393,6 +5425,11 @@ module Increase | |
| 5393 5425 | 
             
                        sig { returns(String) }
         | 
| 5394 5426 | 
             
                        attr_accessor :acquirer_reference_number
         | 
| 5395 5427 |  | 
| 5428 | 
            +
                        # The randomly generated 6-character Authorization Identification Response code
         | 
| 5429 | 
            +
                        # sent back to the acquirer in an approved response.
         | 
| 5430 | 
            +
                        sig { returns(T.nilable(String)) }
         | 
| 5431 | 
            +
                        attr_accessor :authorization_identification_response
         | 
| 5432 | 
            +
             | 
| 5396 5433 | 
             
                        # A globally unique transaction identifier provided by the card network, used
         | 
| 5397 5434 | 
             
                        # across multiple life-cycle requests.
         | 
| 5398 5435 | 
             
                        sig { returns(T.nilable(String)) }
         | 
| @@ -5403,6 +5440,7 @@ module Increase | |
| 5403 5440 | 
             
                          params(
         | 
| 5404 5441 | 
             
                            acquirer_business_id: String,
         | 
| 5405 5442 | 
             
                            acquirer_reference_number: String,
         | 
| 5443 | 
            +
                            authorization_identification_response: T.nilable(String),
         | 
| 5406 5444 | 
             
                            transaction_id: T.nilable(String)
         | 
| 5407 5445 | 
             
                          ).returns(T.attached_class)
         | 
| 5408 5446 | 
             
                        end
         | 
| @@ -5412,6 +5450,9 @@ module Increase | |
| 5412 5450 | 
             
                          acquirer_business_id:,
         | 
| 5413 5451 | 
             
                          # A globally unique identifier for this settlement.
         | 
| 5414 5452 | 
             
                          acquirer_reference_number:,
         | 
| 5453 | 
            +
                          # The randomly generated 6-character Authorization Identification Response code
         | 
| 5454 | 
            +
                          # sent back to the acquirer in an approved response.
         | 
| 5455 | 
            +
                          authorization_identification_response:,
         | 
| 5415 5456 | 
             
                          # A globally unique transaction identifier provided by the card network, used
         | 
| 5416 5457 | 
             
                          # across multiple life-cycle requests.
         | 
| 5417 5458 | 
             
                          transaction_id:
         | 
| @@ -5423,6 +5464,7 @@ module Increase | |
| 5423 5464 | 
             
                            {
         | 
| 5424 5465 | 
             
                              acquirer_business_id: String,
         | 
| 5425 5466 | 
             
                              acquirer_reference_number: String,
         | 
| 5467 | 
            +
                              authorization_identification_response: T.nilable(String),
         | 
| 5426 5468 | 
             
                              transaction_id: T.nilable(String)
         | 
| 5427 5469 | 
             
                            }
         | 
| 5428 5470 | 
             
                          )
         | 
| @@ -8034,6 +8076,13 @@ module Increase | |
| 8034 8076 | 
             
                            Increase::Transaction::Source::CardSettlement::Network::TaggedSymbol
         | 
| 8035 8077 | 
             
                          )
         | 
| 8036 8078 |  | 
| 8079 | 
            +
                        # Pulse
         | 
| 8080 | 
            +
                        PULSE =
         | 
| 8081 | 
            +
                          T.let(
         | 
| 8082 | 
            +
                            :pulse,
         | 
| 8083 | 
            +
                            Increase::Transaction::Source::CardSettlement::Network::TaggedSymbol
         | 
| 8084 | 
            +
                          )
         | 
| 8085 | 
            +
             | 
| 8037 8086 | 
             
                        sig do
         | 
| 8038 8087 | 
             
                          override.returns(
         | 
| 8039 8088 | 
             
                            T::Array[
         | 
| @@ -8063,6 +8112,11 @@ module Increase | |
| 8063 8112 | 
             
                        sig { returns(String) }
         | 
| 8064 8113 | 
             
                        attr_accessor :acquirer_reference_number
         | 
| 8065 8114 |  | 
| 8115 | 
            +
                        # The randomly generated 6-character Authorization Identification Response code
         | 
| 8116 | 
            +
                        # sent back to the acquirer in an approved response.
         | 
| 8117 | 
            +
                        sig { returns(T.nilable(String)) }
         | 
| 8118 | 
            +
                        attr_accessor :authorization_identification_response
         | 
| 8119 | 
            +
             | 
| 8066 8120 | 
             
                        # A globally unique transaction identifier provided by the card network, used
         | 
| 8067 8121 | 
             
                        # across multiple life-cycle requests.
         | 
| 8068 8122 | 
             
                        sig { returns(T.nilable(String)) }
         | 
| @@ -8073,6 +8127,7 @@ module Increase | |
| 8073 8127 | 
             
                          params(
         | 
| 8074 8128 | 
             
                            acquirer_business_id: String,
         | 
| 8075 8129 | 
             
                            acquirer_reference_number: String,
         | 
| 8130 | 
            +
                            authorization_identification_response: T.nilable(String),
         | 
| 8076 8131 | 
             
                            transaction_id: T.nilable(String)
         | 
| 8077 8132 | 
             
                          ).returns(T.attached_class)
         | 
| 8078 8133 | 
             
                        end
         | 
| @@ -8082,6 +8137,9 @@ module Increase | |
| 8082 8137 | 
             
                          acquirer_business_id:,
         | 
| 8083 8138 | 
             
                          # A globally unique identifier for this settlement.
         | 
| 8084 8139 | 
             
                          acquirer_reference_number:,
         | 
| 8140 | 
            +
                          # The randomly generated 6-character Authorization Identification Response code
         | 
| 8141 | 
            +
                          # sent back to the acquirer in an approved response.
         | 
| 8142 | 
            +
                          authorization_identification_response:,
         | 
| 8085 8143 | 
             
                          # A globally unique transaction identifier provided by the card network, used
         | 
| 8086 8144 | 
             
                          # across multiple life-cycle requests.
         | 
| 8087 8145 | 
             
                          transaction_id:
         | 
| @@ -8093,6 +8151,7 @@ module Increase | |
| 8093 8151 | 
             
                            {
         | 
| 8094 8152 | 
             
                              acquirer_business_id: String,
         | 
| 8095 8153 | 
             
                              acquirer_reference_number: String,
         | 
| 8154 | 
            +
                              authorization_identification_response: T.nilable(String),
         | 
| 8096 8155 | 
             
                              transaction_id: T.nilable(String)
         | 
| 8097 8156 | 
             
                            }
         | 
| 8098 8157 | 
             
                          )
         | 
| @@ -109,7 +109,7 @@ module Increase | |
| 109 109 | 
             
                    end
         | 
| 110 110 | 
             
                  end
         | 
| 111 111 |  | 
| 112 | 
            -
                  type network = :visa
         | 
| 112 | 
            +
                  type network = :visa | :pulse
         | 
| 113 113 |  | 
| 114 114 | 
             
                  module Network
         | 
| 115 115 | 
             
                    extend Increase::Internal::Type::Enum
         | 
| @@ -117,6 +117,9 @@ module Increase | |
| 117 117 | 
             
                    # Visa: details will be under the `visa` object.
         | 
| 118 118 | 
             
                    VISA: :visa
         | 
| 119 119 |  | 
| 120 | 
            +
                    # Pulse: details will be under the `pulse` object.
         | 
| 121 | 
            +
                    PULSE: :pulse
         | 
| 122 | 
            +
             | 
| 120 123 | 
             
                    def self?.values: -> ::Array[Increase::Models::CardDispute::network]
         | 
| 121 124 | 
             
                  end
         | 
| 122 125 |  |