increase 1.211.0 → 1.212.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_deposit.rb +3 -0
- data/lib/increase/models/declined_transaction.rb +3 -0
- data/lib/increase/version.rb +1 -1
- data/rbi/increase/models/check_deposit.rbi +7 -0
- data/rbi/increase/models/declined_transaction.rbi +7 -0
- data/sig/increase/models/check_deposit.rbs +4 -0
- data/sig/increase/models/declined_transaction.rbs +4 -0
- 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: 34d466b58a80364212cb94d37209268d0f8e836b6d5b1dce32eb88ec0c84c4ab
|
|
4
|
+
data.tar.gz: 32a83f3cf3360710117499163be73463e05d4a2dbd471f4b772f05d708759f40
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 56e490cf251a4ab6146a9e860edbb127d475c9b7e46a901754ea7c094e849e8465537a61c3c53201d869f9cb97eafe3eb9b05f0afc291f7276b87a8849b3d125
|
|
7
|
+
data.tar.gz: 939c69c461901bb0b6cc79755670faf6f8f686ab66dfb715faf624da2ea351be3191b27d44fe9ff61733d1a28755561930405b8f0a79858b644b6c0eb29624f9
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 1.212.0 (2026-02-23)
|
|
4
|
+
|
|
5
|
+
Full Changelog: [v1.211.0...v1.212.0](https://github.com/Increase/increase-ruby/compare/v1.211.0...v1.212.0)
|
|
6
|
+
|
|
7
|
+
### Features
|
|
8
|
+
|
|
9
|
+
* **api:** api update ([5b533a4](https://github.com/Increase/increase-ruby/commit/5b533a43964e40c6f7668a6614ea8275ca5686ba))
|
|
10
|
+
|
|
3
11
|
## 1.211.0 (2026-02-23)
|
|
4
12
|
|
|
5
13
|
Full Changelog: [v1.210.0...v1.211.0](https://github.com/Increase/increase-ruby/compare/v1.210.0...v1.211.0)
|
data/README.md
CHANGED
|
@@ -361,6 +361,9 @@ module Increase
|
|
|
361
361
|
# The check was rejected at the user's request.
|
|
362
362
|
REQUESTED_BY_USER = :requested_by_user
|
|
363
363
|
|
|
364
|
+
# The check is not a U.S. domestic check and cannot be processed.
|
|
365
|
+
INTERNATIONAL = :international
|
|
366
|
+
|
|
364
367
|
# The check was rejected for an unknown reason.
|
|
365
368
|
UNKNOWN = :unknown
|
|
366
369
|
|
|
@@ -2070,6 +2070,9 @@ module Increase
|
|
|
2070
2070
|
# The check was rejected at the user's request.
|
|
2071
2071
|
REQUESTED_BY_USER = :requested_by_user
|
|
2072
2072
|
|
|
2073
|
+
# The check is not a U.S. domestic check and cannot be processed.
|
|
2074
|
+
INTERNATIONAL = :international
|
|
2075
|
+
|
|
2073
2076
|
# The check was rejected for an unknown reason.
|
|
2074
2077
|
UNKNOWN = :unknown
|
|
2075
2078
|
|
data/lib/increase/version.rb
CHANGED
|
@@ -575,6 +575,13 @@ module Increase
|
|
|
575
575
|
Increase::CheckDeposit::DepositRejection::Reason::TaggedSymbol
|
|
576
576
|
)
|
|
577
577
|
|
|
578
|
+
# The check is not a U.S. domestic check and cannot be processed.
|
|
579
|
+
INTERNATIONAL =
|
|
580
|
+
T.let(
|
|
581
|
+
:international,
|
|
582
|
+
Increase::CheckDeposit::DepositRejection::Reason::TaggedSymbol
|
|
583
|
+
)
|
|
584
|
+
|
|
578
585
|
# The check was rejected for an unknown reason.
|
|
579
586
|
UNKNOWN =
|
|
580
587
|
T.let(
|
|
@@ -3983,6 +3983,13 @@ module Increase
|
|
|
3983
3983
|
Increase::DeclinedTransaction::Source::CheckDepositRejection::Reason::TaggedSymbol
|
|
3984
3984
|
)
|
|
3985
3985
|
|
|
3986
|
+
# The check is not a U.S. domestic check and cannot be processed.
|
|
3987
|
+
INTERNATIONAL =
|
|
3988
|
+
T.let(
|
|
3989
|
+
:international,
|
|
3990
|
+
Increase::DeclinedTransaction::Source::CheckDepositRejection::Reason::TaggedSymbol
|
|
3991
|
+
)
|
|
3992
|
+
|
|
3986
3993
|
# The check was rejected for an unknown reason.
|
|
3987
3994
|
UNKNOWN =
|
|
3988
3995
|
T.let(
|
|
@@ -222,6 +222,7 @@ module Increase
|
|
|
222
222
|
| :suspected_fraud
|
|
223
223
|
| :deposit_window_expired
|
|
224
224
|
| :requested_by_user
|
|
225
|
+
| :international
|
|
225
226
|
| :unknown
|
|
226
227
|
|
|
227
228
|
module Reason
|
|
@@ -257,6 +258,9 @@ module Increase
|
|
|
257
258
|
# The check was rejected at the user's request.
|
|
258
259
|
REQUESTED_BY_USER: :requested_by_user
|
|
259
260
|
|
|
261
|
+
# The check is not a U.S. domestic check and cannot be processed.
|
|
262
|
+
INTERNATIONAL: :international
|
|
263
|
+
|
|
260
264
|
# The check was rejected for an unknown reason.
|
|
261
265
|
UNKNOWN: :unknown
|
|
262
266
|
|
|
@@ -1516,6 +1516,7 @@ module Increase
|
|
|
1516
1516
|
| :suspected_fraud
|
|
1517
1517
|
| :deposit_window_expired
|
|
1518
1518
|
| :requested_by_user
|
|
1519
|
+
| :international
|
|
1519
1520
|
| :unknown
|
|
1520
1521
|
|
|
1521
1522
|
module Reason
|
|
@@ -1551,6 +1552,9 @@ module Increase
|
|
|
1551
1552
|
# The check was rejected at the user's request.
|
|
1552
1553
|
REQUESTED_BY_USER: :requested_by_user
|
|
1553
1554
|
|
|
1555
|
+
# The check is not a U.S. domestic check and cannot be processed.
|
|
1556
|
+
INTERNATIONAL: :international
|
|
1557
|
+
|
|
1554
1558
|
# The check was rejected for an unknown reason.
|
|
1555
1559
|
UNKNOWN: :unknown
|
|
1556
1560
|
|