increase 1.140.0 → 1.141.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/inbound_check_deposit.rb +3 -0
- data/lib/increase/models/transaction.rb +3 -0
- data/lib/increase/version.rb +1 -1
- data/rbi/increase/models/inbound_check_deposit.rbi +7 -0
- data/rbi/increase/models/transaction.rbi +7 -0
- data/sig/increase/models/inbound_check_deposit.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: f855d294104a394b8461eee4ac1df309f6d2447f4c8a13136c048bbbd83fcf02
|
|
4
|
+
data.tar.gz: 153aecbe64850bebfe080d48d8c74d0d770cfc3ed2994625b9e6b59a2e051a2e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 35e2910f6944de7c0e018a32bb6b66f606dfba203671897707255cb32103e098077d4b0c2fee18f469a62380f2537842ccc9a8050fa6144d2c7c3cd65dfbea7f
|
|
7
|
+
data.tar.gz: c49db7b3ef9c180bf43a59f9baf951edd28df032dc32bc044711278f5723c8227000d1257a23c0b572d16c5b07c843dc91bfd51a04e438e6b9b85c5e27535f98
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 1.141.0 (2025-11-13)
|
|
4
|
+
|
|
5
|
+
Full Changelog: [v1.140.0...v1.141.0](https://github.com/Increase/increase-ruby/compare/v1.140.0...v1.141.0)
|
|
6
|
+
|
|
7
|
+
### Features
|
|
8
|
+
|
|
9
|
+
* **api:** api update ([b4956dd](https://github.com/Increase/increase-ruby/commit/b4956dddd9c330f39d53c4fe48b9249916b1db7a))
|
|
10
|
+
|
|
3
11
|
## 1.140.0 (2025-11-12)
|
|
4
12
|
|
|
5
13
|
Full Changelog: [v1.139.0...v1.140.0](https://github.com/Increase/increase-ruby/compare/v1.139.0...v1.140.0)
|
data/README.md
CHANGED
|
@@ -237,6 +237,9 @@ module Increase
|
|
|
237
237
|
# The recipient was not able to process the check. This usually happens for e.g., low quality images.
|
|
238
238
|
NON_CONFORMING_ITEM = :non_conforming_item
|
|
239
239
|
|
|
240
|
+
# The check has already been deposited elsewhere and so this is a duplicate.
|
|
241
|
+
PAID = :paid
|
|
242
|
+
|
|
240
243
|
# @!method self.values
|
|
241
244
|
# @return [Array<Symbol>]
|
|
242
245
|
end
|
|
@@ -6078,6 +6078,9 @@ module Increase
|
|
|
6078
6078
|
# The recipient was not able to process the check. This usually happens for e.g., low quality images.
|
|
6079
6079
|
NON_CONFORMING_ITEM = :non_conforming_item
|
|
6080
6080
|
|
|
6081
|
+
# The check has already been deposited elsewhere and so this is a duplicate.
|
|
6082
|
+
PAID = :paid
|
|
6083
|
+
|
|
6081
6084
|
# @!method self.values
|
|
6082
6085
|
# @return [Array<Symbol>]
|
|
6083
6086
|
end
|
data/lib/increase/version.rb
CHANGED
|
@@ -331,6 +331,13 @@ module Increase
|
|
|
331
331
|
Increase::InboundCheckDeposit::Adjustment::Reason::TaggedSymbol
|
|
332
332
|
)
|
|
333
333
|
|
|
334
|
+
# The check has already been deposited elsewhere and so this is a duplicate.
|
|
335
|
+
PAID =
|
|
336
|
+
T.let(
|
|
337
|
+
:paid,
|
|
338
|
+
Increase::InboundCheckDeposit::Adjustment::Reason::TaggedSymbol
|
|
339
|
+
)
|
|
340
|
+
|
|
334
341
|
sig do
|
|
335
342
|
override.returns(
|
|
336
343
|
T::Array[
|
|
@@ -11364,6 +11364,13 @@ module Increase
|
|
|
11364
11364
|
Increase::Transaction::Source::InboundCheckAdjustment::Reason::TaggedSymbol
|
|
11365
11365
|
)
|
|
11366
11366
|
|
|
11367
|
+
# The check has already been deposited elsewhere and so this is a duplicate.
|
|
11368
|
+
PAID =
|
|
11369
|
+
T.let(
|
|
11370
|
+
:paid,
|
|
11371
|
+
Increase::Transaction::Source::InboundCheckAdjustment::Reason::TaggedSymbol
|
|
11372
|
+
)
|
|
11373
|
+
|
|
11367
11374
|
sig do
|
|
11368
11375
|
override.returns(
|
|
11369
11376
|
T::Array[
|
|
@@ -147,6 +147,7 @@ module Increase
|
|
|
147
147
|
| :wrong_payee_credit
|
|
148
148
|
| :adjusted_amount
|
|
149
149
|
| :non_conforming_item
|
|
150
|
+
| :paid
|
|
150
151
|
|
|
151
152
|
module Reason
|
|
152
153
|
extend Increase::Internal::Type::Enum
|
|
@@ -163,6 +164,9 @@ module Increase
|
|
|
163
164
|
# The recipient was not able to process the check. This usually happens for e.g., low quality images.
|
|
164
165
|
NON_CONFORMING_ITEM: :non_conforming_item
|
|
165
166
|
|
|
167
|
+
# The check has already been deposited elsewhere and so this is a duplicate.
|
|
168
|
+
PAID: :paid
|
|
169
|
+
|
|
166
170
|
def self?.values: -> ::Array[Increase::Models::InboundCheckDeposit::Adjustment::reason]
|
|
167
171
|
end
|
|
168
172
|
end
|
|
@@ -4448,6 +4448,7 @@ module Increase
|
|
|
4448
4448
|
| :wrong_payee_credit
|
|
4449
4449
|
| :adjusted_amount
|
|
4450
4450
|
| :non_conforming_item
|
|
4451
|
+
| :paid
|
|
4451
4452
|
|
|
4452
4453
|
module Reason
|
|
4453
4454
|
extend Increase::Internal::Type::Enum
|
|
@@ -4464,6 +4465,9 @@ module Increase
|
|
|
4464
4465
|
# The recipient was not able to process the check. This usually happens for e.g., low quality images.
|
|
4465
4466
|
NON_CONFORMING_ITEM: :non_conforming_item
|
|
4466
4467
|
|
|
4468
|
+
# The check has already been deposited elsewhere and so this is a duplicate.
|
|
4469
|
+
PAID: :paid
|
|
4470
|
+
|
|
4467
4471
|
def self?.values: -> ::Array[Increase::Models::Transaction::Source::InboundCheckAdjustment::reason]
|
|
4468
4472
|
end
|
|
4469
4473
|
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.141.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-11-
|
|
11
|
+
date: 2025-11-13 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: connection_pool
|