@apps-in-toss/web-framework 1.8.0 → 1.9.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/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # @apps-in-toss/web-framework
2
2
 
3
+ ## 1.9.0
4
+
5
+ ## 1.8.1
6
+
3
7
  ## 1.8.0
4
8
 
5
9
  ## 1.7.1
@@ -153360,7 +153360,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
153360
153360
  var _default = exports.default = _framework.AppsInToss.registerApp(AppContainer, {
153361
153361
  context: _context.context
153362
153362
  });
153363
- },1255,[1256,2629,9],"react-native/src/_app.tsx");
153363
+ },1255,[1256,2630,9],"react-native/src/_app.tsx");
153364
153364
  __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
153365
153365
  "use strict";
153366
153366
 
@@ -155695,19 +155695,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
155695
155695
  canGoForward: canGoForward
155696
155696
  };
155697
155697
  }
155698
- var HISTORY_BACK_SCRIPT = `
155699
- (function() {
155700
- window.history.back();
155701
- true;
155702
- })();
155703
- `;
155704
- var HISTORY_HOME_SCRIPT = `
155705
- (function() {
155706
- window.location.href = '/';
155707
- true;
155708
- })();
155709
- `;
155710
- function useWebBackHandler(webViewRef) {
155698
+ function useWebBackHandler(webViewInitialURL, webViewRef) {
155711
155699
  var _useCaptureExitLog5 = useCaptureExitLog(),
155712
155700
  captureExitLog = _useCaptureExitLog5.captureExitLog;
155713
155701
  var _useWebViewHistory = useWebViewHistory(),
@@ -155737,7 +155725,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
155737
155725
  }
155738
155726
  if (hasHistory) {
155739
155727
  var _webViewRef$current;
155740
- (_webViewRef$current = webViewRef.current) == null ? void 0 : _webViewRef$current.injectJavaScript(HISTORY_BACK_SCRIPT);
155728
+ (_webViewRef$current = webViewRef.current) == null ? void 0 : _webViewRef$current.injectJavaScript("window.history.back();");
155741
155729
  } else {
155742
155730
  var isConfirmed = yield openConfirm({
155743
155731
  title: `${(0, import_es_hangul5.josa)(global2.brandDisplayName, "\uC744/\uB97C")} \uC885\uB8CC\uD560\uAE4C\uC694?`,
@@ -155762,8 +155750,13 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
155762
155750
  }
155763
155751
  return;
155764
155752
  }
155765
- (_webViewRef$current2 = webViewRef.current) == null ? void 0 : _webViewRef$current2.injectJavaScript(HISTORY_HOME_SCRIPT);
155766
- }, [hasWebBackEvent, webBackHandlersRef, logging, webViewRef]);
155753
+ (_webViewRef$current2 = webViewRef.current) == null ? void 0 : _webViewRef$current2.injectJavaScript(`
155754
+ (function() {
155755
+ const webBundleOrigin = '${webViewInitialURL.origin}';
155756
+ window.location.href = window.location.origin === webBundleOrigin ? '/' : webBundleOrigin;
155757
+ })();
155758
+ `);
155759
+ }, [hasWebBackEvent, webBackHandlersRef, logging, webViewInitialURL, webViewRef]);
155767
155760
  return (0, import_react25.useMemo)(function () {
155768
155761
  return {
155769
155762
  addEventListener: addEventListener,
@@ -156098,10 +156091,10 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
156098
156091
  }
156099
156092
  return baseUrl;
156100
156093
  }
156101
- function getWebViewUri(local) {
156094
+ function getWebViewURL(local) {
156102
156095
  if (__DEV__) {
156103
156096
  var devUrl = `http://${local.host}:${local.port}`;
156104
- return mergeSchemeQueryParamsInto(devUrl).toString();
156097
+ return mergeSchemeQueryParamsInto(devUrl);
156105
156098
  }
156106
156099
  var _import_native_module = import_native_modules23.AppsInTossModule.getWebBundleURL({}),
156107
156100
  rawUrl = _import_native_module.url;
@@ -156110,7 +156103,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
156110
156103
  if (deploymentId) {
156111
156104
  url.searchParams.set("_deploymentId", deploymentId);
156112
156105
  }
156113
- return url.toString();
156106
+ return url;
156114
156107
  }
156115
156108
  function _WebView(_ref83) {
156116
156109
  var type = _ref83.type,
@@ -156121,10 +156114,10 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
156121
156114
  throw new Error(`Invalid WebView type: '${type}'`);
156122
156115
  }
156123
156116
  var webViewRef = (0, import_react28.useRef)(null);
156124
- var webBackHandler = useWebBackHandler(webViewRef);
156125
- var uri = (0, import_react28.useMemo)(function () {
156126
- return getWebViewUri(local);
156117
+ var url = (0, import_react28.useMemo)(function () {
156118
+ return getWebViewURL(local);
156127
156119
  }, [local]);
156120
+ var webBackHandler = useWebBackHandler(url, webViewRef);
156128
156121
  var top = (0, import_private9.useSafeAreaTop)();
156129
156122
  var bottom = (0, import_private9.useSafeAreaBottom)();
156130
156123
  var insets = (0, import_react_native_safe_area_context4.useSafeAreaInsets)();
@@ -156298,7 +156291,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
156298
156291
  ref: refs
156299
156292
  }, props, headerPropForExternalWebView, {
156300
156293
  source: {
156301
- uri: uri,
156294
+ uri: url.href,
156302
156295
  headers: {
156303
156296
  "User-Agent": userAgent
156304
156297
  }
@@ -156323,12 +156316,12 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
156323
156316
  allowsBackForwardNavigationGestures: allowsBackForwardNavigationGestures,
156324
156317
  onShouldStartLoadWithRequest: function onShouldStartLoadWithRequest(event) {
156325
156318
  try {
156326
- var url = new URL(event.url);
156327
- if (["https:", "http:"].includes(url.protocol) || url.href === "about:blank") {
156319
+ var url2 = new URL(event.url);
156320
+ if (["https:", "http:"].includes(url2.protocol) || url2.href === "about:blank") {
156328
156321
  return true;
156329
156322
  } else {
156330
156323
  var _convertIntentURL;
156331
- import_react_native39.Linking.openURL((_convertIntentURL = convertIntentURL(url)) != null ? _convertIntentURL : url.href);
156324
+ import_react_native39.Linking.openURL((_convertIntentURL = convertIntentURL(url2)) != null ? _convertIntentURL : url2.href);
156332
156325
  return false;
156333
156326
  }
156334
156327
  } catch (error) {
@@ -156432,7 +156425,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
156432
156425
  useTopNavigation: _useTopNavigation,
156433
156426
  useWaitForReturnNavigator: _useWaitForReturnNavigator
156434
156427
  }, _$$_REQUIRE(_dependencyMap[7], "@apps-in-toss/analytics"), _$$_REQUIRE(_dependencyMap[8], "@apps-in-toss/native-modules"), _$$_REQUIRE(_dependencyMap[21], "@apps-in-toss/types")));
156435
- },1256,[24,25,32,207,16,61,1257,1258,1259,2,1446,18,6,9,2468,2568,534,2569,2606,2613,2477,1260],"../../../.yarn/__virtual__/@apps-in-toss-framework-virtual-afbad361af/1/packages/apps-in-toss/framework/dist/index.cjs");
156428
+ },1256,[24,25,32,207,16,61,1257,1258,1259,2,1446,18,6,9,2468,2568,534,2569,2607,2614,2477,1260],"../../../.yarn/__virtual__/@apps-in-toss-framework-virtual-afbad361af/1/packages/apps-in-toss/framework/dist/index.cjs");
156436
156429
  __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
156437
156430
  function _objectDestructuringEmpty(obj) {
156438
156431
  if (obj == null) throw new TypeError("Cannot destructure undefined");
@@ -157193,6 +157186,9 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
157193
157186
  getSchemeUri: function getSchemeUri() {
157194
157187
  return getSchemeUri2;
157195
157188
  },
157189
+ getServerTime: function getServerTime() {
157190
+ return _getServerTime;
157191
+ },
157196
157192
  getTossAppVersion: function getTossAppVersion() {
157197
157193
  return _getTossAppVersion;
157198
157194
  },
@@ -158197,6 +158193,10 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
158197
158193
  android: "5.237.0",
158198
158194
  ios: "5.237.0"
158199
158195
  };
158196
+ var GET_SERVER_TIME_MIN_VERSION = {
158197
+ android: "5.245.0",
158198
+ ios: "5.245.0"
158199
+ };
158200
158200
  function _openGameCenterLeaderboard() {
158201
158201
  return _openGameCenterLeaderboard2.apply(this, arguments);
158202
158202
  }
@@ -158369,6 +158369,22 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
158369
158369
  });
