@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 +1 -0
- package/dist/index.cjs +9 -4
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +9 -4
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
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": "
|
|
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 ([
|
|
4623
|
-
|
|
4624
|
-
|
|
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));
|