increase 1.269.0 → 1.270.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: 8971f61ddc00be46dc4ff23cb3bf23ef2d0beb890b904d85852f376f59f91a5d
4
- data.tar.gz: bb219a8985374faf4614e5dd50000d6e19ea258615223b7258cbcd81efa56f97
3
+ metadata.gz: 9810bec20a0581c5123686f866337bcad786487dd19fb755a93a7168e5ccc0fa
4
+ data.tar.gz: d7f641485de3fbc2ab14677c70634d758e1c60a4846f5fbea5e49820f94b4781
5
5
  SHA512:
6
- metadata.gz: bdba3f753711504b7d8dbc0fd4a9c898cf14ba2bd2d90ba8ffe06720c8bdfb94c72d566e1b474cf75a8a1e5efb5c5ceca4776115cf1ba1c0c5dbc22f1b0fb346
7
- data.tar.gz: 8c945366cc4573c3903f9e93fd65b8b89546bb196aa4f77c22572ded8ddb64f90a6d18ebfa4e9438dc88768609deb37a922010ff14edee4895eac84145d926de
6
+ metadata.gz: ad76bb8fc909c2c1b0fb8e245ce2d9bef3426d34d6f2e8334c2e8286eeef68bd6d2546a97deaf0c82e78f51cd6cbc8d6078f2e145bab1348464342c5a2c22196
7
+ data.tar.gz: 208eb7838cea02bfc67fede515c220105b74c8499e72e5133ce21a74ff33bc20954ef93c2ef523b6d2d9dee6cba95b784faa0f9ed9d3b7b19af7d6e7a7ed836a
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Changelog
2
2
 
