increase 1.268.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 +4 -4
- data/CHANGELOG.md +16 -0
- data/README.md +1 -1
- data/lib/increase/models/card_push_transfer_create_params.rb +53 -1
- data/lib/increase/models/check_deposit.rb +0 -6
- data/lib/increase/models/inbound_check_deposit.rb +0 -9
- data/lib/increase/resources/card_push_transfers.rb +13 -1
- data/lib/increase/version.rb +1 -1
- data/rbi/increase/models/card_push_transfer_create_params.rbi +74 -0
- data/rbi/increase/models/check_deposit.rbi +0 -14
- data/rbi/increase/models/inbound_check_deposit.rbi +0 -21
- data/rbi/increase/resources/card_push_transfers.rbi +22 -0
- data/sig/increase/models/card_push_transfer_create_params.rbs +42 -0
- data/sig/increase/models/check_deposit.rbs +1 -12
- data/sig/increase/models/inbound_check_deposit.rbs +1 -15
- data/sig/increase/resources/card_push_transfers.rbs +6 -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: 9810bec20a0581c5123686f866337bcad786487dd19fb755a93a7168e5ccc0fa
|
|
4
|
+
data.tar.gz: d7f641485de3fbc2ab14677c70634d758e1c60a4846f5fbea5e49820f94b4781
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ad76bb8fc909c2c1b0fb8e245ce2d9bef3426d34d6f2e8334c2e8286eeef68bd6d2546a97deaf0c82e78f51cd6cbc8d6078f2e145bab1348464342c5a2c22196
|
|
7
|
+
data.tar.gz: 208eb7838cea02bfc67fede515c220105b74c8499e72e5133ce21a74ff33bc20954ef93c2ef523b6d2d9dee6cba95b784faa0f9ed9d3b7b19af7d6e7a7ed836a
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
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
|
+
|
|
11
|
+
## 1.269.0 (2026-03-24)
|
|
12
|
+
|
|
13
|
+
Full Changelog: [v1.268.0...v1.269.0](https://github.com/Increase/increase-ruby/compare/v1.268.0...v1.269.0)
|
|
14
|
+
|
|
15
|
+
### Features
|
|
16
|
+
|
|
17
|
+
* **api:** api update ([a2fef35](https://github.com/Increase/increase-ruby/commit/a2fef35b582e081732a3b8e100d4b8a35ce460d6))
|
|
18
|
+
|
|
3
19
|
## 1.268.0 (2026-03-24)
|
|
4
20
|
|
|
5
21
|
Full Changelog: [v1.267.0...v1.268.0](https://github.com/Increase/increase-ruby/compare/v1.267.0...v1.268.0)
|
data/README.md
CHANGED
|
@@ -115,13 +115,53 @@ module Increase
|
|
|
115
115
|
# @return [String]
|
|
116
116
|
required :source_account_number_id, String
|
|
117
117
|
|
|
118
|
+
# @!attribute merchant_legal_business_name
|
|
119
|
+
# The legal business name of the merchant (generally your business) sending the
|
|
120
|
+
# transfer. Required if the card is issued in Canada.
|
|
121
|
+
#
|
|
122
|
+
# @return [String, nil]
|
|
123
|
+
optional :merchant_legal_business_name, String
|
|
124
|
+
|
|
125
|
+
# @!attribute merchant_street_address
|
|
126
|
+
# The street address of the merchant (generally your business) sending the
|
|
127
|
+
# transfer. Required if the card is issued in Canada.
|
|
128
|
+
#
|
|
129
|
+
# @return [String, nil]
|
|
130
|
+
optional :merchant_street_address, String
|
|
131
|
+
|
|
132
|
+
# @!attribute recipient_address_city
|
|
133
|
+
# The city of the recipient. Required if the card is issued in Canada.
|
|
134
|
+
#
|
|
135
|
+
# @return [String, nil]
|
|
136
|
+
optional :recipient_address_city, String
|
|
137
|
+
|
|
138
|
+
# @!attribute recipient_address_line1
|
|
139
|
+
# The first line of the recipient's address. Required if the card is issued in
|
|
140
|
+
# Canada.
|
|
141
|
+
#
|
|
142
|
+
# @return [String, nil]
|
|
143
|
+
optional :recipient_address_line1, String
|
|
144
|
+
|
|
145
|
+
# @!attribute recipient_address_postal_code
|
|
146
|
+
# The postal code of the recipient. Required if the card is issued in Canada.
|
|
147
|
+
#
|
|
148
|
+
# @return [String, nil]
|
|
149
|
+
optional :recipient_address_postal_code, String
|
|
150
|
+
|
|
151
|
+
# @!attribute recipient_address_state
|
|
152
|
+
# The state or province of the recipient. Required if the card is issued in
|
|
153
|
+
# Canada.
|
|
154
|
+
#
|
|
155
|
+
# @return [String, nil]
|
|
156
|
+
optional :recipient_address_state, String
|
|
157
|
+
|
|
118
158
|
# @!attribute require_approval
|
|
119
159
|
# Whether the transfer requires explicit approval via the dashboard or API.
|
|
120
160
|
#
|
|
121
161
|
# @return [Boolean, nil]
|
|
122
162
|
optional :require_approval, Increase::Internal::Type::Boolean
|
|
123
163
|
|
|
124
|
-
# @!method initialize(business_application_identifier:, card_token_id:, merchant_category_code:, merchant_city_name:, merchant_name:, merchant_name_prefix:, merchant_postal_code:, merchant_state:, presentment_amount:, recipient_name:, sender_address_city:, sender_address_line1:, sender_address_postal_code:, sender_address_state:, sender_name:, source_account_number_id:, require_approval: nil, request_options: {})
|
|
164
|
+
# @!method initialize(business_application_identifier:, card_token_id:, merchant_category_code:, merchant_city_name:, merchant_name:, merchant_name_prefix:, merchant_postal_code:, merchant_state:, presentment_amount:, recipient_name:, sender_address_city:, sender_address_line1:, sender_address_postal_code:, sender_address_state:, sender_name:, source_account_number_id:, merchant_legal_business_name: nil, merchant_street_address: nil, recipient_address_city: nil, recipient_address_line1: nil, recipient_address_postal_code: nil, recipient_address_state: nil, require_approval: nil, request_options: {})
|
|
125
165
|
# Some parameter documentations has been truncated, see
|
|
126
166
|
# {Increase::Models::CardPushTransferCreateParams} for more details.
|
|
127
167
|
#
|
|
@@ -157,6 +197,18 @@ module Increase
|
|
|
157
197
|
#
|
|
158
198
|
# @param source_account_number_id [String] The identifier of the Account Number from which to send the transfer.
|
|
159
199
|
#
|
|
200
|
+
# @param merchant_legal_business_name [String] The legal business name of the merchant (generally your business) sending the tr
|
|
201
|
+
#
|
|
202
|
+
# @param merchant_street_address [String] The street address of the merchant (generally your business) sending the transfe
|
|
203
|
+
#
|
|
204
|
+
# @param recipient_address_city [String] The city of the recipient. Required if the card is issued in Canada.
|
|
205
|
+
#
|
|
206
|
+
# @param recipient_address_line1 [String] The first line of the recipient's address. Required if the card is issued in Can
|
|
207
|
+
#
|
|
208
|
+
# @param recipient_address_postal_code [String] The postal code of the recipient. Required if the card is issued in Canada.
|
|
209
|
+
#
|
|
210
|
+
# @param recipient_address_state [String] The state or province of the recipient. Required if the card is issued in Canada
|
|
211
|
+
#
|
|
160
212
|
# @param require_approval [Boolean] Whether the transfer requires explicit approval via the dashboard or API.
|
|
161
213
|
#
|
|
162
214
|
# @param request_options [Increase::RequestOptions, Hash{Symbol=>Object}]
|
|
@@ -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
|
|
@@ -8,7 +8,7 @@ module Increase
|
|
|
8
8
|
#
|
|
9
9
|
# Create a Card Push Transfer
|
|
10
10
|
#
|
|
11
|
-
# @overload create(business_application_identifier:, card_token_id:, merchant_category_code:, merchant_city_name:, merchant_name:, merchant_name_prefix:, merchant_postal_code:, merchant_state:, presentment_amount:, recipient_name:, sender_address_city:, sender_address_line1:, sender_address_postal_code:, sender_address_state:, sender_name:, source_account_number_id:, require_approval: nil, request_options: {})
|
|
11
|
+
# @overload create(business_application_identifier:, card_token_id:, merchant_category_code:, merchant_city_name:, merchant_name:, merchant_name_prefix:, merchant_postal_code:, merchant_state:, presentment_amount:, recipient_name:, sender_address_city:, sender_address_line1:, sender_address_postal_code:, sender_address_state:, sender_name:, source_account_number_id:, merchant_legal_business_name: nil, merchant_street_address: nil, recipient_address_city: nil, recipient_address_line1: nil, recipient_address_postal_code: nil, recipient_address_state: nil, require_approval: nil, request_options: {})
|
|
12
12
|
#
|
|
13
13
|
# @param business_application_identifier [Symbol, Increase::Models::CardPushTransferCreateParams::BusinessApplicationIdentifier] The Business Application Identifier describes the type of transaction being perf
|
|
14
14
|
#
|
|
@@ -42,6 +42,18 @@ module Increase
|
|
|
42
42
|
#
|
|
43
43
|
# @param source_account_number_id [String] The identifier of the Account Number from which to send the transfer.
|
|
44
44
|
#
|
|
45
|
+
# @param merchant_legal_business_name [String] The legal business name of the merchant (generally your business) sending the tr
|
|
46
|
+
#
|
|
47
|
+
# @param merchant_street_address [String] The street address of the merchant (generally your business) sending the transfe
|
|
48
|
+
#
|
|
49
|
+
# @param recipient_address_city [String] The city of the recipient. Required if the card is issued in Canada.
|
|
50
|
+
#
|
|
51
|
+
# @param recipient_address_line1 [String] The first line of the recipient's address. Required if the card is issued in Can
|
|
52
|
+
#
|
|
53
|
+
# @param recipient_address_postal_code [String] The postal code of the recipient. Required if the card is issued in Canada.
|
|
54
|
+
#
|
|
55
|
+
# @param recipient_address_state [String] The state or province of the recipient. Required if the card is issued in Canada
|
|
56
|
+
#
|
|
45
57
|
# @param require_approval [Boolean] Whether the transfer requires explicit approval via the dashboard or API.
|
|
46
58
|
#
|
|
47
59
|
# @param request_options [Increase::RequestOptions, Hash{Symbol=>Object}, nil]
|
data/lib/increase/version.rb
CHANGED
|
@@ -101,6 +101,52 @@ module Increase
|
|
|
101
101
|
sig { returns(String) }
|
|
102
102
|
attr_accessor :source_account_number_id
|
|
103
103
|
|
|
104
|
+
# The legal business name of the merchant (generally your business) sending the
|
|
105
|
+
# transfer. Required if the card is issued in Canada.
|
|
106
|
+
sig { returns(T.nilable(String)) }
|
|
107
|
+
attr_reader :merchant_legal_business_name
|
|
108
|
+
|
|
109
|
+
sig { params(merchant_legal_business_name: String).void }
|
|
110
|
+
attr_writer :merchant_legal_business_name
|
|
111
|
+
|
|
112
|
+
# The street address of the merchant (generally your business) sending the
|
|
113
|
+
# transfer. Required if the card is issued in Canada.
|
|
114
|
+
sig { returns(T.nilable(String)) }
|
|
115
|
+
attr_reader :merchant_street_address
|
|
116
|
+
|
|
117
|
+
sig { params(merchant_street_address: String).void }
|
|
118
|
+
attr_writer :merchant_street_address
|
|
119
|
+
|
|
120
|
+
# The city of the recipient. Required if the card is issued in Canada.
|
|
121
|
+
sig { returns(T.nilable(String)) }
|
|
122
|
+
attr_reader :recipient_address_city
|
|
123
|
+
|
|
124
|
+
sig { params(recipient_address_city: String).void }
|
|
125
|
+
attr_writer :recipient_address_city
|
|
126
|
+
|
|
127
|
+
# The first line of the recipient's address. Required if the card is issued in
|
|
128
|
+
# Canada.
|
|
129
|
+
sig { returns(T.nilable(String)) }
|
|
130
|
+
attr_reader :recipient_address_line1
|
|
131
|
+
|
|
132
|
+
sig { params(recipient_address_line1: String).void }
|
|
133
|
+
attr_writer :recipient_address_line1
|
|
134
|
+
|
|
135
|
+
# The postal code of the recipient. Required if the card is issued in Canada.
|
|
136
|
+
sig { returns(T.nilable(String)) }
|
|
137
|
+
attr_reader :recipient_address_postal_code
|
|
138
|
+
|
|
139
|
+
sig { params(recipient_address_postal_code: String).void }
|
|
140
|
+
attr_writer :recipient_address_postal_code
|
|
141
|
+
|
|
142
|
+
# The state or province of the recipient. Required if the card is issued in
|
|
143
|
+
# Canada.
|
|
144
|
+
sig { returns(T.nilable(String)) }
|
|
145
|
+
attr_reader :recipient_address_state
|
|
146
|
+
|
|
147
|
+
sig { params(recipient_address_state: String).void }
|
|
148
|
+
attr_writer :recipient_address_state
|
|
149
|
+
|
|
104
150
|
# Whether the transfer requires explicit approval via the dashboard or API.
|
|
105
151
|
sig { returns(T.nilable(T::Boolean)) }
|
|
106
152
|
attr_reader :require_approval
|
|
@@ -128,6 +174,12 @@ module Increase
|
|
|
128
174
|
sender_address_state: String,
|
|
129
175
|
sender_name: String,
|
|
130
176
|
source_account_number_id: String,
|
|
177
|
+
merchant_legal_business_name: String,
|
|
178
|
+
merchant_street_address: String,
|
|
179
|
+
recipient_address_city: String,
|
|
180
|
+
recipient_address_line1: String,
|
|
181
|
+
recipient_address_postal_code: String,
|
|
182
|
+
recipient_address_state: String,
|
|
131
183
|
require_approval: T::Boolean,
|
|
132
184
|
request_options: Increase::RequestOptions::OrHash
|
|
133
185
|
).returns(T.attached_class)
|
|
@@ -176,6 +228,22 @@ module Increase
|
|
|
176
228
|
sender_name:,
|
|
177
229
|
# The identifier of the Account Number from which to send the transfer.
|
|
178
230
|
source_account_number_id:,
|
|
231
|
+
# The legal business name of the merchant (generally your business) sending the
|
|
232
|
+
# transfer. Required if the card is issued in Canada.
|
|
233
|
+
merchant_legal_business_name: nil,
|
|
234
|
+
# The street address of the merchant (generally your business) sending the
|
|
235
|
+
# transfer. Required if the card is issued in Canada.
|
|
236
|
+
merchant_street_address: nil,
|
|
237
|
+
# The city of the recipient. Required if the card is issued in Canada.
|
|
238
|
+
recipient_address_city: nil,
|
|
239
|
+
# The first line of the recipient's address. Required if the card is issued in
|
|
240
|
+
# Canada.
|
|
241
|
+
recipient_address_line1: nil,
|
|
242
|
+
# The postal code of the recipient. Required if the card is issued in Canada.
|
|
243
|
+
recipient_address_postal_code: nil,
|
|
244
|
+
# The state or province of the recipient. Required if the card is issued in
|
|
245
|
+
# Canada.
|
|
246
|
+
recipient_address_state: nil,
|
|
179
247
|
# Whether the transfer requires explicit approval via the dashboard or API.
|
|
180
248
|
require_approval: nil,
|
|
181
249
|
request_options: {}
|
|
@@ -203,6 +271,12 @@ module Increase
|
|
|
203
271
|
sender_address_state: String,
|
|
204
272
|
sender_name: String,
|
|
205
273
|
source_account_number_id: String,
|
|
274
|
+
merchant_legal_business_name: String,
|
|
275
|
+
merchant_street_address: String,
|
|
276
|
+
recipient_address_city: String,
|
|
277
|
+
recipient_address_line1: String,
|
|
278
|
+
recipient_address_postal_code: String,
|
|
279
|
+
recipient_address_state: String,
|
|
206
280
|
require_approval: T::Boolean,
|
|
207
281
|
request_options: Increase::RequestOptions
|
|
208
282
|
}
|
|
@@ -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[
|
|
@@ -24,6 +24,12 @@ module Increase
|
|
|
24
24
|
sender_address_state: String,
|
|
25
25
|
sender_name: String,
|
|
26
26
|
source_account_number_id: String,
|
|
27
|
+
merchant_legal_business_name: String,
|
|
28
|
+
merchant_street_address: String,
|
|
29
|
+
recipient_address_city: String,
|
|
30
|
+
recipient_address_line1: String,
|
|
31
|
+
recipient_address_postal_code: String,
|
|
32
|
+
recipient_address_state: String,
|
|
27
33
|
require_approval: T::Boolean,
|
|
28
34
|
request_options: Increase::RequestOptions::OrHash
|
|
29
35
|
).returns(Increase::CardPushTransfer)
|
|
@@ -72,6 +78,22 @@ module Increase
|
|
|
72
78
|
sender_name:,
|
|
73
79
|
# The identifier of the Account Number from which to send the transfer.
|
|
74
80
|
source_account_number_id:,
|
|
81
|
+
# The legal business name of the merchant (generally your business) sending the
|
|
82
|
+
# transfer. Required if the card is issued in Canada.
|
|
83
|
+
merchant_legal_business_name: nil,
|
|
84
|
+
# The street address of the merchant (generally your business) sending the
|
|
85
|
+
# transfer. Required if the card is issued in Canada.
|
|
86
|
+
merchant_street_address: nil,
|
|
87
|
+
# The city of the recipient. Required if the card is issued in Canada.
|
|
88
|
+
recipient_address_city: nil,
|
|
89
|
+
# The first line of the recipient's address. Required if the card is issued in
|
|
90
|
+
# Canada.
|
|
91
|
+
recipient_address_line1: nil,
|
|
92
|
+
# The postal code of the recipient. Required if the card is issued in Canada.
|
|
93
|
+
recipient_address_postal_code: nil,
|
|
94
|
+
# The state or province of the recipient. Required if the card is issued in
|
|
95
|
+
# Canada.
|
|
96
|
+
recipient_address_state: nil,
|
|
75
97
|
# Whether the transfer requires explicit approval via the dashboard or API.
|
|
76
98
|
require_approval: nil,
|
|
77
99
|
request_options: {}
|
|
@@ -18,6 +18,12 @@ module Increase
|
|
|
18
18
|
sender_address_state: String,
|
|
19
19
|
sender_name: String,
|
|
20
20
|
source_account_number_id: String,
|
|
21
|
+
merchant_legal_business_name: String,
|
|
22
|
+
merchant_street_address: String,
|
|
23
|
+
recipient_address_city: String,
|
|
24
|
+
:recipient_address_line1 => String,
|
|
25
|
+
recipient_address_postal_code: String,
|
|
26
|
+
recipient_address_state: String,
|
|
21
27
|
require_approval: bool
|
|
22
28
|
}
|
|
23
29
|
& Increase::Internal::Type::request_parameters
|
|
@@ -58,6 +64,30 @@ module Increase
|
|
|
58
64
|
|
|
59
65
|
attr_accessor source_account_number_id: String
|
|
60
66
|
|
|
67
|
+
attr_reader merchant_legal_business_name: String?
|
|
68
|
+
|
|
69
|
+
def merchant_legal_business_name=: (String) -> String
|
|
70
|
+
|
|
71
|
+
attr_reader merchant_street_address: String?
|
|
72
|
+
|
|
73
|
+
def merchant_street_address=: (String) -> String
|
|
74
|
+
|
|
75
|
+
attr_reader recipient_address_city: String?
|
|
76
|
+
|
|
77
|
+
def recipient_address_city=: (String) -> String
|
|
78
|
+
|
|
79
|
+
attr_reader recipient_address_line1: String?
|
|
80
|
+
|
|
81
|
+
def recipient_address_line1=: (String) -> String
|
|
82
|
+
|
|
83
|
+
attr_reader recipient_address_postal_code: String?
|
|
84
|
+
|
|
85
|
+
def recipient_address_postal_code=: (String) -> String
|
|
86
|
+
|
|
87
|
+
attr_reader recipient_address_state: String?
|
|
88
|
+
|
|
89
|
+
def recipient_address_state=: (String) -> String
|
|
90
|
+
|
|
61
91
|
attr_reader require_approval: bool?
|
|
62
92
|
|
|
63
93
|
def require_approval=: (bool) -> bool
|
|
@@ -79,6 +109,12 @@ module Increase
|
|
|
79
109
|
sender_address_state: String,
|
|
80
110
|
sender_name: String,
|
|
81
111
|
source_account_number_id: String,
|
|
112
|
+
?merchant_legal_business_name: String,
|
|
113
|
+
?merchant_street_address: String,
|
|
114
|
+
?recipient_address_city: String,
|
|
115
|
+
?recipient_address_line1: String,
|
|
116
|
+
?recipient_address_postal_code: String,
|
|
117
|
+
?recipient_address_state: String,
|
|
82
118
|
?require_approval: bool,
|
|
83
119
|
?request_options: Increase::request_opts
|
|
84
120
|
) -> void
|
|
@@ -100,6 +136,12 @@ module Increase
|
|
|
100
136
|
sender_address_state: String,
|
|
101
137
|
sender_name: String,
|
|
102
138
|
source_account_number_id: String,
|
|
139
|
+
merchant_legal_business_name: String,
|
|
140
|
+
merchant_street_address: String,
|
|
141
|
+
recipient_address_city: String,
|
|
142
|
+
:recipient_address_line1 => String,
|
|
143
|
+
recipient_address_postal_code: String,
|
|
144
|
+
recipient_address_state: String,
|
|
103
145
|
require_approval: bool,
|
|
104
146
|
request_options: Increase::RequestOptions
|
|
105
147
|
}
|
|
@@ -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
|
|
@@ -18,6 +18,12 @@ module Increase
|
|
|
18
18
|
sender_address_state: String,
|
|
19
19
|
sender_name: String,
|
|
20
20
|
source_account_number_id: String,
|
|
21
|
+
?merchant_legal_business_name: String,
|
|
22
|
+
?merchant_street_address: String,
|
|
23
|
+
?recipient_address_city: String,
|
|
24
|
+
?recipient_address_line1: String,
|
|
25
|
+
?recipient_address_postal_code: String,
|
|
26
|
+
?recipient_address_state: String,
|
|
21
27
|
?require_approval: bool,
|
|
22
28
|
?request_options: Increase::request_opts
|
|
23
29
|
) -> Increase::CardPushTransfer
|
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.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-
|
|
11
|
+
date: 2026-03-25 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: cgi
|