@opexa/portal-sdk 0.39.3 → 0.39.5

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/README.md CHANGED
@@ -1365,6 +1365,7 @@ function Page() {
1365
1365
  | 'JDB'
1366
1366
  | 'BOOONGO'
1367
1367
  | 'HABANERO'
1368
+ | 'DIGITAIN'
1368
1369
  | 'RELAXGAMING'
1369
1370
  | 'DG'
1370
1371
  | 'E2E'
package/dist/index.cjs CHANGED
@@ -4601,7 +4601,7 @@ var DomainManager = class {
4601
4601
  const url = new URL(window.location.href);
4602
4602
  const map = {
4603
4603
  "crazywin.ph": "587374767622209",
4604
- "crazywin.asia": "587374767622209",
4604
+ "crazywin.asia": "702641112314597",
4605
4605
  "happybingo.ph": "617045164450475",
4606
4606
  "happybingo.games": "704042541995028",
4607
4607
  "happybingo.fun": "1209809170790877",
@@ -4619,9 +4619,14 @@ var DomainManager = class {
4619
4619
  return !!(window.Capacitor?.isNativePlatform?.() || window.cordova !== undefined);
4620
4620
  }
4621
4621
  get isIOSApp() {
4622
- return (["iPad Simulator", "iPhone Simulator", "iPod Simulator", "iPad", "iPhone", "iPod"].includes(
4623
- navigator.platform
4624
- ) || navigator.userAgent.includes("Mac") && "ontouchend" in window) && this.isNative;
4622
+ return ([
4623
+ "iPad Simulator",
4624
+ "iPhone Simulator",
4625
+ "iPod Simulator",
4626
+ "iPad",
4627
+ "iPhone",
4628
+ "iPod"
4629
+ ].includes(navigator.platform) || navigator.userAgent.includes("Mac") && "ontouchend" in window) && this.isNative;
4625
4630
  }
4626
4631
  get isAndroidApp() {
4627
4632
  return this.isNative && /Android/i.test(navigator.userAgent) && (window.Capacitor?.isNativePlatform?.() || window.cordova !== undefined || /(wv|Version\/)/i.test(navigator.userAgent));