Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "1.121.0"
".": "1.122.0"
}
4 changes: 2 additions & 2 deletions .stats.yml
Original file line number Diff line number Diff line change
@@ -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
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)
Expand Down
2 changes: 1 addition & 1 deletion Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ GIT
PATH
remote: .
specs:
increase (1.121.0)
increase (1.122.0)
connection_pool

GEM
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ To use this gem, install via Bundler by adding the following to your application
<!-- x-release-please-start-version -->

```ruby
gem "increase", "~> 1.121.0"
gem "increase", "~> 1.122.0"
```

<!-- x-release-please-end -->
Expand Down
3 changes: 3 additions & 0 deletions lib/increase/models/entity_create_params.rb
Original file line number Diff line number Diff line change
Expand Up @@ -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<Symbol>]
end
Expand Down
2 changes: 1 addition & 1 deletion lib/increase/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# frozen_string_literal: true

module Increase
VERSION = "1.121.0"
VERSION = "1.122.0"
end
7 changes: 7 additions & 0 deletions rbi/increase/models/entity_create_params.rbi
Original file line number Diff line number Diff line change
Expand Up @@ -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[
Expand Down
4 changes: 4 additions & 0 deletions sig/increase/models/entity_create_params.rbs
Original file line number Diff line number Diff line change
Expand Up @@ -534,6 +534,7 @@ module Increase
:regulated_financial_institution
| :publicly_traded_company
| :public_entity
| :other

module BeneficialOwnershipExemptionReason
extend Increase::Internal::Type::Enum
Expand All @@ -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
Expand Down