increase 1.332.0 → 1.333.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/check_transfer.rb +3 -1
- data/lib/increase/version.rb +1 -1
- data/rbi/increase/models/check_transfer.rbi +6 -2
- 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: 152d63ede1b1b2d44bb572d0beaf2298ffbe091396da98b3c25a3ec2f8801d3d
|
|
4
|
+
data.tar.gz: f49aa89c63f65b7363ef31940fc6d795ca97aa884fb8d130866009874ec3c06d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: '09bd0d43a2bab43114504f157919491e8795a4516d3360705ade1cbe7eeb3f51bdd171ce53c882736d9f834d99d9614e46756a741489a6b3c2aeac9c7ec7d536'
|
|
7
|
+
data.tar.gz: baa3c2f19671502a906fccffb97144bb2c94be7bcc14fb52c02fa9271e7e8e2fd1e3495bb3c47da766de6d0ce3300b1bf93b32056804c502de2499b301bc250b
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 1.333.0 (2026-05-20)
|
|
4
|
+
|
|
5
|
+
Full Changelog: [v1.332.0...v1.333.0](https://github.com/Increase/increase-ruby/compare/v1.332.0...v1.333.0)
|
|
6
|
+
|
|
7
|
+
### Features
|
|
8
|
+
|
|
9
|
+
* **api:** api update ([8e725f0](https://github.com/Increase/increase-ruby/commit/8e725f0f234982ba242111515a8e8057f8e83b39))
|
|
10
|
+
|
|
3
11
|
## 1.332.0 (2026-05-19)
|
|
4
12
|
|
|
5
13
|
Full Changelog: [v1.331.0...v1.332.0](https://github.com/Increase/increase-ruby/compare/v1.331.0...v1.332.0)
|
data/README.md
CHANGED
|
@@ -37,7 +37,9 @@ module Increase
|
|
|
37
37
|
|
|
38
38
|
# @!attribute approved_inbound_check_deposit_id
|
|
39
39
|
# If the Check Transfer was successfully deposited, this will contain the
|
|
40
|
-
# identifier of the Inbound Check Deposit object with details of the deposit.
|
|
40
|
+
# identifier of the Inbound Check Deposit object with details of the deposit. The
|
|
41
|
+
# Inbound Check Deposit object will have information about any associated
|
|
42
|
+
# Transactions for this Check Transfer.
|
|
41
43
|
#
|
|
42
44
|
# @return [String, nil]
|
|
43
45
|
required :approved_inbound_check_deposit_id, String, nil?: true
|
data/lib/increase/version.rb
CHANGED
|
@@ -37,7 +37,9 @@ module Increase
|
|
|
37
37
|
attr_writer :approval
|
|
38
38
|
|
|
39
39
|
# If the Check Transfer was successfully deposited, this will contain the
|
|
40
|
-
# identifier of the Inbound Check Deposit object with details of the deposit.
|
|
40
|
+
# identifier of the Inbound Check Deposit object with details of the deposit. The
|
|
41
|
+
# Inbound Check Deposit object will have information about any associated
|
|
42
|
+
# Transactions for this Check Transfer.
|
|
41
43
|
sig { returns(T.nilable(String)) }
|
|
42
44
|
attr_accessor :approved_inbound_check_deposit_id
|
|
43
45
|
|
|
@@ -236,7 +238,9 @@ module Increase
|
|
|
236
238
|
# this will contain details of the approval.
|
|
237
239
|
approval:,
|
|
238
240
|
# If the Check Transfer was successfully deposited, this will contain the
|
|
239
|
-
# identifier of the Inbound Check Deposit object with details of the deposit.
|
|
241
|
+
# identifier of the Inbound Check Deposit object with details of the deposit. The
|
|
242
|
+
# Inbound Check Deposit object will have information about any associated
|
|
243
|
+
# Transactions for this Check Transfer.
|
|
240
244
|
approved_inbound_check_deposit_id:,
|
|
241
245
|
# How the account's available balance should be checked.
|
|
242
246
|
balance_check:,
|