increase 1.353.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.
Files changed (58) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +1 -1
  3. data/lib/increase/models/ach_transfer.rb +3 -3
  4. data/lib/increase/models/beneficial_owner_create_params.rb +1 -1
  5. data/lib/increase/models/beneficial_owner_update_params.rb +1 -1
  6. data/lib/increase/models/card_payment.rb +3 -0
  7. data/lib/increase/models/declined_transaction.rb +3 -0
  8. data/lib/increase/models/digital_wallet_token.rb +15 -0
  9. data/lib/increase/models/entity.rb +35 -7
  10. data/lib/increase/models/entity_beneficial_owner.rb +1 -1
  11. data/lib/increase/models/entity_create_params.rb +1 -1
  12. data/lib/increase/models/export.rb +19 -19
  13. data/lib/increase/models/export_create_params.rb +15 -15
  14. data/lib/increase/models/export_list_params.rb +19 -19
  15. data/lib/increase/models/inbound_wire_transfer.rb +10 -1
  16. data/lib/increase/models/real_time_decision.rb +3 -0
  17. data/lib/increase/models/real_time_decision_action_params.rb +3 -0
  18. data/lib/increase/models/simulations/digital_wallet_token_request_create_response.rb +9 -0
  19. data/lib/increase/models/simulations/entity_update_validation_params.rb +3 -0
  20. data/lib/increase/models/transaction.rb +10 -1
  21. data/lib/increase/version.rb +1 -1
  22. data/rbi/increase/models/ach_transfer.rbi +3 -3
  23. data/rbi/increase/models/beneficial_owner_create_params.rbi +1 -1
  24. data/rbi/increase/models/beneficial_owner_update_params.rbi +1 -1
  25. data/rbi/increase/models/card_payment.rbi +7 -0
  26. data/rbi/increase/models/declined_transaction.rbi +7 -0
  27. data/rbi/increase/models/digital_wallet_token.rbi +35 -0
  28. data/rbi/increase/models/entity.rbi +71 -6
  29. data/rbi/increase/models/entity_beneficial_owner.rbi +1 -1
  30. data/rbi/increase/models/entity_create_params.rbi +1 -1
  31. data/rbi/increase/models/export.rbi +32 -32
  32. data/rbi/increase/models/export_create_params.rbi +29 -29
  33. data/rbi/increase/models/export_list_params.rbi +37 -37
  34. data/rbi/increase/models/inbound_wire_transfer.rbi +8 -0
  35. data/rbi/increase/models/real_time_decision.rbi +7 -0
  36. data/rbi/increase/models/real_time_decision_action_params.rbi +7 -0
  37. data/rbi/increase/models/simulations/digital_wallet_token_request_create_response.rbi +21 -0
  38. data/rbi/increase/models/simulations/entity_update_validation_params.rbi +7 -0
  39. data/rbi/increase/models/transaction.rbi +8 -0
  40. data/sig/increase/models/ach_transfer.rbs +4 -4
  41. data/sig/increase/models/beneficial_owner_create_params.rbs +1 -1
  42. data/sig/increase/models/beneficial_owner_update_params.rbs +1 -1
  43. data/sig/increase/models/card_payment.rbs +4 -0
  44. data/sig/increase/models/declined_transaction.rbs +4 -0
  45. data/sig/increase/models/digital_wallet_token.rbs +31 -2
  46. data/sig/increase/models/entity.rbs +25 -6
  47. data/sig/increase/models/entity_beneficial_owner.rbs +1 -1
  48. data/sig/increase/models/entity_create_params.rbs +1 -1
  49. data/sig/increase/models/export.rbs +28 -28
  50. data/sig/increase/models/export_create_params.rbs +22 -22
  51. data/sig/increase/models/export_list_params.rbs +28 -28
  52. data/sig/increase/models/inbound_wire_transfer.rbs +5 -0
  53. data/sig/increase/models/real_time_decision.rbs +4 -0
  54. data/sig/increase/models/real_time_decision_action_params.rbs +4 -0
  55. data/sig/increase/models/simulations/digital_wallet_token_request_create_response.rbs +12 -0
  56. data/sig/increase/models/simulations/entity_update_validation_params.rbs +4 -0
  57. data/sig/increase/models/transaction.rbs +5 -0
  58. metadata +2 -2
@@ -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,7 +828,7 @@ 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.
831
+ # The last four digits of a social security number. Not all programs can use this method.
832
832
  SOCIAL_SECURITY_NUMBER_LAST4 =