158370
158370
  return _appsInTossSignTossCert2.apply(this, arguments);
158371
158371
  }
158372
+ function _getServerTime() {
158373
+ return _getServerTime2.apply(this, arguments);
158374
+ }
158375
+ function _getServerTime2() {
158376
+ _getServerTime2 = _asyncToGenerator(function* () {
158377
+ var isSupported = _isMinVersionSupported(GET_SERVER_TIME_MIN_VERSION);
158378
+ if (!isSupported) {
158379
+ return;
158380
+ }
158381
+ return (yield _AppsInTossModule.getServerTime({})).serverTime;
158382
+ });
158383
+ return _getServerTime2.apply(this, arguments);
158384
+ }
158385
+ _getServerTime.isSupported = function () {
158386
+ return _isMinVersionSupported(GET_SERVER_TIME_MIN_VERSION);
158387
+ };
158372
158388
  var _TossPay = {
158373
158389
  checkoutPayment: checkoutPayment
158374
158390
  };
@@ -158514,6 +158530,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
158514
158530
  getOperationalEnvironment: _getOperationalEnvironment,
158515
158531
  getPlatformOS: _getPlatformOS,
158516
158532
  getSchemeUri: getSchemeUri,
158533
+ getServerTime: _getServerTime,
158517
158534
  getTossAppVersion: _getTossAppVersion,
