increase 1.101.0 → 1.102.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/check_deposit.rb +9 -7
- data/lib/increase/models/transaction.rb +6 -4
- data/lib/increase/version.rb +1 -1
- data/rbi/increase/models/check_deposit.rbi +11 -7
- data/rbi/increase/models/transaction.rbi +8 -4
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 0073e33da4dc5316fa83774df2a6fa059ebb617ea2b59228baadbf5badc23f45
|
4
|
+
data.tar.gz: afc8cc41146b15bb5235d757acc800561995a5eb14d66704cd3601d0a629ba5a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9ec9eef0932e280e9952791c9774e2b2ea0384ba07b911c8b7f84d676237e74c5cdfe8a7a93ebd97f8beb30b6e036f03a4d3e3bad43786cb6031829b755f1aa8
|
7
|
+
data.tar.gz: d36ef78910af83b9a822fb7e98e69c6ea401e4241222852d227f9a167f67991a7056c6a21f154411ecd79b4e3277dd32ea7a97939a92d370b43cbaf6469124ff
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
## 1.102.0 (2025-10-06)
|
4
|
+
|
5
|
+
Full Changelog: [v1.101.0...v1.102.0](https://github.com/Increase/increase-ruby/compare/v1.101.0...v1.102.0)
|
6
|
+
|
7
|
+
### Features
|
8
|
+
|
9
|
+
* **api:** api update ([c26001f](https://github.com/Increase/increase-ruby/commit/c26001f4d6d634a08d4b29382e82964a21d165bf))
|
10
|
+
|
3
11
|
## 1.101.0 (2025-10-06)
|
4
12
|
|
5
13
|
Full Changelog: [v1.100.1...v1.101.0](https://github.com/Increase/increase-ruby/compare/v1.100.1...v1.101.0)
|
data/README.md
CHANGED
@@ -36,7 +36,7 @@ module Increase
|
|
36
36
|
required :created_at, Time
|
37
37
|
|
38
38
|
# @!attribute deposit_acceptance
|
39
|
-
#
|
39
|
+
# Once your deposit is successfully parsed and accepted by Increase, this will
|
40
40
|
# contain details of the parsed check.
|
41
41
|
#
|
42
42
|
# @return [Increase::Models::CheckDeposit::DepositAcceptance, nil]
|
@@ -139,7 +139,7 @@ module Increase
|
|
139
139
|
#
|
140
140
|
# @param created_at [Time] The [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) date and time at which th
|
141
141
|
#
|
142
|
-
# @param deposit_acceptance [Increase::Models::CheckDeposit::DepositAcceptance, nil]
|
142
|
+
# @param deposit_acceptance [Increase::Models::CheckDeposit::DepositAcceptance, nil] Once your deposit is successfully parsed and accepted by Increase, this will con
|
143
143
|
#
|
144
144
|
# @param deposit_rejection [Increase::Models::CheckDeposit::DepositRejection, nil] If your deposit is rejected by Increase, this will contain details as to why it
|
145
145
|
#
|
@@ -168,7 +168,8 @@ module Increase
|
|
168
168
|
# @see Increase::Models::CheckDeposit#deposit_acceptance
|
169
169
|
class DepositAcceptance < Increase::Internal::Type::BaseModel
|
170
170
|
# @!attribute account_number
|
171
|
-
# The account number printed on the check.
|
171
|
+
# The account number printed on the check. This is an account at the bank that
|
172
|
+
# issued the check.
|
172
173
|
#
|
173
174
|
# @return [String]
|
174
175
|
required :account_number, String
|
@@ -201,7 +202,8 @@ module Increase
|
|
201
202
|
required :currency, enum: -> { Increase::CheckDeposit::DepositAcceptance::Currency }
|
202
203
|
|
203
204
|
# @!attribute routing_number
|
204
|
-
# The routing number printed on the check.
|
205
|
+
# The routing number printed on the check. This is a routing number for the bank
|
206
|
+
# that issued the check.
|
205
207
|
#
|
206
208
|
# @return [String]
|
207
209
|
required :routing_number, String
|
@@ -217,10 +219,10 @@ module Increase
|
|
217
219
|
# Some parameter documentations has been truncated, see
|
218
220
|
# {Increase::Models::CheckDeposit::DepositAcceptance} for more details.
|
219
221
|
#
|
220
|
-
#
|
222
|
+
# Once your deposit is successfully parsed and accepted by Increase, this will
|
221
223
|
# contain details of the parsed check.
|
222
224
|
#
|
223
|
-
# @param account_number [String] The account number printed on the check.
|
225
|
+
# @param account_number [String] The account number printed on the check. This is an account at the bank that iss
|
224
226
|
#
|
225
227
|
# @param amount [Integer] The amount to be deposited in the minor unit of the transaction's currency. For
|
226
228
|
#
|
@@ -230,7 +232,7 @@ module Increase
|
|
230
232
|
#
|
231
233
|
# @param currency [Symbol, Increase::Models::CheckDeposit::DepositAcceptance::Currency] The [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) code for the transaction'
|
232
234
|
#
|
233
|
-
# @param routing_number [String] The routing number printed on the check.
|
235
|
+
# @param routing_number [String] The routing number printed on the check. This is a routing number for the bank t
|
234
236
|
#
|
235
237
|
# @param serial_number [String, nil] The check serial number, if present, for consumer checks. For business checks, t
|
236
238
|
|
@@ -5485,7 +5485,8 @@ module Increase
|
|
5485
5485
|
# @see Increase::Models::Transaction::Source#check_deposit_acceptance
|
5486
5486
|
class CheckDepositAcceptance < Increase::Internal::Type::BaseModel
|
5487
5487
|
# @!attribute account_number
|
5488
|
-
# The account number printed on the check.
|
5488
|
+
# The account number printed on the check. This is an account at the bank that
|
5489
|
+
# issued the check.
|
5489
5490
|
#
|
5490
5491
|
# @return [String]
|
5491
5492
|
required :account_number, String
|
@@ -5518,7 +5519,8 @@ module Increase
|
|
5518
5519
|
required :currency, enum: -> { Increase::Transaction::Source::CheckDepositAcceptance::Currency }
|
5519
5520
|
|
5520
5521
|
# @!attribute routing_number
|
5521
|
-
# The routing number printed on the check.
|
5522
|
+
# The routing number printed on the check. This is a routing number for the bank
|
5523
|
+
# that issued the check.
|
5522
5524
|
#
|
5523
5525
|
# @return [String]
|
5524
5526
|
required :routing_number, String
|
@@ -5541,7 +5543,7 @@ module Increase
|
|
5541
5543
|
# details confirmed. Check Deposits may be returned by the receiving bank, which
|
5542
5544
|
# will appear as a Check Deposit Return.
|
5543
5545
|
#
|
5544
|
-
# @param account_number [String] The account number printed on the check.
|
5546
|
+
# @param account_number [String] The account number printed on the check. This is an account at the bank that iss
|
5545
5547
|
#
|
5546
5548
|
# @param amount [Integer] The amount to be deposited in the minor unit of the transaction's currency. For
|
5547
5549
|
#
|
@@ -5551,7 +5553,7 @@ module Increase
|
|
5551
5553
|
#
|
5552
5554
|
# @param currency [Symbol, Increase::Models::Transaction::Source::CheckDepositAcceptance::Currency] The [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) code for the transaction'
|
5553
5555
|
#
|
5554
|
-
# @param routing_number [String] The routing number printed on the check.
|
5556
|
+
# @param routing_number [String] The routing number printed on the check. This is a routing number for the bank t
|
5555
5557
|
#
|
5556
5558
|
# @param serial_number [String, nil] The check serial number, if present, for consumer checks. For business checks, t
|
5557
5559
|
|
data/lib/increase/version.rb
CHANGED
@@ -29,7 +29,7 @@ module Increase
|
|
29
29
|
sig { returns(Time) }
|
30
30
|
attr_accessor :created_at
|
31
31
|
|
32
|
-
#
|
32
|
+
# Once your deposit is successfully parsed and accepted by Increase, this will
|
33
33
|
# contain details of the parsed check.
|
34
34
|
sig { returns(T.nilable(Increase::CheckDeposit::DepositAcceptance)) }
|
35
35
|
attr_reader :deposit_acceptance
|
@@ -171,7 +171,7 @@ module Increase
|
|
171
171
|
# The [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) date and time at which
|
172
172
|
# the transfer was created.
|
173
173
|
created_at:,
|
174
|
-
#
|
174
|
+
# Once your deposit is successfully parsed and accepted by Increase, this will
|
175
175
|
# contain details of the parsed check.
|
176
176
|
deposit_acceptance:,
|
177
177
|
# If your deposit is rejected by Increase, this will contain details as to why it
|
@@ -250,7 +250,8 @@ module Increase
|
|
250
250
|
)
|
251
251
|
end
|
252
252
|
|
253
|
-
# The account number printed on the check.
|
253
|
+
# The account number printed on the check. This is an account at the bank that
|
254
|
+
# issued the check.
|
254
255
|
sig { returns(String) }
|
255
256
|
attr_accessor :account_number
|
256
257
|
|
@@ -277,7 +278,8 @@ module Increase
|
|
277
278
|
end
|
278
279
|
attr_accessor :currency
|
279
280
|
|
280
|
-
# The routing number printed on the check.
|
281
|
+
# The routing number printed on the check. This is a routing number for the bank
|
282
|
+
# that issued the check.
|
281
283
|
sig { returns(String) }
|
282
284
|
attr_accessor :routing_number
|
283
285
|
|
@@ -286,7 +288,7 @@ module Increase
|
|
286
288
|
sig { returns(T.nilable(String)) }
|
287
289
|
attr_accessor :serial_number
|
288
290
|
|
289
|
-
#
|
291
|
+
# Once your deposit is successfully parsed and accepted by Increase, this will
|
290
292
|
# contain details of the parsed check.
|
291
293
|
sig do
|
292
294
|
params(
|
@@ -301,7 +303,8 @@ module Increase
|
|
301
303
|
).returns(T.attached_class)
|
302
304
|
end
|
303
305
|
def self.new(
|
304
|
-
# The account number printed on the check.
|
306
|
+
# The account number printed on the check. This is an account at the bank that
|
307
|
+
# issued the check.
|
305
308
|
account_number:,
|
306
309
|
# The amount to be deposited in the minor unit of the transaction's currency. For
|
307
310
|
# dollars, for example, this is cents.
|
@@ -314,7 +317,8 @@ module Increase
|
|
314
317
|
# The [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) code for the
|
315
318
|
# transaction's currency.
|
316
319
|
currency:,
|
317
|
-
# The routing number printed on the check.
|
320
|
+
# The routing number printed on the check. This is a routing number for the bank
|
321
|
+
# that issued the check.
|
318
322
|
routing_number:,
|
319
323
|
# The check serial number, if present, for consumer checks. For business checks,
|
320
324
|
# the serial number is usually in the `auxiliary_on_us` field.
|
@@ -10334,7 +10334,8 @@ module Increase
|
|
10334
10334
|
)
|
10335
10335
|
end
|
10336
10336
|
|
10337
|
-
# The account number printed on the check.
|
10337
|
+
# The account number printed on the check. This is an account at the bank that
|
10338
|
+
# issued the check.
|
10338
10339
|
sig { returns(String) }
|
10339
10340
|
attr_accessor :account_number
|
10340
10341
|
|
@@ -10361,7 +10362,8 @@ module Increase
|
|
10361
10362
|
end
|
10362
10363
|
attr_accessor :currency
|
10363
10364
|
|
10364
|
-
# The routing number printed on the check.
|
10365
|
+
# The routing number printed on the check. This is a routing number for the bank
|
10366
|
+
# that issued the check.
|
10365
10367
|
sig { returns(String) }
|
10366
10368
|
attr_accessor :routing_number
|
10367
10369
|
|
@@ -10388,7 +10390,8 @@ module Increase
|
|
10388
10390
|
).returns(T.attached_class)
|
10389
10391
|
end
|
10390
10392
|
def self.new(
|
10391
|
-
# The account number printed on the check.
|
10393
|
+
# The account number printed on the check. This is an account at the bank that
|
10394
|
+
# issued the check.
|
10392
10395
|
account_number:,
|
10393
10396
|
# The amount to be deposited in the minor unit of the transaction's currency. For
|
10394
10397
|
# dollars, for example, this is cents.
|
@@ -10401,7 +10404,8 @@ module Increase
|
|
10401
10404
|
# The [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) code for the
|
10402
10405
|
# transaction's currency.
|
10403
10406
|
currency:,
|
10404
|
-
# The routing number printed on the check.
|
10407
|
+
# The routing number printed on the check. This is a routing number for the bank
|
10408
|
+
# that issued the check.
|
10405
10409
|
routing_number:,
|
10406
10410
|
# The check serial number, if present, for consumer checks. For business checks,
|
10407
10411
|
# the serial number is usually in the `auxiliary_on_us` field.
|