833
833
  T.let(
834
834
  :social_security_number_last4,
@@ -1592,7 +1592,7 @@ module Increase
1592
1592
  Increase::Entity::Joint::Individual::Identification::Method::TaggedSymbol
1593
1593
  )
1594
1594
 
1595
- # The last four digits of a social security number.
1595
+ # The last four digits of a social security number. Not all programs can use this method.
1596
1596
  SOCIAL_SECURITY_NUMBER_LAST4 =
1597
1597
  T.let(
1598
1598
  :social_security_number_last4,
@@ -1866,7 +1866,7 @@ module Increase
1866
1866
  Increase::Entity::NaturalPerson::Identification::Method::TaggedSymbol
1867
1867
  )
1868
1868
 
1869
- # The last four digits of a social security number.
1869
+ # The last four digits of a social security number. Not all programs can use this method.
1870
1870
  SOCIAL_SECURITY_NUMBER_LAST4 =
1871
1871
  T.let(
1872
1872
  :social_security_number_last4,
@@ -2411,7 +2411,7 @@ module Increase
2411
2411
  Increase::Entity::SoleProprietorship::SoleProprietor::Identification::Method::TaggedSymbol
2412
2412
  )
2413
2413
 
2414
- # The last four digits of a social security number.
2414
+ # The last four digits of a social security number. Not all programs can use this method.
2415
2415
  SOCIAL_SECURITY_NUMBER_LAST4 =
2416
2416
  T.let(
2417
2417
  :social_security_number_last4,
@@ -3114,7 +3114,7 @@ module Increase
3114
3114
  Increase::Entity::Trust::Grantor::Identification::Method::TaggedSymbol
3115
3115
  )
3116
3116
 
3117
- # The last four digits of a social security number.
3117
+ # The last four digits of a social security number. Not all programs can use this method.
3118
3118
  SOCIAL_SECURITY_NUMBER_LAST4 =
3119
3119
  T.let(
3120
3120
  :social_security_number_last4,
@@ -3464,7 +3464,7 @@ module Increase
3464
3464
  Increase::Entity::Trust::Trustee::Individual::Identification::Method::TaggedSymbol
3465
3465
  )
3466
3466
 
3467
- # The last four digits of a social security number.
3467
+ # The last four digits of a social security number. Not all programs can use this method.
3468
3468
  SOCIAL_SECURITY_NUMBER_LAST4 =
