@miden-npm/angular 2.0.6 → 2.0.7

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.
@@ -501,6 +501,11 @@ const getBaseUrl = (mode, caller) => {
501
501
  ? 'https://sandbox-api.buzapay.com/payment-gateway-api'
502
502
  : 'https://sandbox-api.midencards.io/miden-web';
503
503
  }
504
+ else if (mode === 'production') {
505
+ return caller === 'buzapay'
506
+ ? 'https://merchant.buzapay.com/payment-gateway-api'
507
+ : 'https://sandbox-api.midencards.io/miden-web';
508
+ }
504
509
  return '';
505
510
  };
506
511