increase 1.55.0 → 1.57.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 +16 -0
- data/README.md +1 -1
- data/lib/increase/models/declined_transaction.rb +3 -0
- data/lib/increase/models/transaction.rb +3 -0
- data/lib/increase/version.rb +1 -1
- data/rbi/increase/models/declined_transaction.rbi +7 -0
- data/rbi/increase/models/transaction.rbi +7 -0
- data/sig/increase/models/declined_transaction.rbs +4 -0
- data/sig/increase/models/transaction.rbs +4 -0
- 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: ffaa39abe499976f82aeb26564ec7af83ab51f4757133fb362df8cc7e57c903c
|
4
|
+
data.tar.gz: e13a4f3bba209d22c924f4a2792d1e3d97635f8eb2ab6715d39762230f8572be
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a494a5c081450c9bfbdf3be37eebae76176bec574ebb84f9f2fce6667713e07a4cc5bfc33d6a5c5305f0a036ba2e9276a7facf4c79191e753d0072cffd491f57
|
7
|
+
data.tar.gz: 1105d48b5233b5d378dc9e618416b71903607c9abb31869b82487774e5e62160779dc4e03e63494e66396a77d78b52cb60eb517120f1af500df781e7740e40e6
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,21 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
## 1.57.0 (2025-08-28)
|
4
|
+
|
5
|
+
Full Changelog: [v1.56.0...v1.57.0](https://github.com/Increase/increase-ruby/compare/v1.56.0...v1.57.0)
|
6
|
+
|
7
|
+
### Features
|
8
|
+
|
9
|
+
* **api:** api update ([6fecbaa](https://github.com/Increase/increase-ruby/commit/6fecbaa98e58a09d93fc2c094bda00f2f8d5cc43))
|
10
|
+
|
11
|
+
## 1.56.0 (2025-08-28)
|
12
|
+
|
13
|
+
Full Changelog: [v1.55.0...v1.56.0](https://github.com/Increase/increase-ruby/compare/v1.55.0...v1.56.0)
|
14
|
+
|
15
|
+
### Features
|
16
|
+
|
17
|
+
* **api:** api update ([cbaeb33](https://github.com/Increase/increase-ruby/commit/cbaeb3304174c05c0a3fffd559d44019974c2afb))
|
18
|
+
|
3
19
|
## 1.55.0 (2025-08-27)
|
4
20
|
|
5
21
|
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
|
|
@@ -5636,6 +5636,9 @@ module Increase
|
|
5636
5636
|
# Sample funds return
|
5637
5637
|
SAMPLE_FUNDS_RETURN = :sample_funds_return
|
5638
5638
|
|
5639
|
+
# Account revenue payment distribution
|
5640
|
+
ACCOUNT_REVENUE_PAYMENT_DISTRIBUTION = :account_revenue_payment_distribution
|
5641
|
+
|
5639
5642
|
# @!method self.values
|
5640
5643
|
# @return [Array<Symbol>]
|
5641
5644
|
end
|
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(
|
@@ -10318,6 +10318,13 @@ module Increase
|
|
10318
10318
|
Increase::Transaction::Source::InternalSource::Reason::TaggedSymbol
|
10319
10319
|
)
|
10320
10320
|
|
10321
|
+
# Account revenue payment distribution
|
10322
|
+
ACCOUNT_REVENUE_PAYMENT_DISTRIBUTION =
|
10323
|
+
T.let(
|
10324
|
+
:account_revenue_payment_distribution,
|
10325
|
+
Increase::Transaction::Source::InternalSource::Reason::TaggedSymbol
|
10326
|
+
)
|
10327
|
+
|
10321
10328
|
sig do
|
10322
10329
|
override.returns(
|
10323
10330
|
T::Array[
|
@@ -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
|
|
@@ -4245,6 +4245,7 @@ module Increase
|
|
4245
4245
|
| :negative_balance_forgiveness
|
4246
4246
|
| :sample_funds
|
4247
4247
|
| :sample_funds_return
|
4248
|
+
| :account_revenue_payment_distribution
|
4248
4249
|
|
4249
4250
|
module Reason
|
4250
4251
|
extend Increase::Internal::Type::Enum
|
@@ -4294,6 +4295,9 @@ module Increase
|
|
4294
4295
|
# Sample funds return
|
4295
4296
|
SAMPLE_FUNDS_RETURN: :sample_funds_return
|
4296
4297
|
|
4298
|
+
# Account revenue payment distribution
|
4299
|
+
ACCOUNT_REVENUE_PAYMENT_DISTRIBUTION: :account_revenue_payment_distribution
|
4300
|
+
|
4297
4301
|
def self?.values: -> ::Array[Increase::Models::Transaction::Source::InternalSource::reason]
|
4298
4302
|
end
|
4299
4303
|
end
|
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.57.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
|