158518
158535
  getTossShareLink: _getTossShareLink,
158519
158536
  getUserKeyForGame: _getUserKeyForGame,
@@ -232428,7 +232445,18 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
232428
232445
  }
232429
232446
  });
232430
232447
  });
232431
- },2569,[2570,2572,2573,2574,2575,2576,2577,2578,2579,2581,2582,2583,2585,2586,2587,2588,2589,2590,2591,2594,2595,2596,2597,2598,2599,2601,2602,2603,2604,2605],"../../../.yarn/__virtual__/@apps-in-toss-native-modules-virtual-e56741e8de/1/packages/apps-in-toss/native-modules/src/async-bridges.ts");
232448
+ var _getServerTime = _$$_REQUIRE(_dependencyMap[30], "./AppsInTossModule/native-modules/getServerTime");
232449
+ Object.keys(_getServerTime).forEach(function (key) {
232450
+ if (key === "default" || key === "__esModule") return;
232451
+ if (key in exports && exports[key] === _getServerTime[key]) return;
232452
+ Object.defineProperty(exports, key, {
232453
+ enumerable: true,
232454
+ get: function get() {
232455
+ return _getServerTime[key];
232456
+ }
232457
+ });
232458
+ });
232459
+ },2569,[2570,2572,2573,2574,2575,2576,2577,2578,2579,2581,2582,2583,2585,2586,2587,2588,2589,2590,2591,2594,2595,2596,2597,2598,2599,2601,2602,2603,2604,2605,2606],"../../../.yarn/__virtual__/@apps-in-toss-native-modules-virtual-e56741e8de/1/packages/apps-in-toss/native-modules/src/async-bridges.ts");
232432
232460
  __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
232433
232461
  var _interopRequireDefault = _$$_REQUIRE(_dependencyMap[0], "@babel/runtime/helpers/interopRequireDefault");
232434
232462
  Object.defineProperty(exports, "__esModule", {
@@ -233165,7 +233193,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
233165
233193
  Object.defineProperty(exports, "__esModule", {
233166
233194
  value: true
233167
233195
  });
233168
- exports.GET_IS_TOSS_LOGIN_INTEGRATED_SERVICE_MIN_VERSION = exports.GAME_USER_KEY_MIN_VERSION = exports.GAME_PROMOTION_REWARD_MIN_VERSION = exports.GAME_PROFILE_WEBVIEW_URL = exports.GAME_CENTER_MIN_VERSION = void 0;
233196
+ exports.GET_SERVER_TIME_MIN_VERSION = exports.GET_IS_TOSS_LOGIN_INTEGRATED_SERVICE_MIN_VERSION = exports.GAME_USER_KEY_MIN_VERSION = exports.GAME_PROMOTION_REWARD_MIN_VERSION = exports.GAME_PROFILE_WEBVIEW_URL = exports.GAME_CENTER_MIN_VERSION = void 0;
233169
233197
  var GAME_PROFILE_WEBVIEW_URL = exports.GAME_PROFILE_WEBVIEW_URL = 'https://service.toss.im/game-center/profile';
233170
233198
  var GAME_CENTER_MIN_VERSION = exports.GAME_CENTER_MIN_VERSION = {
233171
233199
  android: '5.221.0',
@@ -233183,6 +233211,10 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
233183
233211
  android: '5.237.0',
233184
233212
  ios: '5.237.0'
233185
233213
  };
233214
+ var GET_SERVER_TIME_MIN_VERSION = exports.GET_SERVER_TIME_MIN_VERSION = {
233215
+ android: '5.245.0',
233216
+ ios: '5.245.0'
233217
+ };
233186
233218
  },2600,[],"../../../.yarn/__virtual__/@apps-in-toss-native-modules-virtual-e56741e8de/1/packages/apps-in-toss/native-modules/src/AppsInTossModule/constants.ts");
233187
233219
  __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
233188
233220
  var _interopRequireDefault = _$$_REQUIRE(_dependencyMap[0], "@babel/runtime/helpers/interopRequireDefault");
@@ -233343,6 +233375,33 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
233343
233375
  return _grantPromotionRewardForGame.apply(this, arguments);
233344
233376
  }
233345
233377
  },2605,[1,16,2580,2592,2600],"../../../.yarn/__virtual__/@apps-in-toss-native-modules-virtual-e56741e8de/1/packages/apps-in-toss/native-modules/src/AppsInTossModule/native-modules/grantPromotionRewardForGame.ts");
