increase 1.347.0 → 1.348.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/README.md +1 -1
- data/lib/increase/models/ach_prenotification_create_params.rb +2 -2
- data/lib/increase/models/ach_transfer.rb +2 -2
- data/lib/increase/models/ach_transfer_create_params.rb +1 -24
- data/lib/increase/models/balance_lookup.rb +49 -1
- data/lib/increase/models/beneficial_owner_update_params.rb +9 -1
- data/lib/increase/models/card.rb +43 -1
- data/lib/increase/models/card_create_params.rb +42 -1
- data/lib/increase/models/card_dispute.rb +1 -1
- data/lib/increase/models/card_dispute_list_params.rb +1 -1
- data/lib/increase/models/card_payment.rb +18 -1
- data/lib/increase/models/check_transfer.rb +13 -1
- data/lib/increase/models/check_transfer_create_params.rb +25 -13
- data/lib/increase/models/entity.rb +22 -4
- data/lib/increase/models/entity_update_params.rb +754 -1
- data/lib/increase/models/event.rb +9 -0
- data/lib/increase/models/event_list_params.rb +9 -0
- data/lib/increase/models/event_subscription.rb +9 -0
- data/lib/increase/models/event_subscription_create_params.rb +9 -0
- data/lib/increase/models/file.rb +7 -6
- data/lib/increase/models/inbound_ach_transfer.rb +6 -6
- data/lib/increase/models/pending_transaction.rb +18 -1
- data/lib/increase/models/real_time_decision.rb +18 -1
- data/lib/increase/models/real_time_payments_transfer.rb +30 -19
- data/lib/increase/models/real_time_payments_transfer_create_params.rb +12 -1
- data/lib/increase/models/simulations/card_dispute_action_params.rb +30 -1
- data/lib/increase/models/simulations/entity_update_validation_params.rb +3 -0
- data/lib/increase/models/simulations/real_time_payments_transfer_complete_params.rb +18 -18
- data/lib/increase/models/unwrap_webhook_event.rb +9 -0
- data/lib/increase/models/wire_transfer_create_params.rb +100 -42
- data/lib/increase/resources/ach_prenotifications.rb +1 -1
- data/lib/increase/resources/ach_transfers.rb +1 -4
- data/lib/increase/resources/beneficial_owners.rb +3 -1
- data/lib/increase/resources/cards.rb +5 -1
- data/lib/increase/resources/real_time_payments_transfers.rb +5 -1
- data/lib/increase/version.rb +1 -1
- data/rbi/increase/models/ach_prenotification_create_params.rbi +2 -2
- data/rbi/increase/models/ach_transfer.rbi +2 -2
- data/rbi/increase/models/ach_transfer_create_params.rbi +0 -59
- data/rbi/increase/models/balance_lookup.rbi +48 -0
- data/rbi/increase/models/beneficial_owner_update_params.rbi +11 -0
- data/rbi/increase/models/card.rbi +63 -0
- data/rbi/increase/models/card_create_params.rbi +65 -0
- data/rbi/increase/models/card_dispute.rbi +1 -1
- data/rbi/increase/models/card_dispute_list_params.rbi +1 -1
- data/rbi/increase/models/card_payment.rbi +16 -0
- data/rbi/increase/models/check_transfer.rbi +15 -0
- data/rbi/increase/models/check_transfer_create_params.rbi +26 -12
- data/rbi/increase/models/entity.rbi +61 -3
- data/rbi/increase/models/entity_update_params.rbi +1326 -3
- data/rbi/increase/models/event.rbi +21 -0
- data/rbi/increase/models/event_list_params.rbi +21 -0
- data/rbi/increase/models/event_subscription.rbi +21 -0
- data/rbi/increase/models/event_subscription_create_params.rbi +21 -0
- data/rbi/increase/models/file.rbi +7 -6
- data/rbi/increase/models/inbound_ach_transfer.rbi +6 -6
- data/rbi/increase/models/pending_transaction.rbi +16 -0
- data/rbi/increase/models/real_time_decision.rbi +16 -0
- data/rbi/increase/models/real_time_payments_transfer.rbi +29 -18
- data/rbi/increase/models/real_time_payments_transfer_create_params.rbi +15 -0
- data/rbi/increase/models/simulations/card_dispute_action_params.rbi +60 -0
- data/rbi/increase/models/simulations/entity_update_validation_params.rbi +7 -0
- data/rbi/increase/models/simulations/real_time_payments_transfer_complete_params.rbi +18 -18
- data/rbi/increase/models/unwrap_webhook_event.rbi +21 -0
- data/rbi/increase/models/wire_transfer_create_params.rbi +146 -62
- data/rbi/increase/resources/ach_prenotifications.rbi +1 -1
- data/rbi/increase/resources/ach_transfers.rbi +0 -4
- data/rbi/increase/resources/beneficial_owners.rbi +3 -0
- data/rbi/increase/resources/cards.rbi +4 -0
- data/rbi/increase/resources/real_time_payments_transfers.rbi +4 -0
- data/sig/increase/models/ach_transfer_create_params.rbs +1 -24
- data/sig/increase/models/balance_lookup.rbs +30 -0
- data/sig/increase/models/beneficial_owner_update_params.rbs +7 -0
- data/sig/increase/models/card.rbs +19 -0
- data/sig/increase/models/card_create_params.rbs +25 -0
- data/sig/increase/models/card_dispute.rbs +1 -1
- data/sig/increase/models/card_dispute_list_params.rbs +1 -1
- data/sig/increase/models/card_payment.rbs +5 -0
- data/sig/increase/models/check_transfer.rbs +9 -0
- data/sig/increase/models/check_transfer_create_params.rbs +7 -0
- data/sig/increase/models/entity.rbs +21 -4
- data/sig/increase/models/entity_update_params.rbs +585 -3
- data/sig/increase/models/event.rbs +12 -0
- data/sig/increase/models/event_list_params.rbs +12 -0
- data/sig/increase/models/event_subscription.rbs +12 -0
- data/sig/increase/models/event_subscription_create_params.rbs +12 -0
- data/sig/increase/models/inbound_ach_transfer.rbs +2 -2
- data/sig/increase/models/pending_transaction.rbs +5 -0
- data/sig/increase/models/real_time_decision.rbs +5 -0
- data/sig/increase/models/real_time_payments_transfer.rbs +23 -18
- data/sig/increase/models/real_time_payments_transfer_create_params.rbs +7 -0
- data/sig/increase/models/simulations/card_dispute_action_params.rbs +23 -0
- data/sig/increase/models/simulations/entity_update_validation_params.rbs +4 -0
- data/sig/increase/models/simulations/real_time_payments_transfer_complete_params.rbs +18 -18
- data/sig/increase/models/unwrap_webhook_event.rbs +12 -0
- data/sig/increase/models/wire_transfer_create_params.rbs +78 -32
- data/sig/increase/resources/ach_transfers.rbs +0 -1
- data/sig/increase/resources/beneficial_owners.rbs +1 -0
- data/sig/increase/resources/cards.rbs +1 -0
- data/sig/increase/resources/real_time_payments_transfers.rbs +1 -0
- metadata +2 -2
|
@@ -115,48 +115,71 @@ module Increase
|
|
|
115
115
|
|
|
116
116
|
type address =
|
|
117
117
|
{
|
|
118
|
-
|
|
118
|
+
structured: Increase::WireTransferCreateParams::Creditor::Address::Structured
|
|
119
119
|
}
|
|
120
120
|
|
|
121
121
|
class Address < Increase::Internal::Type::BaseModel
|
|
122
|
-
attr_reader
|
|
122
|
+
attr_reader structured: Increase::WireTransferCreateParams::Creditor::Address::Structured?
|
|
123
123
|
|
|
124
|
-
def
|
|
125
|
-
Increase::WireTransferCreateParams::Creditor::Address::
|
|
126
|
-
) -> Increase::WireTransferCreateParams::Creditor::Address::
|
|
124
|
+
def structured=: (
|
|
125
|
+
Increase::WireTransferCreateParams::Creditor::Address::Structured
|
|
126
|
+
) -> Increase::WireTransferCreateParams::Creditor::Address::Structured
|
|
127
127
|
|
|
128
128
|
def initialize: (
|
|
129
|
-
?
|
|
129
|
+
?structured: Increase::WireTransferCreateParams::Creditor::Address::Structured
|
|
130
130
|
) -> void
|
|
131
131
|
|
|
132
132
|
def to_hash: -> {
|
|
133
|
-
|
|
133
|
+
structured: Increase::WireTransferCreateParams::Creditor::Address::Structured
|
|
134
134
|
}
|
|
135
135
|
|
|
136
|
-
type
|
|
137
|
-
{
|
|
136
|
+
type structured =
|
|
137
|
+
{
|
|
138
|
+
city: String,
|
|
139
|
+
country: String,
|
|
140
|
+
:line1 => String,
|
|
141
|
+
:line2 => String,
|
|
142
|
+
postal_code: String,
|
|
143
|
+
state: String
|
|
144
|
+
}
|
|
145
|
+
|
|
146
|
+
class Structured < Increase::Internal::Type::BaseModel
|
|
147
|
+
attr_accessor city: String
|
|
138
148
|
|
|
139
|
-
|
|
140
|
-
|
|
149
|
+
attr_accessor country: String
|
|
150
|
+
|
|
151
|
+
attr_reader line1: String?
|
|
152
|
+
|
|
153
|
+
def line1=: (String) -> String
|
|
141
154
|
|
|
142
155
|
attr_reader line2: String?
|
|
143
156
|
|
|
144
157
|
def line2=: (String) -> String
|
|
145
158
|
|
|
146
|
-
attr_reader
|
|
159
|
+
attr_reader postal_code: String?
|
|
160
|
+
|
|
161
|
+
def postal_code=: (String) -> String
|
|
162
|
+
|
|
163
|
+
attr_reader state: String?
|
|
147
164
|
|
|
148
|
-
def
|
|
165
|
+
def state=: (String) -> String
|
|
149
166
|
|
|
150
167
|
def initialize: (
|
|
151
|
-
|
|
168
|
+
city: String,
|
|
169
|
+
country: String,
|
|
170
|
+
?line1: String,
|
|
152
171
|
?line2: String,
|
|
153
|
-
?
|
|
172
|
+
?postal_code: String,
|
|
173
|
+
?state: String
|
|
154
174
|
) -> void
|
|
155
175
|
|
|
156
176
|
def to_hash: -> {
|
|
177
|
+
city: String,
|
|
178
|
+
country: String,
|
|
157
179
|
:line1 => String,
|
|
158
180
|
:line2 => String,
|
|
159
|
-
:
|
|
181
|
+
postal_code: String,
|
|
182
|
+
state: String
|
|
160
183
|
}
|
|
161
184
|
end
|
|
162
185
|
end
|
|
@@ -271,48 +294,71 @@ module Increase
|
|
|
271
294
|
|
|
272
295
|
type address =
|
|
273
296
|
{
|
|
274
|
-
|
|
297
|
+
structured: Increase::WireTransferCreateParams::Debtor::Address::Structured
|
|
275
298
|
}
|
|
276
299
|
|
|
277
300
|
class Address < Increase::Internal::Type::BaseModel
|
|
278
|
-
attr_reader
|
|
301
|
+
attr_reader structured: Increase::WireTransferCreateParams::Debtor::Address::Structured?
|
|
279
302
|
|
|
280
|
-
def
|
|
281
|
-
Increase::WireTransferCreateParams::Debtor::Address::
|
|
282
|
-
) -> Increase::WireTransferCreateParams::Debtor::Address::
|
|
303
|
+
def structured=: (
|
|
304
|
+
Increase::WireTransferCreateParams::Debtor::Address::Structured
|
|
305
|
+
) -> Increase::WireTransferCreateParams::Debtor::Address::Structured
|
|
283
306
|
|
|
284
307
|
def initialize: (
|
|
285
|
-
?
|
|
308
|
+
?structured: Increase::WireTransferCreateParams::Debtor::Address::Structured
|
|
286
309
|
) -> void
|
|
287
310
|
|
|
288
311
|
def to_hash: -> {
|
|
289
|
-
|
|
312
|
+
structured: Increase::WireTransferCreateParams::Debtor::Address::Structured
|
|
290
313
|
}
|
|
291
314
|
|
|
292
|
-
type
|
|
293
|
-
{
|
|
315
|
+
type structured =
|
|
316
|
+
{
|
|
317
|
+
city: String,
|
|
318
|
+
country: String,
|
|
319
|
+
:line1 => String,
|
|
320
|
+
:line2 => String,
|
|
321
|
+
postal_code: String,
|
|
322
|
+
state: String
|
|
323
|
+
}
|
|
324
|
+
|
|
325
|
+
class Structured < Increase::Internal::Type::BaseModel
|
|
326
|
+
attr_accessor city: String
|
|
294
327
|
|
|
295
|
-
|
|
296
|
-
|
|
328
|
+
attr_accessor country: String
|
|
329
|
+
|
|
330
|
+
attr_reader line1: String?
|
|
331
|
+
|
|
332
|
+
def line1=: (String) -> String
|
|
297
333
|
|
|
298
334
|
attr_reader line2: String?
|
|
299
335
|
|
|
300
336
|
def line2=: (String) -> String
|
|
301
337
|
|
|
302
|
-
attr_reader
|
|
338
|
+
attr_reader postal_code: String?
|
|
339
|
+
|
|
340
|
+
def postal_code=: (String) -> String
|
|
341
|
+
|
|
342
|
+
attr_reader state: String?
|
|
303
343
|
|
|
304
|
-
def
|
|
344
|
+
def state=: (String) -> String
|
|
305
345
|
|
|
306
346
|
def initialize: (
|
|
307
|
-
|
|
347
|
+
city: String,
|
|
348
|
+
country: String,
|
|
349
|
+
?line1: String,
|
|
308
350
|
?line2: String,
|
|
309
|
-
?
|
|
351
|
+
?postal_code: String,
|
|
352
|
+
?state: String
|
|
310
353
|
) -> void
|
|
311
354
|
|
|
312
355
|
def to_hash: -> {
|
|
356
|
+
city: String,
|
|
357
|
+
country: String,
|
|
313
358
|
:line1 => String,
|
|
314
359
|
:line2 => String,
|
|
315
|
-
:
|
|
360
|
+
postal_code: String,
|
|
361
|
+
state: String
|
|
316
362
|
}
|
|
317
363
|
end
|
|
318
364
|
end
|
|
@@ -20,7 +20,6 @@ module Increase
|
|
|
20
20
|
?require_approval: bool,
|
|
21
21
|
?routing_number: String,
|
|
22
22
|
?standard_entry_class_code: Increase::Models::ACHTransferCreateParams::standard_entry_class_code,
|
|
23
|
-
?transaction_timing: Increase::Models::ACHTransferCreateParams::transaction_timing,
|
|
24
23
|
?request_options: Increase::request_opts
|
|
25
24
|
) -> Increase::ACHTransfer
|
|
26
25
|
|
|
@@ -18,6 +18,7 @@ module Increase
|
|
|
18
18
|
String entity_beneficial_owner_id,
|
|
19
19
|
?address: Increase::BeneficialOwnerUpdateParams::Address,
|
|
20
20
|
?confirmed_no_us_tax_id: bool,
|
|
21
|
+
?date_of_birth: Date,
|
|
21
22
|
?identification: Increase::BeneficialOwnerUpdateParams::Identification,
|
|
22
23
|
?name: String,
|
|
23
24
|
?prongs: ::Array[Increase::Models::BeneficialOwnerUpdateParams::prong],
|
|
@@ -5,6 +5,7 @@ module Increase
|
|
|
5
5
|
account_id: String,
|
|
6
6
|
?authorization_controls: Increase::CardCreateParams::AuthorizationControls,
|
|
7
7
|
?billing_address: Increase::CardCreateParams::BillingAddress,
|
|
8
|
+
?cardholder_name: Increase::CardCreateParams::CardholderName,
|
|
8
9
|
?description: String,
|
|
9
10
|
?digital_wallet: Increase::CardCreateParams::DigitalWallet,
|
|
10
11
|
?entity_id: String,
|
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.348.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-
|
|
11
|
+
date: 2026-08-20 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: cgi
|