increase 1.55.0 → 1.56.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 708f6b0e468941bd3292a3846627f10295bf9eb6bfaa2283a6531b072316804f
|
4
|
+
data.tar.gz: 52d255fcf41b0f871e8849e78da77dd2e543f48c0d6e5f5400de87231c5af4ba
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 02b5a6adda530f83b0570af20241957952ad845f15c1b5f4db62ae904d135ce2c379122922cd35a67ac0d5fdab097d430e6b297a4bc258fc46a140057c9e91db
|
7
|
+
data.tar.gz: 599eb9dbc8b1e05c28b26657b78a3f3ee65b7e367fbc40f544e7a8a1f115548c5c8cbd0b30bac9db42fde7450043b220bfd682032575e02ad294c62bb97b287a
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
## 1.56.0 (2025-08-28)
|
4
|
+
|
5
|
+
Full Changelog: [v1.55.0...v1.56.0](https://github.com/Increase/increase-ruby/compare/v1.55.0...v1.56.0)
|
6
|
+
|
7
|
+
### Features
|
8
|
+
|
9
|
+
* **api:** api update ([cbaeb33](https://github.com/Increase/increase-ruby/commit/cbaeb3304174c05c0a3fffd559d44019974c2afb))
|
10
|
+
|
3
11
|
## 1.55.0 (2025-08-27)
|
4
12
|
|
5
13
|
Full Changelog: [v1.54.0...v1.55.0](https://github.com/Increase/increase-ruby/compare/v1.54.0...v1.55.0)
|
data/README.md
CHANGED
@@ -1780,6 +1780,9 @@ module Increase
|
|
1780
1780
|
# The check cannot be processed. This is rare: please contact support.
|
1781
1781
|
UNABLE_TO_PROCESS = :unable_to_process
|
1782
1782
|
|
1783
|
+
# The check image is unusable.
|
1784
|
+
UNUSABLE_IMAGE = :unusable_image
|
1785
|
+
|
1783
1786
|
# Your integration declined this check via the API.
|
1784
1787
|
USER_INITIATED = :user_initiated
|
1785
1788
|
|
data/lib/increase/version.rb
CHANGED
@@ -3371,6 +3371,13 @@ module Increase
|
|
3371
3371
|
Increase::DeclinedTransaction::Source::CheckDecline::Reason::TaggedSymbol
|
3372
3372
|
)
|
3373
3373
|
|
3374
|
+
# The check image is unusable.
|
3375
|
+
UNUSABLE_IMAGE =
|
3376
|
+
T.let(
|
3377
|
+
:unusable_image,
|
3378
|
+
Increase::DeclinedTransaction::Source::CheckDecline::Reason::TaggedSymbol
|
3379
|
+
)
|
3380
|
+
|
3374
3381
|
# Your integration declined this check via the API.
|
3375
3382
|
USER_INITIATED =
|
3376
3383
|
T.let(
|
@@ -1291,6 +1291,7 @@ module Increase
|
|
1291
1291
|
| :no_account_number_found
|
1292
1292
|
| :refer_to_image
|
1293
1293
|
| :unable_to_process
|
1294
|
+
| :unusable_image
|
1294
1295
|
| :user_initiated
|
1295
1296
|
|
1296
1297
|
module Reason
|
@@ -1344,6 +1345,9 @@ module Increase
|
|
1344
1345
|
# The check cannot be processed. This is rare: please contact support.
|
1345
1346
|
UNABLE_TO_PROCESS: :unable_to_process
|
1346
1347
|
|
1348
|
+
# The check image is unusable.
|
1349
|
+
UNUSABLE_IMAGE: :unusable_image
|
1350
|
+
|
1347
1351
|
# Your integration declined this check via the API.
|
1348
1352
|
USER_INITIATED: :user_initiated
|
1349
1353
|
|
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.56.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-08-
|
11
|
+
date: 2025-08-28 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: connection_pool
|