@bloonio/lokotro-pay 1.2.0 → 1.2.1
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.
|
@@ -3833,6 +3833,15 @@ class LokotroPaymentService {
|
|
|
3833
3833
|
if (body.mastercardPaymentMethod) {
|
|
3834
3834
|
request['mastercard_payment_method'] = body.mastercardPaymentMethod;
|
|
3835
3835
|
}
|
|
3836
|
+
if (body.transactionalCurrency) {
|
|
3837
|
+
request['transactional_currency'] = body.transactionalCurrency.toLowerCase();
|
|
3838
|
+
}
|
|
3839
|
+
if (body.nativePayToken) {
|
|
3840
|
+
request['native_pay_token'] = body.nativePayToken;
|
|
3841
|
+
}
|
|
3842
|
+
if (body.nativePayTokenType) {
|
|
3843
|
+
request['native_pay_token_type'] = body.nativePayTokenType;
|
|
3844
|
+
}
|
|
3836
3845
|
if (body.metadata) {
|
|
3837
3846
|
request['metadata'] = body.metadata;
|
|
3838
3847
|
}
|