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.96.0"
".": "1.97.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-24ddca9eb65b72b527002775880ca10d5f0e13426f076fb983761c44df2429a9.yml
openapi_spec_hash: 32d6ee149133e0cc8026079cc29c0991
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-57a965663739666faa0c7699e48af1185389436a2c4fd774e28d86cb7b1c69ba.yml
openapi_spec_hash: cd4681291bf755562f76ae6a1ead73a3
config_hash: a143293c5450ae8f52acad08f3102575
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## 1.97.0 (2025-09-29)

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

### Features

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

## 1.96.0 (2025-09-29)

Full Changelog: [v1.95.1...v1.96.0](https://github.com/Increase/increase-ruby/compare/v1.95.1...v1.96.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.96.0)
increase (1.97.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.96.0"
gem "increase", "~> 1.97.0"
```

<!-- x-release-please-end -->
Expand Down
4 changes: 2 additions & 2 deletions lib/increase/models/bookkeeping_account_create_params.rb
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ class BookkeepingAccountCreateParams < Increase::Internal::Type::BaseModel
required :name, String

# @!attribute account_id
# The entity, if `compliance_category` is `commingled_cash`.
# The account, if `compliance_category` is `commingled_cash`.
#
# @return [String, nil]
optional :account_id, String
Expand All @@ -34,7 +34,7 @@ class BookkeepingAccountCreateParams < Increase::Internal::Type::BaseModel
# @!method initialize(name:, account_id: nil, compliance_category: nil, entity_id: nil, request_options: {})
# @param name [String] The name you choose for the account.
#
# @param account_id [String] The entity, if `compliance_category` is `commingled_cash`.
# @param account_id [String] The account, if `compliance_category` is `commingled_cash`.
#
# @param compliance_category [Symbol, Increase::Models::BookkeepingAccountCreateParams::ComplianceCategory] The account compliance category.
#
Expand Down
2 changes: 1 addition & 1 deletion lib/increase/resources/bookkeeping_accounts.rb
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ class BookkeepingAccounts
#
# @param name [String] The name you choose for the account.
#
# @param account_id [String] The entity, if `compliance_category` is `commingled_cash`.
# @param account_id [String] The account, if `compliance_category` is `commingled_cash`.
#
# @param compliance_category [Symbol, Increase::Models::BookkeepingAccountCreateParams::ComplianceCategory] The account compliance category.
#
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.96.0"
VERSION = "1.97.0"
end
4 changes: 2 additions & 2 deletions rbi/increase/models/bookkeeping_account_create_params.rbi
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ module Increase
sig { returns(String) }
attr_accessor :name

# The entity, if `compliance_category` is `commingled_cash`.
# The account, if `compliance_category` is `commingled_cash`.
sig { returns(T.nilable(String)) }
attr_reader :account_id

Expand Down Expand Up @@ -63,7 +63,7 @@ module Increase
def self.new(
# The name you choose for the account.
name:,
# The entity, if `compliance_category` is `commingled_cash`.
# The account, if `compliance_category` is `commingled_cash`.
account_id: nil,
# The account compliance category.
compliance_category: nil,
Expand Down
2 changes: 1 addition & 1 deletion rbi/increase/resources/bookkeeping_accounts.rbi
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ module Increase
def create(
# The name you choose for the account.
name:,
# The entity, if `compliance_category` is `commingled_cash`.
# The account, if `compliance_category` is `commingled_cash`.
account_id: nil,
# The account compliance category.
compliance_category: nil,
Expand Down