From 8330df29012e8f52ab048144dc1005ae35406dde Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Fri, 7 Nov 2025 21:09:22 +0000 Subject: [PATCH 1/2] feat(api): api update --- .stats.yml | 4 ++-- lib/increase/models/check_transfer.rb | 7 +++++-- lib/increase/models/check_transfer_list_params.rb | 7 +++++-- rbi/increase/models/check_transfer.rbi | 13 ++++++++++--- rbi/increase/models/check_transfer_list_params.rbi | 13 ++++++++++--- sig/increase/models/check_transfer.rbs | 10 +++++++--- sig/increase/models/check_transfer_list_params.rbs | 10 +++++++--- 7 files changed, 46 insertions(+), 18 deletions(-) diff --git a/.stats.yml b/.stats.yml index ccc315b6f..7a7a9db64 100644 --- a/.stats.yml +++ b/.stats.yml @@ -1,4 +1,4 @@ configured_endpoints: 228 -openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-519aac324dc804424cc26e20603010104b9ada1dd7cf2fc3fe18f12ae8feabdf.yml -openapi_spec_hash: c1d8289e3421c14340d395e621c190eb +openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-20e1561a0d8d3d75c643376822d6e039bcc63f27fd1feff20b8b1e6aced1decd.yml +openapi_spec_hash: 225581a20e328afe5ebba8ee801e002b config_hash: eb2035151c7b49c2f12caf55469b8f9a diff --git a/lib/increase/models/check_transfer.rb b/lib/increase/models/check_transfer.rb index a467c0ab7..01f68d985 100644 --- a/lib/increase/models/check_transfer.rb +++ b/lib/increase/models/check_transfer.rb @@ -764,8 +764,8 @@ module Status # The transfer has been canceled. CANCELED = :canceled - # The transfer is pending submission. - PENDING_SUBMISSION = :pending_submission + # The transfer is pending review. + PENDING_REVIEWING = :pending_reviewing # The transfer requires attention from an Increase operator. REQUIRES_ATTENTION = :requires_attention @@ -773,6 +773,9 @@ module Status # The transfer has been rejected. REJECTED = :rejected + # The transfer is pending submission. + PENDING_SUBMISSION = :pending_submission + # The check is queued for mailing. PENDING_MAILING = :pending_mailing diff --git a/lib/increase/models/check_transfer_list_params.rb b/lib/increase/models/check_transfer_list_params.rb index 3784881dd..c38deb1b6 100644 --- a/lib/increase/models/check_transfer_list_params.rb +++ b/lib/increase/models/check_transfer_list_params.rb @@ -133,8 +133,8 @@ module In # The transfer has been canceled. CANCELED = :canceled - # The transfer is pending submission. - PENDING_SUBMISSION = :pending_submission + # The transfer is pending review. + PENDING_REVIEWING = :pending_reviewing # The transfer requires attention from an Increase operator. REQUIRES_ATTENTION = :requires_attention @@ -142,6 +142,9 @@ module In # The transfer has been rejected. REJECTED = :rejected + # The transfer is pending submission. + PENDING_SUBMISSION = :pending_submission + # The check is queued for mailing. PENDING_MAILING = :pending_mailing diff --git a/rbi/increase/models/check_transfer.rbi b/rbi/increase/models/check_transfer.rbi index 5ebcf0e9a..a59a4272d 100644 --- a/rbi/increase/models/check_transfer.rbi +++ b/rbi/increase/models/check_transfer.rbi @@ -1280,10 +1280,10 @@ module Increase CANCELED = T.let(:canceled, Increase::CheckTransfer::Status::TaggedSymbol) - # The transfer is pending submission. - PENDING_SUBMISSION = + # The transfer is pending review. + PENDING_REVIEWING = T.let( - :pending_submission, + :pending_reviewing, Increase::CheckTransfer::Status::TaggedSymbol ) @@ -1298,6 +1298,13 @@ module Increase REJECTED = T.let(:rejected, Increase::CheckTransfer::Status::TaggedSymbol) + # The transfer is pending submission. + PENDING_SUBMISSION = + T.let( + :pending_submission, + Increase::CheckTransfer::Status::TaggedSymbol + ) + # The check is queued for mailing. PENDING_MAILING = T.let(:pending_mailing, Increase::CheckTransfer::Status::TaggedSymbol) diff --git a/rbi/increase/models/check_transfer_list_params.rbi b/rbi/increase/models/check_transfer_list_params.rbi index ebc8a7d07..ecb56bee3 100644 --- a/rbi/increase/models/check_transfer_list_params.rbi +++ b/rbi/increase/models/check_transfer_list_params.rbi @@ -260,10 +260,10 @@ module Increase Increase::CheckTransferListParams::Status::In::TaggedSymbol ) - # The transfer is pending submission. - PENDING_SUBMISSION = + # The transfer is pending review. + PENDING_REVIEWING = T.let( - :pending_submission, + :pending_reviewing, Increase::CheckTransferListParams::Status::In::TaggedSymbol ) @@ -281,6 +281,13 @@ module Increase Increase::CheckTransferListParams::Status::In::TaggedSymbol ) + # The transfer is pending submission. + PENDING_SUBMISSION = + T.let( + :pending_submission, + Increase::CheckTransferListParams::Status::In::TaggedSymbol + ) + # The check is queued for mailing. PENDING_MAILING = T.let( diff --git a/sig/increase/models/check_transfer.rbs b/sig/increase/models/check_transfer.rbs index 644af5e6f..85d9cbfa2 100644 --- a/sig/increase/models/check_transfer.rbs +++ b/sig/increase/models/check_transfer.rbs @@ -525,9 +525,10 @@ module Increase type status = :pending_approval | :canceled - | :pending_submission + | :pending_reviewing | :requires_attention | :rejected + | :pending_submission | :pending_mailing | :mailed | :deposited @@ -543,8 +544,8 @@ module Increase # The transfer has been canceled. CANCELED: :canceled - # The transfer is pending submission. - PENDING_SUBMISSION: :pending_submission + # The transfer is pending review. + PENDING_REVIEWING: :pending_reviewing # The transfer requires attention from an Increase operator. REQUIRES_ATTENTION: :requires_attention @@ -552,6 +553,9 @@ module Increase # The transfer has been rejected. REJECTED: :rejected + # The transfer is pending submission. + PENDING_SUBMISSION: :pending_submission + # The check is queued for mailing. PENDING_MAILING: :pending_mailing diff --git a/sig/increase/models/check_transfer_list_params.rbs b/sig/increase/models/check_transfer_list_params.rbs index accda88bf..31cf4d75d 100644 --- a/sig/increase/models/check_transfer_list_params.rbs +++ b/sig/increase/models/check_transfer_list_params.rbs @@ -119,9 +119,10 @@ module Increase type in_ = :pending_approval | :canceled - | :pending_submission + | :pending_reviewing | :requires_attention | :rejected + | :pending_submission | :pending_mailing | :mailed | :deposited @@ -137,8 +138,8 @@ module Increase # The transfer has been canceled. CANCELED: :canceled - # The transfer is pending submission. - PENDING_SUBMISSION: :pending_submission + # The transfer is pending review. + PENDING_REVIEWING: :pending_reviewing # The transfer requires attention from an Increase operator. REQUIRES_ATTENTION: :requires_attention @@ -146,6 +147,9 @@ module Increase # The transfer has been rejected. REJECTED: :rejected + # The transfer is pending submission. + PENDING_SUBMISSION: :pending_submission + # The check is queued for mailing. PENDING_MAILING: :pending_mailing From 030018a4e1f5ea55e423540edefa9cab6f56f530 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Fri, 7 Nov 2025 21:09:45 +0000 Subject: [PATCH 2/2] release: 1.137.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 13f29dbc8..02a4b62fc 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "1.136.0" + ".": "1.137.0" } \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index 51c8d20f1..a334d76f4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 1.137.0 (2025-11-07) + +Full Changelog: [v1.136.0...v1.137.0](https://github.com/Increase/increase-ruby/compare/v1.136.0...v1.137.0) + +### Features + +* **api:** api update ([8330df2](https://github.com/Increase/increase-ruby/commit/8330df29012e8f52ab048144dc1005ae35406dde)) + ## 1.136.0 (2025-11-07) Full Changelog: [v1.135.0...v1.136.0](https://github.com/Increase/increase-ruby/compare/v1.135.0...v1.136.0) diff --git a/Gemfile.lock b/Gemfile.lock index 375901e22..d545ef4d5 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: . specs: - increase (1.136.0) + increase (1.137.0) connection_pool GEM diff --git a/README.md b/README.md index 943c99871..ae46334ca 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.136.0" +gem "increase", "~> 1.137.0" ``` diff --git a/lib/increase/version.rb b/lib/increase/version.rb index 62eeebafe..c3c8b187b 100644 --- a/lib/increase/version.rb +++ b/lib/increase/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module Increase - VERSION = "1.136.0" + VERSION = "1.137.0" end