increase 1.116.0 → 1.118.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_payment.rb +1420 -237
- data/lib/increase/models/simulations/card_authorization_create_params.rb +23 -1
- data/lib/increase/version.rb +1 -1
- data/rbi/increase/models/card_payment.rbi +2510 -250
- data/rbi/increase/models/simulations/card_authorization_create_params.rbi +58 -3
- data/sig/increase/models/card_payment.rbs +1046 -248
- data/sig/increase/models/simulations/card_authorization_create_params.rbs +24 -3
- metadata +2 -2
| @@ -305,18 +305,27 @@ module Increase | |
| 305 305 |  | 
| 306 306 | 
             
                    type processing_category =
         | 
| 307 307 | 
             
                      {
         | 
| 308 | 
            -
                        category: Increase::Models::Simulations::CardAuthorizationCreateParams::ProcessingCategory::category
         | 
| 308 | 
            +
                        category: Increase::Models::Simulations::CardAuthorizationCreateParams::ProcessingCategory::category,
         | 
| 309 | 
            +
                        refund: Increase::Simulations::CardAuthorizationCreateParams::ProcessingCategory::Refund
         | 
| 309 310 | 
             
                      }
         | 
| 310 311 |  | 
| 311 312 | 
             
                    class ProcessingCategory < Increase::Internal::Type::BaseModel
         | 
| 312 313 | 
             
                      attr_accessor category: Increase::Models::Simulations::CardAuthorizationCreateParams::ProcessingCategory::category
         | 
| 313 314 |  | 
| 315 | 
            +
                      attr_reader refund: Increase::Simulations::CardAuthorizationCreateParams::ProcessingCategory::Refund?
         | 
| 316 | 
            +
             | 
| 317 | 
            +
                      def refund=: (
         | 
| 318 | 
            +
                        Increase::Simulations::CardAuthorizationCreateParams::ProcessingCategory::Refund
         | 
| 319 | 
            +
                      ) -> Increase::Simulations::CardAuthorizationCreateParams::ProcessingCategory::Refund
         | 
| 320 | 
            +
             | 
| 314 321 | 
             
                      def initialize: (
         | 
| 315 | 
            -
                        category: Increase::Models::Simulations::CardAuthorizationCreateParams::ProcessingCategory::category
         | 
| 322 | 
            +
                        category: Increase::Models::Simulations::CardAuthorizationCreateParams::ProcessingCategory::category,
         | 
| 323 | 
            +
                        ?refund: Increase::Simulations::CardAuthorizationCreateParams::ProcessingCategory::Refund
         | 
| 316 324 | 
             
                      ) -> void
         | 
| 317 325 |  | 
| 318 326 | 
             
                      def to_hash: -> {
         | 
| 319 | 
            -
                        category: Increase::Models::Simulations::CardAuthorizationCreateParams::ProcessingCategory::category
         | 
| 327 | 
            +
                        category: Increase::Models::Simulations::CardAuthorizationCreateParams::ProcessingCategory::category,
         | 
| 328 | 
            +
                        refund: Increase::Simulations::CardAuthorizationCreateParams::ProcessingCategory::Refund
         | 
| 320 329 | 
             
                      }
         | 
| 321 330 |  | 
| 322 331 | 
             
                      type category =
         | 
| @@ -358,6 +367,18 @@ module Increase | |
| 358 367 |  | 
| 359 368 | 
             
                        def self?.values: -> ::Array[Increase::Models::Simulations::CardAuthorizationCreateParams::ProcessingCategory::category]
         | 
| 360 369 | 
             
                      end
         | 
| 370 | 
            +
             | 
| 371 | 
            +
                      type refund = { original_card_payment_id: String }
         | 
| 372 | 
            +
             | 
| 373 | 
            +
                      class Refund < Increase::Internal::Type::BaseModel
         | 
| 374 | 
            +
                        attr_reader original_card_payment_id: String?
         | 
| 375 | 
            +
             | 
| 376 | 
            +
                        def original_card_payment_id=: (String) -> String
         | 
| 377 | 
            +
             | 
| 378 | 
            +
                        def initialize: (?original_card_payment_id: String) -> void
         | 
| 379 | 
            +
             | 
| 380 | 
            +
                        def to_hash: -> { original_card_payment_id: String }
         | 
| 381 | 
            +
                      end
         | 
| 361 382 | 
             
                    end
         | 
| 362 383 | 
             
                  end
         | 
| 363 384 | 
             
                end
         | 
    
        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.118.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-28 00:00:00.000000000 Z
         | 
| 12 12 | 
             
            dependencies:
         | 
| 13 13 | 
             
            - !ruby/object:Gem::Dependency
         | 
| 14 14 | 
             
              name: connection_pool
         |