@apps-in-toss/web-framework 1.6.2 → 1.7.1
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/CHANGELOG.md +4 -0
- package/dist/prebuilt/dev.android.js +75 -406
- package/dist/prebuilt/dev.ios.js +75 -406
- package/dist/prebuilt/prod.android.js +46 -358
- package/dist/prebuilt/prod.ios.js +46 -358
- package/package.json +7 -7
|
@@ -153360,7 +153360,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
153360
153360
|
var _default = exports.default = _framework.AppsInToss.registerApp(AppContainer, {
|
|
153361
153361
|
context: _context.context
|
|
153362
153362
|
});
|
|
153363
|
-
},1255,[1256,
|
|
153363
|
+
},1255,[1256,2629,9],"react-native/src/_app.tsx");
|
|
153364
153364
|
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
|
|
153365
153365
|
"use strict";
|
|
153366
153366
|
|
|
@@ -156180,10 +156180,6 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
156180
156180
|
options: options
|
|
156181
156181
|
});
|
|
156182
156182
|
},
|
|
156183
|
-
loadAdMobInterstitialAd: import_native_modules23.GoogleAdMob.loadAdMobInterstitialAd,
|
|
156184
|
-
showAdMobInterstitialAd: import_native_modules23.GoogleAdMob.showAdMobInterstitialAd,
|
|
156185
|
-
loadAdMobRewardedAd: import_native_modules23.GoogleAdMob.loadAdMobRewardedAd,
|
|
156186
|
-
showAdMobRewardedAd: import_native_modules23.GoogleAdMob.showAdMobRewardedAd,
|
|
156187
156183
|
loadAppsInTossAdMob: import_native_modules23.GoogleAdMob.loadAppsInTossAdMob,
|
|
156188
156184
|
showAppsInTossAdMob: import_native_modules23.GoogleAdMob.showAppsInTossAdMob,
|
|
156189
156185
|
loadFullScreenAd: loadFullScreenAdForWeb,
|
|
@@ -156193,17 +156189,13 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
156193
156189
|
requestOneTimePurchase: import_native_modules23.requestOneTimePurchase
|
|
156194
156190
|
}),
|
|
156195
156191
|
constantHandlerMap: Object.assign({}, appsInTossConstantBridges, {
|
|
156196
|
-
|
|
156197
|
-
return
|
|
156198
|
-
|
|
156199
|
-
|
|
156200
|
-
|
|
156201
|
-
|
|
156202
|
-
|
|
156203
|
-
return insets.left;
|
|
156204
|
-
},
|
|
156205
|
-
getSafeAreaRight: function getSafeAreaRight() {
|
|
156206
|
-
return insets.right;
|
|
156192
|
+
getSafeAreaInsets: function getSafeAreaInsets() {
|
|
156193
|
+
return {
|
|
156194
|
+
top: top,
|
|
156195
|
+
bottom: bottom,
|
|
156196
|
+
left: insets.left,
|
|
156197
|
+
right: insets.right
|
|
156198
|
+
};
|
|
156207
156199
|
}
|
|
156208
156200
|
}, Object.fromEntries(Object.entries(global2).map(function (_ref91) {
|
|
156209
156201
|
var _ref92 = _slicedToArray(_ref91, 2),
|
|
@@ -156213,10 +156205,6 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
156213
156205
|
return value;
|
|
156214
156206
|
}];
|
|
156215
156207
|
})), {
|
|
156216
|
-
loadAdMobInterstitialAd_isSupported: import_native_modules23.GoogleAdMob.loadAdMobInterstitialAd.isSupported,
|
|
156217
|
-
showAdMobInterstitialAd_isSupported: import_native_modules23.GoogleAdMob.showAdMobInterstitialAd.isSupported,
|
|
156218
|
-
loadAdMobRewardedAd_isSupported: import_native_modules23.GoogleAdMob.loadAdMobRewardedAd.isSupported,
|
|
156219
|
-
showAdMobRewardedAd_isSupported: import_native_modules23.GoogleAdMob.showAdMobRewardedAd.isSupported,
|
|
156220
156208
|
loadAppsInTossAdMob_isSupported: import_native_modules23.GoogleAdMob.loadAppsInTossAdMob.isSupported,
|
|
156221
156209
|
showAppsInTossAdMob_isSupported: import_native_modules23.GoogleAdMob.showAppsInTossAdMob.isSupported,
|
|
156222
156210
|
loadFullScreenAd_isSupported: loadFullScreenAdForWeb.isSupported,
|
|
@@ -156334,7 +156322,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
156334
156322
|
onShouldStartLoadWithRequest: function onShouldStartLoadWithRequest(event) {
|
|
156335
156323
|
try {
|
|
156336
156324
|
var url = new URL(event.url);
|
|
156337
|
-
if (["https:", "http:"].includes(url.protocol)) {
|
|
156325
|
+
if (["https:", "http:"].includes(url.protocol) || url.href === "about:blank") {
|
|
156338
156326
|
return true;
|
|
156339
156327
|
} else {
|
|
156340
156328
|
var _convertIntentURL;
|
|
@@ -157497,10 +157485,18 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
157497
157485
|
}(import_react_native5.GraniteEventDefinition);
|
|
157498
157486
|
var _appsInTossEvent = new import_react_native6.GraniteEvent([new UpdateLocationEvent(), new AppBridgeCallbackEvent(), new VisibilityChangedByTransparentServiceWebEvent()]);
|
|
157499
157487
|
var import_es_toolkit = _$$_REQUIRE(_dependencyMap[11], "es-toolkit");
|
|
157488
|
+
var import_react_native7 = _$$_REQUIRE(_dependencyMap[8], "@granite-js/react-native");
|
|
157489
|
+
function getReferrer() {
|
|
157490
|
+
try {
|
|
157491
|
+
return new URL((0, import_react_native7.getSchemeUri)()).searchParams.get("referrer");
|
|
157492
|
+
} catch (_unused) {
|
|
157493
|
+
return null;
|
|
157494
|
+
}
|
|
157495
|
+
}
|
|
157500
157496
|
function _getOperationalEnvironment() {
|
|
157501
157497
|
return _AppsInTossModule.operationalEnvironment;
|
|
157502
157498
|
}
|
|
157503
|
-
var
|
|
157499
|
+
var import_react_native8 = _$$_REQUIRE(_dependencyMap[10], "react-native");
|
|
157504
157500
|
var SEMVER_REGEX = /^[v^~<>=]*?(\d+)(?:\.([x*]|\d+)(?:\.([x*]|\d+)(?:\.([x*]|\d+))?(?:-([\da-z\\-]+(?:\.[\da-z\\-]+)*))?(?:\+[\da-z\\-]+(?:\.[\da-z\\-]+)*)?)?)?$/i;
|
|
157505
157501
|
var isWildcard = function isWildcard(val) {
|
|
157506
157502
|
return ["*", "x", "X"].includes(val);
|
|
@@ -157583,7 +157579,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
157583
157579
|
return true;
|
|
157584
157580
|
}
|
|
157585
157581
|
var currentVersion = _AppsInTossModule.tossAppVersion;
|
|
157586
|
-
var isIOS =
|
|
157582
|
+
var isIOS = import_react_native8.Platform.OS === "ios";
|
|
157587
157583
|
var minVersion = isIOS ? minVersions.ios : minVersions.android;
|
|
157588
157584
|
if (minVersion === void 0) {
|
|
157589
157585
|
return false;
|
|
@@ -157596,167 +157592,10 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
157596
157592
|
}
|
|
157597
157593
|
return compareVersions(currentVersion, minVersion) >= 0;
|
|
157598
157594
|
}
|
|
157599
|
-
function loadAdMobInterstitialAd(params) {
|
|
157600
|
-
if (!loadAdMobInterstitialAd.isSupported()) {
|
|
157601
|
-
params.onError(new Error(UNSUPPORTED_ERROR_MESSAGE));
|
|
157602
|
-
return import_es_toolkit.noop;
|
|
157603
|
-
}
|
|
157604
|
-
var onEvent = params.onEvent,
|
|
157605
|
-
onError = params.onError,
|
|
157606
|
-
options = params.options;
|
|
157607
|
-
var unregisterCallbacks = _INTERNAL__appBridgeHandler.invokeAppBridgeMethod("loadAdMobInterstitialAd", options, {
|
|
157608
|
-
onAdClicked: function onAdClicked() {
|
|
157609
|
-
onEvent({
|
|
157610
|
-
type: "clicked"
|
|
157611
|
-
});
|
|
157612
|
-
},
|
|
157613
|
-
onAdDismissed: function onAdDismissed() {
|
|
157614
|
-
onEvent({
|
|
157615
|
-
type: "dismissed"
|
|
157616
|
-
});
|
|
157617
|
-
},
|
|
157618
|
-
onAdFailedToShow: function onAdFailedToShow() {
|
|
157619
|
-
onEvent({
|
|
157620
|
-
type: "failedToShow"
|
|
157621
|
-
});
|
|
157622
|
-
},
|
|
157623
|
-
onAdImpression: function onAdImpression() {
|
|
157624
|
-
onEvent({
|
|
157625
|
-
type: "impression"
|
|
157626
|
-
});
|
|
157627
|
-
},
|
|
157628
|
-
onAdShow: function onAdShow() {
|
|
157629
|
-
onEvent({
|
|
157630
|
-
type: "show"
|
|
157631
|
-
});
|
|
157632
|
-
},
|
|
157633
|
-
onSuccess: function onSuccess(result) {
|
|
157634
|
-
return onEvent({
|
|
157635
|
-
type: "loaded",
|
|
157636
|
-
data: result
|
|
157637
|
-
});
|
|
157638
|
-
},
|
|
157639
|
-
onError: onError
|
|
157640
|
-
});
|
|
157641
|
-
return unregisterCallbacks;
|
|
157642
|
-
}
|
|
157643
|
-
function showAdMobInterstitialAd(params) {
|
|
157644
|
-
if (!showAdMobInterstitialAd.isSupported()) {
|
|
157645
|
-
params.onError(new Error(UNSUPPORTED_ERROR_MESSAGE));
|
|
157646
|
-
return import_es_toolkit.noop;
|
|
157647
|
-
}
|
|
157648
|
-
var onEvent = params.onEvent,
|
|
157649
|
-
onError = params.onError,
|
|
157650
|
-
options = params.options;
|
|
157651
|
-
var unregisterCallbacks = _INTERNAL__appBridgeHandler.invokeAppBridgeMethod("showAdMobInterstitialAd", options, {
|
|
157652
|
-
onSuccess: function onSuccess() {
|
|
157653
|
-
return onEvent({
|
|
157654
|
-
type: "requested"
|
|
157655
|
-
});
|
|
157656
|
-
},
|
|
157657
|
-
onError: onError
|
|
157658
|
-
});
|
|
157659
|
-
return unregisterCallbacks;
|
|
157660
|
-
}
|
|
157661
|
-
function loadAdMobRewardedAd(params) {
|
|
157662
|
-
if (!loadAdMobRewardedAd.isSupported()) {
|
|
157663
|
-
params.onError(new Error(UNSUPPORTED_ERROR_MESSAGE));
|
|
157664
|
-
return import_es_toolkit.noop;
|
|
157665
|
-
}
|
|
157666
|
-
var onEvent = params.onEvent,
|
|
157667
|
-
onError = params.onError,
|
|
157668
|
-
options = params.options;
|
|
157669
|
-
var unregisterCallbacks = _INTERNAL__appBridgeHandler.invokeAppBridgeMethod("loadAdMobRewardedAd", options, {
|
|
157670
|
-
onAdClicked: function onAdClicked() {
|
|
157671
|
-
onEvent({
|
|
157672
|
-
type: "clicked"
|
|
157673
|
-
});
|
|
157674
|
-
},
|
|
157675
|
-
onAdDismissed: function onAdDismissed() {
|
|
157676
|
-
onEvent({
|
|
157677
|
-
type: "dismissed"
|
|
157678
|
-
});
|
|
157679
|
-
},
|
|
157680
|
-
onAdFailedToShow: function onAdFailedToShow() {
|
|
157681
|
-
onEvent({
|
|
157682
|
-
type: "failedToShow"
|
|
157683
|
-
});
|
|
157684
|
-
},
|
|
157685
|
-
onAdImpression: function onAdImpression() {
|
|
157686
|
-
onEvent({
|
|
157687
|
-
type: "impression"
|
|
157688
|
-
});
|
|
157689
|
-
},
|
|
157690
|
-
onAdShow: function onAdShow() {
|
|
157691
|
-
onEvent({
|
|
157692
|
-
type: "show"
|
|
157693
|
-
});
|
|
157694
|
-
},
|
|
157695
|
-
onUserEarnedReward: function onUserEarnedReward() {
|
|
157696
|
-
onEvent({
|
|
157697
|
-
type: "userEarnedReward"
|
|
157698
|
-
});
|
|
157699
|
-
},
|
|
157700
|
-
onSuccess: function onSuccess(result) {
|
|
157701
|
-
return onEvent({
|
|
157702
|
-
type: "loaded",
|
|
157703
|
-
data: result
|
|
157704
|
-
});
|
|
157705
|
-
},
|
|
157706
|
-
onError: onError
|
|
157707
|
-
});
|
|
157708
|
-
return unregisterCallbacks;
|
|
157709
|
-
}
|
|
157710
|
-
function showAdMobRewardedAd(params) {
|
|
157711
|
-
if (!showAdMobRewardedAd.isSupported()) {
|
|
157712
|
-
params.onError(new Error(UNSUPPORTED_ERROR_MESSAGE));
|
|
157713
|
-
return import_es_toolkit.noop;
|
|
157714
|
-
}
|
|
157715
|
-
var onEvent = params.onEvent,
|
|
157716
|
-
onError = params.onError,
|
|
157717
|
-
options = params.options;
|
|
157718
|
-
var unregisterCallbacks = _INTERNAL__appBridgeHandler.invokeAppBridgeMethod("showAdMobRewardedAd", options, {
|
|
157719
|
-
onSuccess: function onSuccess() {
|
|
157720
|
-
return onEvent({
|
|
157721
|
-
type: "requested"
|
|
157722
|
-
});
|
|
157723
|
-
},
|
|
157724
|
-
onError: onError
|
|
157725
|
-
});
|
|
157726
|
-
return unregisterCallbacks;
|
|
157727
|
-
}
|
|
157728
|
-
var ANDROID_GOOGLE_AD_MOB_SUPPORTED_VERSION = "5.209.0";
|
|
157729
|
-
var IOS_GOOGLE_AD_MOB_SUPPORTED_VERSION = "5.209.0";
|
|
157730
|
-
var UNSUPPORTED_ERROR_MESSAGE = "This feature is not supported in the current environment";
|
|
157731
|
-
var ENVIRONMENT = _getOperationalEnvironment();
|
|
157732
|
-
function createIsSupported() {
|
|
157733
|
-
return function () {
|
|
157734
|
-
if (ENVIRONMENT !== "toss") {
|
|
157735
|
-
return false;
|
|
157736
|
-
}
|
|
157737
|
-
return _isMinVersionSupported({
|
|
157738
|
-
android: ANDROID_GOOGLE_AD_MOB_SUPPORTED_VERSION,
|
|
157739
|
-
ios: IOS_GOOGLE_AD_MOB_SUPPORTED_VERSION
|
|
157740
|
-
});
|
|
157741
|
-
};
|
|
157742
|
-
}
|
|
157743
|
-
loadAdMobInterstitialAd.isSupported = createIsSupported();
|
|
157744
|
-
loadAdMobRewardedAd.isSupported = createIsSupported();
|
|
157745
|
-
showAdMobInterstitialAd.isSupported = createIsSupported();
|
|
157746
|
-
showAdMobRewardedAd.isSupported = createIsSupported();
|
|
157747
|
-
var import_es_toolkit2 = _$$_REQUIRE(_dependencyMap[11], "es-toolkit");
|
|
157748
|
-
var import_react_native8 = _$$_REQUIRE(_dependencyMap[8], "@granite-js/react-native");
|
|
157749
|
-
function getReferrer() {
|
|
157750
|
-
try {
|
|
157751
|
-
return new URL((0, import_react_native8.getSchemeUri)()).searchParams.get("referrer");
|
|
157752
|
-
} catch (_unused) {
|
|
157753
|
-
return null;
|
|
157754
|
-
}
|
|
157755
|
-
}
|
|
157756
157595
|
function loadAppsInTossAdMob(params) {
|
|
157757
157596
|
if (!loadAppsInTossAdMob.isSupported()) {
|
|
157758
|
-
params.onError(new Error(
|
|
157759
|
-
return
|
|
157597
|
+
params.onError(new Error(UNSUPPORTED_ERROR_MESSAGE));
|
|
157598
|
+
return import_es_toolkit.noop;
|
|
157760
157599
|
}
|
|
157761
157600
|
var onEvent = params.onEvent,
|
|
157762
157601
|
onError = params.onError,
|
|
@@ -157777,8 +157616,8 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
157777
157616
|
}
|
|
157778
157617
|
function showAppsInTossAdMob(params) {
|
|
157779
157618
|
if (!showAppsInTossAdMob.isSupported()) {
|
|
157780
|
-
params.onError(new Error(
|
|
157781
|
-
return
|
|
157619
|
+
params.onError(new Error(UNSUPPORTED_ERROR_MESSAGE));
|
|
157620
|
+
return import_es_toolkit.noop;
|
|
157782
157621
|
}
|
|
157783
157622
|
var onEvent = params.onEvent,
|
|
157784
157623
|
onError = params.onError,
|
|
@@ -157827,23 +157666,23 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
157827
157666
|
});
|
|
157828
157667
|
return unregisterCallbacks;
|
|
157829
157668
|
}
|
|
157830
|
-
var
|
|
157831
|
-
var
|
|
157832
|
-
var
|
|
157833
|
-
var
|
|
157834
|
-
function
|
|
157669
|
+
var ANDROID_GOOGLE_AD_MOB_SUPPORTED_VERSION = "5.227.0";
|
|
157670
|
+
var IOS_GOOGLE_AD_MOB_SUPPORTED_VERSION = "5.227.0";
|
|
157671
|
+
var UNSUPPORTED_ERROR_MESSAGE = "This feature is not supported in the current environment";
|
|
157672
|
+
var ENVIRONMENT = _getOperationalEnvironment();
|
|
157673
|
+
function createIsSupported() {
|
|
157835
157674
|
return function () {
|
|
157836
|
-
if (
|
|
157675
|
+
if (ENVIRONMENT !== "toss") {
|
|
157837
157676
|
return false;
|
|
157838
157677
|
}
|
|
157839
157678
|
return _isMinVersionSupported({
|
|
157840
|
-
android:
|
|
157841
|
-
ios:
|
|
157679
|
+
android: ANDROID_GOOGLE_AD_MOB_SUPPORTED_VERSION,
|
|
157680
|
+
ios: IOS_GOOGLE_AD_MOB_SUPPORTED_VERSION
|
|
157842
157681
|
});
|
|
157843
157682
|
};
|
|
157844
157683
|
}
|
|
157845
|
-
loadAppsInTossAdMob.isSupported =
|
|
157846
|
-
showAppsInTossAdMob.isSupported =
|
|
157684
|
+
loadAppsInTossAdMob.isSupported = createIsSupported();
|
|
157685
|
+
showAppsInTossAdMob.isSupported = createIsSupported();
|
|
157847
157686
|
function checkoutPayment(_x2) {
|
|
157848
157687
|
return _checkoutPayment.apply(this, arguments);
|
|
157849
157688
|
}
|
|
@@ -158073,7 +157912,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
158073
157912
|
});
|
|
158074
157913
|
return _getTossShareLinkV.apply(this, arguments);
|
|
158075
157914
|
}
|
|
158076
|
-
var
|
|
157915
|
+
var import_es_toolkit2 = _$$_REQUIRE(_dependencyMap[11], "es-toolkit");
|
|
158077
157916
|
function _iapCreateOneTimePurchaseOrder(params) {
|
|
158078
157917
|
var _params$sku;
|
|
158079
157918
|
var sku = (_params$sku = params.sku) != null ? _params$sku : params.productId;
|
|
@@ -158121,7 +157960,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
158121
157960
|
ios: "5.219.0"
|
|
158122
157961
|
});
|
|
158123
157962
|
if (!isIAPSupported) {
|
|
158124
|
-
return
|
|
157963
|
+
return import_es_toolkit2.noop;
|
|
158125
157964
|
}
|
|
158126
157965
|
var isProcessProductGrantSupported = _isMinVersionSupported({
|
|
158127
157966
|
android: "5.231.1",
|
|
@@ -158149,7 +157988,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
158149
157988
|
}).catch(function (error) {
|
|
158150
157989
|
_onError2(error);
|
|
158151
157990
|
});
|
|
158152
|
-
return
|
|
157991
|
+
return import_es_toolkit2.noop;
|
|
158153
157992
|
};
|
|
158154
157993
|
return v1();
|
|
158155
157994
|
}
|
|
@@ -158505,10 +158344,6 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
158505
158344
|
checkoutPayment: checkoutPayment
|
|
158506
158345
|
};
|
|
158507
158346
|
var _GoogleAdMob = {
|
|
158508
|
-
loadAdMobInterstitialAd: loadAdMobInterstitialAd,
|
|
158509
|
-
showAdMobInterstitialAd: showAdMobInterstitialAd,
|
|
158510
|
-
loadAdMobRewardedAd: loadAdMobRewardedAd,
|
|
158511
|
-
showAdMobRewardedAd: showAdMobRewardedAd,
|
|
158512
158347
|
loadAppsInTossAdMob: loadAppsInTossAdMob,
|
|
158513
158348
|
showAppsInTossAdMob: showAppsInTossAdMob
|
|
158514
158349
|
};
|
|
@@ -233655,7 +233490,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
233655
233490
|
}
|
|
233656
233491
|
});
|
|
233657
233492
|
});
|
|
233658
|
-
},2613,[2614,
|
|
233493
|
+
},2613,[2614,2628,2627],"../../../.yarn/__virtual__/@apps-in-toss-native-modules-virtual-e56741e8de/1/packages/apps-in-toss/native-modules/src/event-bridges.ts");
|
|
233659
233494
|
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
|
|
233660
233495
|
Object.defineProperty(exports, "__esModule", {
|
|
233661
233496
|
value: true
|
|
@@ -233977,11 +233812,10 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
233977
233812
|
}
|
|
233978
233813
|
});
|
|
233979
233814
|
exports.TossPay = void 0;
|
|
233980
|
-
var
|
|
233981
|
-
var
|
|
233982
|
-
var
|
|
233983
|
-
var
|
|
233984
|
-
var _appLogin = _$$_REQUIRE(_dependencyMap[4], "./appLogin");
|
|
233815
|
+
var _googleAdMobV = _$$_REQUIRE(_dependencyMap[0], "./ads/googleAdMobV2");
|
|
233816
|
+
var _checkoutPayment = _$$_REQUIRE(_dependencyMap[1], "./checkoutPayment");
|
|
233817
|
+
var _AppsInTossModule = _$$_REQUIRE(_dependencyMap[2], "./AppsInTossModule");
|
|
233818
|
+
var _appLogin = _$$_REQUIRE(_dependencyMap[3], "./appLogin");
|
|
233985
233819
|
Object.keys(_appLogin).forEach(function (key) {
|
|
233986
233820
|
if (key === "default" || key === "__esModule") return;
|
|
233987
233821
|
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
|
@@ -233993,7 +233827,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
233993
233827
|
}
|
|
233994
233828
|
});
|
|
233995
233829
|
});
|
|
233996
|
-
var _eventLog = _$$_REQUIRE(_dependencyMap[
|
|
233830
|
+
var _eventLog = _$$_REQUIRE(_dependencyMap[4], "./eventLog");
|
|
233997
233831
|
Object.keys(_eventLog).forEach(function (key) {
|
|
233998
233832
|
if (key === "default" || key === "__esModule") return;
|
|
233999
233833
|
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
|
@@ -234005,7 +233839,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
234005
233839
|
}
|
|
234006
233840
|
});
|
|
234007
233841
|
});
|
|
234008
|
-
var _fetchAlbumPhotos = _$$_REQUIRE(_dependencyMap[
|
|
233842
|
+
var _fetchAlbumPhotos = _$$_REQUIRE(_dependencyMap[5], "./permissions/fetchAlbumPhotos/fetchAlbumPhotos");
|
|
234009
233843
|
Object.keys(_fetchAlbumPhotos).forEach(function (key) {
|
|
234010
233844
|
if (key === "default" || key === "__esModule") return;
|
|
234011
233845
|
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
|
@@ -234017,7 +233851,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
234017
233851
|
}
|
|
234018
233852
|
});
|
|
234019
233853
|
});
|
|
234020
|
-
var _fetchContacts = _$$_REQUIRE(_dependencyMap[
|
|
233854
|
+
var _fetchContacts = _$$_REQUIRE(_dependencyMap[6], "./permissions/fetchContacts/fetchContacts");
|
|
234021
233855
|
Object.keys(_fetchContacts).forEach(function (key) {
|
|
234022
233856
|
if (key === "default" || key === "__esModule") return;
|
|
234023
233857
|
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
|
@@ -234029,7 +233863,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
234029
233863
|
}
|
|
234030
233864
|
});
|
|
234031
233865
|
});
|
|
234032
|
-
var _getClipboardText = _$$_REQUIRE(_dependencyMap[
|
|
233866
|
+
var _getClipboardText = _$$_REQUIRE(_dependencyMap[7], "./permissions/getClipboardText/getClipboardText");
|
|
234033
233867
|
Object.keys(_getClipboardText).forEach(function (key) {
|
|
234034
233868
|
if (key === "default" || key === "__esModule") return;
|
|
234035
233869
|
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
|
@@ -234041,7 +233875,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
234041
233875
|
}
|
|
234042
233876
|
});
|
|
234043
233877
|
});
|
|
234044
|
-
var _getCurrentLocation = _$$_REQUIRE(_dependencyMap[
|
|
233878
|
+
var _getCurrentLocation = _$$_REQUIRE(_dependencyMap[8], "./permissions/getCurrentLocation/getCurrentLocation");
|
|
234045
233879
|
Object.keys(_getCurrentLocation).forEach(function (key) {
|
|
234046
233880
|
if (key === "default" || key === "__esModule") return;
|
|
234047
233881
|
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
|
@@ -234053,7 +233887,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
234053
233887
|
}
|
|
234054
233888
|
});
|
|
234055
233889
|
});
|
|
234056
|
-
var _setClipboardText = _$$_REQUIRE(_dependencyMap[
|
|
233890
|
+
var _setClipboardText = _$$_REQUIRE(_dependencyMap[9], "./permissions/setClipboardText/setClipboardText");
|
|
234057
233891
|
Object.keys(_setClipboardText).forEach(function (key) {
|
|
234058
233892
|
if (key === "default" || key === "__esModule") return;
|
|
234059
233893
|
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
|
@@ -234065,7 +233899,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
234065
233899
|
}
|
|
234066
233900
|
});
|
|
234067
233901
|
});
|
|
234068
|
-
var _openCamera = _$$_REQUIRE(_dependencyMap[
|
|
233902
|
+
var _openCamera = _$$_REQUIRE(_dependencyMap[10], "./permissions/openCamera/openCamera");
|
|
234069
233903
|
Object.keys(_openCamera).forEach(function (key) {
|
|
234070
233904
|
if (key === "default" || key === "__esModule") return;
|
|
234071
233905
|
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
|
@@ -234077,7 +233911,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
234077
233911
|
}
|
|
234078
233912
|
});
|
|
234079
233913
|
});
|
|
234080
|
-
var _getDeviceId = _$$_REQUIRE(_dependencyMap[
|
|
233914
|
+
var _getDeviceId = _$$_REQUIRE(_dependencyMap[11], "./getDeviceId");
|
|
234081
233915
|
Object.keys(_getDeviceId).forEach(function (key) {
|
|
234082
233916
|
if (key === "default" || key === "__esModule") return;
|
|
234083
233917
|
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
|
@@ -234089,7 +233923,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
234089
233923
|
}
|
|
234090
233924
|
});
|
|
234091
233925
|
});
|
|
234092
|
-
var _getOperationalEnvironment = _$$_REQUIRE(_dependencyMap[
|
|
233926
|
+
var _getOperationalEnvironment = _$$_REQUIRE(_dependencyMap[12], "./getOperationalEnvironment");
|
|
234093
233927
|
Object.keys(_getOperationalEnvironment).forEach(function (key) {
|
|
234094
233928
|
if (key === "default" || key === "__esModule") return;
|
|
234095
233929
|
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
|
@@ -234101,7 +233935,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
234101
233935
|
}
|
|
234102
233936
|
});
|
|
234103
233937
|
});
|
|
234104
|
-
var _getTossAppVersion = _$$_REQUIRE(_dependencyMap[
|
|
233938
|
+
var _getTossAppVersion = _$$_REQUIRE(_dependencyMap[13], "./getTossAppVersion");
|
|
234105
233939
|
Object.keys(_getTossAppVersion).forEach(function (key) {
|
|
234106
233940
|
if (key === "default" || key === "__esModule") return;
|
|
234107
233941
|
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
|
@@ -234113,7 +233947,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
234113
233947
|
}
|
|
234114
233948
|
});
|
|
234115
233949
|
});
|
|
234116
|
-
var _getTossShareLink = _$$_REQUIRE(_dependencyMap[
|
|
233950
|
+
var _getTossShareLink = _$$_REQUIRE(_dependencyMap[14], "./getTossShareLink");
|
|
234117
233951
|
Object.keys(_getTossShareLink).forEach(function (key) {
|
|
234118
233952
|
if (key === "default" || key === "__esModule") return;
|
|
234119
233953
|
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
|
@@ -234125,7 +233959,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
234125
233959
|
}
|
|
234126
233960
|
});
|
|
234127
233961
|
});
|
|
234128
|
-
var _iap = _$$_REQUIRE(_dependencyMap[
|
|
233962
|
+
var _iap = _$$_REQUIRE(_dependencyMap[15], "./iap");
|
|
234129
233963
|
Object.keys(_iap).forEach(function (key) {
|
|
234130
233964
|
if (key === "default" || key === "__esModule") return;
|
|
234131
233965
|
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
|
@@ -234137,7 +233971,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
234137
233971
|
}
|
|
234138
233972
|
});
|
|
234139
233973
|
});
|
|
234140
|
-
var _isMinVersionSupported = _$$_REQUIRE(_dependencyMap[
|
|
233974
|
+
var _isMinVersionSupported = _$$_REQUIRE(_dependencyMap[16], "./isMinVersionSupported");
|
|
234141
233975
|
Object.keys(_isMinVersionSupported).forEach(function (key) {
|
|
234142
233976
|
if (key === "default" || key === "__esModule") return;
|
|
234143
233977
|
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
|
@@ -234149,7 +233983,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
234149
233983
|
}
|
|
234150
233984
|
});
|
|
234151
233985
|
});
|
|
234152
|
-
var _saveBase64Data = _$$_REQUIRE(_dependencyMap[
|
|
233986
|
+
var _saveBase64Data = _$$_REQUIRE(_dependencyMap[17], "./saveBase64Data");
|
|
234153
233987
|
Object.keys(_saveBase64Data).forEach(function (key) {
|
|
234154
233988
|
if (key === "default" || key === "__esModule") return;
|
|
234155
233989
|
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
|
@@ -234161,7 +233995,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
234161
233995
|
}
|
|
234162
233996
|
});
|
|
234163
233997
|
});
|
|
234164
|
-
var _setDeviceOrientation = _$$_REQUIRE(_dependencyMap[
|
|
233998
|
+
var _setDeviceOrientation = _$$_REQUIRE(_dependencyMap[18], "./setDeviceOrientation");
|
|
234165
233999
|
Object.keys(_setDeviceOrientation).forEach(function (key) {
|
|
234166
234000
|
if (key === "default" || key === "__esModule") return;
|
|
234167
234001
|
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
|
@@ -234173,7 +234007,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
234173
234007
|
}
|
|
234174
234008
|
});
|
|
234175
234009
|
});
|
|
234176
|
-
var _storage = _$$_REQUIRE(_dependencyMap[
|
|
234010
|
+
var _storage = _$$_REQUIRE(_dependencyMap[19], "./storage");
|
|
234177
234011
|
Object.keys(_storage).forEach(function (key) {
|
|
234178
234012
|
if (key === "default" || key === "__esModule") return;
|
|
234179
234013
|
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
|
@@ -234185,7 +234019,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
234185
234019
|
}
|
|
234186
234020
|
});
|
|
234187
234021
|
});
|
|
234188
|
-
var _openGameCenterLeaderboard = _$$_REQUIRE(_dependencyMap[
|
|
234022
|
+
var _openGameCenterLeaderboard = _$$_REQUIRE(_dependencyMap[20], "./openGameCenterLeaderboard");
|
|
234189
234023
|
Object.keys(_openGameCenterLeaderboard).forEach(function (key) {
|
|
234190
234024
|
if (key === "default" || key === "__esModule") return;
|
|
234191
234025
|
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
|
@@ -234197,7 +234031,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
234197
234031
|
}
|
|
234198
234032
|
});
|
|
234199
234033
|
});
|
|
234200
|
-
var _getGameCenterGameProfile = _$$_REQUIRE(_dependencyMap[
|
|
234034
|
+
var _getGameCenterGameProfile = _$$_REQUIRE(_dependencyMap[21], "./getGameCenterGameProfile");
|
|
234201
234035
|
Object.keys(_getGameCenterGameProfile).forEach(function (key) {
|
|
234202
234036
|
if (key === "default" || key === "__esModule") return;
|
|
234203
234037
|
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
|
@@ -234209,7 +234043,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
234209
234043
|
}
|
|
234210
234044
|
});
|
|
234211
234045
|
});
|
|
234212
|
-
var _submitGameCenterLeaderBoardScore = _$$_REQUIRE(_dependencyMap[
|
|
234046
|
+
var _submitGameCenterLeaderBoardScore = _$$_REQUIRE(_dependencyMap[22], "./submitGameCenterLeaderBoardScore");
|
|
234213
234047
|
Object.keys(_submitGameCenterLeaderBoardScore).forEach(function (key) {
|
|
234214
234048
|
if (key === "default" || key === "__esModule") return;
|
|
234215
234049
|
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
|
@@ -234221,7 +234055,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
234221
234055
|
}
|
|
234222
234056
|
});
|
|
234223
234057
|
});
|
|
234224
|
-
var _getUserKeyForGame = _$$_REQUIRE(_dependencyMap[
|
|
234058
|
+
var _getUserKeyForGame = _$$_REQUIRE(_dependencyMap[23], "./getUserKeyForGame");
|
|
234225
234059
|
Object.keys(_getUserKeyForGame).forEach(function (key) {
|
|
234226
234060
|
if (key === "default" || key === "__esModule") return;
|
|
234227
234061
|
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
|
@@ -234233,7 +234067,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
234233
234067
|
}
|
|
234234
234068
|
});
|
|
234235
234069
|
});
|
|
234236
|
-
var _grantPromotionRewardForGame = _$$_REQUIRE(_dependencyMap[
|
|
234070
|
+
var _grantPromotionRewardForGame = _$$_REQUIRE(_dependencyMap[24], "./grantPromotionRewardForGame");
|
|
234237
234071
|
Object.keys(_grantPromotionRewardForGame).forEach(function (key) {
|
|
234238
234072
|
if (key === "default" || key === "__esModule") return;
|
|
234239
234073
|
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
|
@@ -234245,7 +234079,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
234245
234079
|
}
|
|
234246
234080
|
});
|
|
234247
234081
|
});
|
|
234248
|
-
var _getIsTossLoginIntegratedService = _$$_REQUIRE(_dependencyMap[
|
|
234082
|
+
var _getIsTossLoginIntegratedService = _$$_REQUIRE(_dependencyMap[25], "./getIsTossLoginIntegratedService");
|
|
234249
234083
|
Object.keys(_getIsTossLoginIntegratedService).forEach(function (key) {
|
|
234250
234084
|
if (key === "default" || key === "__esModule") return;
|
|
234251
234085
|
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
|
@@ -234257,7 +234091,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
234257
234091
|
}
|
|
234258
234092
|
});
|
|
234259
234093
|
});
|
|
234260
|
-
var _contactsViral = _$$_REQUIRE(_dependencyMap[
|
|
234094
|
+
var _contactsViral = _$$_REQUIRE(_dependencyMap[26], "../native-event-emitter/contactsViral");
|
|
234261
234095
|
Object.keys(_contactsViral).forEach(function (key) {
|
|
234262
234096
|
if (key === "default" || key === "__esModule") return;
|
|
234263
234097
|
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
|
@@ -234269,7 +234103,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
234269
234103
|
}
|
|
234270
234104
|
});
|
|
234271
234105
|
});
|
|
234272
|
-
var _appsInTossSignTossCert = _$$_REQUIRE(_dependencyMap[
|
|
234106
|
+
var _appsInTossSignTossCert = _$$_REQUIRE(_dependencyMap[27], "./appsInTossSignTossCert");
|
|
234273
234107
|
Object.keys(_appsInTossSignTossCert).forEach(function (key) {
|
|
234274
234108
|
if (key === "default" || key === "__esModule") return;
|
|
234275
234109
|
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
|
@@ -234285,175 +234119,10 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
234285
234119
|
checkoutPayment: _checkoutPayment.checkoutPayment
|
|
234286
234120
|
};
|
|
234287
234121
|
var GoogleAdMob = exports.GoogleAdMob = {
|
|
234288
|
-
loadAdMobInterstitialAd: _googleAdMob.loadAdMobInterstitialAd,
|
|
234289
|
-
showAdMobInterstitialAd: _googleAdMob.showAdMobInterstitialAd,
|
|
234290
|
-
loadAdMobRewardedAd: _googleAdMob.loadAdMobRewardedAd,
|
|
234291
|
-
showAdMobRewardedAd: _googleAdMob.showAdMobRewardedAd,
|
|
234292
234122
|
loadAppsInTossAdMob: _googleAdMobV.loadAppsInTossAdMob,
|
|
234293
234123
|
showAppsInTossAdMob: _googleAdMobV.showAppsInTossAdMob
|
|
234294
234124
|
};
|
|
234295
|
-
},2622,[2623,
|
|
234296
|
-
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
|
|
234297
|
-
Object.defineProperty(exports, "__esModule", {
|
|
234298
|
-
value: true
|
|
234299
|
-
});
|
|
234300
|
-
exports.loadAdMobInterstitialAd = loadAdMobInterstitialAd;
|
|
234301
|
-
exports.loadAdMobRewardedAd = loadAdMobRewardedAd;
|
|
234302
|
-
exports.showAdMobInterstitialAd = showAdMobInterstitialAd;
|
|
234303
|
-
exports.showAdMobRewardedAd = showAdMobRewardedAd;
|
|
234304
|
-
var _esToolkit = _$$_REQUIRE(_dependencyMap[0], "es-toolkit");
|
|
234305
|
-
var _appBridge = _$$_REQUIRE(_dependencyMap[1], "../../native-event-emitter/internal/appBridge");
|
|
234306
|
-
var _getOperationalEnvironment = _$$_REQUIRE(_dependencyMap[2], "../getOperationalEnvironment");
|
|
234307
|
-
var _isMinVersionSupported = _$$_REQUIRE(_dependencyMap[3], "../isMinVersionSupported");
|
|
234308
|
-
function loadAdMobInterstitialAd(params) {
|
|
234309
|
-
if (!loadAdMobInterstitialAd.isSupported()) {
|
|
234310
|
-
params.onError(new Error(UNSUPPORTED_ERROR_MESSAGE));
|
|
234311
|
-
return _esToolkit.noop;
|
|
234312
|
-
}
|
|
234313
|
-
var onEvent = params.onEvent,
|
|
234314
|
-
onError = params.onError,
|
|
234315
|
-
options = params.options;
|
|
234316
|
-
var unregisterCallbacks = _appBridge.INTERNAL__appBridgeHandler.invokeAppBridgeMethod('loadAdMobInterstitialAd', options, {
|
|
234317
|
-
onAdClicked: function onAdClicked() {
|
|
234318
|
-
onEvent({
|
|
234319
|
-
type: 'clicked'
|
|
234320
|
-
});
|
|
234321
|
-
},
|
|
234322
|
-
onAdDismissed: function onAdDismissed() {
|
|
234323
|
-
onEvent({
|
|
234324
|
-
type: 'dismissed'
|
|
234325
|
-
});
|
|
234326
|
-
},
|
|
234327
|
-
onAdFailedToShow: function onAdFailedToShow() {
|
|
234328
|
-
onEvent({
|
|
234329
|
-
type: 'failedToShow'
|
|
234330
|
-
});
|
|
234331
|
-
},
|
|
234332
|
-
onAdImpression: function onAdImpression() {
|
|
234333
|
-
onEvent({
|
|
234334
|
-
type: 'impression'
|
|
234335
|
-
});
|
|
234336
|
-
},
|
|
234337
|
-
onAdShow: function onAdShow() {
|
|
234338
|
-
onEvent({
|
|
234339
|
-
type: 'show'
|
|
234340
|
-
});
|
|
234341
|
-
},
|
|
234342
|
-
onSuccess: function onSuccess(result) {
|
|
234343
|
-
return onEvent({
|
|
234344
|
-
type: 'loaded',
|
|
234345
|
-
data: result
|
|
234346
|
-
});
|
|
234347
|
-
},
|
|
234348
|
-
onError: onError
|
|
234349
|
-
});
|
|
234350
|
-
return unregisterCallbacks;
|
|
234351
|
-
}
|
|
234352
|
-
function showAdMobInterstitialAd(params) {
|
|
234353
|
-
if (!showAdMobInterstitialAd.isSupported()) {
|
|
234354
|
-
params.onError(new Error(UNSUPPORTED_ERROR_MESSAGE));
|
|
234355
|
-
return _esToolkit.noop;
|
|
234356
|
-
}
|
|
234357
|
-
var onEvent = params.onEvent,
|
|
234358
|
-
onError = params.onError,
|
|
234359
|
-
options = params.options;
|
|
234360
|
-
var unregisterCallbacks = _appBridge.INTERNAL__appBridgeHandler.invokeAppBridgeMethod('showAdMobInterstitialAd', options, {
|
|
234361
|
-
onSuccess: function onSuccess() {
|
|
234362
|
-
return onEvent({
|
|
234363
|
-
type: 'requested'
|
|
234364
|
-
});
|
|
234365
|
-
},
|
|
234366
|
-
onError: onError
|
|
234367
|
-
});
|
|
234368
|
-
return unregisterCallbacks;
|
|
234369
|
-
}
|
|
234370
|
-
function loadAdMobRewardedAd(params) {
|
|
234371
|
-
if (!loadAdMobRewardedAd.isSupported()) {
|
|
234372
|
-
params.onError(new Error(UNSUPPORTED_ERROR_MESSAGE));
|
|
234373
|
-
return _esToolkit.noop;
|
|
234374
|
-
}
|
|
234375
|
-
var onEvent = params.onEvent,
|
|
234376
|
-
onError = params.onError,
|
|
234377
|
-
options = params.options;
|
|
234378
|
-
var unregisterCallbacks = _appBridge.INTERNAL__appBridgeHandler.invokeAppBridgeMethod('loadAdMobRewardedAd', options, {
|
|
234379
|
-
onAdClicked: function onAdClicked() {
|
|
234380
|
-
onEvent({
|
|
234381
|
-
type: 'clicked'
|
|
234382
|
-
});
|
|
234383
|
-
},
|
|
234384
|
-
onAdDismissed: function onAdDismissed() {
|
|
234385
|
-
onEvent({
|
|
234386
|
-
type: 'dismissed'
|
|
234387
|
-
});
|
|
234388
|
-
},
|
|
234389
|
-
onAdFailedToShow: function onAdFailedToShow() {
|
|
234390
|
-
onEvent({
|
|
234391
|
-
type: 'failedToShow'
|
|
234392
|
-
});
|
|
234393
|
-
},
|
|
234394
|
-
onAdImpression: function onAdImpression() {
|
|
234395
|
-
onEvent({
|
|
234396
|
-
type: 'impression'
|
|
234397
|
-
});
|
|
234398
|
-
},
|
|
234399
|
-
onAdShow: function onAdShow() {
|
|
234400
|
-
onEvent({
|
|
234401
|
-
type: 'show'
|
|
234402
|
-
});
|
|
234403
|
-
},
|
|
234404
|
-
onUserEarnedReward: function onUserEarnedReward() {
|
|
234405
|
-
onEvent({
|
|
234406
|
-
type: 'userEarnedReward'
|
|
234407
|
-
});
|
|
234408
|
-
},
|
|
234409
|
-
onSuccess: function onSuccess(result) {
|
|
234410
|
-
return onEvent({
|
|
234411
|
-
type: 'loaded',
|
|
234412
|
-
data: result
|
|
234413
|
-
});
|
|
234414
|
-
},
|
|
234415
|
-
onError: onError
|
|
234416
|
-
});
|
|
234417
|
-
return unregisterCallbacks;
|
|
234418
|
-
}
|
|
234419
|
-
function showAdMobRewardedAd(params) {
|
|
234420
|
-
if (!showAdMobRewardedAd.isSupported()) {
|
|
234421
|
-
params.onError(new Error(UNSUPPORTED_ERROR_MESSAGE));
|
|
234422
|
-
return _esToolkit.noop;
|
|
234423
|
-
}
|
|
234424
|
-
var onEvent = params.onEvent,
|
|
234425
|
-
onError = params.onError,
|
|
234426
|
-
options = params.options;
|
|
234427
|
-
var unregisterCallbacks = _appBridge.INTERNAL__appBridgeHandler.invokeAppBridgeMethod('showAdMobRewardedAd', options, {
|
|
234428
|
-
onSuccess: function onSuccess() {
|
|
234429
|
-
return onEvent({
|
|
234430
|
-
type: 'requested'
|
|
234431
|
-
});
|
|
234432
|
-
},
|
|
234433
|
-
onError: onError
|
|
234434
|
-
});
|
|
234435
|
-
return unregisterCallbacks;
|
|
234436
|
-
}
|
|
234437
|
-
var ANDROID_GOOGLE_AD_MOB_SUPPORTED_VERSION = '5.209.0';
|
|
234438
|
-
var IOS_GOOGLE_AD_MOB_SUPPORTED_VERSION = '5.209.0';
|
|
234439
|
-
var UNSUPPORTED_ERROR_MESSAGE = 'This feature is not supported in the current environment';
|
|
234440
|
-
var ENVIRONMENT = (0, _getOperationalEnvironment.getOperationalEnvironment)();
|
|
234441
|
-
function createIsSupported() {
|
|
234442
|
-
return function () {
|
|
234443
|
-
if (ENVIRONMENT !== 'toss') {
|
|
234444
|
-
return false;
|
|
234445
|
-
}
|
|
234446
|
-
return (0, _isMinVersionSupported.isMinVersionSupported)({
|
|
234447
|
-
android: ANDROID_GOOGLE_AD_MOB_SUPPORTED_VERSION,
|
|
234448
|
-
ios: IOS_GOOGLE_AD_MOB_SUPPORTED_VERSION
|
|
234449
|
-
});
|
|
234450
|
-
};
|
|
234451
|
-
}
|
|
234452
|
-
loadAdMobInterstitialAd.isSupported = createIsSupported();
|
|
234453
|
-
loadAdMobRewardedAd.isSupported = createIsSupported();
|
|
234454
|
-
showAdMobInterstitialAd.isSupported = createIsSupported();
|
|
234455
|
-
showAdMobRewardedAd.isSupported = createIsSupported();
|
|
234456
|
-
},2623,[1261,2619,2610,2592],"../../../.yarn/__virtual__/@apps-in-toss-native-modules-virtual-e56741e8de/1/packages/apps-in-toss/native-modules/src/AppsInTossModule/native-modules/ads/googleAdMob.ts");
|
|
234125
|
+
},2622,[2623,2596,2580,2590,2591,2587,2586,2585,2588,2583,2589,2612,2610,2611,2594,2625,2592,2597,2595,2626,2601,2599,2602,2603,2605,2604,2627,2598],"../../../.yarn/__virtual__/@apps-in-toss-native-modules-virtual-e56741e8de/1/packages/apps-in-toss/native-modules/src/AppsInTossModule/native-modules/index.ts");
|
|
234457
234126
|
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
|
|
234458
234127
|
Object.defineProperty(exports, "__esModule", {
|
|
234459
234128
|
value: true
|
|
@@ -234556,7 +234225,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
234556
234225
|
}
|
|
234557
234226
|
loadAppsInTossAdMob.isSupported = createIsSupported();
|
|
234558
234227
|
showAppsInTossAdMob.isSupported = createIsSupported();
|
|
234559
|
-
},
|
|
234228
|
+
},2623,[1261,2624,2619,2610,2592],"../../../.yarn/__virtual__/@apps-in-toss-native-modules-virtual-e56741e8de/1/packages/apps-in-toss/native-modules/src/AppsInTossModule/native-modules/ads/googleAdMobV2.ts");
|
|
234560
234229
|
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
|
|
234561
234230
|
Object.defineProperty(exports, "__esModule", {
|
|
234562
234231
|
value: true
|
|
@@ -234570,7 +234239,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
234570
234239
|
return null;
|
|
234571
234240
|
}
|
|
234572
234241
|
}
|
|
234573
|
-
},
|
|
234242
|
+
},2624,[2],"../../../.yarn/__virtual__/@apps-in-toss-native-modules-virtual-e56741e8de/1/packages/apps-in-toss/native-modules/src/utils/getReferrer.ts");
|
|
234574
234243
|
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
|
|
234575
234244
|
var _interopRequireDefault = _$$_REQUIRE(_dependencyMap[0], "@babel/runtime/helpers/interopRequireDefault");
|
|
234576
234245
|
Object.defineProperty(exports, "__esModule", {
|
|
@@ -234765,7 +234434,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
234765
234434
|
getCompletedOrRefundedOrders: getCompletedOrRefundedOrders,
|
|
234766
234435
|
completeProductGrant: completeProductGrant
|
|
234767
234436
|
};
|
|
234768
|
-
},
|
|
234437
|
+
},2625,[1,16,1261,2580,2592,2619],"../../../.yarn/__virtual__/@apps-in-toss-native-modules-virtual-e56741e8de/1/packages/apps-in-toss/native-modules/src/AppsInTossModule/native-modules/iap.ts");
|
|
234769
234438
|
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
|
|
234770
234439
|
Object.defineProperty(exports, "__esModule", {
|
|
234771
234440
|
value: true
|
|
@@ -234797,7 +234466,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
234797
234466
|
removeItem: removeItem,
|
|
234798
234467
|
clearItems: clearItems
|
|
234799
234468
|
};
|
|
234800
|
-
},
|
|
234469
|
+
},2626,[2580],"../../../.yarn/__virtual__/@apps-in-toss-native-modules-virtual-e56741e8de/1/packages/apps-in-toss/native-modules/src/AppsInTossModule/native-modules/storage.ts");
|
|
234801
234470
|
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
|
|
234802
234471
|
Object.defineProperty(exports, "__esModule", {
|
|
234803
234472
|
value: true
|
|
@@ -234833,7 +234502,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
234833
234502
|
});
|
|
234834
234503
|
return unregisterCallbacks;
|
|
234835
234504
|
}
|
|
234836
|
-
},
|
|
234505
|
+
},2627,[2619,2592],"../../../.yarn/__virtual__/@apps-in-toss-native-modules-virtual-e56741e8de/1/packages/apps-in-toss/native-modules/src/AppsInTossModule/native-event-emitter/contactsViral.ts");
|
|
234837
234506
|
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
|
|
234838
234507
|
Object.defineProperty(exports, "__esModule", {
|
|
234839
234508
|
value: true
|
|
@@ -234843,7 +234512,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
234843
234512
|
function onVisibilityChangedByTransparentServiceWeb(eventParams) {
|
|
234844
234513
|
return _appsInTossEvent.appsInTossEvent.addEventListener('onVisibilityChangedByTransparentServiceWeb', eventParams);
|
|
234845
234514
|
}
|
|
234846
|
-
},
|
|
234515
|
+
},2628,[2615],"../../../.yarn/__virtual__/@apps-in-toss-native-modules-virtual-e56741e8de/1/packages/apps-in-toss/native-modules/src/AppsInTossModule/native-event-emitter/internal/onVisibilityChangedByTransparentServiceWeb.ts");
|
|
234847
234516
|
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
|
|
234848
234517
|
Object.defineProperty(exports, "__esModule", {
|
|
234849
234518
|
value: true
|
|
@@ -234858,7 +234527,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
234858
234527
|
context.keys = function () {
|
|
234859
234528
|
return Array.from(files.keys());
|
|
234860
234529
|
};
|
|
234861
|
-
},2630,
|
|
234530
|
+
},2629,[2630,2631],"react-native/context.ts");
|
|
234862
234531
|
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
|
|
234863
234532
|
Object.defineProperty(exports, "__esModule", {
|
|
234864
234533
|
value: true
|
|
@@ -234891,7 +234560,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
234891
234560
|
})
|
|
234892
234561
|
});
|
|
234893
234562
|
}
|
|
234894
|
-
},
|
|
234563
|
+
},2630,[1256,18,9],"react-native/pages/index.tsx");
|
|
234895
234564
|
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
|
|
234896
234565
|
var _interopRequireDefault = _$$_REQUIRE(_dependencyMap[0], "@babel/runtime/helpers/interopRequireDefault");
|
|
234897
234566
|
Object.defineProperty(exports, "__esModule", {
|
|
@@ -234904,6 +234573,6 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
234904
234573
|
}
|
|
234905
234574
|
});
|
|
234906
234575
|
var _index = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[1], "./index"));
|
|
234907
|
-
},
|
|
234576
|
+
},2631,[1,2630],"react-native/pages/_404.tsx");
|
|
234908
234577
|
__r(133);
|
|
234909
234578
|
__r(0);
|