From fa635c93a57dbbd88d0e64231cf0189364484e25 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Fri, 5 Dec 2025 02:41:34 +0000 Subject: [PATCH 1/2] feat(api): api update --- .stats.yml | 4 ++-- lib/increase/resources/pending_transactions.rb | 7 ++++--- rbi/increase/resources/pending_transactions.rbi | 7 ++++--- 3 files changed, 10 insertions(+), 8 deletions(-) diff --git a/.stats.yml b/.stats.yml index 5c11eef91..9130f4384 100644 --- a/.stats.yml +++ b/.stats.yml @@ -1,4 +1,4 @@ configured_endpoints: 229 -openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-d3646347697623deab851a220ce4b217e923bde3b3108af9eceb4da6df0534e2.yml -openapi_spec_hash: 516fabeef616c695941d3a4aa4051f76 +openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-979679fb897563997cb8d20590ac73729287354524a0c2579f4dfd41fa8b63d9.yml +openapi_spec_hash: 22eae96401c4a0de1d135e18133924d1 config_hash: b6f365add90e618b2174634df140826e diff --git a/lib/increase/resources/pending_transactions.rb b/lib/increase/resources/pending_transactions.rb index a790cfc41..a3327a0e1 100644 --- a/lib/increase/resources/pending_transactions.rb +++ b/lib/increase/resources/pending_transactions.rb @@ -7,9 +7,10 @@ class PendingTransactions # {Increase::Models::PendingTransactionCreateParams} for more details. # # Creates a pending transaction on an account. This can be useful to hold funds - # for an external payment or known future transaction outside of Increase. The - # resulting Pending Transaction will have a `category` of `user_initiated_hold` - # and can be released via the API to unlock the held funds. + # for an external payment or known future transaction outside of Increase (only + # negative amounts are supported). The resulting Pending Transaction will have a + # `category` of `user_initiated_hold` and can be released via the API to unlock + # the held funds. # # @overload create(account_id:, amount:, description: nil, request_options: {}) # diff --git a/rbi/increase/resources/pending_transactions.rbi b/rbi/increase/resources/pending_transactions.rbi index 8a4ab1272..fedc56044 100644 --- a/rbi/increase/resources/pending_transactions.rbi +++ b/rbi/increase/resources/pending_transactions.rbi @@ -4,9 +4,10 @@ module Increase module Resources class PendingTransactions # Creates a pending transaction on an account. This can be useful to hold funds - # for an external payment or known future transaction outside of Increase. The - # resulting Pending Transaction will have a `category` of `user_initiated_hold` - # and can be released via the API to unlock the held funds. + # for an external payment or known future transaction outside of Increase (only + # negative amounts are supported). The resulting Pending Transaction will have a + # `category` of `user_initiated_hold` and can be released via the API to unlock + # the held funds. sig do params( account_id: String, From 303b122f0d7416522da0e1ab3661b1a6a415b16c Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Fri, 5 Dec 2025 02:41:59 +0000 Subject: [PATCH 2/2] release: 1.154.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 d455ce9a8..f2d34df48 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "1.153.0" + ".": "1.154.0" } \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index 12920696c..6dc8ef296 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 1.154.0 (2025-12-05) + +Full Changelog: [v1.153.0...v1.154.0](https://github.com/Increase/increase-ruby/compare/v1.153.0...v1.154.0) + +### Features + +* **api:** api update ([fa635c9](https://github.com/Increase/increase-ruby/commit/fa635c93a57dbbd88d0e64231cf0189364484e25)) + ## 1.153.0 (2025-12-04) Full Changelog: [v1.152.0...v1.153.0](https://github.com/Increase/increase-ruby/compare/v1.152.0...v1.153.0) diff --git a/Gemfile.lock b/Gemfile.lock index ca519df23..70e35c194 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: . specs: - increase (1.153.0) + increase (1.154.0) connection_pool GEM diff --git a/README.md b/README.md index e4919c140..fccd9b234 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.153.0" +gem "increase", "~> 1.154.0" ``` diff --git a/lib/increase/version.rb b/lib/increase/version.rb index 9d6cbf33e..8044c0514 100644 --- a/lib/increase/version.rb +++ b/lib/increase/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module Increase - VERSION = "1.153.0" + VERSION = "1.154.0" end