3469
3469
  T.let(
3470
3470
  :social_security_number_last4,
@@ -3649,6 +3649,26 @@ module Increase
3649
3649
  end
3650
3650
  attr_writer :beneficial_owner_identity
3651
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
+
3652
3672
  # The type of issue. We may add additional possible values for this enum over
3653
3673
  # time; your application should be able to handle such additions gracefully.
3654
3674
  sig do
@@ -3722,6 +3742,10 @@ module Increase
3722
3742
  T.nilable(
3723
3743
  Increase::Entity::Validation::Issue::BeneficialOwnerIdentity::OrHash
3724
3744
  ),
3745
+ beneficial_owner_tax_identifier:
3746
+ T.nilable(
3747
+ Increase::Entity::Validation::Issue::BeneficialOwnerTaxIdentifier::OrHash
3748
+ ),
3725
3749
  category: Increase::Entity::Validation::Issue::Category::OrSymbol,
3726
3750
  entity_address:
3727
3751
  T.nilable(
@@ -3742,6 +3766,8 @@ module Increase
3742
3766
  beneficial_owner_address:,
3743
3767
  # Details when the issue is with a beneficial owner's identity verification.
3744
3768
  beneficial_owner_identity:,
3769
+ # Details when the issue is with a beneficial owner's tax identifier.
3770
+ beneficial_owner_tax_identifier:,
3745
3771
  # The type of issue. We may add additional possible values for this enum over
3746
3772
  # time; your application should be able to handle such additions gracefully.
3747
3773
  category:,
@@ -3765,6 +3791,10 @@ module Increase
3765
3791
  T.nilable(
3766
3792
  Increase::Entity::Validation::Issue::BeneficialOwnerIdentity
3767
3793
  ),
3794
+ beneficial_owner_tax_identifier:
3795
+ T.nilable(
3796
+ Increase::Entity::Validation::Issue::BeneficialOwnerTaxIdentifier
3797
+ ),
3768
3798
  category:
3769
3799
  Increase::Entity::Validation::Issue::Category::TaggedSymbol,
3770
3800
  entity_address:
@@ -3892,6 +3922,34 @@ module Increase
3892
3922
  end
3893
3923
  end
3894
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
+
3895
3953
  # The type of issue. We may add additional possible values for this enum over
3896
3954
  # time; your application should be able to handle such additions gracefully.
3897
3955
  module Category
@@ -3938,6 +3996,13 @@ module Increase
3938
3996
  Increase::Entity::Validation::Issue::Category::TaggedSymbol
3939
3997
  )
3940
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
+
3941
4006
  sig do
3942
4007
  override.returns(
3943
4008
  T::Array[
@@ -351,7 +351,7 @@ module Increase
351
351
  Increase::EntityBeneficialOwner::Individual::Identification::Method::TaggedSymbol
352
352
  )
353
353
 
354
- # The last four digits of a social security number.
354
+ # The last four digits of a social security number. Not all programs can use this method.
355
355
  SOCIAL_SECURITY_NUMBER_LAST4 =
356
356
  T.let(
357
357
  :social_security_number_last4,
@@ -1025,7 +1025,7 @@ 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.
1028
+ # The last four digits of a social security number. Not all programs can use this method.
1029
1029
  SOCIAL_SECURITY_NUMBER_LAST4 =
1030
1030
  T.let(
1031
1031
  :social_security_number_last4,
@@ -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
- # Export a BAI2 file of transactions and balances for a given date and optional Account.
725
- ACCOUNT_STATEMENT_BAI2 =
731
+ # A PDF of an account verification letter.
732
+ ACCOUNT_VERIFICATION_LETTER =
726
733
  T.let(
727
- :account_statement_bai2,
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 entities with a given status.
747
- ENTITY_CSV =
748
- T.let(:entity_csv, Increase::Export::Category::TaggedSymbol)
749
-
750
- # Export a CSV of vendors added to the third-party risk management dashboard.
751
- VENDOR_CSV =
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
- # A PDF of an account verification letter.
759
- ACCOUNT_VERIFICATION_LETTER =
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
- # A PDF of funding instructions.
766
- FUNDING_INSTRUCTIONS =
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
- # Export a CSV of fees. The time range must not include any fees that are part of an open fee statement.
778
- FEE_CSV = T.let(:fee_csv, Increase::Export::Category::TaggedSymbol)
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 an Open Financial Exchange (OFX) file of transactions and balances for a given time range and Account.
258
- ACCOUNT_STATEMENT_OFX =
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
- :account_statement_ofx,
260
+ :account_statement_bai2,
261
261
  Increase::ExportCreateParams::Category::TaggedSymbol
262
262
  )
263
263
 
264
- # Export a BAI2 file of transactions and balances for a given date and optional Account.
265
- ACCOUNT_STATEMENT_BAI2 =
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
- :account_statement_bai2,
267
+ :account_statement_ofx,
268
268
  Increase::ExportCreateParams::Category::TaggedSymbol
269
269
  )
270
270
 
271
- # Export a CSV of all transactions for a given time range.
272
- TRANSACTION_CSV =
271
+ # A PDF of an account verification letter.
272
+ ACCOUNT_VERIFICATION_LETTER =
273
273
  T.let(
274
- :transaction_csv,
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 vendors added to the third-party risk management dashboard.
300
- VENDOR_CSV =
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
- :vendor_csv,
313
+ :funding_instructions,
303
314
  Increase::ExportCreateParams::Category::TaggedSymbol
304
315
  )
305
316
 
306
- # A PDF of an account verification letter.
307
- ACCOUNT_VERIFICATION_LETTER =
317
+ # Export a CSV of all transactions for a given time range.
318
+ TRANSACTION_CSV =
308
319
  T.let(
309
- :account_verification_letter,
320
+ :transaction_csv,
310
321
  Increase::ExportCreateParams::Category::TaggedSymbol
311
322
  )
312
323
 
313
- # A PDF of funding instructions.
314
- FUNDING_INSTRUCTIONS =
324
+ # Export a CSV of vendors added to the third-party risk management dashboard.
325
+ VENDOR_CSV =
315
326
  T.let(
316
- :funding_instructions,
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]
@@ -143,24 +143,24 @@ module Increase
143
143
  T.type_alias { T.all(Symbol, Increase::ExportListParams::Category) }
144
144
  OrSymbol = T.type_alias { T.any(Symbol, String) }
145
145
 
146
- # Export an Open Financial Exchange (OFX) file of transactions and balances for a given time range and Account.
147
- ACCOUNT_STATEMENT_OFX =
146
+ # Export a BAI2 file of transactions and balances for a given date and optional Account.
147
+ ACCOUNT_STATEMENT_BAI2 =
148
148
  T.let(
149
- :account_statement_ofx,
149
+ :account_statement_bai2,
150
150
  Increase::ExportListParams::Category::TaggedSymbol
151
151
  )
152
152
 
153
- # Export a BAI2 file of transactions and balances for a given date and optional Account.
154
- ACCOUNT_STATEMENT_BAI2 =
153
+ # Export an Open Financial Exchange (OFX) file of transactions and balances for a given time range and Account.
154
+ ACCOUNT_STATEMENT_OFX =
155
155
  T.let(
156
- :account_statement_bai2,
156
+ :account_statement_ofx,
157
157
  Increase::ExportListParams::Category::TaggedSymbol
158
158
  )
159
159
 
160
- # Export a CSV of all transactions for a given time range.
161
- TRANSACTION_CSV =
160
+ # A PDF of an account verification letter.
161
+ ACCOUNT_VERIFICATION_LETTER =
162
162
  T.let(
163
- :transaction_csv,
163
+ :account_verification_letter,
164
164
  Increase::ExportListParams::Category::TaggedSymbol
165
165
  )
166
166
 
@@ -178,13 +178,12 @@ module Increase
178
178
  Increase::ExportListParams::Category::TaggedSymbol
179
179
  )
180
180
 
181
- # Export a CSV of entities with a given status.
182
- ENTITY_CSV =
183
- T.let(:entity_csv, Increase::ExportListParams::Category::TaggedSymbol)
184
-
185
- # Export a CSV of vendors added to the third-party risk management dashboard.
186
- VENDOR_CSV =
187
- T.let(:vendor_csv, Increase::ExportListParams::Category::TaggedSymbol)
181
+ # Export a CSV of daily account balances with starting and ending balances for a given date range.
182
+ DAILY_ACCOUNT_BALANCE_CSV =
183
+ T.let(
184
+ :daily_account_balance_csv,
185
+ Increase::ExportListParams::Category::TaggedSymbol
186
+ )
188
187
 
189
188
  # Certain dashboard tables are available as CSV exports. This export cannot be created via the API.
190
189
  DASHBOARD_TABLE_CSV =
@@ -193,19 +192,13 @@ module Increase
193
192
  Increase::ExportListParams::Category::TaggedSymbol
194
193
  )
195
194
 
196
- # A PDF of an account verification letter.
197
- ACCOUNT_VERIFICATION_LETTER =
198
- T.let(
199
- :account_verification_letter,
200
- Increase::ExportListParams::Category::TaggedSymbol
201
- )
195
+ # Export a CSV of entities with a given status.
196
+ ENTITY_CSV =
197
+ T.let(:entity_csv, Increase::ExportListParams::Category::TaggedSymbol)
202
198
 
203
- # A PDF of funding instructions.
204
- FUNDING_INSTRUCTIONS =
205
- T.let(
206
- :funding_instructions,
207
- Increase::ExportListParams::Category::TaggedSymbol
208
- )
199
+ # Export a CSV of fees. The time range must not include any fees that are part of an open fee statement.
200
+ FEE_CSV =
201
+ T.let(:fee_csv, Increase::ExportListParams::Category::TaggedSymbol)
209
202
 
210
203
  # A PDF of an Internal Revenue Service Form 1099-INT.
211
204
  FORM_1099_INT =
@@ -221,21 +214,28 @@ module Increase
221
214
  Increase::ExportListParams::Category::TaggedSymbol
222
215
  )
