increase 1.352.0 → 1.354.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_transfer.rb +3 -3
- data/lib/increase/models/beneficial_owner_create_params.rb +3 -0
- data/lib/increase/models/beneficial_owner_update_params.rb +3 -0
- data/lib/increase/models/card_payment.rb +1177 -2
- data/lib/increase/models/check_transfer.rb +15 -9
- data/lib/increase/models/declined_transaction.rb +3 -0
- data/lib/increase/models/digital_wallet_token.rb +15 -0
- data/lib/increase/models/entity.rb +47 -1
- data/lib/increase/models/entity_beneficial_owner.rb +3 -0
- data/lib/increase/models/entity_create_params.rb +3 -0
- data/lib/increase/models/export.rb +19 -19
- data/lib/increase/models/export_create_params.rb +15 -15
- data/lib/increase/models/export_list_params.rb +19 -19
- data/lib/increase/models/inbound_wire_transfer.rb +10 -1
- data/lib/increase/models/real_time_decision.rb +3 -0
- data/lib/increase/models/real_time_decision_action_params.rb +3 -0
- data/lib/increase/models/simulations/digital_wallet_token_request_create_response.rb +9 -0
- data/lib/increase/models/simulations/entity_update_validation_params.rb +3 -0
- data/lib/increase/models/transaction.rb +1184 -3
- data/lib/increase/models/wire_drawdown_request.rb +3 -3
- data/lib/increase/models/wire_drawdown_request_list_params.rb +3 -3
- data/lib/increase/version.rb +1 -1
- data/rbi/increase/models/ach_transfer.rbi +3 -3
- data/rbi/increase/models/beneficial_owner_create_params.rbi +7 -0
- data/rbi/increase/models/beneficial_owner_update_params.rbi +7 -0
- data/rbi/increase/models/card_payment.rbi +5281 -2962
- data/rbi/increase/models/check_transfer.rbi +15 -9
- data/rbi/increase/models/declined_transaction.rbi +7 -0
- data/rbi/increase/models/digital_wallet_token.rbi +35 -0
- data/rbi/increase/models/entity.rbi +107 -0
- data/rbi/increase/models/entity_beneficial_owner.rbi +7 -0
- data/rbi/increase/models/entity_create_params.rbi +7 -0
- data/rbi/increase/models/export.rbi +32 -32
- data/rbi/increase/models/export_create_params.rbi +29 -29
- data/rbi/increase/models/export_list_params.rbi +37 -37
- data/rbi/increase/models/inbound_wire_transfer.rbi +8 -0
- data/rbi/increase/models/real_time_decision.rbi +7 -0
- data/rbi/increase/models/real_time_decision_action_params.rbi +7 -0
- data/rbi/increase/models/simulations/digital_wallet_token_request_create_response.rbi +21 -0
- data/rbi/increase/models/simulations/entity_update_validation_params.rbi +7 -0
- data/rbi/increase/models/transaction.rbi +4656 -2336
- data/rbi/increase/models/wire_drawdown_request.rbi +4 -4
- data/rbi/increase/models/wire_drawdown_request_list_params.rbi +6 -6
- data/sig/increase/models/ach_transfer.rbs +4 -4
- data/sig/increase/models/beneficial_owner_create_params.rbs +4 -0
- data/sig/increase/models/beneficial_owner_update_params.rbs +4 -0
- data/sig/increase/models/card_payment.rbs +1190 -0
- data/sig/increase/models/declined_transaction.rbs +4 -0
- data/sig/increase/models/digital_wallet_token.rbs +31 -2
- data/sig/increase/models/entity.rbs +43 -0
- data/sig/increase/models/entity_beneficial_owner.rbs +4 -0
- data/sig/increase/models/entity_create_params.rbs +4 -0
- data/sig/increase/models/export.rbs +28 -28
- data/sig/increase/models/export_create_params.rbs +22 -22
- data/sig/increase/models/export_list_params.rbs +28 -28
- data/sig/increase/models/inbound_wire_transfer.rbs +5 -0
- data/sig/increase/models/real_time_decision.rbs +4 -0
- data/sig/increase/models/real_time_decision_action_params.rbs +4 -0
- data/sig/increase/models/simulations/digital_wallet_token_request_create_response.rbs +12 -0
- data/sig/increase/models/simulations/entity_update_validation_params.rbs +4 -0
- data/sig/increase/models/transaction.rbs +1191 -0
- data/sig/increase/models/wire_drawdown_request.rbs +4 -4
- data/sig/increase/models/wire_drawdown_request_list_params.rbs +4 -4
- metadata +2 -2
|
@@ -98,8 +98,8 @@ module Increase
|
|
|
98
98
|
required :idempotency_key, String, nil?: true
|
|
99
99
|
|
|
100
100
|
# @!attribute mailing
|
|
101
|
-
#
|
|
102
|
-
#
|
|
101
|
+
# Once the check has been mailed, this will contain details about the shipment.
|
|
102
|
+
# Only available when `fulfillment_method` is equal to `physical_check`.
|
|
103
103
|
#
|
|
104
104
|
# @return [Increase::Models::CheckTransfer::Mailing, nil]
|
|
105
105
|
required :mailing, -> { Increase::CheckTransfer::Mailing }, nil?: true
|
|
@@ -147,7 +147,9 @@ module Increase
|
|
|
147
147
|
required :stop_payment_request, -> { Increase::CheckTransfer::StopPaymentRequest }, nil?: true
|
|
148
148
|
|
|
149
149
|
# @!attribute submission
|
|
150
|
-
#
|
|
150
|
+
# Once the check has been submitted to our printer, this will contain details
|
|
151
|
+
# about the submission. Only available when `fulfillment_method` is equal to
|
|
152
|
+
# `physical_check`.
|
|
151
153
|
#
|
|
152
154
|
# @return [Increase::Models::CheckTransfer::Submission, nil]
|
|
153
155
|
required :submission, -> { Increase::CheckTransfer::Submission }, nil?: true
|
|
@@ -226,8 +228,8 @@ module Increase
|
|
|
226
228
|
# about [idempotency](https://increase.com/documentation/idempotency-keys).
|
|
227
229
|
#
|
|
228
230
|
# @param mailing [Increase::Models::CheckTransfer::Mailing, nil]
|
|
229
|
-
#
|
|
230
|
-
#
|
|
231
|
+
# Once the check has been mailed, this will contain details about the shipment.
|
|
232
|
+
# Only available when `fulfillment_method` is equal to `physical_check`.
|
|
231
233
|
#
|
|
232
234
|
# @param pending_transaction_id [String, nil]
|
|
233
235
|
# The ID for the pending transaction representing the transfer. A pending
|
|
@@ -252,7 +254,9 @@ module Increase
|
|
|
252
254
|
# details.
|
|
253
255
|
#
|
|
254
256
|
# @param submission [Increase::Models::CheckTransfer::Submission, nil]
|
|
255
|
-
#
|
|
257
|
+
# Once the check has been submitted to our printer, this will contain details
|
|
258
|
+
# about the submission. Only available when `fulfillment_method` is equal to
|
|
259
|
+
# `physical_check`.
|
|
256
260
|
#
|
|
257
261
|
# @param third_party [Increase::Models::CheckTransfer::ThirdParty, nil]
|
|
258
262
|
# Details relating to the custom fulfillment you will perform. Will be present if
|
|
@@ -485,8 +489,8 @@ module Increase
|
|
|
485
489
|
required :mailed_at, Time
|
|
486
490
|
|
|
487
491
|
# @!method initialize(mailed_at:)
|
|
488
|
-
#
|
|
489
|
-
#
|
|
492
|
+
# Once the check has been mailed, this will contain details about the shipment.
|
|
493
|
+
# Only available when `fulfillment_method` is equal to `physical_check`.
|
|
490
494
|
#
|
|
491
495
|
# @param mailed_at [Time]
|
|
492
496
|
# The [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) date and time at which
|
|
@@ -1029,7 +1033,9 @@ module Increase
|
|
|
1029
1033
|
required :tracking_number, String, nil?: true
|
|
1030
1034
|
|
|
1031
1035
|
# @!method initialize(preview_file_id:, submitted_address:, submitted_at:, tracking_number:)
|
|
1032
|
-
#
|
|
1036
|
+
# Once the check has been submitted to our printer, this will contain details
|
|
1037
|
+
# about the submission. Only available when `fulfillment_method` is equal to
|
|
1038
|
+
# `physical_check`.
|
|
1033
1039
|
#
|
|
1034
1040
|
# @param preview_file_id [String, nil]
|
|
1035
1041
|
# The ID of the file corresponding to an image of the check that was mailed, if
|
|
@@ -1681,6 +1681,9 @@ module Increase
|
|
|
1681
1681
|
# The transaction is suspected to be fraudulent. The merchant may attempt to process the transaction again.
|
|
1682
1682
|
SUSPECTED_FRAUD = :suspected_fraud
|
|
1683
1683
|
|
|
1684
|
+
# Additional customer authentication is required to complete the transaction, such as 3DS.
|
|
1685
|
+
ADDITIONAL_CUSTOMER_AUTHENTICATION_REQUIRED = :additional_customer_authentication_required
|
|
1686
|
+
|
|
1684
1687
|
# The transaction was declined for another reason. The merchant may attempt to process the transaction again. This should be used sparingly.
|
|
1685
1688
|
OTHER = :other
|
|
1686
1689
|
|
|
@@ -192,6 +192,15 @@ module Increase
|
|
|
192
192
|
# The tokenization attempt was declined by the token requestor.
|
|
193
193
|
DECLINED_BY_TOKEN_REQUESTOR = :declined_by_token_requestor
|
|
194
194
|
|
|
195
|
+
# The group was locked.
|
|
196
|
+
GROUP_LOCKED = :group_locked
|
|
197
|
+
|
|
198
|
+
# The account has been closed.
|
|
199
|
+
ACCOUNT_CLOSED = :account_closed
|
|
200
|
+
|
|
201
|
+
# The account's entity was not active.
|
|
202
|
+
ENTITY_NOT_ACTIVE = :entity_not_active
|
|
203
|
+
|
|
195
204
|
# @!method self.values
|
|
196
205
|
# @return [Array<Symbol>]
|
|
197
206
|
end
|
|
@@ -315,6 +324,9 @@ module Increase
|
|
|
315
324
|
# The digital wallet token was declined during provisioning.
|
|
316
325
|
DECLINED = :declined
|
|
317
326
|
|
|
327
|
+
# The digital wallet token is transitioning to a new status and is awaiting confirmation from the card network.
|
|
328
|
+
PENDING_TRANSITIONING = :pending_transitioning
|
|
329
|
+
|
|
318
330
|
# @!method self.values
|
|
319
331
|
# @return [Array<Symbol>]
|
|
320
332
|
end
|
|
@@ -397,6 +409,9 @@ module Increase
|
|
|
397
409
|
# The digital wallet token was declined during provisioning.
|
|
398
410
|
DECLINED = :declined
|
|
399
411
|
|
|
412
|
+
# The digital wallet token is transitioning to a new status and is awaiting confirmation from the card network.
|
|
413
|
+
PENDING_TRANSITIONING = :pending_transitioning
|
|
414
|
+
|
|
400
415
|
# @!method self.values
|
|
401
416
|
# @return [Array<Symbol>]
|
|
402
417
|
end
|
|
@@ -546,6 +546,9 @@ module Increase
|
|
|
546
546
|
# A social security number.
|
|
547
547
|
SOCIAL_SECURITY_NUMBER = :social_security_number
|
|
548
548
|
|
|
549
|
+
# The last four digits of a social security number. Not all programs can use this method.
|
|
550
|
+
SOCIAL_SECURITY_NUMBER_LAST4 = :social_security_number_last4
|
|
551
|
+
|
|
549
552
|
# An individual taxpayer identification number (ITIN).
|
|
550
553
|
INDIVIDUAL_TAXPAYER_IDENTIFICATION_NUMBER = :individual_taxpayer_identification_number
|
|
551
554
|
|
|
@@ -949,6 +952,9 @@ module Increase
|
|
|
949
952
|
# A social security number.
|
|
950
953
|
SOCIAL_SECURITY_NUMBER = :social_security_number
|
|
951
954
|
|
|
955
|
+
# The last four digits of a social security number. Not all programs can use this method.
|
|
956
|
+
SOCIAL_SECURITY_NUMBER_LAST4 = :social_security_number_last4
|
|
957
|
+
|
|
952
958
|
# An individual taxpayer identification number (ITIN).
|
|
953
959
|
INDIVIDUAL_TAXPAYER_IDENTIFICATION_NUMBER = :individual_taxpayer_identification_number
|
|
954
960
|
|
|
@@ -1102,6 +1108,9 @@ module Increase
|
|
|
1102
1108
|
# A social security number.
|
|
1103
1109
|
SOCIAL_SECURITY_NUMBER = :social_security_number
|
|
1104
1110
|
|
|
1111
|
+
# The last four digits of a social security number. Not all programs can use this method.
|
|
1112
|
+
SOCIAL_SECURITY_NUMBER_LAST4 = :social_security_number_last4
|
|
1113
|
+
|
|
1105
1114
|
# An individual taxpayer identification number (ITIN).
|
|
1106
1115
|
INDIVIDUAL_TAXPAYER_IDENTIFICATION_NUMBER = :individual_taxpayer_identification_number
|
|
1107
1116
|
|
|
@@ -1424,6 +1433,9 @@ module Increase
|
|
|
1424
1433
|
# A social security number.
|
|
1425
1434
|
SOCIAL_SECURITY_NUMBER = :social_security_number
|
|
1426
1435
|
|
|
1436
|
+
# The last four digits of a social security number. Not all programs can use this method.
|
|
1437
|
+
SOCIAL_SECURITY_NUMBER_LAST4 = :social_security_number_last4
|
|
1438
|
+
|
|
1427
1439
|
# An individual taxpayer identification number (ITIN).
|
|
1428
1440
|
INDIVIDUAL_TAXPAYER_IDENTIFICATION_NUMBER = :individual_taxpayer_identification_number
|
|
1429
1441
|
|
|
@@ -1846,6 +1858,9 @@ module Increase
|
|
|
1846
1858
|
# A social security number.
|
|
1847
1859
|
SOCIAL_SECURITY_NUMBER = :social_security_number
|
|
1848
1860
|
|
|
1861
|
+
# The last four digits of a social security number. Not all programs can use this method.
|
|
1862
|
+
SOCIAL_SECURITY_NUMBER_LAST4 = :social_security_number_last4
|
|
1863
|
+
|
|
1849
1864
|
# An individual taxpayer identification number (ITIN).
|
|
1850
1865
|
INDIVIDUAL_TAXPAYER_IDENTIFICATION_NUMBER = :individual_taxpayer_identification_number
|
|
1851
1866
|
|
|
@@ -2022,6 +2037,9 @@ module Increase
|
|
|
2022
2037
|
# A social security number.
|
|
2023
2038
|
SOCIAL_SECURITY_NUMBER = :social_security_number
|
|
2024
2039
|
|
|
2040
|
+
# The last four digits of a social security number. Not all programs can use this method.
|
|
2041
|
+
SOCIAL_SECURITY_NUMBER_LAST4 = :social_security_number_last4
|
|
2042
|
+
|
|
2025
2043
|
# An individual taxpayer identification number (ITIN).
|
|
2026
2044
|
INDIVIDUAL_TAXPAYER_IDENTIFICATION_NUMBER = :individual_taxpayer_identification_number
|
|
2027
2045
|
|
|
@@ -2111,6 +2129,14 @@ module Increase
|
|
|
2111
2129
|
-> { Increase::Entity::Validation::Issue::BeneficialOwnerIdentity },
|
|
2112
2130
|
nil?: true
|
|
2113
2131
|
|
|
2132
|
+
# @!attribute beneficial_owner_tax_identifier
|
|
2133
|
+
# Details when the issue is with a beneficial owner's tax identifier.
|
|
2134
|
+
#
|
|
2135
|
+
# @return [Increase::Models::Entity::Validation::Issue::BeneficialOwnerTaxIdentifier, nil]
|
|
2136
|
+
required :beneficial_owner_tax_identifier,
|
|
2137
|
+
-> { Increase::Entity::Validation::Issue::BeneficialOwnerTaxIdentifier },
|
|
2138
|
+
nil?: true
|
|
2139
|
+
|
|
2114
2140
|
# @!attribute category
|
|
2115
2141
|
# The type of issue. We may add additional possible values for this enum over
|
|
2116
2142
|
# time; your application should be able to handle such additions gracefully.
|
|
@@ -2138,13 +2164,16 @@ module Increase
|
|
|
2138
2164
|
-> { Increase::Entity::Validation::Issue::EntityTaxIdentifier },
|
|
2139
2165
|
nil?: true
|
|
2140
2166
|
|
|
2141
|
-
# @!method initialize(beneficial_owner_address:, beneficial_owner_identity:, category:, entity_address:, entity_identity:, entity_tax_identifier:)
|
|
2167
|
+
# @!method initialize(beneficial_owner_address:, beneficial_owner_identity:, beneficial_owner_tax_identifier:, category:, entity_address:, entity_identity:, entity_tax_identifier:)
|
|
2142
2168
|
# @param beneficial_owner_address [Increase::Models::Entity::Validation::Issue::BeneficialOwnerAddress, nil]
|
|
2143
2169
|
# Details when the issue is with a beneficial owner's address.
|
|
2144
2170
|
#
|
|
2145
2171
|
# @param beneficial_owner_identity [Increase::Models::Entity::Validation::Issue::BeneficialOwnerIdentity, nil]
|
|
2146
2172
|
# Details when the issue is with a beneficial owner's identity verification.
|
|
2147
2173
|
#
|
|
2174
|
+
# @param beneficial_owner_tax_identifier [Increase::Models::Entity::Validation::Issue::BeneficialOwnerTaxIdentifier, nil]
|
|
2175
|
+
# Details when the issue is with a beneficial owner's tax identifier.
|
|
2176
|
+
#
|
|
2148
2177
|
# @param category [Symbol, Increase::Models::Entity::Validation::Issue::Category]
|
|
2149
2178
|
# The type of issue. We may add additional possible values for this enum over
|
|
2150
2179
|
# time; your application should be able to handle such additions gracefully.
|
|
@@ -2208,6 +2237,20 @@ module Increase
|
|
|
2208
2237
|
# @param beneficial_owner_id [String] The ID of the beneficial owner.
|
|
2209
2238
|
end
|
|
2210
2239
|
|
|
2240
|
+
# @see Increase::Models::Entity::Validation::Issue#beneficial_owner_tax_identifier
|
|
2241
|
+
class BeneficialOwnerTaxIdentifier < Increase::Internal::Type::BaseModel
|
|
2242
|
+
# @!attribute beneficial_owner_id
|
|
2243
|
+
# The ID of the beneficial owner.
|
|
2244
|
+
#
|
|
2245
|
+
# @return [String]
|
|
2246
|
+
required :beneficial_owner_id, String
|
|
2247
|
+
|
|
2248
|
+
# @!method initialize(beneficial_owner_id:)
|
|
2249
|
+
# Details when the issue is with a beneficial owner's tax identifier.
|
|
2250
|
+
#
|
|
2251
|
+
# @param beneficial_owner_id [String] The ID of the beneficial owner.
|
|
2252
|
+
end
|
|
2253
|
+
|
|
2211
2254
|
# The type of issue. We may add additional possible values for this enum over
|
|
2212
2255
|
# time; your application should be able to handle such additions gracefully.
|
|
2213
2256
|
#
|
|
@@ -2230,6 +2273,9 @@ module Increase
|
|
|
2230
2273
|
# A beneficial owner's address could not be validated. Update the address with the [update a beneficial owner API](/documentation/api/beneficial-owners#update-a-beneficial-owner).
|
|
2231
2274
|
BENEFICIAL_OWNER_ADDRESS = :beneficial_owner_address
|
|
2232
2275
|
|
|
2276
|
+
# A beneficial owner's full tax identifier is required. A non-US person can submit a passport or driver's license. Make changes via the [update a beneficial owner API](/documentation/api/beneficial-owners#update-a-beneficial-owner).
|
|
2277
|
+
BENEFICIAL_OWNER_TAX_IDENTIFIER = :beneficial_owner_tax_identifier
|
|
2278
|
+
|
|
2233
2279
|
# @!method self.values
|
|
2234
2280
|
# @return [Array<Symbol>]
|
|
2235
2281
|
end
|
|
@@ -223,6 +223,9 @@ module Increase
|
|
|
223
223
|
# A social security number.
|
|
224
224
|
SOCIAL_SECURITY_NUMBER = :social_security_number
|
|
225
225
|
|
|
226
|
+
# The last four digits of a social security number. Not all programs can use this method.
|
|
227
|
+
SOCIAL_SECURITY_NUMBER_LAST4 = :social_security_number_last4
|
|
228
|
+
|
|
226
229
|
# An individual taxpayer identification number (ITIN).
|
|
227
230
|
INDIVIDUAL_TAXPAYER_IDENTIFICATION_NUMBER = :individual_taxpayer_identification_number
|
|
228
231
|
|
|
@@ -587,6 +587,9 @@ module Increase
|
|
|
587
587
|
# A social security number.
|
|
588
588
|
SOCIAL_SECURITY_NUMBER = :social_security_number
|
|
589
589
|
|
|
590
|
+
# The last four digits of a social security number. Not all programs can use this method.
|
|
591
|
+
SOCIAL_SECURITY_NUMBER_LAST4 = :social_security_number_last4
|
|
592
|
+
|
|
590
593
|
# An individual taxpayer identification number (ITIN).
|
|
591
594
|
INDIVIDUAL_TAXPAYER_IDENTIFICATION_NUMBER = :individual_taxpayer_identification_number
|
|
592
595
|
|
|
@@ -432,14 +432,14 @@ module Increase
|
|
|
432
432
|
module Category
|
|
433
433
|
extend Increase::Internal::Type::Enum
|
|
434
434
|
|
|
435
|
-
# Export an Open Financial Exchange (OFX) file of transactions and balances for a given time range and Account.
|
|
436
|
-
ACCOUNT_STATEMENT_OFX = :account_statement_ofx
|
|
437
|
-
|
|
438
435
|
# Export a BAI2 file of transactions and balances for a given date and optional Account.
|
|
439
436
|
ACCOUNT_STATEMENT_BAI2 = :account_statement_bai2
|
|
440
437
|
|
|
441
|
-
# Export
|
|
442
|
-
|
|
438
|
+
# Export an Open Financial Exchange (OFX) file of transactions and balances for a given time range and Account.
|
|
439
|
+
ACCOUNT_STATEMENT_OFX = :account_statement_ofx
|
|
440
|
+
|
|
441
|
+
# A PDF of an account verification letter.
|
|
442
|
+
ACCOUNT_VERIFICATION_LETTER = :account_verification_letter
|
|
443
443
|
|
|
444
444
|
# Export a CSV of account balances for the dates in a given range. (deprecated, use `daily_account_balance_csv` instead)
|
|
445
445
|
BALANCE_CSV = :balance_csv
|
|
@@ -447,20 +447,17 @@ module Increase
|
|
|
447
447
|
# Export a CSV of bookkeeping account balances for the dates in a given range.
|
|
448
448
|
BOOKKEEPING_ACCOUNT_BALANCE_CSV = :bookkeeping_account_balance_csv
|
|
449
449
|
|
|
450
|
-
# Export a CSV of
|
|
451
|
-
|
|
452
|
-
|
|
453
|
-
# Export a CSV of vendors added to the third-party risk management dashboard.
|
|
454
|
-
VENDOR_CSV = :vendor_csv
|
|
450
|
+
# Export a CSV of daily account balances with starting and ending balances for a given date range.
|
|
451
|
+
DAILY_ACCOUNT_BALANCE_CSV = :daily_account_balance_csv
|
|
455
452
|
|
|
456
453
|
# Certain dashboard tables are available as CSV exports. This export cannot be created via the API.
|
|
457
454
|
DASHBOARD_TABLE_CSV = :dashboard_table_csv
|
|
458
455
|
|
|
459
|
-
#
|
|
460
|
-
|
|
456
|
+
# Export a CSV of entities with a given status.
|
|
457
|
+
ENTITY_CSV = :entity_csv
|
|
461
458
|
|
|
462
|
-
#
|
|
463
|
-
|
|
459
|
+
# Export a CSV of fees. The time range must not include any fees that are part of an open fee statement.
|
|
460
|
+
FEE_CSV = :fee_csv
|
|
464
461
|
|
|
465
462
|
# A PDF of an Internal Revenue Service Form 1099-INT.
|
|
466
463
|
FORM_1099_INT = :form_1099_int
|
|
@@ -468,15 +465,18 @@ module Increase
|
|
|
468
465
|
# A PDF of an Internal Revenue Service Form 1099-MISC.
|
|
469
466
|
FORM_1099_MISC = :form_1099_misc
|
|
470
467
|
|
|
471
|
-
#
|
|
472
|
-
|
|
468
|
+
# A PDF of funding instructions.
|
|
469
|
+
FUNDING_INSTRUCTIONS = :funding_instructions
|
|
470
|
+
|
|
471
|
+
# Export a CSV of all transactions for a given time range.
|
|
472
|
+
TRANSACTION_CSV = :transaction_csv
|
|
473
|
+
|
|
474
|
+
# Export a CSV of vendors added to the third-party risk management dashboard.
|
|
475
|
+
VENDOR_CSV = :vendor_csv
|
|
473
476
|
|
|
474
477
|
# A PDF of a voided check.
|
|
475
478
|
VOIDED_CHECK = :voided_check
|
|
476
479
|
|
|
477
|
-
# Export a CSV of daily account balances with starting and ending balances for a given date range.
|
|
478
|
-
DAILY_ACCOUNT_BALANCE_CSV = :daily_account_balance_csv
|
|
479
|
-
|
|
480
480
|
# @!method self.values
|
|
481
481
|
# @return [Array<Symbol>]
|
|
482
482
|
end
|
|
@@ -138,14 +138,14 @@ module Increase
|
|
|
138
138
|
module Category
|
|
139
139
|
extend Increase::Internal::Type::Enum
|
|
140
140
|
|
|
141
|
-
# Export an Open Financial Exchange (OFX) file of transactions and balances for a given time range and Account.
|
|
142
|
-
ACCOUNT_STATEMENT_OFX = :account_statement_ofx
|
|
143
|
-
|
|
144
141
|
# Export a BAI2 file of transactions and balances for a given date and optional Account.
|
|
145
142
|
ACCOUNT_STATEMENT_BAI2 = :account_statement_bai2
|
|
146
143
|
|
|
147
|
-
# Export
|
|
148
|
-
|
|
144
|
+
# Export an Open Financial Exchange (OFX) file of transactions and balances for a given time range and Account.
|
|
145
|
+
ACCOUNT_STATEMENT_OFX = :account_statement_ofx
|
|
146
|
+
|
|
147
|
+
# A PDF of an account verification letter.
|
|
148
|
+
ACCOUNT_VERIFICATION_LETTER = :account_verification_letter
|
|
149
149
|
|
|
150
150
|
# Export a CSV of account balances for the dates in a given range. (deprecated, use `daily_account_balance_csv` instead)
|
|
151
151
|
BALANCE_CSV = :balance_csv
|
|
@@ -153,27 +153,27 @@ module Increase
|
|
|
153
153
|
# Export a CSV of bookkeeping account balances for the dates in a given range.
|
|
154
154
|
BOOKKEEPING_ACCOUNT_BALANCE_CSV = :bookkeeping_account_balance_csv
|
|
155
155
|
|
|
156
|
+
# Export a CSV of daily account balances with starting and ending balances for a given date range.
|
|
157
|
+
DAILY_ACCOUNT_BALANCE_CSV = :daily_account_balance_csv
|
|
158
|
+
|
|
156
159
|
# Export a CSV of entities with a given status.
|
|
157
160
|
ENTITY_CSV = :entity_csv
|
|
158
161
|
|
|
159
|
-
# Export a CSV of
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
# A PDF of an account verification letter.
|
|
163
|
-
ACCOUNT_VERIFICATION_LETTER = :account_verification_letter
|
|
162
|
+
# Export a CSV of fees. The time range must not include any fees that are part of an open fee statement.
|
|
163
|
+
FEE_CSV = :fee_csv
|
|
164
164
|
|
|
165
165
|
# A PDF of funding instructions.
|
|
166
166
|
FUNDING_INSTRUCTIONS = :funding_instructions
|
|
167
167
|
|
|
168
|
-
# Export a CSV of
|
|
169
|
-
|
|
168
|
+
# Export a CSV of all transactions for a given time range.
|
|
169
|
+
TRANSACTION_CSV = :transaction_csv
|
|
170
|
+
|
|
171
|
+
# Export a CSV of vendors added to the third-party risk management dashboard.
|
|
172
|
+
VENDOR_CSV = :vendor_csv
|
|
170
173
|
|
|
171
174
|
# A PDF of a voided check.
|
|
172
175
|
VOIDED_CHECK = :voided_check
|
|
173
176
|
|
|
174
|
-
# Export a CSV of daily account balances with starting and ending balances for a given date range.
|
|
175
|
-
DAILY_ACCOUNT_BALANCE_CSV = :daily_account_balance_csv
|
|
176
|
-
|
|
177
177
|
# @!method self.values
|
|
178
178
|
# @return [Array<Symbol>]
|
|
179
179
|
end
|
|
@@ -89,14 +89,14 @@ module Increase
|
|
|
89
89
|
module Category
|
|
90
90
|
extend Increase::Internal::Type::Enum
|
|
91
91
|
|
|
92
|
-
# Export an Open Financial Exchange (OFX) file of transactions and balances for a given time range and Account.
|
|
93
|
-
ACCOUNT_STATEMENT_OFX = :account_statement_ofx
|
|
94
|
-
|
|
95
92
|
# Export a BAI2 file of transactions and balances for a given date and optional Account.
|
|
96
93
|
ACCOUNT_STATEMENT_BAI2 = :account_statement_bai2
|
|
97
94
|
|
|
98
|
-
# Export
|
|
99
|
-
|
|
95
|
+
# Export an Open Financial Exchange (OFX) file of transactions and balances for a given time range and Account.
|
|
96
|
+
ACCOUNT_STATEMENT_OFX = :account_statement_ofx
|
|
97
|
+
|
|
98
|
+
# A PDF of an account verification letter.
|
|
99
|
+
ACCOUNT_VERIFICATION_LETTER = :account_verification_letter
|
|
100
100
|
|
|
101
101
|
# Export a CSV of account balances for the dates in a given range. (deprecated, use `daily_account_balance_csv` instead)
|
|
102
102
|
BALANCE_CSV = :balance_csv
|
|
@@ -104,20 +104,17 @@ module Increase
|
|
|
104
104
|
# Export a CSV of bookkeeping account balances for the dates in a given range.
|
|
105
105
|
BOOKKEEPING_ACCOUNT_BALANCE_CSV = :bookkeeping_account_balance_csv
|
|
106
106
|
|
|
107
|
-
# Export a CSV of
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
# Export a CSV of vendors added to the third-party risk management dashboard.
|
|
111
|
-
VENDOR_CSV = :vendor_csv
|
|
107
|
+
# Export a CSV of daily account balances with starting and ending balances for a given date range.
|
|
108
|
+
DAILY_ACCOUNT_BALANCE_CSV = :daily_account_balance_csv
|
|
112
109
|
|
|
113
110
|
# Certain dashboard tables are available as CSV exports. This export cannot be created via the API.
|
|
114
111
|
DASHBOARD_TABLE_CSV = :dashboard_table_csv
|
|
115
112
|
|
|
116
|
-
#
|
|
117
|
-
|
|
113
|
+
# Export a CSV of entities with a given status.
|
|
114
|
+
ENTITY_CSV = :entity_csv
|
|
118
115
|
|
|
119
|
-
#
|
|
120
|
-
|
|
116
|
+
# Export a CSV of fees. The time range must not include any fees that are part of an open fee statement.
|
|
117
|
+
FEE_CSV = :fee_csv
|
|
121
118
|
|
|
122
119
|
# A PDF of an Internal Revenue Service Form 1099-INT.
|
|
123
120
|
FORM_1099_INT = :form_1099_int
|
|
@@ -125,15 +122,18 @@ module Increase
|
|
|
125
122
|
# A PDF of an Internal Revenue Service Form 1099-MISC.
|
|
126
123
|
FORM_1099_MISC = :form_1099_misc
|
|
127
124
|
|
|
128
|
-
#
|
|
129
|
-
|
|
125
|
+
# A PDF of funding instructions.
|
|
126
|
+
FUNDING_INSTRUCTIONS = :funding_instructions
|
|
127
|
+
|
|
128
|
+
# Export a CSV of all transactions for a given time range.
|
|
129
|
+
TRANSACTION_CSV = :transaction_csv
|
|
130
|
+
|
|
131
|
+
# Export a CSV of vendors added to the third-party risk management dashboard.
|
|
132
|
+
VENDOR_CSV = :vendor_csv
|
|
130
133
|
|
|
131
134
|
# A PDF of a voided check.
|
|
132
135
|
VOIDED_CHECK = :voided_check
|
|
133
136
|
|
|
134
|
-
# Export a CSV of daily account balances with starting and ending balances for a given date range.
|
|
135
|
-
DAILY_ACCOUNT_BALANCE_CSV = :daily_account_balance_csv
|
|
136
|
-
|
|
137
137
|
# @!method self.values
|
|
138
138
|
# @return [Array<Symbol>]
|
|
139
139
|
end
|
|
@@ -128,6 +128,12 @@ module Increase
|
|
|
128
128
|
# @return [String, nil]
|
|
129
129
|
required :instructing_agent_routing_number, String, nil?: true
|
|
130
130
|
|
|
131
|
+
# @!attribute instruction_for_creditor_agent
|
|
132
|
+
# A free-form instruction for the receiving bank set by the sender.
|
|
133
|
+
#
|
|
134
|
+
# @return [String, nil]
|
|
135
|
+
required :instruction_for_creditor_agent, String, nil?: true
|
|
136
|
+
|
|
131
137
|
# @!attribute instruction_identification
|
|
132
138
|
# The sending bank's identifier for the wire transfer.
|
|
133
139
|
#
|
|
@@ -179,7 +185,7 @@ module Increase
|
|
|
179
185
|
# @return [String, nil]
|
|
180
186
|
required :wire_drawdown_request_id, String, nil?: true
|
|
181
187
|
|
|
182
|
-
# @!method initialize(id:, acceptance:, account_id:, account_number_id:, amount:, created_at:, creditor_address_line1:, creditor_address_line2:, creditor_address_line3:, creditor_name:, debtor_account_number:, debtor_address_line1:, debtor_address_line2:, debtor_address_line3:, debtor_name:, debtor_routing_number:, description:, end_to_end_identification:, input_message_accountability_data:, instructing_agent_routing_number:, instruction_identification:, purpose:, reversal:, status:, type:, unique_end_to_end_transaction_reference:, unstructured_remittance_information:, wire_drawdown_request_id:)
|
|
188
|
+
# @!method initialize(id:, acceptance:, account_id:, account_number_id:, amount:, created_at:, creditor_address_line1:, creditor_address_line2:, creditor_address_line3:, creditor_name:, debtor_account_number:, debtor_address_line1:, debtor_address_line2:, debtor_address_line3:, debtor_name:, debtor_routing_number:, description:, end_to_end_identification:, input_message_accountability_data:, instructing_agent_routing_number:, instruction_for_creditor_agent:, instruction_identification:, purpose:, reversal:, status:, type:, unique_end_to_end_transaction_reference:, unstructured_remittance_information:, wire_drawdown_request_id:)
|
|
183
189
|
# An Inbound Wire Transfer is a wire transfer initiated outside of Increase to
|
|
184
190
|
# your account.
|
|
185
191
|
#
|
|
@@ -233,6 +239,9 @@ module Increase
|
|
|
233
239
|
# The American Bankers' Association (ABA) routing number of the bank that sent the
|
|
234
240
|
# wire.
|
|
235
241
|
#
|
|
242
|
+
# @param instruction_for_creditor_agent [String, nil]
|
|
243
|
+
# A free-form instruction for the receiving bank set by the sender.
|
|
244
|
+
#
|
|
236
245
|
# @param instruction_identification [String, nil] The sending bank's identifier for the wire transfer.
|
|
237
246
|
#
|
|
238
247
|
# @param purpose [String, nil] The reason for the wire transfer, as set by the sender.
|
|
@@ -1784,6 +1784,9 @@ module Increase
|
|
|
1784
1784
|
# The transaction is suspected to be fraudulent. The merchant may attempt to process the transaction again.
|
|
1785
1785
|
SUSPECTED_FRAUD = :suspected_fraud
|
|
1786
1786
|
|
|
1787
|
+
# Additional customer authentication is required to complete the transaction, such as 3DS.
|
|
1788
|
+
ADDITIONAL_CUSTOMER_AUTHENTICATION_REQUIRED = :additional_customer_authentication_required
|
|
1789
|
+
|
|
1787
1790
|
# The transaction was declined for another reason. The merchant may attempt to process the transaction again. This should be used sparingly.
|
|
1788
1791
|
OTHER = :other
|
|
1789
1792
|
|
|
@@ -393,6 +393,9 @@ module Increase
|
|
|
393
393
|
# The transaction is suspected to be fraudulent. The merchant may attempt to process the transaction again.
|
|
394
394
|
SUSPECTED_FRAUD = :suspected_fraud
|
|
395
395
|
|
|
396
|
+
# Additional customer authentication is required to complete the transaction, such as 3DS.
|
|
397
|
+
ADDITIONAL_CUSTOMER_AUTHENTICATION_REQUIRED = :additional_customer_authentication_required
|
|
398
|
+
|
|
396
399
|
# The transaction was declined for another reason. The merchant may attempt to process the transaction again. This should be used sparingly.
|
|
397
400
|
OTHER = :other
|
|
398
401
|
|
|
@@ -68,6 +68,15 @@ module Increase
|
|
|
68
68
|
# The tokenization attempt was declined by the token requestor.
|
|
69
69
|
DECLINED_BY_TOKEN_REQUESTOR = :declined_by_token_requestor
|
|
70
70
|
|
|
71
|
+
# The group was locked.
|
|
72
|
+
GROUP_LOCKED = :group_locked
|
|
73
|
+
|
|
74
|
+
# The account has been closed.
|
|
75
|
+
ACCOUNT_CLOSED = :account_closed
|
|
76
|
+
|
|
77
|
+
# The account's entity was not active.
|
|
78
|
+
ENTITY_NOT_ACTIVE = :entity_not_active
|
|
79
|
+
|
|
71
80
|
# @!method self.values
|
|
72
81
|
# @return [Array<Symbol>]
|
|
73
82
|
end
|
|
@@ -63,6 +63,9 @@ module Increase
|
|
|
63
63
|
# A beneficial owner's address could not be validated. Update the address with the [update a beneficial owner API](/documentation/api/beneficial-owners#update-a-beneficial-owner).
|
|
64
64
|
BENEFICIAL_OWNER_ADDRESS = :beneficial_owner_address
|
|
65
65
|
|
|
66
|
+
# A beneficial owner's full tax identifier is required. A non-US person can submit a passport or driver's license. Make changes via the [update a beneficial owner API](/documentation/api/beneficial-owners#update-a-beneficial-owner).
|
|
67
|
+
BENEFICIAL_OWNER_TAX_IDENTIFIER = :beneficial_owner_tax_identifier
|
|
68
|
+
|
|
66
69
|
# @!method self.values
|
|
67
70
|
# @return [Array<Symbol>]
|
|
68
71
|
end
|