diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 09d2c486..77040339 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "1.191.0" + ".": "1.192.0" } \ No newline at end of file diff --git a/.stats.yml b/.stats.yml index c516d75f..eaede9ea 100644 --- a/.stats.yml +++ b/.stats.yml @@ -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 diff --git a/CHANGELOG.md b/CHANGELOG.md index 44311d4c..410997a3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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) diff --git a/Gemfile.lock b/Gemfile.lock index 70ee013a..9a25dfa9 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: . specs: - increase (1.191.0) + increase (1.192.0) cgi connection_pool diff --git a/README.md b/README.md index 9fb2179d..174ff650 100644 --- a/README.md +++ b/README.md @@ -15,7 +15,7 @@ To use this gem, install via Bundler by adding the following to your application ```ruby -gem "increase", "~> 1.191.0" +gem "increase", "~> 1.192.0" ``` diff --git a/lib/increase/models/export_create_params.rb b/lib/increase/models/export_create_params.rb index 41e37302..0bcbe23a 100644 --- a/lib/increase/models/export_create_params.rb +++ b/lib/increase/models/export_create_params.rb @@ -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 @@ -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 @@ -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 @@ -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 @@ -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. diff --git a/lib/increase/version.rb b/lib/increase/version.rb index e2c2f576..79d731b1 100644 --- a/lib/increase/version.rb +++ b/lib/increase/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module Increase - VERSION = "1.191.0" + VERSION = "1.192.0" end diff --git a/rbi/increase/models/export_create_params.rbi b/rbi/increase/models/export_create_params.rbi index e3c8b05c..ede38c69 100644 --- a/rbi/increase/models/export_create_params.rbi +++ b/rbi/increase/models/export_create_params.rbi @@ -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 @@ -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 @@ -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 @@ -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 @@ -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