233378
+ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
233379
+ var _interopRequireDefault = _$$_REQUIRE(_dependencyMap[0], "@babel/runtime/helpers/interopRequireDefault");
233380
+ Object.defineProperty(exports, "__esModule", {
233381
+ value: true
233382
+ });
233383
+ exports.getServerTime = getServerTime;
233384
+ var _asyncToGenerator2 = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[1], "@babel/runtime/helpers/asyncToGenerator"));
233385
+ var _AppsInTossModule = _$$_REQUIRE(_dependencyMap[2], "./AppsInTossModule");
233386
+ var _isMinVersionSupported = _$$_REQUIRE(_dependencyMap[3], "./isMinVersionSupported");
233387
+ var _constants = _$$_REQUIRE(_dependencyMap[4], "../constants");
233388
+ function getServerTime() {
233389
+ return _getServerTime.apply(this, arguments);
233390
+ }
233391
+ function _getServerTime() {
233392
+ _getServerTime = (0, _asyncToGenerator2.default)(function* () {
233393
+ var isSupported = (0, _isMinVersionSupported.isMinVersionSupported)(_constants.GET_SERVER_TIME_MIN_VERSION);
233394
+ if (!isSupported) {
233395
+ return;
233396
+ }
233397
+ return (yield _AppsInTossModule.AppsInTossModule.getServerTime({})).serverTime;
233398
+ });
233399
+ return _getServerTime.apply(this, arguments);
233400
+ }
233401
+ getServerTime.isSupported = function () {
233402
+ return (0, _isMinVersionSupported.isMinVersionSupported)(_constants.GET_SERVER_TIME_MIN_VERSION);
233403
+ };
233404
+ },2606,[1,16,2580,2592,2600],"../../../.yarn/__virtual__/@apps-in-toss-native-modules-virtual-e56741e8de/1/packages/apps-in-toss/native-modules/src/AppsInTossModule/native-modules/getServerTime.ts");
233346
233405
  __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
233347
233406
  Object.defineProperty(exports, "__esModule", {
233348
233407
  value: true
@@ -233413,7 +233472,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
233413
233472
  }
233414
233473
  });
233415
233474
  });
233416
- },2606,[2607,2608,2609,2610,2611,2612],"../../../.yarn/__virtual__/@apps-in-toss-native-modules-virtual-e56741e8de/1/packages/apps-in-toss/native-modules/src/constant-bridges.ts");
233475
+ },2607,[2608,2609,2610,2611,2612,2613],"../../../.yarn/__virtual__/@apps-in-toss-native-modules-virtual-e56741e8de/1/packages/apps-in-toss/native-modules/src/constant-bridges.ts");
233417
233476
  __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
233418
233477
  Object.defineProperty(exports, "__esModule", {
233419
233478
  value: true
@@ -233432,7 +233491,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
233432
233491
  function replaceUnderbarToHypen(locale) {
233433
233492
  return locale.replace(/_/g, '-');
233434
233493
  }
233435
- },2607,[18,2571],"../../../.yarn/__virtual__/@apps-in-toss-native-modules-virtual-e56741e8de/1/packages/apps-in-toss/native-modules/src/BedrockModule/native-modules/natives/getLocale.ts");
233494
+ },2608,[18,2571],"../../../.yarn/__virtual__/@apps-in-toss-native-modules-virtual-e56741e8de/1/packages/apps-in-toss/native-modules/src/BedrockModule/native-modules/natives/getLocale.ts");
233436
233495
  __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
233437
233496
  Object.defineProperty(exports, "__esModule", {
233438
233497
  value: true
@@ -233442,7 +233501,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
233442
233501
  function getSchemeUri() {
233443
233502
  return _BedrockModule.BedrockModule.schemeUri;
233444
233503
  }
233445
- },2608,[2571],"../../../.yarn/__virtual__/@apps-in-toss-native-modules-virtual-e56741e8de/1/packages/apps-in-toss/native-modules/src/BedrockModule/native-modules/natives/getSchemeUri.ts");
233504
+ },2609,[2571],"../../../.yarn/__virtual__/@apps-in-toss-native-modules-virtual-e56741e8de/1/packages/apps-in-toss/native-modules/src/BedrockModule/native-modules/natives/getSchemeUri.ts");
233446
233505
  __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
233447
233506
  Object.defineProperty(exports, "__esModule", {
233448
233507
  value: true
@@ -233452,7 +233511,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
233452
233511
  function getPlatformOS() {
233453
233512
  return _reactNative.Platform.OS;
233454
233513
  }
233455
- },2609,[18],"../../../.yarn/__virtual__/@apps-in-toss-native-modules-virtual-e56741e8de/1/packages/apps-in-toss/native-modules/src/BedrockModule/native-modules/natives/getPlatformOS.ts");
233514
+ },2610,[18],"../../../.yarn/__virtual__/@apps-in-toss-native-modules-virtual-e56741e8de/1/packages/apps-in-toss/native-modules/src/BedrockModule/native-modules/natives/getPlatformOS.ts");
233456
233515
  __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
