@bloonio/lokotro-pay 1.2.0 → 1.2.2

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.
@@ -17,8 +17,8 @@ import { HttpHeaders, HttpErrorResponse } from '@angular/common/http';
17
17
  */
18
18
  const LOKOTRO_DEV_ENV = {
19
19
  environment: 'development',
20
- apiBaseUrl: 'http://10.37.31.218:6495',
21
- // apiBaseUrl: 'https://dev.app.api.gtwy.lokotro.com',
20
+ // apiBaseUrl: 'http://10.37.31.218:6495',
21
+ apiBaseUrl: 'https://dev.app.api.gtwy.lokotro.com',
22
22
  paymentApiVersion: 'v1',
23
23
  debugMode: true,
24
24
  logLevel: 'debug',
@@ -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
  }