diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 042545f4..9dd3fb4d 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "1.121.0" + ".": "1.122.0" } \ No newline at end of file diff --git a/.stats.yml b/.stats.yml index 4cb0dd94..6a120e92 100644 --- a/.stats.yml +++ b/.stats.yml @@ -1,4 +1,4 @@ configured_endpoints: 228 -openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-1c544c0cd5413b2f03b701aba1a0868838270dbe44ebf79d4b4820704e90594b.yml -openapi_spec_hash: 02057c342dd5b1c72f2006dd28234429 +openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-2453598e129a8305006487bc7616f3ee69eb4355a6d3f185dd51404fa8142246.yml +openapi_spec_hash: e0b54d0015d39f9434659d8899bb2706 config_hash: fc8a0ae068f2feeac76f728ac6838543 diff --git a/CHANGELOG.md b/CHANGELOG.md index f2510aaf..5a18f37a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 1.122.0 (2025-10-29) + +Full Changelog: [v1.121.0...v1.122.0](https://github.com/Increase/increase-ruby/compare/v1.121.0...v1.122.0) + +### Features + +* **api:** api update ([77104e0](https://github.com/Increase/increase-ruby/commit/77104e0578897433f919507fafdcca3915c3db5a)) + ## 1.121.0 (2025-10-29) Full Changelog: [v1.120.0...v1.121.0](https://github.com/Increase/increase-ruby/compare/v1.120.0...v1.121.0) diff --git a/Gemfile.lock b/Gemfile.lock index 1d56a3fa..3bd3b7d0 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: . specs: - increase (1.121.0) + increase (1.122.0) connection_pool GEM diff --git a/README.md b/README.md index 20c56909..40d63478 100644 --- a/README.md +++ b/README.md @@ -15,7 +15,7 @@ To use this gem, install via Bundler by adding the following to your application ```ruby -gem "increase", "~> 1.121.0" +gem "increase", "~> 1.122.0" ``` diff --git a/lib/increase/models/entity_create_params.rb b/lib/increase/models/entity_create_params.rb index 279aabe9..11c5dbfc 100644 --- a/lib/increase/models/entity_create_params.rb +++ b/lib/increase/models/entity_create_params.rb @@ -654,6 +654,9 @@ module BeneficialOwnershipExemptionReason # A public entity acting on behalf of the federal or a state government. PUBLIC_ENTITY = :public_entity + # 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. + OTHER = :other + # @!method self.values # @return [Array] end diff --git a/lib/increase/version.rb b/lib/increase/version.rb index 7573b95b..eb22b242 100644 --- a/lib/increase/version.rb +++ b/lib/increase/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module Increase - VERSION = "1.121.0" + VERSION = "1.122.0" end diff --git a/rbi/increase/models/entity_create_params.rbi b/rbi/increase/models/entity_create_params.rbi index d97aae64..9fe3b51c 100644 --- a/rbi/increase/models/entity_create_params.rbi +++ b/rbi/increase/models/entity_create_params.rbi @@ -1212,6 +1212,13 @@ module Increase Increase::EntityCreateParams::Corporation::BeneficialOwnershipExemptionReason::TaggedSymbol ) + # 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. + OTHER = + T.let( + :other, + Increase::EntityCreateParams::Corporation::BeneficialOwnershipExemptionReason::TaggedSymbol + ) + sig do override.returns( T::Array[ diff --git a/sig/increase/models/entity_create_params.rbs b/sig/increase/models/entity_create_params.rbs index b9dd266f..43984f2f 100644 --- a/sig/increase/models/entity_create_params.rbs +++ b/sig/increase/models/entity_create_params.rbs @@ -534,6 +534,7 @@ module Increase :regulated_financial_institution | :publicly_traded_company | :public_entity + | :other module BeneficialOwnershipExemptionReason extend Increase::Internal::Type::Enum @@ -547,6 +548,9 @@ module Increase # A public entity acting on behalf of the federal or a state government. PUBLIC_ENTITY: :public_entity + # 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. + OTHER: :other + def self?.values: -> ::Array[Increase::Models::EntityCreateParams::Corporation::beneficial_ownership_exemption_reason] end end