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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 9e755a0881b738341982dc434e6ac9efb9f059b216d5548ddd9e27469a203eb3
4
- data.tar.gz: d10900bb08ebffaf19e964673d00a200e09673b59844a6172dc7572659fec125
3
+ metadata.gz: f855d294104a394b8461eee4ac1df309f6d2447f4c8a13136c048bbbd83fcf02
4
+ data.tar.gz: 153aecbe64850bebfe080d48d8c74d0d770cfc3ed2994625b9e6b59a2e051a2e
5
5
  SHA512:
6
- metadata.gz: d54faf7b49c19cc898c637e8f094b6b00c2c5f208dcbd70fe2a5a1d77276887ff2f9bd3aaa772bddc2b543a178b68eb810a501489ae4e36414813cc5e42e2621
7
- data.tar.gz: a18eb11df8254b186e2b33d93d1e477a34c05c67e6566492e15122f95c1e4bfc8696f26d29d09fa113e1bbf8468975275b44b2d97d636d240b01fc6bde3492aa
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
@@ -15,7 +15,7 @@ To use this gem, install via Bundler by adding the following to your application
15
15
  <!-- x-release-please-start-version -->
16
16
 
17
17
  ```ruby
18
- gem "increase", "~> 1.140.0"
18
+ gem "increase", "~> 1.141.0"
19
19
  ```
20
20
 
21
21
  <!-- x-release-please-end -->
@@ -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
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Increase
4
- VERSION = "1.140.0"
4
+ VERSION = "1.141.0"
5
5
  end
@@ -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.140.0
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-12 00:00:00.000000000 Z
11
+ date: 2025-11-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: connection_pool