233457
233516
  Object.defineProperty(exports, "__esModule", {
233458
233517
  value: true
@@ -233462,7 +233521,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
233462
233521
  function getOperationalEnvironment() {
233463
233522
  return _AppsInTossModule.AppsInTossModule.operationalEnvironment;
233464
233523
  }
233465
- },2610,[2580],"../../../.yarn/__virtual__/@apps-in-toss-native-modules-virtual-e56741e8de/1/packages/apps-in-toss/native-modules/src/AppsInTossModule/native-modules/getOperationalEnvironment.ts");
233524
+ },2611,[2580],"../../../.yarn/__virtual__/@apps-in-toss-native-modules-virtual-e56741e8de/1/packages/apps-in-toss/native-modules/src/AppsInTossModule/native-modules/getOperationalEnvironment.ts");
233466
233525
  __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
233467
233526
  Object.defineProperty(exports, "__esModule", {
233468
233527
  value: true
@@ -233472,7 +233531,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
233472
233531
  function getTossAppVersion() {
233473
233532
  return _AppsInTossModule.AppsInTossModule.tossAppVersion;
233474
233533
  }
233475
- },2611,[2580],"../../../.yarn/__virtual__/@apps-in-toss-native-modules-virtual-e56741e8de/1/packages/apps-in-toss/native-modules/src/AppsInTossModule/native-modules/getTossAppVersion.ts");
233534
+ },2612,[2580],"../../../.yarn/__virtual__/@apps-in-toss-native-modules-virtual-e56741e8de/1/packages/apps-in-toss/native-modules/src/AppsInTossModule/native-modules/getTossAppVersion.ts");
233476
233535
  __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
233477
233536
  Object.defineProperty(exports, "__esModule", {
233478
233537
  value: true
@@ -233482,7 +233541,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
233482
233541
  function getDeviceId() {
233483
233542
  return _AppsInTossModule.AppsInTossModule.deviceId;
233484
233543
  }
233485
- },2612,[2580],"../../../.yarn/__virtual__/@apps-in-toss-native-modules-virtual-e56741e8de/1/packages/apps-in-toss/native-modules/src/AppsInTossModule/native-modules/getDeviceId.ts");
233544
+ },2613,[2580],"../../../.yarn/__virtual__/@apps-in-toss-native-modules-virtual-e56741e8de/1/packages/apps-in-toss/native-modules/src/AppsInTossModule/native-modules/getDeviceId.ts");
233486
233545
  __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
233487
233546
  Object.defineProperty(exports, "__esModule", {
233488
233547
  value: true
@@ -233520,7 +233579,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
233520
233579
  }
233521
233580
  });
233522
233581
  });
233523
- },2613,[2614,2628,2627],"../../../.yarn/__virtual__/@apps-in-toss-native-modules-virtual-e56741e8de/1/packages/apps-in-toss/native-modules/src/event-bridges.ts");
233582
+ },2614,[2615,2629,2628],"../../../.yarn/__virtual__/@apps-in-toss-native-modules-virtual-e56741e8de/1/packages/apps-in-toss/native-modules/src/event-bridges.ts");
233524
233583
  __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
233525
233584
  Object.defineProperty(exports, "__esModule", {
233526
233585
  value: true
@@ -233533,7 +233592,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
233533
233592
  }
233534
233593
  startUpdateLocation.openPermissionDialog = _nativeModules.getCurrentLocation.openPermissionDialog;
233535
233594
  startUpdateLocation.getPermission = _nativeModules.getCurrentLocation.getPermission;
233536
- },2614,[2615,2622],"../../../.yarn/__virtual__/@apps-in-toss-native-modules-virtual-e56741e8de/1/packages/apps-in-toss/native-modules/src/AppsInTossModule/native-event-emitter/startUpdateLocation.ts");
233595
+ },2615,[2616,2623],"../../../.yarn/__virtual__/@apps-in-toss-native-modules-virtual-e56741e8de/1/packages/apps-in-toss/native-modules/src/AppsInTossModule/native-event-emitter/startUpdateLocation.ts");
233537
233596
  __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
233538
233597
  Object.defineProperty(exports, "__esModule", {
233539
233598
  value: true
@@ -233544,7 +233603,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
233544
233603
  var _AppBridgeCallbackEvent = _$$_REQUIRE(_dependencyMap[2], "./internal/AppBridgeCallbackEvent");
233545
233604
  var _VisibilityChangedByTransparentServiceWebEvent = _$$_REQUIRE(_dependencyMap[3], "./internal/VisibilityChangedByTransparentServiceWebEvent");
233546
233605
  var appsInTossEvent = exports.appsInTossEvent = new _reactNative.GraniteEvent([new _UpdateLocationEvent.UpdateLocationEvent(), new _AppBridgeCallbackEvent.AppBridgeCallbackEvent(), new _VisibilityChangedByTransparentServiceWebEvent.VisibilityChangedByTransparentServiceWebEvent()]);
233547
- },2615,[2,2616,2618,2621],"../../../.yarn/__virtual__/@apps-in-toss-native-modules-virtual-e56741e8de/1/packages/apps-in-toss/native-modules/src/AppsInTossModule/native-event-emitter/appsInTossEvent.ts");
233606
+ },2616,[2,2617,2619,2622],"../../../.yarn/__virtual__/@apps-in-toss-native-modules-virtual-e56741e8de/1/packages/apps-in-toss/native-modules/src/AppsInTossModule/native-event-emitter/appsInTossEvent.ts");
233548
233607
  __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