223
216
 
224
- # Export a CSV of fees. The time range must not include any fees that are part of an open fee statement.
225
- FEE_CSV =
226
- T.let(:fee_csv, Increase::ExportListParams::Category::TaggedSymbol)
217
+ # A PDF of funding instructions.
218
+ FUNDING_INSTRUCTIONS =
219
+ T.let(
220
+ :funding_instructions,
221
+ Increase::ExportListParams::Category::TaggedSymbol
222
+ )
227
223
 
228
- # A PDF of a voided check.
229
- VOIDED_CHECK =
224
+ # Export a CSV of all transactions for a given time range.
225
+ TRANSACTION_CSV =
230
226
  T.let(
231
- :voided_check,
227
+ :transaction_csv,
232
228
  Increase::ExportListParams::Category::TaggedSymbol
233
229
  )
234
230
 
235
- # Export a CSV of daily account balances with starting and ending balances for a given date range.
236
- DAILY_ACCOUNT_BALANCE_CSV =
231
+ # Export a CSV of vendors added to the third-party risk management dashboard.
232
+ VENDOR_CSV =
233
+ T.let(:vendor_csv, Increase::ExportListParams::Category::TaggedSymbol)
234
+
235
+ # A PDF of a voided check.
236
+ VOIDED_CHECK =
237
237
  T.let(
238
- :daily_account_balance_csv,
238
+ :voided_check,
239
239
  Increase::ExportListParams::Category::TaggedSymbol
240
240
  )
