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.23.0"
".": "1.24.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: 202
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-5afe14a5606cebef2ccc6c4781d566b43509e01513e8e02e41adbdeaf3275f48.yml
openapi_spec_hash: 56857e37c0c6131096bf519d91ef76d2
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-aceb2cce1f9a46b1059a04de979b4c40210190639a4c264944b4402042168804.yml
openapi_spec_hash: 5b4ea7615676e742cea44d107b8038ca
config_hash: a185e9a72778cc4658ea73fb3a7f1354
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## 1.24.0 (2025-08-04)

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

### Features

* **api:** api update ([12b5f26](https://github.com/Increase/increase-ruby/commit/12b5f266a069ef40b017526dedab92f47a326216))

## 1.23.0 (2025-08-01)

Full Changelog: [v1.22.0...v1.23.0](https://github.com/Increase/increase-ruby/compare/v1.22.0...v1.23.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.23.0)
increase (1.24.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.23.0"
gem "increase", "~> 1.24.0"
```

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

# A bank's general ledger. Uncommon.
GENERAL_LEDGER = :general_ledger

# @!method self.values
# @return [Array<Symbol>]
end
Expand Down
3 changes: 3 additions & 0 deletions lib/increase/models/ach_transfer_create_params.rb
Original file line number Diff line number Diff line change
Expand Up @@ -342,6 +342,9 @@ module Funding
# A savings account.
SAVINGS = :savings

# A bank's general ledger. Uncommon.
GENERAL_LEDGER = :general_ledger

# @!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.23.0"
VERSION = "1.24.0"
end
4 changes: 4 additions & 0 deletions rbi/increase/models/ach_transfer.rbi
Original file line number Diff line number Diff line change
Expand Up @@ -1157,6 +1157,10 @@ module Increase
# A savings account.
SAVINGS = T.let(:savings, Increase::ACHTransfer::Funding::TaggedSymbol)

# A bank's general ledger. Uncommon.
GENERAL_LEDGER =
T.let(:general_ledger, Increase::ACHTransfer::Funding::TaggedSymbol)

sig do
override.returns(
T::Array[Increase::ACHTransfer::Funding::TaggedSymbol]
Expand Down
7 changes: 7 additions & 0 deletions rbi/increase/models/ach_transfer_create_params.rbi
Original file line number Diff line number Diff line change
Expand Up @@ -698,6 +698,13 @@ module Increase
Increase::ACHTransferCreateParams::Funding::TaggedSymbol
)

# A bank's general ledger. Uncommon.
GENERAL_LEDGER =
T.let(
:general_ledger,
Increase::ACHTransferCreateParams::Funding::TaggedSymbol
)

sig do
override.returns(
T::Array[Increase::ACHTransferCreateParams::Funding::TaggedSymbol]
Expand Down
5 changes: 4 additions & 1 deletion sig/increase/models/ach_transfer.rbs
Original file line number Diff line number Diff line change
Expand Up @@ -448,7 +448,7 @@ module Increase
def self?.values: -> ::Array[Increase::Models::ACHTransfer::destination_account_holder]
end

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

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

# A bank's general ledger. Uncommon.
GENERAL_LEDGER: :general_ledger

def self?.values: -> ::Array[Increase::Models::ACHTransfer::funding]
end

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

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

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

# A bank's general ledger. Uncommon.
GENERAL_LEDGER: :general_ledger

def self?.values: -> ::Array[Increase::Models::ACHTransferCreateParams::funding]
end

Expand Down