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.31.0"
".": "1.32.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: 202
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-2ed4af5a2141f4524ffc8306c747f21c77e00fc5d478e08df7cbe53c92764038.yml
openapi_spec_hash: f693361a7fb14090da484e6a02b86021
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-86536168d84b951766d3c56adf7b371f15e15de83fff1de4b8052f55bb98034d.yml
openapi_spec_hash: 28053671bf8df1b93086dbe6123f8163
config_hash: a185e9a72778cc4658ea73fb3a7f1354
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## 1.32.0 (2025-08-13)

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

### Features

* **api:** api update ([638ef4f](https://github.com/Increase/increase-ruby/commit/638ef4ffd5129aa4ddb501e6ca399143e03365b6))

## 1.31.0 (2025-08-12)

Full Changelog: [v1.30.0...v1.31.0](https://github.com/Increase/increase-ruby/compare/v1.30.0...v1.31.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.31.0)
increase (1.32.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.31.0"
gem "increase", "~> 1.32.0"
```

<!-- x-release-please-end -->
Expand Down
6 changes: 3 additions & 3 deletions lib/increase/models/account.rb
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,8 @@ class Account < Increase::Internal::Type::BaseModel
# @!attribute entity_id
# The identifier for the Entity the Account belongs to.
#
# @return [String, nil]
required :entity_id, String, nil?: true
# @return [String]
required :entity_id, String

# @!attribute idempotency_key
# The idempotency key you chose for this object. This value is unique across
Expand Down Expand Up @@ -123,7 +123,7 @@ class Account < Increase::Internal::Type::BaseModel
#
# @param currency [Symbol, Increase::Models::Account::Currency] The [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) code for the Account curr
#
# @param entity_id [String, nil] The identifier for the Entity the Account belongs to.
# @param entity_id [String] The identifier for the Entity the Account belongs to.
#
# @param idempotency_key [String, nil] The idempotency key you chose for this object. This value is unique across Incre
#
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.31.0"
VERSION = "1.32.0"
end
6 changes: 3 additions & 3 deletions rbi/increase/models/account.rbi
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ module Increase
attr_accessor :currency

# The identifier for the Entity the Account belongs to.
sig { returns(T.nilable(String)) }
sig { returns(String) }
attr_accessor :entity_id

# The idempotency key you chose for this object. This value is unique across
Expand Down Expand Up @@ -87,7 +87,7 @@ module Increase
closed_at: T.nilable(Time),
created_at: Time,
currency: Increase::Account::Currency::OrSymbol,
entity_id: T.nilable(String),
entity_id: String,
idempotency_key: T.nilable(String),
informational_entity_id: T.nilable(String),
interest_accrued: String,
Expand Down Expand Up @@ -153,7 +153,7 @@ module Increase
closed_at: T.nilable(Time),
created_at: Time,
currency: Increase::Account::Currency::TaggedSymbol,
entity_id: T.nilable(String),
entity_id: String,
idempotency_key: T.nilable(String),
informational_entity_id: T.nilable(String),
interest_accrued: String,
Expand Down
8 changes: 4 additions & 4 deletions sig/increase/models/account.rbs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ module Increase
closed_at: Time?,
created_at: Time,
currency: Increase::Models::Account::currency,
entity_id: String?,
entity_id: String,
idempotency_key: String?,
informational_entity_id: String?,
interest_accrued: String,
Expand All @@ -30,7 +30,7 @@ module Increase

attr_accessor currency: Increase::Models::Account::currency

attr_accessor entity_id: String?
attr_accessor entity_id: String

attr_accessor idempotency_key: String?

Expand All @@ -56,7 +56,7 @@ module Increase
closed_at: Time?,
created_at: Time,
currency: Increase::Models::Account::currency,
entity_id: String?,
entity_id: String,
idempotency_key: String?,
informational_entity_id: String?,
interest_accrued: String,
Expand All @@ -74,7 +74,7 @@ module Increase
closed_at: Time?,
created_at: Time,
currency: Increase::Models::Account::currency,
entity_id: String?,
entity_id: String,
idempotency_key: String?,
informational_entity_id: String?,
interest_accrued: String,
Expand Down
10 changes: 5 additions & 5 deletions test/increase/resources/accounts_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ def test_create_required_params
closed_at: Time | nil,
created_at: Time,
currency: Increase::Account::Currency,
entity_id: String | nil,
entity_id: String,
idempotency_key: String | nil,
informational_entity_id: String | nil,
interest_accrued: String,
Expand Down Expand Up @@ -45,7 +45,7 @@ def test_retrieve
closed_at: Time | nil,
created_at: Time,
currency: Increase::Account::Currency,
entity_id: String | nil,
entity_id: String,
idempotency_key: String | nil,
informational_entity_id: String | nil,
interest_accrued: String,
Expand Down Expand Up @@ -73,7 +73,7 @@ def test_update
closed_at: Time | nil,
created_at: Time,
currency: Increase::Account::Currency,
entity_id: String | nil,
entity_id: String,
idempotency_key: String | nil,
informational_entity_id: String | nil,
interest_accrued: String,
Expand Down Expand Up @@ -108,7 +108,7 @@ def test_list
closed_at: Time | nil,
created_at: Time,
currency: Increase::Account::Currency,
entity_id: String | nil,
entity_id: String,
idempotency_key: String | nil,
informational_entity_id: String | nil,
interest_accrued: String,
Expand Down Expand Up @@ -153,7 +153,7 @@ def test_close
closed_at: Time | nil,
created_at: Time,
currency: Increase::Account::Currency,
entity_id: String | nil,
entity_id: String,
idempotency_key: String | nil,
informational_entity_id: String | nil,
interest_accrued: String,
Expand Down