webtonative 1.0.48 → 1.0.50
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/MediaPlayer/index.js +7 -0
- package/index.js +2 -2
- package/package.json +1 -1
- package/webtonative.min.js +1 -1
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
"use strict";Object.defineProperty(exports,"__esModule",{value:!0}),exports.stopMedia=exports.playMedia=exports.pauseMedia=void 0;var _utills=require("../utills"),playMedia=function(){var a=0<arguments.length&&arguments[0]!==void 0?arguments[0]:{},b=a.url,c=a.imageUrl,d=void 0===c?"https://images.freeimages.com/images/large-previews/3b2/prague-conference-center-1056491.jpg":c;["ANDROID_APP","IOS_APP"].includes(_utills.platform)&&"ANDROID_APP"===_utills.platform&&_utills.webToNative.playMedia(JSON.stringify({url:b,imageUrl:d}))};exports.playMedia=playMedia;/**
|
|
2
|
+
*
|
|
3
|
+
*
|
|
4
|
+
*/var pauseMedia=function(){0<arguments.length&&arguments[0]!==void 0?arguments[0]:{};["ANDROID_APP","IOS_APP"].includes(_utills.platform)&&"ANDROID_APP"===_utills.platform&&_utills.webToNative.pausePlaying()};/**
|
|
5
|
+
*
|
|
6
|
+
*
|
|
7
|
+
*/exports.pauseMedia=pauseMedia;var stopMedia=function(){0<arguments.length&&arguments[0]!==void 0?arguments[0]:{};["ANDROID_APP","IOS_APP"].includes(_utills.platform)&&"ANDROID_APP"===_utills.platform&&_utills.webToNative.stopPlaying()};exports.stopMedia=stopMedia;
|
package/index.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
"use strict";Object.defineProperty(exports,"__esModule",{value:!0}),exports.isIosApp=exports.isDeviceGPSEnabled=exports.isAndroidApp=exports.hideSplashScreen=exports.enablePullToRefresh=exports.downloadFile=exports.deviceInfo=exports["default"]=exports.clearAppCache=void 0,Object.defineProperty(exports,"isNativeApp",{enumerable:!0,get:function get(){return _utills.isNativeApp}}),exports.openUrlInBrowser=void 0,Object.defineProperty(exports,"platform",{enumerable:!0,get:function get(){return _utills.platform}}),exports.statusBar=exports.showInAppReview=exports.shareLink=exports.shareFile=void 0;var _utills=require("./utills"),isAndroidApp="ANDROID_APP"===_utills.platform;exports.isAndroidApp=isAndroidApp;var isIosApp="IOS_APP"===_utills.platform;/**
|
|
1
|
+
"use strict";Object.defineProperty(exports,"__esModule",{value:!0}),exports.isIosApp=exports.isDeviceGPSEnabled=exports.isAndroidApp=exports.hideSplashScreen=exports.enablePullToRefresh=exports.downloadFile=exports.deviceInfo=exports["default"]=exports.closeApp=exports.clearAppCache=void 0,Object.defineProperty(exports,"isNativeApp",{enumerable:!0,get:function get(){return _utills.isNativeApp}}),exports.openUrlInBrowser=void 0,Object.defineProperty(exports,"platform",{enumerable:!0,get:function get(){return _utills.platform}}),exports.statusBar=exports.showInAppReview=exports.shareLink=exports.shareFile=void 0;var _utills=require("./utills"),isAndroidApp="ANDROID_APP"===_utills.platform;exports.isAndroidApp=isAndroidApp;var isIosApp="IOS_APP"===_utills.platform;/**
|
|
2
2
|
* This function hides splash screen
|
|
3
3
|
* @example wtn.hideSplashScreen()
|
|
4
|
-
*/exports.isIosApp=isIosApp;var hideSplashScreen=function(){_utills.isNativeApp&&_utills.webToNative.hideSplashScreen()};exports.hideSplashScreen=hideSplashScreen;var statusBar=function(a){_utills.isNativeApp&&(isAndroidApp?_utills.webToNative.statusBar(JSON.stringify(a)):isIosApp&&_utills.webToNativeIos.postMessage({action:"statusBar",color:a.color,style:a.style}))};exports.statusBar=statusBar;var downloadFile=function(a){_utills.isNativeApp&&(isAndroidApp||isIosApp&&_utills.webToNativeIos.postMessage({action:"downloadFile",downloadUrl:a}))};exports.downloadFile=downloadFile;var deviceInfo=function(){return new Promise(function(a,b){(0,_utills.registerCb)(function(c){c?a(c):b({err:"Error getting device info"})},{key:"deviceInfo"}),"ANDROID_APP"===_utills.platform?_utills.webToNative.getDeviceInfo():"IOS_APP"===_utills.platform?_utills.webToNativeIos.postMessage({action:"deviceInfo"}):b("This function will work in Native App Powered By WebToNative")})};exports.deviceInfo=deviceInfo;var showInAppReview=function(){_utills.isNativeApp&&_utills.webToNative.showInAppReview()};exports.showInAppReview=showInAppReview;var isDeviceGPSEnabled=function(){var a=0<arguments.length&&arguments[0]!==void 0?arguments[0]:{},b=a.callback;["ANDROID_APP","IOS_APP"].includes(_utills.platform)&&((0,_utills.registerCb)(function(a){var c=a.type;"isDeviceGPSEnabled"===c&&b&&b(a)}),"ANDROID_APP"===_utills.platform&&_utills.webToNative.isLocationServiceEnabled())};exports.isDeviceGPSEnabled=isDeviceGPSEnabled;var shareLink=function(a){var b=a.url,c=void 0===b?"":b;if(c)isAndroidApp&&_utills.webToNative.openShareIntent(c),isIosApp&&_utills.webToNativeIos.postMessage({action:"share",url:c});else throw"url is mandatory"};exports.shareLink=shareLink;var openUrlInBrowser=function(){var a=0<arguments.length&&arguments[0]!==void 0?arguments[0]:"";if(a)isAndroidApp&&_utills.webToNative.openUrlInBrowser(a);else throw"url is mandatory"};exports.openUrlInBrowser=openUrlInBrowser;var enablePullToRefresh=function(a){isAndroidApp&&_utills.webToNative.enableSwipeRefresh(a)};exports.enablePullToRefresh=enablePullToRefresh;var clearAppCache=function(a){isAndroidApp&&_utills.webToNative.clearWebViewCache(JSON.stringify({reload:a}))};exports.clearAppCache=clearAppCache;var shareFile=function(){var a=0<arguments.length&&arguments[0]!==void 0?arguments[0]:null,b=1<arguments.length&&arguments[1]!==void 0?arguments[1]:null;isAndroidApp&&_utills.webToNative.shareFile(a,b)};exports.shareFile=shareFile;var _default={isAndroidApp:isAndroidApp,isIosApp:isIosApp,hideSplashScreen:hideSplashScreen,statusBar:statusBar,deviceInfo:deviceInfo,showInAppReview:showInAppReview,shareLink:shareLink,platform:_utills.platform,isNativeApp:_utills.isNativeApp,isDeviceGPSEnabled:isDeviceGPSEnabled,openUrlInBrowser:openUrlInBrowser,enablePullToRefresh:enablePullToRefresh,shareFile:shareFile,clearAppCache:clearAppCache};exports["default"]=_default;
|
|
4
|
+
*/exports.isIosApp=isIosApp;var hideSplashScreen=function(){_utills.isNativeApp&&_utills.webToNative.hideSplashScreen()};exports.hideSplashScreen=hideSplashScreen;var statusBar=function(a){_utills.isNativeApp&&(isAndroidApp?_utills.webToNative.statusBar(JSON.stringify(a)):isIosApp&&_utills.webToNativeIos.postMessage({action:"statusBar",color:a.color,style:a.style}))};exports.statusBar=statusBar;var downloadFile=function(a){_utills.isNativeApp&&(isAndroidApp||isIosApp&&_utills.webToNativeIos.postMessage({action:"downloadFile",downloadUrl:a}))};exports.downloadFile=downloadFile;var deviceInfo=function(){return new Promise(function(a,b){(0,_utills.registerCb)(function(c){c?a(c):b({err:"Error getting device info"})},{key:"deviceInfo"}),"ANDROID_APP"===_utills.platform?_utills.webToNative.getDeviceInfo():"IOS_APP"===_utills.platform?_utills.webToNativeIos.postMessage({action:"deviceInfo"}):b("This function will work in Native App Powered By WebToNative")})};exports.deviceInfo=deviceInfo;var showInAppReview=function(){_utills.isNativeApp&&_utills.webToNative.showInAppReview()};exports.showInAppReview=showInAppReview;var isDeviceGPSEnabled=function(){var a=0<arguments.length&&arguments[0]!==void 0?arguments[0]:{},b=a.callback;["ANDROID_APP","IOS_APP"].includes(_utills.platform)&&((0,_utills.registerCb)(function(a){var c=a.type;"isDeviceGPSEnabled"===c&&b&&b(a)}),"ANDROID_APP"===_utills.platform&&_utills.webToNative.isLocationServiceEnabled())};exports.isDeviceGPSEnabled=isDeviceGPSEnabled;var shareLink=function(a){var b=a.url,c=void 0===b?"":b;if(c)isAndroidApp&&_utills.webToNative.openShareIntent(c),isIosApp&&_utills.webToNativeIos.postMessage({action:"share",url:c});else throw"url is mandatory"};exports.shareLink=shareLink;var openUrlInBrowser=function(){var a=0<arguments.length&&arguments[0]!==void 0?arguments[0]:"";if(a)isAndroidApp&&_utills.webToNative.openUrlInBrowser(a);else throw"url is mandatory"};exports.openUrlInBrowser=openUrlInBrowser;var enablePullToRefresh=function(a){isAndroidApp&&_utills.webToNative.enableSwipeRefresh(a)};exports.enablePullToRefresh=enablePullToRefresh;var clearAppCache=function(a){isAndroidApp&&_utills.webToNative.clearWebViewCache(JSON.stringify({reload:a}))};exports.clearAppCache=clearAppCache;var shareFile=function(){var a=0<arguments.length&&arguments[0]!==void 0?arguments[0]:null,b=1<arguments.length&&arguments[1]!==void 0?arguments[1]:null;isAndroidApp&&_utills.webToNative.shareFile(a,b)};exports.shareFile=shareFile;var closeApp=function(){isAndroidApp&&_utills.webToNative.closeApp()};exports.closeApp=closeApp;var _default={isAndroidApp:isAndroidApp,isIosApp:isIosApp,hideSplashScreen:hideSplashScreen,statusBar:statusBar,deviceInfo:deviceInfo,showInAppReview:showInAppReview,shareLink:shareLink,platform:_utills.platform,isNativeApp:_utills.isNativeApp,isDeviceGPSEnabled:isDeviceGPSEnabled,openUrlInBrowser:openUrlInBrowser,enablePullToRefresh:enablePullToRefresh,shareFile:shareFile,clearAppCache:clearAppCache,closeApp:closeApp};exports["default"]=_default;
|
package/package.json
CHANGED
package/webtonative.min.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
!function(){"use strict";var e={d:function(n,t){for(var o in t)e.o(t,o)&&!e.o(n,o)&&Object.defineProperty(n,o,{enumerable:!0,get:t[o]})},o:function(e,n){return Object.prototype.hasOwnProperty.call(e,n)},r:function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})}},n={};e.r(n),e.d(n,{clearAppCache:function(){return H},default:function(){return q},deviceInfo:function(){return B},downloadFile:function(){return C},enablePullToRefresh:function(){return V},hideSplashScreen:function(){return E},isAndroidApp:function(){return k},isDeviceGPSEnabled:function(){return U},isIosApp:function(){return M},isNativeApp:function(){return R},openUrlInBrowser:function(){return J},platform:function(){return N},shareFile:function(){return x},shareLink:function(){return L},showInAppReview:function(){return W},statusBar:function(){return F}});var t={};e.r(t),e.d(t,{addTrigger:function(){return z},addTriggers:function(){return Q},getPlayerId:function(){return G},getTriggerValue:function(){return $},getTriggers:function(){return ee},logoutEmail:function(){return oe},logoutSMSNumber:function(){return ie},removeExternalUserId:function(){return j},removeTrigger:function(){return Z},removeTriggers:function(){return Y},setEmail:function(){return ne},setExternalUserId:function(){return K},setSMSNumber:function(){return te},setTags:function(){return X}});var o={};e.r(o),e.d(o,{BarcodeScan:function(){return ue},Format:function(){return se},Types:function(){return ce}});var i={};e.r(i),e.d(i,{bannerAd:function(){return le},fullScreenAd:function(){return de},rewardsAd:function(){return fe}});var r={};e.r(r),e.d(r,{logEvent:function(){return Oe},setCustomerUserId:function(){return ge}});var a={};e.r(a),e.d(a,{send:function(){return De},sendPurchase:function(){return pe}});var s={};e.r(s),e.d(s,{hide:function(){return _e},show:function(){return Se}});var c={};e.r(c),e.d(c,{getAll:function(){return Ne},getPermissionStatus:function(){return ve}});var u={};e.r(u),e.d(u,{start:function(){return Re},stop:function(){return we}});var P={};e.r(P),e.d(P,{keepScreenNormal:function(){return Te},keepScreenOn:function(){return ye}});var A={};e.r(A),e.d(A,{get:function(){return be},set:function(){return he}});var l={};e.r(l),e.d(l,{prompt:function(){return me}});var d={};e.r(d),e.d(d,{checkStatus:function(){return ke},deleteSecret:function(){return Ee},saveSecret:function(){return Me},show:function(){return Fe}});var f={};e.r(f),e.d(f,{request:function(){return Ce},status:function(){return Be}});var I={};e.r(I),e.d(I,{logEvent:function(){return Ve},logScreen:function(){return He},setCollection:function(){return We},setDefaultEventParameters:function(){return Je},setUserId:function(){return Ue},setUserProperty:function(){return Le}});var g={};e.r(g),e.d(g,{events:function(){return I}});var O={};e.r(O),e.d(O,{getFCMToken:function(){return Ge},subscribe:function(){return xe},unsubscribe:function(){return qe}});var D={};e.r(D),e.d(D,{Analytics:function(){return I},Messaging:function(){return O}});var p={};e.r(p),e.d(p,{trigger:function(){return Ke}});var _="undefined"!=typeof window,S=_&&window.WebToNativeInterface||{},v=_&&window.webkit&&window.webkit.messageHandlers&&window.webkit.messageHandlers.webToNativeInterface,N=S.getAndroidVersion?"ANDROID_APP":v?"IOS_APP":"WEBSITE",R=_&&"WEBSITE"!==N,w={},y=1,T=null;R&&(S.androidCBHook=function(e){var n=e;try{n=JSON.parse(e)}catch(e){console.log(e)}for(var t in n.type,w){var o=w[t],i=o.cb,r=o.ignoreDelete,a=void 0!==r&&r;n&&n.reqType?t==n.reqType&&(i(n),a||delete w[t]):(i(n),a||delete w[t])}},window.iOSAdMobCBHook=S.androidAdMobCBHook=function(e){var n=JSON.parse(e);T&&T(n)},window.iosCBHook=function(e){var n=e;try{n=JSON.parse(e)}catch(e){console.log(e)}for(var t in w){var o=w[t],i=o.cb,r=o.ignoreDelete,a=void 0!==r&&r;n&&n.reqType?t==n.reqType&&(i(n),a||delete w[t]):(i(n),a||delete w[t])}});var b=function(e,n){"function"==typeof e&&(n&&n.key?w[n.key]={cb:e,ignoreDelete:!!n.ignoreDelete}:(w[y]={cb:e,ignoreDelete:!(!n||!n.ignoreDelete)},y+=1))},h=function(e){"function"==typeof e&&(T=e)},m=function(){T&&(T=null)},k="ANDROID_APP"===N,M="IOS_APP"===N,E=function(){R&&S.hideSplashScreen()},F=function(e){R&&(k?S.statusBar(JSON.stringify(e)):M&&v.postMessage({action:"statusBar",color:e.color,style:e.style}))},C=function(e){R&&(k||M&&v.postMessage({action:"downloadFile",downloadUrl:e}))},B=function(){return new Promise((function(e,n){b((function(t){t?e(t):n({err:"Error getting device info"})}),{key:"deviceInfo"}),"ANDROID_APP"===N?S.getDeviceInfo():"IOS_APP"===N?v.postMessage({action:"deviceInfo"}):n("This function will work in Native App Powered By WebToNative")}))},W=function(){R&&S.showInAppReview()},U=function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},n=e.callback;["ANDROID_APP","IOS_APP"].includes(N)&&(b((function(e){"isDeviceGPSEnabled"===e.type&&n&&n(e)})),"ANDROID_APP"===N&&S.isLocationServiceEnabled())},L=function(e){var n=e.url,t=void 0===n?"":n;if(!t)throw"url is mandatory";k&&S.openShareIntent(t),M&&v.postMessage({action:"share",url:t})},J=function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"";if(!e)throw"url is mandatory";k&&S.openUrlInBrowser(e)},V=function(e){k&&S.enableSwipeRefresh(e)},H=function(e){k&&S.clearWebViewCache(JSON.stringify({reload:e}))},x=function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:null,n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:null;k&&S.shareFile(e,n)},q={isAndroidApp:k,isIosApp:M,hideSplashScreen:E,statusBar:F,deviceInfo:B,showInAppReview:W,shareLink:L,platform:N,isNativeApp:R,isDeviceGPSEnabled:U,openUrlInBrowser:J,enablePullToRefresh:V,shareFile:x,clearAppCache:H},G=function(){return new Promise((function(e,n){b((function(t){t.isSuccess?e(t.playerId):n(t)}),{key:"getPlayerId"}),"ANDROID_APP"===N?S.getOneSignalId():"IOS_APP"===N?v.postMessage({action:"getPlayerId"}):n("This function will work in Native App Powered By WebToNative")}))},K=function(e){if(!e)throw"userId is required";if("ANDROID_APP"===N)return R&&S.setExternalUserId(e);"IOS_APP"===N&&v.postMessage({action:"setExternalUserId",userId:e})},j=function(){if("ANDROID_APP"===N)return R&&S.removeExternalUserId();"IOS_APP"===N&&v.postMessage({action:"removeExternalUserId"})},X=function(e){var n=e.tags;if(n){if("ANDROID_APP"===N)return R&&S.setUserTags(JSON.stringify(n));"IOS_APP"===N&&v.postMessage({action:"setUserTags",tags:n})}},z=function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},n=e.key,t=e.value;"ANDROID_APP"===N?S.addTrigger(JSON.stringify({key:n,value:t})):"IOS_APP"===N&&v.postMessage({action:"addTrigger",key:n,value:t})},Q=function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},n=e.triggers;"ANDROID_APP"===N?S.addTriggers(JSON.stringify({triggers:n})):"IOS_APP"===N&&v.postMessage({action:"addTriggers",triggers:n})},Z=function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},n=e.key;"ANDROID_APP"===N?S.removeTriggerForKey(n):"IOS_APP"===N&&v.postMessage({action:"removeTrigger",key:n})},Y=function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},n=e.keys;"ANDROID_APP"===N?S.removeTriggersForKeys(JSON.stringify({keys:n})):"IOS_APP"===N&&v.postMessage({action:"removeTriggers",keys:n})},$=function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},n=e.key,t=e.callback;["ANDROID_APP","IOS_APP"].includes(N)&&(b((function(e){"getTriggerValue"===e.type&&t&&t(e)})),"ANDROID_APP"===N?S.getTriggerValueForKey(n):"IOS_APP"===N&&v.postMessage({action:"getTriggerValue",key:n}))},ee=function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},n=e.callback;["ANDROID_APP","IOS_APP"].includes(N)&&(b((function(e){"getTriggers"===e.type&&n&&n(e)})),"ANDROID_APP"===N?S.getTriggers():"IOS_APP"===N&&v.postMessage({action:"getTriggers"}))},ne=function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},n=e.emailId;["ANDROID_APP","IOS_APP"].includes(N)&&"ANDROID_APP"===N&&S.setEmail(n)},te=function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},n=e.smsNumber;["ANDROID_APP","IOS_APP"].includes(N)&&"ANDROID_APP"===N&&S.setSMSNumber(n)},oe=function(){["ANDROID_APP","IOS_APP"].includes(N)&&"ANDROID_APP"===N&&S.logoutEmail()},ie=function(){["ANDROID_APP","IOS_APP"].includes(N)&&"ANDROID_APP"===N&&S.logoutSMSNumber()},re=void 0,ae=null,se={UNKNOWN:-1,ALL_FORMATS:0,CODE_128:1,CODE_39:2,CODE_93:4,CODABAR:8,DATA_MATRIX:16,EAN_13:32,EAN_8:64,ITF:128,QR_CODE:256,UPC_A:512,UPC_E:1024,PDF417:2048,AZTEC:4096},ce={UNKNOWN:0,CONTACT_INFO:1,EMAIL:2,ISBN:3,PHONE:4,PRODUCT:5,SMS:6,TEXT:7,URL:8,WIFI:9,GEO:10,CALENDAR_EVENT:11,DRIVER_LICENSE:12},ue=function(e){if(["ANDROID_APP","IOS_APP"].includes(N)){var n=e.onBarcodeSearch,t=e.format;b((function(e){var t=e.type,o=e.value;"BARCODE_SCAN"===t&&n&&n(o)})),"ANDROID_APP"===N&&S.startScanner(JSON.stringify({formats:t?[t]:[]})),"IOS_APP"===N&&v.postMessage({action:"barcodeScan",barcodeFormat:String(t||se.ALL_FORMATS)})}},Pe=void 0,Ae=null,le=function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};if(["ANDROID_APP","IOS_APP"].includes(N))return"IOS_APP"===N&&v.postMessage({action:"showBannerAd",adId:e.adId||""}),"ANDROID_APP"===N&&S.showBannerAd(JSON.stringify(e)),Pe},de=function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};if(["ANDROID_APP","IOS_APP"].includes(N)){var n=e.fullScreenAdCallback;return h((function(e){var n=e.status;Ae&&Ae(e),"adDismissed"===n&&(Ae=null),["adDismissed","adLoadError","adError"].indexOf(n)>-1&&m()})),"IOS_APP"===N&&v.postMessage({action:"showFullScreenAd",adId:e.adId||""}),"ANDROID_APP"===N&&S.showFullScreenAd(JSON.stringify(e)),"function"==typeof n&&(Ae=n),Pe}},fe=function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};if(["ANDROID_APP","IOS_APP"].includes(N)){var n=e.rewardsAdCallback;return h((function(e){var n=e.status;Ae&&Ae(e),"adDismissed"===n&&(Ae=null),["adDismissed","adLoadError","adError"].indexOf(n)>-1&&m()})),"IOS_APP"===N&&v.postMessage({action:"showRewardAd",adId:e.adId||""}),"ANDROID_APP"===N&&S.showRewardsAd(JSON.stringify(e)),"function"==typeof n&&(Ae=n),Pe}},Ie={facebook:{login:function(e){if(["ANDROID_APP","IOS_APP"].includes(N)){var n=e.callback,t=e.scope;b((function(e){"fbLoginToken"===e.type&&n&&n(e)})),"ANDROID_APP"===N&&S.loginWithFacebook(),"IOS_APP"===N&&v.postMessage({action:"fbSignIn",scope:t})}},logout:function(e){if(["ANDROID_APP","IOS_APP"].includes(N)){var n=e.callback,t=e.scope;b((function(e){"fbLogOut"===e.type&&n&&n(e)})),"ANDROID_APP"===N&&S.logoutWithFacebook(),"IOS_APP"===N&&v.postMessage({action:"fbSignOut",scope:t})}}},google:{login:function(e){if(["ANDROID_APP","IOS_APP"].includes(N)){var n=e.callback,t=e.scope;b((function(e){"googleLoginToken"===e.type&&n&&n(e)})),"ANDROID_APP"===N&&S.signInWithGoogle(),"IOS_APP"===N&&v.postMessage({action:"googleSignIn",scope:t})}},logout:function(e){if(["ANDROID_APP","IOS_APP"].includes(N)){var n=e.callback,t=e.scope;b((function(e){"googleLogOut"===e.type&&n&&n(e)})),"ANDROID_APP"===N&&S.signOutWithGoogle(),"IOS_APP"===N&&v.postMessage({action:"googleSignOut",scope:t})}}},apple:{login:function(e){if(["ANDROID_APP","IOS_APP"].includes(N)){var n=e.callback,t=e.scope;b((function(e){"appleLoginToken"===e.type&&n&&n(e)})),"IOS_APP"===N&&v.postMessage({action:"appleSignIn",scope:t})}}}},ge=function(e){["ANDROID_APP","IOS_APP"].includes(N)&&("ANDROID_APP"===N&&S.setAppsFlyerUserId(e),"IOS_APP"===N&&v.postMessage({action:"setAppsFlyerUserId",userId:e}))},Oe=function(e,n){["ANDROID_APP","IOS_APP"].includes(N)&&("ANDROID_APP"===N&&S.addEventToAppsFlyer(e,JSON.stringify(n)),"IOS_APP"===N&&v.postMessage({action:"addEventToAppsFlyer",eventName:e,eventValues:n}))},De=function(e){if(["ANDROID_APP","IOS_APP"].includes(N)){var n=e.event,t=e.valueToSum,o=e.parameters;"ANDROID_APP"===N&&S.addFbEvents(n,o),"IOS_APP"===N&&v.postMessage({action:"sendFBEvent",eventName:n,valueToSum:t,parameters:o})}},pe=function(e){if(["ANDROID_APP","IOS_APP"].includes(N)){var n=e.amount,t=e.currency,o=e.parameters;"ANDROID_APP"===N&&S.addFbPurchaseEvent(n,t,o),"IOS_APP"===N&&v.postMessage({action:"sendFBPurchaseEvent",currency:t,amount:n,parameters:o})}},_e=function(){["ANDROID_APP","IOS_APP"].includes(N)&&("ANDROID_APP"===N&&S.showHideStickyFooter(!1),"IOS_APP"===N&&v.postMessage({action:"showHideStickyFooter",show:!1}))},Se=function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},n=e.key;["ANDROID_APP","IOS_APP"].includes(N)&&("ANDROID_APP"===N&&S.showHideStickyFooter(!0),"IOS_APP"===N&&v.postMessage({action:"showHideStickyFooter",show:!0,key:n}))},ve=function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},n=e.callback;["ANDROID_APP","IOS_APP"].includes(N)&&(b((function(e){console.log(e),"contactPermissionStatus"===e.type&&n&&n(e)})),"IOS_APP"===N&&v.postMessage({action:"askUserForContactPermission"}))},Ne=function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},n=e.callback;["ANDROID_APP","IOS_APP"].includes(N)&&(b((function(e){var t=e.type;console.log(e),"contactDetails"===t&&n&&n(e)})),"IOS_APP"===N&&v.postMessage({action:"getUserContactDetails"}))},Re=function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};if(["ANDROID_APP","IOS_APP"].includes(N)){var n=e.data,t=e.callback,o=e.backgroundIndicator,i=void 0!==o&&o,r=e.pauseAutomatically,a=void 0===r||r,s=e.distanceFilter,c=void 0===s?0:s,u=e.desiredAccuracy,P=void 0===u?"best":u,A=e.activityType,l=void 0===A?"other":A,d=e.apiUrl,f=e.timeout;b((function(e){"LOCATION_UPDATE"===e.type&&t&&t(e)}),{key:"LOCATION_UPDATE",ignoreDelete:!0}),"IOS_APP"===N&&v.postMessage({action:"startLocation",data:n,backgroundIndicator:i,pauseAutomatically:a,distanceFilter:c,desiredAccuracy:P,activityType:l,apiUrl:d,timeout:f}),"ANDROID_APP"===N&&S.startTrackingLocation(JSON.stringify({action:"startLocation",data:n,interval:f,callback:t,apiUrl:d,displacement:c}))}},we=function(){["ANDROID_APP","IOS_APP"].includes(N)&&(delete w["LOCATION_UPDATE"],"IOS_APP"===N&&v.postMessage({action:"stopLocation"}),"ANDROID_APP"===N&&S.stopTrackingLocation())},ye=function(){["ANDROID_APP","IOS_APP"].includes(N)&&("IOS_APP"===N&&v.postMessage({action:"keepScreenOn",flag:!0}),"ANDROID_APP"===N&&S.keepScreenOn())},Te=function(){["ANDROID_APP","IOS_APP"].includes(N)&&("IOS_APP"===N&&v.postMessage({action:"keepScreenOn",flag:!1}),"ANDROID_APP"===N&&S.keepScreenNormal())},be=function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},n=e.callback;["ANDROID_APP","IOS_APP"].includes(N)&&(b((function(e){"CLIPBOARD_CONTENT"===e.type&&n&&n(e)})),"IOS_APP"===N&&v.postMessage({action:"getClipBoardData"}),"ANDROID_APP"===N&&S.getText())},he=function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};["ANDROID_APP","IOS_APP"].includes(N)&&("IOS_APP"===N&&v.postMessage({action:"setClipBoardData",text:e.data||""}),"ANDROID_APP"===N&&S.setText(e.data||""))},me=function(){["ANDROID_APP","IOS_APP"].includes(N)&&("IOS_APP"===N&&v.postMessage({action:"showAppRating"}),"ANDROID_APP"===N&&S.showInAppReview())},ke=function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},n=e.callback;["ANDROID_APP","IOS_APP"].includes(N)&&(b((function(e){"checkBiometricStatus"===e.type&&n&&n(e)})),"ANDROID_APP"===N&&S.checkBiometricStatus(),"IOS_APP"===N&&v.postMessage({action:"checkBiometricStatus"}))},Me=function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},n=e.callback,t=e.secret;["ANDROID_APP","IOS_APP"].includes(N)&&(b((function(e){"saveBiometricSecret"===e.type&&n&&n(e)})),"ANDROID_APP"===N&&S.saveSecret(t),"IOS_APP"===N&&v.postMessage({action:"saveBiometricSecret",secret:t}))},Ee=function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},n=e.callback;["ANDROID_APP","IOS_APP"].includes(N)&&(b((function(e){"deleteBiometricSecret"===e.type&&n&&n(e)})),"ANDROID_APP"===N&&S.deleteSecret(),"IOS_APP"===N&&v.postMessage({action:"deleteBiometricSecret"}))},Fe=function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},n=e.callback,t=e.prompt;["ANDROID_APP","IOS_APP"].includes(N)&&(b((function(e){"showBiometric"===e.type&&n&&n(e)})),"ANDROID_APP"===N&&S.callBiometric(t||"Authenticate to continue!"),"IOS_APP"===N&&v.postMessage({action:"showBiometric",prompt:t||""}))},Ce=function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},n=e.callback;["IOS_APP"].includes(N)&&(b((function(e){"requestTrackingConsent"===e.type&&n&&n(e)})),"IOS_APP"===N&&v.postMessage({action:"requestTrackingAuthorization"}))},Be=function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},n=e.callback;["IOS_APP"].includes(N)&&(b((function(e){"trackingConsentStatus"===e.type&&n&&n(e)})),"IOS_APP"===N&&v.postMessage({action:"trackingConsentStatus"}))},We=function(e){if(["ANDROID_APP","IOS_APP"].includes(N)){var n=e.enabled;"IOS_APP"===N&&v.postMessage({action:"setFirebaseAnalyticsCollection",enabled:n}),"ANDROID_APP"===N&&S.setFirebaseAnalyticsCollection(n)}},Ue=function(e){if(["ANDROID_APP","IOS_APP"].includes(N)){var n=e.userId;"IOS_APP"===N&&v.postMessage({action:"setFirebaseUserId",userId:n}),"ANDROID_APP"===N&&S.setFirebaseUserId(n)}},Le=function(e){if(["ANDROID_APP","IOS_APP"].includes(N)){var n=e.key,t=e.value;"IOS_APP"===N&&v.postMessage({action:"setFirebaseUserProp",key:n,value:t}),"ANDROID_APP"===N&&S.setFirebaseUserProp(n,t)}},Je=function(e){if(["ANDROID_APP","IOS_APP"].includes(N)){var n=e.parameters;"IOS_APP"===N&&v.postMessage({action:"setFirebaseDefaultParam",parameters:n}),"ANDROID_APP"===N&&S.setFirebaseDefaultParam(n)}},Ve=function(e){if(["ANDROID_APP","IOS_APP"].includes(N)){var n=e.eventName,t=e.parameters;"IOS_APP"===N&&v.postMessage({action:"logFirebaseEvent",eventName:n,parameters:t}),"ANDROID_APP"===N&&S.logFirebaseEvent(n,t)}},He=function(e){if(["ANDROID_APP","IOS_APP"].includes(N)){var n=e.screenName,t=e.screenClass;"IOS_APP"===N&&v.postMessage({action:"logFirebaseScreenView",screenName:n,screenClass:t}),"ANDROID_APP"===N&&S.logFirebaseScreenView(n,t)}},xe=function(e){if(["ANDROID_APP","IOS_APP"].includes(N)){var n=e.toTopic;"IOS_APP"===N&&v.postMessage({action:"firebaseSubscribeToTopic",topic:n}),"ANDROID_APP"===N&&S.subscribeToTopic(n)}},qe=function(e){if(["ANDROID_APP","IOS_APP"].includes(N)){var n=e.fromTopic;"IOS_APP"===N&&v.postMessage({action:"firebaseUnsubscribeFromTopic",topic:n}),"ANDROID_APP"===N&&S.unsubscribeFromTopic(n)}},Ge=function(e){if(["ANDROID_APP","IOS_APP"].includes(N)){var n=e.callback;b((function(e){"getFCMToken"===e.type&&("ANDROID_APP"===N&&(e.token=e.fcm_registration_token),n&&n(e))})),"IOS_APP"===N&&v.postMessage({action:"getFCMToken"}),"ANDROID_APP"===N&&S.getRegistrationToken()}},Ke=function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};["ANDROID_APP","IOS_APP"].includes(N)&&"IOS_APP"===N&&v.postMessage({action:"haptikEffect",effect:e.effect})};window.WTN=n,window.WTN.OneSignal=t,window.WTN.VoiceSearch=function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},n=e.onVoiceSearch;return b((function(e){var n=e.type,t=e.results;"VOICE_SEARCH_RESULT"===n&&(ae&&ae(t),ae=null)})),R&&S.openVoiceSearch(),"function"==typeof n&&(ae=n),re},window.WTN.Barcode=o,window.WTN.AdMob=i,window.WTN.socialLogin=Ie,window.WTN.inAppPurchase=function(e){if(["ANDROID_APP","IOS_APP"].includes(N)){var n=e.callback,t=e.productId,o=e.productType,i=e.isConsumable,r=void 0!==i&&i;b((function(e){"inAppPurchase"===e.type&&n&&n(e)})),"IOS_APP"===N&&v.postMessage({action:"inAppPurchase",productId:t}),"ANDROID_APP"===N&&S.inAppPurchase(JSON.stringify({action:"inAppPurchase",productId:t,productType:o,isConsumable:r}))}},window.WTN.getAllPurchases=function(e){if(["ANDROID_APP"].includes(N)){var n=e.callback;b((function(e){"purchaseList"===e.type&&n&&n(e)})),"ANDROID_APP"===N&&S.getAllPurchases({action:"purchaseList"})}},window.WTN.appsflyer=r,window.WTN.bottomNavigation=s,window.WTN.contacts=c,window.WTN.screen=P,window.WTN.backgroundLocation=u,window.WTN.clipboard=A,window.WTN.appReview=l,window.WTN.Biometric=d,window.WTN.ATTConsent=f,window.WTN.facebook={events:a},window.WTN.firebaseAnalytics=g,window.WTN.haptics=p,window.WTN.Firebase=D,window&&window.WebToNativeInterface&&window.WebToNativeInterface.getAndroidVersion?window.navigator.share=function(e){return new Promise((function(n,t){window.WebToNativeInterface.openShareIntent(e.url),n()}))}:WTN.isIosApp&&(window.navigator.share=function(e){return new Promise((function(n,t){v.postMessage({action:"share",url:e.url}),n()}))})}();
|
|
1
|
+
!function(){"use strict";var e={d:function(n,t){for(var i in t)e.o(t,i)&&!e.o(n,i)&&Object.defineProperty(n,i,{enumerable:!0,get:t[i]})},o:function(e,n){return Object.prototype.hasOwnProperty.call(e,n)},r:function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})}},n={};e.r(n),e.d(n,{clearAppCache:function(){return x},closeApp:function(){return G},default:function(){return j},deviceInfo:function(){return U},downloadFile:function(){return B},enablePullToRefresh:function(){return H},hideSplashScreen:function(){return F},isAndroidApp:function(){return M},isDeviceGPSEnabled:function(){return L},isIosApp:function(){return E},isNativeApp:function(){return w},openUrlInBrowser:function(){return V},platform:function(){return R},shareFile:function(){return q},shareLink:function(){return J},showInAppReview:function(){return W},statusBar:function(){return C}});var t={};e.r(t),e.d(t,{addTrigger:function(){return Z},addTriggers:function(){return Y},getPlayerId:function(){return K},getTriggerValue:function(){return ne},getTriggers:function(){return te},logoutEmail:function(){return re},logoutSMSNumber:function(){return ae},removeExternalUserId:function(){return z},removeTrigger:function(){return $},removeTriggers:function(){return ee},setEmail:function(){return ie},setExternalUserId:function(){return X},setSMSNumber:function(){return oe},setTags:function(){return Q}});var i={};e.r(i),e.d(i,{BarcodeScan:function(){return Ae},Format:function(){return ue},Types:function(){return Pe}});var o={};e.r(o),e.d(o,{bannerAd:function(){return fe},fullScreenAd:function(){return Ie},rewardsAd:function(){return ge}});var r={};e.r(r),e.d(r,{logEvent:function(){return De},setCustomerUserId:function(){return pe}});var a={};e.r(a),e.d(a,{send:function(){return _e},sendPurchase:function(){return Se}});var s={};e.r(s),e.d(s,{hide:function(){return ve},show:function(){return Ne}});var c={};e.r(c),e.d(c,{getAll:function(){return we},getPermissionStatus:function(){return Re}});var u={};e.r(u),e.d(u,{start:function(){return ye},stop:function(){return Te}});var P={};e.r(P),e.d(P,{keepScreenNormal:function(){return he},keepScreenOn:function(){return be}});var A={};e.r(A),e.d(A,{get:function(){return me},set:function(){return ke}});var l={};e.r(l),e.d(l,{prompt:function(){return Me}});var d={};e.r(d),e.d(d,{checkStatus:function(){return Ee},deleteSecret:function(){return Ce},saveSecret:function(){return Fe},show:function(){return Be}});var f={};e.r(f),e.d(f,{request:function(){return Ue},status:function(){return We}});var I={};e.r(I),e.d(I,{logEvent:function(){return xe},logScreen:function(){return qe},setCollection:function(){return Le},setDefaultEventParameters:function(){return He},setUserId:function(){return Je},setUserProperty:function(){return Ve}});var g={};e.r(g),e.d(g,{events:function(){return I}});var O={};e.r(O),e.d(O,{getFCMToken:function(){return Ke},subscribe:function(){return Ge},unsubscribe:function(){return je}});var p={};e.r(p),e.d(p,{Analytics:function(){return I},Messaging:function(){return O}});var D={};e.r(D),e.d(D,{trigger:function(){return Xe}});var _={};e.r(_),e.d(_,{pauseMedia:function(){return Qe},playMedia:function(){return ze},stopMedia:function(){return Ze}});var S="undefined"!=typeof window,v=S&&window.WebToNativeInterface||{},N=S&&window.webkit&&window.webkit.messageHandlers&&window.webkit.messageHandlers.webToNativeInterface,R=v.getAndroidVersion?"ANDROID_APP":N?"IOS_APP":"WEBSITE",w=S&&"WEBSITE"!==R,y={},T=1,b=null;w&&(v.androidCBHook=function(e){var n=e;try{n=JSON.parse(e)}catch(e){console.log(e)}for(var t in n.type,y){var i=y[t],o=i.cb,r=i.ignoreDelete,a=void 0!==r&&r;n&&n.reqType?t==n.reqType&&(o(n),a||delete y[t]):(o(n),a||delete y[t])}},window.iOSAdMobCBHook=v.androidAdMobCBHook=function(e){var n=JSON.parse(e);b&&b(n)},window.iosCBHook=function(e){var n=e;try{n=JSON.parse(e)}catch(e){console.log(e)}for(var t in y){var i=y[t],o=i.cb,r=i.ignoreDelete,a=void 0!==r&&r;n&&n.reqType?t==n.reqType&&(o(n),a||delete y[t]):(o(n),a||delete y[t])}});var h=function(e,n){"function"==typeof e&&(n&&n.key?y[n.key]={cb:e,ignoreDelete:!!n.ignoreDelete}:(y[T]={cb:e,ignoreDelete:!(!n||!n.ignoreDelete)},T+=1))},m=function(e){"function"==typeof e&&(b=e)},k=function(){b&&(b=null)},M="ANDROID_APP"===R,E="IOS_APP"===R,F=function(){w&&v.hideSplashScreen()},C=function(e){w&&(M?v.statusBar(JSON.stringify(e)):E&&N.postMessage({action:"statusBar",color:e.color,style:e.style}))},B=function(e){w&&(M||E&&N.postMessage({action:"downloadFile",downloadUrl:e}))},U=function(){return new Promise((function(e,n){h((function(t){t?e(t):n({err:"Error getting device info"})}),{key:"deviceInfo"}),"ANDROID_APP"===R?v.getDeviceInfo():"IOS_APP"===R?N.postMessage({action:"deviceInfo"}):n("This function will work in Native App Powered By WebToNative")}))},W=function(){w&&v.showInAppReview()},L=function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},n=e.callback;["ANDROID_APP","IOS_APP"].includes(R)&&(h((function(e){"isDeviceGPSEnabled"===e.type&&n&&n(e)})),"ANDROID_APP"===R&&v.isLocationServiceEnabled())},J=function(e){var n=e.url,t=void 0===n?"":n;if(!t)throw"url is mandatory";M&&v.openShareIntent(t),E&&N.postMessage({action:"share",url:t})},V=function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"";if(!e)throw"url is mandatory";M&&v.openUrlInBrowser(e)},H=function(e){M&&v.enableSwipeRefresh(e)},x=function(e){M&&v.clearWebViewCache(JSON.stringify({reload:e}))},q=function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:null,n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:null;M&&v.shareFile(e,n)},G=function(){M&&v.closeApp()},j={isAndroidApp:M,isIosApp:E,hideSplashScreen:F,statusBar:C,deviceInfo:U,showInAppReview:W,shareLink:J,platform:R,isNativeApp:w,isDeviceGPSEnabled:L,openUrlInBrowser:V,enablePullToRefresh:H,shareFile:q,clearAppCache:x,closeApp:G},K=function(){return new Promise((function(e,n){h((function(t){t.isSuccess?e(t.playerId):n(t)}),{key:"getPlayerId"}),"ANDROID_APP"===R?v.getOneSignalId():"IOS_APP"===R?N.postMessage({action:"getPlayerId"}):n("This function will work in Native App Powered By WebToNative")}))},X=function(e){if(!e)throw"userId is required";if("ANDROID_APP"===R)return w&&v.setExternalUserId(e);"IOS_APP"===R&&N.postMessage({action:"setExternalUserId",userId:e})},z=function(){if("ANDROID_APP"===R)return w&&v.removeExternalUserId();"IOS_APP"===R&&N.postMessage({action:"removeExternalUserId"})},Q=function(e){var n=e.tags;if(n){if("ANDROID_APP"===R)return w&&v.setUserTags(JSON.stringify(n));"IOS_APP"===R&&N.postMessage({action:"setUserTags",tags:n})}},Z=function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},n=e.key,t=e.value;"ANDROID_APP"===R?v.addTrigger(JSON.stringify({key:n,value:t})):"IOS_APP"===R&&N.postMessage({action:"addTrigger",key:n,value:t})},Y=function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},n=e.triggers;"ANDROID_APP"===R?v.addTriggers(JSON.stringify({triggers:n})):"IOS_APP"===R&&N.postMessage({action:"addTriggers",triggers:n})},$=function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},n=e.key;"ANDROID_APP"===R?v.removeTriggerForKey(n):"IOS_APP"===R&&N.postMessage({action:"removeTrigger",key:n})},ee=function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},n=e.keys;"ANDROID_APP"===R?v.removeTriggersForKeys(JSON.stringify({keys:n})):"IOS_APP"===R&&N.postMessage({action:"removeTriggers",keys:n})},ne=function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},n=e.key,t=e.callback;["ANDROID_APP","IOS_APP"].includes(R)&&(h((function(e){"getTriggerValue"===e.type&&t&&t(e)})),"ANDROID_APP"===R?v.getTriggerValueForKey(n):"IOS_APP"===R&&N.postMessage({action:"getTriggerValue",key:n}))},te=function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},n=e.callback;["ANDROID_APP","IOS_APP"].includes(R)&&(h((function(e){"getTriggers"===e.type&&n&&n(e)})),"ANDROID_APP"===R?v.getTriggers():"IOS_APP"===R&&N.postMessage({action:"getTriggers"}))},ie=function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},n=e.emailId;["ANDROID_APP","IOS_APP"].includes(R)&&"ANDROID_APP"===R&&v.setEmail(n)},oe=function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},n=e.smsNumber;["ANDROID_APP","IOS_APP"].includes(R)&&"ANDROID_APP"===R&&v.setSMSNumber(n)},re=function(){["ANDROID_APP","IOS_APP"].includes(R)&&"ANDROID_APP"===R&&v.logoutEmail()},ae=function(){["ANDROID_APP","IOS_APP"].includes(R)&&"ANDROID_APP"===R&&v.logoutSMSNumber()},se=void 0,ce=null,ue={UNKNOWN:-1,ALL_FORMATS:0,CODE_128:1,CODE_39:2,CODE_93:4,CODABAR:8,DATA_MATRIX:16,EAN_13:32,EAN_8:64,ITF:128,QR_CODE:256,UPC_A:512,UPC_E:1024,PDF417:2048,AZTEC:4096},Pe={UNKNOWN:0,CONTACT_INFO:1,EMAIL:2,ISBN:3,PHONE:4,PRODUCT:5,SMS:6,TEXT:7,URL:8,WIFI:9,GEO:10,CALENDAR_EVENT:11,DRIVER_LICENSE:12},Ae=function(e){if(["ANDROID_APP","IOS_APP"].includes(R)){var n=e.onBarcodeSearch,t=e.format;h((function(e){var t=e.type,i=e.value;"BARCODE_SCAN"===t&&n&&n(i)})),"ANDROID_APP"===R&&v.startScanner(JSON.stringify({formats:t?[t]:[]})),"IOS_APP"===R&&N.postMessage({action:"barcodeScan",barcodeFormat:String(t||ue.ALL_FORMATS)})}},le=void 0,de=null,fe=function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};if(["ANDROID_APP","IOS_APP"].includes(R))return"IOS_APP"===R&&N.postMessage({action:"showBannerAd",adId:e.adId||""}),"ANDROID_APP"===R&&v.showBannerAd(JSON.stringify(e)),le},Ie=function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};if(["ANDROID_APP","IOS_APP"].includes(R)){var n=e.fullScreenAdCallback;return m((function(e){var n=e.status;de&&de(e),"adDismissed"===n&&(de=null),["adDismissed","adLoadError","adError"].indexOf(n)>-1&&k()})),"IOS_APP"===R&&N.postMessage({action:"showFullScreenAd",adId:e.adId||""}),"ANDROID_APP"===R&&v.showFullScreenAd(JSON.stringify(e)),"function"==typeof n&&(de=n),le}},ge=function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};if(["ANDROID_APP","IOS_APP"].includes(R)){var n=e.rewardsAdCallback;return m((function(e){var n=e.status;de&&de(e),"adDismissed"===n&&(de=null),["adDismissed","adLoadError","adError"].indexOf(n)>-1&&k()})),"IOS_APP"===R&&N.postMessage({action:"showRewardAd",adId:e.adId||""}),"ANDROID_APP"===R&&v.showRewardsAd(JSON.stringify(e)),"function"==typeof n&&(de=n),le}},Oe={facebook:{login:function(e){if(["ANDROID_APP","IOS_APP"].includes(R)){var n=e.callback,t=e.scope;h((function(e){"fbLoginToken"===e.type&&n&&n(e)})),"ANDROID_APP"===R&&v.loginWithFacebook(),"IOS_APP"===R&&N.postMessage({action:"fbSignIn",scope:t})}},logout:function(e){if(["ANDROID_APP","IOS_APP"].includes(R)){var n=e.callback,t=e.scope;h((function(e){"fbLogOut"===e.type&&n&&n(e)})),"ANDROID_APP"===R&&v.logoutWithFacebook(),"IOS_APP"===R&&N.postMessage({action:"fbSignOut",scope:t})}}},google:{login:function(e){if(["ANDROID_APP","IOS_APP"].includes(R)){var n=e.callback,t=e.scope;h((function(e){"googleLoginToken"===e.type&&n&&n(e)})),"ANDROID_APP"===R&&v.signInWithGoogle(),"IOS_APP"===R&&N.postMessage({action:"googleSignIn",scope:t})}},logout:function(e){if(["ANDROID_APP","IOS_APP"].includes(R)){var n=e.callback,t=e.scope;h((function(e){"googleLogOut"===e.type&&n&&n(e)})),"ANDROID_APP"===R&&v.signOutWithGoogle(),"IOS_APP"===R&&N.postMessage({action:"googleSignOut",scope:t})}}},apple:{login:function(e){if(["ANDROID_APP","IOS_APP"].includes(R)){var n=e.callback,t=e.scope;h((function(e){"appleLoginToken"===e.type&&n&&n(e)})),"IOS_APP"===R&&N.postMessage({action:"appleSignIn",scope:t})}}}},pe=function(e){["ANDROID_APP","IOS_APP"].includes(R)&&("ANDROID_APP"===R&&v.setAppsFlyerUserId(e),"IOS_APP"===R&&N.postMessage({action:"setAppsFlyerUserId",userId:e}))},De=function(e,n){["ANDROID_APP","IOS_APP"].includes(R)&&("ANDROID_APP"===R&&v.addEventToAppsFlyer(e,JSON.stringify(n)),"IOS_APP"===R&&N.postMessage({action:"addEventToAppsFlyer",eventName:e,eventValues:n}))},_e=function(e){if(["ANDROID_APP","IOS_APP"].includes(R)){var n=e.event,t=e.valueToSum,i=e.parameters;"ANDROID_APP"===R&&v.addFbEvents(n,i),"IOS_APP"===R&&N.postMessage({action:"sendFBEvent",eventName:n,valueToSum:t,parameters:i})}},Se=function(e){if(["ANDROID_APP","IOS_APP"].includes(R)){var n=e.amount,t=e.currency,i=e.parameters;"ANDROID_APP"===R&&v.addFbPurchaseEvent(n,t,i),"IOS_APP"===R&&N.postMessage({action:"sendFBPurchaseEvent",currency:t,amount:n,parameters:i})}},ve=function(){["ANDROID_APP","IOS_APP"].includes(R)&&("ANDROID_APP"===R&&v.showHideStickyFooter(!1),"IOS_APP"===R&&N.postMessage({action:"showHideStickyFooter",show:!1}))},Ne=function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},n=e.key;["ANDROID_APP","IOS_APP"].includes(R)&&("ANDROID_APP"===R&&v.showHideStickyFooter(!0),"IOS_APP"===R&&N.postMessage({action:"showHideStickyFooter",show:!0,key:n}))},Re=function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},n=e.callback;["ANDROID_APP","IOS_APP"].includes(R)&&(h((function(e){console.log(e),"contactPermissionStatus"===e.type&&n&&n(e)})),"IOS_APP"===R&&N.postMessage({action:"askUserForContactPermission"}))},we=function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},n=e.callback;["ANDROID_APP","IOS_APP"].includes(R)&&(h((function(e){var t=e.type;console.log(e),"contactDetails"===t&&n&&n(e)})),"IOS_APP"===R&&N.postMessage({action:"getUserContactDetails"}))},ye=function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};if(["ANDROID_APP","IOS_APP"].includes(R)){var n=e.data,t=e.callback,i=e.backgroundIndicator,o=void 0!==i&&i,r=e.pauseAutomatically,a=void 0===r||r,s=e.distanceFilter,c=void 0===s?0:s,u=e.desiredAccuracy,P=void 0===u?"best":u,A=e.activityType,l=void 0===A?"other":A,d=e.apiUrl,f=e.timeout;h((function(e){"LOCATION_UPDATE"===e.type&&t&&t(e)}),{key:"LOCATION_UPDATE",ignoreDelete:!0}),"IOS_APP"===R&&N.postMessage({action:"startLocation",data:n,backgroundIndicator:o,pauseAutomatically:a,distanceFilter:c,desiredAccuracy:P,activityType:l,apiUrl:d,timeout:f}),"ANDROID_APP"===R&&v.startTrackingLocation(JSON.stringify({action:"startLocation",data:n,interval:f,callback:t,apiUrl:d,displacement:c}))}},Te=function(){["ANDROID_APP","IOS_APP"].includes(R)&&(delete y["LOCATION_UPDATE"],"IOS_APP"===R&&N.postMessage({action:"stopLocation"}),"ANDROID_APP"===R&&v.stopTrackingLocation())},be=function(){["ANDROID_APP","IOS_APP"].includes(R)&&("IOS_APP"===R&&N.postMessage({action:"keepScreenOn",flag:!0}),"ANDROID_APP"===R&&v.keepScreenOn())},he=function(){["ANDROID_APP","IOS_APP"].includes(R)&&("IOS_APP"===R&&N.postMessage({action:"keepScreenOn",flag:!1}),"ANDROID_APP"===R&&v.keepScreenNormal())},me=function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},n=e.callback;["ANDROID_APP","IOS_APP"].includes(R)&&(h((function(e){"CLIPBOARD_CONTENT"===e.type&&n&&n(e)})),"IOS_APP"===R&&N.postMessage({action:"getClipBoardData"}),"ANDROID_APP"===R&&v.getText())},ke=function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};["ANDROID_APP","IOS_APP"].includes(R)&&("IOS_APP"===R&&N.postMessage({action:"setClipBoardData",text:e.data||""}),"ANDROID_APP"===R&&v.setText(e.data||""))},Me=function(){["ANDROID_APP","IOS_APP"].includes(R)&&("IOS_APP"===R&&N.postMessage({action:"showAppRating"}),"ANDROID_APP"===R&&v.showInAppReview())},Ee=function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},n=e.callback;["ANDROID_APP","IOS_APP"].includes(R)&&(h((function(e){"checkBiometricStatus"===e.type&&n&&n(e)})),"ANDROID_APP"===R&&v.checkBiometricStatus(),"IOS_APP"===R&&N.postMessage({action:"checkBiometricStatus"}))},Fe=function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},n=e.callback,t=e.secret;["ANDROID_APP","IOS_APP"].includes(R)&&(h((function(e){"saveBiometricSecret"===e.type&&n&&n(e)})),"ANDROID_APP"===R&&v.saveSecret(t),"IOS_APP"===R&&N.postMessage({action:"saveBiometricSecret",secret:t}))},Ce=function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},n=e.callback;["ANDROID_APP","IOS_APP"].includes(R)&&(h((function(e){"deleteBiometricSecret"===e.type&&n&&n(e)})),"ANDROID_APP"===R&&v.deleteSecret(),"IOS_APP"===R&&N.postMessage({action:"deleteBiometricSecret"}))},Be=function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},n=e.callback,t=e.prompt;["ANDROID_APP","IOS_APP"].includes(R)&&(h((function(e){"showBiometric"===e.type&&n&&n(e)})),"ANDROID_APP"===R&&v.callBiometric(t||"Authenticate to continue!"),"IOS_APP"===R&&N.postMessage({action:"showBiometric",prompt:t||""}))},Ue=function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},n=e.callback;["IOS_APP"].includes(R)&&(h((function(e){"requestTrackingConsent"===e.type&&n&&n(e)})),"IOS_APP"===R&&N.postMessage({action:"requestTrackingAuthorization"}))},We=function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},n=e.callback;["IOS_APP"].includes(R)&&(h((function(e){"trackingConsentStatus"===e.type&&n&&n(e)})),"IOS_APP"===R&&N.postMessage({action:"trackingConsentStatus"}))},Le=function(e){if(["ANDROID_APP","IOS_APP"].includes(R)){var n=e.enabled;"IOS_APP"===R&&N.postMessage({action:"setFirebaseAnalyticsCollection",enabled:n}),"ANDROID_APP"===R&&v.setFirebaseAnalyticsCollection(n)}},Je=function(e){if(["ANDROID_APP","IOS_APP"].includes(R)){var n=e.userId;"IOS_APP"===R&&N.postMessage({action:"setFirebaseUserId",userId:n}),"ANDROID_APP"===R&&v.setFirebaseUserId(n)}},Ve=function(e){if(["ANDROID_APP","IOS_APP"].includes(R)){var n=e.key,t=e.value;"IOS_APP"===R&&N.postMessage({action:"setFirebaseUserProp",key:n,value:t}),"ANDROID_APP"===R&&v.setFirebaseUserProp(n,t)}},He=function(e){if(["ANDROID_APP","IOS_APP"].includes(R)){var n=e.parameters;"IOS_APP"===R&&N.postMessage({action:"setFirebaseDefaultParam",parameters:n}),"ANDROID_APP"===R&&v.setFirebaseDefaultParam(n)}},xe=function(e){if(["ANDROID_APP","IOS_APP"].includes(R)){var n=e.eventName,t=e.parameters;"IOS_APP"===R&&N.postMessage({action:"logFirebaseEvent",eventName:n,parameters:t}),"ANDROID_APP"===R&&v.logFirebaseEvent(n,t)}},qe=function(e){if(["ANDROID_APP","IOS_APP"].includes(R)){var n=e.screenName,t=e.screenClass;"IOS_APP"===R&&N.postMessage({action:"logFirebaseScreenView",screenName:n,screenClass:t}),"ANDROID_APP"===R&&v.logFirebaseScreenView(n,t)}},Ge=function(e){if(["ANDROID_APP","IOS_APP"].includes(R)){var n=e.toTopic;"IOS_APP"===R&&N.postMessage({action:"firebaseSubscribeToTopic",topic:n}),"ANDROID_APP"===R&&v.subscribeToTopic(n)}},je=function(e){if(["ANDROID_APP","IOS_APP"].includes(R)){var n=e.fromTopic;"IOS_APP"===R&&N.postMessage({action:"firebaseUnsubscribeFromTopic",topic:n}),"ANDROID_APP"===R&&v.unsubscribeFromTopic(n)}},Ke=function(e){if(["ANDROID_APP","IOS_APP"].includes(R)){var n=e.callback;h((function(e){"getFCMToken"===e.type&&("ANDROID_APP"===R&&(e.token=e.fcm_registration_token),n&&n(e))})),"IOS_APP"===R&&N.postMessage({action:"getFCMToken"}),"ANDROID_APP"===R&&v.getRegistrationToken()}},Xe=function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};["ANDROID_APP","IOS_APP"].includes(R)&&"IOS_APP"===R&&N.postMessage({action:"haptikEffect",effect:e.effect})},ze=function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},n=e.url,t=e.imageUrl,i=void 0===t?"https://images.freeimages.com/images/large-previews/3b2/prague-conference-center-1056491.jpg":t;["ANDROID_APP","IOS_APP"].includes(R)&&"ANDROID_APP"===R&&v.playMedia(JSON.stringify({url:n,imageUrl:i}))},Qe=function(){["ANDROID_APP","IOS_APP"].includes(R)&&"ANDROID_APP"===R&&v.pausePlaying()},Ze=function(){["ANDROID_APP","IOS_APP"].includes(R)&&"ANDROID_APP"===R&&v.stopPlaying()};window.WTN=n,window.WTN.OneSignal=t,window.WTN.VoiceSearch=function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},n=e.onVoiceSearch;return h((function(e){var n=e.type,t=e.results;"VOICE_SEARCH_RESULT"===n&&(ce&&ce(t),ce=null)})),w&&v.openVoiceSearch(),"function"==typeof n&&(ce=n),se},window.WTN.Barcode=i,window.WTN.AdMob=o,window.WTN.socialLogin=Oe,window.WTN.inAppPurchase=function(e){if(["ANDROID_APP","IOS_APP"].includes(R)){var n=e.callback,t=e.productId,i=e.productType,o=e.isConsumable,r=void 0!==o&&o;h((function(e){"inAppPurchase"===e.type&&n&&n(e)})),"IOS_APP"===R&&N.postMessage({action:"inAppPurchase",productId:t}),"ANDROID_APP"===R&&v.inAppPurchase(JSON.stringify({action:"inAppPurchase",productId:t,productType:i,isConsumable:r}))}},window.WTN.getAllPurchases=function(e){if(["ANDROID_APP"].includes(R)){var n=e.callback;h((function(e){"purchaseList"===e.type&&n&&n(e)})),"ANDROID_APP"===R&&v.getAllPurchases({action:"purchaseList"})}},window.WTN.appsflyer=r,window.WTN.bottomNavigation=s,window.WTN.contacts=c,window.WTN.screen=P,window.WTN.backgroundLocation=u,window.WTN.clipboard=A,window.WTN.appReview=l,window.WTN.Biometric=d,window.WTN.ATTConsent=f,window.WTN.facebook={events:a},window.WTN.firebaseAnalytics=g,window.WTN.haptics=D,window.WTN.Firebase=p,window.WTN.MediaPlayer=_,window&&window.WebToNativeInterface&&window.WebToNativeInterface.getAndroidVersion?window.navigator.share=function(e){return new Promise((function(n,t){window.WebToNativeInterface.openShareIntent(e.url),n()}))}:WTN.isIosApp&&(window.navigator.share=function(e){return new Promise((function(n,t){N.postMessage({action:"share",url:e.url}),n()}))})}();
|