increase 1.101.0 → 1.103.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/check_deposit.rb +9 -7
- data/lib/increase/models/oauth_token.rb +9 -1
- data/lib/increase/models/transaction.rb +6 -4
- data/lib/increase/version.rb +1 -1
- data/rbi/increase/models/check_deposit.rbi +11 -7
- data/rbi/increase/models/oauth_token.rbi +8 -0
- data/rbi/increase/models/transaction.rbi +8 -4
- data/sig/increase/models/oauth_token.rbs +5 -0
- metadata +2 -2
    
        checksums.yaml
    CHANGED
    
    | @@ -1,7 +1,7 @@ | |
| 1 1 | 
             
            ---
         | 
| 2 2 | 
             
            SHA256:
         | 
| 3 | 
            -
              metadata.gz:  | 
| 4 | 
            -
              data.tar.gz:  | 
| 3 | 
            +
              metadata.gz: 24abc398e2520b2ea46ec6878cfcc2fd2f768dd76fc3df00c81b7f06abe7d202
         | 
| 4 | 
            +
              data.tar.gz: 01ebbbd9fb3f74db687d42bced68daa1a45234f6db73b1847b398e1791d8a13c
         | 
| 5 5 | 
             
            SHA512:
         | 
| 6 | 
            -
              metadata.gz:  | 
| 7 | 
            -
              data.tar.gz:  | 
| 6 | 
            +
              metadata.gz: 1b59bacc105d0bf2553f5d77fc4b1a1716e24a88e8134b0145adfbfe2b2463deee2598518868ce98818dd21b5ec98002f0f46a832e6a9e1831b936adea292ea6
         | 
| 7 | 
            +
              data.tar.gz: 3943ac475b50c5ef74436ba4f28163d895edfeabb0d06181e48f94a4577dcc94ed9b1c237903b40d9ebf9fdede1f44cf7d17c3314d0cb19b51fee177b568130f
         | 
    
        data/CHANGELOG.md
    CHANGED
    
    | @@ -1,5 +1,21 @@ | |
| 1 1 | 
             
            # Changelog
         | 
| 2 2 |  | 
| 3 | 
            +
            ## 1.103.0 (2025-10-07)
         | 
| 4 | 
            +
             | 
