@opexa/portal-sdk 0.34.4 → 0.34.6

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/dist/index.cjs CHANGED
@@ -586,9 +586,6 @@ var CREATE_GCASH_DIRECT_WEBPAY_DEPOSIT_MUTATION = gql`
586
586
  ... on WalletDoesNotExistError {
587
587
  __typename
588
588
  }
589
- ... on GCashDirectApiRequestError {
590
- __typename
591
- }
592
589
  }
593
590
  }
594
591
  `;
@@ -4242,7 +4239,7 @@ var DomainManager = class {
4242
4239
  ) || navigator.userAgent.includes("Mac") && "ontouchend" in window) && this.isNative;
4243
4240
  }
4244
4241
  get isAndroidApp() {
4245
- return /Android/i.test(navigator.userAgent) && (window.Capacitor?.isNativePlatform?.() || window.cordova !== undefined || /(wv|Version\/)/i.test(navigator.userAgent));
4242
+ return this.isNative && /Android/i.test(navigator.userAgent) && (window.Capacitor?.isNativePlatform?.() || window.cordova !== undefined || /(wv|Version\/)/i.test(navigator.userAgent));
4246
4243
  }
4247
4244
  };
4248
4245