241
241
 
@@ -100,6 +100,10 @@ module Increase
100
100
  sig { returns(T.nilable(String)) }
101
101
  attr_accessor :instructing_agent_routing_number
102
102
 
103
+ # A free-form instruction for the receiving bank set by the sender.
104
+ sig { returns(T.nilable(String)) }
105
+ attr_accessor :instruction_for_creditor_agent
106
+
103
107
  # The sending bank's identifier for the wire transfer.
104
108
  sig { returns(T.nilable(String)) }
105
109
  attr_accessor :instruction_identification
@@ -167,6 +171,7 @@ module Increase
167
171
  end_to_end_identification: T.nilable(String),
168
172
  input_message_accountability_data: T.nilable(String),
169
173
  instructing_agent_routing_number: T.nilable(String),
174
+ instruction_for_creditor_agent: T.nilable(String),
170
175
  instruction_identification: T.nilable(String),
171
176
  purpose: T.nilable(String),
172
177
  reversal: T.nilable(Increase::InboundWireTransfer::Reversal::OrHash),
@@ -222,6 +227,8 @@ module Increase
222
227
  # The American Bankers' Association (ABA) routing number of the bank that sent the
223
228
  # wire.
224
229
  instructing_agent_routing_number:,
230
+ # A free-form instruction for the receiving bank set by the sender.
231
+ instruction_for_creditor_agent:,
225
232
  # The sending bank's identifier for the wire transfer.
226
233
  instruction_identification:,
227
234
  # The reason for the wire transfer, as set by the sender.
@@ -267,6 +274,7 @@ module Increase
267
274
  end_to_end_identification: T.nilable(String),
268
275
  input_message_accountability_data: T.nilable(String),
269
276
  instructing_agent_routing_number: T.nilable(String),
277
+ instruction_for_creditor_agent: T.nilable(String),
270
278
  instruction_identification: T.nilable(String),
271
279
  purpose: T.nilable(String),
272
280
  reversal: T.nilable(Increase::InboundWireTransfer::Reversal),
@@ -3075,6 +3075,13 @@ module Increase
3075
3075
  Increase::RealTimeDecision::CardAuthorization::Decline::Reason::TaggedSymbol
3076
3076
  )
3077
3077
 
3078
+ # Additional customer authentication is required to complete the transaction, such as 3DS.
3079
+ ADDITIONAL_CUSTOMER_AUTHENTICATION_REQUIRED =
3080
+ T.let(
3081
+ :additional_customer_authentication_required,
3082
+ Increase::RealTimeDecision::CardAuthorization::Decline::Reason::TaggedSymbol
3083
+ )
3084
+
3078
3085
  # The transaction was declined for another reason. The merchant may attempt to process the transaction again. This should be used sparingly.
3079
3086
  OTHER =
3080
3087
  T.let(
@@ -877,6 +877,13 @@ module Increase
877
877
  Increase::RealTimeDecisionActionParams::CardAuthorization::Decline::Reason::TaggedSymbol
878
878
  )
879
879
 
880
+ # Additional customer authentication is required to complete the transaction, such as 3DS.
881
+ ADDITIONAL_CUSTOMER_AUTHENTICATION_REQUIRED =
882
+ T.let(
883
+ :additional_customer_authentication_required,
884
+ Increase::RealTimeDecisionActionParams::CardAuthorization::Decline::Reason::TaggedSymbol
885
+ )
886
+
880
887
  # The transaction was declined for another reason. The merchant may attempt to process the transaction again. This should be used sparingly.
881
888
  OTHER =
882
889
  T.let(