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
|
@@ -96,8 +96,8 @@ module Increase
|
|
|
96
96
|
sig { returns(T.nilable(String)) }
|
|
97
97
|
attr_accessor :idempotency_key
|
|
98
98
|
|
|
99
|
-
#
|
|
100
|
-
#
|
|
99
|
+
# Once the check has been mailed, this will contain details about the shipment.
|
|
100
|
+
# Only available when `fulfillment_method` is equal to `physical_check`.
|
|
101
101
|
sig { returns(T.nilable(Increase::CheckTransfer::Mailing)) }
|
|
102
102
|
attr_reader :mailing
|
|
103
103
|
|
|
@@ -154,7 +154,9 @@ module Increase
|
|
|
154
154
|
end
|
|
155
155
|
attr_writer :stop_payment_request
|
|
156
156
|
|
|
157
|
-
#
|
|
157
|
+
# Once the check has been submitted to our printer, this will contain details
|
|
158
|
+
# about the submission. Only available when `fulfillment_method` is equal to
|
|
159
|
+
# `physical_check`.
|
|
158
160
|
sig { returns(T.nilable(Increase::CheckTransfer::Submission)) }
|
|
159
161
|
attr_reader :submission
|
|
160
162
|
|
|
@@ -263,8 +265,8 @@ module Increase
|
|
|
263
265
|
# Increase and is used to ensure that a request is only processed once. Learn more
|
|
264
266
|
# about [idempotency](https://increase.com/documentation/idempotency-keys).
|
|
265
267
|
idempotency_key:,
|
|
266
|
-
#
|
|
267
|
-
#
|
|
268
|
+
# Once the check has been mailed, this will contain details about the shipment.
|
|
269
|
+
# Only available when `fulfillment_method` is equal to `physical_check`.
|
|
268
270
|
mailing:,
|
|
269
271
|
# The ID for the pending transaction representing the transfer. A pending
|
|
270
272
|
# transaction is created when the transfer
|
|
@@ -284,7 +286,9 @@ module Increase
|
|
|
284
286
|
# After a stop-payment is requested on the check, this will contain supplemental
|
|
285
287
|
# details.
|
|
286
288
|
stop_payment_request:,
|
|
287
|
-
#
|
|
289
|
+
# Once the check has been submitted to our printer, this will contain details
|
|
290
|
+
# about the submission. Only available when `fulfillment_method` is equal to
|
|
291
|
+
# `physical_check`.
|
|
288
292
|
submission:,
|
|
289
293
|
# Details relating to the custom fulfillment you will perform. Will be present if
|
|
290
294
|
# and only if `fulfillment_method` is equal to `third_party`.
|
|
@@ -734,8 +738,8 @@ module Increase
|
|
|
734
738
|
sig { returns(Time) }
|
|
735
739
|
attr_accessor :mailed_at
|
|
736
740
|
|
|
737
|
-
#
|
|
738
|
-
#
|
|
741
|
+
# Once the check has been mailed, this will contain details about the shipment.
|
|
742
|
+
# Only available when `fulfillment_method` is equal to `physical_check`.
|
|
739
743
|
sig { params(mailed_at: Time).returns(T.attached_class) }
|
|
740
744
|
def self.new(
|
|
741
745
|
# The [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) date and time at which
|
|
@@ -1629,7 +1633,9 @@ module Increase
|
|
|
1629
1633
|
sig { returns(T.nilable(String)) }
|
|
1630
1634
|
attr_accessor :tracking_number
|
|
1631
1635
|
|
|
1632
|
-
#
|
|
1636
|
+
# Once the check has been submitted to our printer, this will contain details
|
|
1637
|
+
# about the submission. Only available when `fulfillment_method` is equal to
|
|
1638
|
+
# `physical_check`.
|
|
1633
1639
|
sig do
|
|
1634
1640
|
params(
|
|
1635
1641
|
preview_file_id: T.nilable(String),
|
|
@@ -2987,6 +2987,13 @@ module Increase
|
|
|
2987
2987
|
Increase::DeclinedTransaction::Source::CardDecline::RealTimeDecisionReason::TaggedSymbol
|
|
2988
2988
|
)
|
|
2989
2989
|
|
|
2990
|
+
# Additional customer authentication is required to complete the transaction, such as 3DS.
|
|
2991
|
+
ADDITIONAL_CUSTOMER_AUTHENTICATION_REQUIRED =
|
|
2992
|
+
T.let(
|
|
2993
|
+
:additional_customer_authentication_required,
|
|
2994
|
+
Increase::DeclinedTransaction::Source::CardDecline::RealTimeDecisionReason::TaggedSymbol
|
|
2995
|
+
)
|
|
2996
|
+
|
|
2990
2997
|
# The transaction was declined for another reason. The merchant may attempt to process the transaction again. This should be used sparingly.
|
|
2991
2998
|
OTHER =
|
|
2992
2999
|
T.let(
|
|
@@ -304,6 +304,27 @@ module Increase
|
|
|
304
304
|
Increase::DigitalWalletToken::Decline::Reason::TaggedSymbol
|
|
305
305
|
)
|
|
306
306
|
|
|
307
|
+
# The group was locked.
|
|
308
|
+
GROUP_LOCKED =
|
|
309
|
+
T.let(
|
|
310
|
+
:group_locked,
|
|
311
|
+
Increase::DigitalWalletToken::Decline::Reason::TaggedSymbol
|
|
312
|
+
)
|
|
313
|
+
|
|
314
|
+
# The account has been closed.
|
|
315
|
+
ACCOUNT_CLOSED =
|
|
316
|
+
T.let(
|
|
317
|
+
:account_closed,
|
|
318
|
+
Increase::DigitalWalletToken::Decline::Reason::TaggedSymbol
|
|
319
|
+
)
|
|
320
|
+
|
|
321
|
+
# The account's entity was not active.
|
|
322
|
+
ENTITY_NOT_ACTIVE =
|
|
323
|
+
T.let(
|
|
324
|
+
:entity_not_active,
|
|
325
|
+
Increase::DigitalWalletToken::Decline::Reason::TaggedSymbol
|
|
326
|
+
)
|
|
327
|
+
|
|
307
328
|
sig do
|
|
308
329
|
override.returns(
|
|
309
330
|
T::Array[
|
|
@@ -535,6 +556,13 @@ module Increase
|
|
|
535
556
|
DECLINED =
|
|
536
557
|
T.let(:declined, Increase::DigitalWalletToken::Status::TaggedSymbol)
|
|
537
558
|
|
|
559
|
+
# The digital wallet token is transitioning to a new status and is awaiting confirmation from the card network.
|
|
560
|
+
PENDING_TRANSITIONING =
|
|
561
|
+
T.let(
|
|
562
|
+
:pending_transitioning,
|
|
563
|
+
Increase::DigitalWalletToken::Status::TaggedSymbol
|
|
564
|
+
)
|
|
565
|
+
|
|
538
566
|
sig do
|
|
539
567
|
override.returns(
|
|
540
568
|
T::Array[Increase::DigitalWalletToken::Status::TaggedSymbol]
|
|
@@ -707,6 +735,13 @@ module Increase
|
|
|
707
735
|
Increase::DigitalWalletToken::Update::Status::TaggedSymbol
|
|
708
736
|
)
|
|
709
737
|
|
|
738
|
+
# The digital wallet token is transitioning to a new status and is awaiting confirmation from the card network.
|
|
739
|
+
PENDING_TRANSITIONING =
|
|
740
|
+
T.let(
|
|
741
|
+
:pending_transitioning,
|
|
742
|
+
Increase::DigitalWalletToken::Update::Status::TaggedSymbol
|
|
743
|
+
)
|
|
744
|
+
|
|
710
745
|
sig do
|
|
711
746
|
override.returns(
|
|
712
747
|
T::Array[
|
|
@@ -828,6 +828,13 @@ module Increase
|
|
|
828
828
|
Increase::Entity::Corporation::BeneficialOwner::Individual::Identification::Method::TaggedSymbol
|
|
829
829
|
)
|
|
830
830
|
|
|
831
|
+
# The last four digits of a social security number. Not all programs can use this method.
|
|
832
|
+
SOCIAL_SECURITY_NUMBER_LAST4 =
|
|
833
|
+
T.let(
|
|
834
|
+
:social_security_number_last4,
|
|
835
|
+
Increase::Entity::Corporation::BeneficialOwner::Individual::Identification::Method::TaggedSymbol
|
|
836
|
+
)
|
|
837
|
+
|
|
831
838
|
# An individual taxpayer identification number (ITIN).
|
|
832
839
|
INDIVIDUAL_TAXPAYER_IDENTIFICATION_NUMBER =
|
|
833
840
|
T.let(
|
|
@@ -1585,6 +1592,13 @@ module Increase
|
|
|
1585
1592
|
Increase::Entity::Joint::Individual::Identification::Method::TaggedSymbol
|
|
1586
1593
|
)
|
|
1587
1594
|
|
|
1595
|
+
# The last four digits of a social security number. Not all programs can use this method.
|
|
1596
|
+
SOCIAL_SECURITY_NUMBER_LAST4 =
|
|
1597
|
+
T.let(
|
|
1598
|
+
:social_security_number_last4,
|
|
1599
|
+
Increase::Entity::Joint::Individual::Identification::Method::TaggedSymbol
|
|
1600
|
+
)
|
|
1601
|
+
|
|
1588
1602
|
# An individual taxpayer identification number (ITIN).
|
|
1589
1603
|
INDIVIDUAL_TAXPAYER_IDENTIFICATION_NUMBER =
|
|
1590
1604
|
T.let(
|
|
@@ -1852,6 +1866,13 @@ module Increase
|
|
|
1852
1866
|
Increase::Entity::NaturalPerson::Identification::Method::TaggedSymbol
|
|
1853
1867
|
)
|
|
1854
1868
|
|
|
1869
|
+
# The last four digits of a social security number. Not all programs can use this method.
|
|
1870
|
+
SOCIAL_SECURITY_NUMBER_LAST4 =
|
|
1871
|
+
T.let(
|
|
1872
|
+
:social_security_number_last4,
|
|
1873
|
+
Increase::Entity::NaturalPerson::Identification::Method::TaggedSymbol
|
|
1874
|
+
)
|
|
1875
|
+
|
|
1855
1876
|
# An individual taxpayer identification number (ITIN).
|
|
1856
1877
|
INDIVIDUAL_TAXPAYER_IDENTIFICATION_NUMBER =
|
|
1857
1878
|
T.let(
|
|
@@ -2390,6 +2411,13 @@ module Increase
|
|
|
2390
2411
|
Increase::Entity::SoleProprietorship::SoleProprietor::Identification::Method::TaggedSymbol
|
|
2391
2412
|
)
|
|
2392
2413
|
|
|
2414
|
+
# The last four digits of a social security number. Not all programs can use this method.
|
|
2415
|
+
SOCIAL_SECURITY_NUMBER_LAST4 =
|
|
2416
|
+
T.let(
|
|
2417
|
+
:social_security_number_last4,
|
|
2418
|
+
Increase::Entity::SoleProprietorship::SoleProprietor::Identification::Method::TaggedSymbol
|
|
2419
|
+
)
|
|
2420
|
+
|
|
2393
2421
|
# An individual taxpayer identification number (ITIN).
|
|
2394
2422
|
INDIVIDUAL_TAXPAYER_IDENTIFICATION_NUMBER =
|
|
2395
2423
|
T.let(
|
|
@@ -3086,6 +3114,13 @@ module Increase
|
|
|
3086
3114
|
Increase::Entity::Trust::Grantor::Identification::Method::TaggedSymbol
|
|
3087
3115
|
)
|
|
3088
3116
|
|
|
3117
|
+
# The last four digits of a social security number. Not all programs can use this method.
|
|
3118
|
+
SOCIAL_SECURITY_NUMBER_LAST4 =
|
|
3119
|
+
T.let(
|
|
3120
|
+
:social_security_number_last4,
|
|
3121
|
+
Increase::Entity::Trust::Grantor::Identification::Method::TaggedSymbol
|
|
3122
|
+
)
|
|
3123
|
+
|
|
3089
3124
|
# An individual taxpayer identification number (ITIN).
|
|
3090
3125
|
INDIVIDUAL_TAXPAYER_IDENTIFICATION_NUMBER =
|
|
3091
3126
|
T.let(
|
|
@@ -3429,6 +3464,13 @@ module Increase
|
|
|
3429
3464
|
Increase::Entity::Trust::Trustee::Individual::Identification::Method::TaggedSymbol
|
|
3430
3465
|
)
|
|
3431
3466
|
|
|
3467
|
+
# The last four digits of a social security number. Not all programs can use this method.
|
|
3468
|
+
SOCIAL_SECURITY_NUMBER_LAST4 =
|
|
3469
|
+
T.let(
|
|
3470
|
+
:social_security_number_last4,
|
|
3471
|
+
Increase::Entity::Trust::Trustee::Individual::Identification::Method::TaggedSymbol
|
|
3472
|
+
)
|
|
3473
|
+
|
|
3432
3474
|
# An individual taxpayer identification number (ITIN).
|
|
3433
3475
|
INDIVIDUAL_TAXPAYER_IDENTIFICATION_NUMBER =
|
|
3434
3476
|
T.let(
|
|
@@ -3607,6 +3649,26 @@ module Increase
|
|
|
3607
3649
|
end
|
|
3608
3650
|
attr_writer :beneficial_owner_identity
|
|
3609
3651
|
|
|
3652
|
+
# Details when the issue is with a beneficial owner's tax identifier.
|
|
3653
|
+
sig do
|
|
3654
|
+
returns(
|
|
3655
|
+
T.nilable(
|
|
3656
|
+
Increase::Entity::Validation::Issue::BeneficialOwnerTaxIdentifier
|
|
3657
|
+
)
|
|
3658
|
+
)
|
|
3659
|
+
end
|
|
3660
|
+
attr_reader :beneficial_owner_tax_identifier
|
|
3661
|
+
|
|
3662
|
+
sig do
|
|
3663
|
+
params(
|
|
3664
|
+
beneficial_owner_tax_identifier:
|
|
3665
|
+
T.nilable(
|
|
3666
|
+
Increase::Entity::Validation::Issue::BeneficialOwnerTaxIdentifier::OrHash
|
|
3667
|
+
)
|
|
3668
|
+
).void
|
|
3669
|
+
end
|
|
3670
|
+
attr_writer :beneficial_owner_tax_identifier
|
|
3671
|
+
|
|
3610
3672
|
# The type of issue. We may add additional possible values for this enum over
|
|
3611
3673
|
# time; your application should be able to handle such additions gracefully.
|
|
3612
3674
|
sig do
|
|
@@ -3680,6 +3742,10 @@ module Increase
|
|
|
3680
3742
|
T.nilable(
|
|
3681
3743
|
Increase::Entity::Validation::Issue::BeneficialOwnerIdentity::OrHash
|
|
3682
3744
|
),
|
|
3745
|
+
beneficial_owner_tax_identifier:
|
|
3746
|
+
T.nilable(
|
|
3747
|
+
Increase::Entity::Validation::Issue::BeneficialOwnerTaxIdentifier::OrHash
|
|
3748
|
+
),
|
|
3683
3749
|
category: Increase::Entity::Validation::Issue::Category::OrSymbol,
|
|
3684
3750
|
entity_address:
|
|
3685
3751
|
T.nilable(
|
|
@@ -3700,6 +3766,8 @@ module Increase
|
|
|
3700
3766
|
beneficial_owner_address:,
|
|
3701
3767
|
# Details when the issue is with a beneficial owner's identity verification.
|
|
3702
3768
|
beneficial_owner_identity:,
|
|
3769
|
+
# Details when the issue is with a beneficial owner's tax identifier.
|
|
3770
|
+
beneficial_owner_tax_identifier:,
|
|
3703
3771
|
# The type of issue. We may add additional possible values for this enum over
|
|
3704
3772
|
# time; your application should be able to handle such additions gracefully.
|
|
3705
3773
|
category:,
|
|
@@ -3723,6 +3791,10 @@ module Increase
|
|
|
3723
3791
|
T.nilable(
|
|
3724
3792
|
Increase::Entity::Validation::Issue::BeneficialOwnerIdentity
|
|
3725
3793
|
),
|
|
3794
|
+
beneficial_owner_tax_identifier:
|
|
3795
|
+
T.nilable(
|
|
3796
|
+
Increase::Entity::Validation::Issue::BeneficialOwnerTaxIdentifier
|
|
3797
|
+
),
|
|
3726
3798
|
category:
|
|
3727
3799
|
Increase::Entity::Validation::Issue::Category::TaggedSymbol,
|
|
3728
3800
|
entity_address:
|
|
@@ -3850,6 +3922,34 @@ module Increase
|
|
|
3850
3922
|
end
|
|
3851
3923
|
end
|
|
3852
3924
|
|
|
3925
|
+
class BeneficialOwnerTaxIdentifier < Increase::Internal::Type::BaseModel
|
|
3926
|
+
OrHash =
|
|
3927
|
+
T.type_alias do
|
|
3928
|
+
T.any(
|
|
3929
|
+
Increase::Entity::Validation::Issue::BeneficialOwnerTaxIdentifier,
|
|
3930
|
+
Increase::Internal::AnyHash
|
|
3931
|
+
)
|
|
3932
|
+
end
|
|
3933
|
+
|
|
3934
|
+
# The ID of the beneficial owner.
|
|
3935
|
+
sig { returns(String) }
|
|
3936
|
+
attr_accessor :beneficial_owner_id
|
|
3937
|
+
|
|
3938
|
+
# Details when the issue is with a beneficial owner's tax identifier.
|
|
3939
|
+
sig do
|
|
3940
|
+
params(beneficial_owner_id: String).returns(T.attached_class)
|
|
3941
|
+
end
|
|
3942
|
+
def self.new(
|
|
3943
|
+
# The ID of the beneficial owner.
|
|
3944
|
+
beneficial_owner_id:
|
|
3945
|
+
)
|
|
3946
|
+
end
|
|
3947
|
+
|
|
3948
|
+
sig { override.returns({ beneficial_owner_id: String }) }
|
|
3949
|
+
def to_hash
|
|
3950
|
+
end
|
|
3951
|
+
end
|
|
3952
|
+
|
|
3853
3953
|
# The type of issue. We may add additional possible values for this enum over
|
|
3854
3954
|
# time; your application should be able to handle such additions gracefully.
|
|
3855
3955
|
module Category
|
|
@@ -3896,6 +3996,13 @@ module Increase
|
|
|
3896
3996
|
Increase::Entity::Validation::Issue::Category::TaggedSymbol
|
|
3897
3997
|
)
|
|
3898
3998
|
|
|
3999
|
+
# 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).
|
|
4000
|
+
BENEFICIAL_OWNER_TAX_IDENTIFIER =
|
|
4001
|
+
T.let(
|
|
4002
|
+
:beneficial_owner_tax_identifier,
|
|
4003
|
+
Increase::Entity::Validation::Issue::Category::TaggedSymbol
|
|
4004
|
+
)
|
|
4005
|
+
|
|
3899
4006
|
sig do
|
|
3900
4007
|
override.returns(
|
|
3901
4008
|
T::Array[
|
|
@@ -351,6 +351,13 @@ module Increase
|
|
|
351
351
|
Increase::EntityBeneficialOwner::Individual::Identification::Method::TaggedSymbol
|
|
352
352
|
)
|
|
353
353
|
|
|
354
|
+
# The last four digits of a social security number. Not all programs can use this method.
|
|
355
|
+
SOCIAL_SECURITY_NUMBER_LAST4 =
|
|
356
|
+
T.let(
|
|
357
|
+
:social_security_number_last4,
|
|
358
|
+
Increase::EntityBeneficialOwner::Individual::Identification::Method::TaggedSymbol
|
|
359
|
+
)
|
|
360
|
+
|
|
354
361
|
# An individual taxpayer identification number (ITIN).
|
|
355
362
|
INDIVIDUAL_TAXPAYER_IDENTIFICATION_NUMBER =
|
|
356
363
|
T.let(
|
|
@@ -1025,6 +1025,13 @@ module Increase
|
|
|
1025
1025
|
Increase::EntityCreateParams::Corporation::BeneficialOwner::Individual::Identification::Method::TaggedSymbol
|
|
1026
1026
|
)
|
|
1027
1027
|
|
|
1028
|
+
# The last four digits of a social security number. Not all programs can use this method.
|
|
1029
|
+
SOCIAL_SECURITY_NUMBER_LAST4 =
|
|
1030
|
+
T.let(
|
|
1031
|
+
:social_security_number_last4,
|
|
1032
|
+
Increase::EntityCreateParams::Corporation::BeneficialOwner::Individual::Identification::Method::TaggedSymbol
|
|
1033
|
+
)
|
|
1034
|
+
|
|
1028
1035
|
# An individual taxpayer identification number (ITIN).
|
|
1029
1036
|
INDIVIDUAL_TAXPAYER_IDENTIFICATION_NUMBER =
|
|
1030
1037
|
T.let(
|
|
@@ -714,6 +714,13 @@ module Increase
|
|
|
714
714
|
T.type_alias { T.all(Symbol, Increase::Export::Category) }
|
|
715
715
|
OrSymbol = T.type_alias { T.any(Symbol, String) }
|
|
716
716
|
|
|
717
|
+
# Export a BAI2 file of transactions and balances for a given date and optional Account.
|
|
718
|
+
ACCOUNT_STATEMENT_BAI2 =
|
|
719
|
+
T.let(
|
|
720
|
+
:account_statement_bai2,
|
|
721
|
+
Increase::Export::Category::TaggedSymbol
|
|
722
|
+
)
|
|
723
|
+
|
|
717
724
|
# Export an Open Financial Exchange (OFX) file of transactions and balances for a given time range and Account.
|
|
718
725
|
ACCOUNT_STATEMENT_OFX =
|
|
719
726
|
T.let(
|
|
@@ -721,17 +728,13 @@ module Increase
|
|
|
721
728
|
Increase::Export::Category::TaggedSymbol
|
|
722
729
|
)
|
|
723
730
|
|
|
724
|
-
#
|
|
725
|
-
|
|
731
|
+
# A PDF of an account verification letter.
|
|
732
|
+
ACCOUNT_VERIFICATION_LETTER =
|
|
726
733
|
T.let(
|
|
727
|
-
:
|
|
734
|
+
:account_verification_letter,
|
|
728
735
|
Increase::Export::Category::TaggedSymbol
|
|
729
736
|
)
|
|
730
737
|
|
|
731
|
-
# Export a CSV of all transactions for a given time range.
|
|
732
|
-
TRANSACTION_CSV =
|
|
733
|
-
T.let(:transaction_csv, Increase::Export::Category::TaggedSymbol)
|
|
734
|
-
|
|
735
738
|
# Export a CSV of account balances for the dates in a given range. (deprecated, use `daily_account_balance_csv` instead)
|
|
736
739
|
BALANCE_CSV =
|
|
737
740
|
T.let(:balance_csv, Increase::Export::Category::TaggedSymbol)
|
|
@@ -743,28 +746,23 @@ module Increase
|
|
|
743
746
|
Increase::Export::Category::TaggedSymbol
|
|
744
747
|
)
|
|
745
748
|
|
|
746
|
-
# Export a CSV of
|
|
747
|
-
|
|
748
|
-
T.let(
|
|
749
|
-
|
|
750
|
-
|
|
751
|
-
|
|
752
|
-
T.let(:vendor_csv, Increase::Export::Category::TaggedSymbol)
|
|
749
|
+
# Export a CSV of daily account balances with starting and ending balances for a given date range.
|
|
750
|
+
DAILY_ACCOUNT_BALANCE_CSV =
|
|
751
|
+
T.let(
|
|
752
|
+
:daily_account_balance_csv,
|
|
753
|
+
Increase::Export::Category::TaggedSymbol
|
|
754
|
+
)
|
|
753
755
|
|
|
754
756
|
# Certain dashboard tables are available as CSV exports. This export cannot be created via the API.
|
|
755
757
|
DASHBOARD_TABLE_CSV =
|
|
756
758
|
T.let(:dashboard_table_csv, Increase::Export::Category::TaggedSymbol)
|
|
757
759
|
|
|
758
|
-
#
|
|
759
|
-
|
|
760
|
-
T.let(
|
|
761
|
-
:account_verification_letter,
|
|
762
|
-
Increase::Export::Category::TaggedSymbol
|
|
763
|
-
)
|
|
760
|
+
# Export a CSV of entities with a given status.
|
|
761
|
+
ENTITY_CSV =
|
|
762
|
+
T.let(:entity_csv, Increase::Export::Category::TaggedSymbol)
|
|
764
763
|
|
|
765
|
-
#
|
|
766
|
-
|
|
767
|
-
T.let(:funding_instructions, Increase::Export::Category::TaggedSymbol)
|
|
764
|
+
# Export a CSV of fees. The time range must not include any fees that are part of an open fee statement.
|
|
765
|
+
FEE_CSV = T.let(:fee_csv, Increase::Export::Category::TaggedSymbol)
|
|
768
766
|
|
|
769
767
|
# A PDF of an Internal Revenue Service Form 1099-INT.
|
|
770
768
|
FORM_1099_INT =
|
|
@@ -774,20 +772,22 @@ module Increase
|
|
|
774
772
|
FORM_1099_MISC =
|
|
775
773
|
T.let(:form_1099_misc, Increase::Export::Category::TaggedSymbol)
|
|
776
774
|
|
|
777
|
-
#
|
|
778
|
-
|
|
775
|
+
# A PDF of funding instructions.
|
|
776
|
+
FUNDING_INSTRUCTIONS =
|
|
777
|
+
T.let(:funding_instructions, Increase::Export::Category::TaggedSymbol)
|
|
778
|
+
|
|
779
|
+
# Export a CSV of all transactions for a given time range.
|
|
780
|
+
TRANSACTION_CSV =
|
|
781
|
+
T.let(:transaction_csv, Increase::Export::Category::TaggedSymbol)
|
|
782
|
+
|
|
783
|
+
# Export a CSV of vendors added to the third-party risk management dashboard.
|
|
784
|
+
VENDOR_CSV =
|
|
785
|
+
T.let(:vendor_csv, Increase::Export::Category::TaggedSymbol)
|
|
779
786
|
|
|
780
787
|
# A PDF of a voided check.
|
|
781
788
|
VOIDED_CHECK =
|
|
782
789
|
T.let(:voided_check, Increase::Export::Category::TaggedSymbol)
|
|
783
790
|
|
|
784
|
-
# Export a CSV of daily account balances with starting and ending balances for a given date range.
|
|
785
|
-
DAILY_ACCOUNT_BALANCE_CSV =
|
|
786
|
-
T.let(
|
|
787
|
-
:daily_account_balance_csv,
|
|
788
|
-
Increase::Export::Category::TaggedSymbol
|
|
789
|
-
)
|
|
790
|
-
|
|
791
791
|
sig do
|
|
792
792
|
override.returns(T::Array[Increase::Export::Category::TaggedSymbol])
|
|
793
793
|
end
|
|
@@ -254,24 +254,24 @@ module Increase
|
|
|
254
254
|
T.type_alias { T.all(Symbol, Increase::ExportCreateParams::Category) }
|
|
255
255
|
OrSymbol = T.type_alias { T.any(Symbol, String) }
|
|
256
256
|
|
|
257
|
-
# Export
|
|
258
|
-
|
|
257
|
+
# Export a BAI2 file of transactions and balances for a given date and optional Account.
|
|
258
|
+
ACCOUNT_STATEMENT_BAI2 =
|
|
259
259
|
T.let(
|
|
260
|
-
:
|
|
260
|
+
:account_statement_bai2,
|
|
261
261
|
Increase::ExportCreateParams::Category::TaggedSymbol
|
|
262
262
|
)
|
|
263
263
|
|
|
264
|
-
# Export
|
|
265
|
-
|
|
264
|
+
# Export an Open Financial Exchange (OFX) file of transactions and balances for a given time range and Account.
|
|
265
|
+
ACCOUNT_STATEMENT_OFX =
|
|
266
266
|
T.let(
|
|
267
|
-
:
|
|
267
|
+
:account_statement_ofx,
|
|
268
268
|
Increase::ExportCreateParams::Category::TaggedSymbol
|
|
269
269
|
)
|
|
270
270
|
|
|
271
|
-
#
|
|
272
|
-
|
|
271
|
+
# A PDF of an account verification letter.
|
|
272
|
+
ACCOUNT_VERIFICATION_LETTER =
|
|
273
273
|
T.let(
|
|
274
|
-
:
|
|
274
|
+
:account_verification_letter,
|
|
275
275
|
Increase::ExportCreateParams::Category::TaggedSymbol
|
|
276
276
|
)
|
|
277
277
|
|
|
@@ -289,6 +289,13 @@ module Increase
|
|
|
289
289
|
Increase::ExportCreateParams::Category::TaggedSymbol
|
|
290
290
|
)
|
|
291
291
|
|
|
292
|
+
# Export a CSV of daily account balances with starting and ending balances for a given date range.
|
|
293
|
+
DAILY_ACCOUNT_BALANCE_CSV =
|
|
294
|
+
T.let(
|
|
295
|
+
:daily_account_balance_csv,
|
|
296
|
+
Increase::ExportCreateParams::Category::TaggedSymbol
|
|
297
|
+
)
|
|
298
|
+
|
|
292
299
|
# Export a CSV of entities with a given status.
|
|
293
300
|
ENTITY_CSV =
|
|
294
301
|
T.let(
|
|
@@ -296,31 +303,31 @@ module Increase
|
|
|
296
303
|
Increase::ExportCreateParams::Category::TaggedSymbol
|
|
297
304
|
)
|
|
298
305
|
|
|
299
|
-
# Export a CSV of
|
|
300
|
-
|
|
306
|
+
# Export a CSV of fees. The time range must not include any fees that are part of an open fee statement.
|
|
307
|
+
FEE_CSV =
|
|
308
|
+
T.let(:fee_csv, Increase::ExportCreateParams::Category::TaggedSymbol)
|
|
309
|
+
|
|
310
|
+
# A PDF of funding instructions.
|
|
311
|
+
FUNDING_INSTRUCTIONS =
|
|
301
312
|
T.let(
|
|
302
|
-
:
|
|
313
|
+
:funding_instructions,
|
|
303
314
|
Increase::ExportCreateParams::Category::TaggedSymbol
|
|
304
315
|
)
|
|
305
316
|
|
|
306
|
-
#
|
|
307
|
-
|
|
317
|
+
# Export a CSV of all transactions for a given time range.
|
|
318
|
+
TRANSACTION_CSV =
|
|
308
319
|
T.let(
|
|
309
|
-
:
|
|
320
|
+
:transaction_csv,
|
|
310
321
|
Increase::ExportCreateParams::Category::TaggedSymbol
|
|
311
322
|
)
|
|
312
323
|
|
|
313
|
-
#
|
|
314
|
-
|
|
324
|
+
# Export a CSV of vendors added to the third-party risk management dashboard.
|
|
325
|
+
VENDOR_CSV =
|
|
315
326
|
T.let(
|
|
316
|
-
:
|
|
327
|
+
:vendor_csv,
|
|
317
328
|
Increase::ExportCreateParams::Category::TaggedSymbol
|
|
318
329
|
)
|
|
319
330
|
|
|
320
|
-
# Export a CSV of fees. The time range must not include any fees that are part of an open fee statement.
|
|
321
|
-
FEE_CSV =
|
|
322
|
-
T.let(:fee_csv, Increase::ExportCreateParams::Category::TaggedSymbol)
|
|
323
|
-
|
|
324
331
|
# A PDF of a voided check.
|
|
325
332
|
VOIDED_CHECK =
|
|
326
333
|
T.let(
|
|
@@ -328,13 +335,6 @@ module Increase
|
|
|
328
335
|
Increase::ExportCreateParams::Category::TaggedSymbol
|
|
329
336
|
)
|
|
330
337
|
|
|
331
|
-
# Export a CSV of daily account balances with starting and ending balances for a given date range.
|
|
332
|
-
DAILY_ACCOUNT_BALANCE_CSV =
|
|
333
|
-
T.let(
|
|
334
|
-
:daily_account_balance_csv,
|
|
335
|
-
Increase::ExportCreateParams::Category::TaggedSymbol
|
|
336
|
-
)
|
|
337
|
-
|
|
338
338
|
sig do
|
|
339
339
|
override.returns(
|
|
340
340
|
T::Array[Increase::ExportCreateParams::Category::TaggedSymbol]
|