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 +4 -4
- data/CHANGELOG.md +8 -0
- data/README.md +1 -1
- data/lib/increase/resources/pending_transactions.rb +4 -3
- data/lib/increase/version.rb +1 -1
- data/rbi/increase/resources/pending_transactions.rbi +4 -3
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 8ab822487c0689238a41c0810b180b60aeab5a1e2ff047809f7dc4a0574e73eb
|
|
4
|
+
data.tar.gz: ef14ce676607d0f833baaa18dd0095d60081c92ad05f5416796ba885bf44a93e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
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
|
@@ -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
|
|
11
|
-
# resulting Pending Transaction will have a
|
|
12
|
-
# and can be released via the API to unlock
|
|
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
|
#
|
data/lib/increase/version.rb
CHANGED
|
@@ -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
|
|
8
|
-
# resulting Pending Transaction will have a
|
|
9
|
-
# and can be released via the API to unlock
|
|
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.
|
|
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-
|
|
11
|
+
date: 2025-12-05 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: connection_pool
|