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.95.1"
".": "1.96.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-e80a254e816bc69ee8d058b340f791b9f4229b07ff2b460e6cd0ceb4406a7604.yml
openapi_spec_hash: 81b87e83af702cfd8bce31f2d449ee15
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-24ddca9eb65b72b527002775880ca10d5f0e13426f076fb983761c44df2429a9.yml
openapi_spec_hash: 32d6ee149133e0cc8026079cc29c0991
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.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)

### Features

* **api:** api update ([45fc3a3](https://github.com/Increase/increase-ruby/commit/45fc3a389e67a98c786df6e0f8ab387fcdee209f))

## 1.95.1 (2025-09-29)

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

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

# @!attribute client_secret
# The secret that confirms you own the application. This is redundent given that
# The secret that confirms you own the application. This is redundant given that
# the request is made with your API key but it's a required component of OAuth
# 2.0.
#
Expand Down Expand Up @@ -51,7 +51,7 @@ class OAuthTokenCreateParams < Increase::Internal::Type::BaseModel
#
# @param client_id [String] The public identifier for your application.
#
# @param client_secret [String] The secret that confirms you own the application. This is redundent given that t
# @param client_secret [String] The secret that confirms you own the application. This is redundant given that t
#
# @param code [String] The authorization code generated by the user and given to you as a query paramet
#
Expand Down
2 changes: 1 addition & 1 deletion lib/increase/resources/oauth_tokens.rb
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ class OAuthTokens
#
# @param client_id [String] The public identifier for your application.
#
# @param client_secret [String] The secret that confirms you own the application. This is redundent given that t
# @param client_secret [String] The secret that confirms you own the application. This is redundant given that t
#
# @param code [String] The authorization code generated by the user and given to you as a query paramet
#
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.95.1"
VERSION = "1.96.0"
end
4 changes: 2 additions & 2 deletions rbi/increase/models/oauth_token_create_params.rbi
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ module Increase
sig { params(client_id: String).void }
attr_writer :client_id

# The secret that confirms you own the application. This is redundent given that
# The secret that confirms you own the application. This is redundant given that
# the request is made with your API key but it's a required component of OAuth
# 2.0.
sig { returns(T.nilable(String)) }
Expand Down Expand Up @@ -65,7 +65,7 @@ module Increase
grant_type:,
# The public identifier for your application.
client_id: nil,
# The secret that confirms you own the application. This is redundent given that
# The secret that confirms you own the application. This is redundant given that
# the request is made with your API key but it's a required component of OAuth
# 2.0.
client_secret: nil,
Expand Down
2 changes: 1 addition & 1 deletion rbi/increase/resources/oauth_tokens.rbi
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ module Increase
grant_type:,
# The public identifier for your application.
client_id: nil,
# The secret that confirms you own the application. This is redundent given that
# The secret that confirms you own the application. This is redundant given that
# the request is made with your API key but it's a required component of OAuth
# 2.0.
client_secret: nil,
Expand Down