increase 1.121.0 → 1.122.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
    
        checksums.yaml
    CHANGED
    
    | @@ -1,7 +1,7 @@ | |
| 1 1 | 
             
            ---
         | 
| 2 2 | 
             
            SHA256:
         | 
| 3 | 
            -
              metadata.gz:  | 
| 4 | 
            -
              data.tar.gz:  | 
| 3 | 
            +
              metadata.gz: 59fd06af129c1b20f150d16e309402fcf34534e24775a900cf38cb20dd96ae36
         | 
| 4 | 
            +
              data.tar.gz: 83c7670026021abb427bd94c5e7891918134ce90eca9f8ed7c2972deb2b06f1a
         | 
| 5 5 | 
             
            SHA512:
         | 
| 6 | 
            -
              metadata.gz:  | 
| 7 | 
            -
              data.tar.gz:  | 
| 6 | 
            +
              metadata.gz: 973bd6c6b98df3cca91b70076c8fd3903ac7ddc86f056234aac8a6476780379c42bc364240ff3a4d4a86c8fceea0415f409d1ac85ec74b3574a37eaef78b7e75
         | 
| 7 | 
            +
              data.tar.gz: bfad97ad77a2a198ce457d13754ca0d5fc95e3cd7724e149c2d90a24770bc03ac9c3ff387fb6c6b73aaf830c8e78c8fd0c080657f72d9d45717eac7967d1c63d
         | 
    
        data/CHANGELOG.md
    CHANGED
    
    | @@ -1,5 +1,13 @@ | |
| 1 1 | 
             
            # Changelog
         | 
| 2 2 |  | 
| 3 | 
            +
            ## 1.122.0 (2025-10-29)
         | 
| 4 | 
            +
             | 
| 5 | 
            +
            Full Changelog: [v1.121.0...v1.122.0](https://github.com/Increase/increase-ruby/compare/v1.121.0...v1.122.0)
         | 
| 6 | 
            +
             | 
| 7 | 
            +
            ### Features
         | 
| 8 | 
            +
             | 
| 9 | 
            +
            * **api:** api update ([77104e0](https://github.com/Increase/increase-ruby/commit/77104e0578897433f919507fafdcca3915c3db5a))
         | 
| 10 | 
            +
             | 
| 3 11 | 
             
            ## 1.121.0 (2025-10-29)
         | 
| 4 12 |  | 
| 5 13 | 
             
            Full Changelog: [v1.120.0...v1.121.0](https://github.com/Increase/increase-ruby/compare/v1.120.0...v1.121.0)
         | 
    
        data/README.md
    CHANGED
    
    
| @@ -654,6 +654,9 @@ module Increase | |
| 654 654 | 
             
                      # A public entity acting on behalf of the federal or a state government.
         | 
| 655 655 | 
             
                      PUBLIC_ENTITY = :public_entity
         | 
| 656 656 |  | 
| 657 | 
            +
                      # Any other reason why this entity is exempt from the requirement to submit beneficial owners. You can only use this exemption after approval from your bank partner.
         | 
| 658 | 
            +
                      OTHER = :other
         | 
| 659 | 
            +
             | 
| 657 660 | 
             
                      # @!method self.values
         | 
| 658 661 | 
             
                      #   @return [Array<Symbol>]
         | 
| 659 662 | 
             
                    end
         | 
    
        data/lib/increase/version.rb
    CHANGED
    
    
| @@ -1212,6 +1212,13 @@ module Increase | |
| 1212 1212 | 
             
                          Increase::EntityCreateParams::Corporation::BeneficialOwnershipExemptionReason::TaggedSymbol
         | 
| 1213 1213 | 
             
                        )
         | 
| 1214 1214 |  | 
| 1215 | 
            +
                      # Any other reason why this entity is exempt from the requirement to submit beneficial owners. You can only use this exemption after approval from your bank partner.
         | 
| 1216 | 
            +
                      OTHER =
         | 
| 1217 | 
            +
                        T.let(
         | 
| 1218 | 
            +
                          :other,
         | 
| 1219 | 
            +
                          Increase::EntityCreateParams::Corporation::BeneficialOwnershipExemptionReason::TaggedSymbol
         | 
| 1220 | 
            +
                        )
         | 
| 1221 | 
            +
             | 
| 1215 1222 | 
             
                      sig do
         | 
| 1216 1223 | 
             
                        override.returns(
         | 
| 1217 1224 | 
             
                          T::Array[
         | 
| @@ -534,6 +534,7 @@ module Increase | |
| 534 534 | 
             
                      :regulated_financial_institution
         | 
| 535 535 | 
             
                      | :publicly_traded_company
         | 
| 536 536 | 
             
                      | :public_entity
         | 
| 537 | 
            +
                      | :other
         | 
| 537 538 |  | 
| 538 539 | 
             
                    module BeneficialOwnershipExemptionReason
         | 
| 539 540 | 
             
                      extend Increase::Internal::Type::Enum
         | 
| @@ -547,6 +548,9 @@ module Increase | |
| 547 548 | 
             
                      # A public entity acting on behalf of the federal or a state government.
         | 
| 548 549 | 
             
                      PUBLIC_ENTITY: :public_entity
         | 
| 549 550 |  | 
| 551 | 
            +
                      # Any other reason why this entity is exempt from the requirement to submit beneficial owners. You can only use this exemption after approval from your bank partner.
         | 
| 552 | 
            +
                      OTHER: :other
         | 
| 553 | 
            +
             | 
| 550 554 | 
             
                      def self?.values: -> ::Array[Increase::Models::EntityCreateParams::Corporation::beneficial_ownership_exemption_reason]
         | 
| 551 555 | 
             
                    end
         | 
| 552 556 | 
             
                  end
         |