233549
233608
  var _interopRequireDefault = _$$_REQUIRE(_dependencyMap[0], "@babel/runtime/helpers/interopRequireDefault");
233550
233609
  Object.defineProperty(exports, "__esModule", {
@@ -233611,7 +233670,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
233611
233670
  }
233612
233671
  }]);
233613
233672
  }(_reactNative.GraniteEventDefinition);
233614
- },2616,[1,24,25,43,46,47,1260,2,2580,2581,2617],"../../../.yarn/__virtual__/@apps-in-toss-native-modules-virtual-e56741e8de/1/packages/apps-in-toss/native-modules/src/AppsInTossModule/native-event-emitter/event-plugins/UpdateLocationEvent.ts");
233673
+ },2617,[1,24,25,43,46,47,1260,2,2580,2581,2618],"../../../.yarn/__virtual__/@apps-in-toss-native-modules-virtual-e56741e8de/1/packages/apps-in-toss/native-modules/src/AppsInTossModule/native-event-emitter/event-plugins/UpdateLocationEvent.ts");
233615
233674
  __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
233616
233675
  Object.defineProperty(exports, "__esModule", {
233617
233676
  value: true
@@ -233620,7 +233679,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
233620
233679
  var _reactNative = _$$_REQUIRE(_dependencyMap[0], "react-native");
233621
233680
  var _AppsInTossModule = _$$_REQUIRE(_dependencyMap[1], "../native-modules/AppsInTossModule");
233622
233681
  var nativeEventEmitter = exports.nativeEventEmitter = new _reactNative.NativeEventEmitter(_AppsInTossModule.AppsInTossModuleInstance);
233623
- },2617,[18,2580],"../../../.yarn/__virtual__/@apps-in-toss-native-modules-virtual-e56741e8de/1/packages/apps-in-toss/native-modules/src/AppsInTossModule/native-event-emitter/nativeEventEmitter.ts");
233682
+ },2618,[18,2580],"../../../.yarn/__virtual__/@apps-in-toss-native-modules-virtual-e56741e8de/1/packages/apps-in-toss/native-modules/src/AppsInTossModule/native-event-emitter/nativeEventEmitter.ts");
233624
233683
  __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
233625
233684
  var _interopRequireDefault = _$$_REQUIRE(_dependencyMap[0], "@babel/runtime/helpers/interopRequireDefault");
233626
233685
  Object.defineProperty(exports, "__esModule", {
@@ -233673,7 +233732,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
233673
233732
  }
233674
233733
  }]);
233675
233734
  }(_reactNative.GraniteEventDefinition);
233676
- },2618,[1,24,25,43,46,47,2,2619,2617],"../../../.yarn/__virtual__/@apps-in-toss-native-modules-virtual-e56741e8de/1/packages/apps-in-toss/native-modules/src/AppsInTossModule/native-event-emitter/internal/AppBridgeCallbackEvent.ts");
233735
+ },2619,[1,24,25,43,46,47,2,2620,2618],"../../../.yarn/__virtual__/@apps-in-toss-native-modules-virtual-e56741e8de/1/packages/apps-in-toss/native-modules/src/AppsInTossModule/native-event-emitter/internal/AppBridgeCallbackEvent.ts");
233677
233736
  __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
233678
233737
  var _interopRequireDefault = _$$_REQUIRE(_dependencyMap[0], "@babel/runtime/helpers/interopRequireDefault");
233679
233738
  Object.defineProperty(exports, "__esModule", {
@@ -233750,7 +233809,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
233750
233809
  unregisterCallback: unregisterCallback,
233751
233810
  getCallbackIds: getCallbackIds
233752
233811
  };
233753
- },2619,[1,61,207,2620,2580],"../../../.yarn/__virtual__/@apps-in-toss-native-modules-virtual-e56741e8de/1/packages/apps-in-toss/native-modules/src/AppsInTossModule/native-event-emitter/internal/appBridge.ts");
233812
+ },2620,[1,61,207,2621,2580],"../../../.yarn/__virtual__/@apps-in-toss-native-modules-virtual-e56741e8de/1/packages/apps-in-toss/native-modules/src/AppsInTossModule/native-event-emitter/internal/appBridge.ts");
233754
233813
  __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
233755
233814
  Object.defineProperty(exports, "__esModule", {
233756
233815
  value: true
@@ -233759,7 +233818,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
233759
233818
  function generateUUID(placeholder) {
233760
233819
  return placeholder ? (placeholder ^ Math.random() * 16 >> placeholder / 4).toString(16) : (String(1e7) + 1e3 + 4e3 + 8e3 + 1e11).replace(/[018]/g, generateUUID);
233761
233820
  }
233762
- },2620,[],"../../../.yarn/__virtual__/@apps-in-toss-native-modules-virtual-e56741e8de/1/packages/apps-in-toss/native-modules/src/utils/generateUUID.ts");
233821
+ },2621,[],"../../../.yarn/__virtual__/@apps-in-toss-native-modules-virtual-e56741e8de/1/packages/apps-in-toss/native-modules/src/utils/generateUUID.ts");
233763
233822
  __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
