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.34.0"
".": "1.35.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: 214
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-931013cdbe08378a853b2fd05800091aba88acebe919ec5088d2dd25c0846331.yml
openapi_spec_hash: 6cfed987ca287da4d3e52ace77b0e417
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-70837ed2f8d4ade9021fc0f50bf3cd77cdf05f308c4ed75b2b4dcc42f1ec2378.yml
openapi_spec_hash: 09cf1c77dce2927cb41426a287a15437
config_hash: b0b366d8c705ea0efe62093bae953e5a
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## 1.35.0 (2025-08-15)

Full Changelog: [v1.34.0...v1.35.0](https://github.com/Increase/increase-ruby/compare/v1.34.0...v1.35.0)

### Features

* **api:** api update ([ca8b776](https://github.com/Increase/increase-ruby/commit/ca8b7769f961fc457087f239a1790390caae245a))

## 1.34.0 (2025-08-14)

Full Changelog: [v1.33.0...v1.34.0](https://github.com/Increase/increase-ruby/compare/v1.33.0...v1.34.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.34.0)
increase (1.35.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.34.0"
gem "increase", "~> 1.35.0"
```

<!-- x-release-please-end -->
Expand Down
3 changes: 3 additions & 0 deletions lib/increase/models/external_account.rb
Original file line number Diff line number Diff line change
Expand Up @@ -126,6 +126,9 @@ module Funding
# A savings account.
SAVINGS = :savings

# A general ledger account.
GENERAL_LEDGER = :general_ledger

# A different type of account.
OTHER = :other

Expand Down
3 changes: 3 additions & 0 deletions lib/increase/models/external_account_create_params.rb
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,9 @@ module Funding
# A savings account.
SAVINGS = :savings

# A general ledger account.
GENERAL_LEDGER = :general_ledger

# A different type of account.
OTHER = :other

Expand Down
3 changes: 3 additions & 0 deletions lib/increase/models/external_account_update_params.rb
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,9 @@ module Funding
# A savings account.
SAVINGS = :savings

# A general ledger account.
GENERAL_LEDGER = :general_ledger

# A different type of account.
OTHER = :other

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.34.0"
VERSION = "1.35.0"
end
7 changes: 7 additions & 0 deletions rbi/increase/models/external_account.rbi
Original file line number Diff line number Diff line change
Expand Up @@ -172,6 +172,13 @@ module Increase
SAVINGS =
T.let(:savings, Increase::ExternalAccount::Funding::TaggedSymbol)

# A general ledger account.
GENERAL_LEDGER =
T.let(
:general_ledger,
Increase::ExternalAccount::Funding::TaggedSymbol
)

# A different type of account.
OTHER = T.let(:other, Increase::ExternalAccount::Funding::TaggedSymbol)

Expand Down
7 changes: 7 additions & 0 deletions rbi/increase/models/external_account_create_params.rbi
Original file line number Diff line number Diff line change
Expand Up @@ -169,6 +169,13 @@ module Increase
Increase::ExternalAccountCreateParams::Funding::TaggedSymbol
)

# A general ledger account.
GENERAL_LEDGER =
T.let(
:general_ledger,
Increase::ExternalAccountCreateParams::Funding::TaggedSymbol
)

# A different type of account.
OTHER =
T.let(
Expand Down
7 changes: 7 additions & 0 deletions rbi/increase/models/external_account_update_params.rbi
Original file line number Diff line number Diff line change
Expand Up @@ -166,6 +166,13 @@ module Increase
Increase::ExternalAccountUpdateParams::Funding::TaggedSymbol
)

# A general ledger account.
GENERAL_LEDGER =
T.let(
:general_ledger,
Increase::ExternalAccountUpdateParams::Funding::TaggedSymbol
)

# A different type of account.
OTHER =
T.let(
Expand Down
5 changes: 4 additions & 1 deletion sig/increase/models/external_account.rbs
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ module Increase
def self?.values: -> ::Array[Increase::Models::ExternalAccount::account_holder]
end

type funding = :checking | :savings | :other
type funding = :checking | :savings | :general_ledger | :other

module Funding
extend Increase::Internal::Type::Enum
Expand All @@ -89,6 +89,9 @@ module Increase
# A savings account.
SAVINGS: :savings

# A general ledger account.
GENERAL_LEDGER: :general_ledger

# A different type of account.
OTHER: :other

Expand Down
5 changes: 4 additions & 1 deletion sig/increase/models/external_account_create_params.rbs
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ module Increase
def self?.values: -> ::Array[Increase::Models::ExternalAccountCreateParams::account_holder]
end

type funding = :checking | :savings | :other
type funding = :checking | :savings | :general_ledger | :other

module Funding
extend Increase::Internal::Type::Enum
Expand All @@ -78,6 +78,9 @@ module Increase
# A savings account.
SAVINGS: :savings

# A general ledger account.
GENERAL_LEDGER: :general_ledger

# A different type of account.
OTHER: :other

Expand Down
5 changes: 4 additions & 1 deletion sig/increase/models/external_account_update_params.rbs
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ module Increase
def self?.values: -> ::Array[Increase::Models::ExternalAccountUpdateParams::account_holder]
end

type funding = :checking | :savings | :other
type funding = :checking | :savings | :general_ledger | :other

module Funding
extend Increase::Internal::Type::Enum
Expand All @@ -76,6 +76,9 @@ module Increase
# A savings account.
SAVINGS: :savings

# A general ledger account.
GENERAL_LEDGER: :general_ledger

# A different type of account.
OTHER: :other

Expand Down