@apps-in-toss/web-framework 2.5.2 → 2.6.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/prebuilt/dev.android.rn84.js +223 -81
- package/dist/prebuilt/dev.ios.rn84.js +223 -81
- package/dist/prebuilt/prod.android.rn72.js +73 -1
- package/dist/prebuilt/prod.android.rn84.js +73 -1
- package/dist/prebuilt/prod.ios.rn72.js +73 -1
- package/dist/prebuilt/prod.ios.rn84.js +73 -1
- package/package.json +8 -8
|
@@ -137143,7 +137143,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
137143
137143
|
var _default = exports.default = _framework.AppsInToss.registerApp(AppContainer, {
|
|
137144
137144
|
context: _context.context
|
|
137145
137145
|
});
|
|
137146
|
-
},1282,[1283,
|
|
137146
|
+
},1282,[1283,2599,9],"src/_app.tsx");
|
|
137147
137147
|
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
|
|
137148
137148
|
"use strict";
|
|
137149
137149
|
|
|
@@ -141435,7 +141435,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
141435
141435
|
..._$$_REQUIRE(_dependencyMap[5], "@apps-in-toss/native-modules"),
|
|
141436
141436
|
..._$$_REQUIRE(_dependencyMap[19], "@apps-in-toss/types")
|
|
141437
141437
|
});
|
|
141438
|
-
},1283,[21,20,17,48,1284,1285,2,1472,34,6,9,2440,2521,615,2524,
|
|
141438
|
+
},1283,[21,20,17,48,1284,1285,2,1472,34,6,9,2440,2521,615,2524,2573,2581,2598,2449,1286,754],"../../../../.yarn/__virtual__/@apps-in-toss-framework-virtual-afbad361af/1/packages/apps-in-toss/framework/dist/index.cjs");
|
|
141439
141439
|
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
|
|
141440
141440
|
"use strict";
|
|
141441
141441
|
|
|
@@ -142093,6 +142093,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
142093
142093
|
closeView: () => closeView,
|
|
142094
142094
|
contactsViral: () => contactsViral,
|
|
142095
142095
|
eventLog: () => eventLog,
|
|
142096
|
+
fetchAlbumItems: () => fetchAlbumItems,
|
|
142096
142097
|
fetchAlbumPhotos: () => fetchAlbumPhotos,
|
|
142097
142098
|
fetchContacts: () => fetchContacts,
|
|
142098
142099
|
generateHapticFeedback: () => generateHapticFeedback,
|
|
@@ -142119,6 +142120,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
142119
142120
|
onVisibilityChangedByTransparentServiceWeb: () => onVisibilityChangedByTransparentServiceWeb,
|
|
142120
142121
|
openCamera: () => openCamera,
|
|
142121
142122
|
openGameCenterLeaderboard: () => openGameCenterLeaderboard,
|
|
142123
|
+
openPDFViewer: () => openPDFViewer,
|
|
142122
142124
|
openURL: () => openURL2,
|
|
142123
142125
|
processProductGrant: () => processProductGrant,
|
|
142124
142126
|
requestNotificationAgreement: () => requestNotificationAgreement,
|
|
@@ -143073,7 +143075,43 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
143073
143075
|
});
|
|
143074
143076
|
return _saveBase64Data.apply(this, arguments);
|
|
143075
143077
|
}
|
|
143076
|
-
function
|
|
143078
|
+
function openPDFViewer(_x16) {
|
|
143079
|
+
return _openPDFViewer.apply(this, arguments);
|
|
143080
|
+
}
|
|
143081
|
+
function _openPDFViewer() {
|
|
143082
|
+
_openPDFViewer = _asyncToGenerator(function* (params) {
|
|
143083
|
+
var isSupported = isMinVersionSupported({
|
|
143084
|
+
android: "5.261.0",
|
|
143085
|
+
ios: "5.261.0"
|
|
143086
|
+
});
|
|
143087
|
+
if (!isSupported) {
|
|
143088
|
+
var error = new Error("\uD1A0\uC2A4\uC571 5.261.0 \uBC84\uC804 \uC774\uC0C1\uC774 \uD544\uC694\uD574\uC694.");
|
|
143089
|
+
error.code = "UNSUPPORTED_APP_VERSION";
|
|
143090
|
+
throw error;
|
|
143091
|
+
}
|
|
143092
|
+
return safePostMessage("openPDFViewer", params);
|
|
143093
|
+
});
|
|
143094
|
+
return _openPDFViewer.apply(this, arguments);
|
|
143095
|
+
}
|
|
143096
|
+
function fetchAlbumItems(_x17) {
|
|
143097
|
+
return _fetchAlbumItems.apply(this, arguments);
|
|
143098
|
+
}
|
|
143099
|
+
function _fetchAlbumItems() {
|
|
143100
|
+
_fetchAlbumItems = _asyncToGenerator(function* (options) {
|
|
143101
|
+
var isSupported = isMinVersionSupported({
|
|
143102
|
+
android: "5.261.0",
|
|
143103
|
+
ios: "5.261.0"
|
|
143104
|
+
});
|
|
143105
|
+
if (!isSupported) {
|
|
143106
|
+
var error = new Error("\uD1A0\uC2A4\uC571 5.261.0 \uBC84\uC804 \uC774\uC0C1\uC774 \uD544\uC694\uD574\uC694.");
|
|
143107
|
+
error.code = "UNSUPPORTED_APP_VERSION";
|
|
143108
|
+
throw error;
|
|
143109
|
+
}
|
|
143110
|
+
return safePostMessage("fetchAlbumItems", options ?? {});
|
|
143111
|
+
});
|
|
143112
|
+
return _fetchAlbumItems.apply(this, arguments);
|
|
143113
|
+
}
|
|
143114
|
+
function setDeviceOrientation(_x18) {
|
|
143077
143115
|
return _setDeviceOrientation.apply(this, arguments);
|
|
143078
143116
|
}
|
|
143079
143117
|
function _setDeviceOrientation() {
|
|
@@ -143167,7 +143205,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
143167
143205
|
});
|
|
143168
143206
|
return _getGameCenterGameProfile.apply(this, arguments);
|
|
143169
143207
|
}
|
|
143170
|
-
function submitGameCenterLeaderBoardScore(
|
|
143208
|
+
function submitGameCenterLeaderBoardScore(_x19) {
|
|
143171
143209
|
return _submitGameCenterLeaderBoardScore.apply(this, arguments);
|
|
143172
143210
|
}
|
|
143173
143211
|
function _submitGameCenterLeaderBoardScore() {
|
|
@@ -143213,7 +143251,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
143213
143251
|
function isGrantPromotionRewardError(error) {
|
|
143214
143252
|
return typeof error === "object" && error !== null && "code" in error && typeof error.code === "string" && "message" in error && typeof error.message === "string";
|
|
143215
143253
|
}
|
|
143216
|
-
function grantPromotionReward(
|
|
143254
|
+
function grantPromotionReward(_x20) {
|
|
143217
143255
|
return _grantPromotionReward.apply(this, arguments);
|
|
143218
143256
|
}
|
|
143219
143257
|
function _grantPromotionReward() {
|
|
@@ -143240,7 +143278,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
143240
143278
|
});
|
|
143241
143279
|
return _grantPromotionReward.apply(this, arguments);
|
|
143242
143280
|
}
|
|
143243
|
-
function grantPromotionRewardForGame(
|
|
143281
|
+
function grantPromotionRewardForGame(_x21) {
|
|
143244
143282
|
return _grantPromotionRewardForGame.apply(this, arguments);
|
|
143245
143283
|
}
|
|
143246
143284
|
function _grantPromotionRewardForGame() {
|
|
@@ -143291,7 +143329,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
143291
143329
|
});
|
|
143292
143330
|
return unregisterCallbacks;
|
|
143293
143331
|
}
|
|
143294
|
-
function appsInTossSignTossCert(
|
|
143332
|
+
function appsInTossSignTossCert(_x22) {
|
|
143295
143333
|
return _appsInTossSignTossCert.apply(this, arguments);
|
|
143296
143334
|
}
|
|
143297
143335
|
function _appsInTossSignTossCert() {
|
|
@@ -143423,7 +143461,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
143423
143461
|
function generateHapticFeedback(options) {
|
|
143424
143462
|
return CommonModule2.generateHapticFeedback(options);
|
|
143425
143463
|
}
|
|
143426
|
-
function share(
|
|
143464
|
+
function share(_x23) {
|
|
143427
143465
|
return _share.apply(this, arguments);
|
|
143428
143466
|
}
|
|
143429
143467
|
function _share() {
|
|
@@ -143435,7 +143473,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
143435
143473
|
function setSecureScreen(options) {
|
|
143436
143474
|
return CommonModule2.setSecureScreen(options);
|
|
143437
143475
|
}
|
|
143438
|
-
function setScreenAwakeMode(
|
|
143476
|
+
function setScreenAwakeMode(_x24) {
|
|
143439
143477
|
return _setScreenAwakeMode.apply(this, arguments);
|
|
143440
143478
|
}
|
|
143441
143479
|
function _setScreenAwakeMode() {
|
|
@@ -143447,7 +143485,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
143447
143485
|
function getNetworkStatus() {
|
|
143448
143486
|
return CommonModule2.getNetworkStatus();
|
|
143449
143487
|
}
|
|
143450
|
-
function setIosSwipeGestureEnabled(
|
|
143488
|
+
function setIosSwipeGestureEnabled(_x25) {
|
|
143451
143489
|
return _setIosSwipeGestureEnabled.apply(this, arguments);
|
|
143452
143490
|
}
|
|
143453
143491
|
function _setIosSwipeGestureEnabled() {
|
|
@@ -143500,6 +143538,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
143500
143538
|
closeView,
|
|
143501
143539
|
contactsViral,
|
|
143502
143540
|
eventLog,
|
|
143541
|
+
fetchAlbumItems,
|
|
143503
143542
|
fetchAlbumPhotos,
|
|
143504
143543
|
fetchContacts,
|
|
143505
143544
|
generateHapticFeedback,
|
|
@@ -143526,6 +143565,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
143526
143565
|
onVisibilityChangedByTransparentServiceWeb,
|
|
143527
143566
|
openCamera,
|
|
143528
143567
|
openGameCenterLeaderboard,
|
|
143568
|
+
openPDFViewer,
|
|
143529
143569
|
openURL,
|
|
143530
143570
|
processProductGrant,
|
|
143531
143571
|
requestNotificationAgreement,
|
|
@@ -211722,7 +211762,29 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
211722
211762
|
}
|
|
211723
211763
|
});
|
|
211724
211764
|
});
|
|
211725
|
-
var
|
|
211765
|
+
var _openPDFViewer = _$$_REQUIRE(_dependencyMap[24], "./MiniAppModule/native-modules/openPDFViewer");
|
|
211766
|
+
Object.keys(_openPDFViewer).forEach(function (key) {
|
|
211767
|
+
if (key === "default" || key === "__esModule") return;
|
|
211768
|
+
if (key in exports && exports[key] === _openPDFViewer[key]) return;
|
|
211769
|
+
Object.defineProperty(exports, key, {
|
|
211770
|
+
enumerable: true,
|
|
211771
|
+
get: function () {
|
|
211772
|
+
return _openPDFViewer[key];
|
|
211773
|
+
}
|
|
211774
|
+
});
|
|
211775
|
+
});
|
|
211776
|
+
var _fetchAlbumItems = _$$_REQUIRE(_dependencyMap[25], "./MiniAppModule/native-modules/fetchAlbumItems");
|
|
211777
|
+
Object.keys(_fetchAlbumItems).forEach(function (key) {
|
|
211778
|
+
if (key === "default" || key === "__esModule") return;
|
|
211779
|
+
if (key in exports && exports[key] === _fetchAlbumItems[key]) return;
|
|
211780
|
+
Object.defineProperty(exports, key, {
|
|
211781
|
+
enumerable: true,
|
|
211782
|
+
get: function () {
|
|
211783
|
+
return _fetchAlbumItems[key];
|
|
211784
|
+
}
|
|
211785
|
+
});
|
|
211786
|
+
});
|
|
211787
|
+
var _appsInTossSignTossCert = _$$_REQUIRE(_dependencyMap[26], "./MiniAppModule/native-modules/appsInTossSignTossCert");
|
|
211726
211788
|
Object.keys(_appsInTossSignTossCert).forEach(function (key) {
|
|
211727
211789
|
if (key === "default" || key === "__esModule") return;
|
|
211728
211790
|
if (key in exports && exports[key] === _appsInTossSignTossCert[key]) return;
|
|
@@ -211733,7 +211795,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
211733
211795
|
}
|
|
211734
211796
|
});
|
|
211735
211797
|
});
|
|
211736
|
-
var _getGameCenterGameProfile = _$$_REQUIRE(_dependencyMap[
|
|
211798
|
+
var _getGameCenterGameProfile = _$$_REQUIRE(_dependencyMap[27], "./MiniAppModule/native-modules/getGameCenterGameProfile");
|
|
211737
211799
|
Object.keys(_getGameCenterGameProfile).forEach(function (key) {
|
|
211738
211800
|
if (key === "default" || key === "__esModule") return;
|
|
211739
211801
|
if (key in exports && exports[key] === _getGameCenterGameProfile[key]) return;
|
|
@@ -211744,7 +211806,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
211744
211806
|
}
|
|
211745
211807
|
});
|
|
211746
211808
|
});
|
|
211747
|
-
var _openGameCenterLeaderboard = _$$_REQUIRE(_dependencyMap[
|
|
211809
|
+
var _openGameCenterLeaderboard = _$$_REQUIRE(_dependencyMap[28], "./MiniAppModule/native-modules/openGameCenterLeaderboard");
|
|
211748
211810
|
Object.keys(_openGameCenterLeaderboard).forEach(function (key) {
|
|
211749
211811
|
if (key === "default" || key === "__esModule") return;
|
|
211750
211812
|
if (key in exports && exports[key] === _openGameCenterLeaderboard[key]) return;
|
|
@@ -211755,7 +211817,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
211755
211817
|
}
|
|
211756
211818
|
});
|
|
211757
211819
|
});
|
|
211758
|
-
var _submitGameCenterLeaderBoardScore = _$$_REQUIRE(_dependencyMap[
|
|
211820
|
+
var _submitGameCenterLeaderBoardScore = _$$_REQUIRE(_dependencyMap[29], "./MiniAppModule/native-modules/submitGameCenterLeaderBoardScore");
|
|
211759
211821
|
Object.keys(_submitGameCenterLeaderBoardScore).forEach(function (key) {
|
|
211760
211822
|
if (key === "default" || key === "__esModule") return;
|
|
211761
211823
|
if (key in exports && exports[key] === _submitGameCenterLeaderBoardScore[key]) return;
|
|
@@ -211766,7 +211828,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
211766
211828
|
}
|
|
211767
211829
|
});
|
|
211768
211830
|
});
|
|
211769
|
-
var _getAnonymousKey = _$$_REQUIRE(_dependencyMap[
|
|
211831
|
+
var _getAnonymousKey = _$$_REQUIRE(_dependencyMap[30], "./MiniAppModule/native-modules/getAnonymousKey");
|
|
211770
211832
|
Object.keys(_getAnonymousKey).forEach(function (key) {
|
|
211771
211833
|
if (key === "default" || key === "__esModule") return;
|
|
211772
211834
|
if (key in exports && exports[key] === _getAnonymousKey[key]) return;
|
|
@@ -211777,7 +211839,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
211777
211839
|
}
|
|
211778
211840
|
});
|
|
211779
211841
|
});
|
|
211780
|
-
var _getUserKeyForGame = _$$_REQUIRE(_dependencyMap[
|
|
211842
|
+
var _getUserKeyForGame = _$$_REQUIRE(_dependencyMap[31], "./MiniAppModule/native-modules/getUserKeyForGame");
|
|
211781
211843
|
Object.keys(_getUserKeyForGame).forEach(function (key) {
|
|
211782
211844
|
if (key === "default" || key === "__esModule") return;
|
|
211783
211845
|
if (key in exports && exports[key] === _getUserKeyForGame[key]) return;
|
|
@@ -211788,7 +211850,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
211788
211850
|
}
|
|
211789
211851
|
});
|
|
211790
211852
|
});
|
|
211791
|
-
var _grantPromotionReward = _$$_REQUIRE(_dependencyMap[
|
|
211853
|
+
var _grantPromotionReward = _$$_REQUIRE(_dependencyMap[32], "./MiniAppModule/native-modules/grantPromotionReward");
|
|
211792
211854
|
Object.keys(_grantPromotionReward).forEach(function (key) {
|
|
211793
211855
|
if (key === "default" || key === "__esModule") return;
|
|
211794
211856
|
if (key in exports && exports[key] === _grantPromotionReward[key]) return;
|
|
@@ -211799,7 +211861,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
211799
211861
|
}
|
|
211800
211862
|
});
|
|
211801
211863
|
});
|
|
211802
|
-
var _grantPromotionRewardForGame = _$$_REQUIRE(_dependencyMap[
|
|
211864
|
+
var _grantPromotionRewardForGame = _$$_REQUIRE(_dependencyMap[33], "./MiniAppModule/native-modules/grantPromotionRewardForGame");
|
|
211803
211865
|
Object.keys(_grantPromotionRewardForGame).forEach(function (key) {
|
|
211804
211866
|
if (key === "default" || key === "__esModule") return;
|
|
211805
211867
|
if (key in exports && exports[key] === _grantPromotionRewardForGame[key]) return;
|
|
@@ -211810,7 +211872,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
211810
211872
|
}
|
|
211811
211873
|
});
|
|
211812
211874
|
});
|
|
211813
|
-
var _getIsTossLoginIntegratedService = _$$_REQUIRE(_dependencyMap[
|
|
211875
|
+
var _getIsTossLoginIntegratedService = _$$_REQUIRE(_dependencyMap[34], "./MiniAppModule/native-modules/getIsTossLoginIntegratedService");
|
|
211814
211876
|
Object.keys(_getIsTossLoginIntegratedService).forEach(function (key) {
|
|
211815
211877
|
if (key === "default" || key === "__esModule") return;
|
|
211816
211878
|
if (key in exports && exports[key] === _getIsTossLoginIntegratedService[key]) return;
|
|
@@ -211821,7 +211883,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
211821
211883
|
}
|
|
211822
211884
|
});
|
|
211823
211885
|
});
|
|
211824
|
-
var _getServerTime = _$$_REQUIRE(_dependencyMap[
|
|
211886
|
+
var _getServerTime = _$$_REQUIRE(_dependencyMap[35], "./MiniAppModule/native-modules/getServerTime");
|
|
211825
211887
|
Object.keys(_getServerTime).forEach(function (key) {
|
|
211826
211888
|
if (key === "default" || key === "__esModule") return;
|
|
211827
211889
|
if (key in exports && exports[key] === _getServerTime[key]) return;
|
|
@@ -211832,7 +211894,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
211832
211894
|
}
|
|
211833
211895
|
});
|
|
211834
211896
|
});
|
|
211835
|
-
var _requestReview = _$$_REQUIRE(_dependencyMap[
|
|
211897
|
+
var _requestReview = _$$_REQUIRE(_dependencyMap[36], "./MiniAppModule/native-modules/requestReview");
|
|
211836
211898
|
Object.keys(_requestReview).forEach(function (key) {
|
|
211837
211899
|
if (key === "default" || key === "__esModule") return;
|
|
211838
211900
|
if (key in exports && exports[key] === _requestReview[key]) return;
|
|
@@ -211843,7 +211905,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
211843
211905
|
}
|
|
211844
211906
|
});
|
|
211845
211907
|
});
|
|
211846
|
-
},2524,[2525,2533,2534,2535,2536,2537,2538,2539,2540,2541,2542,2543,2545,2546,2547,2548,2549,2550,2551,2554,2555,2556,2557,2558,2559,2560,2562,
|
|
211908
|
+
},2524,[2525,2533,2534,2535,2536,2537,2538,2539,2540,2541,2542,2543,2545,2546,2547,2548,2549,2550,2551,2554,2555,2556,2557,2558,2559,2560,2561,2562,2564,2565,2566,2567,2568,2569,2570,2571,2572],"../../../../.yarn/__virtual__/@apps-in-toss-native-modules-virtual-e56741e8de/1/packages/apps-in-toss/native-modules/src/async-bridges.ts");
|
|
211847
211909
|
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
|
|
211848
211910
|
var _interopRequireDefault = _$$_REQUIRE(_dependencyMap[0], "@babel/runtime/helpers/interopRequireDefault");
|
|
211849
211911
|
Object.defineProperty(exports, "__esModule", {
|
|
@@ -212617,6 +212679,62 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
212617
212679
|
return _saveBase64Data.apply(this, arguments);
|
|
212618
212680
|
}
|
|
212619
212681
|
},2558,[1,17,2552,2527],"../../../../.yarn/__virtual__/@apps-in-toss-native-modules-virtual-e56741e8de/1/packages/apps-in-toss/native-modules/src/MiniAppModule/native-modules/saveBase64Data.ts");
|
|
212682
|
+
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
|
|
212683
|
+
var _interopRequireDefault = _$$_REQUIRE(_dependencyMap[0], "@babel/runtime/helpers/interopRequireDefault");
|
|
212684
|
+
Object.defineProperty(exports, "__esModule", {
|
|
212685
|
+
value: true
|
|
212686
|
+
});
|
|
212687
|
+
exports.openPDFViewer = openPDFViewer;
|
|
212688
|
+
var _asyncToGenerator2 = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[1], "@babel/runtime/helpers/asyncToGenerator"));
|
|
212689
|
+
var _isMinVersionSupported = _$$_REQUIRE(_dependencyMap[2], "./isMinVersionSupported");
|
|
212690
|
+
var _natives = _$$_REQUIRE(_dependencyMap[3], "../../natives");
|
|
212691
|
+
function openPDFViewer(_x) {
|
|
212692
|
+
return _openPDFViewer.apply(this, arguments);
|
|
212693
|
+
}
|
|
212694
|
+
function _openPDFViewer() {
|
|
212695
|
+
_openPDFViewer = (0, _asyncToGenerator2.default)(function* (params) {
|
|
212696
|
+
var isSupported = (0, _isMinVersionSupported.isMinVersionSupported)({
|
|
212697
|
+
android: '5.261.0',
|
|
212698
|
+
ios: '5.261.0'
|
|
212699
|
+
});
|
|
212700
|
+
if (!isSupported) {
|
|
212701
|
+
var error = new Error('토스앱 5.261.0 버전 이상이 필요해요.');
|
|
212702
|
+
error.code = 'UNSUPPORTED_APP_VERSION';
|
|
212703
|
+
throw error;
|
|
212704
|
+
}
|
|
212705
|
+
return (0, _natives.safePostMessage)('openPDFViewer', params);
|
|
212706
|
+
});
|
|
212707
|
+
return _openPDFViewer.apply(this, arguments);
|
|
212708
|
+
}
|
|
212709
|
+
},2559,[1,17,2552,2527],"../../../../.yarn/__virtual__/@apps-in-toss-native-modules-virtual-e56741e8de/1/packages/apps-in-toss/native-modules/src/MiniAppModule/native-modules/openPDFViewer.ts");
|
|
212710
|
+
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
|
|
212711
|
+
var _interopRequireDefault = _$$_REQUIRE(_dependencyMap[0], "@babel/runtime/helpers/interopRequireDefault");
|
|
212712
|
+
Object.defineProperty(exports, "__esModule", {
|
|
212713
|
+
value: true
|
|
212714
|
+
});
|
|
212715
|
+
exports.fetchAlbumItems = fetchAlbumItems;
|
|
212716
|
+
var _asyncToGenerator2 = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[1], "@babel/runtime/helpers/asyncToGenerator"));
|
|
212717
|
+
var _isMinVersionSupported = _$$_REQUIRE(_dependencyMap[2], "./isMinVersionSupported");
|
|
212718
|
+
var _natives = _$$_REQUIRE(_dependencyMap[3], "../../natives");
|
|
212719
|
+
function fetchAlbumItems(_x) {
|
|
212720
|
+
return _fetchAlbumItems.apply(this, arguments);
|
|
212721
|
+
}
|
|
212722
|
+
function _fetchAlbumItems() {
|
|
212723
|
+
_fetchAlbumItems = (0, _asyncToGenerator2.default)(function* (options) {
|
|
212724
|
+
var isSupported = (0, _isMinVersionSupported.isMinVersionSupported)({
|
|
212725
|
+
android: '5.261.0',
|
|
212726
|
+
ios: '5.261.0'
|
|
212727
|
+
});
|
|
212728
|
+
if (!isSupported) {
|
|
212729
|
+
var error = new Error('토스앱 5.261.0 버전 이상이 필요해요.');
|
|
212730
|
+
error.code = 'UNSUPPORTED_APP_VERSION';
|
|
212731
|
+
throw error;
|
|
212732
|
+
}
|
|
212733
|
+
return (0, _natives.safePostMessage)('fetchAlbumItems', options ?? {});
|
|
212734
|
+
});
|
|
212735
|
+
return _fetchAlbumItems.apply(this, arguments);
|
|
212736
|
+
}
|
|
212737
|
+
},2560,[1,17,2552,2527],"../../../../.yarn/__virtual__/@apps-in-toss-native-modules-virtual-e56741e8de/1/packages/apps-in-toss/native-modules/src/MiniAppModule/native-modules/fetchAlbumItems.ts");
|
|
212620
212738
|
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
|
|
212621
212739
|
var _interopRequireDefault = _$$_REQUIRE(_dependencyMap[0], "@babel/runtime/helpers/interopRequireDefault");
|
|
212622
212740
|
Object.defineProperty(exports, "__esModule", {
|
|
@@ -212643,7 +212761,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
212643
212761
|
});
|
|
212644
212762
|
return _appsInTossSignTossCert.apply(this, arguments);
|
|
212645
212763
|
}
|
|
212646
|
-
},
|
|
212764
|
+
},2561,[1,17,2552,2527],"../../../../.yarn/__virtual__/@apps-in-toss-native-modules-virtual-e56741e8de/1/packages/apps-in-toss/native-modules/src/MiniAppModule/native-modules/appsInTossSignTossCert.ts");
|
|
212647
212765
|
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
|
|
212648
212766
|
var _interopRequireDefault = _$$_REQUIRE(_dependencyMap[0], "@babel/runtime/helpers/interopRequireDefault");
|
|
212649
212767
|
Object.defineProperty(exports, "__esModule", {
|
|
@@ -212667,7 +212785,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
212667
212785
|
});
|
|
212668
212786
|
return _getGameCenterGameProfile.apply(this, arguments);
|
|
212669
212787
|
}
|
|
212670
|
-
},
|
|
212788
|
+
},2562,[1,17,2552,2527,2563],"../../../../.yarn/__virtual__/@apps-in-toss-native-modules-virtual-e56741e8de/1/packages/apps-in-toss/native-modules/src/MiniAppModule/native-modules/getGameCenterGameProfile.ts");
|
|
212671
212789
|
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
|
|
212672
212790
|
Object.defineProperty(exports, "__esModule", {
|
|
212673
212791
|
value: true
|
|
@@ -212694,7 +212812,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
212694
212812
|
android: '5.245.0',
|
|
212695
212813
|
ios: '5.245.0'
|
|
212696
212814
|
};
|
|
212697
|
-
},
|
|
212815
|
+
},2563,[],"../../../../.yarn/__virtual__/@apps-in-toss-native-modules-virtual-e56741e8de/1/packages/apps-in-toss/native-modules/src/MiniAppModule/constants.ts");
|
|
212698
212816
|
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
|
|
212699
212817
|
var _interopRequireDefault = _$$_REQUIRE(_dependencyMap[0], "@babel/runtime/helpers/interopRequireDefault");
|
|
212700
212818
|
Object.defineProperty(exports, "__esModule", {
|
|
@@ -212724,7 +212842,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
212724
212842
|
});
|
|
212725
212843
|
return _openGameCenterLeaderboard.apply(this, arguments);
|
|
212726
212844
|
}
|
|
212727
|
-
},
|
|
212845
|
+
},2564,[1,17,2,2552,2563],"../../../../.yarn/__virtual__/@apps-in-toss-native-modules-virtual-e56741e8de/1/packages/apps-in-toss/native-modules/src/MiniAppModule/native-modules/openGameCenterLeaderboard.ts");
|
|
212728
212846
|
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
|
|
212729
212847
|
var _interopRequireDefault = _$$_REQUIRE(_dependencyMap[0], "@babel/runtime/helpers/interopRequireDefault");
|
|
212730
212848
|
Object.defineProperty(exports, "__esModule", {
|
|
@@ -212748,7 +212866,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
212748
212866
|
});
|
|
212749
212867
|
return _submitGameCenterLeaderBoardScore.apply(this, arguments);
|
|
212750
212868
|
}
|
|
212751
|
-
},
|
|
212869
|
+
},2565,[1,17,2552,2527,2563],"../../../../.yarn/__virtual__/@apps-in-toss-native-modules-virtual-e56741e8de/1/packages/apps-in-toss/native-modules/src/MiniAppModule/native-modules/submitGameCenterLeaderBoardScore.ts");
|
|
212752
212870
|
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
|
|
212753
212871
|
var _interopRequireDefault = _$$_REQUIRE(_dependencyMap[0], "@babel/runtime/helpers/interopRequireDefault");
|
|
212754
212872
|
Object.defineProperty(exports, "__esModule", {
|
|
@@ -212780,7 +212898,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
212780
212898
|
});
|
|
212781
212899
|
return _getAnonymousKey.apply(this, arguments);
|
|
212782
212900
|
}
|
|
212783
|
-
},
|
|
212901
|
+
},2566,[1,17,2552,2527,2563],"../../../../.yarn/__virtual__/@apps-in-toss-native-modules-virtual-e56741e8de/1/packages/apps-in-toss/native-modules/src/MiniAppModule/native-modules/getAnonymousKey.ts");
|
|
212784
212902
|
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
|
|
212785
212903
|
var _interopRequireDefault = _$$_REQUIRE(_dependencyMap[0], "@babel/runtime/helpers/interopRequireDefault");
|
|
212786
212904
|
Object.defineProperty(exports, "__esModule", {
|
|
@@ -212798,7 +212916,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
212798
212916
|
});
|
|
212799
212917
|
return _getUserKeyForGame.apply(this, arguments);
|
|
212800
212918
|
}
|
|
212801
|
-
},
|
|
212919
|
+
},2567,[1,17,2566],"../../../../.yarn/__virtual__/@apps-in-toss-native-modules-virtual-e56741e8de/1/packages/apps-in-toss/native-modules/src/MiniAppModule/native-modules/getUserKeyForGame.ts");
|
|
212802
212920
|
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
|
|
212803
212921
|
var _interopRequireDefault = _$$_REQUIRE(_dependencyMap[0], "@babel/runtime/helpers/interopRequireDefault");
|
|
212804
212922
|
Object.defineProperty(exports, "__esModule", {
|
|
@@ -212839,7 +212957,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
212839
212957
|
});
|
|
212840
212958
|
return _grantPromotionReward.apply(this, arguments);
|
|
212841
212959
|
}
|
|
212842
|
-
},
|
|
212960
|
+
},2568,[1,17,2552,2527,2563],"../../../../.yarn/__virtual__/@apps-in-toss-native-modules-virtual-e56741e8de/1/packages/apps-in-toss/native-modules/src/MiniAppModule/native-modules/grantPromotionReward.ts");
|
|
212843
212961
|
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
|
|
212844
212962
|
var _interopRequireDefault = _$$_REQUIRE(_dependencyMap[0], "@babel/runtime/helpers/interopRequireDefault");
|
|
212845
212963
|
Object.defineProperty(exports, "__esModule", {
|
|
@@ -212857,7 +212975,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
212857
212975
|
});
|
|
212858
212976
|
return _grantPromotionRewardForGame.apply(this, arguments);
|
|
212859
212977
|
}
|
|
212860
|
-
},
|
|
212978
|
+
},2569,[1,17,2568],"../../../../.yarn/__virtual__/@apps-in-toss-native-modules-virtual-e56741e8de/1/packages/apps-in-toss/native-modules/src/MiniAppModule/native-modules/grantPromotionRewardForGame.ts");
|
|
212861
212979
|
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
|
|
212862
212980
|
var _interopRequireDefault = _$$_REQUIRE(_dependencyMap[0], "@babel/runtime/helpers/interopRequireDefault");
|
|
212863
212981
|
Object.defineProperty(exports, "__esModule", {
|
|
@@ -212882,7 +213000,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
212882
213000
|
});
|
|
212883
213001
|
return _getIsTossLoginIntegratedService.apply(this, arguments);
|
|
212884
213002
|
}
|
|
212885
|
-
},
|
|
213003
|
+
},2570,[1,17,2552,2527,2563],"../../../../.yarn/__virtual__/@apps-in-toss-native-modules-virtual-e56741e8de/1/packages/apps-in-toss/native-modules/src/MiniAppModule/native-modules/getIsTossLoginIntegratedService.ts");
|
|
212886
213004
|
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
|
|
212887
213005
|
var _interopRequireDefault = _$$_REQUIRE(_dependencyMap[0], "@babel/runtime/helpers/interopRequireDefault");
|
|
212888
213006
|
Object.defineProperty(exports, "__esModule", {
|
|
@@ -212907,7 +213025,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
212907
213025
|
return _getServerTime.apply(this, arguments);
|
|
212908
213026
|
}
|
|
212909
213027
|
getServerTime.isSupported = () => (0, _isMinVersionSupported.isMinVersionSupported)(_constants.GET_SERVER_TIME_MIN_VERSION);
|
|
212910
|
-
},
|
|
213028
|
+
},2571,[1,17,2552,2527,2563],"../../../../.yarn/__virtual__/@apps-in-toss-native-modules-virtual-e56741e8de/1/packages/apps-in-toss/native-modules/src/MiniAppModule/native-modules/getServerTime.ts");
|
|
212911
213029
|
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
|
|
212912
213030
|
var _interopRequireDefault = _$$_REQUIRE(_dependencyMap[0], "@babel/runtime/helpers/interopRequireDefault");
|
|
212913
213031
|
Object.defineProperty(exports, "__esModule", {
|
|
@@ -212941,7 +213059,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
212941
213059
|
return _requestReview.apply(this, arguments);
|
|
212942
213060
|
}
|
|
212943
213061
|
requestReview.isSupported = () => (0, _isMinVersionSupported.isMinVersionSupported)(MIN_VERSION);
|
|
212944
|
-
},
|
|
213062
|
+
},2572,[1,17,2552,2527],"../../../../.yarn/__virtual__/@apps-in-toss-native-modules-virtual-e56741e8de/1/packages/apps-in-toss/native-modules/src/MiniAppModule/native-modules/requestReview.ts");
|
|
212945
213063
|
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
|
|
212946
213064
|
Object.defineProperty(exports, "__esModule", {
|
|
212947
213065
|
value: true
|
|
@@ -213023,7 +213141,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
213023
213141
|
}
|
|
213024
213142
|
});
|
|
213025
213143
|
});
|
|
213026
|
-
},
|
|
213144
|
+
},2573,[2574,2575,2576,2577,2578,2579,2580],"../../../../.yarn/__virtual__/@apps-in-toss-native-modules-virtual-e56741e8de/1/packages/apps-in-toss/native-modules/src/constant-bridges.ts");
|
|
213027
213145
|
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
|
|
213028
213146
|
Object.defineProperty(exports, "__esModule", {
|
|
213029
213147
|
value: true
|
|
@@ -213041,7 +213159,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
213041
213159
|
function replaceUnderbarToHypen(locale) {
|
|
213042
213160
|
return locale.replace(/_/g, '-');
|
|
213043
213161
|
}
|
|
213044
|
-
},
|
|
213162
|
+
},2574,[34,2526],"../../../../.yarn/__virtual__/@apps-in-toss-native-modules-virtual-e56741e8de/1/packages/apps-in-toss/native-modules/src/BedrockModule/native-modules/natives/getLocale.ts");
|
|
213045
213163
|
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
|
|
213046
213164
|
Object.defineProperty(exports, "__esModule", {
|
|
213047
213165
|
value: true
|
|
@@ -213051,7 +213169,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
213051
213169
|
function getSchemeUri() {
|
|
213052
213170
|
return _BedrockModule.CommonModule.getConstants().schemeUri;
|
|
213053
213171
|
}
|
|
213054
|
-
},
|
|
213172
|
+
},2575,[2526],"../../../../.yarn/__virtual__/@apps-in-toss-native-modules-virtual-e56741e8de/1/packages/apps-in-toss/native-modules/src/BedrockModule/native-modules/natives/getSchemeUri.ts");
|
|
213055
213173
|
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
|
|
213056
213174
|
Object.defineProperty(exports, "__esModule", {
|
|
213057
213175
|
value: true
|
|
@@ -213061,7 +213179,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
213061
213179
|
function getPlatformOS() {
|
|
213062
213180
|
return _reactNative.Platform.OS;
|
|
213063
213181
|
}
|
|
213064
|
-
},
|
|
213182
|
+
},2576,[34],"../../../../.yarn/__virtual__/@apps-in-toss-native-modules-virtual-e56741e8de/1/packages/apps-in-toss/native-modules/src/BedrockModule/native-modules/natives/getPlatformOS.ts");
|
|
213065
213183
|
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
|
|
213066
213184
|
Object.defineProperty(exports, "__esModule", {
|
|
213067
213185
|
value: true
|
|
@@ -213071,7 +213189,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
213071
213189
|
function getOperationalEnvironment() {
|
|
213072
213190
|
return _natives.MiniAppModule.getConstants().operationalEnvironment;
|
|
213073
213191
|
}
|
|
213074
|
-
},
|
|
213192
|
+
},2577,[2527],"../../../../.yarn/__virtual__/@apps-in-toss-native-modules-virtual-e56741e8de/1/packages/apps-in-toss/native-modules/src/MiniAppModule/native-modules/getOperationalEnvironment.ts");
|
|
213075
213193
|
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
|
|
213076
213194
|
Object.defineProperty(exports, "__esModule", {
|
|
213077
213195
|
value: true
|
|
@@ -213081,7 +213199,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
213081
213199
|
function getTossAppVersion() {
|
|
213082
213200
|
return _natives.MiniAppModule.getConstants().tossAppVersion;
|
|
213083
213201
|
}
|
|
213084
|
-
},
|
|
213202
|
+
},2578,[2527],"../../../../.yarn/__virtual__/@apps-in-toss-native-modules-virtual-e56741e8de/1/packages/apps-in-toss/native-modules/src/MiniAppModule/native-modules/getTossAppVersion.ts");
|
|
213085
213203
|
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
|
|
213086
213204
|
Object.defineProperty(exports, "__esModule", {
|
|
213087
213205
|
value: true
|
|
@@ -213091,7 +213209,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
213091
213209
|
function getDeviceId() {
|
|
213092
213210
|
return _natives.MiniAppModule.getConstants().deviceId;
|
|
213093
213211
|
}
|
|
213094
|
-
},
|
|
213212
|
+
},2579,[2527],"../../../../.yarn/__virtual__/@apps-in-toss-native-modules-virtual-e56741e8de/1/packages/apps-in-toss/native-modules/src/MiniAppModule/native-modules/getDeviceId.ts");
|
|
213095
213213
|
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
|
|
213096
213214
|
Object.defineProperty(exports, "__esModule", {
|
|
213097
213215
|
value: true
|
|
@@ -213101,7 +213219,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
213101
213219
|
function getGroupId() {
|
|
213102
213220
|
return _natives.MiniAppModule.getConstants().groupId;
|
|
213103
213221
|
}
|
|
213104
|
-
},
|
|
213222
|
+
},2580,[2527],"../../../../.yarn/__virtual__/@apps-in-toss-native-modules-virtual-e56741e8de/1/packages/apps-in-toss/native-modules/src/MiniAppModule/native-modules/getGroupId.ts");
|
|
213105
213223
|
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
|
|
213106
213224
|
Object.defineProperty(exports, "__esModule", {
|
|
213107
213225
|
value: true
|
|
@@ -213139,7 +213257,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
213139
213257
|
}
|
|
213140
213258
|
});
|
|
213141
213259
|
});
|
|
213142
|
-
},
|
|
213260
|
+
},2581,[2582,2597,2594],"../../../../.yarn/__virtual__/@apps-in-toss-native-modules-virtual-e56741e8de/1/packages/apps-in-toss/native-modules/src/event-bridges.ts");
|
|
213143
213261
|
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
|
|
213144
213262
|
Object.defineProperty(exports, "__esModule", {
|
|
213145
213263
|
value: true
|
|
@@ -213152,7 +213270,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
213152
213270
|
}
|
|
213153
213271
|
startUpdateLocation.openPermissionDialog = _nativeModules.getCurrentLocation.openPermissionDialog;
|
|
213154
213272
|
startUpdateLocation.getPermission = _nativeModules.getCurrentLocation.getPermission;
|
|
213155
|
-
},
|
|
213273
|
+
},2582,[2583,2589],"../../../../.yarn/__virtual__/@apps-in-toss-native-modules-virtual-e56741e8de/1/packages/apps-in-toss/native-modules/src/MiniAppModule/native-event-emitter/startUpdateLocation.ts");
|
|
213156
213274
|
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
|
|
213157
213275
|
Object.defineProperty(exports, "__esModule", {
|
|
213158
213276
|
value: true
|
|
@@ -213163,7 +213281,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
213163
213281
|
var _AppBridgeCallbackEvent = _$$_REQUIRE(_dependencyMap[2], "./internal/AppBridgeCallbackEvent");
|
|
213164
213282
|
var _VisibilityChangedByTransparentServiceWebEvent = _$$_REQUIRE(_dependencyMap[3], "./internal/VisibilityChangedByTransparentServiceWebEvent");
|
|
213165
213283
|
var appsInTossEvent = exports.appsInTossEvent = new _reactNative.GraniteEvent([new _UpdateLocationEvent.UpdateLocationEvent(), new _AppBridgeCallbackEvent.AppBridgeCallbackEvent(), new _VisibilityChangedByTransparentServiceWebEvent.VisibilityChangedByTransparentServiceWebEvent()]);
|
|
213166
|
-
},
|
|
213284
|
+
},2583,[2,2584,2585,2588],"../../../../.yarn/__virtual__/@apps-in-toss-native-modules-virtual-e56741e8de/1/packages/apps-in-toss/native-modules/src/MiniAppModule/native-event-emitter/appsInTossEvent.ts");
|
|
213167
213285
|
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
|
|
213168
213286
|
var _interopRequireDefault = _$$_REQUIRE(_dependencyMap[0], "@babel/runtime/helpers/interopRequireDefault");
|
|
213169
213287
|
Object.defineProperty(exports, "__esModule", {
|
|
@@ -213230,7 +213348,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
213230
213348
|
}
|
|
213231
213349
|
}]);
|
|
213232
213350
|
}(_reactNative.GraniteEventDefinition);
|
|
213233
|
-
},
|
|
213351
|
+
},2584,[1,21,20,22,25,26,1286,2,2527,2541],"../../../../.yarn/__virtual__/@apps-in-toss-native-modules-virtual-e56741e8de/1/packages/apps-in-toss/native-modules/src/MiniAppModule/native-event-emitter/event-plugins/UpdateLocationEvent.ts");
|
|
213234
213352
|
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
|
|
213235
213353
|
var _interopRequireDefault = _$$_REQUIRE(_dependencyMap[0], "@babel/runtime/helpers/interopRequireDefault");
|
|
213236
213354
|
Object.defineProperty(exports, "__esModule", {
|
|
@@ -213290,7 +213408,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
213290
213408
|
}
|
|
213291
213409
|
}]);
|
|
213292
213410
|
}(_reactNative.GraniteEventDefinition);
|
|
213293
|
-
},
|
|
213411
|
+
},2585,[1,21,20,22,25,26,2,2586,2527],"../../../../.yarn/__virtual__/@apps-in-toss-native-modules-virtual-e56741e8de/1/packages/apps-in-toss/native-modules/src/MiniAppModule/native-event-emitter/internal/AppBridgeCallbackEvent.ts");
|
|
213294
213412
|
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
|
|
213295
213413
|
var _interopRequireDefault = _$$_REQUIRE(_dependencyMap[0], "@babel/runtime/helpers/interopRequireDefault");
|
|
213296
213414
|
Object.defineProperty(exports, "__esModule", {
|
|
@@ -213355,7 +213473,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
213355
213473
|
unregisterCallback,
|
|
213356
213474
|
getCallbackIds
|
|
213357
213475
|
};
|
|
213358
|
-
},
|
|
213476
|
+
},2586,[1,48,90,2527,2587],"../../../../.yarn/__virtual__/@apps-in-toss-native-modules-virtual-e56741e8de/1/packages/apps-in-toss/native-modules/src/MiniAppModule/native-event-emitter/internal/appBridge.ts");
|
|
213359
213477
|
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
|
|
213360
213478
|
Object.defineProperty(exports, "__esModule", {
|
|
213361
213479
|
value: true
|
|
@@ -213364,7 +213482,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
213364
213482
|
function generateUUID(placeholder) {
|
|
213365
213483
|
return placeholder ? (placeholder ^ Math.random() * 16 >> placeholder / 4).toString(16) : (String(1e7) + 1e3 + 4e3 + 8e3 + 1e11).replace(/[018]/g, generateUUID);
|
|
213366
213484
|
}
|
|
213367
|
-
},
|
|
213485
|
+
},2587,[],"../../../../.yarn/__virtual__/@apps-in-toss-native-modules-virtual-e56741e8de/1/packages/apps-in-toss/native-modules/src/utils/generateUUID.ts");
|
|
213368
213486
|
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
|
|
213369
213487
|
var _interopRequireDefault = _$$_REQUIRE(_dependencyMap[0], "@babel/runtime/helpers/interopRequireDefault");
|
|
213370
213488
|
Object.defineProperty(exports, "__esModule", {
|
|
@@ -213422,7 +213540,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
213422
213540
|
}
|
|
213423
213541
|
}]);
|
|
213424
213542
|
}(_reactNative.GraniteEventDefinition);
|
|
213425
|
-
},
|
|
213543
|
+
},2588,[1,21,20,22,25,26,2,2527],"../../../../.yarn/__virtual__/@apps-in-toss-native-modules-virtual-e56741e8de/1/packages/apps-in-toss/native-modules/src/MiniAppModule/native-event-emitter/internal/VisibilityChangedByTransparentServiceWebEvent.ts");
|
|
213426
213544
|
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
|
|
213427
213545
|
Object.defineProperty(exports, "__esModule", {
|
|
213428
213546
|
value: true
|
|
@@ -213637,7 +213755,31 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
213637
213755
|
}
|
|
213638
213756
|
});
|
|
213639
213757
|
});
|
|
213640
|
-
var
|
|
213758
|
+
var _openPDFViewer = _$$_REQUIRE(_dependencyMap[18], "./openPDFViewer");
|
|
213759
|
+
Object.keys(_openPDFViewer).forEach(function (key) {
|
|
213760
|
+
if (key === "default" || key === "__esModule") return;
|
|
213761
|
+
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
|
213762
|
+
if (key in exports && exports[key] === _openPDFViewer[key]) return;
|
|
213763
|
+
Object.defineProperty(exports, key, {
|
|
213764
|
+
enumerable: true,
|
|
213765
|
+
get: function () {
|
|
213766
|
+
return _openPDFViewer[key];
|
|
213767
|
+
}
|
|
213768
|
+
});
|
|
213769
|
+
});
|
|
213770
|
+
var _fetchAlbumItems = _$$_REQUIRE(_dependencyMap[19], "./fetchAlbumItems");
|
|
213771
|
+
Object.keys(_fetchAlbumItems).forEach(function (key) {
|
|
213772
|
+
if (key === "default" || key === "__esModule") return;
|
|
213773
|
+
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
|
213774
|
+
if (key in exports && exports[key] === _fetchAlbumItems[key]) return;
|
|
213775
|
+
Object.defineProperty(exports, key, {
|
|
213776
|
+
enumerable: true,
|
|
213777
|
+
get: function () {
|
|
213778
|
+
return _fetchAlbumItems[key];
|
|
213779
|
+
}
|
|
213780
|
+
});
|
|
213781
|
+
});
|
|
213782
|
+
var _setDeviceOrientation = _$$_REQUIRE(_dependencyMap[20], "./setDeviceOrientation");
|
|
213641
213783
|
Object.keys(_setDeviceOrientation).forEach(function (key) {
|
|
213642
213784
|
if (key === "default" || key === "__esModule") return;
|
|
213643
213785
|
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
|
@@ -213649,7 +213791,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
213649
213791
|
}
|
|
213650
213792
|
});
|
|
213651
213793
|
});
|
|
213652
|
-
var _storage = _$$_REQUIRE(_dependencyMap[
|
|
213794
|
+
var _storage = _$$_REQUIRE(_dependencyMap[21], "./storage");
|
|
213653
213795
|
Object.keys(_storage).forEach(function (key) {
|
|
213654
213796
|
if (key === "default" || key === "__esModule") return;
|
|
213655
213797
|
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
|
@@ -213661,7 +213803,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
213661
213803
|
}
|
|
213662
213804
|
});
|
|
213663
213805
|
});
|
|
213664
|
-
var _openGameCenterLeaderboard = _$$_REQUIRE(_dependencyMap[
|
|
213806
|
+
var _openGameCenterLeaderboard = _$$_REQUIRE(_dependencyMap[22], "./openGameCenterLeaderboard");
|
|
213665
213807
|
Object.keys(_openGameCenterLeaderboard).forEach(function (key) {
|
|
213666
213808
|
if (key === "default" || key === "__esModule") return;
|
|
213667
213809
|
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
|
@@ -213673,7 +213815,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
213673
213815
|
}
|
|
213674
213816
|
});
|
|
213675
213817
|
});
|
|
213676
|
-
var _getGameCenterGameProfile = _$$_REQUIRE(_dependencyMap[
|
|
213818
|
+
var _getGameCenterGameProfile = _$$_REQUIRE(_dependencyMap[23], "./getGameCenterGameProfile");
|
|
213677
213819
|
Object.keys(_getGameCenterGameProfile).forEach(function (key) {
|
|
213678
213820
|
if (key === "default" || key === "__esModule") return;
|
|
213679
213821
|
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
|
@@ -213685,7 +213827,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
213685
213827
|
}
|
|
213686
213828
|
});
|
|
213687
213829
|
});
|
|
213688
|
-
var _submitGameCenterLeaderBoardScore = _$$_REQUIRE(_dependencyMap[
|
|
213830
|
+
var _submitGameCenterLeaderBoardScore = _$$_REQUIRE(_dependencyMap[24], "./submitGameCenterLeaderBoardScore");
|
|
213689
213831
|
Object.keys(_submitGameCenterLeaderBoardScore).forEach(function (key) {
|
|
213690
213832
|
if (key === "default" || key === "__esModule") return;
|
|
213691
213833
|
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
|
@@ -213697,7 +213839,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
213697
213839
|
}
|
|
213698
213840
|
});
|
|
213699
213841
|
});
|
|
213700
|
-
var _getAnonymousKey = _$$_REQUIRE(_dependencyMap[
|
|
213842
|
+
var _getAnonymousKey = _$$_REQUIRE(_dependencyMap[25], "./getAnonymousKey");
|
|
213701
213843
|
Object.keys(_getAnonymousKey).forEach(function (key) {
|
|
213702
213844
|
if (key === "default" || key === "__esModule") return;
|
|
213703
213845
|
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
|
@@ -213709,7 +213851,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
213709
213851
|
}
|
|
213710
213852
|
});
|
|
213711
213853
|
});
|
|
213712
|
-
var _getUserKeyForGame = _$$_REQUIRE(_dependencyMap[
|
|
213854
|
+
var _getUserKeyForGame = _$$_REQUIRE(_dependencyMap[26], "./getUserKeyForGame");
|
|
213713
213855
|
Object.keys(_getUserKeyForGame).forEach(function (key) {
|
|
213714
213856
|
if (key === "default" || key === "__esModule") return;
|
|
213715
213857
|
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
|
@@ -213721,7 +213863,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
213721
213863
|
}
|
|
213722
213864
|
});
|
|
213723
213865
|
});
|
|
213724
|
-
var _grantPromotionReward = _$$_REQUIRE(_dependencyMap[
|
|
213866
|
+
var _grantPromotionReward = _$$_REQUIRE(_dependencyMap[27], "./grantPromotionReward");
|
|
213725
213867
|
Object.keys(_grantPromotionReward).forEach(function (key) {
|
|
213726
213868
|
if (key === "default" || key === "__esModule") return;
|
|
213727
213869
|
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
|
@@ -213733,7 +213875,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
213733
213875
|
}
|
|
213734
213876
|
});
|
|
213735
213877
|
});
|
|
213736
|
-
var _grantPromotionRewardForGame = _$$_REQUIRE(_dependencyMap[
|
|
213878
|
+
var _grantPromotionRewardForGame = _$$_REQUIRE(_dependencyMap[28], "./grantPromotionRewardForGame");
|
|
213737
213879
|
Object.keys(_grantPromotionRewardForGame).forEach(function (key) {
|
|
213738
213880
|
if (key === "default" || key === "__esModule") return;
|
|
213739
213881
|
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
|
@@ -213745,7 +213887,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
213745
213887
|
}
|
|
213746
213888
|
});
|
|
213747
213889
|
});
|
|
213748
|
-
var _getIsTossLoginIntegratedService = _$$_REQUIRE(_dependencyMap[
|
|
213890
|
+
var _getIsTossLoginIntegratedService = _$$_REQUIRE(_dependencyMap[29], "./getIsTossLoginIntegratedService");
|
|
213749
213891
|
Object.keys(_getIsTossLoginIntegratedService).forEach(function (key) {
|
|
213750
213892
|
if (key === "default" || key === "__esModule") return;
|
|
213751
213893
|
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
|
@@ -213757,7 +213899,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
213757
213899
|
}
|
|
213758
213900
|
});
|
|
213759
213901
|
});
|
|
213760
|
-
var _contactsViral = _$$_REQUIRE(_dependencyMap[
|
|
213902
|
+
var _contactsViral = _$$_REQUIRE(_dependencyMap[30], "../native-event-emitter/contactsViral");
|
|
213761
213903
|
Object.keys(_contactsViral).forEach(function (key) {
|
|
213762
213904
|
if (key === "default" || key === "__esModule") return;
|
|
213763
213905
|
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
|
@@ -213769,7 +213911,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
213769
213911
|
}
|
|
213770
213912
|
});
|
|
213771
213913
|
});
|
|
213772
|
-
var _appsInTossSignTossCert = _$$_REQUIRE(_dependencyMap[
|
|
213914
|
+
var _appsInTossSignTossCert = _$$_REQUIRE(_dependencyMap[31], "./appsInTossSignTossCert");
|
|
213773
213915
|
Object.keys(_appsInTossSignTossCert).forEach(function (key) {
|
|
213774
213916
|
if (key === "default" || key === "__esModule") return;
|
|
213775
213917
|
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
|
@@ -213781,7 +213923,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
213781
213923
|
}
|
|
213782
213924
|
});
|
|
213783
213925
|
});
|
|
213784
|
-
var _getGroupId = _$$_REQUIRE(_dependencyMap[
|
|
213926
|
+
var _getGroupId = _$$_REQUIRE(_dependencyMap[32], "./getGroupId");
|
|
213785
213927
|
Object.keys(_getGroupId).forEach(function (key) {
|
|
213786
213928
|
if (key === "default" || key === "__esModule") return;
|
|
213787
213929
|
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
|
@@ -213793,7 +213935,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
213793
213935
|
}
|
|
213794
213936
|
});
|
|
213795
213937
|
});
|
|
213796
|
-
var _shareWithScheme = _$$_REQUIRE(_dependencyMap[
|
|
213938
|
+
var _shareWithScheme = _$$_REQUIRE(_dependencyMap[33], "./shareWithScheme");
|
|
213797
213939
|
Object.keys(_shareWithScheme).forEach(function (key) {
|
|
213798
213940
|
if (key === "default" || key === "__esModule") return;
|
|
213799
213941
|
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
|
@@ -213805,7 +213947,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
213805
213947
|
}
|
|
213806
213948
|
});
|
|
213807
213949
|
});
|
|
213808
|
-
var _getServerTime = _$$_REQUIRE(_dependencyMap[
|
|
213950
|
+
var _getServerTime = _$$_REQUIRE(_dependencyMap[34], "./getServerTime");
|
|
213809
213951
|
Object.keys(_getServerTime).forEach(function (key) {
|
|
213810
213952
|
if (key === "default" || key === "__esModule") return;
|
|
213811
213953
|
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
|
@@ -213817,7 +213959,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
213817
213959
|
}
|
|
213818
213960
|
});
|
|
213819
213961
|
});
|
|
213820
|
-
var _requestReview = _$$_REQUIRE(_dependencyMap[
|
|
213962
|
+
var _requestReview = _$$_REQUIRE(_dependencyMap[35], "./requestReview");
|
|
213821
213963
|
Object.keys(_requestReview).forEach(function (key) {
|
|
213822
213964
|
if (key === "default" || key === "__esModule") return;
|
|
213823
213965
|
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
|
@@ -213829,7 +213971,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
213829
213971
|
}
|
|
213830
213972
|
});
|
|
213831
213973
|
});
|
|
213832
|
-
var _requestNotificationAgreement = _$$_REQUIRE(_dependencyMap[
|
|
213974
|
+
var _requestNotificationAgreement = _$$_REQUIRE(_dependencyMap[36], "./requestNotificationAgreement");
|
|
213833
213975
|
Object.keys(_requestNotificationAgreement).forEach(function (key) {
|
|
213834
213976
|
if (key === "default" || key === "__esModule") return;
|
|
213835
213977
|
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
|
@@ -213850,7 +213992,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
213850
213992
|
showAppsInTossAdMob: _googleAdMobV.showAppsInTossAdMob,
|
|
213851
213993
|
isAppsInTossAdMobLoaded: _googleAdMobV.isAppsInTossAdMobLoaded
|
|
213852
213994
|
};
|
|
213853
|
-
},
|
|
213995
|
+
},2589,[2590,2556,2557,2550,2551,2547,2546,2545,2548,2543,2549,2579,2577,2578,2554,2592,2552,2558,2559,2560,2555,2593,2564,2562,2565,2566,2567,2568,2569,2570,2594,2561,2580,2595,2571,2572,2596],"../../../../.yarn/__virtual__/@apps-in-toss-native-modules-virtual-e56741e8de/1/packages/apps-in-toss/native-modules/src/MiniAppModule/native-modules/index.ts");
|
|
213854
213996
|
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
|
|
213855
213997
|
var _interopRequireDefault = _$$_REQUIRE(_dependencyMap[0], "@babel/runtime/helpers/interopRequireDefault");
|
|
213856
213998
|
Object.defineProperty(exports, "__esModule", {
|
|
@@ -213983,7 +214125,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
213983
214125
|
});
|
|
213984
214126
|
}
|
|
213985
214127
|
isAppsInTossAdMobLoaded.isSupported = isAppsInTossAdMobLoadedSupported;
|
|
213986
|
-
},
|
|
214128
|
+
},2590,[1,17,1287,2591,2586,2577,2552],"../../../../.yarn/__virtual__/@apps-in-toss-native-modules-virtual-e56741e8de/1/packages/apps-in-toss/native-modules/src/MiniAppModule/native-modules/ads/googleAdMobV2.ts");
|
|
213987
214129
|
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
|
|
213988
214130
|
Object.defineProperty(exports, "__esModule", {
|
|
213989
214131
|
value: true
|
|
@@ -213997,7 +214139,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
213997
214139
|
return null;
|
|
213998
214140
|
}
|
|
213999
214141
|
}
|
|
214000
|
-
},
|
|
214142
|
+
},2591,[2],"../../../../.yarn/__virtual__/@apps-in-toss-native-modules-virtual-e56741e8de/1/packages/apps-in-toss/native-modules/src/utils/getReferrer.ts");
|
|
214001
214143
|
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
|
|
214002
214144
|
var _interopRequireDefault = _$$_REQUIRE(_dependencyMap[0], "@babel/runtime/helpers/interopRequireDefault");
|
|
214003
214145
|
Object.defineProperty(exports, "__esModule", {
|
|
@@ -214248,7 +214390,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
214248
214390
|
completeProductGrant,
|
|
214249
214391
|
getSubscriptionInfo
|
|
214250
214392
|
};
|
|
214251
|
-
},
|
|
214393
|
+
},2592,[1,17,1287,2552,2527,2586],"../../../../.yarn/__virtual__/@apps-in-toss-native-modules-virtual-e56741e8de/1/packages/apps-in-toss/native-modules/src/MiniAppModule/native-modules/iap.ts");
|
|
214252
214394
|
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
|
|
214253
214395
|
Object.defineProperty(exports, "__esModule", {
|
|
214254
214396
|
value: true
|
|
@@ -214280,7 +214422,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
214280
214422
|
removeItem,
|
|
214281
214423
|
clearItems
|
|
214282
214424
|
};
|
|
214283
|
-
},
|
|
214425
|
+
},2593,[2527],"../../../../.yarn/__virtual__/@apps-in-toss-native-modules-virtual-e56741e8de/1/packages/apps-in-toss/native-modules/src/MiniAppModule/native-modules/storage.ts");
|
|
214284
214426
|
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
|
|
214285
214427
|
Object.defineProperty(exports, "__esModule", {
|
|
214286
214428
|
value: true
|
|
@@ -214316,7 +214458,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
214316
214458
|
});
|
|
214317
214459
|
return unregisterCallbacks;
|
|
214318
214460
|
}
|
|
214319
|
-
},
|
|
214461
|
+
},2594,[2586,2552],"../../../../.yarn/__virtual__/@apps-in-toss-native-modules-virtual-e56741e8de/1/packages/apps-in-toss/native-modules/src/MiniAppModule/native-event-emitter/contactsViral.ts");
|
|
214320
214462
|
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
|
|
214321
214463
|
Object.defineProperty(exports, "__esModule", {
|
|
214322
214464
|
value: true
|
|
@@ -214326,7 +214468,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
214326
214468
|
function shareWithScheme(params) {
|
|
214327
214469
|
return (0, _natives.safePostMessage)('shareWithScheme', params);
|
|
214328
214470
|
}
|
|
214329
|
-
},
|
|
214471
|
+
},2595,[2527],"../../../../.yarn/__virtual__/@apps-in-toss-native-modules-virtual-e56741e8de/1/packages/apps-in-toss/native-modules/src/MiniAppModule/native-modules/shareWithScheme.ts");
|
|
214330
214472
|
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
|
|
214331
214473
|
Object.defineProperty(exports, "__esModule", {
|
|
214332
214474
|
value: true
|
|
@@ -214360,7 +214502,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
214360
214502
|
}
|
|
214361
214503
|
});
|
|
214362
214504
|
}
|
|
214363
|
-
},
|
|
214505
|
+
},2596,[1287,2552,2586],"../../../../.yarn/__virtual__/@apps-in-toss-native-modules-virtual-e56741e8de/1/packages/apps-in-toss/native-modules/src/MiniAppModule/native-modules/requestNotificationAgreement.ts");
|
|
214364
214506
|
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
|
|
214365
214507
|
Object.defineProperty(exports, "__esModule", {
|
|
214366
214508
|
value: true
|
|
@@ -214370,7 +214512,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
214370
214512
|
function onVisibilityChangedByTransparentServiceWeb(eventParams) {
|
|
214371
214513
|
return _appsInTossEvent.appsInTossEvent.addEventListener('onVisibilityChangedByTransparentServiceWeb', eventParams);
|
|
214372
214514
|
}
|
|
214373
|
-
},
|
|
214515
|
+
},2597,[2583],"../../../../.yarn/__virtual__/@apps-in-toss-native-modules-virtual-e56741e8de/1/packages/apps-in-toss/native-modules/src/MiniAppModule/native-event-emitter/internal/onVisibilityChangedByTransparentServiceWeb.ts");
|
|
214374
214516
|
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
|
|
214375
214517
|
"use strict";
|
|
214376
214518
|
|
|
@@ -214417,12 +214559,12 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
214417
214559
|
}
|
|
214418
214560
|
\`;document.head.appendChild(e);})();
|
|
214419
214561
|
`,
|
|
214420
|
-
m = '"use strict";(()=>{var ve=class{get _window(){return typeof window<"u"?window:{ReactNativeWebView:{postMessage:()=>{}},__GRANITE_NATIVE_EMITTER:{on:()=>()=>{}},__CONSTANT_HANDLER_MAP:{}}}postMessage(e){let t=this._window.ReactNativeWebView;if(!t)throw new Error("ReactNativeWebView is not available in browser environment");t.postMessage(JSON.stringify(e))}on(e,t){let r=this._window.__GRANITE_NATIVE_EMITTER;if(!r)throw new Error("__GRANITE_NATIVE_EMITTER is not available");return r.on(e,t)}getConstant(e){let t=this._window.__CONSTANT_HANDLER_MAP;if(t&&e in t)return t[e];throw new Error(`${e} is not a constant handler`)}},E=new ve,z=()=>Math.random().toString(36).substring(2,15),$=e=>{if(e&&e.__isError){let t=new Error(e.message);for(let[r,n]of Object.entries(e))t[r]=n;return t}return e};function c(e){return(...t)=>{let r=z(),n=[],o=()=>{for(let s of n)s()};return new Promise((s,a)=>{n.push(E.on(`${e}/resolve/${r}`,i=>{o(),s(i)})),n.push(E.on(`${e}/reject/${r}`,i=>{o(),a($(i))})),E.postMessage({type:"method",functionName:e,eventId:r,args:t})})}}function D(e){return t=>{let r=z(),n=[E.on(`${e}/onEvent/${r}`,o=>{t.onEvent(o)}),E.on(`${e}/onError/${r}`,o=>{t.onError($(o))})];return E.postMessage({type:"addEventListener",functionName:e,eventId:r,args:t.options}),()=>{E.postMessage({type:"removeEventListener",functionName:e,eventId:r}),n.forEach(o=>o())}}}function v(e){return()=>E.getConstant(e)}var he=function(){return{emit:function(t,r){for(var n=this.events[t]||[],o=0,s=n.length;o<s;o++)n[o](r)},events:{},on:function(t,r){var n=this,o,s;return((o=this.events)[s=t]||(o[s]=[])).push(r),function(){var a;n.events[t]=(a=n.events[t])===null||a===void 0?void 0:a.filter(function(i){return r!==i})}}}};typeof window<"u"&&(window.__GRANITE_NATIVE_EMITTER=he());var it=c("closeView"),dt=c("generateHapticFeedback"),ct=c("share"),ut=c("setSecureScreen"),pt=c("setScreenAwakeMode"),lt=c("getNetworkStatus"),mt=c("setIosSwipeGestureEnabled"),gt=c("openURL"),ft=c("openPermissionDialog"),vt=c("getPermission"),ht=c("requestPermission"),wt=v("setClipboardText"),Et=v("getClipboardText"),At=v("fetchContacts"),bt=v("fetchAlbumPhotos"),_t=v("getCurrentLocation"),St=v("openCamera"),Ct=c("appLogin"),It=c("eventLog"),yt=c("getTossShareLink"),Tt=c("setDeviceOrientation"),Rt=c("checkoutPayment"),Lt=c("requestTossPayPaysBilling"),Pt=c("saveBase64Data"),xt=c("appsInTossSignTossCert"),Dt=c("getGameCenterGameProfile"),Nt=c("openGameCenterLeaderboard"),Mt=c("submitGameCenterLeaderBoardScore"),Ft=c("getAnonymousKey"),Gt=c("getUserKeyForGame"),Bt=c("grantPromotionReward"),kt=c("grantPromotionRewardForGame"),Ot=c("getIsTossLoginIntegratedService"),Vt=c("getServerTime"),Ht=c("requestReview"),qt=v("getLocale"),Ut=v("getSchemeUri"),Wt=v("getPlatformOS"),zt=v("getOperationalEnvironment"),$t=v("getTossAppVersion"),jt=v("getDeviceId"),Kt=v("getGroupId"),Jt=D("contactsViral"),Xt=D("startUpdateLocation"),Yt=D("onVisibilityChangedByTransparentServiceWeb");var C=class extends Error{constructor({methodName:e,message:t}){super(),this.name=`${e} permission error`,this.message=t}},j=class extends C{constructor(){super({methodName:"fetchAlbumPhotos",message:"\\uC0AC\\uC9C4\\uCCA9 \\uAD8C\\uD55C\\uC774 \\uAC70\\uBD80\\uB418\\uC5C8\\uC5B4\\uC694."})}},K=class extends C{constructor(){super({methodName:"fetchContacts",message:"\\uC5F0\\uB77D\\uCC98 \\uAD8C\\uD55C\\uC774 \\uAC70\\uBD80\\uB418\\uC5C8\\uC5B4\\uC694."})}},J=class extends C{constructor(){super({methodName:"openCamera",message:"\\uCE74\\uBA54\\uB77C \\uAD8C\\uD55C\\uC774 \\uAC70\\uBD80\\uB418\\uC5C8\\uC5B4\\uC694."})}};var V=class extends C{constructor(){super({methodName:"getCurrentLocation",message:"\\uC704\\uCE58 \\uAD8C\\uD55C\\uC774 \\uAC70\\uBD80\\uB418\\uC5C8\\uC5B4\\uC694."})}},X=V,Y=class extends C{constructor(){super({methodName:"getClipboardText",message:"\\uD074\\uB9BD\\uBCF4\\uB4DC \\uC77D\\uAE30 \\uAD8C\\uD55C\\uC774 \\uAC70\\uBD80\\uB418\\uC5C8\\uC5B4\\uC694."})}},Z=class extends C{constructor(){super({methodName:"setClipboardText",message:"\\uD074\\uB9BD\\uBCF4\\uB4DC \\uC4F0\\uAE30 \\uAD8C\\uD55C\\uC774 \\uAC70\\uBD80\\uB418\\uC5C8\\uC5B4\\uC694."})}};var we=class{get _window(){return typeof window<"u"?window:{ReactNativeWebView:{postMessage:()=>{}},__GRANITE_NATIVE_EMITTER:{on:()=>()=>{}},__CONSTANT_HANDLER_MAP:{}}}postMessage(e){let t=this._window.ReactNativeWebView;if(!t)throw new Error("ReactNativeWebView is not available in browser environment");t.postMessage(JSON.stringify(e))}on(e,t){let r=this._window.__GRANITE_NATIVE_EMITTER;if(!r)throw new Error("__GRANITE_NATIVE_EMITTER is not available");return r.on(e,t)}getConstant(e){let t=this._window.__CONSTANT_HANDLER_MAP;if(t&&e in t)return t[e];throw new Error(`${e} is not a constant handler`)}},A=new we,de=()=>Math.random().toString(36).substring(2,15),ce=e=>{if(e&&e.__isError){let t=new Error(e.message);for(let[r,n]of Object.entries(e))t[r]=n;return t}return e};function d(e){return(...t)=>{let r=de(),n=[],o=()=>{for(let s of n)s()};return new Promise((s,a)=>{n.push(A.on(`${e}/resolve/${r}`,i=>{o(),s(i)})),n.push(A.on(`${e}/reject/${r}`,i=>{o(),a(ce(i))})),A.postMessage({type:"method",functionName:e,eventId:r,args:t})})}}function b(e){return t=>{let r=de(),n=[A.on(`${e}/onEvent/${r}`,o=>{t.onEvent(o)}),A.on(`${e}/onError/${r}`,o=>{t.onError(ce(o))})];return A.postMessage({type:"addEventListener",functionName:e,eventId:r,args:t.options}),()=>{A.postMessage({type:"removeEventListener",functionName:e,eventId:r}),n.forEach(o=>o())}}}function p(e){return()=>A.getConstant(e)}var ir={getItem:d("getStorageItem"),setItem:d("setStorageItem"),removeItem:d("removeStorageItem"),clearItems:d("clearItems")},Ee=/^[v^~<>=]*?(\\d+)(?:\\.([x*]|\\d+)(?:\\.([x*]|\\d+)(?:\\.([x*]|\\d+))?(?:-([\\da-z\\\\-]+(?:\\.[\\da-z\\\\-]+)*))?(?:\\+[\\da-z\\\\-]+(?:\\.[\\da-z\\\\-]+)*)?)?)?$/i,Q=e=>["*","x","X"].includes(e),ee=e=>{let t=parseInt(e,10);return isNaN(t)?e:t},Ae=(e,t)=>typeof e==typeof t?[e,t]:[String(e),String(t)],be=(e,t)=>{if(Q(e)||Q(t))return 0;let[r,n]=Ae(ee(e),ee(t));return r>n?1:r<n?-1:0},te=e=>{if(typeof e!="string")throw new TypeError("Invalid argument: expected a string");let t=e.match(Ee);if(!t)throw new Error(`Invalid semver: \'${e}\'`);let[,r,n,o,s,a]=t;return[r,n,o,s,a]},re=(e,t)=>{let r=Math.max(e.length,t.length);for(let n=0;n<r;n++){let o=e[n]??"0",s=t[n]??"0",a=be(o,s);if(a!==0)return a}return 0},_e=(e,t)=>{let r=te(e),n=te(t),o=r.pop(),s=n.pop(),a=re(r,n);return a!==0?a:o&&s?re(o.split("."),s.split(".")):o?-1:s?1:0};function H(e){if(p("getOperationalEnvironment")()==="sandbox")return!0;let r=p("getTossAppVersion")(),o=p("getPlatformOS")()==="ios"?e.ios:e.android;return o===void 0?!1:o==="always"?!0:o==="never"?!1:_e(r,o)>=0}function ne(e){return d("processProductGrant")(e)}var dr={createOneTimePurchaseOrder:e=>{let t=H({android:"5.219.0",ios:"5.219.0"}),r=()=>{};if(!t)return r;let n=H({android:"5.231.1",ios:"5.230.0"}),{options:o,onEvent:s,onError:a}=e,i=o.sku??o.productId;return n?b("requestOneTimePurchase")({options:{sku:i},onEvent:async g=>{if(g.type==="purchased"){let u=await o.processProductGrant({orderId:g.data.orderId});await ne({orderId:g.data.orderId,isProductGranted:u}).catch(a)}else s(g)},onError:g=>{a(g)}}):(d("iapCreateOneTimePurchaseOrder")({productId:i}).then(u=>{Promise.resolve(o.processProductGrant({orderId:u.orderId})).then(()=>{s({type:"success",data:u})}).catch(f=>{a(f)})}).catch(u=>{a(u)}),r)},createSubscriptionPurchaseOrder:e=>{let t=H({android:"5.248.0",ios:"5.249.0"}),r=()=>{};if(!t)return r;let{options:n,onEvent:o,onError:s}=e,{sku:a,offerId:i,processProductGrant:m}=n;return b("requestSubscriptionPurchase")({options:{sku:a,offerId:i??null},onEvent:async u=>{if(u.type==="purchased"){let f=await m({orderId:u.data.orderId,subscriptionId:u.data.subscriptionId});await ne({orderId:u.data.orderId,isProductGranted:f}).catch(s)}else o(u)},onError:u=>{s(u)}})},getProductItemList:d("iapGetProductItemList"),getPendingOrders:d("getPendingOrders"),getCompletedOrRefundedOrders:d("getCompletedOrRefundedOrders"),completeProductGrant:d("completeProductGrant"),getSubscriptionInfo:d("getSubscriptionInfo")},cr=p("getSafeAreaInsets");var ur=p("getSafeAreaInsets");var pr={loadAppsInTossAdMob:Object.assign(b("loadAppsInTossAdMob"),{isSupported:p("loadAppsInTossAdMob_isSupported")}),showAppsInTossAdMob:Object.assign(b("showAppsInTossAdMob"),{isSupported:p("showAppsInTossAdMob_isSupported")}),isAppsInTossAdMobLoaded:Object.assign(d("isAppsInTossAdMobLoaded"),{isSupported:p("isAppsInTossAdMobLoaded_isSupported")})};var lr={getDeploymentId:p("getDeploymentId")},mr=p("deploymentId"),gr=p("brandDisplayName"),fr=p("brandIcon"),vr=p("brandPrimaryColor");var hr={addAccessoryButton:d("addAccessoryButton"),removeAccessoryButton:d("removeAccessoryButton")},Se=d("requestPermission"),Ce=d("getPermission"),Ie=d("openPermissionDialog");function I({permission:e,handler:t,error:r}){let n=async(...o)=>{if(await Se(e)==="denied")throw new r;return t(...o)};return n.getPermission=()=>Ce(e),n.openPermissionDialog=()=>Ie(e),n}var Er=I({handler:e=>d("fetchAlbumPhotos")(e),permission:{name:"photos",access:"read"},error:j}),br=I({handler:e=>d("fetchContacts")(e),permission:{name:"contacts",access:"read"},error:K}),Sr=I({handler:e=>d("getCurrentLocation")(e),permission:{name:"geolocation",access:"access"},error:V}),Ir=I({handler:e=>d("openCamera")(e),permission:{name:"camera",access:"access"},error:J}),Tr=I({handler:e=>d("setClipboardText")(e),permission:{name:"clipboard",access:"write"},error:Z}),Lr=I({handler:()=>d("getClipboardText")(),permission:{name:"clipboard",access:"read"},error:Y}),ye=d("getPermission"),Te=d("openPermissionDialog"),ue=e=>b("updateLocationEvent")({...e,onError:t=>{let r=new X;return t instanceof Error&&t.name===r.name?e.onError(r):e.onError(t)}});ue.getPermission=()=>ye({name:"geolocation",access:"access"});ue.openPermissionDialog=()=>Te({name:"geolocation",access:"access"});var xr=Object.assign(b("loadFullScreenAd"),{isSupported:p("loadFullScreenAd_isSupported")}),Dr=Object.assign(b("showFullScreenAd"),{isSupported:p("showFullScreenAd_isSupported")}),P=new WeakMap;function Re(e,t){let r=P.get(e);if(r)return r;let n=t(),o=!1,s={destroy(){o||(o=!0,P.get(e)===s&&P.delete(e),n.destroy())}};return P.set(e,s),s}function Le(){P=new WeakMap}var Pe=d("openURL");function xe(e){let t=De(e);return Pe(t)}function De(e){return["http://","https://"].some(r=>e.startsWith(r))?Ne(e):e}function Ne(e){return`supertoss://web?url=${encodeURIComponent(e)}&external=true`}var oe="https://static.toss.im/ads/sdk/toss-ads-space-kit-1.3.0.js",se=15e3,N=null;function S(){if(!(typeof window>"u"))return window.TossAdsSpaceKit}function Me(){if(typeof window>"u"||typeof document>"u")return Promise.reject(new Error("Ads SDK can only be loaded in a browser environment."));let e=S();if(e)return Promise.resolve(e);if(N)return N;let t=new Promise((r,n)=>{let o=document.createElement("script"),s=()=>{o.removeEventListener("load",a),o.removeEventListener("error",i),window.clearTimeout(m),N=null},a=()=>{let g=S();if(g){s(),r(g);return}s(),n(new Error("Ads SDK script loaded but window.TossAdsSpaceKit was not exposed."))},i=()=>{s(),n(new Error(`Failed to load Ads SDK script from ${oe}.`))},m=window.setTimeout(()=>{s(),n(new Error(`Loading Ads SDK timed out after ${se}ms.`))},se);o.addEventListener("load",a),o.addEventListener("error",i),o.async=!0,o.src=oe,document.head.appendChild(o)});return N=t,t}var _=Object.assign(b("fetchTossAd"),{isSupported:p("fetchTossAd_isSupported")}),Fe=d("tossAdEventLog"),Ge=new Set(["1","2"]),pe="\\uC798\\uBABB\\uB41C \\uC694\\uCCAD\\uC774\\uC5D0\\uC694. \\uD544\\uC694\\uD55C \\uAC12\\uC774 \\uBE44\\uC5B4 \\uC788\\uC5B4\\uC694.";function M(e){return e.trim()}function U(){return new Error(pe)}function Be(){return{resultType:"FAIL",error:{reason:pe}}}function ke(e){return new Promise((t,r)=>{if(!_.isSupported()){r(new Error("fetchTossAd is not supported in this environment."));return}let n=M(e.adGroupId);if(n.length===0){r(U());return}return _({options:{...e,adGroupId:n},onEvent:t,onError:r})})}function ae(e){let t=Array.isArray(e.ads)?e.ads.filter(r=>Ge.has(String(r.styleId))):[];return{requestId:e.requestId??"",status:e.status??"OK",ads:t,ext:e.ext}}function Oe(e){return Ve(e)?e.resultType!=="SUCCESS"?e:e.success?{...e,success:ae(e.success)}:{resultType:"FAIL",error:{reason:"fetchTossAd returned SUCCESS without payload"}}:He(e)?{resultType:"SUCCESS",success:ae(e)}:{resultType:"FAIL",error:{reason:"Invalid response from fetchTossAd"}}}function Ve(e){return!!(e&&typeof e=="object"&&"resultType"in e)}function He(e){return!!(e&&typeof e=="object"&&"ads"in e)}function qe(){return async(e,t)=>{let r=M(t.spaceUnitId);if(r.length===0)return Be();try{let n=await ke({adGroupId:r,sdkId:"108",availableStyleIds:["1","2"]});return Oe(n)}catch(n){return{resultType:"FAIL",error:{reason:n instanceof Error?n.message:"Unknown fetchTossAd error"}}}}}var L=null;function Ue(e){let{callbacks:t}=e,r=()=>t?.onInitialized?.(),n=a=>{let i=a instanceof Error?a:new Error(String(a));t?.onInitializationFailed?.(i)};if(S()?.isInitialized()){r();return}if(L!=null){L.then(r).catch(n);return}let s=Me().then(a=>{if(a.isInitialized())return;let m={environment:"live",customAdFetcher:qe(),opener:xe};a.init(m)});L=s,s.then(r).catch(n).finally(()=>{L===s&&(L=null)})}function We(e,t,r={}){let{callbacks:n}=r,o=M(e),s=a=>{let i=a instanceof Error?a:new Error(String(a));n?.onAdFailedToRender?.({slotId:"",adGroupId:o,adMetadata:{},error:{code:0,message:i.message}})};try{let a=o;if(a.length===0)throw U();let i=S();if(!i)throw new Error("[toss-ad] Call initialize() before attaching an ad.");if(!i.banner)throw new Error("[toss-ad] Loaded TossAdsSpaceKit does not support banner ads.");let m=typeof t=="string"?document.querySelector(t):t;if(!m)throw new Error(`[toss-ad] Failed to find target element: ${t}`);let g={spaceId:a,autoLoad:!0,theme:r.theme,padding:r.padding,callbacks:me(o,r.callbacks)};i.banner.createSlot(m,g)}catch(a){s(a)}}var ze="16px 20px",$e="20px",je="auto",Ke="blackAndWhite",Je="expanded",h="toss-ads-attach",ie="toss-ads-attach-style",le="data-toss-ads-attach-banner-wrapper",q=\'"Toss Product Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", sans-serif\';function Xe(e){let t=e.ownerDocument;if(!t||t.getElementById(ie))return;let r=t.createElement("style");r.id=ie,r.textContent=`\n .${h},\n .${h} * {\n font-family: ${q};\n font-style: normal;\n }\n .${h} { background: #ffffff; }\n .${h}.toss-ads-tone-grey { background: #f2f4f7; }\n @media (prefers-color-scheme: dark) {\n .${h} { background: #17171c; }\n .${h}.toss-ads-tone-grey { background: #101013; }\n }\n .${h}.toss-ads-theme-light { background: #ffffff; }\n .${h}.toss-ads-theme-light.toss-ads-tone-grey { background: #f2f4f7; }\n .${h}.toss-ads-theme-dark { background: #17171c; }\n .${h}.toss-ads-theme-dark.toss-ads-tone-grey { background: #101013; }\n `;let n=t.head??t.body??t.documentElement;n&&n.appendChild(r)}function Ye(e){Array.from(e.children).forEach(t=>{t instanceof HTMLElement&&t.getAttribute(le)==="true"&&e.removeChild(t)})}function Ze(e,t,r={}){let{callbacks:n,theme:o=je,tone:s=Ke,variant:a=Je}=r,i=M(e),m=u=>{let f=u instanceof Error?u:new Error(String(u));n?.onAdFailedToRender?.({slotId:"",adGroupId:i,adMetadata:{},error:{code:0,message:f.message}})},g=me(i,n);try{let u=i;if(u.length===0)throw U();let f=S();if(!f)throw new Error("[toss-ad] Call initialize() before attaching an ad.");if(!f.banner)throw new Error("[toss-ad] Loaded TossAdsSpaceKit does not support banner ads.");let R=typeof t=="string"?document.querySelector(t):t;if(!R)throw new Error(`[toss-ad] Failed to find target element: ${t}`);return Re(R,()=>{let l=document.createElement("div");l.style.width="100%",l.style.height="100%",l.style.boxSizing="border-box",l.style.display="flex",l.style.flexDirection="column",l.style.fontFamily=q,l.style.fontStyle="normal",l.style.justifyContent="center",l.style.overflow="hidden",l.setAttribute(le,"true"),a==="card"&&(l.style.padding="0 10px");let w=document.createElement("div");w.classList.add(h),w.style.fontFamily=q,w.style.fontStyle="normal",s==="grey"&&w.classList.add("toss-ads-tone-grey"),o==="light"?w.classList.add("toss-ads-theme-light"):o==="dark"&&w.classList.add("toss-ads-theme-dark"),a==="card"&&(w.style.borderRadius="16px",w.style.overflow="hidden"),l.appendChild(w);let x=!1,W=null;try{Xe(R),Ye(R),R.appendChild(l),x=!0;let O={spaceId:u,autoLoad:!0,theme:o==="auto"?void 0:o,renderPadding:fe=>fe==="1"?ze:$e,callbacks:g};W=f.banner.createSlot(w,O)}catch(O){throw x&&l.parentNode&&l.parentNode.removeChild(l),O}return{destroy(){W?.destroy(),x&&l.parentNode&&l.parentNode.removeChild(l),x=!1}}})}catch(u){return m(u),{destroy(){}}}}function Qe(e){let t=S();t?.banner&&t.banner.destroy(e)}function et(){let e=S();e?.banner&&(e.banner.destroyAll(),Le())}function me(e,t){if(!t)return;let r=n=>{let o={...n??{}};return o.adGroupId=o.adGroupId??o.spaceId??e,delete o.spaceId,o};return{onAdRendered:n=>t.onAdRendered?.(r(n)),onAdViewable:n=>t.onAdViewable?.(r(n)),onAdClicked:n=>t.onAdClicked?.(r(n)),onAdImpression:n=>{Fe({log_name:"display_ads_all::impression__1px_banner",log_type:"event",params:{event_type:"impression",schema_id:1812034,request_id:n?.adMetadata?.requestId??""}}),t.onAdImpression?.(r(n))},onAdFailedToRender:n=>t.onAdFailedToRender?.({...r(n),error:n?.error??{code:0,message:"UNKNOWN"}}),onNoFill:n=>t.onNoFill?.(r(n))}}var Nr={initialize:Object.assign(Ue,{isSupported:_.isSupported}),attach:Object.assign(We,{isSupported:_.isSupported}),attachBanner:Object.assign(Ze,{isSupported:_.isSupported}),destroy:Object.assign(Qe,{isSupported:_.isSupported}),destroyAll:Object.assign(et,{isSupported:_.isSupported})},Mr=Object.assign(d("getServerTime"),{isSupported:p("getServerTime_isSupported")}),Fr=Object.assign(d("requestReview"),{isSupported:p("requestReview_isSupported")});var F=class{_log=d("debugLog");log(t,r){try{this._log({log_name:`apps_in_toss_webview_${t}`,log_type:"debug",params:{...r,...this.getCommonParams()}})}catch{}}getCommonParams(){return{...this.getLocationInfo(),...this.getNavigatorInfo(),...this.getScreenInfo(),appName:window.__appsInToss.appName,deploymentId:window.__appsInToss.deploymentId,sessionId:window.__appsInToss.sessionId,isGame:window.__appsInToss.webViewType==="game",timestampMs:Date.now()}}getLocationInfo(){return{url:window.location.href,urlOrigin:window.location.origin,urlHost:window.location.hostname,urlPath:window.location.pathname,urlSearch:window.location.search}}getNavigatorInfo(){return{userAgent:navigator.userAgent,platform:navigator.platform,language:navigator.language,cookieEnabled:navigator.cookieEnabled,hardwareConcurrency:navigator.hardwareConcurrency,deviceMemory:navigator.deviceMemory?navigator.deviceMemory*1024*1024:void 0,maxTouchPoints:navigator.maxTouchPoints}}getScreenInfo(){return{screenWidth:screen.width,screenHeight:screen.height,availableScreenWidth:screen.availWidth,availableScreenHeight:screen.availHeight,devicePixelRatio:window.devicePixelRatio,colorDepth:screen.colorDepth,pixelDepth:screen.pixelDepth,viewportWidth:window.innerWidth,viewportHeight:window.innerHeight}}};var G=class{callbacks={};on(t,r){return typeof this.callbacks[t]>"u"&&(this.callbacks[t]=[]),this.callbacks[t].push(r),()=>{this.callbacks[t]=this.callbacks[t]?.filter(n=>n!==r)??[]}}emit(t,r){this.callbacks[t]?.forEach(n=>n(r))}};window.__appsInToss={appName:p("getAppName")(),deploymentId:p("getDeploymentId")(),webViewType:p("getWebViewType")(),sessionId:Math.random().toString(36).substring(2),eventEmitter:new G,debugLogger:new F};var y=/\\.(data|wasm|framework\\.js)(?:\\.gz|\\.br|\\.unityweb)?$/;function B(e){window.fetch=new Proxy(window.fetch,{apply:e})}(()=>{if(window.__appsInToss.webViewType!=="game"||typeof caches>"u")return;let e="@apps-in-toss/caches/",t=`${e}${window.__appsInToss.deploymentId}`;window.addEventListener("load",async()=>{let r=await caches.keys();for(let n of r)n.startsWith(e)&&n!==t&&await caches.delete(n)}),B(async(r,n,o)=>{let s=new Request(o[0],o[1]);if(!y.test(s.url))return await r.call(n,s);let a=await caches.open(t),i=await a.match(s);if(i){let g=i.headers.get("ETag"),u=i.headers.get("Last-Modified");g&&s.headers.set("If-None-Match",g),u&&s.headers.set("If-Modified-Since",u);let f=await r.call(n,s);return f.status===304?(i.__revalidateResponse=f,i):(a.put(s,f.clone()),f)}let m=await r.call(n,s);return a.put(s,m.clone()),m})})();B(async(e,t,r)=>{let n=new Request(r[0],r[1]),o=Date.now();window.__appsInToss.eventEmitter.emit("fetchRequest",{request:n});try{let s=await e.call(t,n);return window.__appsInToss.eventEmitter.emit("fetchResponse",{request:n,response:s,requestAt:o}),s}catch(s){throw window.__appsInToss.eventEmitter.emit("fetchError",{request:n,requestAt:o,error:s}),s}});HTMLCanvasElement.prototype.getContext=new Proxy(HTMLCanvasElement.prototype.getContext,{apply:(e,t,r)=>{let n=e.apply(t,r);return(n instanceof WebGL2RenderingContext||n instanceof WebGLRenderingContext)&&window.__appsInToss.eventEmitter.emit("webglGetContext",{canvas:t,context:n}),n}});var ge=window.__appsInToss.debugLogger;ge.log("load_start",{});window.addEventListener("load",()=>{let e=performance.timeOrigin,t=performance.getEntriesByType?.("navigation")[0]??null,r=typeof e<"u"&&t!==null,n=r?{navigationStartAtMs:e+t.startTime,navigationRedirectStartAtMs:e+t.redirectStart,navigationRedirectEndAtMs:e+t.redirectEnd,navigationRedirectCount:t.redirectCount,navigationServiceWorkerStartAtMs:e+t.workerStart,navigationFetchStartAtMs:e+t.fetchStart,navigationDomainLookupStartAtMs:e+t.domainLookupStart,navigationDomainLookupEndAtMs:e+t.domainLookupEnd,navigationConnectStartAtMs:e+t.connectStart,navigationSecureConnectStartAtMs:e+t.secureConnectionStart,navigationConnectEndAtMs:e+t.connectEnd,navigationRequestStartAtMs:e+t.requestStart,navigationResponseStartAtMs:e+t.responseStart,navigationResponseEndAtMs:e+t.responseEnd,navigationDomInteractiveAtMs:e+t.domInteractive,navigationDomContentLoadedEventStartAtMs:e+t.domContentLoadedEventStart,navigationDomContentLoadedEventEndAtMs:e+t.domContentLoadedEventEnd,navigationDomCompleteAtMs:e+t.domComplete}:{};ge.log("load_complete",{isNavigationDebugSupported:r,...n})});function T(e,t){return parseFloat(e.toFixed(t))}(()=>{if(typeof performance.memory>"u"||typeof performance.memory.usedJSHeapSize>"u"||typeof performance.memory.totalJSHeapSize>"u"||typeof performance.memory.jsHeapSizeLimit>"u")return;function e(t){window.__appsInToss.debugLogger.log(t,{usedJSHeapSize:T(performance.memory.usedJSHeapSize/1024,2),totalJSHeapSize:T(performance.memory.totalJSHeapSize/1024,2),jsHeapSizeLimit:T(performance.memory.jsHeapSizeLimit/1024,2)})}e("memory_usage_first_0s"),setTimeout(()=>e("memory_usage_first_1s"),1e3),setTimeout(()=>e("memory_usage_first_10s"),1e4),setTimeout(()=>e("memory_usage_first_30s"),3e4),setTimeout(()=>e("memory_usage_first_60s"),6e4),setInterval(()=>e("memory_usage_every_180s"),18e4)})();(()=>{let e=window.__appsInToss.debugLogger,t=performance.timeOrigin;if(typeof t>"u"||typeof PerformanceObserver>"u")return;new PerformanceObserver(o=>{o.getEntries().forEach(a=>{a.name==="first-paint"?e.log("first_paint",{fpStartAtMs:t+a.startTime}):a.name==="first-contentful-paint"&&e.log("first_contentful_paint",{fcpStartAtMs:t+a.startTime})})}).observe({type:"paint"}),new PerformanceObserver(o=>{o.getEntries().forEach(a=>{e.log("largest_contentful_paint",{lcpStartAtMs:t+a.startTime,lcpRenderSize:a.size})})}).observe({type:"largest-contentful-paint"})})();(()=>{if(window.__appsInToss.webViewType!=="game")return;let e=window.__appsInToss.eventEmitter.on("webglGetContext",({canvas:t,context:r})=>{if(t.getAttribute("id")!=="unity-canvas")return;e();let n=r.getExtension("WEBGL_debug_renderer_info"),o=r.getParameter(r.MAX_VIEWPORT_DIMS),s={webGLRenderer:r.getParameter(r.RENDERER),webGLVendor:r.getParameter(r.VENDOR),webGLVersion:r.getParameter(r.VERSION),webGLShadingLanguageVersion:r.getParameter(r.SHADING_LANGUAGE_VERSION),webGLMaxTextureSize:r.getParameter(r.MAX_TEXTURE_SIZE),webGLMaxViewportWidth:o[0],webGLMaxViewportHeight:o[1],webGLMaxRenderbufferSize:r.getParameter(r.MAX_RENDERBUFFER_SIZE)},a=n?{webGLUnmaskedVendor:r.getParameter(n.UNMASKED_VENDOR_WEBGL),webGLUnmaskedRenderer:r.getParameter(n.UNMASKED_RENDERER_WEBGL)}:{};window.__appsInToss.debugLogger.log("unity_webgl_info",{...s,...a})})})();(()=>{if(window.__appsInToss.webViewType!=="game")return;let e=window.__appsInToss.debugLogger,t=window.__appsInToss.eventEmitter;t.on("fetchRequest",({request:n})=>{y.test(n.url)&&e.log("game_resource_download_start",{gameResourceRequestURL:n.url})});function r({request:n,requestAt:o,error:s}){e.log("game_resource_download_error",{gameResourceRequestURL:n.url,gameResourceRequestAtMs:o,gameResourceError:s instanceof Error?s.message:"Unknown Error"})}t.on("fetchResponse",async({request:n,requestAt:o,response:s})=>{if(!y.test(n.url))return;let a=await s.clone().blob().then(m=>T(m.size/1024,2)).catch(m=>(r({request:n,requestAt:o,error:m}),null));if(a===null)return;let i=Date.now();e.log("game_resource_download_end",{gameResourceRequestURL:n.url,gameResourceRequestAtMs:o,gameResourceResponseAtMs:i,gameResourceResponseSize:a,gameResourceResponseStatus:s.__revalidateResponse?.status??s.status,gameResourceDownloadDurationMs:i-o})}),t.on("fetchError",async({request:n,requestAt:o,error:s})=>{y.test(n.url)&&r({request:n,requestAt:o,error:s})})})();var k=[];function tt(){let e=0;function t(r){let n=performance.now();if(r<n-1e3){k.push(e);return}e+=1,window.requestAnimationFrame(()=>t(r))}window.requestAnimationFrame(()=>t(performance.now()))}function rt(){if(k.length===0)return;let e=k;k=[];let t=nt(e).toSorted(),r={};for(let o=0;o<=100;o+=10){let s=t[Math.floor((t.length-1)*(o/100))];s&&(r[`fpsP${o}`]=s)}let n=t.reduce((o,s)=>o+s,0);r.fpsAverage=n/t.length,window.__appsInToss.debugLogger.log("fps_every_300s",r)}function nt(e){let t=new Set(e);return Array.from(t.values())}setInterval(()=>tt(),1e3);setInterval(()=>rt(),3e5);})();\n';
|
|
214562
|
+
m = '"use strict";(()=>{var ve=class{get _window(){return typeof window<"u"?window:{ReactNativeWebView:{postMessage:()=>{}},__GRANITE_NATIVE_EMITTER:{on:()=>()=>{}},__CONSTANT_HANDLER_MAP:{}}}postMessage(e){let t=this._window.ReactNativeWebView;if(!t)throw new Error("ReactNativeWebView is not available in browser environment");t.postMessage(JSON.stringify(e))}on(e,t){let r=this._window.__GRANITE_NATIVE_EMITTER;if(!r)throw new Error("__GRANITE_NATIVE_EMITTER is not available");return r.on(e,t)}getConstant(e){let t=this._window.__CONSTANT_HANDLER_MAP;if(t&&e in t)return t[e];throw new Error(`${e} is not a constant handler`)}},E=new ve,z=()=>Math.random().toString(36).substring(2,15),$=e=>{if(e&&e.__isError){let t=new Error(e.message);for(let[r,n]of Object.entries(e))t[r]=n;return t}return e};function d(e){return(...t)=>{let r=z(),n=[],o=()=>{for(let s of n)s()};return new Promise((s,a)=>{n.push(E.on(`${e}/resolve/${r}`,i=>{o(),s(i)})),n.push(E.on(`${e}/reject/${r}`,i=>{o(),a($(i))})),E.postMessage({type:"method",functionName:e,eventId:r,args:t})})}}function D(e){return t=>{let r=z(),n=[E.on(`${e}/onEvent/${r}`,o=>{t.onEvent(o)}),E.on(`${e}/onError/${r}`,o=>{t.onError($(o))})];return E.postMessage({type:"addEventListener",functionName:e,eventId:r,args:t.options}),()=>{E.postMessage({type:"removeEventListener",functionName:e,eventId:r}),n.forEach(o=>o())}}}function v(e){return()=>E.getConstant(e)}var he=function(){return{emit:function(t,r){for(var n=this.events[t]||[],o=0,s=n.length;o<s;o++)n[o](r)},events:{},on:function(t,r){var n=this,o,s;return((o=this.events)[s=t]||(o[s]=[])).push(r),function(){var a;n.events[t]=(a=n.events[t])===null||a===void 0?void 0:a.filter(function(i){return r!==i})}}}};typeof window<"u"&&(window.__GRANITE_NATIVE_EMITTER=he());var it=d("closeView"),dt=d("generateHapticFeedback"),ct=d("share"),ut=d("setSecureScreen"),pt=d("setScreenAwakeMode"),mt=d("getNetworkStatus"),lt=d("setIosSwipeGestureEnabled"),gt=d("openURL"),ft=d("openPermissionDialog"),vt=d("getPermission"),ht=d("requestPermission"),wt=v("setClipboardText"),Et=v("getClipboardText"),At=v("fetchContacts"),bt=v("fetchAlbumPhotos"),_t=v("getCurrentLocation"),St=v("openCamera"),Ct=d("appLogin"),It=d("eventLog"),yt=d("getTossShareLink"),Tt=d("setDeviceOrientation"),Rt=d("checkoutPayment"),Lt=d("requestTossPayPaysBilling"),Pt=d("saveBase64Data"),xt=d("openPDFViewer"),Dt=d("fetchAlbumItems"),Nt=d("appsInTossSignTossCert"),Mt=d("getGameCenterGameProfile"),Ft=d("openGameCenterLeaderboard"),Gt=d("submitGameCenterLeaderBoardScore"),Bt=d("getAnonymousKey"),kt=d("getUserKeyForGame"),Ot=d("grantPromotionReward"),Vt=d("grantPromotionRewardForGame"),Ht=d("getIsTossLoginIntegratedService"),qt=d("getServerTime"),Ut=d("requestReview"),Wt=v("getLocale"),zt=v("getSchemeUri"),$t=v("getPlatformOS"),jt=v("getOperationalEnvironment"),Kt=v("getTossAppVersion"),Jt=v("getDeviceId"),Xt=v("getGroupId"),Yt=D("contactsViral"),Zt=D("startUpdateLocation"),Qt=D("onVisibilityChangedByTransparentServiceWeb");var C=class extends Error{constructor({methodName:e,message:t}){super(),this.name=`${e} permission error`,this.message=t}},j=class extends C{constructor(){super({methodName:"fetchAlbumPhotos",message:"\\uC0AC\\uC9C4\\uCCA9 \\uAD8C\\uD55C\\uC774 \\uAC70\\uBD80\\uB418\\uC5C8\\uC5B4\\uC694."})}},K=class extends C{constructor(){super({methodName:"fetchContacts",message:"\\uC5F0\\uB77D\\uCC98 \\uAD8C\\uD55C\\uC774 \\uAC70\\uBD80\\uB418\\uC5C8\\uC5B4\\uC694."})}},J=class extends C{constructor(){super({methodName:"openCamera",message:"\\uCE74\\uBA54\\uB77C \\uAD8C\\uD55C\\uC774 \\uAC70\\uBD80\\uB418\\uC5C8\\uC5B4\\uC694."})}};var V=class extends C{constructor(){super({methodName:"getCurrentLocation",message:"\\uC704\\uCE58 \\uAD8C\\uD55C\\uC774 \\uAC70\\uBD80\\uB418\\uC5C8\\uC5B4\\uC694."})}},X=V,Y=class extends C{constructor(){super({methodName:"getClipboardText",message:"\\uD074\\uB9BD\\uBCF4\\uB4DC \\uC77D\\uAE30 \\uAD8C\\uD55C\\uC774 \\uAC70\\uBD80\\uB418\\uC5C8\\uC5B4\\uC694."})}},Z=class extends C{constructor(){super({methodName:"setClipboardText",message:"\\uD074\\uB9BD\\uBCF4\\uB4DC \\uC4F0\\uAE30 \\uAD8C\\uD55C\\uC774 \\uAC70\\uBD80\\uB418\\uC5C8\\uC5B4\\uC694."})}};var we=class{get _window(){return typeof window<"u"?window:{ReactNativeWebView:{postMessage:()=>{}},__GRANITE_NATIVE_EMITTER:{on:()=>()=>{}},__CONSTANT_HANDLER_MAP:{}}}postMessage(e){let t=this._window.ReactNativeWebView;if(!t)throw new Error("ReactNativeWebView is not available in browser environment");t.postMessage(JSON.stringify(e))}on(e,t){let r=this._window.__GRANITE_NATIVE_EMITTER;if(!r)throw new Error("__GRANITE_NATIVE_EMITTER is not available");return r.on(e,t)}getConstant(e){let t=this._window.__CONSTANT_HANDLER_MAP;if(t&&e in t)return t[e];throw new Error(`${e} is not a constant handler`)}},A=new we,de=()=>Math.random().toString(36).substring(2,15),ce=e=>{if(e&&e.__isError){let t=new Error(e.message);for(let[r,n]of Object.entries(e))t[r]=n;return t}return e};function c(e){return(...t)=>{let r=de(),n=[],o=()=>{for(let s of n)s()};return new Promise((s,a)=>{n.push(A.on(`${e}/resolve/${r}`,i=>{o(),s(i)})),n.push(A.on(`${e}/reject/${r}`,i=>{o(),a(ce(i))})),A.postMessage({type:"method",functionName:e,eventId:r,args:t})})}}function b(e){return t=>{let r=de(),n=[A.on(`${e}/onEvent/${r}`,o=>{t.onEvent(o)}),A.on(`${e}/onError/${r}`,o=>{t.onError(ce(o))})];return A.postMessage({type:"addEventListener",functionName:e,eventId:r,args:t.options}),()=>{A.postMessage({type:"removeEventListener",functionName:e,eventId:r}),n.forEach(o=>o())}}}function p(e){return()=>A.getConstant(e)}var cr={getItem:c("getStorageItem"),setItem:c("setStorageItem"),removeItem:c("removeStorageItem"),clearItems:c("clearItems")},Ee=/^[v^~<>=]*?(\\d+)(?:\\.([x*]|\\d+)(?:\\.([x*]|\\d+)(?:\\.([x*]|\\d+))?(?:-([\\da-z\\\\-]+(?:\\.[\\da-z\\\\-]+)*))?(?:\\+[\\da-z\\\\-]+(?:\\.[\\da-z\\\\-]+)*)?)?)?$/i,Q=e=>["*","x","X"].includes(e),ee=e=>{let t=parseInt(e,10);return isNaN(t)?e:t},Ae=(e,t)=>typeof e==typeof t?[e,t]:[String(e),String(t)],be=(e,t)=>{if(Q(e)||Q(t))return 0;let[r,n]=Ae(ee(e),ee(t));return r>n?1:r<n?-1:0},te=e=>{if(typeof e!="string")throw new TypeError("Invalid argument: expected a string");let t=e.match(Ee);if(!t)throw new Error(`Invalid semver: \'${e}\'`);let[,r,n,o,s,a]=t;return[r,n,o,s,a]},re=(e,t)=>{let r=Math.max(e.length,t.length);for(let n=0;n<r;n++){let o=e[n]??"0",s=t[n]??"0",a=be(o,s);if(a!==0)return a}return 0},_e=(e,t)=>{let r=te(e),n=te(t),o=r.pop(),s=n.pop(),a=re(r,n);return a!==0?a:o&&s?re(o.split("."),s.split(".")):o?-1:s?1:0};function H(e){if(p("getOperationalEnvironment")()==="sandbox")return!0;let r=p("getTossAppVersion")(),o=p("getPlatformOS")()==="ios"?e.ios:e.android;return o===void 0?!1:o==="always"?!0:o==="never"?!1:_e(r,o)>=0}function ne(e){return c("processProductGrant")(e)}var ur={createOneTimePurchaseOrder:e=>{let t=H({android:"5.219.0",ios:"5.219.0"}),r=()=>{};if(!t)return r;let n=H({android:"5.231.1",ios:"5.230.0"}),{options:o,onEvent:s,onError:a}=e,i=o.sku??o.productId;return n?b("requestOneTimePurchase")({options:{sku:i},onEvent:async g=>{if(g.type==="purchased"){let u=await o.processProductGrant({orderId:g.data.orderId});await ne({orderId:g.data.orderId,isProductGranted:u}).catch(a)}else s(g)},onError:g=>{a(g)}}):(c("iapCreateOneTimePurchaseOrder")({productId:i}).then(u=>{Promise.resolve(o.processProductGrant({orderId:u.orderId})).then(()=>{s({type:"success",data:u})}).catch(f=>{a(f)})}).catch(u=>{a(u)}),r)},createSubscriptionPurchaseOrder:e=>{let t=H({android:"5.248.0",ios:"5.249.0"}),r=()=>{};if(!t)return r;let{options:n,onEvent:o,onError:s}=e,{sku:a,offerId:i,processProductGrant:l}=n;return b("requestSubscriptionPurchase")({options:{sku:a,offerId:i??null},onEvent:async u=>{if(u.type==="purchased"){let f=await l({orderId:u.data.orderId,subscriptionId:u.data.subscriptionId});await ne({orderId:u.data.orderId,isProductGranted:f}).catch(s)}else o(u)},onError:u=>{s(u)}})},getProductItemList:c("iapGetProductItemList"),getPendingOrders:c("getPendingOrders"),getCompletedOrRefundedOrders:c("getCompletedOrRefundedOrders"),completeProductGrant:c("completeProductGrant"),getSubscriptionInfo:c("getSubscriptionInfo")},pr=p("getSafeAreaInsets");var mr=p("getSafeAreaInsets");var lr={loadAppsInTossAdMob:Object.assign(b("loadAppsInTossAdMob"),{isSupported:p("loadAppsInTossAdMob_isSupported")}),showAppsInTossAdMob:Object.assign(b("showAppsInTossAdMob"),{isSupported:p("showAppsInTossAdMob_isSupported")}),isAppsInTossAdMobLoaded:Object.assign(c("isAppsInTossAdMobLoaded"),{isSupported:p("isAppsInTossAdMobLoaded_isSupported")})};var gr={getDeploymentId:p("getDeploymentId")},fr=p("deploymentId"),vr=p("brandDisplayName"),hr=p("brandIcon"),wr=p("brandPrimaryColor");var Er={addAccessoryButton:c("addAccessoryButton"),removeAccessoryButton:c("removeAccessoryButton")},Se=c("requestPermission"),Ce=c("getPermission"),Ie=c("openPermissionDialog");function I({permission:e,handler:t,error:r}){let n=async(...o)=>{if(await Se(e)==="denied")throw new r;return t(...o)};return n.getPermission=()=>Ce(e),n.openPermissionDialog=()=>Ie(e),n}var br=I({handler:e=>c("fetchAlbumPhotos")(e),permission:{name:"photos",access:"read"},error:j}),Sr=I({handler:e=>c("fetchContacts")(e),permission:{name:"contacts",access:"read"},error:K}),Ir=I({handler:e=>c("getCurrentLocation")(e),permission:{name:"geolocation",access:"access"},error:V}),Tr=I({handler:e=>c("openCamera")(e),permission:{name:"camera",access:"access"},error:J}),Lr=I({handler:e=>c("setClipboardText")(e),permission:{name:"clipboard",access:"write"},error:Z}),xr=I({handler:()=>c("getClipboardText")(),permission:{name:"clipboard",access:"read"},error:Y}),ye=c("getPermission"),Te=c("openPermissionDialog"),ue=e=>b("updateLocationEvent")({...e,onError:t=>{let r=new X;return t instanceof Error&&t.name===r.name?e.onError(r):e.onError(t)}});ue.getPermission=()=>ye({name:"geolocation",access:"access"});ue.openPermissionDialog=()=>Te({name:"geolocation",access:"access"});var Nr=Object.assign(b("loadFullScreenAd"),{isSupported:p("loadFullScreenAd_isSupported")}),Mr=Object.assign(b("showFullScreenAd"),{isSupported:p("showFullScreenAd_isSupported")}),P=new WeakMap;function Re(e,t){let r=P.get(e);if(r)return r;let n=t(),o=!1,s={destroy(){o||(o=!0,P.get(e)===s&&P.delete(e),n.destroy())}};return P.set(e,s),s}function Le(){P=new WeakMap}var Pe=c("openURL");function xe(e){let t=De(e);return Pe(t)}function De(e){return["http://","https://"].some(r=>e.startsWith(r))?Ne(e):e}function Ne(e){return`supertoss://web?url=${encodeURIComponent(e)}&external=true`}var oe="https://static.toss.im/ads/sdk/toss-ads-space-kit-1.3.0.js",se=15e3,N=null;function S(){if(!(typeof window>"u"))return window.TossAdsSpaceKit}function Me(){if(typeof window>"u"||typeof document>"u")return Promise.reject(new Error("Ads SDK can only be loaded in a browser environment."));let e=S();if(e)return Promise.resolve(e);if(N)return N;let t=new Promise((r,n)=>{let o=document.createElement("script"),s=()=>{o.removeEventListener("load",a),o.removeEventListener("error",i),window.clearTimeout(l),N=null},a=()=>{let g=S();if(g){s(),r(g);return}s(),n(new Error("Ads SDK script loaded but window.TossAdsSpaceKit was not exposed."))},i=()=>{s(),n(new Error(`Failed to load Ads SDK script from ${oe}.`))},l=window.setTimeout(()=>{s(),n(new Error(`Loading Ads SDK timed out after ${se}ms.`))},se);o.addEventListener("load",a),o.addEventListener("error",i),o.async=!0,o.src=oe,document.head.appendChild(o)});return N=t,t}var _=Object.assign(b("fetchTossAd"),{isSupported:p("fetchTossAd_isSupported")}),Fe=c("tossAdEventLog"),Ge=new Set(["1","2"]),pe="\\uC798\\uBABB\\uB41C \\uC694\\uCCAD\\uC774\\uC5D0\\uC694. \\uD544\\uC694\\uD55C \\uAC12\\uC774 \\uBE44\\uC5B4 \\uC788\\uC5B4\\uC694.";function M(e){return e.trim()}function U(){return new Error(pe)}function Be(){return{resultType:"FAIL",error:{reason:pe}}}function ke(e){return new Promise((t,r)=>{if(!_.isSupported()){r(new Error("fetchTossAd is not supported in this environment."));return}let n=M(e.adGroupId);if(n.length===0){r(U());return}return _({options:{...e,adGroupId:n},onEvent:t,onError:r})})}function ae(e){let t=Array.isArray(e.ads)?e.ads.filter(r=>Ge.has(String(r.styleId))):[];return{requestId:e.requestId??"",status:e.status??"OK",ads:t,ext:e.ext}}function Oe(e){return Ve(e)?e.resultType!=="SUCCESS"?e:e.success?{...e,success:ae(e.success)}:{resultType:"FAIL",error:{reason:"fetchTossAd returned SUCCESS without payload"}}:He(e)?{resultType:"SUCCESS",success:ae(e)}:{resultType:"FAIL",error:{reason:"Invalid response from fetchTossAd"}}}function Ve(e){return!!(e&&typeof e=="object"&&"resultType"in e)}function He(e){return!!(e&&typeof e=="object"&&"ads"in e)}function qe(){return async(e,t)=>{let r=M(t.spaceUnitId);if(r.length===0)return Be();try{let n=await ke({adGroupId:r,sdkId:"108",availableStyleIds:["1","2"]});return Oe(n)}catch(n){return{resultType:"FAIL",error:{reason:n instanceof Error?n.message:"Unknown fetchTossAd error"}}}}}var L=null;function Ue(e){let{callbacks:t}=e,r=()=>t?.onInitialized?.(),n=a=>{let i=a instanceof Error?a:new Error(String(a));t?.onInitializationFailed?.(i)};if(S()?.isInitialized()){r();return}if(L!=null){L.then(r).catch(n);return}let s=Me().then(a=>{if(a.isInitialized())return;let l={environment:"live",customAdFetcher:qe(),opener:xe};a.init(l)});L=s,s.then(r).catch(n).finally(()=>{L===s&&(L=null)})}function We(e,t,r={}){let{callbacks:n}=r,o=M(e),s=a=>{let i=a instanceof Error?a:new Error(String(a));n?.onAdFailedToRender?.({slotId:"",adGroupId:o,adMetadata:{},error:{code:0,message:i.message}})};try{let a=o;if(a.length===0)throw U();let i=S();if(!i)throw new Error("[toss-ad] Call initialize() before attaching an ad.");if(!i.banner)throw new Error("[toss-ad] Loaded TossAdsSpaceKit does not support banner ads.");let l=typeof t=="string"?document.querySelector(t):t;if(!l)throw new Error(`[toss-ad] Failed to find target element: ${t}`);let g={spaceId:a,autoLoad:!0,theme:r.theme,padding:r.padding,callbacks:le(o,r.callbacks)};i.banner.createSlot(l,g)}catch(a){s(a)}}var ze="16px 20px",$e="20px",je="auto",Ke="blackAndWhite",Je="expanded",h="toss-ads-attach",ie="toss-ads-attach-style",me="data-toss-ads-attach-banner-wrapper",q=\'"Toss Product Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", sans-serif\';function Xe(e){let t=e.ownerDocument;if(!t||t.getElementById(ie))return;let r=t.createElement("style");r.id=ie,r.textContent=`\n .${h},\n .${h} * {\n font-family: ${q};\n font-style: normal;\n }\n .${h} { background: #ffffff; }\n .${h}.toss-ads-tone-grey { background: #f2f4f7; }\n @media (prefers-color-scheme: dark) {\n .${h} { background: #17171c; }\n .${h}.toss-ads-tone-grey { background: #101013; }\n }\n .${h}.toss-ads-theme-light { background: #ffffff; }\n .${h}.toss-ads-theme-light.toss-ads-tone-grey { background: #f2f4f7; }\n .${h}.toss-ads-theme-dark { background: #17171c; }\n .${h}.toss-ads-theme-dark.toss-ads-tone-grey { background: #101013; }\n `;let n=t.head??t.body??t.documentElement;n&&n.appendChild(r)}function Ye(e){Array.from(e.children).forEach(t=>{t instanceof HTMLElement&&t.getAttribute(me)==="true"&&e.removeChild(t)})}function Ze(e,t,r={}){let{callbacks:n,theme:o=je,tone:s=Ke,variant:a=Je}=r,i=M(e),l=u=>{let f=u instanceof Error?u:new Error(String(u));n?.onAdFailedToRender?.({slotId:"",adGroupId:i,adMetadata:{},error:{code:0,message:f.message}})},g=le(i,n);try{let u=i;if(u.length===0)throw U();let f=S();if(!f)throw new Error("[toss-ad] Call initialize() before attaching an ad.");if(!f.banner)throw new Error("[toss-ad] Loaded TossAdsSpaceKit does not support banner ads.");let R=typeof t=="string"?document.querySelector(t):t;if(!R)throw new Error(`[toss-ad] Failed to find target element: ${t}`);return Re(R,()=>{let m=document.createElement("div");m.style.width="100%",m.style.height="100%",m.style.boxSizing="border-box",m.style.display="flex",m.style.flexDirection="column",m.style.fontFamily=q,m.style.fontStyle="normal",m.style.justifyContent="center",m.style.overflow="hidden",m.setAttribute(me,"true"),a==="card"&&(m.style.padding="0 10px");let w=document.createElement("div");w.classList.add(h),w.style.fontFamily=q,w.style.fontStyle="normal",s==="grey"&&w.classList.add("toss-ads-tone-grey"),o==="light"?w.classList.add("toss-ads-theme-light"):o==="dark"&&w.classList.add("toss-ads-theme-dark"),a==="card"&&(w.style.borderRadius="16px",w.style.overflow="hidden"),m.appendChild(w);let x=!1,W=null;try{Xe(R),Ye(R),R.appendChild(m),x=!0;let O={spaceId:u,autoLoad:!0,theme:o==="auto"?void 0:o,renderPadding:fe=>fe==="1"?ze:$e,callbacks:g};W=f.banner.createSlot(w,O)}catch(O){throw x&&m.parentNode&&m.parentNode.removeChild(m),O}return{destroy(){W?.destroy(),x&&m.parentNode&&m.parentNode.removeChild(m),x=!1}}})}catch(u){return l(u),{destroy(){}}}}function Qe(e){let t=S();t?.banner&&t.banner.destroy(e)}function et(){let e=S();e?.banner&&(e.banner.destroyAll(),Le())}function le(e,t){if(!t)return;let r=n=>{let o={...n??{}};return o.adGroupId=o.adGroupId??o.spaceId??e,delete o.spaceId,o};return{onAdRendered:n=>t.onAdRendered?.(r(n)),onAdViewable:n=>t.onAdViewable?.(r(n)),onAdClicked:n=>t.onAdClicked?.(r(n)),onAdImpression:n=>{Fe({log_name:"display_ads_all::impression__1px_banner",log_type:"event",params:{event_type:"impression",schema_id:1812034,request_id:n?.adMetadata?.requestId??""}}),t.onAdImpression?.(r(n))},onAdFailedToRender:n=>t.onAdFailedToRender?.({...r(n),error:n?.error??{code:0,message:"UNKNOWN"}}),onNoFill:n=>t.onNoFill?.(r(n))}}var Fr={initialize:Object.assign(Ue,{isSupported:_.isSupported}),attach:Object.assign(We,{isSupported:_.isSupported}),attachBanner:Object.assign(Ze,{isSupported:_.isSupported}),destroy:Object.assign(Qe,{isSupported:_.isSupported}),destroyAll:Object.assign(et,{isSupported:_.isSupported})},Gr=Object.assign(c("getServerTime"),{isSupported:p("getServerTime_isSupported")}),Br=Object.assign(c("requestReview"),{isSupported:p("requestReview_isSupported")});var F=class{_log=c("debugLog");log(t,r){try{this._log({log_name:`apps_in_toss_webview_${t}`,log_type:"debug",params:{...r,...this.getCommonParams()}})}catch{}}getCommonParams(){return{...this.getLocationInfo(),...this.getNavigatorInfo(),...this.getScreenInfo(),appName:window.__appsInToss.appName,deploymentId:window.__appsInToss.deploymentId,sessionId:window.__appsInToss.sessionId,isGame:window.__appsInToss.webViewType==="game",timestampMs:Date.now()}}getLocationInfo(){return{url:window.location.href,urlOrigin:window.location.origin,urlHost:window.location.hostname,urlPath:window.location.pathname,urlSearch:window.location.search}}getNavigatorInfo(){return{userAgent:navigator.userAgent,platform:navigator.platform,language:navigator.language,cookieEnabled:navigator.cookieEnabled,hardwareConcurrency:navigator.hardwareConcurrency,deviceMemory:navigator.deviceMemory?navigator.deviceMemory*1024*1024:void 0,maxTouchPoints:navigator.maxTouchPoints}}getScreenInfo(){return{screenWidth:screen.width,screenHeight:screen.height,availableScreenWidth:screen.availWidth,availableScreenHeight:screen.availHeight,devicePixelRatio:window.devicePixelRatio,colorDepth:screen.colorDepth,pixelDepth:screen.pixelDepth,viewportWidth:window.innerWidth,viewportHeight:window.innerHeight}}};var G=class{callbacks={};on(t,r){return typeof this.callbacks[t]>"u"&&(this.callbacks[t]=[]),this.callbacks[t].push(r),()=>{this.callbacks[t]=this.callbacks[t]?.filter(n=>n!==r)??[]}}emit(t,r){this.callbacks[t]?.forEach(n=>n(r))}};window.__appsInToss={appName:p("getAppName")(),deploymentId:p("getDeploymentId")(),webViewType:p("getWebViewType")(),sessionId:Math.random().toString(36).substring(2),eventEmitter:new G,debugLogger:new F};var y=/\\.(data|wasm|framework\\.js)(?:\\.gz|\\.br|\\.unityweb)?$/;function B(e){window.fetch=new Proxy(window.fetch,{apply:e})}(()=>{if(window.__appsInToss.webViewType!=="game"||typeof caches>"u")return;let e="@apps-in-toss/caches/",t=`${e}${window.__appsInToss.deploymentId}`;window.addEventListener("load",async()=>{let r=await caches.keys();for(let n of r)n.startsWith(e)&&n!==t&&await caches.delete(n)}),B(async(r,n,o)=>{let s=new Request(o[0],o[1]);if(!y.test(s.url))return await r.call(n,s);let a=await caches.open(t),i=await a.match(s);if(i){let g=i.headers.get("ETag"),u=i.headers.get("Last-Modified");g&&s.headers.set("If-None-Match",g),u&&s.headers.set("If-Modified-Since",u);let f=await r.call(n,s);return f.status===304?(i.__revalidateResponse=f,i):(a.put(s,f.clone()),f)}let l=await r.call(n,s);return a.put(s,l.clone()),l})})();B(async(e,t,r)=>{let n=new Request(r[0],r[1]),o=Date.now();window.__appsInToss.eventEmitter.emit("fetchRequest",{request:n});try{let s=await e.call(t,n);return window.__appsInToss.eventEmitter.emit("fetchResponse",{request:n,response:s,requestAt:o}),s}catch(s){throw window.__appsInToss.eventEmitter.emit("fetchError",{request:n,requestAt:o,error:s}),s}});HTMLCanvasElement.prototype.getContext=new Proxy(HTMLCanvasElement.prototype.getContext,{apply:(e,t,r)=>{let n=e.apply(t,r);return(n instanceof WebGL2RenderingContext||n instanceof WebGLRenderingContext)&&window.__appsInToss.eventEmitter.emit("webglGetContext",{canvas:t,context:n}),n}});var ge=window.__appsInToss.debugLogger;ge.log("load_start",{});window.addEventListener("load",()=>{let e=performance.timeOrigin,t=performance.getEntriesByType?.("navigation")[0]??null,r=typeof e<"u"&&t!==null,n=r?{navigationStartAtMs:e+t.startTime,navigationRedirectStartAtMs:e+t.redirectStart,navigationRedirectEndAtMs:e+t.redirectEnd,navigationRedirectCount:t.redirectCount,navigationServiceWorkerStartAtMs:e+t.workerStart,navigationFetchStartAtMs:e+t.fetchStart,navigationDomainLookupStartAtMs:e+t.domainLookupStart,navigationDomainLookupEndAtMs:e+t.domainLookupEnd,navigationConnectStartAtMs:e+t.connectStart,navigationSecureConnectStartAtMs:e+t.secureConnectionStart,navigationConnectEndAtMs:e+t.connectEnd,navigationRequestStartAtMs:e+t.requestStart,navigationResponseStartAtMs:e+t.responseStart,navigationResponseEndAtMs:e+t.responseEnd,navigationDomInteractiveAtMs:e+t.domInteractive,navigationDomContentLoadedEventStartAtMs:e+t.domContentLoadedEventStart,navigationDomContentLoadedEventEndAtMs:e+t.domContentLoadedEventEnd,navigationDomCompleteAtMs:e+t.domComplete}:{};ge.log("load_complete",{isNavigationDebugSupported:r,...n})});function T(e,t){return parseFloat(e.toFixed(t))}(()=>{if(typeof performance.memory>"u"||typeof performance.memory.usedJSHeapSize>"u"||typeof performance.memory.totalJSHeapSize>"u"||typeof performance.memory.jsHeapSizeLimit>"u")return;function e(t){window.__appsInToss.debugLogger.log(t,{usedJSHeapSize:T(performance.memory.usedJSHeapSize/1024,2),totalJSHeapSize:T(performance.memory.totalJSHeapSize/1024,2),jsHeapSizeLimit:T(performance.memory.jsHeapSizeLimit/1024,2)})}e("memory_usage_first_0s"),setTimeout(()=>e("memory_usage_first_1s"),1e3),setTimeout(()=>e("memory_usage_first_10s"),1e4),setTimeout(()=>e("memory_usage_first_30s"),3e4),setTimeout(()=>e("memory_usage_first_60s"),6e4),setInterval(()=>e("memory_usage_every_180s"),18e4)})();(()=>{let e=window.__appsInToss.debugLogger,t=performance.timeOrigin;if(typeof t>"u"||typeof PerformanceObserver>"u")return;new PerformanceObserver(o=>{o.getEntries().forEach(a=>{a.name==="first-paint"?e.log("first_paint",{fpStartAtMs:t+a.startTime}):a.name==="first-contentful-paint"&&e.log("first_contentful_paint",{fcpStartAtMs:t+a.startTime})})}).observe({type:"paint"}),new PerformanceObserver(o=>{o.getEntries().forEach(a=>{e.log("largest_contentful_paint",{lcpStartAtMs:t+a.startTime,lcpRenderSize:a.size})})}).observe({type:"largest-contentful-paint"})})();(()=>{if(window.__appsInToss.webViewType!=="game")return;let e=window.__appsInToss.eventEmitter.on("webglGetContext",({canvas:t,context:r})=>{if(t.getAttribute("id")!=="unity-canvas")return;e();let n=r.getExtension("WEBGL_debug_renderer_info"),o=r.getParameter(r.MAX_VIEWPORT_DIMS),s={webGLRenderer:r.getParameter(r.RENDERER),webGLVendor:r.getParameter(r.VENDOR),webGLVersion:r.getParameter(r.VERSION),webGLShadingLanguageVersion:r.getParameter(r.SHADING_LANGUAGE_VERSION),webGLMaxTextureSize:r.getParameter(r.MAX_TEXTURE_SIZE),webGLMaxViewportWidth:o[0],webGLMaxViewportHeight:o[1],webGLMaxRenderbufferSize:r.getParameter(r.MAX_RENDERBUFFER_SIZE)},a=n?{webGLUnmaskedVendor:r.getParameter(n.UNMASKED_VENDOR_WEBGL),webGLUnmaskedRenderer:r.getParameter(n.UNMASKED_RENDERER_WEBGL)}:{};window.__appsInToss.debugLogger.log("unity_webgl_info",{...s,...a})})})();(()=>{if(window.__appsInToss.webViewType!=="game")return;let e=window.__appsInToss.debugLogger,t=window.__appsInToss.eventEmitter;t.on("fetchRequest",({request:n})=>{y.test(n.url)&&e.log("game_resource_download_start",{gameResourceRequestURL:n.url})});function r({request:n,requestAt:o,error:s}){e.log("game_resource_download_error",{gameResourceRequestURL:n.url,gameResourceRequestAtMs:o,gameResourceError:s instanceof Error?s.message:"Unknown Error"})}t.on("fetchResponse",async({request:n,requestAt:o,response:s})=>{if(!y.test(n.url))return;let a=await s.clone().blob().then(l=>T(l.size/1024,2)).catch(l=>(r({request:n,requestAt:o,error:l}),null));if(a===null)return;let i=Date.now();e.log("game_resource_download_end",{gameResourceRequestURL:n.url,gameResourceRequestAtMs:o,gameResourceResponseAtMs:i,gameResourceResponseSize:a,gameResourceResponseStatus:s.__revalidateResponse?.status??s.status,gameResourceDownloadDurationMs:i-o})}),t.on("fetchError",async({request:n,requestAt:o,error:s})=>{y.test(n.url)&&r({request:n,requestAt:o,error:s})})})();var k=[];function tt(){let e=0;function t(r){let n=performance.now();if(r<n-1e3){k.push(e);return}e+=1,window.requestAnimationFrame(()=>t(r))}window.requestAnimationFrame(()=>t(performance.now()))}function rt(){if(k.length===0)return;let e=k;k=[];let t=nt(e).toSorted(),r={};for(let o=0;o<=100;o+=10){let s=t[Math.floor((t.length-1)*(o/100))];s&&(r[`fpsP${o}`]=s)}let n=t.reduce((o,s)=>o+s,0);r.fpsAverage=n/t.length,window.__appsInToss.debugLogger.log("fps_every_300s",r)}function nt(e){let t=new Set(e);return Array.from(t.values())}setInterval(()=>tt(),1e3);setInterval(()=>rt(),3e5);})();\n';
|
|
214421
214563
|
0 && (module.exports = {
|
|
214422
214564
|
afterDocumentLoad,
|
|
214423
214565
|
beforeDocumentLoad
|
|
214424
214566
|
});
|
|
214425
|
-
},
|
|
214567
|
+
},2598,[],"../../user-scripts/dist/index.js");
|
|
214426
214568
|
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
|
|
214427
214569
|
Object.defineProperty(exports, "__esModule", {
|
|
214428
214570
|
value: true
|
|
@@ -214435,7 +214577,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
214435
214577
|
return files.get(id);
|
|
214436
214578
|
}
|
|
214437
214579
|
context.keys = () => Array.from(files.keys());
|
|
214438
|
-
},
|
|
214580
|
+
},2599,[2600,2601],"context.ts");
|
|
214439
214581
|
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
|
|
214440
214582
|
Object.defineProperty(exports, "__esModule", {
|
|
214441
214583
|
value: true
|
|
@@ -214468,7 +214610,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
214468
214610
|
})
|
|
214469
214611
|
});
|
|
214470
214612
|
}
|
|
214471
|
-
},
|
|
214613
|
+
},2600,[1283,34,9],"pages/index.tsx");
|
|
214472
214614
|
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
|
|
214473
214615
|
var _interopRequireDefault = _$$_REQUIRE(_dependencyMap[0], "@babel/runtime/helpers/interopRequireDefault");
|
|
214474
214616
|
Object.defineProperty(exports, "__esModule", {
|
|
@@ -214481,6 +214623,6 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
214481
214623
|
}
|
|
214482
214624
|
});
|
|
214483
214625
|
var _index = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[1], "./index"));
|
|
214484
|
-
},
|
|
214626
|
+
},2601,[1,2600],"pages/_404.tsx");
|
|
214485
214627
|
__r(186);
|
|
214486
214628
|
__r(0);
|