From 43e0ee9bc94792ce236b5a2dbe5bfca67cb8e59d Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Thu, 14 Aug 2025 13:03:44 +0000 Subject: [PATCH 1/3] codegen metadata --- .stats.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.stats.yml b/.stats.yml index 72e9c5c32..28ec9075a 100644 --- a/.stats.yml +++ b/.stats.yml @@ -1,4 +1,4 @@ configured_endpoints: 214 -openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-931013cdbe08378a853b2fd05800091aba88acebe919ec5088d2dd25c0846331.yml -openapi_spec_hash: 6cfed987ca287da4d3e52ace77b0e417 +openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-a7861b46606a5a2d849c4403583805c1074983cffaf7acfe0a4d7bafa38c5efd.yml +openapi_spec_hash: a1cad356ebe1b02a67dbafbde7d7f1d4 config_hash: b0b366d8c705ea0efe62093bae953e5a From ca8b7769f961fc457087f239a1790390caae245a Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Fri, 15 Aug 2025 16:01:15 +0000 Subject: [PATCH 2/3] feat(api): api update --- .stats.yml | 4 ++-- lib/increase/models/external_account.rb | 3 +++ lib/increase/models/external_account_create_params.rb | 3 +++ lib/increase/models/external_account_update_params.rb | 3 +++ rbi/increase/models/external_account.rbi | 7 +++++++ rbi/increase/models/external_account_create_params.rbi | 7 +++++++ rbi/increase/models/external_account_update_params.rbi | 7 +++++++ sig/increase/models/external_account.rbs | 5 ++++- sig/increase/models/external_account_create_params.rbs | 5 ++++- sig/increase/models/external_account_update_params.rbs | 5 ++++- 10 files changed, 44 insertions(+), 5 deletions(-) diff --git a/.stats.yml b/.stats.yml index 28ec9075a..2adac204c 100644 --- a/.stats.yml +++ b/.stats.yml @@ -1,4 +1,4 @@ configured_endpoints: 214 -openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-a7861b46606a5a2d849c4403583805c1074983cffaf7acfe0a4d7bafa38c5efd.yml -openapi_spec_hash: a1cad356ebe1b02a67dbafbde7d7f1d4 +openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-70837ed2f8d4ade9021fc0f50bf3cd77cdf05f308c4ed75b2b4dcc42f1ec2378.yml +openapi_spec_hash: 09cf1c77dce2927cb41426a287a15437 config_hash: b0b366d8c705ea0efe62093bae953e5a diff --git a/lib/increase/models/external_account.rb b/lib/increase/models/external_account.rb index d63756543..3088f8384 100644 --- a/lib/increase/models/external_account.rb +++ b/lib/increase/models/external_account.rb @@ -126,6 +126,9 @@ module Funding # A savings account. SAVINGS = :savings + # A general ledger account. + GENERAL_LEDGER = :general_ledger + # A different type of account. OTHER = :other diff --git a/lib/increase/models/external_account_create_params.rb b/lib/increase/models/external_account_create_params.rb index c2ddcea12..fce4e1f42 100644 --- a/lib/increase/models/external_account_create_params.rb +++ b/lib/increase/models/external_account_create_params.rb @@ -81,6 +81,9 @@ module Funding # A savings account. SAVINGS = :savings + # A general ledger account. + GENERAL_LEDGER = :general_ledger + # A different type of account. OTHER = :other diff --git a/lib/increase/models/external_account_update_params.rb b/lib/increase/models/external_account_update_params.rb index 4e5fa7449..cec8f7b9f 100644 --- a/lib/increase/models/external_account_update_params.rb +++ b/lib/increase/models/external_account_update_params.rb @@ -66,6 +66,9 @@ module Funding # A savings account. SAVINGS = :savings + # A general ledger account. + GENERAL_LEDGER = :general_ledger + # A different type of account. OTHER = :other diff --git a/rbi/increase/models/external_account.rbi b/rbi/increase/models/external_account.rbi index 2f1b4bfdd..9a7ca3a7d 100644 --- a/rbi/increase/models/external_account.rbi +++ b/rbi/increase/models/external_account.rbi @@ -172,6 +172,13 @@ module Increase SAVINGS = T.let(:savings, Increase::ExternalAccount::Funding::TaggedSymbol) + # A general ledger account. + GENERAL_LEDGER = + T.let( + :general_ledger, + Increase::ExternalAccount::Funding::TaggedSymbol + ) + # A different type of account. OTHER = T.let(:other, Increase::ExternalAccount::Funding::TaggedSymbol) diff --git a/rbi/increase/models/external_account_create_params.rbi b/rbi/increase/models/external_account_create_params.rbi index 900e27f5e..9f13861d1 100644 --- a/rbi/increase/models/external_account_create_params.rbi +++ b/rbi/increase/models/external_account_create_params.rbi @@ -169,6 +169,13 @@ module Increase Increase::ExternalAccountCreateParams::Funding::TaggedSymbol ) + # A general ledger account. + GENERAL_LEDGER = + T.let( + :general_ledger, + Increase::ExternalAccountCreateParams::Funding::TaggedSymbol + ) + # A different type of account. OTHER = T.let( diff --git a/rbi/increase/models/external_account_update_params.rbi b/rbi/increase/models/external_account_update_params.rbi index de25ebbb2..1aff3a9f1 100644 --- a/rbi/increase/models/external_account_update_params.rbi +++ b/rbi/increase/models/external_account_update_params.rbi @@ -166,6 +166,13 @@ module Increase Increase::ExternalAccountUpdateParams::Funding::TaggedSymbol ) + # A general ledger account. + GENERAL_LEDGER = + T.let( + :general_ledger, + Increase::ExternalAccountUpdateParams::Funding::TaggedSymbol + ) + # A different type of account. OTHER = T.let( diff --git a/sig/increase/models/external_account.rbs b/sig/increase/models/external_account.rbs index 9edf0d154..d268c5226 100644 --- a/sig/increase/models/external_account.rbs +++ b/sig/increase/models/external_account.rbs @@ -78,7 +78,7 @@ module Increase def self?.values: -> ::Array[Increase::Models::ExternalAccount::account_holder] end - type funding = :checking | :savings | :other + type funding = :checking | :savings | :general_ledger | :other module Funding extend Increase::Internal::Type::Enum @@ -89,6 +89,9 @@ module Increase # A savings account. SAVINGS: :savings + # A general ledger account. + GENERAL_LEDGER: :general_ledger + # A different type of account. OTHER: :other diff --git a/sig/increase/models/external_account_create_params.rbs b/sig/increase/models/external_account_create_params.rbs index 1aca90f6f..569216ff7 100644 --- a/sig/increase/models/external_account_create_params.rbs +++ b/sig/increase/models/external_account_create_params.rbs @@ -67,7 +67,7 @@ module Increase def self?.values: -> ::Array[Increase::Models::ExternalAccountCreateParams::account_holder] end - type funding = :checking | :savings | :other + type funding = :checking | :savings | :general_ledger | :other module Funding extend Increase::Internal::Type::Enum @@ -78,6 +78,9 @@ module Increase # A savings account. SAVINGS: :savings + # A general ledger account. + GENERAL_LEDGER: :general_ledger + # A different type of account. OTHER: :other diff --git a/sig/increase/models/external_account_update_params.rbs b/sig/increase/models/external_account_update_params.rbs index 369257a1a..c260b20b4 100644 --- a/sig/increase/models/external_account_update_params.rbs +++ b/sig/increase/models/external_account_update_params.rbs @@ -65,7 +65,7 @@ module Increase def self?.values: -> ::Array[Increase::Models::ExternalAccountUpdateParams::account_holder] end - type funding = :checking | :savings | :other + type funding = :checking | :savings | :general_ledger | :other module Funding extend Increase::Internal::Type::Enum @@ -76,6 +76,9 @@ module Increase # A savings account. SAVINGS: :savings + # A general ledger account. + GENERAL_LEDGER: :general_ledger + # A different type of account. OTHER: :other From 61360e96dcbbf1fbc400e5ef67d712d34cbc93a6 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Fri, 15 Aug 2025 16:01:36 +0000 Subject: [PATCH 3/3] release: 1.35.0 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 8 ++++++++ Gemfile.lock | 2 +- README.md | 2 +- lib/increase/version.rb | 2 +- 5 files changed, 12 insertions(+), 4 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 257e308d6..44959ac41 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "1.34.0" + ".": "1.35.0" } \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index 0f6c22ede..c2f875bed 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 1.35.0 (2025-08-15) + +Full Changelog: [v1.34.0...v1.35.0](https://github.com/Increase/increase-ruby/compare/v1.34.0...v1.35.0) + +### Features + +* **api:** api update ([ca8b776](https://github.com/Increase/increase-ruby/commit/ca8b7769f961fc457087f239a1790390caae245a)) + ## 1.34.0 (2025-08-14) Full Changelog: [v1.33.0...v1.34.0](https://github.com/Increase/increase-ruby/compare/v1.33.0...v1.34.0) diff --git a/Gemfile.lock b/Gemfile.lock index 8a35890d8..b7beaad28 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: . specs: - increase (1.34.0) + increase (1.35.0) connection_pool GEM diff --git a/README.md b/README.md index 200664033..aff0f1af7 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.34.0" +gem "increase", "~> 1.35.0" ``` diff --git a/lib/increase/version.rb b/lib/increase/version.rb index 8a7339860..97a3f2fc1 100644 --- a/lib/increase/version.rb +++ b/lib/increase/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module Increase - VERSION = "1.34.0" + VERSION = "1.35.0" end