233764
233823
  var _interopRequireDefault = _$$_REQUIRE(_dependencyMap[0], "@babel/runtime/helpers/interopRequireDefault");
233765
233824
  Object.defineProperty(exports, "__esModule", {
@@ -233817,7 +233876,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
233817
233876
  }
233818
233877
  }]);
233819
233878
  }(_reactNative.GraniteEventDefinition);
233820
- },2621,[1,24,25,43,46,47,2,2617],"../../../.yarn/__virtual__/@apps-in-toss-native-modules-virtual-e56741e8de/1/packages/apps-in-toss/native-modules/src/AppsInTossModule/native-event-emitter/internal/VisibilityChangedByTransparentServiceWebEvent.ts");
233879
+ },2622,[1,24,25,43,46,47,2,2618],"../../../.yarn/__virtual__/@apps-in-toss-native-modules-virtual-e56741e8de/1/packages/apps-in-toss/native-modules/src/AppsInTossModule/native-event-emitter/internal/VisibilityChangedByTransparentServiceWebEvent.ts");
233821
233880
  __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
233822
233881
  Object.defineProperty(exports, "__esModule", {
233823
233882
  value: true
@@ -234145,6 +234204,18 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
234145
234204
  }
234146
234205
  });
234147
234206
  });
234207
+ var _getServerTime = _$$_REQUIRE(_dependencyMap[28], "./getServerTime");
234208
+ Object.keys(_getServerTime).forEach(function (key) {
234209
+ if (key === "default" || key === "__esModule") return;
234210
+ if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
234211
+ if (key in exports && exports[key] === _getServerTime[key]) return;
234212
+ Object.defineProperty(exports, key, {
234213
+ enumerable: true,
234214
+ get: function get() {
234215
+ return _getServerTime[key];
234216
+ }
234217
+ });
234218
+ });
234148
234219
  var TossPay = exports.TossPay = {
234149
234220
  checkoutPayment: _checkoutPayment.checkoutPayment
234150
234221
  };
@@ -234153,7 +234224,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
234153
234224
  showAppsInTossAdMob: _googleAdMobV.showAppsInTossAdMob,
234154
234225
  isAppsInTossAdMobLoaded: _googleAdMobV.isAppsInTossAdMobLoaded
234155
234226
  };
234156
- },2622,[2623,2596,2580,2590,2591,2587,2586,2585,2588,2583,2589,2612,2610,2611,2594,2625,2592,2597,2595,2626,2601,2599,2602,2603,2605,2604,2627,2598],"../../../.yarn/__virtual__/@apps-in-toss-native-modules-virtual-e56741e8de/1/packages/apps-in-toss/native-modules/src/AppsInTossModule/native-modules/index.ts");
234227
+ },2623,[2624,2596,2580,2590,2591,2587,2586,2585,2588,2583,2589,2613,2611,2612,2594,2626,2592,2597,2595,2627,2601,2599,2602,2603,2605,2604,2628,2598,2606],"../../../.yarn/__virtual__/@apps-in-toss-native-modules-virtual-e56741e8de/1/packages/apps-in-toss/native-modules/src/AppsInTossModule/native-modules/index.ts");
234157
234228
  __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
234158
234229
  var _interopRequireDefault = _$$_REQUIRE(_dependencyMap[0], "@babel/runtime/helpers/interopRequireDefault");
234159
234230
  Object.defineProperty(exports, "__esModule", {
@@ -234286,7 +234357,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
234286
234357
  });
234287
234358
  }
234288
234359
  isAppsInTossAdMobLoaded.isSupported = isAppsInTossAdMobLoadedSupported;
234289
- },2623,[1,16,1261,2624,2619,2610,2592],"../../../.yarn/__virtual__/@apps-in-toss-native-modules-virtual-e56741e8de/1/packages/apps-in-toss/native-modules/src/AppsInTossModule/native-modules/ads/googleAdMobV2.ts");
234360
+ },2624,[1,16,1261,2625,2620,2611,2592],"../../../.yarn/__virtual__/@apps-in-toss-native-modules-virtual-e56741e8de/1/packages/apps-in-toss/native-modules/src/AppsInTossModule/native-modules/ads/googleAdMobV2.ts");
234290
234361
  __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
234291
234362
  Object.defineProperty(exports, "__esModule", {
234292
234363
  value: true
@@ -234300,7 +234371,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
234300
234371
  return null;
234301
234372
  }
234302
234373
  }
234303
- },2624,[2],"../../../.yarn/__virtual__/@apps-in-toss-native-modules-virtual-e56741e8de/1/packages/apps-in-toss/native-modules/src/utils/getReferrer.ts");
234374
+ },2625,[2],"../../../.yarn/__virtual__/@apps-in-toss-native-modules-virtual-e56741e8de/1/packages/apps-in-toss/native-modules/src/utils/getReferrer.ts");
234304
234375
  __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