3
+ ## 1.270.0 (2026-03-25)
4
+
5
+ Full Changelog: [v1.269.0...v1.270.0](https://github.com/Increase/increase-ruby/compare/v1.269.0...v1.270.0)
6
+
7
+ ### Features
8
+
9
+ * **api:** api update ([967e2f6](https://github.com/Increase/increase-ruby/commit/967e2f6e2a0cc1474165bf1bbd81cc88b1c94d4f))
10
+
3
11
  ## 1.269.0 (2026-03-24)
4
12
 
5
13
  Full Changelog: [v1.268.0...v1.269.0](https://github.com/Increase/increase-ruby/compare/v1.268.0...v1.269.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.269.0"
18
+ gem "increase", "~> 1.270.0"
19
19
  ```
20
20
 
21
21
  <!-- x-release-please-end -->
@@ -301,12 +301,6 @@ module Increase
301
301
  module Reason
302
302
  extend Increase::Internal::Type::Enum
303
303
 
304
- # The return was initiated too late and the receiving institution has responded with a Late Return Claim.
305
- LATE_RETURN = :late_return
306
-
307
- # The check was deposited to the wrong payee and the depositing institution has reimbursed the funds with a Wrong Payee Credit.
308
- WRONG_PAYEE_CREDIT = :wrong_payee_credit
309
-
310
304
  # The check was deposited with a different amount than what was written on the check.
311
305
  ADJUSTED_AMOUNT = :adjusted_amount
312
306
 
@@ -231,15 +231,6 @@ module Increase
231
231
  # The check was deposited to the wrong payee and the depositing institution has reimbursed the funds with a Wrong Payee Credit.
232
232
  WRONG_PAYEE_CREDIT = :wrong_payee_credit
233
233
 
234
- # The check was deposited with a different amount than what was written on the check.
235
- ADJUSTED_AMOUNT = :adjusted_amount
236
-
237
- # The recipient was not able to process the check. This usually happens for e.g., low quality images.
238
- NON_CONFORMING_ITEM = :non_conforming_item
239
-
240
- # The check has already been deposited elsewhere and so this is a duplicate.
241
- PAID = :paid
242
-
243
234
  # @!method self.values
244
235
  # @return [Array<Symbol>]
245
236
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Increase
4
- VERSION = "1.269.0"
4
+ VERSION = "1.270.0"
5
5
  end
@@ -458,20 +458,6 @@ module Increase
458
458
  end
459
459
  OrSymbol = T.type_alias { T.any(Symbol, String) }
460
460
 
461
- # The return was initiated too late and the receiving institution has responded with a Late Return Claim.
462
- LATE_RETURN =
463
- T.let(
464
- :late_return,
465
- Increase::CheckDeposit::DepositAdjustment::Reason::TaggedSymbol
466
- )
467
-
468
- # The check was deposited to the wrong payee and the depositing institution has reimbursed the funds with a Wrong Payee Credit.
469
- WRONG_PAYEE_CREDIT =
470
- T.let(
471
- :wrong_payee_credit,
472
- Increase::CheckDeposit::DepositAdjustment::Reason::TaggedSymbol
473
- )
474
-
475
461
  # The check was deposited with a different amount than what was written on the check.
476
462
  ADJUSTED_AMOUNT =
477
463
  T.let(
@@ -317,27 +317,6 @@ module Increase
317
317
  Increase::InboundCheckDeposit::Adjustment::Reason::TaggedSymbol
318
318
  )
319
319
 
320
- # The check was deposited with a different amount than what was written on the check.
321
- ADJUSTED_AMOUNT =
322
- T.let(
323
- :adjusted_amount,
324
- Increase::InboundCheckDeposit::Adjustment::Reason::TaggedSymbol
325
- )
326
-
327
- # The recipient was not able to process the check. This usually happens for e.g., low quality images.
328
- NON_CONFORMING_ITEM =
329
- T.let(
330
- :non_conforming_item,
331
- Increase::InboundCheckDeposit::Adjustment::Reason::TaggedSymbol
332
- )
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
-
341
320
  sig do
342
321
  override.returns(
343
322
  T::Array[
@@ -195,22 +195,11 @@ module Increase
195
195
  transaction_id: String
196
196
  }
197
197
 
198
- type reason =
199
- :late_return
200
- | :wrong_payee_credit
201
- | :adjusted_amount
202
- | :non_conforming_item
203
- | :paid
198
+ type reason = :adjusted_amount | :non_conforming_item | :paid
204
199
 
205
200
  module Reason
206
201
  extend Increase::Internal::Type::Enum
207
202
 
208
- # The return was initiated too late and the receiving institution has responded with a Late Return Claim.
209
- LATE_RETURN: :late_return
210
-
211
- # The check was deposited to the wrong payee and the depositing institution has reimbursed the funds with a Wrong Payee Credit.
212
- WRONG_PAYEE_CREDIT: :wrong_payee_credit
213
-
214
203
  # The check was deposited with a different amount than what was written on the check.
215
204
  ADJUSTED_AMOUNT: :adjusted_amount
216
205
 
@@ -142,12 +142,7 @@ module Increase
142
142
  transaction_id: String
143
143
  }
144
144
 
145
- type reason =
146
- :late_return
147
- | :wrong_payee_credit
148
- | :adjusted_amount
149
- | :non_conforming_item
150
- | :paid
145
+ type reason = :late_return | :wrong_payee_credit
151
146
 
152
147
  module Reason
153
148
  extend Increase::Internal::Type::Enum
@@ -158,15 +153,6 @@ module Increase
158
153
  # The check was deposited to the wrong payee and the depositing institution has reimbursed the funds with a Wrong Payee Credit.
159
154
  WRONG_PAYEE_CREDIT: :wrong_payee_credit
160
155
 
161
- # The check was deposited with a different amount than what was written on the check.
162
- ADJUSTED_AMOUNT: :adjusted_amount
163
-
164
- # The recipient was not able to process the check. This usually happens for e.g., low quality images.
165
- NON_CONFORMING_ITEM: :non_conforming_item
166
-
167
- # The check has already been deposited elsewhere and so this is a duplicate.
168
- PAID: :paid
169
-
170
156
  def self?.values: -> ::Array[Increase::Models::InboundCheckDeposit::Adjustment::reason]
171
157
  end
172
158
  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.269.0
4
+ version: 1.270.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Increase
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2026-03-24 00:00:00.000000000 Z
11
+ date: 2026-03-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: cgi