increase 1.153.0 → 1.154.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: e5a3602d0e5cf294259d9a655d18cbf6bf89e2c2d5b0f080ce2fea752c1bf524
4
- data.tar.gz: 420a769d245f4e89fe2348548748802e4a78028d3ea51d9b072090c0a476eefa
3
+ metadata.gz: 8ab822487c0689238a41c0810b180b60aeab5a1e2ff047809f7dc4a0574e73eb
4
+ data.tar.gz: ef14ce676607d0f833baaa18dd0095d60081c92ad05f5416796ba885bf44a93e
5
5
  SHA512:
6
- metadata.gz: ce461c87e336291ab15f7c383bd0e8912931cbf125e05edcd3f113325acabfe8624457156eadaeb58c08c3c67edac6f674d76c94e9ebc9e77e7aae2058bd4f2c
7
- data.tar.gz: 8ed2f113059f05046adc7ed141cb9bbb50293cb3c7fbcd71baac3ec419039801fc98579741d88ae3e1161a07170cab319fc8735578844818cba91fd682043909
6
+ metadata.gz: 30bcaba8c846396746adecd0debde720390cd1900b20978c6967a4fcc041698d185afcef590689500a858c573eabbb7a0eee677208a18b542a9d4a7154682b52
7
+ data.tar.gz: 83735e38104ccef3f092c90b3cecb5b263f45f074da5490048f3a6fb21c7d3d6bb06881adb05783904032772efd4c096784f67ce746c756fc076ff6a47c80884
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Changelog
2
2
 
3
+ ## 1.154.0 (2025-12-05)
4
+
5
+ Full Changelog: [v1.153.0...v1.154.0](https://github.com/Increase/increase-ruby/compare/v1.153.0...v1.154.0)
6
+
7
+ ### Features
8
+
9
+ * **api:** api update ([fa635c9](https://github.com/Increase/increase-ruby/commit/fa635c93a57dbbd88d0e64231cf0189364484e25))
10
+
3
11
  ## 1.153.0 (2025-12-04)
4
12
 
5
13
  Full Changelog: [v1.152.0...v1.153.0](https://github.com/Increase/increase-ruby/compare/v1.152.0...v1.153.0)
data/README.md CHANGED
@@ -15,7 +15,7 @@ To use this gem, install via Bundler by adding the following to your application
15
15
  <!-- x-release-please-start-version -->
16
16
 
17
17
  ```ruby
18
- gem "increase", "~> 1.153.0"
18
+ gem "increase", "~> 1.154.0"
19
19
  ```
20
20
 
21
21
  <!-- x-release-please-end -->
@@ -7,9 +7,10 @@ module Increase
7
7
  # {Increase::Models::PendingTransactionCreateParams} for more details.
8
8
  #
9
9
  # Creates a pending transaction on an account. This can be useful to hold funds
10
- # for an external payment or known future transaction outside of Increase. The
11
- # resulting Pending Transaction will have a `category` of `user_initiated_hold`
12
- # and can be released via the API to unlock the held funds.
10
+ # for an external payment or known future transaction outside of Increase (only
11
+ # negative amounts are supported). The resulting Pending Transaction will have a
12
+ # `category` of `user_initiated_hold` and can be released via the API to unlock
13
+ # the held funds.
13
14
  #
14
15
  # @overload create(account_id:, amount:, description: nil, request_options: {})
15
16
  #
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Increase
4
- VERSION = "1.153.0"
4
+ VERSION = "1.154.0"
5
5
  end
@@ -4,9 +4,10 @@ module Increase
4
4
  module Resources
5
5
  class PendingTransactions
6
6
  # Creates a pending transaction on an account. This can be useful to hold funds
7
- # for an external payment or known future transaction outside of Increase. The
8
- # resulting Pending Transaction will have a `category` of `user_initiated_hold`
9
- # and can be released via the API to unlock the held funds.
7
+ # for an external payment or known future transaction outside of Increase (only
8
+ # negative amounts are supported). The resulting Pending Transaction will have a
9
+ # `category` of `user_initiated_hold` and can be released via the API to unlock
10
+ # the held funds.
10
11
  sig do
11
12
  params(
12
13
  account_id: String,
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: increase
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.153.0
4
+ version: 1.154.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Increase
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2025-12-04 00:00:00.000000000 Z
11
+ date: 2025-12-05 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: connection_pool