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.191.0"
".": "1.192.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-8152ea97ddd6f87a1bc6102d458a3fd3711ca468f6a62cd3be0f6e464376b3e6.yml
openapi_spec_hash: 03c6b4e530600d03fab9344887dc4639
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-42d3718c22feafafc0c3b9952574f79ed506e2fe6a3b336743d2cc3442d3455c.yml
openapi_spec_hash: 5ce48171c112d3c6addb850db1c9535d
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.192.0 (2026-01-31)

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

### Features

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

## 1.191.0 (2026-01-30)

Full Changelog: [v1.190.0...v1.191.0](https://github.com/Increase/increase-ruby/compare/v1.190.0...v1.191.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.191.0)
increase (1.192.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.191.0"
gem "increase", "~> 1.192.0"
```

<!-- x-release-please-end -->
Expand Down
17 changes: 11 additions & 6 deletions lib/increase/models/export_create_params.rb
Original file line number Diff line number Diff line change
Expand Up @@ -268,7 +268,7 @@ class AccountVerificationLetter < Increase::Internal::Type::BaseModel

class BalanceCsv < Increase::Internal::Type::BaseModel
# @!attribute account_id
# Filter exported Transactions to the specified Account.
# Filter exported Balances to the specified Account.
#
# @return [String, nil]
optional :account_id, String
Expand All @@ -280,7 +280,7 @@ class BalanceCsv < Increase::Internal::Type::BaseModel
optional :created_at, -> { Increase::ExportCreateParams::BalanceCsv::CreatedAt }

# @!attribute program_id
# Filter exported Transactions to the specified Program.
# Filter exported Balances to the specified Program.
#
# @return [String, nil]
optional :program_id, String
Expand All @@ -289,11 +289,11 @@ class BalanceCsv < Increase::Internal::Type::BaseModel
# Options for the created export. Required if `category` is equal to
# `balance_csv`.
#
# @param account_id [String] Filter exported Transactions to the specified Account.
# @param account_id [String] Filter exported Balances to the specified Account.
#
# @param created_at [Increase::Models::ExportCreateParams::BalanceCsv::CreatedAt] Filter results by time range on the `created_at` attribute.
#
# @param program_id [String] Filter exported Transactions to the specified Program.
# @param program_id [String] Filter exported Balances to the specified Program.

# @see Increase::Models::ExportCreateParams::BalanceCsv#created_at
class CreatedAt < Increase::Internal::Type::BaseModel
Expand Down Expand Up @@ -343,7 +343,8 @@ class CreatedAt < Increase::Internal::Type::BaseModel

class BookkeepingAccountBalanceCsv < Increase::Internal::Type::BaseModel
# @!attribute bookkeeping_account_id
# Filter exported Transactions to the specified Bookkeeping Account.
# Filter exported Bookkeeping Account Balances to the specified Bookkeeping
# Account.
#
# @return [String, nil]
optional :bookkeeping_account_id, String
Expand All @@ -355,10 +356,14 @@ class BookkeepingAccountBalanceCsv < Increase::Internal::Type::BaseModel
optional :created_at, -> { Increase::ExportCreateParams::BookkeepingAccountBalanceCsv::CreatedAt }

# @!method initialize(bookkeeping_account_id: nil, created_at: nil)
# Some parameter documentations has been truncated, see
# {Increase::Models::ExportCreateParams::BookkeepingAccountBalanceCsv} for more
# details.
#
# Options for the created export. Required if `category` is equal to
# `bookkeeping_account_balance_csv`.
#
# @param bookkeeping_account_id [String] Filter exported Transactions to the specified Bookkeeping Account.
# @param bookkeeping_account_id [String] Filter exported Bookkeeping Account Balances to the specified Bookkeeping Accoun
#
# @param created_at [Increase::Models::ExportCreateParams::BookkeepingAccountBalanceCsv::CreatedAt] Filter results by time range on the `created_at` attribute.

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.191.0"
VERSION = "1.192.0"
end
14 changes: 8 additions & 6 deletions rbi/increase/models/export_create_params.rbi
Original file line number Diff line number Diff line change
Expand Up @@ -553,7 +553,7 @@ module Increase
)
end

# Filter exported Transactions to the specified Account.
# Filter exported Balances to the specified Account.
sig { returns(T.nilable(String)) }
attr_reader :account_id

Expand All @@ -576,7 +576,7 @@ module Increase
end
attr_writer :created_at

# Filter exported Transactions to the specified Program.
# Filter exported Balances to the specified Program.
sig { returns(T.nilable(String)) }
attr_reader :program_id

Expand All @@ -594,11 +594,11 @@ module Increase
).returns(T.attached_class)
end
def self.new(
# Filter exported Transactions to the specified Account.
# Filter exported Balances to the specified Account.
account_id: nil,
# Filter results by time range on the `created_at` attribute.
created_at: nil,
# Filter exported Transactions to the specified Program.
# Filter exported Balances to the specified Program.
program_id: nil
)
end
Expand Down Expand Up @@ -705,7 +705,8 @@ module Increase
)
end

# Filter exported Transactions to the specified Bookkeeping Account.
# Filter exported Bookkeeping Account Balances to the specified Bookkeeping
# Account.
sig { returns(T.nilable(String)) }
attr_reader :bookkeeping_account_id

Expand Down Expand Up @@ -740,7 +741,8 @@ module Increase
).returns(T.attached_class)
end
def self.new(
# Filter exported Transactions to the specified Bookkeeping Account.
# Filter exported Bookkeeping Account Balances to the specified Bookkeeping
# Account.
bookkeeping_account_id: nil,
# Filter results by time range on the `created_at` attribute.
created_at: nil
Expand Down