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.183.0"
".": "1.184.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: 232
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-742384c2f763b7fb4e6534ac57539f4f1854d9bd126ea173f3caeffdf1642462.yml
openapi_spec_hash: 49897b127960069cd3fe917475ad4b5b
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-e0a68a396e3cad9ebb243cb823e58ccd61bf7eff388039ba3dd3a09ae72efc92.yml
openapi_spec_hash: 4079f070e677e7b39205cfbe8c5d7637
config_hash: 27e44ed36b9c5617b580ead7231a594a
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## 1.184.0 (2026-01-27)

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

### Features

* **api:** api update ([87efb3c](https://github.com/Increase/increase-ruby/commit/87efb3c2769243404df336fbdefc331b6a18ba64))

## 1.183.0 (2026-01-26)

Full Changelog: [v1.182.0...v1.183.0](https://github.com/Increase/increase-ruby/compare/v1.182.0...v1.183.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.183.0)
increase (1.184.0)
cgi
connection_pool

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.183.0"
gem "increase", "~> 1.184.0"
```

<!-- x-release-please-end -->
Expand Down
3 changes: 3 additions & 0 deletions lib/increase/models/transaction.rb
Original file line number Diff line number Diff line change
Expand Up @@ -6701,6 +6701,9 @@ module Reason
# Fees
FEES = :fees

# General ledger transfer
GENERAL_LEDGER_TRANSFER = :general_ledger_transfer

# Interest
INTEREST = :interest

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.183.0"
VERSION = "1.184.0"
end
7 changes: 7 additions & 0 deletions rbi/increase/models/transaction.rbi
Original file line number Diff line number Diff line change
Expand Up @@ -12300,6 +12300,13 @@ module Increase
Increase::Transaction::Source::InternalSource::Reason::TaggedSymbol
)

# General ledger transfer
GENERAL_LEDGER_TRANSFER =
T.let(
:general_ledger_transfer,
Increase::Transaction::Source::InternalSource::Reason::TaggedSymbol
)

# Interest
INTEREST =
T.let(
Expand Down
4 changes: 4 additions & 0 deletions sig/increase/models/transaction.rbs
Original file line number Diff line number Diff line change
Expand Up @@ -4865,6 +4865,7 @@ module Increase
| :error
| :error_correction
| :fees
| :general_ledger_transfer
| :interest
| :negative_balance_forgiveness
| :sample_funds
Expand Down Expand Up @@ -4912,6 +4913,9 @@ module Increase
# Fees
FEES: :fees

# General ledger transfer
GENERAL_LEDGER_TRANSFER: :general_ledger_transfer

# Interest
INTEREST: :interest

Expand Down