@apps-in-toss/web-framework 1.8.1 → 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 +2 -0
- package/dist/prebuilt/dev.android.js +108 -30
- package/dist/prebuilt/dev.ios.js +108 -30
- package/dist/prebuilt/prod.android.js +92 -2
- package/dist/prebuilt/prod.ios.js +92 -2
- package/package.json +7 -7
package/CHANGELOG.md
CHANGED
|
@@ -153360,7 +153360,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
153360
153360
|
var _default = exports.default = _framework.AppsInToss.registerApp(AppContainer, {
|
|
153361
153361
|
context: _context.context
|
|
153362
153362
|
});
|
|
153363
|
-
},1255,[1256,
|
|
153363
|
+
},1255,[1256,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
|
|
|
@@ -156425,7 +156425,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
156425
156425
|
useTopNavigation: _useTopNavigation,
|
|
156426
156426
|
useWaitForReturnNavigator: _useWaitForReturnNavigator
|
|
156427
156427
|
}, _$$_REQUIRE(_dependencyMap[7], "@apps-in-toss/analytics"), _$$_REQUIRE(_dependencyMap[8], "@apps-in-toss/native-modules"), _$$_REQUIRE(_dependencyMap[21], "@apps-in-toss/types")));
|
|
156428
|
-
},1256,[24,25,32,207,16,61,1257,1258,1259,2,1446,18,6,9,2468,2568,534,2569,
|
|
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");
|
|
156429
156429
|
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
|
|
156430
156430
|
function _objectDestructuringEmpty(obj) {
|
|
156431
156431
|
if (obj == null) throw new TypeError("Cannot destructure undefined");
|
|
@@ -157186,6 +157186,9 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
157186
157186
|
getSchemeUri: function getSchemeUri() {
|
|
157187
157187
|
return getSchemeUri2;
|
|
157188
157188
|
},
|
|
157189
|
+
getServerTime: function getServerTime() {
|
|
157190
|
+
return _getServerTime;
|
|
157191
|
+
},
|
|
157189
157192
|
getTossAppVersion: function getTossAppVersion() {
|
|
157190
157193
|
return _getTossAppVersion;
|
|
157191
157194
|
},
|
|
@@ -158190,6 +158193,10 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
158190
158193
|
android: "5.237.0",
|
|
158191
158194
|
ios: "5.237.0"
|
|
158192
158195
|
};
|
|
158196
|
+
var GET_SERVER_TIME_MIN_VERSION = {
|
|
158197
|
+
android: "5.245.0",
|
|
158198
|
+
ios: "5.245.0"
|
|
158199
|
+
};
|
|
158193
158200
|
function _openGameCenterLeaderboard() {
|
|
158194
158201
|
return _openGameCenterLeaderboard2.apply(this, arguments);
|
|
158195
158202
|
}
|
|
@@ -158362,6 +158369,22 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
158362
158369
|
});
|
|
158363
158370
|
return _appsInTossSignTossCert2.apply(this, arguments);
|
|
158364
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
|
+
};
|
|
158365
158388
|
var _TossPay = {
|
|
158366
158389
|
checkoutPayment: checkoutPayment
|
|
158367
158390
|
};
|
|
@@ -158507,6 +158530,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
158507
158530
|
getOperationalEnvironment: _getOperationalEnvironment,
|
|
158508
158531
|
getPlatformOS: _getPlatformOS,
|
|
158509
158532
|
getSchemeUri: getSchemeUri,
|
|
158533
|
+
getServerTime: _getServerTime,
|
|
158510
158534
|
getTossAppVersion: _getTossAppVersion,
|
|
158511
158535
|
getTossShareLink: _getTossShareLink,
|
|
158512
158536
|
getUserKeyForGame: _getUserKeyForGame,
|
|
@@ -232421,7 +232445,18 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
232421
232445
|
}
|
|
232422
232446
|
});
|
|
232423
232447
|
});
|
|
232424
|
-
|
|
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");
|
|
232425
232460
|
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
|
|
232426
232461
|
var _interopRequireDefault = _$$_REQUIRE(_dependencyMap[0], "@babel/runtime/helpers/interopRequireDefault");
|
|
232427
232462
|
Object.defineProperty(exports, "__esModule", {
|
|
@@ -233158,7 +233193,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
233158
233193
|
Object.defineProperty(exports, "__esModule", {
|
|
233159
233194
|
value: true
|
|
233160
233195
|
});
|
|
233161
|
-
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;
|
|
233162
233197
|
var GAME_PROFILE_WEBVIEW_URL = exports.GAME_PROFILE_WEBVIEW_URL = 'https://service.toss.im/game-center/profile';
|
|
233163
233198
|
var GAME_CENTER_MIN_VERSION = exports.GAME_CENTER_MIN_VERSION = {
|
|
233164
233199
|
android: '5.221.0',
|
|
@@ -233176,6 +233211,10 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
233176
233211
|
android: '5.237.0',
|
|
233177
233212
|
ios: '5.237.0'
|
|
233178
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
|
+
};
|
|
233179
233218
|
},2600,[],"../../../.yarn/__virtual__/@apps-in-toss-native-modules-virtual-e56741e8de/1/packages/apps-in-toss/native-modules/src/AppsInTossModule/constants.ts");
|
|
233180
233219
|
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
|
|
233181
233220
|
var _interopRequireDefault = _$$_REQUIRE(_dependencyMap[0], "@babel/runtime/helpers/interopRequireDefault");
|
|
@@ -233336,6 +233375,33 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
233336
233375
|
return _grantPromotionRewardForGame.apply(this, arguments);
|
|
233337
233376
|
}
|
|
233338
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");
|
|
233339
233405
|
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
|
|
233340
233406
|
Object.defineProperty(exports, "__esModule", {
|
|
233341
233407
|
value: true
|
|
@@ -233406,7 +233472,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
233406
233472
|
}
|
|
233407
233473
|
});
|
|
233408
233474
|
});
|
|
233409
|
-
},
|
|
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");
|
|
233410
233476
|
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
|
|
233411
233477
|
Object.defineProperty(exports, "__esModule", {
|
|
233412
233478
|
value: true
|
|
@@ -233425,7 +233491,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
233425
233491
|
function replaceUnderbarToHypen(locale) {
|
|
233426
233492
|
return locale.replace(/_/g, '-');
|
|
233427
233493
|
}
|
|
233428
|
-
},
|
|
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");
|
|
233429
233495
|
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
|
|
233430
233496
|
Object.defineProperty(exports, "__esModule", {
|
|
233431
233497
|
value: true
|
|
@@ -233435,7 +233501,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
233435
233501
|
function getSchemeUri() {
|
|
233436
233502
|
return _BedrockModule.BedrockModule.schemeUri;
|
|
233437
233503
|
}
|
|
233438
|
-
},
|
|
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");
|
|
233439
233505
|
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
|
|
233440
233506
|
Object.defineProperty(exports, "__esModule", {
|
|
233441
233507
|
value: true
|
|
@@ -233445,7 +233511,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
233445
233511
|
function getPlatformOS() {
|
|
233446
233512
|
return _reactNative.Platform.OS;
|
|
233447
233513
|
}
|
|
233448
|
-
},
|
|
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");
|
|
233449
233515
|
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
|
|
233450
233516
|
Object.defineProperty(exports, "__esModule", {
|
|
233451
233517
|
value: true
|
|
@@ -233455,7 +233521,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
233455
233521
|
function getOperationalEnvironment() {
|
|
233456
233522
|
return _AppsInTossModule.AppsInTossModule.operationalEnvironment;
|
|
233457
233523
|
}
|
|
233458
|
-
},
|
|
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");
|
|
233459
233525
|
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
|
|
233460
233526
|
Object.defineProperty(exports, "__esModule", {
|
|
233461
233527
|
value: true
|
|
@@ -233465,7 +233531,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
233465
233531
|
function getTossAppVersion() {
|
|
233466
233532
|
return _AppsInTossModule.AppsInTossModule.tossAppVersion;
|
|
233467
233533
|
}
|
|
233468
|
-
},
|
|
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");
|
|
233469
233535
|
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
|
|
233470
233536
|
Object.defineProperty(exports, "__esModule", {
|
|
233471
233537
|
value: true
|
|
@@ -233475,7 +233541,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
233475
233541
|
function getDeviceId() {
|
|
233476
233542
|
return _AppsInTossModule.AppsInTossModule.deviceId;
|
|
233477
233543
|
}
|
|
233478
|
-
},
|
|
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");
|
|
233479
233545
|
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
|
|
233480
233546
|
Object.defineProperty(exports, "__esModule", {
|
|
233481
233547
|
value: true
|
|
@@ -233513,7 +233579,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
233513
233579
|
}
|
|
233514
233580
|
});
|
|
233515
233581
|
});
|
|
233516
|
-
},
|
|
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");
|
|
233517
233583
|
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
|
|
233518
233584
|
Object.defineProperty(exports, "__esModule", {
|
|
233519
233585
|
value: true
|
|
@@ -233526,7 +233592,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
233526
233592
|
}
|
|
233527
233593
|
startUpdateLocation.openPermissionDialog = _nativeModules.getCurrentLocation.openPermissionDialog;
|
|
233528
233594
|
startUpdateLocation.getPermission = _nativeModules.getCurrentLocation.getPermission;
|
|
233529
|
-
},
|
|
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");
|
|
233530
233596
|
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
|
|
233531
233597
|
Object.defineProperty(exports, "__esModule", {
|
|
233532
233598
|
value: true
|
|
@@ -233537,7 +233603,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
233537
233603
|
var _AppBridgeCallbackEvent = _$$_REQUIRE(_dependencyMap[2], "./internal/AppBridgeCallbackEvent");
|
|
233538
233604
|
var _VisibilityChangedByTransparentServiceWebEvent = _$$_REQUIRE(_dependencyMap[3], "./internal/VisibilityChangedByTransparentServiceWebEvent");
|
|
233539
233605
|
var appsInTossEvent = exports.appsInTossEvent = new _reactNative.GraniteEvent([new _UpdateLocationEvent.UpdateLocationEvent(), new _AppBridgeCallbackEvent.AppBridgeCallbackEvent(), new _VisibilityChangedByTransparentServiceWebEvent.VisibilityChangedByTransparentServiceWebEvent()]);
|
|
233540
|
-
},
|
|
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");
|
|
233541
233607
|
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
|
|
233542
233608
|
var _interopRequireDefault = _$$_REQUIRE(_dependencyMap[0], "@babel/runtime/helpers/interopRequireDefault");
|
|
233543
233609
|
Object.defineProperty(exports, "__esModule", {
|
|
@@ -233604,7 +233670,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
233604
233670
|
}
|
|
233605
233671
|
}]);
|
|
233606
233672
|
}(_reactNative.GraniteEventDefinition);
|
|
233607
|
-
},
|
|
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");
|
|
233608
233674
|
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
|
|
233609
233675
|
Object.defineProperty(exports, "__esModule", {
|
|
233610
233676
|
value: true
|
|
@@ -233613,7 +233679,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
233613
233679
|
var _reactNative = _$$_REQUIRE(_dependencyMap[0], "react-native");
|
|
233614
233680
|
var _AppsInTossModule = _$$_REQUIRE(_dependencyMap[1], "../native-modules/AppsInTossModule");
|
|
233615
233681
|
var nativeEventEmitter = exports.nativeEventEmitter = new _reactNative.NativeEventEmitter(_AppsInTossModule.AppsInTossModuleInstance);
|
|
233616
|
-
},
|
|
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");
|
|
233617
233683
|
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
|
|
233618
233684
|
var _interopRequireDefault = _$$_REQUIRE(_dependencyMap[0], "@babel/runtime/helpers/interopRequireDefault");
|
|
233619
233685
|
Object.defineProperty(exports, "__esModule", {
|
|
@@ -233666,7 +233732,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
233666
233732
|
}
|
|
233667
233733
|
}]);
|
|
233668
233734
|
}(_reactNative.GraniteEventDefinition);
|
|
233669
|
-
},
|
|
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");
|
|
233670
233736
|
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
|
|
233671
233737
|
var _interopRequireDefault = _$$_REQUIRE(_dependencyMap[0], "@babel/runtime/helpers/interopRequireDefault");
|
|
233672
233738
|
Object.defineProperty(exports, "__esModule", {
|
|
@@ -233743,7 +233809,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
233743
233809
|
unregisterCallback: unregisterCallback,
|
|
233744
233810
|
getCallbackIds: getCallbackIds
|
|
233745
233811
|
};
|
|
233746
|
-
},
|
|
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");
|
|
233747
233813
|
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
|
|
233748
233814
|
Object.defineProperty(exports, "__esModule", {
|
|
233749
233815
|
value: true
|
|
@@ -233752,7 +233818,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
233752
233818
|
function generateUUID(placeholder) {
|
|
233753
233819
|
return placeholder ? (placeholder ^ Math.random() * 16 >> placeholder / 4).toString(16) : (String(1e7) + 1e3 + 4e3 + 8e3 + 1e11).replace(/[018]/g, generateUUID);
|
|
233754
233820
|
}
|
|
233755
|
-
},
|
|
233821
|
+
},2621,[],"../../../.yarn/__virtual__/@apps-in-toss-native-modules-virtual-e56741e8de/1/packages/apps-in-toss/native-modules/src/utils/generateUUID.ts");
|
|
233756
233822
|
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
|
|
233757
233823
|
var _interopRequireDefault = _$$_REQUIRE(_dependencyMap[0], "@babel/runtime/helpers/interopRequireDefault");
|
|
233758
233824
|
Object.defineProperty(exports, "__esModule", {
|
|
@@ -233810,7 +233876,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
233810
233876
|
}
|
|
233811
233877
|
}]);
|
|
233812
233878
|
}(_reactNative.GraniteEventDefinition);
|
|
233813
|
-
},
|
|
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");
|
|
233814
233880
|
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
|
|
233815
233881
|
Object.defineProperty(exports, "__esModule", {
|
|
233816
233882
|
value: true
|
|
@@ -234138,6 +234204,18 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
234138
234204
|
}
|
|
234139
234205
|
});
|
|
234140
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
|
+
});
|
|
234141
234219
|
var TossPay = exports.TossPay = {
|
|
234142
234220
|
checkoutPayment: _checkoutPayment.checkoutPayment
|
|
234143
234221
|
};
|
|
@@ -234146,7 +234224,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
234146
234224
|
showAppsInTossAdMob: _googleAdMobV.showAppsInTossAdMob,
|
|
234147
234225
|
isAppsInTossAdMobLoaded: _googleAdMobV.isAppsInTossAdMobLoaded
|
|
234148
234226
|
};
|
|
234149
|
-
},
|
|
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");
|
|
234150
234228
|
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
|
|
234151
234229
|
var _interopRequireDefault = _$$_REQUIRE(_dependencyMap[0], "@babel/runtime/helpers/interopRequireDefault");
|
|
234152
234230
|
Object.defineProperty(exports, "__esModule", {
|
|
@@ -234279,7 +234357,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
234279
234357
|
});
|
|
234280
234358
|
}
|
|
234281
234359
|
isAppsInTossAdMobLoaded.isSupported = isAppsInTossAdMobLoadedSupported;
|
|
234282
|
-
},
|
|
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");
|
|
234283
234361
|
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
|
|
234284
234362
|
Object.defineProperty(exports, "__esModule", {
|
|
234285
234363
|
value: true
|
|
@@ -234293,7 +234371,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
234293
234371
|
return null;
|
|
234294
234372
|
}
|
|
234295
234373
|
}
|
|
234296
|
-
},
|
|
234374
|
+
},2625,[2],"../../../.yarn/__virtual__/@apps-in-toss-native-modules-virtual-e56741e8de/1/packages/apps-in-toss/native-modules/src/utils/getReferrer.ts");
|
|
234297
234375
|
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
|
|
234298
234376
|
var _interopRequireDefault = _$$_REQUIRE(_dependencyMap[0], "@babel/runtime/helpers/interopRequireDefault");
|
|
234299
234377
|
Object.defineProperty(exports, "__esModule", {
|
|
@@ -234488,7 +234566,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
234488
234566
|
getCompletedOrRefundedOrders: getCompletedOrRefundedOrders,
|
|
234489
234567
|
completeProductGrant: completeProductGrant
|
|
234490
234568
|
};
|
|
234491
|
-
},
|
|
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");
|
|
234492
234570
|
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
|
|
234493
234571
|
Object.defineProperty(exports, "__esModule", {
|
|
234494
234572
|
value: true
|
|
@@ -234520,7 +234598,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
234520
234598
|
removeItem: removeItem,
|
|
234521
234599
|
clearItems: clearItems
|
|
234522
234600
|
};
|
|
234523
|
-
},
|
|
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");
|
|
234524
234602
|
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
|
|
234525
234603
|
Object.defineProperty(exports, "__esModule", {
|
|
234526
234604
|
value: true
|
|
@@ -234556,7 +234634,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
234556
234634
|
});
|
|
234557
234635
|
return unregisterCallbacks;
|
|
234558
234636
|
}
|
|
234559
|
-
},
|
|
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");
|
|
234560
234638
|
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
|
|
234561
234639
|
Object.defineProperty(exports, "__esModule", {
|
|
234562
234640
|
value: true
|
|
@@ -234566,7 +234644,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
234566
234644
|
function onVisibilityChangedByTransparentServiceWeb(eventParams) {
|
|
234567
234645
|
return _appsInTossEvent.appsInTossEvent.addEventListener('onVisibilityChangedByTransparentServiceWeb', eventParams);
|
|
234568
234646
|
}
|
|
234569
|
-
},
|
|
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");
|
|
234570
234648
|
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
|
|
234571
234649
|
Object.defineProperty(exports, "__esModule", {
|
|
234572
234650
|
value: true
|
|
@@ -234581,7 +234659,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
234581
234659
|
context.keys = function () {
|
|
234582
234660
|
return Array.from(files.keys());
|
|
234583
234661
|
};
|
|
234584
|
-
},
|
|
234662
|
+
},2630,[2631,2632],"react-native/context.ts");
|
|
234585
234663
|
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
|
|
234586
234664
|
Object.defineProperty(exports, "__esModule", {
|
|
234587
234665
|
value: true
|
|
@@ -234614,7 +234692,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
234614
234692
|
})
|
|
234615
234693
|
});
|
|
234616
234694
|
}
|
|
234617
|
-
},
|
|
234695
|
+
},2631,[1256,18,9],"react-native/pages/index.tsx");
|
|
234618
234696
|
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
|
|
234619
234697
|
var _interopRequireDefault = _$$_REQUIRE(_dependencyMap[0], "@babel/runtime/helpers/interopRequireDefault");
|
|
234620
234698
|
Object.defineProperty(exports, "__esModule", {
|
|
@@ -234627,6 +234705,6 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
234627
234705
|
}
|
|
234628
234706
|
});
|
|
234629
234707
|
var _index = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[1], "./index"));
|
|
234630
|
-
},
|
|
234708
|
+
},2632,[1,2631],"react-native/pages/_404.tsx");
|
|
234631
234709
|
__r(133);
|
|
234632
234710
|
__r(0);
|
package/dist/prebuilt/dev.ios.js
CHANGED
|
@@ -153181,7 +153181,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
153181
153181
|
var _default = exports.default = _framework.AppsInToss.registerApp(AppContainer, {
|
|
153182
153182
|
context: _context.context
|
|
153183
153183
|
});
|
|
153184
|
-
},1255,[1256,
|
|
153184
|
+
},1255,[1256,2629,9],"react-native/src/_app.tsx");
|
|
153185
153185
|
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
|
|
153186
153186
|
"use strict";
|
|
153187
153187
|
|
|
@@ -156246,7 +156246,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
156246
156246
|
useTopNavigation: _useTopNavigation,
|
|
156247
156247
|
useWaitForReturnNavigator: _useWaitForReturnNavigator
|
|
156248
156248
|
}, _$$_REQUIRE(_dependencyMap[7], "@apps-in-toss/analytics"), _$$_REQUIRE(_dependencyMap[8], "@apps-in-toss/native-modules"), _$$_REQUIRE(_dependencyMap[21], "@apps-in-toss/types")));
|
|
156249
|
-
},1256,[24,25,32,207,16,61,1257,1258,1259,2,1446,18,6,9,2467,2567,532,2568,
|
|
156249
|
+
},1256,[24,25,32,207,16,61,1257,1258,1259,2,1446,18,6,9,2467,2567,532,2568,2606,2613,2476,1260],"../../../.yarn/__virtual__/@apps-in-toss-framework-virtual-afbad361af/1/packages/apps-in-toss/framework/dist/index.cjs");
|
|
156250
156250
|
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
|
|
156251
156251
|
function _objectDestructuringEmpty(obj) {
|
|
156252
156252
|
if (obj == null) throw new TypeError("Cannot destructure undefined");
|
|
@@ -157007,6 +157007,9 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
157007
157007
|
getSchemeUri: function getSchemeUri() {
|
|
157008
157008
|
return getSchemeUri2;
|
|
157009
157009
|
},
|
|
157010
|
+
getServerTime: function getServerTime() {
|
|
157011
|
+
return _getServerTime;
|
|
157012
|
+
},
|
|
157010
157013
|
getTossAppVersion: function getTossAppVersion() {
|
|
157011
157014
|
return _getTossAppVersion;
|
|
157012
157015
|
},
|
|
@@ -158011,6 +158014,10 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
158011
158014
|
android: "5.237.0",
|
|
158012
158015
|
ios: "5.237.0"
|
|
158013
158016
|
};
|
|
158017
|
+
var GET_SERVER_TIME_MIN_VERSION = {
|
|
158018
|
+
android: "5.245.0",
|
|
158019
|
+
ios: "5.245.0"
|
|
158020
|
+
};
|
|
158014
158021
|
function _openGameCenterLeaderboard() {
|
|
158015
158022
|
return _openGameCenterLeaderboard2.apply(this, arguments);
|
|
158016
158023
|
}
|
|
@@ -158183,6 +158190,22 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
158183
158190
|
});
|
|
158184
158191
|
return _appsInTossSignTossCert2.apply(this, arguments);
|
|
158185
158192
|
}
|
|
158193
|
+
function _getServerTime() {
|
|
158194
|
+
return _getServerTime2.apply(this, arguments);
|
|
158195
|
+
}
|
|
158196
|
+
function _getServerTime2() {
|
|
158197
|
+
_getServerTime2 = _asyncToGenerator(function* () {
|
|
158198
|
+
var isSupported = _isMinVersionSupported(GET_SERVER_TIME_MIN_VERSION);
|
|
158199
|
+
if (!isSupported) {
|
|
158200
|
+
return;
|
|
158201
|
+
}
|
|
158202
|
+
return (yield _AppsInTossModule.getServerTime({})).serverTime;
|
|
158203
|
+
});
|
|
158204
|
+
return _getServerTime2.apply(this, arguments);
|
|
158205
|
+
}
|
|
158206
|
+
_getServerTime.isSupported = function () {
|
|
158207
|
+
return _isMinVersionSupported(GET_SERVER_TIME_MIN_VERSION);
|
|
158208
|
+
};
|
|
158186
158209
|
var _TossPay = {
|
|
158187
158210
|
checkoutPayment: checkoutPayment
|
|
158188
158211
|
};
|
|
@@ -158328,6 +158351,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
158328
158351
|
getOperationalEnvironment: _getOperationalEnvironment,
|
|
158329
158352
|
getPlatformOS: _getPlatformOS,
|
|
158330
158353
|
getSchemeUri: getSchemeUri,
|
|
158354
|
+
getServerTime: _getServerTime,
|
|
158331
158355
|
getTossAppVersion: _getTossAppVersion,
|
|
158332
158356
|
getTossShareLink: _getTossShareLink,
|
|
158333
158357
|
getUserKeyForGame: _getUserKeyForGame,
|
|
@@ -232261,7 +232285,18 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
232261
232285
|
}
|
|
232262
232286
|
});
|
|
232263
232287
|
});
|
|
232264
|
-
|
|
232288
|
+
var _getServerTime = _$$_REQUIRE(_dependencyMap[30], "./AppsInTossModule/native-modules/getServerTime");
|
|
232289
|
+
Object.keys(_getServerTime).forEach(function (key) {
|
|
232290
|
+
if (key === "default" || key === "__esModule") return;
|
|
232291
|
+
if (key in exports && exports[key] === _getServerTime[key]) return;
|
|
232292
|
+
Object.defineProperty(exports, key, {
|
|
232293
|
+
enumerable: true,
|
|
232294
|
+
get: function get() {
|
|
232295
|
+
return _getServerTime[key];
|
|
232296
|
+
}
|
|
232297
|
+
});
|
|
232298
|
+
});
|
|
232299
|
+
},2568,[2569,2571,2572,2573,2574,2575,2576,2577,2578,2580,2581,2582,2584,2585,2586,2587,2588,2589,2590,2593,2594,2595,2596,2597,2598,2600,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");
|
|
232265
232300
|
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
|
|
232266
232301
|
var _interopRequireDefault = _$$_REQUIRE(_dependencyMap[0], "@babel/runtime/helpers/interopRequireDefault");
|
|
232267
232302
|
Object.defineProperty(exports, "__esModule", {
|
|
@@ -232998,7 +233033,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
232998
233033
|
Object.defineProperty(exports, "__esModule", {
|
|
232999
233034
|
value: true
|
|
233000
233035
|
});
|
|
233001
|
-
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;
|
|
233036
|
+
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;
|
|
233002
233037
|
var GAME_PROFILE_WEBVIEW_URL = exports.GAME_PROFILE_WEBVIEW_URL = 'https://service.toss.im/game-center/profile';
|
|
233003
233038
|
var GAME_CENTER_MIN_VERSION = exports.GAME_CENTER_MIN_VERSION = {
|
|
233004
233039
|
android: '5.221.0',
|
|
@@ -233016,6 +233051,10 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
233016
233051
|
android: '5.237.0',
|
|
233017
233052
|
ios: '5.237.0'
|
|
233018
233053
|
};
|
|
233054
|
+
var GET_SERVER_TIME_MIN_VERSION = exports.GET_SERVER_TIME_MIN_VERSION = {
|
|
233055
|
+
android: '5.245.0',
|
|
233056
|
+
ios: '5.245.0'
|
|
233057
|
+
};
|
|
233019
233058
|
},2599,[],"../../../.yarn/__virtual__/@apps-in-toss-native-modules-virtual-e56741e8de/1/packages/apps-in-toss/native-modules/src/AppsInTossModule/constants.ts");
|
|
233020
233059
|
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
|
|
233021
233060
|
var _interopRequireDefault = _$$_REQUIRE(_dependencyMap[0], "@babel/runtime/helpers/interopRequireDefault");
|
|
@@ -233176,6 +233215,33 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
233176
233215
|
return _grantPromotionRewardForGame.apply(this, arguments);
|
|
233177
233216
|
}
|
|
233178
233217
|
},2604,[1,16,2579,2591,2599],"../../../.yarn/__virtual__/@apps-in-toss-native-modules-virtual-e56741e8de/1/packages/apps-in-toss/native-modules/src/AppsInTossModule/native-modules/grantPromotionRewardForGame.ts");
|
|
233218
|
+
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
|
|
233219
|
+
var _interopRequireDefault = _$$_REQUIRE(_dependencyMap[0], "@babel/runtime/helpers/interopRequireDefault");
|
|
233220
|
+
Object.defineProperty(exports, "__esModule", {
|
|
233221
|
+
value: true
|
|
233222
|
+
});
|
|
233223
|
+
exports.getServerTime = getServerTime;
|
|
233224
|
+
var _asyncToGenerator2 = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[1], "@babel/runtime/helpers/asyncToGenerator"));
|
|
233225
|
+
var _AppsInTossModule = _$$_REQUIRE(_dependencyMap[2], "./AppsInTossModule");
|
|
233226
|
+
var _isMinVersionSupported = _$$_REQUIRE(_dependencyMap[3], "./isMinVersionSupported");
|
|
233227
|
+
var _constants = _$$_REQUIRE(_dependencyMap[4], "../constants");
|
|
233228
|
+
function getServerTime() {
|
|
233229
|
+
return _getServerTime.apply(this, arguments);
|
|
233230
|
+
}
|
|
233231
|
+
function _getServerTime() {
|
|
233232
|
+
_getServerTime = (0, _asyncToGenerator2.default)(function* () {
|
|
233233
|
+
var isSupported = (0, _isMinVersionSupported.isMinVersionSupported)(_constants.GET_SERVER_TIME_MIN_VERSION);
|
|
233234
|
+
if (!isSupported) {
|
|
233235
|
+
return;
|
|
233236
|
+
}
|
|
233237
|
+
return (yield _AppsInTossModule.AppsInTossModule.getServerTime({})).serverTime;
|
|
233238
|
+
});
|
|
233239
|
+
return _getServerTime.apply(this, arguments);
|
|
233240
|
+
}
|
|
233241
|
+
getServerTime.isSupported = function () {
|
|
233242
|
+
return (0, _isMinVersionSupported.isMinVersionSupported)(_constants.GET_SERVER_TIME_MIN_VERSION);
|
|
233243
|
+
};
|
|
233244
|
+
},2605,[1,16,2579,2591,2599],"../../../.yarn/__virtual__/@apps-in-toss-native-modules-virtual-e56741e8de/1/packages/apps-in-toss/native-modules/src/AppsInTossModule/native-modules/getServerTime.ts");
|
|
233179
233245
|
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
|
|
233180
233246
|
Object.defineProperty(exports, "__esModule", {
|
|
233181
233247
|
value: true
|
|
@@ -233246,7 +233312,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
233246
233312
|
}
|
|
233247
233313
|
});
|
|
233248
233314
|
});
|
|
233249
|
-
},
|
|
233315
|
+
},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");
|
|
233250
233316
|
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
|
|
233251
233317
|
Object.defineProperty(exports, "__esModule", {
|
|
233252
233318
|
value: true
|
|
@@ -233265,7 +233331,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
233265
233331
|
function replaceUnderbarToHypen(locale) {
|
|
233266
233332
|
return locale.replace(/_/g, '-');
|
|
233267
233333
|
}
|
|
233268
|
-
},
|
|
233334
|
+
},2607,[18,2570],"../../../.yarn/__virtual__/@apps-in-toss-native-modules-virtual-e56741e8de/1/packages/apps-in-toss/native-modules/src/BedrockModule/native-modules/natives/getLocale.ts");
|
|
233269
233335
|
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
|
|
233270
233336
|
Object.defineProperty(exports, "__esModule", {
|
|
233271
233337
|
value: true
|
|
@@ -233275,7 +233341,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
233275
233341
|
function getSchemeUri() {
|
|
233276
233342
|
return _BedrockModule.BedrockModule.schemeUri;
|
|
233277
233343
|
}
|
|
233278
|
-
},
|
|
233344
|
+
},2608,[2570],"../../../.yarn/__virtual__/@apps-in-toss-native-modules-virtual-e56741e8de/1/packages/apps-in-toss/native-modules/src/BedrockModule/native-modules/natives/getSchemeUri.ts");
|
|
233279
233345
|
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
|
|
233280
233346
|
Object.defineProperty(exports, "__esModule", {
|
|
233281
233347
|
value: true
|
|
@@ -233285,7 +233351,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
233285
233351
|
function getPlatformOS() {
|
|
233286
233352
|
return _reactNative.Platform.OS;
|
|
233287
233353
|
}
|
|
233288
|
-
},
|
|
233354
|
+
},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");
|
|
233289
233355
|
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
|
|
233290
233356
|
Object.defineProperty(exports, "__esModule", {
|
|
233291
233357
|
value: true
|
|
@@ -233295,7 +233361,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
233295
233361
|
function getOperationalEnvironment() {
|
|
233296
233362
|
return _AppsInTossModule.AppsInTossModule.operationalEnvironment;
|
|
233297
233363
|
}
|
|
233298
|
-
},
|
|
233364
|
+
},2610,[2579],"../../../.yarn/__virtual__/@apps-in-toss-native-modules-virtual-e56741e8de/1/packages/apps-in-toss/native-modules/src/AppsInTossModule/native-modules/getOperationalEnvironment.ts");
|
|
233299
233365
|
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
|
|
233300
233366
|
Object.defineProperty(exports, "__esModule", {
|
|
233301
233367
|
value: true
|
|
@@ -233305,7 +233371,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
233305
233371
|
function getTossAppVersion() {
|
|
233306
233372
|
return _AppsInTossModule.AppsInTossModule.tossAppVersion;
|
|
233307
233373
|
}
|
|
233308
|
-
},
|
|
233374
|
+
},2611,[2579],"../../../.yarn/__virtual__/@apps-in-toss-native-modules-virtual-e56741e8de/1/packages/apps-in-toss/native-modules/src/AppsInTossModule/native-modules/getTossAppVersion.ts");
|
|
233309
233375
|
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
|
|
233310
233376
|
Object.defineProperty(exports, "__esModule", {
|
|
233311
233377
|
value: true
|
|
@@ -233315,7 +233381,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
233315
233381
|
function getDeviceId() {
|
|
233316
233382
|
return _AppsInTossModule.AppsInTossModule.deviceId;
|
|
233317
233383
|
}
|
|
233318
|
-
},
|
|
233384
|
+
},2612,[2579],"../../../.yarn/__virtual__/@apps-in-toss-native-modules-virtual-e56741e8de/1/packages/apps-in-toss/native-modules/src/AppsInTossModule/native-modules/getDeviceId.ts");
|
|
233319
233385
|
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
|
|
233320
233386
|
Object.defineProperty(exports, "__esModule", {
|
|
233321
233387
|
value: true
|
|
@@ -233353,7 +233419,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
233353
233419
|
}
|
|
233354
233420
|
});
|
|
233355
233421
|
});
|
|
233356
|
-
},
|
|
233422
|
+
},2613,[2614,2628,2627],"../../../.yarn/__virtual__/@apps-in-toss-native-modules-virtual-e56741e8de/1/packages/apps-in-toss/native-modules/src/event-bridges.ts");
|
|
233357
233423
|
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
|
|
233358
233424
|
Object.defineProperty(exports, "__esModule", {
|
|
233359
233425
|
value: true
|
|
@@ -233366,7 +233432,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
233366
233432
|
}
|
|
233367
233433
|
startUpdateLocation.openPermissionDialog = _nativeModules.getCurrentLocation.openPermissionDialog;
|
|
233368
233434
|
startUpdateLocation.getPermission = _nativeModules.getCurrentLocation.getPermission;
|
|
233369
|
-
},
|
|
233435
|
+
},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");
|
|
233370
233436
|
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
|
|
233371
233437
|
Object.defineProperty(exports, "__esModule", {
|
|
233372
233438
|
value: true
|
|
@@ -233377,7 +233443,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
233377
233443
|
var _AppBridgeCallbackEvent = _$$_REQUIRE(_dependencyMap[2], "./internal/AppBridgeCallbackEvent");
|
|
233378
233444
|
var _VisibilityChangedByTransparentServiceWebEvent = _$$_REQUIRE(_dependencyMap[3], "./internal/VisibilityChangedByTransparentServiceWebEvent");
|
|
233379
233445
|
var appsInTossEvent = exports.appsInTossEvent = new _reactNative.GraniteEvent([new _UpdateLocationEvent.UpdateLocationEvent(), new _AppBridgeCallbackEvent.AppBridgeCallbackEvent(), new _VisibilityChangedByTransparentServiceWebEvent.VisibilityChangedByTransparentServiceWebEvent()]);
|
|
233380
|
-
},
|
|
233446
|
+
},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");
|
|
233381
233447
|
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
|
|
233382
233448
|
var _interopRequireDefault = _$$_REQUIRE(_dependencyMap[0], "@babel/runtime/helpers/interopRequireDefault");
|
|
233383
233449
|
Object.defineProperty(exports, "__esModule", {
|
|
@@ -233444,7 +233510,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
233444
233510
|
}
|
|
233445
233511
|
}]);
|
|
233446
233512
|
}(_reactNative.GraniteEventDefinition);
|
|
233447
|
-
},
|
|
233513
|
+
},2616,[1,24,25,43,46,47,1260,2,2579,2580,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");
|
|
233448
233514
|
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
|
|
233449
233515
|
Object.defineProperty(exports, "__esModule", {
|
|
233450
233516
|
value: true
|
|
@@ -233453,7 +233519,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
233453
233519
|
var _reactNative = _$$_REQUIRE(_dependencyMap[0], "react-native");
|
|
233454
233520
|
var _AppsInTossModule = _$$_REQUIRE(_dependencyMap[1], "../native-modules/AppsInTossModule");
|
|
233455
233521
|
var nativeEventEmitter = exports.nativeEventEmitter = new _reactNative.NativeEventEmitter(_AppsInTossModule.AppsInTossModuleInstance);
|
|
233456
|
-
},
|
|
233522
|
+
},2617,[18,2579],"../../../.yarn/__virtual__/@apps-in-toss-native-modules-virtual-e56741e8de/1/packages/apps-in-toss/native-modules/src/AppsInTossModule/native-event-emitter/nativeEventEmitter.ts");
|
|
233457
233523
|
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
|
|
233458
233524
|
var _interopRequireDefault = _$$_REQUIRE(_dependencyMap[0], "@babel/runtime/helpers/interopRequireDefault");
|
|
233459
233525
|
Object.defineProperty(exports, "__esModule", {
|
|
@@ -233506,7 +233572,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
233506
233572
|
}
|
|
233507
233573
|
}]);
|
|
233508
233574
|
}(_reactNative.GraniteEventDefinition);
|
|
233509
|
-
},
|
|
233575
|
+
},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");
|
|
233510
233576
|
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
|
|
233511
233577
|
var _interopRequireDefault = _$$_REQUIRE(_dependencyMap[0], "@babel/runtime/helpers/interopRequireDefault");
|
|
233512
233578
|
Object.defineProperty(exports, "__esModule", {
|
|
@@ -233583,7 +233649,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
233583
233649
|
unregisterCallback: unregisterCallback,
|
|
233584
233650
|
getCallbackIds: getCallbackIds
|
|
233585
233651
|
};
|
|
233586
|
-
},
|
|
233652
|
+
},2619,[1,61,207,2620,2579],"../../../.yarn/__virtual__/@apps-in-toss-native-modules-virtual-e56741e8de/1/packages/apps-in-toss/native-modules/src/AppsInTossModule/native-event-emitter/internal/appBridge.ts");
|
|
233587
233653
|
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
|
|
233588
233654
|
Object.defineProperty(exports, "__esModule", {
|
|
233589
233655
|
value: true
|
|
@@ -233592,7 +233658,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
233592
233658
|
function generateUUID(placeholder) {
|
|
233593
233659
|
return placeholder ? (placeholder ^ Math.random() * 16 >> placeholder / 4).toString(16) : (String(1e7) + 1e3 + 4e3 + 8e3 + 1e11).replace(/[018]/g, generateUUID);
|
|
233594
233660
|
}
|
|
233595
|
-
},
|
|
233661
|
+
},2620,[],"../../../.yarn/__virtual__/@apps-in-toss-native-modules-virtual-e56741e8de/1/packages/apps-in-toss/native-modules/src/utils/generateUUID.ts");
|
|
233596
233662
|
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
|
|
233597
233663
|
var _interopRequireDefault = _$$_REQUIRE(_dependencyMap[0], "@babel/runtime/helpers/interopRequireDefault");
|
|
233598
233664
|
Object.defineProperty(exports, "__esModule", {
|
|
@@ -233650,7 +233716,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
233650
233716
|
}
|
|
233651
233717
|
}]);
|
|
233652
233718
|
}(_reactNative.GraniteEventDefinition);
|
|
233653
|
-
},
|
|
233719
|
+
},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");
|
|
233654
233720
|
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
|
|
233655
233721
|
Object.defineProperty(exports, "__esModule", {
|
|
233656
233722
|
value: true
|
|
@@ -233978,6 +234044,18 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
233978
234044
|
}
|
|
233979
234045
|
});
|
|
233980
234046
|
});
|
|
234047
|
+
var _getServerTime = _$$_REQUIRE(_dependencyMap[28], "./getServerTime");
|
|
234048
|
+
Object.keys(_getServerTime).forEach(function (key) {
|
|
234049
|
+
if (key === "default" || key === "__esModule") return;
|
|
234050
|
+
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
|
234051
|
+
if (key in exports && exports[key] === _getServerTime[key]) return;
|
|
234052
|
+
Object.defineProperty(exports, key, {
|
|
234053
|
+
enumerable: true,
|
|
234054
|
+
get: function get() {
|
|
234055
|
+
return _getServerTime[key];
|
|
234056
|
+
}
|
|
234057
|
+
});
|
|
234058
|
+
});
|
|
233981
234059
|
var TossPay = exports.TossPay = {
|
|
233982
234060
|
checkoutPayment: _checkoutPayment.checkoutPayment
|
|
233983
234061
|
};
|
|
@@ -233986,7 +234064,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
233986
234064
|
showAppsInTossAdMob: _googleAdMobV.showAppsInTossAdMob,
|
|
233987
234065
|
isAppsInTossAdMobLoaded: _googleAdMobV.isAppsInTossAdMobLoaded
|
|
233988
234066
|
};
|
|
233989
|
-
},
|
|
234067
|
+
},2622,[2623,2595,2579,2589,2590,2586,2585,2584,2587,2582,2588,2612,2610,2611,2593,2625,2591,2596,2594,2626,2600,2598,2601,2602,2604,2603,2627,2597,2605],"../../../.yarn/__virtual__/@apps-in-toss-native-modules-virtual-e56741e8de/1/packages/apps-in-toss/native-modules/src/AppsInTossModule/native-modules/index.ts");
|
|
233990
234068
|
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
|
|
233991
234069
|
var _interopRequireDefault = _$$_REQUIRE(_dependencyMap[0], "@babel/runtime/helpers/interopRequireDefault");
|
|
233992
234070
|
Object.defineProperty(exports, "__esModule", {
|
|
@@ -234119,7 +234197,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
234119
234197
|
});
|
|
234120
234198
|
}
|
|
234121
234199
|
isAppsInTossAdMobLoaded.isSupported = isAppsInTossAdMobLoadedSupported;
|
|
234122
|
-
},
|
|
234200
|
+
},2623,[1,16,1261,2624,2619,2610,2591],"../../../.yarn/__virtual__/@apps-in-toss-native-modules-virtual-e56741e8de/1/packages/apps-in-toss/native-modules/src/AppsInTossModule/native-modules/ads/googleAdMobV2.ts");
|
|
234123
234201
|
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
|
|
234124
234202
|
Object.defineProperty(exports, "__esModule", {
|
|
234125
234203
|
value: true
|
|
@@ -234133,7 +234211,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
234133
234211
|
return null;
|
|
234134
234212
|
}
|
|
234135
234213
|
}
|
|
234136
|
-
},
|
|
234214
|
+
},2624,[2],"../../../.yarn/__virtual__/@apps-in-toss-native-modules-virtual-e56741e8de/1/packages/apps-in-toss/native-modules/src/utils/getReferrer.ts");
|
|
234137
234215
|
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
|
|
234138
234216
|
var _interopRequireDefault = _$$_REQUIRE(_dependencyMap[0], "@babel/runtime/helpers/interopRequireDefault");
|
|
234139
234217
|
Object.defineProperty(exports, "__esModule", {
|
|
@@ -234328,7 +234406,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
234328
234406
|
getCompletedOrRefundedOrders: getCompletedOrRefundedOrders,
|
|
234329
234407
|
completeProductGrant: completeProductGrant
|
|
234330
234408
|
};
|
|
234331
|
-
},
|
|
234409
|
+
},2625,[1,16,1261,2579,2591,2619],"../../../.yarn/__virtual__/@apps-in-toss-native-modules-virtual-e56741e8de/1/packages/apps-in-toss/native-modules/src/AppsInTossModule/native-modules/iap.ts");
|
|
234332
234410
|
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
|
|
234333
234411
|
Object.defineProperty(exports, "__esModule", {
|
|
234334
234412
|
value: true
|
|
@@ -234360,7 +234438,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
234360
234438
|
removeItem: removeItem,
|
|
234361
234439
|
clearItems: clearItems
|
|
234362
234440
|
};
|
|
234363
|
-
},
|
|
234441
|
+
},2626,[2579],"../../../.yarn/__virtual__/@apps-in-toss-native-modules-virtual-e56741e8de/1/packages/apps-in-toss/native-modules/src/AppsInTossModule/native-modules/storage.ts");
|
|
234364
234442
|
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
|
|
234365
234443
|
Object.defineProperty(exports, "__esModule", {
|
|
234366
234444
|
value: true
|
|
@@ -234396,7 +234474,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
234396
234474
|
});
|
|
234397
234475
|
return unregisterCallbacks;
|
|
234398
234476
|
}
|
|
234399
|
-
},
|
|
234477
|
+
},2627,[2619,2591],"../../../.yarn/__virtual__/@apps-in-toss-native-modules-virtual-e56741e8de/1/packages/apps-in-toss/native-modules/src/AppsInTossModule/native-event-emitter/contactsViral.ts");
|
|
234400
234478
|
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
|
|
234401
234479
|
Object.defineProperty(exports, "__esModule", {
|
|
234402
234480
|
value: true
|
|
@@ -234406,7 +234484,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
234406
234484
|
function onVisibilityChangedByTransparentServiceWeb(eventParams) {
|
|
234407
234485
|
return _appsInTossEvent.appsInTossEvent.addEventListener('onVisibilityChangedByTransparentServiceWeb', eventParams);
|
|
234408
234486
|
}
|
|
234409
|
-
},
|
|
234487
|
+
},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");
|
|
234410
234488
|
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
|
|
234411
234489
|
Object.defineProperty(exports, "__esModule", {
|
|
234412
234490
|
value: true
|
|
@@ -234421,7 +234499,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
234421
234499
|
context.keys = function () {
|
|
234422
234500
|
return Array.from(files.keys());
|
|
234423
234501
|
};
|
|
234424
|
-
},
|
|
234502
|
+
},2629,[2630,2631],"react-native/context.ts");
|
|
234425
234503
|
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
|
|
234426
234504
|
Object.defineProperty(exports, "__esModule", {
|
|
234427
234505
|
value: true
|
|
@@ -234454,7 +234532,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
234454
234532
|
})
|
|
234455
234533
|
});
|
|
234456
234534
|
}
|
|
234457
|
-
},
|
|
234535
|
+
},2630,[1256,18,9],"react-native/pages/index.tsx");
|
|
234458
234536
|
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
|
|
234459
234537
|
var _interopRequireDefault = _$$_REQUIRE(_dependencyMap[0], "@babel/runtime/helpers/interopRequireDefault");
|
|
234460
234538
|
Object.defineProperty(exports, "__esModule", {
|
|
@@ -234467,6 +234545,6 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
234467
234545
|
}
|
|
234468
234546
|
});
|
|
234469
234547
|
var _index = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[1], "./index"));
|
|
234470
|
-
},
|
|
234548
|
+
},2631,[1,2630],"react-native/pages/_404.tsx");
|
|
234471
234549
|
__r(134);
|
|
234472
234550
|
__r(0);
|
|
@@ -11551,6 +11551,36 @@ var global=typeof globalThis!=='undefined'?globalThis:typeof global!=='undefined
|
|
|
11551
11551
|
});
|
|
11552
11552
|
return _getGameCenterGameProfile.apply(this, arguments);
|
|
11553
11553
|
}
|
|
11554
|
+
function getServerTime() {
|
|
11555
|
+
return _getServerTime.apply(this, arguments);
|
|
11556
|
+
}
|
|
11557
|
+
function _getServerTime() {
|
|
11558
|
+
_getServerTime = // src/AppsInTossModule/native-modules/getServerTime.ts
|
|
11559
|
+
_async_to_generator(function() {
|
|
11560
|
+
var isSupported;
|
|
11561
|
+
return __generator(this, function(_state) {
|
|
11562
|
+
switch (_state.label) {
|
|
11563
|
+
case 0:
|
|
11564
|
+
isSupported = isMinVersionSupported(GET_SERVER_TIME_MIN_VERSION);
|
|
11565
|
+
if (!isSupported) {
|
|
11566
|
+
return [
|
|
11567
|
+
2
|
|
11568
|
+
];
|
|
11569
|
+
}
|
|
11570
|
+
return [
|
|
11571
|
+
4,
|
|
11572
|
+
AppsInTossModule.getServerTime({})
|
|
11573
|
+
];
|
|
11574
|
+
case 1:
|
|
11575
|
+
return [
|
|
11576
|
+
2,
|
|
11577
|
+
_state.sent().serverTime
|
|
11578
|
+
];
|
|
11579
|
+
}
|
|
11580
|
+
});
|
|
11581
|
+
});
|
|
11582
|
+
return _getServerTime.apply(this, arguments);
|
|
11583
|
+
}
|
|
11554
11584
|
function startUpdateLocation(eventParams) {
|
|
11555
11585
|
return appsInTossEvent.addEventListener("updateLocationEvent", eventParams);
|
|
11556
11586
|
}
|
|
@@ -11597,7 +11627,7 @@ var global=typeof globalThis!=='undefined'?globalThis:typeof global!=='undefined
|
|
|
11597
11627
|
}
|
|
11598
11628
|
});
|
|
11599
11629
|
}
|
|
11600
|
-
var import_react_native37, import_react_native38, import_react_native42, import_react_native43, import_react_native44, import_react_native45, import_react_native46, import_react_native47, import_react_native48, Module, AppsInTossModuleInstance, AppsInTossModule, nativeEventEmitter2, UpdateLocationEvent, INTERNAL__callbacks, INTERNAL__appBridgeHandler, UNSAFE__nativeEventEmitter, AppBridgeCallbackEvent, VisibilityChangedByTransparentServiceWebEvent, appsInTossEvent, SEMVER_REGEX, isWildcard, tryParse, coerceTypes, compareValues, parseVersion, compareSegments, compareVersions, ANDROID_GOOGLE_AD_MOB_SUPPORTED_VERSION, IOS_GOOGLE_AD_MOB_SUPPORTED_VERSION, UNSUPPORTED_ERROR_MESSAGE, ENVIRONMENT, DEFAULT_MAX_COUNT, DEFAULT_MAX_WIDTH, fetchAlbumPhotos, fetchContacts, getClipboardText, getCurrentLocation, setClipboardText, openCamera, IAP, Storage, GAME_CENTER_MIN_VERSION, GoogleAdMob, BedrockModule, BedrockCoreModule, TossCoreModule, INTERNAL__module;
|
|
11630
|
+
var import_react_native37, import_react_native38, import_react_native42, import_react_native43, import_react_native44, import_react_native45, import_react_native46, import_react_native47, import_react_native48, Module, AppsInTossModuleInstance, AppsInTossModule, nativeEventEmitter2, UpdateLocationEvent, INTERNAL__callbacks, INTERNAL__appBridgeHandler, UNSAFE__nativeEventEmitter, AppBridgeCallbackEvent, VisibilityChangedByTransparentServiceWebEvent, appsInTossEvent, SEMVER_REGEX, isWildcard, tryParse, coerceTypes, compareValues, parseVersion, compareSegments, compareVersions, ANDROID_GOOGLE_AD_MOB_SUPPORTED_VERSION, IOS_GOOGLE_AD_MOB_SUPPORTED_VERSION, UNSUPPORTED_ERROR_MESSAGE, ENVIRONMENT, DEFAULT_MAX_COUNT, DEFAULT_MAX_WIDTH, fetchAlbumPhotos, fetchContacts, getClipboardText, getCurrentLocation, setClipboardText, openCamera, IAP, Storage, GAME_CENTER_MIN_VERSION, GET_SERVER_TIME_MIN_VERSION, GoogleAdMob, BedrockModule, BedrockCoreModule, TossCoreModule, INTERNAL__module;
|
|
11601
11631
|
var init_dist6 = __esm({
|
|
11602
11632
|
"../../../.yarn/__virtual__/@apps-in-toss-native-modules-virtual-e56741e8de/1/packages/apps-in-toss/native-modules/dist/index.js"() {
|
|
11603
11633
|
"use strict";
|
|
@@ -12023,6 +12053,13 @@ var global=typeof globalThis!=='undefined'?globalThis:typeof global!=='undefined
|
|
|
12023
12053
|
android: "5.221.0",
|
|
12024
12054
|
ios: "5.221.0"
|
|
12025
12055
|
};
|
|
12056
|
+
GET_SERVER_TIME_MIN_VERSION = {
|
|
12057
|
+
android: "5.245.0",
|
|
12058
|
+
ios: "5.245.0"
|
|
12059
|
+
};
|
|
12060
|
+
getServerTime.isSupported = function() {
|
|
12061
|
+
return isMinVersionSupported(GET_SERVER_TIME_MIN_VERSION);
|
|
12062
|
+
};
|
|
12026
12063
|
GoogleAdMob = {
|
|
12027
12064
|
loadAppsInTossAdMob,
|
|
12028
12065
|
showAppsInTossAdMob,
|
|
@@ -43661,7 +43698,7 @@ var global=typeof globalThis!=='undefined'?globalThis:typeof global!=='undefined
|
|
|
43661
43698
|
});
|
|
43662
43699
|
|
|
43663
43700
|
// ../../../.yarn/__virtual__/@apps-in-toss-native-modules-virtual-e56741e8de/1/packages/apps-in-toss/native-modules/src/AppsInTossModule/constants.ts
|
|
43664
|
-
var GAME_CENTER_MIN_VERSION2, GAME_USER_KEY_MIN_VERSION, GAME_PROMOTION_REWARD_MIN_VERSION, GET_IS_TOSS_LOGIN_INTEGRATED_SERVICE_MIN_VERSION;
|
|
43701
|
+
var GAME_CENTER_MIN_VERSION2, GAME_USER_KEY_MIN_VERSION, GAME_PROMOTION_REWARD_MIN_VERSION, GET_IS_TOSS_LOGIN_INTEGRATED_SERVICE_MIN_VERSION, GET_SERVER_TIME_MIN_VERSION2;
|
|
43665
43702
|
var init_constants13 = __esm({
|
|
43666
43703
|
"../../../.yarn/__virtual__/@apps-in-toss-native-modules-virtual-e56741e8de/1/packages/apps-in-toss/native-modules/src/AppsInTossModule/constants.ts"() {
|
|
43667
43704
|
"use strict";
|
|
@@ -43681,6 +43718,10 @@ var global=typeof globalThis!=='undefined'?globalThis:typeof global!=='undefined
|
|
|
43681
43718
|
android: "5.237.0",
|
|
43682
43719
|
ios: "5.237.0"
|
|
43683
43720
|
};
|
|
43721
|
+
GET_SERVER_TIME_MIN_VERSION2 = {
|
|
43722
|
+
android: "5.245.0",
|
|
43723
|
+
ios: "5.245.0"
|
|
43724
|
+
};
|
|
43684
43725
|
}
|
|
43685
43726
|
});
|
|
43686
43727
|
|
|
@@ -43985,6 +44026,50 @@ var global=typeof globalThis!=='undefined'?globalThis:typeof global!=='undefined
|
|
|
43985
44026
|
}
|
|
43986
44027
|
});
|
|
43987
44028
|
|
|
44029
|
+
// ../../../.yarn/__virtual__/@apps-in-toss-native-modules-virtual-e56741e8de/1/packages/apps-in-toss/native-modules/src/AppsInTossModule/native-modules/getServerTime.ts
|
|
44030
|
+
function getServerTime2() {
|
|
44031
|
+
return _getServerTime2.apply(this, arguments);
|
|
44032
|
+
}
|
|
44033
|
+
function _getServerTime2() {
|
|
44034
|
+
_getServerTime2 = _async_to_generator(function() {
|
|
44035
|
+
var isSupported;
|
|
44036
|
+
return __generator(this, function(_state) {
|
|
44037
|
+
switch (_state.label) {
|
|
44038
|
+
case 0:
|
|
44039
|
+
isSupported = isMinVersionSupported2(GET_SERVER_TIME_MIN_VERSION2);
|
|
44040
|
+
if (!isSupported) {
|
|
44041
|
+
return [
|
|
44042
|
+
2
|
|
44043
|
+
];
|
|
44044
|
+
}
|
|
44045
|
+
return [
|
|
44046
|
+
4,
|
|
44047
|
+
AppsInTossModule2.getServerTime({})
|
|
44048
|
+
];
|
|
44049
|
+
case 1:
|
|
44050
|
+
return [
|
|
44051
|
+
2,
|
|
44052
|
+
_state.sent().serverTime
|
|
44053
|
+
];
|
|
44054
|
+
}
|
|
44055
|
+
});
|
|
44056
|
+
});
|
|
44057
|
+
return _getServerTime2.apply(this, arguments);
|
|
44058
|
+
}
|
|
44059
|
+
var init_getServerTime = __esm({
|
|
44060
|
+
"../../../.yarn/__virtual__/@apps-in-toss-native-modules-virtual-e56741e8de/1/packages/apps-in-toss/native-modules/src/AppsInTossModule/native-modules/getServerTime.ts"() {
|
|
44061
|
+
"use strict";
|
|
44062
|
+
init_async_to_generator();
|
|
44063
|
+
init_ts_generator();
|
|
44064
|
+
init_AppsInTossModule();
|
|
44065
|
+
init_isMinVersionSupported();
|
|
44066
|
+
init_constants13();
|
|
44067
|
+
getServerTime2.isSupported = function() {
|
|
44068
|
+
return isMinVersionSupported2(GET_SERVER_TIME_MIN_VERSION2);
|
|
44069
|
+
};
|
|
44070
|
+
}
|
|
44071
|
+
});
|
|
44072
|
+
|
|
43988
44073
|
// ../../../.yarn/__virtual__/@apps-in-toss-native-modules-virtual-e56741e8de/1/packages/apps-in-toss/native-modules/src/async-bridges.ts
|
|
43989
44074
|
var async_bridges_exports = {};
|
|
43990
44075
|
__export(async_bridges_exports, {
|
|
@@ -44030,6 +44115,9 @@ var global=typeof globalThis!=='undefined'?globalThis:typeof global!=='undefined
|
|
|
44030
44115
|
getPermission: function() {
|
|
44031
44116
|
return getPermission2;
|
|
44032
44117
|
},
|
|
44118
|
+
getServerTime: function() {
|
|
44119
|
+
return getServerTime2;
|
|
44120
|
+
},
|
|
44033
44121
|
getTossShareLink: function() {
|
|
44034
44122
|
return getTossShareLink;
|
|
44035
44123
|
},
|
|
@@ -44112,6 +44200,7 @@ var global=typeof globalThis!=='undefined'?globalThis:typeof global!=='undefined
|
|
|
44112
44200
|
init_getUserKeyForGame();
|
|
44113
44201
|
init_getIsTossLoginIntegratedService();
|
|
44114
44202
|
init_grantPromotionRewardForGame();
|
|
44203
|
+
init_getServerTime();
|
|
44115
44204
|
}
|
|
44116
44205
|
});
|
|
44117
44206
|
|
|
@@ -44795,6 +44884,7 @@ var global=typeof globalThis!=='undefined'?globalThis:typeof global!=='undefined
|
|
|
44795
44884
|
init_getIsTossLoginIntegratedService();
|
|
44796
44885
|
init_contactsViral();
|
|
44797
44886
|
init_appsInTossSignTossCert();
|
|
44887
|
+
init_getServerTime();
|
|
44798
44888
|
}
|
|
44799
44889
|
});
|
|
44800
44890
|
|
|
@@ -11560,6 +11560,36 @@ var global=typeof globalThis!=='undefined'?globalThis:typeof global!=='undefined
|
|
|
11560
11560
|
});
|
|
11561
11561
|
return _getGameCenterGameProfile.apply(this, arguments);
|
|
11562
11562
|
}
|
|
11563
|
+
function getServerTime() {
|
|
11564
|
+
return _getServerTime.apply(this, arguments);
|
|
11565
|
+
}
|
|
11566
|
+
function _getServerTime() {
|
|
11567
|
+
_getServerTime = // src/AppsInTossModule/native-modules/getServerTime.ts
|
|
11568
|
+
_async_to_generator(function() {
|
|
11569
|
+
var isSupported;
|
|
11570
|
+
return __generator(this, function(_state) {
|
|
11571
|
+
switch (_state.label) {
|
|
11572
|
+
case 0:
|
|
11573
|
+
isSupported = isMinVersionSupported(GET_SERVER_TIME_MIN_VERSION);
|
|
11574
|
+
if (!isSupported) {
|
|
11575
|
+
return [
|
|
11576
|
+
2
|
|
11577
|
+
];
|
|
11578
|
+
}
|
|
11579
|
+
return [
|
|
11580
|
+
4,
|
|
11581
|
+
AppsInTossModule.getServerTime({})
|
|
11582
|
+
];
|
|
11583
|
+
case 1:
|
|
11584
|
+
return [
|
|
11585
|
+
2,
|
|
11586
|
+
_state.sent().serverTime
|
|
11587
|
+
];
|
|
11588
|
+
}
|
|
11589
|
+
});
|
|
11590
|
+
});
|
|
11591
|
+
return _getServerTime.apply(this, arguments);
|
|
11592
|
+
}
|
|
11563
11593
|
function startUpdateLocation(eventParams) {
|
|
11564
11594
|
return appsInTossEvent.addEventListener("updateLocationEvent", eventParams);
|
|
11565
11595
|
}
|
|
@@ -11606,7 +11636,7 @@ var global=typeof globalThis!=='undefined'?globalThis:typeof global!=='undefined
|
|
|
11606
11636
|
}
|
|
11607
11637
|
});
|
|
11608
11638
|
}
|
|
11609
|
-
var import_react_native37, import_react_native38, import_react_native42, import_react_native43, import_react_native44, import_react_native45, import_react_native46, import_react_native47, import_react_native48, Module, AppsInTossModuleInstance, AppsInTossModule, nativeEventEmitter2, UpdateLocationEvent, INTERNAL__callbacks, INTERNAL__appBridgeHandler, UNSAFE__nativeEventEmitter, AppBridgeCallbackEvent, VisibilityChangedByTransparentServiceWebEvent, appsInTossEvent, SEMVER_REGEX, isWildcard, tryParse, coerceTypes, compareValues, parseVersion, compareSegments, compareVersions, ANDROID_GOOGLE_AD_MOB_SUPPORTED_VERSION, IOS_GOOGLE_AD_MOB_SUPPORTED_VERSION, UNSUPPORTED_ERROR_MESSAGE, ENVIRONMENT, DEFAULT_MAX_COUNT, DEFAULT_MAX_WIDTH, fetchAlbumPhotos, fetchContacts, getClipboardText, getCurrentLocation, setClipboardText, openCamera, IAP, Storage, GAME_CENTER_MIN_VERSION, GoogleAdMob, BedrockModule, BedrockCoreModule, TossCoreModule, INTERNAL__module;
|
|
11639
|
+
var import_react_native37, import_react_native38, import_react_native42, import_react_native43, import_react_native44, import_react_native45, import_react_native46, import_react_native47, import_react_native48, Module, AppsInTossModuleInstance, AppsInTossModule, nativeEventEmitter2, UpdateLocationEvent, INTERNAL__callbacks, INTERNAL__appBridgeHandler, UNSAFE__nativeEventEmitter, AppBridgeCallbackEvent, VisibilityChangedByTransparentServiceWebEvent, appsInTossEvent, SEMVER_REGEX, isWildcard, tryParse, coerceTypes, compareValues, parseVersion, compareSegments, compareVersions, ANDROID_GOOGLE_AD_MOB_SUPPORTED_VERSION, IOS_GOOGLE_AD_MOB_SUPPORTED_VERSION, UNSUPPORTED_ERROR_MESSAGE, ENVIRONMENT, DEFAULT_MAX_COUNT, DEFAULT_MAX_WIDTH, fetchAlbumPhotos, fetchContacts, getClipboardText, getCurrentLocation, setClipboardText, openCamera, IAP, Storage, GAME_CENTER_MIN_VERSION, GET_SERVER_TIME_MIN_VERSION, GoogleAdMob, BedrockModule, BedrockCoreModule, TossCoreModule, INTERNAL__module;
|
|
11610
11640
|
var init_dist6 = __esm({
|
|
11611
11641
|
"../../../.yarn/__virtual__/@apps-in-toss-native-modules-virtual-e56741e8de/1/packages/apps-in-toss/native-modules/dist/index.js"() {
|
|
11612
11642
|
"use strict";
|
|
@@ -12032,6 +12062,13 @@ var global=typeof globalThis!=='undefined'?globalThis:typeof global!=='undefined
|
|
|
12032
12062
|
android: "5.221.0",
|
|
12033
12063
|
ios: "5.221.0"
|
|
12034
12064
|
};
|
|
12065
|
+
GET_SERVER_TIME_MIN_VERSION = {
|
|
12066
|
+
android: "5.245.0",
|
|
12067
|
+
ios: "5.245.0"
|
|
12068
|
+
};
|
|
12069
|
+
getServerTime.isSupported = function() {
|
|
12070
|
+
return isMinVersionSupported(GET_SERVER_TIME_MIN_VERSION);
|
|
12071
|
+
};
|
|
12035
12072
|
GoogleAdMob = {
|
|
12036
12073
|
loadAppsInTossAdMob,
|
|
12037
12074
|
showAppsInTossAdMob,
|
|
@@ -43670,7 +43707,7 @@ var global=typeof globalThis!=='undefined'?globalThis:typeof global!=='undefined
|
|
|
43670
43707
|
});
|
|
43671
43708
|
|
|
43672
43709
|
// ../../../.yarn/__virtual__/@apps-in-toss-native-modules-virtual-e56741e8de/1/packages/apps-in-toss/native-modules/src/AppsInTossModule/constants.ts
|
|
43673
|
-
var GAME_CENTER_MIN_VERSION2, GAME_USER_KEY_MIN_VERSION, GAME_PROMOTION_REWARD_MIN_VERSION, GET_IS_TOSS_LOGIN_INTEGRATED_SERVICE_MIN_VERSION;
|
|
43710
|
+
var GAME_CENTER_MIN_VERSION2, GAME_USER_KEY_MIN_VERSION, GAME_PROMOTION_REWARD_MIN_VERSION, GET_IS_TOSS_LOGIN_INTEGRATED_SERVICE_MIN_VERSION, GET_SERVER_TIME_MIN_VERSION2;
|
|
43674
43711
|
var init_constants13 = __esm({
|
|
43675
43712
|
"../../../.yarn/__virtual__/@apps-in-toss-native-modules-virtual-e56741e8de/1/packages/apps-in-toss/native-modules/src/AppsInTossModule/constants.ts"() {
|
|
43676
43713
|
"use strict";
|
|
@@ -43690,6 +43727,10 @@ var global=typeof globalThis!=='undefined'?globalThis:typeof global!=='undefined
|
|
|
43690
43727
|
android: "5.237.0",
|
|
43691
43728
|
ios: "5.237.0"
|
|
43692
43729
|
};
|
|
43730
|
+
GET_SERVER_TIME_MIN_VERSION2 = {
|
|
43731
|
+
android: "5.245.0",
|
|
43732
|
+
ios: "5.245.0"
|
|
43733
|
+
};
|
|
43693
43734
|
}
|
|
43694
43735
|
});
|
|
43695
43736
|
|
|
@@ -43994,6 +44035,50 @@ var global=typeof globalThis!=='undefined'?globalThis:typeof global!=='undefined
|
|
|
43994
44035
|
}
|
|
43995
44036
|
});
|
|
43996
44037
|
|
|
44038
|
+
// ../../../.yarn/__virtual__/@apps-in-toss-native-modules-virtual-e56741e8de/1/packages/apps-in-toss/native-modules/src/AppsInTossModule/native-modules/getServerTime.ts
|
|
44039
|
+
function getServerTime2() {
|
|
44040
|
+
return _getServerTime2.apply(this, arguments);
|
|
44041
|
+
}
|
|
44042
|
+
function _getServerTime2() {
|
|
44043
|
+
_getServerTime2 = _async_to_generator(function() {
|
|
44044
|
+
var isSupported;
|
|
44045
|
+
return __generator(this, function(_state) {
|
|
44046
|
+
switch (_state.label) {
|
|
44047
|
+
case 0:
|
|
44048
|
+
isSupported = isMinVersionSupported2(GET_SERVER_TIME_MIN_VERSION2);
|
|
44049
|
+
if (!isSupported) {
|
|
44050
|
+
return [
|
|
44051
|
+
2
|
|
44052
|
+
];
|
|
44053
|
+
}
|
|
44054
|
+
return [
|
|
44055
|
+
4,
|
|
44056
|
+
AppsInTossModule2.getServerTime({})
|
|
44057
|
+
];
|
|
44058
|
+
case 1:
|
|
44059
|
+
return [
|
|
44060
|
+
2,
|
|
44061
|
+
_state.sent().serverTime
|
|
44062
|
+
];
|
|
44063
|
+
}
|
|
44064
|
+
});
|
|
44065
|
+
});
|
|
44066
|
+
return _getServerTime2.apply(this, arguments);
|
|
44067
|
+
}
|
|
44068
|
+
var init_getServerTime = __esm({
|
|
44069
|
+
"../../../.yarn/__virtual__/@apps-in-toss-native-modules-virtual-e56741e8de/1/packages/apps-in-toss/native-modules/src/AppsInTossModule/native-modules/getServerTime.ts"() {
|
|
44070
|
+
"use strict";
|
|
44071
|
+
init_async_to_generator();
|
|
44072
|
+
init_ts_generator();
|
|
44073
|
+
init_AppsInTossModule();
|
|
44074
|
+
init_isMinVersionSupported();
|
|
44075
|
+
init_constants13();
|
|
44076
|
+
getServerTime2.isSupported = function() {
|
|
44077
|
+
return isMinVersionSupported2(GET_SERVER_TIME_MIN_VERSION2);
|
|
44078
|
+
};
|
|
44079
|
+
}
|
|
44080
|
+
});
|
|
44081
|
+
|
|
43997
44082
|
// ../../../.yarn/__virtual__/@apps-in-toss-native-modules-virtual-e56741e8de/1/packages/apps-in-toss/native-modules/src/async-bridges.ts
|
|
43998
44083
|
var async_bridges_exports = {};
|
|
43999
44084
|
__export(async_bridges_exports, {
|
|
@@ -44039,6 +44124,9 @@ var global=typeof globalThis!=='undefined'?globalThis:typeof global!=='undefined
|
|
|
44039
44124
|
getPermission: function() {
|
|
44040
44125
|
return getPermission2;
|
|
44041
44126
|
},
|
|
44127
|
+
getServerTime: function() {
|
|
44128
|
+
return getServerTime2;
|
|
44129
|
+
},
|
|
44042
44130
|
getTossShareLink: function() {
|
|
44043
44131
|
return getTossShareLink;
|
|
44044
44132
|
},
|
|
@@ -44121,6 +44209,7 @@ var global=typeof globalThis!=='undefined'?globalThis:typeof global!=='undefined
|
|
|
44121
44209
|
init_getUserKeyForGame();
|
|
44122
44210
|
init_getIsTossLoginIntegratedService();
|
|
44123
44211
|
init_grantPromotionRewardForGame();
|
|
44212
|
+
init_getServerTime();
|
|
44124
44213
|
}
|
|
44125
44214
|
});
|
|
44126
44215
|
|
|
@@ -44804,6 +44893,7 @@ var global=typeof globalThis!=='undefined'?globalThis:typeof global!=='undefined
|
|
|
44804
44893
|
init_getIsTossLoginIntegratedService();
|
|
44805
44894
|
init_contactsViral();
|
|
44806
44895
|
init_appsInTossSignTossCert();
|
|
44896
|
+
init_getServerTime();
|
|
44807
44897
|
}
|
|
44808
44898
|
});
|
|
44809
44899
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@apps-in-toss/web-framework",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "1.
|
|
4
|
+
"version": "1.9.0",
|
|
5
5
|
"description": "Web Framework for Apps In Toss",
|
|
6
6
|
"scripts": {
|
|
7
7
|
"typecheck": "tsc --noEmit",
|
|
@@ -86,12 +86,12 @@
|
|
|
86
86
|
"zod": "3.24.4"
|
|
87
87
|
},
|
|
88
88
|
"dependencies": {
|
|
89
|
-
"@apps-in-toss/bridge-core": "1.
|
|
90
|
-
"@apps-in-toss/cli": "1.
|
|
91
|
-
"@apps-in-toss/framework": "1.
|
|
92
|
-
"@apps-in-toss/plugins": "1.
|
|
93
|
-
"@apps-in-toss/web-analytics": "1.
|
|
94
|
-
"@apps-in-toss/web-bridge": "1.
|
|
89
|
+
"@apps-in-toss/bridge-core": "1.9.0",
|
|
90
|
+
"@apps-in-toss/cli": "1.9.0",
|
|
91
|
+
"@apps-in-toss/framework": "1.9.0",
|
|
92
|
+
"@apps-in-toss/plugins": "1.9.0",
|
|
93
|
+
"@apps-in-toss/web-analytics": "1.9.0",
|
|
94
|
+
"@apps-in-toss/web-bridge": "1.9.0",
|
|
95
95
|
"@babel/core": "7.23.9",
|
|
96
96
|
"@granite-js/cli": "0.1.31",
|
|
97
97
|
"@granite-js/mpack": "0.1.31",
|