increase 1.352.0 → 1.353.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 (33) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +1 -1
  3. data/lib/increase/models/beneficial_owner_create_params.rb +3 -0
  4. data/lib/increase/models/beneficial_owner_update_params.rb +3 -0
  5. data/lib/increase/models/card_payment.rb +1174 -2
  6. data/lib/increase/models/check_transfer.rb +15 -9
  7. data/lib/increase/models/entity.rb +18 -0
  8. data/lib/increase/models/entity_beneficial_owner.rb +3 -0
  9. data/lib/increase/models/entity_create_params.rb +3 -0
  10. data/lib/increase/models/transaction.rb +1174 -2
  11. data/lib/increase/models/wire_drawdown_request.rb +3 -3
  12. data/lib/increase/models/wire_drawdown_request_list_params.rb +3 -3
  13. data/lib/increase/version.rb +1 -1
  14. data/rbi/increase/models/beneficial_owner_create_params.rbi +7 -0
  15. data/rbi/increase/models/beneficial_owner_update_params.rbi +7 -0
  16. data/rbi/increase/models/card_payment.rbi +5276 -2964
  17. data/rbi/increase/models/check_transfer.rbi +15 -9
  18. data/rbi/increase/models/entity.rbi +42 -0
  19. data/rbi/increase/models/entity_beneficial_owner.rbi +7 -0
  20. data/rbi/increase/models/entity_create_params.rbi +7 -0
  21. data/rbi/increase/models/transaction.rbi +4647 -2335
  22. data/rbi/increase/models/wire_drawdown_request.rbi +4 -4
  23. data/rbi/increase/models/wire_drawdown_request_list_params.rbi +6 -6
  24. data/sig/increase/models/beneficial_owner_create_params.rbs +4 -0
  25. data/sig/increase/models/beneficial_owner_update_params.rbs +4 -0
  26. data/sig/increase/models/card_payment.rbs +1186 -0
  27. data/sig/increase/models/entity.rbs +24 -0
  28. data/sig/increase/models/entity_beneficial_owner.rbs +4 -0
  29. data/sig/increase/models/entity_create_params.rbs +4 -0
  30. data/sig/increase/models/transaction.rbs +1186 -0
  31. data/sig/increase/models/wire_drawdown_request.rbs +4 -4
  32. data/sig/increase/models/wire_drawdown_request_list_params.rbs +4 -4
  33. metadata +2 -2
@@ -343,12 +343,12 @@ module Increase
343
343
  # The drawdown request is queued to be submitted to Fedwire.
344
344
  PENDING_SUBMISSION = :pending_submission
345
345
 
346
- # The drawdown request has been fulfilled by the recipient.
347
- FULFILLED = :fulfilled
348
-
349
346
  # The drawdown request has been sent and the recipient should respond in some way.
350
347
  PENDING_RESPONSE = :pending_response
351
348
 
349
+ # The drawdown request has been fulfilled by the recipient.
350
+ FULFILLED = :fulfilled
351
+
352
352
  # The drawdown request has been refused by the recipient.
353
353
  REFUSED = :refused
354
354
 
@@ -80,12 +80,12 @@ module Increase
80
80
  # The drawdown request is queued to be submitted to Fedwire.
81
81
  PENDING_SUBMISSION = :pending_submission
82
82
 
83
- # The drawdown request has been fulfilled by the recipient.
84
- FULFILLED = :fulfilled
85
-
86
83
  # The drawdown request has been sent and the recipient should respond in some way.
87
84
  PENDING_RESPONSE = :pending_response
88
85
 
86
+ # The drawdown request has been fulfilled by the recipient.
87
+ FULFILLED = :fulfilled
88
+
89
89
  # The drawdown request has been refused by the recipient.
90
90
  REFUSED = :refused
91
91
 
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Increase
4
- VERSION = "1.352.0"
4
+ VERSION = "1.353.0"
5
5
  end
@@ -443,6 +443,13 @@ module Increase
443
443
  Increase::BeneficialOwnerCreateParams::Individual::Identification::Method::TaggedSymbol
444
444
  )
445
445
 
446
+ # The last four digits of a social security number.
447
+ SOCIAL_SECURITY_NUMBER_LAST4 =
448
+ T.let(
449
+ :social_security_number_last4,
450
+ Increase::BeneficialOwnerCreateParams::Individual::Identification::Method::TaggedSymbol
451
+ )
452
+
446
453
  # An individual taxpayer identification number (ITIN).
447
454
  INDIVIDUAL_TAXPAYER_IDENTIFICATION_NUMBER =
448
455
  T.let(
@@ -401,6 +401,13 @@ module Increase
401
401
  Increase::BeneficialOwnerUpdateParams::Identification::Method::TaggedSymbol
402
402
  )
403
403
 
404
+ # The last four digits of a social security number.
405
+ SOCIAL_SECURITY_NUMBER_LAST4 =
406
+ T.let(
407
+ :social_security_number_last4,
408
+ Increase::BeneficialOwnerUpdateParams::Identification::Method::TaggedSymbol
409
+ )
410
+
404
411
  # An individual taxpayer identification number (ITIN).
405
412
  INDIVIDUAL_TAXPAYER_IDENTIFICATION_NUMBER =
406
413
  T.let(