| 5 | 
            +
            Full Changelog: [v1.102.0...v1.103.0](https://github.com/Increase/increase-ruby/compare/v1.102.0...v1.103.0)
         | 
| 6 | 
            +
             | 
| 7 | 
            +
            ### Features
         | 
| 8 | 
            +
             | 
| 9 | 
            +
            * **api:** api update ([207fbb9](https://github.com/Increase/increase-ruby/commit/207fbb927ffcf3e900506fc28510d051ef5fa1ed))
         | 
| 10 | 
            +
             | 
| 11 | 
            +
            ## 1.102.0 (2025-10-06)
         | 
| 12 | 
            +
             | 
| 13 | 
            +
            Full Changelog: [v1.101.0...v1.102.0](https://github.com/Increase/increase-ruby/compare/v1.101.0...v1.102.0)
         | 
| 14 | 
            +
             | 
| 15 | 
            +
            ### Features
         | 
| 16 | 
            +
             | 
| 17 | 
            +
            * **api:** api update ([c26001f](https://github.com/Increase/increase-ruby/commit/c26001f4d6d634a08d4b29382e82964a21d165bf))
         | 
| 18 | 
            +
             | 
| 3 19 | 
             
            ## 1.101.0 (2025-10-06)
         | 
| 4 20 |  | 
| 5 21 | 
             
            Full Changelog: [v1.100.1...v1.101.0](https://github.com/Increase/increase-ruby/compare/v1.100.1...v1.101.0)
         | 
    
        data/README.md
    CHANGED
    
    
| @@ -36,7 +36,7 @@ module Increase | |
| 36 36 | 
             
                  required :created_at, Time
         | 
| 37 37 |  | 
| 38 38 | 
             
                  # @!attribute deposit_acceptance
         | 
| 39 | 
            -
                  #    | 
| 39 | 
            +
                  #   Once your deposit is successfully parsed and accepted by Increase, this will
         | 
| 40 40 | 
             
                  #   contain details of the parsed check.
         | 
| 41 41 | 
             
                  #
         | 
| 42 42 | 
             
                  #   @return [Increase::Models::CheckDeposit::DepositAcceptance, nil]
         | 
| @@ -139,7 +139,7 @@ module Increase | |
| 139 139 | 
             
                  #
         | 
| 140 140 | 
             
                  #   @param created_at [Time] The [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) date and time at which th
         | 
| 141 141 | 
             
                  #
         | 
| 142 | 
            -
                  #   @param deposit_acceptance [Increase::Models::CheckDeposit::DepositAcceptance, nil]  | 
| 142 | 
            +
                  #   @param deposit_acceptance [Increase::Models::CheckDeposit::DepositAcceptance, nil] Once your deposit is successfully parsed and accepted by Increase, this will con
         | 
| 143 143 | 
             
                  #
         | 
| 144 144 | 
             
                  #   @param deposit_rejection [Increase::Models::CheckDeposit::DepositRejection, nil] If your deposit is rejected by Increase, this will contain details as to why it
         | 
| 145 145 | 
             
                  #
         | 
| @@ -168,7 +168,8 @@ module Increase | |
| 168 168 | 
             
                  # @see Increase::Models::CheckDeposit#deposit_acceptance
         | 
| 169 169 | 
             
                  class DepositAcceptance < Increase::Internal::Type::BaseModel
         | 
| 170 170 | 
             
                    # @!attribute account_number
         | 
| 171 | 
            -
                    #   The account number printed on the check.
         | 
| 171 | 
            +
                    #   The account number printed on the check. This is an account at the bank that
         | 
| 172 | 
            +
                    #   issued the check.
         | 
| 172 173 | 
             
                    #
         | 
| 173 174 | 
             
                    #   @return [String]
         | 
| 174 175 | 
             
                    required :account_number, String
         | 
| @@ -201,7 +202,8 @@ module Increase | |
| 201 202 | 
             
                    required :currency, enum: -> { Increase::CheckDeposit::DepositAcceptance::Currency }
         | 
| 202 203 |  | 
| 203 204 | 
             
                    # @!attribute routing_number
         | 
| 204 | 
            -
                    #   The routing number printed on the check.
         | 
| 205 | 
            +
                    #   The routing number printed on the check. This is a routing number for the bank
         | 
| 206 | 
            +
                    #   that issued the check.
         | 
| 205 207 | 
             
                    #
         | 
| 206 208 | 
             
                    #   @return [String]
         | 
| 207 209 | 
             
                    required :routing_number, String
         | 
| @@ -217,10 +219,10 @@ module Increase | |
| 217 219 | 
             
                    #   Some parameter documentations has been truncated, see
         | 
| 218 220 | 
             
                    #   {Increase::Models::CheckDeposit::DepositAcceptance} for more details.
         | 
| 219 221 | 
             
                    #
         | 
| 220 | 
            -
                    #    | 
| 222 | 
            +
                    #   Once your deposit is successfully parsed and accepted by Increase, this will
         | 
| 221 223 | 
             
                    #   contain details of the parsed check.
         | 
| 222 224 | 
             
                    #
         | 
| 223 | 
            -
                    #   @param account_number [String] The account number printed on the check.
         | 
| 225 | 
            +
                    #   @param account_number [String] The account number printed on the check. This is an account at the bank that iss
         | 
| 224 226 | 
             
                    #
         | 
| 225 227 | 
             
                    #   @param amount [Integer] The amount to be deposited in the minor unit of the transaction's currency. For
         | 
| 226 228 | 
             
                    #
         | 
| @@ -230,7 +232,7 @@ module Increase | |
| 230 232 | 
             
                    #
         | 
| 231 233 | 
             
                    #   @param currency [Symbol, Increase::Models::CheckDeposit::DepositAcceptance::Currency] The [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) code for the transaction'
         | 
| 232 234 | 
             
                    #
         | 
| 233 | 
            -
                    #   @param routing_number [String] The routing number printed on the check.
         | 
| 235 | 
            +
                    #   @param routing_number [String] The routing number printed on the check. This is a routing number for the bank t
         | 
| 234 236 | 
             
                    #
         | 
| 235 237 | 
             
                    #   @param serial_number [String, nil] The check serial number, if present, for consumer checks. For business checks, t
         | 
| 236 238 |  | 
| @@ -11,6 +11,12 @@ module Increase | |
| 11 11 | 
             
                  #   @return [String]
         | 
| 12 12 | 
             
                  required :access_token, String
         | 
| 13 13 |  | 
| 14 | 
            +
                  # @!attribute group_id
         | 
| 15 | 
            +
                  #   The Group's identifier. A Group is the top-level organization in Increase.
         | 
| 16 | 
            +
                  #
         | 
| 17 | 
            +
                  #   @return [String]
         | 
| 18 | 
            +
                  required :group_id, String
         | 
| 19 | 
            +
             | 
| 14 20 | 
             
                  # @!attribute token_type
         | 
| 15 21 | 
             
                  #   The type of OAuth token.
         | 
| 16 22 | 
             
                  #
         | 
| @@ -24,7 +30,7 @@ module Increase | |
| 24 30 | 
             
                  #   @return [Symbol, Increase::Models::OAuthToken::Type]
         | 
| 25 31 | 
             
                  required :type, enum: -> { Increase::OAuthToken::Type }
         | 
| 26 32 |  | 
| 27 | 
            -
                  # @!method initialize(access_token:, token_type:, type:)
         | 
| 33 | 
            +
                  # @!method initialize(access_token:, group_id:, token_type:, type:)
         | 
| 28 34 | 
             
                  #   Some parameter documentations has been truncated, see
         | 
| 29 35 | 
             
                  #   {Increase::Models::OAuthToken} for more details.
         | 
| 30 36 | 
             
                  #
         | 
| @@ -34,6 +40,8 @@ module Increase | |
| 34 40 | 
             
                  #
         | 
| 35 41 | 
             
                  #   @param access_token [String] You may use this token in place of an API key to make OAuth requests on a user's
         | 
| 36 42 | 
             
                  #
         | 
| 43 | 
            +
                  #   @param group_id [String] The Group's identifier. A Group is the top-level organization in Increase.
         | 
| 44 | 
            +
                  #
         | 
| 37 45 | 
             
                  #   @param token_type [Symbol, Increase::Models::OAuthToken::TokenType] The type of OAuth token.
         | 
| 38 46 | 
             
                  #
         | 
| 39 47 | 
             
                  #   @param type [Symbol, Increase::Models::OAuthToken::Type] A constant representing the object's type. For this resource it will always be `
         | 
| @@ -5485,7 +5485,8 @@ module Increase | |
| 5485 5485 | 
             
                    # @see Increase::Models::Transaction::Source#check_deposit_acceptance
         | 
| 5486 5486 | 
             
                    class CheckDepositAcceptance < Increase::Internal::Type::BaseModel
         | 
| 5487 5487 | 
             
                      # @!attribute account_number
         | 
| 5488 | 
            -
                      #   The account number printed on the check.
         | 
| 5488 | 
            +
                      #   The account number printed on the check. This is an account at the bank that
         | 
| 5489 | 
            +
                      #   issued the check.
         | 
| 5489 5490 | 
             
                      #
         | 
| 5490 5491 | 
             
                      #   @return [String]
         | 
| 5491 5492 | 
             
                      required :account_number, String
         | 
| @@ -5518,7 +5519,8 @@ module Increase | |
| 5518 5519 | 
             
                      required :currency, enum: -> { Increase::Transaction::Source::CheckDepositAcceptance::Currency }
         | 
| 5519 5520 |  | 
| 5520 5521 | 
             
                      # @!attribute routing_number
         | 
| 5521 | 
            -
                      #   The routing number printed on the check.
         | 
| 5522 | 
            +
                      #   The routing number printed on the check. This is a routing number for the bank
         | 
| 5523 | 
            +
                      #   that issued the check.
         | 
| 5522 5524 | 
             
                      #
         | 
| 5523 5525 | 
             
                      #   @return [String]
         | 
| 5524 5526 | 
             
                      required :routing_number, String
         | 
| @@ -5541,7 +5543,7 @@ module Increase | |
| 5541 5543 | 
             
                      #   details confirmed. Check Deposits may be returned by the receiving bank, which
         | 
| 5542 5544 | 
             
                      #   will appear as a Check Deposit Return.
         | 
| 5543 5545 | 
             
                      #
         | 
| 5544 | 
            -
                      #   @param account_number [String] The account number printed on the check.
         | 
| 5546 | 
            +
                      #   @param account_number [String] The account number printed on the check. This is an account at the bank that iss
         | 
| 5545 5547 | 
             
                      #
         | 
| 5546 5548 | 
             
                      #   @param amount [Integer] The amount to be deposited in the minor unit of the transaction's currency. For
         | 
| 5547 5549 | 
             
                      #
         | 
| @@ -5551,7 +5553,7 @@ module Increase | |
| 5551 5553 | 
             
                      #
         | 
| 5552 5554 | 
             
                      #   @param currency [Symbol, Increase::Models::Transaction::Source::CheckDepositAcceptance::Currency] The [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) code for the transaction'
         | 
| 5553 5555 | 
             
                      #
         | 
| 5554 | 
            -
                      #   @param routing_number [String] The routing number printed on the check.
         | 
| 5556 | 
            +
                      #   @param routing_number [String] The routing number printed on the check. This is a routing number for the bank t
         | 
| 5555 5557 | 
             
                      #
         | 
| 5556 5558 | 
             
                      #   @param serial_number [String, nil] The check serial number, if present, for consumer checks. For business checks, t
         | 
| 5557 5559 |  | 
    
        data/lib/increase/version.rb
    CHANGED
    
    
| @@ -29,7 +29,7 @@ module Increase | |
| 29 29 | 
             
                  sig { returns(Time) }
         | 
| 30 30 | 
             
                  attr_accessor :created_at
         | 
| 31 31 |  | 
| 32 | 
            -
                  #  | 
| 32 | 
            +
                  # Once your deposit is successfully parsed and accepted by Increase, this will
         | 
| 33 33 | 
             
                  # contain details of the parsed check.
         | 
| 34 34 | 
             
                  sig { returns(T.nilable(Increase::CheckDeposit::DepositAcceptance)) }
         | 
| 35 35 | 
             
                  attr_reader :deposit_acceptance
         | 
| @@ -171,7 +171,7 @@ module Increase | |
| 171 171 | 
             
                    # The [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) date and time at which
         | 
| 172 172 | 
             
                    # the transfer was created.
         | 
| 173 173 | 
             
                    created_at:,
         | 
| 174 | 
            -
                    #  | 
| 174 | 
            +
                    # Once your deposit is successfully parsed and accepted by Increase, this will
         | 
| 175 175 | 
             
                    # contain details of the parsed check.
         | 
| 176 176 | 
             
                    deposit_acceptance:,
         | 
| 177 177 | 
             
                    # If your deposit is rejected by Increase, this will contain details as to why it
         | 
| @@ -250,7 +250,8 @@ module Increase | |
| 250 250 | 
             
                        )
         | 
| 251 251 | 
             
                      end
         | 
| 252 252 |  | 
| 253 | 
            -
                    # The account number printed on the check.
         | 
| 253 | 
            +
                    # The account number printed on the check. This is an account at the bank that
         | 
| 254 | 
            +
                    # issued the check.
         | 
| 254 255 | 
             
                    sig { returns(String) }
         | 
| 255 256 | 
             
                    attr_accessor :account_number
         | 
| 256 257 |  | 
| @@ -277,7 +278,8 @@ module Increase | |
| 277 278 | 
             
                    end
         | 
| 278 279 | 
             
                    attr_accessor :currency
         | 
| 279 280 |  | 
| 280 | 
            -
                    # The routing number printed on the check.
         | 
| 281 | 
            +
                    # The routing number printed on the check. This is a routing number for the bank
         | 
| 282 | 
            +
                    # that issued the check.
         | 
| 281 283 | 
             
                    sig { returns(String) }
         | 
| 282 284 | 
             
                    attr_accessor :routing_number
         | 
| 283 285 |  | 
| @@ -286,7 +288,7 @@ module Increase | |
| 286 288 | 
             
                    sig { returns(T.nilable(String)) }
         | 
| 287 289 | 
             
                    attr_accessor :serial_number
         | 
| 288 290 |  | 
| 289 | 
            -
                    #  | 
| 291 | 
            +
                    # Once your deposit is successfully parsed and accepted by Increase, this will
         | 
| 290 292 | 
             
                    # contain details of the parsed check.
         | 
| 291 293 | 
             
                    sig do
         | 
| 292 294 | 
             
                      params(
         | 
| @@ -301,7 +303,8 @@ module Increase | |
| 301 303 | 
             
                      ).returns(T.attached_class)
         | 
| 302 304 | 
             
                    end
         | 
| 303 305 | 
             
                    def self.new(
         | 
| 304 | 
            -
                      # The account number printed on the check.
         | 
| 306 | 
            +
                      # The account number printed on the check. This is an account at the bank that
         | 
| 307 | 
            +
                      # issued the check.
         | 
| 305 308 | 
             
                      account_number:,
         | 
| 306 309 | 
             
                      # The amount to be deposited in the minor unit of the transaction's currency. For
         | 
| 307 310 | 
             
                      # dollars, for example, this is cents.
         | 
| @@ -314,7 +317,8 @@ module Increase | |
| 314 317 | 
             
                      # The [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) code for the
         | 
| 315 318 | 
             
                      # transaction's currency.
         | 
| 316 319 | 
             
                      currency:,
         | 
| 317 | 
            -
                      # The routing number printed on the check.
         | 
| 320 | 
            +
                      # The routing number printed on the check. This is a routing number for the bank
         | 
| 321 | 
            +
                      # that issued the check.
         | 
| 318 322 | 
             
                      routing_number:,
         | 
| 319 323 | 
             
                      # The check serial number, if present, for consumer checks. For business checks,
         | 
| 320 324 | 
             
                      # the serial number is usually in the `auxiliary_on_us` field.
         | 
| @@ -13,6 +13,10 @@ module Increase | |
| 13 13 | 
             
                  sig { returns(String) }
         | 
| 14 14 | 
             
                  attr_accessor :access_token
         | 
| 15 15 |  | 
| 16 | 
            +
                  # The Group's identifier. A Group is the top-level organization in Increase.
         | 
| 17 | 
            +
                  sig { returns(String) }
         | 
| 18 | 
            +
                  attr_accessor :group_id
         | 
| 19 | 
            +
             | 
| 16 20 | 
             
                  # The type of OAuth token.
         | 
| 17 21 | 
             
                  sig { returns(Increase::OAuthToken::TokenType::TaggedSymbol) }
         | 
| 18 22 | 
             
                  attr_accessor :token_type
         | 
| @@ -28,6 +32,7 @@ module Increase | |
| 28 32 | 
             
                  sig do
         | 
| 29 33 | 
             
                    params(
         | 
| 30 34 | 
             
                      access_token: String,
         | 
| 35 | 
            +
                      group_id: String,
         | 
| 31 36 | 
             
                      token_type: Increase::OAuthToken::TokenType::OrSymbol,
         | 
| 32 37 | 
             
                      type: Increase::OAuthToken::Type::OrSymbol
         | 
| 33 38 | 
             
                    ).returns(T.attached_class)
         | 
| @@ -36,6 +41,8 @@ module Increase | |
| 36 41 | 
             
                    # You may use this token in place of an API key to make OAuth requests on a user's
         | 
| 37 42 | 
             
                    # behalf.
         | 
| 38 43 | 
             
                    access_token:,
         | 
| 44 | 
            +
                    # The Group's identifier. A Group is the top-level organization in Increase.
         | 
| 45 | 
            +
                    group_id:,
         | 
| 39 46 | 
             
                    # The type of OAuth token.
         | 
| 40 47 | 
             
                    token_type:,
         | 
| 41 48 | 
             
                    # A constant representing the object's type. For this resource it will always be
         | 
| @@ -48,6 +55,7 @@ module Increase | |
| 48 55 | 
             
                    override.returns(
         | 
| 49 56 | 
             
                      {
         | 
| 50 57 | 
             
                        access_token: String,
         | 
| 58 | 
            +
                        group_id: String,
         | 
| 51 59 | 
             
                        token_type: Increase::OAuthToken::TokenType::TaggedSymbol,
         | 
| 52 60 | 
             
                        type: Increase::OAuthToken::Type::TaggedSymbol
         | 
| 53 61 | 
             
                      }
         | 
| @@ -10334,7 +10334,8 @@ module Increase | |
| 10334 10334 | 
             
                          )
         | 
| 10335 10335 | 
             
                        end
         | 
| 10336 10336 |  | 
| 10337 | 
            -
                      # The account number printed on the check.
         | 
| 10337 | 
            +
                      # The account number printed on the check. This is an account at the bank that
         | 
| 10338 | 
            +
                      # issued the check.
         | 
| 10338 10339 | 
             
                      sig { returns(String) }
         | 
| 10339 10340 | 
             
                      attr_accessor :account_number
         | 
| 10340 10341 |  | 
| @@ -10361,7 +10362,8 @@ module Increase | |
| 10361 10362 | 
             
                      end
         | 
| 10362 10363 | 
             
                      attr_accessor :currency
         | 
| 10363 10364 |  | 
| 10364 | 
            -
                      # The routing number printed on the check.
         | 
| 10365 | 
            +
                      # The routing number printed on the check. This is a routing number for the bank
         | 
| 10366 | 
            +
                      # that issued the check.
         | 
| 10365 10367 | 
             
                      sig { returns(String) }
         | 
| 10366 10368 | 
             
                      attr_accessor :routing_number
         | 
| 10367 10369 |  | 
| @@ -10388,7 +10390,8 @@ module Increase | |
| 10388 10390 | 
             
                        ).returns(T.attached_class)
         | 
| 10389 10391 | 
             
                      end
         | 
| 10390 10392 | 
             
                      def self.new(
         | 
| 10391 | 
            -
                        # The account number printed on the check.
         | 
| 10393 | 
            +
                        # The account number printed on the check. This is an account at the bank that
         | 
| 10394 | 
            +
                        # issued the check.
         | 
| 10392 10395 | 
             
                        account_number:,
         | 
| 10393 10396 | 
             
                        # The amount to be deposited in the minor unit of the transaction's currency. For
         | 
| 10394 10397 | 
             
                        # dollars, for example, this is cents.
         | 
| @@ -10401,7 +10404,8 @@ module Increase | |
| 10401 10404 | 
             
                        # The [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) code for the
         | 
| 10402 10405 | 
             
                        # transaction's currency.
         | 
| 10403 10406 | 
             
                        currency:,
         | 
| 10404 | 
            -
                        # The routing number printed on the check.
         | 
| 10407 | 
            +
                        # The routing number printed on the check. This is a routing number for the bank
         | 
| 10408 | 
            +
                        # that issued the check.
         | 
| 10405 10409 | 
             
                        routing_number:,
         | 
| 10406 10410 | 
             
                        # The check serial number, if present, for consumer checks. For business checks,
         | 
| 10407 10411 | 
             
                        # the serial number is usually in the `auxiliary_on_us` field.
         | 
| @@ -3,6 +3,7 @@ module Increase | |
| 3 3 | 
             
                type oauth_token =
         | 
| 4 4 | 
             
                  {
         | 
| 5 5 | 
             
                    access_token: String,
         | 
| 6 | 
            +
                    group_id: String,
         | 
| 6 7 | 
             
                    token_type: Increase::Models::OAuthToken::token_type,
         | 
| 7 8 | 
             
                    type: Increase::Models::OAuthToken::type_
         | 
| 8 9 | 
             
                  }
         | 
| @@ -10,18 +11,22 @@ module Increase | |
| 10 11 | 
             
                class OAuthToken < Increase::Internal::Type::BaseModel
         | 
| 11 12 | 
             
                  attr_accessor access_token: String
         | 
| 12 13 |  | 
| 14 | 
            +
                  attr_accessor group_id: String
         | 
| 15 | 
            +
             | 
| 13 16 | 
             
                  attr_accessor token_type: Increase::Models::OAuthToken::token_type
         | 
| 14 17 |  | 
| 15 18 | 
             
                  attr_accessor type: Increase::Models::OAuthToken::type_
         | 
| 16 19 |  | 
| 17 20 | 
             
                  def initialize: (
         | 
| 18 21 | 
             
                    access_token: String,
         | 
| 22 | 
            +
                    group_id: String,
         | 
| 19 23 | 
             
                    token_type: Increase::Models::OAuthToken::token_type,
         | 
| 20 24 | 
             
                    type: Increase::Models::OAuthToken::type_
         | 
| 21 25 | 
             
                  ) -> void
         | 
| 22 26 |  | 
| 23 27 | 
             
                  def to_hash: -> {
         | 
| 24 28 | 
             
                    access_token: String,
         | 
| 29 | 
            +
                    group_id: String,
         | 
| 25 30 | 
             
                    token_type: Increase::Models::OAuthToken::token_type,
         | 
| 26 31 | 
             
                    type: Increase::Models::OAuthToken::type_
         | 
| 27 32 | 
             
                  }
         | 
    
        metadata
    CHANGED
    
    | @@ -1,14 +1,14 @@ | |
| 1 1 | 
             
            --- !ruby/object:Gem::Specification
         | 
| 2 2 | 
             
            name: increase
         | 
| 3 3 | 
             
            version: !ruby/object:Gem::Version
         | 
| 4 | 
            -
              version: 1. | 
| 4 | 
            +
              version: 1.103.0
         | 
| 5 5 | 
             
            platform: ruby
         | 
| 6 6 | 
             
            authors:
         | 
| 7 7 | 
             
            - Increase
         | 
| 8 8 | 
             
            autorequire:
         | 
| 9 9 | 
             
            bindir: bin
         | 
| 10 10 | 
             
            cert_chain: []
         | 
| 11 | 
            -
            date: 2025-10- | 
| 11 | 
            +
            date: 2025-10-07 00:00:00.000000000 Z
         | 
| 12 12 | 
             
            dependencies:
         | 
| 13 13 | 
             
            - !ruby/object:Gem::Dependency
         | 
| 14 14 | 
             
              name: connection_pool
         |