increase 1.2.0 → 1.3.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/models/pending_transaction.rb +3 -1
- data/lib/increase/models/transaction.rb +2 -1
- data/lib/increase/version.rb +1 -1
- data/rbi/increase/models/pending_transaction.rbi +3 -1
- data/rbi/increase/models/transaction.rbi +2 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1ea317fc071bf7df944bfcb883f5ff8c4a47c258ea4ed96102ce327d7291c11a
|
4
|
+
data.tar.gz: 4ec74af5d62615fdb9791812a25eebafe541477cc7b44da841d8ce62c60ae2e5
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e92be1947ec512eb6571153ab5a39f6c5af78d852afd9a5c3b9b5e0e6cd02df3b49fa161c85edfa3d04857029ee9216216cc9b8bbae753b9037a51413172b285
|
7
|
+
data.tar.gz: d237cbc36a9e4b2ff82e81b91b4a5dfa24cc6e73d8884a3b22dc332ddedd4ae2c36d314c08fdf8c89eb4a34dfbde8fcd38f0ddbc10c7a686197b1e58a95b1939
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
## 1.3.0 (2025-06-24)
|
4
|
+
|
5
|
+
Full Changelog: [v1.2.0...v1.3.0](https://github.com/Increase/increase-ruby/compare/v1.2.0...v1.3.0)
|
6
|
+
|
7
|
+
### Features
|
8
|
+
|
9
|
+
* **api:** api update ([4bc56cc](https://github.com/Increase/increase-ruby/commit/4bc56cc2a93fddc9d94c6ddc6fb885915cc74c99))
|
10
|
+
|
3
11
|
## 1.2.0 (2025-06-24)
|
4
12
|
|
5
13
|
Full Changelog: [v1.1.0...v1.2.0](https://github.com/Increase/increase-ruby/compare/v1.1.0...v1.2.0)
|
data/README.md
CHANGED
@@ -100,7 +100,9 @@ module Increase
|
|
100
100
|
# {Increase::Models::PendingTransaction} for more details.
|
101
101
|
#
|
102
102
|
# Pending Transactions are potential future additions and removals of money from
|
103
|
-
# your bank account.
|
103
|
+
# your bank account. They impact your available balance, but not your current
|
104
|
+
# balance. To learn more, see
|
105
|
+
# [Transactions and Transfers](/documentation/transactions-transfers).
|
104
106
|
#
|
105
107
|
# @param id [String] The Pending Transaction identifier.
|
106
108
|
#
|
@@ -80,7 +80,8 @@ module Increase
|
|
80
80
|
# {Increase::Models::Transaction} for more details.
|
81
81
|
#
|
82
82
|
# Transactions are the immutable additions and removals of money from your bank
|
83
|
-
# account. They're the equivalent of line items on your bank statement.
|
83
|
+
# account. They're the equivalent of line items on your bank statement. To learn
|
84
|
+
# more, see [Transactions and Transfers](/documentation/transactions-transfers).
|
84
85
|
#
|
85
86
|
# @param id [String] The Transaction identifier.
|
86
87
|
#
|
data/lib/increase/version.rb
CHANGED
@@ -81,7 +81,9 @@ module Increase
|
|
81
81
|
attr_accessor :type
|
82
82
|
|
83
83
|
# Pending Transactions are potential future additions and removals of money from
|
84
|
-
# your bank account.
|
84
|
+
# your bank account. They impact your available balance, but not your current
|
85
|
+
# balance. To learn more, see
|
86
|
+
# [Transactions and Transfers](/documentation/transactions-transfers).
|
85
87
|
sig do
|
86
88
|
params(
|
87
89
|
id: String,
|
@@ -63,7 +63,8 @@ module Increase
|
|
63
63
|
attr_accessor :type
|
64
64
|
|
65
65
|
# Transactions are the immutable additions and removals of money from your bank
|
66
|
-
# account. They're the equivalent of line items on your bank statement.
|
66
|
+
# account. They're the equivalent of line items on your bank statement. To learn
|
67
|
+
# more, see [Transactions and Transfers](/documentation/transactions-transfers).
|
67
68
|
sig do
|
68
69
|
params(
|
69
70
|
id: String,
|