234305
234376
  var _interopRequireDefault = _$$_REQUIRE(_dependencyMap[0], "@babel/runtime/helpers/interopRequireDefault");
234306
234377
  Object.defineProperty(exports, "__esModule", {
@@ -234495,7 +234566,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
234495
234566
  getCompletedOrRefundedOrders: getCompletedOrRefundedOrders,
234496
234567
  completeProductGrant: completeProductGrant
234497
234568
  };
234498
- },2625,[1,16,1261,2580,2592,2619],"../../../.yarn/__virtual__/@apps-in-toss-native-modules-virtual-e56741e8de/1/packages/apps-in-toss/native-modules/src/AppsInTossModule/native-modules/iap.ts");
234569
+ },2626,[1,16,1261,2580,2592,2620],"../../../.yarn/__virtual__/@apps-in-toss-native-modules-virtual-e56741e8de/1/packages/apps-in-toss/native-modules/src/AppsInTossModule/native-modules/iap.ts");
234499
234570
  __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
234500
234571
  Object.defineProperty(exports, "__esModule", {
234501
234572
  value: true
@@ -234527,7 +234598,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
234527
234598
  removeItem: removeItem,
234528
234599
  clearItems: clearItems
234529
234600
  };
234530
- },2626,[2580],"../../../.yarn/__virtual__/@apps-in-toss-native-modules-virtual-e56741e8de/1/packages/apps-in-toss/native-modules/src/AppsInTossModule/native-modules/storage.ts");
234601
+ },2627,[2580],"../../../.yarn/__virtual__/@apps-in-toss-native-modules-virtual-e56741e8de/1/packages/apps-in-toss/native-modules/src/AppsInTossModule/native-modules/storage.ts");
234531
234602
  __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
234532
234603
  Object.defineProperty(exports, "__esModule", {
234533
234604
  value: true
@@ -234563,7 +234634,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
234563
234634
  });
234564
234635
  return unregisterCallbacks;
234565
234636
  }
234566
- },2627,[2619,2592],"../../../.yarn/__virtual__/@apps-in-toss-native-modules-virtual-e56741e8de/1/packages/apps-in-toss/native-modules/src/AppsInTossModule/native-event-emitter/contactsViral.ts");
234637
+ },2628,[2620,2592],"../../../.yarn/__virtual__/@apps-in-toss-native-modules-virtual-e56741e8de/1/packages/apps-in-toss/native-modules/src/AppsInTossModule/native-event-emitter/contactsViral.ts");
234567
234638
  __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
234568
234639
  Object.defineProperty(exports, "__esModule", {
234569
234640
  value: true
@@ -234573,7 +234644,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
234573
234644
  function onVisibilityChangedByTransparentServiceWeb(eventParams) {
234574
234645
  return _appsInTossEvent.appsInTossEvent.addEventListener('onVisibilityChangedByTransparentServiceWeb', eventParams);
234575
234646
  }
234576
- },2628,[2615],"../../../.yarn/__virtual__/@apps-in-toss-native-modules-virtual-e56741e8de/1/packages/apps-in-toss/native-modules/src/AppsInTossModule/native-event-emitter/internal/onVisibilityChangedByTransparentServiceWeb.ts");
234647
+ },2629,[2616],"../../../.yarn/__virtual__/@apps-in-toss-native-modules-virtual-e56741e8de/1/packages/apps-in-toss/native-modules/src/AppsInTossModule/native-event-emitter/internal/onVisibilityChangedByTransparentServiceWeb.ts");
234577
234648
  __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
234578
234649
  Object.defineProperty(exports, "__esModule", {
234579
234650
  value: true
@@ -234588,7 +234659,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
234588
234659
  context.keys = function () {
234589
234660
  return Array.from(files.keys());
234590
234661
  };
234591
- },2629,[2630,2631],"react-native/context.ts");
234662
+ },2630,[2631,2632],"react-native/context.ts");
234592
234663
  __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
234593
234664
  Object.defineProperty(exports, "__esModule", {
234594
234665
  value: true
@@ -234621,7 +234692,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
234621
234692
  })
234622
234693
  });
234623
234694
  }
234624
- },2630,[1256,18,9],"react-native/pages/index.tsx");
234695
+ },2631,[1256,18,9],"react-native/pages/index.tsx");
234625
234696
  __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
234626
234697
  var _interopRequireDefault = _$$_REQUIRE(_dependencyMap[0], "@babel/runtime/helpers/interopRequireDefault");
234627
234698
  Object.defineProperty(exports, "__esModule", {
@@ -234634,6 +234705,6 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
234634
234705
  }
234635
234706
  });
234636
234707
  var _index = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[1], "./index"));
234637
- },2631,[1,2630],"react-native/pages/_404.tsx");
234708
+ },2632,[1,2631],"react-native/pages/_404.tsx");
234638
234709
  __r(133);
234639
234710
  __r(0);