increase 1.348.0 → 1.350.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/account_create_params.rb +15 -15
- data/lib/increase/models/account_number.rb +3 -3
- data/lib/increase/models/ach_transfer.rb +12 -12
- data/lib/increase/models/balance_lookup.rb +1 -1
- data/lib/increase/models/beneficial_owner_create_params.rb +2 -4
- data/lib/increase/models/beneficial_owner_update_params.rb +2 -4
- data/lib/increase/models/card_dispute.rb +9 -1
- data/lib/increase/models/card_dispute_submit_user_submission_params.rb +4 -0
- data/lib/increase/models/card_payment.rb +58 -58
- data/lib/increase/models/card_purchase_supplement.rb +9 -1
- data/lib/increase/models/card_token_capabilities.rb +2 -2
- data/lib/increase/models/check_deposit.rb +9 -9
- data/lib/increase/models/check_transfer.rb +2 -2
- data/lib/increase/models/check_transfer_create_params.rb +9 -4
- data/lib/increase/models/declined_transaction.rb +12 -9
- data/lib/increase/models/digital_wallet_token.rb +9 -1
- data/lib/increase/models/entity.rb +298 -6
- data/lib/increase/models/entity_create_params.rb +332 -29
- data/lib/increase/models/entity_onboarding_session_list_params.rb +2 -2
- data/lib/increase/models/entity_update_params.rb +472 -15
- data/lib/increase/models/event.rb +3 -0
- data/lib/increase/models/event_list_params.rb +3 -0
- data/lib/increase/models/event_subscription.rb +3 -0
- data/lib/increase/models/event_subscription_create_params.rb +3 -0
- data/lib/increase/models/fednow_transfer.rb +115 -4
- data/lib/increase/models/fednow_transfer_list_params.rb +3 -3
- data/lib/increase/models/inbound_ach_transfer.rb +2 -2
- data/lib/increase/models/inbound_check_deposit.rb +7 -4
- data/lib/increase/models/inbound_fednow_transfer.rb +21 -1
- data/lib/increase/models/inbound_mail_item.rb +14 -1
- data/lib/increase/models/inbound_wire_drawdown_request.rb +12 -1
- data/lib/increase/models/inbound_wire_transfer.rb +4 -4
- data/lib/increase/models/intrafi_exclusion.rb +4 -4
- data/lib/increase/models/lockbox_recipient_create_params.rb +2 -2
- data/lib/increase/models/pending_transaction.rb +20 -20
- data/lib/increase/models/pending_transaction_list_params.rb +5 -7
- data/lib/increase/models/physical_card.rb +9 -1
- data/lib/increase/models/physical_card_create_params.rb +6 -3
- data/lib/increase/models/real_time_decision.rb +18 -18
- data/lib/increase/models/simulations/card_authentication_create_params.rb +2 -2
- data/lib/increase/models/simulations/card_dispute_action_params.rb +6 -6
- data/lib/increase/models/simulations/entity_update_validation_params.rb +3 -3
- data/lib/increase/models/simulations/inbound_check_deposit_adjustment_params.rb +8 -11
- data/lib/increase/models/simulations/interest_payment_create_params.rb +2 -2
- data/lib/increase/models/simulations/pending_transaction_release_inbound_funds_hold_params.rb +2 -2
- data/lib/increase/models/simulations/program_create_params.rb +14 -3
- data/lib/increase/models/transaction.rb +146 -19
- data/lib/increase/models/transaction_list_params.rb +3 -0
- data/lib/increase/models/unwrap_webhook_event.rb +3 -0
- data/lib/increase/models/wire_drawdown_request.rb +12 -1
- data/lib/increase/models/wire_transfer_create_params.rb +2 -2
- data/lib/increase/resources/cards.rb +2 -2
- data/lib/increase/resources/check_transfers.rb +1 -1
- data/lib/increase/resources/entities.rb +10 -2
- data/lib/increase/resources/entity_onboarding_sessions.rb +1 -1
- data/lib/increase/resources/lockbox_recipients.rb +1 -1
- data/lib/increase/resources/physical_cards.rb +2 -1
- data/lib/increase/resources/simulations/card_authentications.rb +1 -1
- data/lib/increase/resources/simulations/card_disputes.rb +2 -2
- data/lib/increase/resources/simulations/inbound_check_deposits.rb +4 -1
- data/lib/increase/resources/simulations/interest_payments.rb +1 -1
- data/lib/increase/resources/simulations/pending_transactions.rb +1 -1
- data/lib/increase/resources/simulations/physical_cards.rb +2 -2
- data/lib/increase/resources/simulations/programs.rb +6 -2
- data/lib/increase/resources/wire_transfers.rb +1 -1
- data/lib/increase/version.rb +1 -1
- data/rbi/increase/models/account_create_params.rbi +37 -21
- data/rbi/increase/models/account_number.rbi +3 -3
- data/rbi/increase/models/ach_transfer.rbi +12 -12
- data/rbi/increase/models/balance_lookup.rbi +1 -1
- data/rbi/increase/models/beneficial_owner_create_params.rbi +2 -4
- data/rbi/increase/models/beneficial_owner_update_params.rbi +2 -4
- data/rbi/increase/models/card_dispute.rbi +8 -0
- data/rbi/increase/models/card_dispute_submit_user_submission_params.rbi +3 -0
- data/rbi/increase/models/card_payment.rbi +58 -58
- data/rbi/increase/models/card_purchase_supplement.rbi +8 -0
- data/rbi/increase/models/card_token_capabilities.rbi +2 -2
- data/rbi/increase/models/check_deposit.rbi +9 -9
- data/rbi/increase/models/check_transfer.rbi +2 -2
- data/rbi/increase/models/check_transfer_create_params.rbi +8 -4
- data/rbi/increase/models/declined_transaction.rbi +16 -9
- data/rbi/increase/models/digital_wallet_token.rbi +8 -0
- data/rbi/increase/models/entity.rbi +496 -5
- data/rbi/increase/models/entity_create_params.rbi +547 -28
- data/rbi/increase/models/entity_onboarding_session_list_params.rbi +2 -2
- data/rbi/increase/models/entity_update_params.rbi +814 -14
- data/rbi/increase/models/event.rbi +7 -0
- data/rbi/increase/models/event_list_params.rbi +7 -0
- data/rbi/increase/models/event_subscription.rbi +7 -0
- data/rbi/increase/models/event_subscription_create_params.rbi +7 -0
- data/rbi/increase/models/fednow_transfer.rbi +213 -7
- data/rbi/increase/models/fednow_transfer_list_params.rbi +7 -7
- data/rbi/increase/models/inbound_ach_transfer.rbi +2 -2
- data/rbi/increase/models/inbound_check_deposit.rbi +6 -4
- data/rbi/increase/models/inbound_fednow_transfer.rbi +23 -0
- data/rbi/increase/models/inbound_mail_item.rbi +12 -0
- data/rbi/increase/models/inbound_wire_drawdown_request.rbi +10 -0
- data/rbi/increase/models/inbound_wire_transfer.rbi +4 -4
- data/rbi/increase/models/intrafi_exclusion.rbi +4 -4
- data/rbi/increase/models/lockbox_recipient_create_params.rbi +2 -2
- data/rbi/increase/models/pending_transaction.rbi +20 -20
- data/rbi/increase/models/pending_transaction_list_params.rbi +5 -7
- data/rbi/increase/models/physical_card.rbi +8 -0
- data/rbi/increase/models/physical_card_create_params.rbi +6 -3
- data/rbi/increase/models/real_time_decision.rbi +18 -18
- data/rbi/increase/models/simulations/card_authentication_create_params.rbi +2 -2
- data/rbi/increase/models/simulations/card_dispute_action_params.rbi +6 -6
- data/rbi/increase/models/simulations/entity_update_validation_params.rbi +3 -3
- data/rbi/increase/models/simulations/inbound_check_deposit_adjustment_params.rbi +8 -23
- data/rbi/increase/models/simulations/interest_payment_create_params.rbi +2 -2
- data/rbi/increase/models/simulations/pending_transaction_release_inbound_funds_hold_params.rbi +2 -2
- data/rbi/increase/models/simulations/program_create_params.rbi +15 -2
- data/rbi/increase/models/transaction.rbi +264 -18
- data/rbi/increase/models/transaction_list_params.rbi +7 -0
- data/rbi/increase/models/unwrap_webhook_event.rbi +7 -0
- data/rbi/increase/models/wire_drawdown_request.rbi +10 -0
- data/rbi/increase/models/wire_transfer_create_params.rbi +2 -2
- data/rbi/increase/resources/cards.rbi +2 -2
- data/rbi/increase/resources/check_transfers.rbi +1 -1
- data/rbi/increase/resources/entities.rbi +10 -0
- data/rbi/increase/resources/entity_onboarding_sessions.rbi +1 -1
- data/rbi/increase/resources/lockbox_recipients.rbi +1 -1
- data/rbi/increase/resources/physical_cards.rbi +2 -1
- data/rbi/increase/resources/simulations/card_authentications.rbi +1 -1
- data/rbi/increase/resources/simulations/card_disputes.rbi +2 -2
- data/rbi/increase/resources/simulations/inbound_check_deposits.rbi +4 -1
- data/rbi/increase/resources/simulations/interest_payments.rbi +1 -1
- data/rbi/increase/resources/simulations/pending_transactions.rbi +1 -1
- data/rbi/increase/resources/simulations/physical_cards.rbi +2 -2
- data/rbi/increase/resources/simulations/programs.rbi +5 -1
- data/rbi/increase/resources/wire_transfers.rbi +1 -1
- data/sig/increase/models/account_create_params.rbs +20 -12
- data/sig/increase/models/card_dispute.rbs +5 -0
- data/sig/increase/models/card_purchase_supplement.rbs +5 -0
- data/sig/increase/models/declined_transaction.rbs +4 -0
- data/sig/increase/models/digital_wallet_token.rbs +5 -0
- data/sig/increase/models/entity.rbs +230 -4
- data/sig/increase/models/entity_create_params.rbs +232 -1
- data/sig/increase/models/entity_update_params.rbs +366 -0
- data/sig/increase/models/event.rbs +4 -0
- data/sig/increase/models/event_list_params.rbs +4 -0
- data/sig/increase/models/event_subscription.rbs +4 -0
- data/sig/increase/models/event_subscription_create_params.rbs +4 -0
- data/sig/increase/models/fednow_transfer.rbs +113 -4
- data/sig/increase/models/fednow_transfer_list_params.rbs +4 -4
- data/sig/increase/models/inbound_fednow_transfer.rbs +14 -0
- data/sig/increase/models/inbound_mail_item.rbs +5 -0
- data/sig/increase/models/inbound_wire_drawdown_request.rbs +5 -0
- data/sig/increase/models/pending_transaction.rbs +1 -1
- data/sig/increase/models/pending_transaction_list_params.rbs +1 -1
- data/sig/increase/models/physical_card.rbs +5 -0
- data/sig/increase/models/simulations/entity_update_validation_params.rbs +3 -3
- data/sig/increase/models/simulations/inbound_check_deposit_adjustment_params.rbs +1 -15
- data/sig/increase/models/simulations/program_create_params.rbs +7 -0
- data/sig/increase/models/transaction.rbs +113 -0
- data/sig/increase/models/transaction_list_params.rbs +4 -0
- data/sig/increase/models/unwrap_webhook_event.rbs +4 -0
- data/sig/increase/models/wire_drawdown_request.rbs +5 -0
- data/sig/increase/resources/entities.rbs +2 -0
- data/sig/increase/resources/simulations/programs.rbs +1 -0
- metadata +2 -2
|
@@ -112,6 +112,7 @@ module Increase
|
|
|
112
112
|
check_deposit_return: Increase::Transaction::Source::CheckDepositReturn?,
|
|
113
113
|
check_transfer_deposit: Increase::Transaction::Source::CheckTransferDeposit?,
|
|
114
114
|
fednow_transfer_acknowledgement: Increase::Transaction::Source::FednowTransferAcknowledgement?,
|
|
115
|
+
fednow_transfer_return: Increase::Transaction::Source::FednowTransferReturn?,
|
|
115
116
|
fee_payment: Increase::Transaction::Source::FeePayment?,
|
|
116
117
|
inbound_ach_transfer: Increase::Transaction::Source::InboundACHTransfer?,
|
|
117
118
|
inbound_ach_transfer_return_intention: Increase::Transaction::Source::InboundACHTransferReturnIntention?,
|
|
@@ -175,6 +176,8 @@ module Increase
|
|
|
175
176
|
|
|
176
177
|
attr_accessor fednow_transfer_acknowledgement: Increase::Transaction::Source::FednowTransferAcknowledgement?
|
|
177
178
|
|
|
179
|
+
attr_accessor fednow_transfer_return: Increase::Transaction::Source::FednowTransferReturn?
|
|
180
|
+
|
|
178
181
|
attr_accessor fee_payment: Increase::Transaction::Source::FeePayment?
|
|
179
182
|
|
|
180
183
|
attr_accessor inbound_ach_transfer: Increase::Transaction::Source::InboundACHTransfer?
|
|
@@ -233,6 +236,7 @@ module Increase
|
|
|
233
236
|
?check_deposit_return: Increase::Transaction::Source::CheckDepositReturn?,
|
|
234
237
|
?check_transfer_deposit: Increase::Transaction::Source::CheckTransferDeposit?,
|
|
235
238
|
?fednow_transfer_acknowledgement: Increase::Transaction::Source::FednowTransferAcknowledgement?,
|
|
239
|
+
?fednow_transfer_return: Increase::Transaction::Source::FednowTransferReturn?,
|
|
236
240
|
?fee_payment: Increase::Transaction::Source::FeePayment?,
|
|
237
241
|
?inbound_ach_transfer: Increase::Transaction::Source::InboundACHTransfer?,
|
|
238
242
|
?inbound_ach_transfer_return_intention: Increase::Transaction::Source::InboundACHTransferReturnIntention?,
|
|
@@ -275,6 +279,7 @@ module Increase
|
|
|
275
279
|
check_deposit_return: Increase::Transaction::Source::CheckDepositReturn?,
|
|
276
280
|
check_transfer_deposit: Increase::Transaction::Source::CheckTransferDeposit?,
|
|
277
281
|
fednow_transfer_acknowledgement: Increase::Transaction::Source::FednowTransferAcknowledgement?,
|
|
282
|
+
fednow_transfer_return: Increase::Transaction::Source::FednowTransferReturn?,
|
|
278
283
|
fee_payment: Increase::Transaction::Source::FeePayment?,
|
|
279
284
|
inbound_ach_transfer: Increase::Transaction::Source::InboundACHTransfer?,
|
|
280
285
|
inbound_ach_transfer_return_intention: Increase::Transaction::Source::InboundACHTransferReturnIntention?,
|
|
@@ -311,6 +316,7 @@ module Increase
|
|
|
311
316
|
| :check_deposit_acceptance
|
|
312
317
|
| :check_deposit_return
|
|
313
318
|
| :fednow_transfer_acknowledgement
|
|
319
|
+
| :fednow_transfer_return
|
|
314
320
|
| :check_transfer_deposit
|
|
315
321
|
| :fee_payment
|
|
316
322
|
| :inbound_ach_transfer
|
|
@@ -383,6 +389,9 @@ module Increase
|
|
|
383
389
|
# FedNow Transfer Acknowledgement: details will be under the `fednow_transfer_acknowledgement` object.
|
|
384
390
|
FEDNOW_TRANSFER_ACKNOWLEDGEMENT: :fednow_transfer_acknowledgement
|
|
385
391
|
|
|
392
|
+
# FedNow Transfer Return: details will be under the `fednow_transfer_return` object.
|
|
393
|
+
FEDNOW_TRANSFER_RETURN: :fednow_transfer_return
|
|
394
|
+
|
|
386
395
|
# Check Transfer Deposit: details will be under the `check_transfer_deposit` object.
|
|
387
396
|
CHECK_TRANSFER_DEPOSIT: :check_transfer_deposit
|
|
388
397
|
|
|
@@ -4935,6 +4944,110 @@ module Increase
|
|
|
4935
4944
|
def to_hash: -> { transfer_id: String }
|
|
4936
4945
|
end
|
|
4937
4946
|
|
|
4947
|
+
type fednow_transfer_return =
|
|
4948
|
+
{
|
|
4949
|
+
amount: Integer,
|
|
4950
|
+
return_reason_additional_information: String?,
|
|
4951
|
+
return_reason_code: Increase::Models::Transaction::Source::FednowTransferReturn::return_reason_code,
|
|
4952
|
+
transfer_id: String
|
|
4953
|
+
}
|
|
4954
|
+
|
|
4955
|
+
class FednowTransferReturn < Increase::Internal::Type::BaseModel
|
|
4956
|
+
attr_accessor amount: Integer
|
|
4957
|
+
|
|
4958
|
+
attr_accessor return_reason_additional_information: String?
|
|
4959
|
+
|
|
4960
|
+
attr_accessor return_reason_code: Increase::Models::Transaction::Source::FednowTransferReturn::return_reason_code
|
|
4961
|
+
|
|
4962
|
+
attr_accessor transfer_id: String
|
|
4963
|
+
|
|
4964
|
+
def initialize: (
|
|
4965
|
+
amount: Integer,
|
|
4966
|
+
return_reason_additional_information: String?,
|
|
4967
|
+
return_reason_code: Increase::Models::Transaction::Source::FednowTransferReturn::return_reason_code,
|
|
4968
|
+
transfer_id: String
|
|
4969
|
+
) -> void
|
|
4970
|
+
|
|
4971
|
+
def to_hash: -> {
|
|
4972
|
+
amount: Integer,
|
|
4973
|
+
return_reason_additional_information: String?,
|
|
4974
|
+
return_reason_code: Increase::Models::Transaction::Source::FednowTransferReturn::return_reason_code,
|
|
4975
|
+
transfer_id: String
|
|
4976
|
+
}
|
|
4977
|
+
|
|
4978
|
+
type return_reason_code =
|
|
4979
|
+
:account_closed
|
|
4980
|
+
| :account_blocked
|
|
4981
|
+
| :invalid_agent
|
|
4982
|
+
| :invalid_creditor_account_number
|
|
4983
|
+
| :incorrect_account_number
|
|
4984
|
+
| :end_customer_deceased
|
|
4985
|
+
| :transaction_forbidden
|
|
4986
|
+
| :regulatory_reason
|
|
4987
|
+
| :fraud
|
|
4988
|
+
| :duplication
|
|
4989
|
+
| :wrong_amount
|
|
4990
|
+
| :requested_by_customer
|
|
4991
|
+
| :unable_to_apply
|
|
4992
|
+
| :not_specified
|
|
4993
|
+
| :narrative
|
|
4994
|
+
| :other
|
|
4995
|
+
|
|
4996
|
+
module ReturnReasonCode
|
|
4997
|
+
extend Increase::Internal::Type::Enum
|
|
4998
|
+
|
|
4999
|
+
# The destination account is closed. Corresponds to the FedNow reason codes `AC04` and `AC07`.
|
|
5000
|
+
ACCOUNT_CLOSED: :account_closed
|
|
5001
|
+
|
|
5002
|
+
# The destination account is currently blocked from receiving transactions. Corresponds to the FedNow reason code `AC06`.
|
|
5003
|
+
ACCOUNT_BLOCKED: :account_blocked
|
|
5004
|
+
|
|
5005
|
+
# The recipient's bank was not a valid agent for this transfer. Corresponds to the FedNow reason codes `AC14` and `AGNT`.
|
|
5006
|
+
INVALID_AGENT: :invalid_agent
|
|
5007
|
+
|
|
5008
|
+
# The destination account does not exist. Corresponds to the FedNow reason code `AC03`.
|
|
5009
|
+
INVALID_CREDITOR_ACCOUNT_NUMBER: :invalid_creditor_account_number
|
|
5010
|
+
|
|
5011
|
+
# The destination account number was incorrect. Corresponds to the FedNow reason code `AC01`.
|
|
5012
|
+
INCORRECT_ACCOUNT_NUMBER: :incorrect_account_number
|
|
5013
|
+
|
|
5014
|
+
# The destination account holder is deceased. Corresponds to the FedNow reason code `MD07`.
|
|
5015
|
+
END_CUSTOMER_DECEASED: :end_customer_deceased
|
|
5016
|
+
|
|
5017
|
+
# The transfer was not permitted by the recipient's bank. Corresponds to the FedNow reason code `AG01`.
|
|
5018
|
+
TRANSACTION_FORBIDDEN: :transaction_forbidden
|
|
5019
|
+
|
|
5020
|
+
# The transfer was returned for a regulatory reason at the recipient's bank. Corresponds to the FedNow reason code `RR04`.
|
|
5021
|
+
REGULATORY_REASON: :regulatory_reason
|
|
5022
|
+
|
|
5023
|
+
# The transfer was reported as fraudulent. Corresponds to the FedNow reason code `FR01`.
|
|
5024
|
+
FRAUD: :fraud
|
|
5025
|
+
|
|
5026
|
+
# The transfer duplicated another transfer. Corresponds to the FedNow reason codes `AM05` and `DUPL`.
|
|
5027
|
+
DUPLICATION: :duplication
|
|
5028
|
+
|
|
5029
|
+
# The transfer amount was incorrect. Corresponds to the FedNow reason code `AM09`.
|
|
5030
|
+
WRONG_AMOUNT: :wrong_amount
|
|
5031
|
+
|
|
5032
|
+
# The transfer was returned at the request of the recipient's customer. Corresponds to the FedNow reason code `CUST`.
|
|
5033
|
+
REQUESTED_BY_CUSTOMER: :requested_by_customer
|
|
5034
|
+
|
|
5035
|
+
# The recipient's bank could not apply the funds. Corresponds to the FedNow reason code `RUTA`.
|
|
5036
|
+
UNABLE_TO_APPLY: :unable_to_apply
|
|
5037
|
+
|
|
5038
|
+
# The recipient's bank did not specify a reason. Corresponds to the FedNow reason codes `MS02` and `MS03`.
|
|
5039
|
+
NOT_SPECIFIED: :not_specified
|
|
5040
|
+
|
|
5041
|
+
# The reason is provided as narrative information in the additional information field. Corresponds to the FedNow reason code `NARR`.
|
|
5042
|
+
NARRATIVE: :narrative
|
|
5043
|
+
|
|
5044
|
+
# The transfer was returned for some other reason.
|
|
5045
|
+
OTHER: :other
|
|
5046
|
+
|
|
5047
|
+
def self?.values: -> ::Array[Increase::Models::Transaction::Source::FednowTransferReturn::return_reason_code]
|
|
5048
|
+
end
|
|
5049
|
+
end
|
|
5050
|
+
|
|
4938
5051
|
type fee_payment =
|
|
4939
5052
|
{
|
|
4940
5053
|
amount: Integer,
|
|
@@ -97,6 +97,7 @@ module Increase
|
|
|
97
97
|
| :check_deposit_acceptance
|
|
98
98
|
| :check_deposit_return
|
|
99
99
|
| :fednow_transfer_acknowledgement
|
|
100
|
+
| :fednow_transfer_return
|
|
100
101
|
| :check_transfer_deposit
|
|
101
102
|
| :fee_payment
|
|
102
103
|
| :inbound_ach_transfer
|
|
@@ -169,6 +170,9 @@ module Increase
|
|
|
169
170
|
# FedNow Transfer Acknowledgement: details will be under the `fednow_transfer_acknowledgement` object.
|
|
170
171
|
FEDNOW_TRANSFER_ACKNOWLEDGEMENT: :fednow_transfer_acknowledgement
|
|
171
172
|
|
|
173
|
+
# FedNow Transfer Return: details will be under the `fednow_transfer_return` object.
|
|
174
|
+
FEDNOW_TRANSFER_RETURN: :fednow_transfer_return
|
|
175
|
+
|
|
172
176
|
# Check Transfer Deposit: details will be under the `check_transfer_deposit` object.
|
|
173
177
|
CHECK_TRANSFER_DEPOSIT: :check_transfer_deposit
|
|
174
178
|
|
|
@@ -141,6 +141,7 @@ module Increase
|
|
|
141
141
|
| :"physical_card_profile.updated"
|
|
142
142
|
| :"physical_check.created"
|
|
143
143
|
| :"physical_check.updated"
|
|
144
|
+
| :"plaid_processor_token.created"
|
|
144
145
|
| :"checkbook.created"
|
|
145
146
|
| :"checkbook.updated"
|
|
146
147
|
| :"program.created"
|
|
@@ -465,6 +466,9 @@ module Increase
|
|
|
465
466
|
# Occurs whenever a Physical Check is updated.
|
|
466
467
|
PHYSICAL_CHECK_UPDATED: :"physical_check.updated"
|
|
467
468
|
|
|
469
|
+
# Occurs whenever a Plaid Processor Token is created.
|
|
470
|
+
PLAID_PROCESSOR_TOKEN_CREATED: :"plaid_processor_token.created"
|
|
471
|
+
|
|
468
472
|
# Occurs whenever a Checkbook is created.
|
|
469
473
|
CHECKBOOK_CREATED: :"checkbook.created"
|
|
470
474
|
|
|
@@ -3,6 +3,7 @@ module Increase
|
|
|
3
3
|
type wire_drawdown_request =
|
|
4
4
|
{
|
|
5
5
|
id: String,
|
|
6
|
+
account_id: String,
|
|
6
7
|
account_number_id: String,
|
|
7
8
|
amount: Integer,
|
|
8
9
|
created_at: Time,
|
|
@@ -27,6 +28,8 @@ module Increase
|
|
|
27
28
|
class WireDrawdownRequest < Increase::Internal::Type::BaseModel
|
|
28
29
|
attr_accessor id: String
|
|
29
30
|
|
|
31
|
+
attr_accessor account_id: String
|
|
32
|
+
|
|
30
33
|
attr_accessor account_number_id: String
|
|
31
34
|
|
|
32
35
|
attr_accessor amount: Integer
|
|
@@ -67,6 +70,7 @@ module Increase
|
|
|
67
70
|
|
|
68
71
|
def initialize: (
|
|
69
72
|
id: String,
|
|
73
|
+
account_id: String,
|
|
70
74
|
account_number_id: String,
|
|
71
75
|
amount: Integer,
|
|
72
76
|
created_at: Time,
|
|
@@ -90,6 +94,7 @@ module Increase
|
|
|
90
94
|
|
|
91
95
|
def to_hash: -> {
|
|
92
96
|
id: String,
|
|
97
|
+
account_id: String,
|
|
93
98
|
account_number_id: String,
|
|
94
99
|
amount: Integer,
|
|
95
100
|
created_at: Time,
|
|
@@ -9,6 +9,7 @@ module Increase
|
|
|
9
9
|
?joint: Increase::EntityCreateParams::Joint,
|
|
10
10
|
?natural_person: Increase::EntityCreateParams::NaturalPerson,
|
|
11
11
|
?risk_rating: Increase::EntityCreateParams::RiskRating,
|
|
12
|
+
?sole_proprietorship: Increase::EntityCreateParams::SoleProprietorship,
|
|
12
13
|
?supplemental_documents: ::Array[Increase::EntityCreateParams::SupplementalDocument],
|
|
13
14
|
?terms_agreements: ::Array[Increase::EntityCreateParams::TermsAgreement],
|
|
14
15
|
?third_party_verification: Increase::EntityCreateParams::ThirdPartyVerification,
|
|
@@ -28,6 +29,7 @@ module Increase
|
|
|
28
29
|
?government_authority: Increase::EntityUpdateParams::GovernmentAuthority,
|
|
29
30
|
?natural_person: Increase::EntityUpdateParams::NaturalPerson,
|
|
30
31
|
?risk_rating: Increase::EntityUpdateParams::RiskRating,
|
|
32
|
+
?sole_proprietorship: Increase::EntityUpdateParams::SoleProprietorship,
|
|
31
33
|
?terms_agreements: ::Array[Increase::EntityUpdateParams::TermsAgreement],
|
|
32
34
|
?third_party_verification: Increase::EntityUpdateParams::ThirdPartyVerification,
|
|
33
35
|
?trust: Increase::EntityUpdateParams::Trust,
|
|
@@ -6,6 +6,7 @@ module Increase
|
|
|
6
6
|
name: String,
|
|
7
7
|
?bank: Increase::Models::Simulations::ProgramCreateParams::bank,
|
|
8
8
|
?lending_maximum_extendable_credit: Integer,
|
|
9
|
+
?loan_accounts_require_loan_offers: bool,
|
|
9
10
|
?reserve_account_id: String,
|
|
10
11
|
?request_options: Increase::request_opts
|
|
11
12
|
) -> Increase::Program
|
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.350.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-08
|
|
11
|
+
date: 2026-09-08 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: cgi
|