@swirepay-developer/swirepay-payment-sdk 1.0.1 → 1.0.4

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@swirepay-developer/swirepay-payment-sdk",
3
- "version": "1.0.1",
3
+ "version": "1.0.4",
4
4
  "description": "swirepay sdk for apple and google pay",
5
5
  "main": "swirepayPaypalWalletPayment.js",
6
6
  "scripts": {
@@ -204,7 +204,7 @@ class PaypalPaymentMethod {
204
204
  }
205
205
  }
206
206
 
207
- class PaypalGooglePay extends PaypalPaymentMethod {
207
+ export class PaypalGooglePay extends PaypalPaymentMethod {
208
208
  static google_pay_sdk_url = "https://pay.google.com/gp/p/js/pay.js";
209
209
 
210
210
  constructor(config) {
@@ -487,7 +487,7 @@ class PaypalGooglePay extends PaypalPaymentMethod {
487
487
  }
488
488
  }
489
489
 
490
- class PaypalApplePay extends PaypalPaymentMethod {
490
+ export class PaypalApplePay extends PaypalPaymentMethod {
491
491
  constructor(config) {
492
492
  super({ ...config, namespace: 'paypalApple' });
493
493
  this.isApplePayEligible = false;