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.
- checksums.yaml +4 -4
- data/README.md +1 -1
- 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 +1174 -2
- data/lib/increase/models/check_transfer.rb +15 -9
- data/lib/increase/models/entity.rb +18 -0
- data/lib/increase/models/entity_beneficial_owner.rb +3 -0
- data/lib/increase/models/entity_create_params.rb +3 -0
- data/lib/increase/models/transaction.rb +1174 -2
- 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/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 +5276 -2964
- data/rbi/increase/models/check_transfer.rbi +15 -9
- data/rbi/increase/models/entity.rbi +42 -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/transaction.rbi +4647 -2335
- 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/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 +1186 -0
- data/sig/increase/models/entity.rbs +24 -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/transaction.rbs +1186 -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
|
@@ -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
|
|
data/lib/increase/version.rb
CHANGED
|
@@ -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(
|