@apps-in-toss/web-framework 2.0.1 → 2.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/prebuilt/dev.android.rn84.js +71 -28
- package/dist/prebuilt/dev.ios.rn84.js +71 -28
- package/dist/prebuilt/prod.android.rn72.js +68 -10
- package/dist/prebuilt/prod.android.rn84.js +49 -6
- package/dist/prebuilt/prod.ios.rn72.js +68 -10
- package/dist/prebuilt/prod.ios.rn84.js +49 -6
- package/package.json +8 -8
|
@@ -137559,7 +137559,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
137559
137559
|
}) {
|
|
137560
137560
|
return yield openConfirm({
|
|
137561
137561
|
title: `${(0, import_es_hangul2.josa)(brandDisplayName, "\uC744/\uB97C")} \uC885\uB8CC\uD560\uAE4C\uC694?`,
|
|
137562
|
-
leftButton: "\
|
|
137562
|
+
leftButton: "\uB2EB\uAE30",
|
|
137563
137563
|
rightButton: "\uC885\uB8CC\uD558\uAE30",
|
|
137564
137564
|
closeOnDimmerClick: true,
|
|
137565
137565
|
onEntered
|
|
@@ -138388,7 +138388,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
138388
138388
|
logging.closeButtonClick();
|
|
138389
138389
|
var isConfirmed = yield openConfirm({
|
|
138390
138390
|
title: `${(0, import_es_hangul3.josa)(global2.brandDisplayName, "\uC744/\uB97C")} \uC885\uB8CC\uD560\uAE4C\uC694?`,
|
|
138391
|
-
leftButton: "\
|
|
138391
|
+
leftButton: "\uB2EB\uAE30",
|
|
138392
138392
|
rightButton: "\uC885\uB8CC\uD558\uAE30",
|
|
138393
138393
|
closeOnDimmerClick: true,
|
|
138394
138394
|
onEntered: logging.closePopupShow
|
|
@@ -138484,7 +138484,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
138484
138484
|
logging.closeButtonClick();
|
|
138485
138485
|
var isConfirmed = yield openConfirm({
|
|
138486
138486
|
title: `${(0, import_es_hangul4.josa)(globals.brandDisplayName, "\uC744/\uB97C")} \uC885\uB8CC\uD560\uAE4C\uC694?`,
|
|
138487
|
-
leftButton: "\
|
|
138487
|
+
leftButton: "\uB2EB\uAE30",
|
|
138488
138488
|
rightButton: "\uC885\uB8CC\uD558\uAE30",
|
|
138489
138489
|
closeOnDimmerClick: true,
|
|
138490
138490
|
onEntered: logging.closePopupShow
|
|
@@ -139167,7 +139167,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
139167
139167
|
} else {
|
|
139168
139168
|
var isConfirmed = yield openConfirm({
|
|
139169
139169
|
title: `${(0, import_es_hangul5.josa)(global2.brandDisplayName, "\uC744/\uB97C")} \uC885\uB8CC\uD560\uAE4C\uC694?`,
|
|
139170
|
-
leftButton: "\
|
|
139170
|
+
leftButton: "\uB2EB\uAE30",
|
|
139171
139171
|
rightButton: "\uC885\uB8CC\uD558\uAE30",
|
|
139172
139172
|
closeOnDimmerClick: true,
|
|
139173
139173
|
onEntered: logging.closePopupShow
|
|
@@ -142420,19 +142420,40 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
142420
142420
|
function getTossAppVersion() {
|
|
142421
142421
|
return MiniAppModule.getConstants().tossAppVersion;
|
|
142422
142422
|
}
|
|
142423
|
-
|
|
142423
|
+
var V2_MIN_VERSION = {
|
|
142424
|
+
android: "5.240.0",
|
|
142425
|
+
ios: "5.239.0"
|
|
142426
|
+
};
|
|
142427
|
+
function getTossShareLink(_x8, _x9) {
|
|
142424
142428
|
return _getTossShareLink.apply(this, arguments);
|
|
142425
142429
|
}
|
|
142426
142430
|
function _getTossShareLink() {
|
|
142427
|
-
_getTossShareLink = _asyncToGenerator(function* (path) {
|
|
142428
|
-
|
|
142431
|
+
_getTossShareLink = _asyncToGenerator(function* (path, ogImageUrl) {
|
|
142432
|
+
if (!isMinVersionSupported(V2_MIN_VERSION)) {
|
|
142433
|
+
return yield getTossShareLinkV1(path);
|
|
142434
|
+
}
|
|
142435
|
+
var _yield$safePostMessag = yield safePostMessage("getTossShareLink", {
|
|
142436
|
+
url: path,
|
|
142437
|
+
ogImageUrl
|
|
142438
|
+
}),
|
|
142429
142439
|
shareLink = _yield$safePostMessag.shareLink;
|
|
142440
|
+
return shareLink;
|
|
142441
|
+
});
|
|
142442
|
+
return _getTossShareLink.apply(this, arguments);
|
|
142443
|
+
}
|
|
142444
|
+
function getTossShareLinkV1(_x0) {
|
|
142445
|
+
return _getTossShareLinkV.apply(this, arguments);
|
|
142446
|
+
}
|
|
142447
|
+
function _getTossShareLinkV() {
|
|
142448
|
+
_getTossShareLinkV = _asyncToGenerator(function* (path) {
|
|
142449
|
+
var _yield$safePostMessag2 = yield safePostMessage("getTossShareLink", {}),
|
|
142450
|
+
shareLink = _yield$safePostMessag2.shareLink;
|
|
142430
142451
|
var shareUrl = new URL(shareLink);
|
|
142431
142452
|
shareUrl.searchParams.set("deep_link_value", path);
|
|
142432
142453
|
shareUrl.searchParams.set("af_dp", path);
|
|
142433
142454
|
return shareUrl.toString();
|
|
142434
142455
|
});
|
|
142435
|
-
return
|
|
142456
|
+
return _getTossShareLinkV.apply(this, arguments);
|
|
142436
142457
|
}
|
|
142437
142458
|
var import_es_toolkit2 = _$$_REQUIRE(_dependencyMap[11], "es-toolkit");
|
|
142438
142459
|
function iapCreateOneTimePurchaseOrder(params) {
|
|
@@ -142522,7 +142543,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
142522
142543
|
isProductGranted
|
|
142523
142544
|
});
|
|
142524
142545
|
});
|
|
142525
|
-
return function onPurchased(
|
|
142546
|
+
return function onPurchased(_x1) {
|
|
142526
142547
|
return _ref7.apply(this, arguments);
|
|
142527
142548
|
};
|
|
142528
142549
|
}(),
|
|
@@ -142570,7 +142591,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
142570
142591
|
});
|
|
142571
142592
|
return _getPendingOrders.apply(this, arguments);
|
|
142572
142593
|
}
|
|
142573
|
-
function getCompletedOrRefundedOrders(
|
|
142594
|
+
function getCompletedOrRefundedOrders(_x10) {
|
|
142574
142595
|
return _getCompletedOrRefundedOrders.apply(this, arguments);
|
|
142575
142596
|
}
|
|
142576
142597
|
function _getCompletedOrRefundedOrders() {
|
|
@@ -142588,7 +142609,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
142588
142609
|
});
|
|
142589
142610
|
return _getCompletedOrRefundedOrders.apply(this, arguments);
|
|
142590
142611
|
}
|
|
142591
|
-
function completeProductGrant(
|
|
142612
|
+
function completeProductGrant(_x11) {
|
|
142592
142613
|
return _completeProductGrant.apply(this, arguments);
|
|
142593
142614
|
}
|
|
142594
142615
|
function _completeProductGrant() {
|
|
@@ -142630,7 +142651,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
142630
142651
|
isProductGranted
|
|
142631
142652
|
});
|
|
142632
142653
|
});
|
|
142633
|
-
return function onPurchased(
|
|
142654
|
+
return function onPurchased(_x12) {
|
|
142634
142655
|
return _ref8.apply(this, arguments);
|
|
142635
142656
|
};
|
|
142636
142657
|
}(),
|
|
@@ -142654,7 +142675,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
142654
142675
|
getCompletedOrRefundedOrders,
|
|
142655
142676
|
completeProductGrant
|
|
142656
142677
|
};
|
|
142657
|
-
function saveBase64Data(
|
|
142678
|
+
function saveBase64Data(_x13) {
|
|
142658
142679
|
return _saveBase64Data.apply(this, arguments);
|
|
142659
142680
|
}
|
|
142660
142681
|
function _saveBase64Data() {
|
|
@@ -142671,7 +142692,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
142671
142692
|
});
|
|
142672
142693
|
return _saveBase64Data.apply(this, arguments);
|
|
142673
142694
|
}
|
|
142674
|
-
function setDeviceOrientation(
|
|
142695
|
+
function setDeviceOrientation(_x14) {
|
|
142675
142696
|
return _setDeviceOrientation.apply(this, arguments);
|
|
142676
142697
|
}
|
|
142677
142698
|
function _setDeviceOrientation() {
|
|
@@ -142765,7 +142786,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
142765
142786
|
});
|
|
142766
142787
|
return _getGameCenterGameProfile.apply(this, arguments);
|
|
142767
142788
|
}
|
|
142768
|
-
function submitGameCenterLeaderBoardScore(
|
|
142789
|
+
function submitGameCenterLeaderBoardScore(_x15) {
|
|
142769
142790
|
return _submitGameCenterLeaderBoardScore.apply(this, arguments);
|
|
142770
142791
|
}
|
|
142771
142792
|
function _submitGameCenterLeaderBoardScore() {
|
|
@@ -142805,7 +142826,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
142805
142826
|
function isGrantPromotionRewardForGameError(error) {
|
|
142806
142827
|
return typeof error === "object" && error !== null && "code" in error && typeof error.code === "string" && "message" in error && typeof error.message === "string";
|
|
142807
142828
|
}
|
|
142808
|
-
function grantPromotionRewardForGame(
|
|
142829
|
+
function grantPromotionRewardForGame(_x16) {
|
|
142809
142830
|
return _grantPromotionRewardForGame.apply(this, arguments);
|
|
142810
142831
|
}
|
|
142811
142832
|
function _grantPromotionRewardForGame() {
|
|
@@ -142874,7 +142895,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
142874
142895
|
});
|
|
142875
142896
|
return unregisterCallbacks;
|
|
142876
142897
|
}
|
|
142877
|
-
function appsInTossSignTossCert(
|
|
142898
|
+
function appsInTossSignTossCert(_x17) {
|
|
142878
142899
|
return _appsInTossSignTossCert.apply(this, arguments);
|
|
142879
142900
|
}
|
|
142880
142901
|
function _appsInTossSignTossCert() {
|
|
@@ -142895,7 +142916,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
142895
142916
|
return MiniAppModule.getConstants().groupId;
|
|
142896
142917
|
}
|
|
142897
142918
|
function shareWithScheme(params) {
|
|
142898
|
-
|
|
142919
|
+
return safePostMessage("shareWithScheme", params);
|
|
142899
142920
|
}
|
|
142900
142921
|
function getServerTime() {
|
|
142901
142922
|
return _getServerTime.apply(this, arguments);
|
|
@@ -142955,7 +142976,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
142955
142976
|
function generateHapticFeedback(options) {
|
|
142956
142977
|
return CommonModule2.generateHapticFeedback(options);
|
|
142957
142978
|
}
|
|
142958
|
-
function share(
|
|
142979
|
+
function share(_x18) {
|
|
142959
142980
|
return _share.apply(this, arguments);
|
|
142960
142981
|
}
|
|
142961
142982
|
function _share() {
|
|
@@ -142967,7 +142988,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
142967
142988
|
function setSecureScreen(options) {
|
|
142968
142989
|
return CommonModule2.setSecureScreen(options);
|
|
142969
142990
|
}
|
|
142970
|
-
function setScreenAwakeMode(
|
|
142991
|
+
function setScreenAwakeMode(_x19) {
|
|
142971
142992
|
return _setScreenAwakeMode.apply(this, arguments);
|
|
142972
142993
|
}
|
|
142973
142994
|
function _setScreenAwakeMode() {
|
|
@@ -142979,7 +143000,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
142979
143000
|
function getNetworkStatus() {
|
|
142980
143001
|
return CommonModule2.getNetworkStatus();
|
|
142981
143002
|
}
|
|
142982
|
-
function setIosSwipeGestureEnabled(
|
|
143003
|
+
function setIosSwipeGestureEnabled(_x20) {
|
|
142983
143004
|
return _setIosSwipeGestureEnabled.apply(this, arguments);
|
|
142984
143005
|
}
|
|
142985
143006
|
function _setIosSwipeGestureEnabled() {
|
|
@@ -211899,22 +211920,44 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
211899
211920
|
});
|
|
211900
211921
|
exports.getTossShareLink = getTossShareLink;
|
|
211901
211922
|
var _asyncToGenerator2 = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[1], "@babel/runtime/helpers/asyncToGenerator"));
|
|
211902
|
-
var
|
|
211903
|
-
|
|
211923
|
+
var _isMinVersionSupported = _$$_REQUIRE(_dependencyMap[2], "./isMinVersionSupported");
|
|
211924
|
+
var _natives = _$$_REQUIRE(_dependencyMap[3], "../../natives");
|
|
211925
|
+
var V2_MIN_VERSION = {
|
|
211926
|
+
android: '5.240.0',
|
|
211927
|
+
ios: '5.239.0'
|
|
211928
|
+
};
|
|
211929
|
+
function getTossShareLink(_x, _x2) {
|
|
211904
211930
|
return _getTossShareLink.apply(this, arguments);
|
|
211905
211931
|
}
|
|
211906
211932
|
function _getTossShareLink() {
|
|
211907
|
-
_getTossShareLink = (0, _asyncToGenerator2.default)(function* (path) {
|
|
211908
|
-
|
|
211933
|
+
_getTossShareLink = (0, _asyncToGenerator2.default)(function* (path, ogImageUrl) {
|
|
211934
|
+
if (!(0, _isMinVersionSupported.isMinVersionSupported)(V2_MIN_VERSION)) {
|
|
211935
|
+
return yield getTossShareLinkV1(path);
|
|
211936
|
+
}
|
|
211937
|
+
var _yield$safePostMessag = yield (0, _natives.safePostMessage)('getTossShareLink', {
|
|
211938
|
+
url: path,
|
|
211939
|
+
ogImageUrl
|
|
211940
|
+
}),
|
|
211909
211941
|
shareLink = _yield$safePostMessag.shareLink;
|
|
211942
|
+
return shareLink;
|
|
211943
|
+
});
|
|
211944
|
+
return _getTossShareLink.apply(this, arguments);
|
|
211945
|
+
}
|
|
211946
|
+
function getTossShareLinkV1(_x3) {
|
|
211947
|
+
return _getTossShareLinkV.apply(this, arguments);
|
|
211948
|
+
}
|
|
211949
|
+
function _getTossShareLinkV() {
|
|
211950
|
+
_getTossShareLinkV = (0, _asyncToGenerator2.default)(function* (path) {
|
|
211951
|
+
var _yield$safePostMessag2 = yield (0, _natives.safePostMessage)('getTossShareLink', {}),
|
|
211952
|
+
shareLink = _yield$safePostMessag2.shareLink;
|
|
211910
211953
|
var shareUrl = new URL(shareLink);
|
|
211911
211954
|
shareUrl.searchParams.set('deep_link_value', path);
|
|
211912
211955
|
shareUrl.searchParams.set('af_dp', path);
|
|
211913
211956
|
return shareUrl.toString();
|
|
211914
211957
|
});
|
|
211915
|
-
return
|
|
211958
|
+
return _getTossShareLinkV.apply(this, arguments);
|
|
211916
211959
|
}
|
|
211917
|
-
},2542,[1,16,2517],"../../../../.yarn/__virtual__/@apps-in-toss-native-modules-virtual-e56741e8de/1/packages/apps-in-toss/native-modules/src/MiniAppModule/native-modules/getTossShareLink.ts");
|
|
211960
|
+
},2542,[1,16,2540,2517],"../../../../.yarn/__virtual__/@apps-in-toss-native-modules-virtual-e56741e8de/1/packages/apps-in-toss/native-modules/src/MiniAppModule/native-modules/getTossShareLink.ts");
|
|
211918
211961
|
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
|
|
211919
211962
|
var _interopRequireDefault = _$$_REQUIRE(_dependencyMap[0], "@babel/runtime/helpers/interopRequireDefault");
|
|
211920
211963
|
Object.defineProperty(exports, "__esModule", {
|
|
@@ -213548,7 +213591,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
213548
213591
|
exports.shareWithScheme = shareWithScheme;
|
|
213549
213592
|
var _natives = _$$_REQUIRE(_dependencyMap[0], "../../natives");
|
|
213550
213593
|
function shareWithScheme(params) {
|
|
213551
|
-
(0, _natives.
|
|
213594
|
+
return (0, _natives.safePostMessage)('shareWithScheme', params);
|
|
213552
213595
|
}
|
|
213553
213596
|
},2577,[2517],"../../../../.yarn/__virtual__/@apps-in-toss-native-modules-virtual-e56741e8de/1/packages/apps-in-toss/native-modules/src/MiniAppModule/native-modules/shareWithScheme.ts");
|
|
213554
213597
|
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
|
|
@@ -137098,7 +137098,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
137098
137098
|
}) {
|
|
137099
137099
|
return yield openConfirm({
|
|
137100
137100
|
title: `${(0, import_es_hangul2.josa)(brandDisplayName, "\uC744/\uB97C")} \uC885\uB8CC\uD560\uAE4C\uC694?`,
|
|
137101
|
-
leftButton: "\
|
|
137101
|
+
leftButton: "\uB2EB\uAE30",
|
|
137102
137102
|
rightButton: "\uC885\uB8CC\uD558\uAE30",
|
|
137103
137103
|
closeOnDimmerClick: true,
|
|
137104
137104
|
onEntered
|
|
@@ -137927,7 +137927,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
137927
137927
|
logging.closeButtonClick();
|
|
137928
137928
|
var isConfirmed = yield openConfirm({
|
|
137929
137929
|
title: `${(0, import_es_hangul3.josa)(global2.brandDisplayName, "\uC744/\uB97C")} \uC885\uB8CC\uD560\uAE4C\uC694?`,
|
|
137930
|
-
leftButton: "\
|
|
137930
|
+
leftButton: "\uB2EB\uAE30",
|
|
137931
137931
|
rightButton: "\uC885\uB8CC\uD558\uAE30",
|
|
137932
137932
|
closeOnDimmerClick: true,
|
|
137933
137933
|
onEntered: logging.closePopupShow
|
|
@@ -138023,7 +138023,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
138023
138023
|
logging.closeButtonClick();
|
|
138024
138024
|
var isConfirmed = yield openConfirm({
|
|
138025
138025
|
title: `${(0, import_es_hangul4.josa)(globals.brandDisplayName, "\uC744/\uB97C")} \uC885\uB8CC\uD560\uAE4C\uC694?`,
|
|
138026
|
-
leftButton: "\
|
|
138026
|
+
leftButton: "\uB2EB\uAE30",
|
|
138027
138027
|
rightButton: "\uC885\uB8CC\uD558\uAE30",
|
|
138028
138028
|
closeOnDimmerClick: true,
|
|
138029
138029
|
onEntered: logging.closePopupShow
|
|
@@ -138706,7 +138706,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
138706
138706
|
} else {
|
|
138707
138707
|
var isConfirmed = yield openConfirm({
|
|
138708
138708
|
title: `${(0, import_es_hangul5.josa)(global2.brandDisplayName, "\uC744/\uB97C")} \uC885\uB8CC\uD560\uAE4C\uC694?`,
|
|
138709
|
-
leftButton: "\
|
|
138709
|
+
leftButton: "\uB2EB\uAE30",
|
|
138710
138710
|
rightButton: "\uC885\uB8CC\uD558\uAE30",
|
|
138711
138711
|
closeOnDimmerClick: true,
|
|
138712
138712
|
onEntered: logging.closePopupShow
|
|
@@ -141959,19 +141959,40 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
141959
141959
|
function getTossAppVersion() {
|
|
141960
141960
|
return MiniAppModule.getConstants().tossAppVersion;
|
|
141961
141961
|
}
|
|
141962
|
-
|
|
141962
|
+
var V2_MIN_VERSION = {
|
|
141963
|
+
android: "5.240.0",
|
|
141964
|
+
ios: "5.239.0"
|
|
141965
|
+
};
|
|
141966
|
+
function getTossShareLink(_x8, _x9) {
|
|
141963
141967
|
return _getTossShareLink.apply(this, arguments);
|
|
141964
141968
|
}
|
|
141965
141969
|
function _getTossShareLink() {
|
|
141966
|
-
_getTossShareLink = _asyncToGenerator(function* (path) {
|
|
141967
|
-
|
|
141970
|
+
_getTossShareLink = _asyncToGenerator(function* (path, ogImageUrl) {
|
|
141971
|
+
if (!isMinVersionSupported(V2_MIN_VERSION)) {
|
|
141972
|
+
return yield getTossShareLinkV1(path);
|
|
141973
|
+
}
|
|
141974
|
+
var _yield$safePostMessag = yield safePostMessage("getTossShareLink", {
|
|
141975
|
+
url: path,
|
|
141976
|
+
ogImageUrl
|
|
141977
|
+
}),
|
|
141968
141978
|
shareLink = _yield$safePostMessag.shareLink;
|
|
141979
|
+
return shareLink;
|
|
141980
|
+
});
|
|
141981
|
+
return _getTossShareLink.apply(this, arguments);
|
|
141982
|
+
}
|
|
141983
|
+
function getTossShareLinkV1(_x0) {
|
|
141984
|
+
return _getTossShareLinkV.apply(this, arguments);
|
|
141985
|
+
}
|
|
141986
|
+
function _getTossShareLinkV() {
|
|
141987
|
+
_getTossShareLinkV = _asyncToGenerator(function* (path) {
|
|
141988
|
+
var _yield$safePostMessag2 = yield safePostMessage("getTossShareLink", {}),
|
|
141989
|
+
shareLink = _yield$safePostMessag2.shareLink;
|
|
141969
141990
|
var shareUrl = new URL(shareLink);
|
|
141970
141991
|
shareUrl.searchParams.set("deep_link_value", path);
|
|
141971
141992
|
shareUrl.searchParams.set("af_dp", path);
|
|
141972
141993
|
return shareUrl.toString();
|
|
141973
141994
|
});
|
|
141974
|
-
return
|
|
141995
|
+
return _getTossShareLinkV.apply(this, arguments);
|
|
141975
141996
|
}
|
|
141976
141997
|
var import_es_toolkit2 = _$$_REQUIRE(_dependencyMap[11], "es-toolkit");
|
|
141977
141998
|
function iapCreateOneTimePurchaseOrder(params) {
|
|
@@ -142061,7 +142082,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
142061
142082
|
isProductGranted
|
|
142062
142083
|
});
|
|
142063
142084
|
});
|
|
142064
|
-
return function onPurchased(
|
|
142085
|
+
return function onPurchased(_x1) {
|
|
142065
142086
|
return _ref7.apply(this, arguments);
|
|
142066
142087
|
};
|
|
142067
142088
|
}(),
|
|
@@ -142109,7 +142130,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
142109
142130
|
});
|
|
142110
142131
|
return _getPendingOrders.apply(this, arguments);
|
|
142111
142132
|
}
|
|
142112
|
-
function getCompletedOrRefundedOrders(
|
|
142133
|
+
function getCompletedOrRefundedOrders(_x10) {
|
|
142113
142134
|
return _getCompletedOrRefundedOrders.apply(this, arguments);
|
|
142114
142135
|
}
|
|
142115
142136
|
function _getCompletedOrRefundedOrders() {
|
|
@@ -142127,7 +142148,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
142127
142148
|
});
|
|
142128
142149
|
return _getCompletedOrRefundedOrders.apply(this, arguments);
|
|
142129
142150
|
}
|
|
142130
|
-
function completeProductGrant(
|
|
142151
|
+
function completeProductGrant(_x11) {
|
|
142131
142152
|
return _completeProductGrant.apply(this, arguments);
|
|
142132
142153
|
}
|
|
142133
142154
|
function _completeProductGrant() {
|
|
@@ -142169,7 +142190,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
142169
142190
|
isProductGranted
|
|
142170
142191
|
});
|
|
142171
142192
|
});
|
|
142172
|
-
return function onPurchased(
|
|
142193
|
+
return function onPurchased(_x12) {
|
|
142173
142194
|
return _ref8.apply(this, arguments);
|
|
142174
142195
|
};
|
|
142175
142196
|
}(),
|
|
@@ -142193,7 +142214,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
142193
142214
|
getCompletedOrRefundedOrders,
|
|
142194
142215
|
completeProductGrant
|
|
142195
142216
|
};
|
|
142196
|
-
function saveBase64Data(
|
|
142217
|
+
function saveBase64Data(_x13) {
|
|
142197
142218
|
return _saveBase64Data.apply(this, arguments);
|
|
142198
142219
|
}
|
|
142199
142220
|
function _saveBase64Data() {
|
|
@@ -142210,7 +142231,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
142210
142231
|
});
|
|
142211
142232
|
return _saveBase64Data.apply(this, arguments);
|
|
142212
142233
|
}
|
|
142213
|
-
function setDeviceOrientation(
|
|
142234
|
+
function setDeviceOrientation(_x14) {
|
|
142214
142235
|
return _setDeviceOrientation.apply(this, arguments);
|
|
142215
142236
|
}
|
|
142216
142237
|
function _setDeviceOrientation() {
|
|
@@ -142304,7 +142325,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
142304
142325
|
});
|
|
142305
142326
|
return _getGameCenterGameProfile.apply(this, arguments);
|
|
142306
142327
|
}
|
|
142307
|
-
function submitGameCenterLeaderBoardScore(
|
|
142328
|
+
function submitGameCenterLeaderBoardScore(_x15) {
|
|
142308
142329
|
return _submitGameCenterLeaderBoardScore.apply(this, arguments);
|
|
142309
142330
|
}
|
|
142310
142331
|
function _submitGameCenterLeaderBoardScore() {
|
|
@@ -142344,7 +142365,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
142344
142365
|
function isGrantPromotionRewardForGameError(error) {
|
|
142345
142366
|
return typeof error === "object" && error !== null && "code" in error && typeof error.code === "string" && "message" in error && typeof error.message === "string";
|
|
142346
142367
|
}
|
|
142347
|
-
function grantPromotionRewardForGame(
|
|
142368
|
+
function grantPromotionRewardForGame(_x16) {
|
|
142348
142369
|
return _grantPromotionRewardForGame.apply(this, arguments);
|
|
142349
142370
|
}
|
|
142350
142371
|
function _grantPromotionRewardForGame() {
|
|
@@ -142413,7 +142434,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
142413
142434
|
});
|
|
142414
142435
|
return unregisterCallbacks;
|
|
142415
142436
|
}
|
|
142416
|
-
function appsInTossSignTossCert(
|
|
142437
|
+
function appsInTossSignTossCert(_x17) {
|
|
142417
142438
|
return _appsInTossSignTossCert.apply(this, arguments);
|
|
142418
142439
|
}
|
|
142419
142440
|
function _appsInTossSignTossCert() {
|
|
@@ -142434,7 +142455,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
142434
142455
|
return MiniAppModule.getConstants().groupId;
|
|
142435
142456
|
}
|
|
142436
142457
|
function shareWithScheme(params) {
|
|
142437
|
-
|
|
142458
|
+
return safePostMessage("shareWithScheme", params);
|
|
142438
142459
|
}
|
|
142439
142460
|
function getServerTime() {
|
|
142440
142461
|
return _getServerTime.apply(this, arguments);
|
|
@@ -142494,7 +142515,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
142494
142515
|
function generateHapticFeedback(options) {
|
|
142495
142516
|
return CommonModule2.generateHapticFeedback(options);
|
|
142496
142517
|
}
|
|
142497
|
-
function share(
|
|
142518
|
+
function share(_x18) {
|
|
142498
142519
|
return _share.apply(this, arguments);
|
|
142499
142520
|
}
|
|
142500
142521
|
function _share() {
|
|
@@ -142506,7 +142527,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
142506
142527
|
function setSecureScreen(options) {
|
|
142507
142528
|
return CommonModule2.setSecureScreen(options);
|
|
142508
142529
|
}
|
|
142509
|
-
function setScreenAwakeMode(
|
|
142530
|
+
function setScreenAwakeMode(_x19) {
|
|
142510
142531
|
return _setScreenAwakeMode.apply(this, arguments);
|
|
142511
142532
|
}
|
|
142512
142533
|
function _setScreenAwakeMode() {
|
|
@@ -142518,7 +142539,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
142518
142539
|
function getNetworkStatus() {
|
|
142519
142540
|
return CommonModule2.getNetworkStatus();
|
|
142520
142541
|
}
|
|
142521
|
-
function setIosSwipeGestureEnabled(
|
|
142542
|
+
function setIosSwipeGestureEnabled(_x20) {
|
|
142522
142543
|
return _setIosSwipeGestureEnabled.apply(this, arguments);
|
|
142523
142544
|
}
|
|
142524
142545
|
function _setIosSwipeGestureEnabled() {
|
|
@@ -211327,22 +211348,44 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
211327
211348
|
});
|
|
211328
211349
|
exports.getTossShareLink = getTossShareLink;
|
|
211329
211350
|
var _asyncToGenerator2 = _interopRequireDefault(_$$_REQUIRE(_dependencyMap[1], "@babel/runtime/helpers/asyncToGenerator"));
|
|
211330
|
-
var
|
|
211331
|
-
|
|
211351
|
+
var _isMinVersionSupported = _$$_REQUIRE(_dependencyMap[2], "./isMinVersionSupported");
|
|
211352
|
+
var _natives = _$$_REQUIRE(_dependencyMap[3], "../../natives");
|
|
211353
|
+
var V2_MIN_VERSION = {
|
|
211354
|
+
android: '5.240.0',
|
|
211355
|
+
ios: '5.239.0'
|
|
211356
|
+
};
|
|
211357
|
+
function getTossShareLink(_x, _x2) {
|
|
211332
211358
|
return _getTossShareLink.apply(this, arguments);
|
|
211333
211359
|
}
|
|
211334
211360
|
function _getTossShareLink() {
|
|
211335
|
-
_getTossShareLink = (0, _asyncToGenerator2.default)(function* (path) {
|
|
211336
|
-
|
|
211361
|
+
_getTossShareLink = (0, _asyncToGenerator2.default)(function* (path, ogImageUrl) {
|
|
211362
|
+
if (!(0, _isMinVersionSupported.isMinVersionSupported)(V2_MIN_VERSION)) {
|
|
211363
|
+
return yield getTossShareLinkV1(path);
|
|
211364
|
+
}
|
|
211365
|
+
var _yield$safePostMessag = yield (0, _natives.safePostMessage)('getTossShareLink', {
|
|
211366
|
+
url: path,
|
|
211367
|
+
ogImageUrl
|
|
211368
|
+
}),
|
|
211337
211369
|
shareLink = _yield$safePostMessag.shareLink;
|
|
211370
|
+
return shareLink;
|
|
211371
|
+
});
|
|
211372
|
+
return _getTossShareLink.apply(this, arguments);
|
|
211373
|
+
}
|
|
211374
|
+
function getTossShareLinkV1(_x3) {
|
|
211375
|
+
return _getTossShareLinkV.apply(this, arguments);
|
|
211376
|
+
}
|
|
211377
|
+
function _getTossShareLinkV() {
|
|
211378
|
+
_getTossShareLinkV = (0, _asyncToGenerator2.default)(function* (path) {
|
|
211379
|
+
var _yield$safePostMessag2 = yield (0, _natives.safePostMessage)('getTossShareLink', {}),
|
|
211380
|
+
shareLink = _yield$safePostMessag2.shareLink;
|
|
211338
211381
|
var shareUrl = new URL(shareLink);
|
|
211339
211382
|
shareUrl.searchParams.set('deep_link_value', path);
|
|
211340
211383
|
shareUrl.searchParams.set('af_dp', path);
|
|
211341
211384
|
return shareUrl.toString();
|
|
211342
211385
|
});
|
|
211343
|
-
return
|
|
211386
|
+
return _getTossShareLinkV.apply(this, arguments);
|
|
211344
211387
|
}
|
|
211345
|
-
},2538,[1,16,2513],"../../../../.yarn/__virtual__/@apps-in-toss-native-modules-virtual-e56741e8de/1/packages/apps-in-toss/native-modules/src/MiniAppModule/native-modules/getTossShareLink.ts");
|
|
211388
|
+
},2538,[1,16,2536,2513],"../../../../.yarn/__virtual__/@apps-in-toss-native-modules-virtual-e56741e8de/1/packages/apps-in-toss/native-modules/src/MiniAppModule/native-modules/getTossShareLink.ts");
|
|
211346
211389
|
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
|
|
211347
211390
|
var _interopRequireDefault = _$$_REQUIRE(_dependencyMap[0], "@babel/runtime/helpers/interopRequireDefault");
|
|
211348
211391
|
Object.defineProperty(exports, "__esModule", {
|
|
@@ -212976,7 +213019,7 @@ __d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, e
|
|
|
212976
213019
|
exports.shareWithScheme = shareWithScheme;
|
|
212977
213020
|
var _natives = _$$_REQUIRE(_dependencyMap[0], "../../natives");
|
|
212978
213021
|
function shareWithScheme(params) {
|
|
212979
|
-
(0, _natives.
|
|
213022
|
+
return (0, _natives.safePostMessage)('shareWithScheme', params);
|
|
212980
213023
|
}
|
|
212981
213024
|
},2573,[2513],"../../../../.yarn/__virtual__/@apps-in-toss-native-modules-virtual-e56741e8de/1/packages/apps-in-toss/native-modules/src/MiniAppModule/native-modules/shareWithScheme.ts");
|
|
212982
213025
|
__d(function (global, _$$_REQUIRE, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {
|
|
@@ -818,13 +818,19 @@ var global=typeof globalThis!=='undefined'?globalThis:typeof global!=='undefined
|
|
|
818
818
|
"visibilityChangedByTransparentServiceWeb",
|
|
819
819
|
"appBridgeCallback"
|
|
820
820
|
];
|
|
821
|
-
var
|
|
821
|
+
var EXCEPT_METHODS = [
|
|
822
822
|
"loadAppsInTossAdmob",
|
|
823
823
|
"showAppsInTossAdmob",
|
|
824
824
|
"getCachedStatusAppsInTossAdmob",
|
|
825
825
|
"loadTossAdOrAdmob",
|
|
826
826
|
"showTossAdOrAdmob",
|
|
827
|
-
"fetchTossAd"
|
|
827
|
+
"fetchTossAd",
|
|
828
|
+
"getTossShareLink",
|
|
829
|
+
"appsInTossSignTossCert",
|
|
830
|
+
"checkoutPayment",
|
|
831
|
+
"completeProductGrant",
|
|
832
|
+
"grantPromotionRewardForGame",
|
|
833
|
+
"shareWithScheme"
|
|
828
834
|
];
|
|
829
835
|
function isRecord(value) {
|
|
830
836
|
return value != null && (typeof value === "undefined" ? "undefined" : _type_of(value)) === "object";
|
|
@@ -961,7 +967,16 @@ var global=typeof globalThis!=='undefined'?globalThis:typeof global!=='undefined
|
|
|
961
967
|
if (!isRecord(input)) {
|
|
962
968
|
return null;
|
|
963
969
|
}
|
|
964
|
-
|
|
970
|
+
var keys = Object.keys(input);
|
|
971
|
+
var hasParams = keys.includes("params");
|
|
972
|
+
var hasCallbacks = keys.includes("callbacks");
|
|
973
|
+
if (!hasParams && !hasCallbacks) {
|
|
974
|
+
return null;
|
|
975
|
+
}
|
|
976
|
+
var isLegacyEnvelope = keys.every(function(key) {
|
|
977
|
+
return key === "params" || key === "callbacks";
|
|
978
|
+
});
|
|
979
|
+
if (!isLegacyEnvelope) {
|
|
965
980
|
return null;
|
|
966
981
|
}
|
|
967
982
|
var payload = input;
|
|
@@ -993,7 +1008,7 @@ var global=typeof globalThis!=='undefined'?globalThis:typeof global!=='undefined
|
|
|
993
1008
|
}
|
|
994
1009
|
var hasCallbacks = isRecord(payloadCallbacks) && Object.keys(payloadCallbacks).length > 0;
|
|
995
1010
|
var isAppBridgePayload = payload != null;
|
|
996
|
-
if (hasCallbacks || isAppBridgePayload ||
|
|
1011
|
+
if (hasCallbacks || isAppBridgePayload || EXCEPT_METHODS.includes(methodName)) {
|
|
997
1012
|
return directMethod({
|
|
998
1013
|
params: payloadParams !== null && payloadParams !== void 0 ? payloadParams : {},
|
|
999
1014
|
callbacks: payloadCallbacks
|
|
@@ -11570,7 +11585,7 @@ var global=typeof globalThis!=='undefined'?globalThis:typeof global!=='undefined
|
|
|
11570
11585
|
})();
|
|
11571
11586
|
}
|
|
11572
11587
|
function shareWithScheme(params) {
|
|
11573
|
-
|
|
11588
|
+
return safePostMessage("shareWithScheme", params);
|
|
11574
11589
|
}
|
|
11575
11590
|
function getServerTime() {
|
|
11576
11591
|
return _async_to_generator(function() {
|
|
@@ -43498,7 +43513,44 @@ var global=typeof globalThis!=='undefined'?globalThis:typeof global!=='undefined
|
|
|
43498
43513
|
});
|
|
43499
43514
|
|
|
43500
43515
|
// ../../../.yarn/__virtual__/@apps-in-toss-native-modules-virtual-e56741e8de/1/packages/apps-in-toss/native-modules/src/MiniAppModule/native-modules/getTossShareLink.ts
|
|
43501
|
-
function getTossShareLink(path) {
|
|
43516
|
+
function getTossShareLink(path, ogImageUrl) {
|
|
43517
|
+
return _async_to_generator(function() {
|
|
43518
|
+
var shareLink;
|
|
43519
|
+
return __generator(this, function(_state) {
|
|
43520
|
+
switch (_state.label) {
|
|
43521
|
+
case 0:
|
|
43522
|
+
if (!!isMinVersionSupported2(V2_MIN_VERSION)) return [
|
|
43523
|
+
3,
|
|
43524
|
+
2
|
|
43525
|
+
];
|
|
43526
|
+
return [
|
|
43527
|
+
4,
|
|
43528
|
+
getTossShareLinkV1(path)
|
|
43529
|
+
];
|
|
43530
|
+
case 1:
|
|
43531
|
+
return [
|
|
43532
|
+
2,
|
|
43533
|
+
_state.sent()
|
|
43534
|
+
];
|
|
43535
|
+
case 2:
|
|
43536
|
+
return [
|
|
43537
|
+
4,
|
|
43538
|
+
safePostMessage2("getTossShareLink", {
|
|
43539
|
+
url: path,
|
|
43540
|
+
ogImageUrl
|
|
43541
|
+
})
|
|
43542
|
+
];
|
|
43543
|
+
case 3:
|
|
43544
|
+
shareLink = _state.sent().shareLink;
|
|
43545
|
+
return [
|
|
43546
|
+
2,
|
|
43547
|
+
shareLink
|
|
43548
|
+
];
|
|
43549
|
+
}
|
|
43550
|
+
});
|
|
43551
|
+
})();
|
|
43552
|
+
}
|
|
43553
|
+
function getTossShareLinkV1(path) {
|
|
43502
43554
|
return _async_to_generator(function() {
|
|
43503
43555
|
var shareLink, shareUrl;
|
|
43504
43556
|
return __generator(this, function(_state) {
|
|
@@ -43521,12 +43573,18 @@ var global=typeof globalThis!=='undefined'?globalThis:typeof global!=='undefined
|
|
|
43521
43573
|
});
|
|
43522
43574
|
})();
|
|
43523
43575
|
}
|
|
43576
|
+
var V2_MIN_VERSION;
|
|
43524
43577
|
var init_getTossShareLink = __esm({
|
|
43525
43578
|
"../../../.yarn/__virtual__/@apps-in-toss-native-modules-virtual-e56741e8de/1/packages/apps-in-toss/native-modules/src/MiniAppModule/native-modules/getTossShareLink.ts"() {
|
|
43526
43579
|
"use strict";
|
|
43527
43580
|
init_async_to_generator();
|
|
43528
43581
|
init_ts_generator();
|
|
43582
|
+
init_isMinVersionSupported();
|
|
43529
43583
|
init_natives2();
|
|
43584
|
+
V2_MIN_VERSION = {
|
|
43585
|
+
android: "5.240.0",
|
|
43586
|
+
ios: "5.239.0"
|
|
43587
|
+
};
|
|
43530
43588
|
}
|
|
43531
43589
|
});
|
|
43532
43590
|
|
|
@@ -45159,7 +45217,7 @@ var global=typeof globalThis!=='undefined'?globalThis:typeof global!=='undefined
|
|
|
45159
45217
|
4,
|
|
45160
45218
|
openConfirm({
|
|
45161
45219
|
title: "".concat(josa(brandDisplayName, "\uC744/\uB97C"), " \uC885\uB8CC\uD560\uAE4C\uC694?"),
|
|
45162
|
-
leftButton: "\
|
|
45220
|
+
leftButton: "\uB2EB\uAE30",
|
|
45163
45221
|
rightButton: "\uC885\uB8CC\uD558\uAE30",
|
|
45164
45222
|
closeOnDimmerClick: true,
|
|
45165
45223
|
onEntered
|
|
@@ -45907,7 +45965,7 @@ var global=typeof globalThis!=='undefined'?globalThis:typeof global!=='undefined
|
|
|
45907
45965
|
4,
|
|
45908
45966
|
openConfirm({
|
|
45909
45967
|
title: "".concat(josa(global2.brandDisplayName, "\uC744/\uB97C"), " \uC885\uB8CC\uD560\uAE4C\uC694?"),
|
|
45910
|
-
leftButton: "\
|
|
45968
|
+
leftButton: "\uB2EB\uAE30",
|
|
45911
45969
|
rightButton: "\uC885\uB8CC\uD558\uAE30",
|
|
45912
45970
|
closeOnDimmerClick: true,
|
|
45913
45971
|
onEntered: logging.closePopupShow
|
|
@@ -45987,7 +46045,7 @@ var global=typeof globalThis!=='undefined'?globalThis:typeof global!=='undefined
|
|
|
45987
46045
|
4,
|
|
45988
46046
|
openConfirm({
|
|
45989
46047
|
title: "".concat(josa(globals.brandDisplayName, "\uC744/\uB97C"), " \uC885\uB8CC\uD560\uAE4C\uC694?"),
|
|
45990
|
-
leftButton: "\
|
|
46048
|
+
leftButton: "\uB2EB\uAE30",
|
|
45991
46049
|
rightButton: "\uC885\uB8CC\uD558\uAE30",
|
|
45992
46050
|
closeOnDimmerClick: true,
|
|
45993
46051
|
onEntered: logging.closePopupShow
|
|
@@ -46670,7 +46728,7 @@ var global=typeof globalThis!=='undefined'?globalThis:typeof global!=='undefined
|
|
|
46670
46728
|
4,
|
|
46671
46729
|
openConfirm({
|
|
46672
46730
|
title: "".concat(josa(global2.brandDisplayName, "\uC744/\uB97C"), " \uC885\uB8CC\uD560\uAE4C\uC694?"),
|
|
46673
|
-
leftButton: "\
|
|
46731
|
+
leftButton: "\uB2EB\uAE30",
|
|
46674
46732
|
rightButton: "\uC885\uB8CC\uD558\uAE30",
|
|
46675
46733
|
closeOnDimmerClick: true,
|
|
46676
46734
|
onEntered: logging.closePopupShow
|
|
@@ -11045,7 +11045,7 @@ var global=typeof globalThis!=='undefined'?globalThis:typeof global!=='undefined
|
|
|
11045
11045
|
})();
|
|
11046
11046
|
}
|
|
11047
11047
|
function shareWithScheme(params) {
|
|
11048
|
-
|
|
11048
|
+
return safePostMessage("shareWithScheme", params);
|
|
11049
11049
|
}
|
|
11050
11050
|
function getServerTime() {
|
|
11051
11051
|
return _async_to_generator(function() {
|
|
@@ -42906,7 +42906,44 @@ var global=typeof globalThis!=='undefined'?globalThis:typeof global!=='undefined
|
|
|
42906
42906
|
});
|
|
42907
42907
|
|
|
42908
42908
|
// ../../../.yarn/__virtual__/@apps-in-toss-native-modules-virtual-e56741e8de/1/packages/apps-in-toss/native-modules/src/MiniAppModule/native-modules/getTossShareLink.ts
|
|
42909
|
-
function getTossShareLink(path) {
|
|
42909
|
+
function getTossShareLink(path, ogImageUrl) {
|
|
42910
|
+
return _async_to_generator(function() {
|
|
42911
|
+
var shareLink;
|
|
42912
|
+
return __generator(this, function(_state) {
|
|
42913
|
+
switch (_state.label) {
|
|
42914
|
+
case 0:
|
|
42915
|
+
if (!!isMinVersionSupported2(V2_MIN_VERSION)) return [
|
|
42916
|
+
3,
|
|
42917
|
+
2
|
|
42918
|
+
];
|
|
42919
|
+
return [
|
|
42920
|
+
4,
|
|
42921
|
+
getTossShareLinkV1(path)
|
|
42922
|
+
];
|
|
42923
|
+
case 1:
|
|
42924
|
+
return [
|
|
42925
|
+
2,
|
|
42926
|
+
_state.sent()
|
|
42927
|
+
];
|
|
42928
|
+
case 2:
|
|
42929
|
+
return [
|
|
42930
|
+
4,
|
|
42931
|
+
safePostMessage2("getTossShareLink", {
|
|
42932
|
+
url: path,
|
|
42933
|
+
ogImageUrl
|
|
42934
|
+
})
|
|
42935
|
+
];
|
|
42936
|
+
case 3:
|
|
42937
|
+
shareLink = _state.sent().shareLink;
|
|
42938
|
+
return [
|
|
42939
|
+
2,
|
|
42940
|
+
shareLink
|
|
42941
|
+
];
|
|
42942
|
+
}
|
|
42943
|
+
});
|
|
42944
|
+
})();
|
|
42945
|
+
}
|
|
42946
|
+
function getTossShareLinkV1(path) {
|
|
42910
42947
|
return _async_to_generator(function() {
|
|
42911
42948
|
var shareLink, shareUrl;
|
|
42912
42949
|
return __generator(this, function(_state) {
|
|
@@ -42929,12 +42966,18 @@ var global=typeof globalThis!=='undefined'?globalThis:typeof global!=='undefined
|
|
|
42929
42966
|
});
|
|
42930
42967
|
})();
|
|
42931
42968
|
}
|
|
42969
|
+
var V2_MIN_VERSION;
|
|
42932
42970
|
var init_getTossShareLink = __esm({
|
|
42933
42971
|
"../../../.yarn/__virtual__/@apps-in-toss-native-modules-virtual-e56741e8de/1/packages/apps-in-toss/native-modules/src/MiniAppModule/native-modules/getTossShareLink.ts"() {
|
|
42934
42972
|
"use strict";
|
|
42935
42973
|
init_async_to_generator();
|
|
42936
42974
|
init_ts_generator();
|
|
42975
|
+
init_isMinVersionSupported();
|
|
42937
42976
|
init_natives2();
|
|
42977
|
+
V2_MIN_VERSION = {
|
|
42978
|
+
android: "5.240.0",
|
|
42979
|
+
ios: "5.239.0"
|
|
42980
|
+
};
|
|
42938
42981
|
}
|
|
42939
42982
|
});
|
|
42940
42983
|
|
|
@@ -44567,7 +44610,7 @@ var global=typeof globalThis!=='undefined'?globalThis:typeof global!=='undefined
|
|
|
44567
44610
|
4,
|
|
44568
44611
|
openConfirm({
|
|
44569
44612
|
title: "".concat(josa(brandDisplayName, "\uC744/\uB97C"), " \uC885\uB8CC\uD560\uAE4C\uC694?"),
|
|
44570
|
-
leftButton: "\
|
|
44613
|
+
leftButton: "\uB2EB\uAE30",
|
|
44571
44614
|
rightButton: "\uC885\uB8CC\uD558\uAE30",
|
|
44572
44615
|
closeOnDimmerClick: true,
|
|
44573
44616
|
onEntered
|
|
@@ -45315,7 +45358,7 @@ var global=typeof globalThis!=='undefined'?globalThis:typeof global!=='undefined
|
|
|
45315
45358
|
4,
|
|
45316
45359
|
openConfirm({
|
|
45317
45360
|
title: "".concat(josa(global2.brandDisplayName, "\uC744/\uB97C"), " \uC885\uB8CC\uD560\uAE4C\uC694?"),
|
|
45318
|
-
leftButton: "\
|
|
45361
|
+
leftButton: "\uB2EB\uAE30",
|
|
45319
45362
|
rightButton: "\uC885\uB8CC\uD558\uAE30",
|
|
45320
45363
|
closeOnDimmerClick: true,
|
|
45321
45364
|
onEntered: logging.closePopupShow
|
|
@@ -45395,7 +45438,7 @@ var global=typeof globalThis!=='undefined'?globalThis:typeof global!=='undefined
|
|
|
45395
45438
|
4,
|
|
45396
45439
|
openConfirm({
|
|
45397
45440
|
title: "".concat(josa(globals.brandDisplayName, "\uC744/\uB97C"), " \uC885\uB8CC\uD560\uAE4C\uC694?"),
|
|
45398
|
-
leftButton: "\
|
|
45441
|
+
leftButton: "\uB2EB\uAE30",
|
|
45399
45442
|
rightButton: "\uC885\uB8CC\uD558\uAE30",
|
|
45400
45443
|
closeOnDimmerClick: true,
|
|
45401
45444
|
onEntered: logging.closePopupShow
|
|
@@ -46078,7 +46121,7 @@ var global=typeof globalThis!=='undefined'?globalThis:typeof global!=='undefined
|
|
|
46078
46121
|
4,
|
|
46079
46122
|
openConfirm({
|
|
46080
46123
|
title: "".concat(josa(global2.brandDisplayName, "\uC744/\uB97C"), " \uC885\uB8CC\uD560\uAE4C\uC694?"),
|
|
46081
|
-
leftButton: "\
|
|
46124
|
+
leftButton: "\uB2EB\uAE30",
|
|
46082
46125
|
rightButton: "\uC885\uB8CC\uD558\uAE30",
|
|
46083
46126
|
closeOnDimmerClick: true,
|
|
46084
46127
|
onEntered: logging.closePopupShow
|
|
@@ -818,13 +818,19 @@ var global=typeof globalThis!=='undefined'?globalThis:typeof global!=='undefined
|
|
|
818
818
|
"visibilityChangedByTransparentServiceWeb",
|
|
819
819
|
"appBridgeCallback"
|
|
820
820
|
];
|
|
821
|
-
var
|
|
821
|
+
var EXCEPT_METHODS = [
|
|
822
822
|
"loadAppsInTossAdmob",
|
|
823
823
|
"showAppsInTossAdmob",
|
|
824
824
|
"getCachedStatusAppsInTossAdmob",
|
|
825
825
|
"loadTossAdOrAdmob",
|
|
826
826
|
"showTossAdOrAdmob",
|
|
827
|
-
"fetchTossAd"
|
|
827
|
+
"fetchTossAd",
|
|
828
|
+
"getTossShareLink",
|
|
829
|
+
"appsInTossSignTossCert",
|
|
830
|
+
"checkoutPayment",
|
|
831
|
+
"completeProductGrant",
|
|
832
|
+
"grantPromotionRewardForGame",
|
|
833
|
+
"shareWithScheme"
|
|
828
834
|
];
|
|
829
835
|
function isRecord(value) {
|
|
830
836
|
return value != null && (typeof value === "undefined" ? "undefined" : _type_of(value)) === "object";
|
|
@@ -961,7 +967,16 @@ var global=typeof globalThis!=='undefined'?globalThis:typeof global!=='undefined
|
|
|
961
967
|
if (!isRecord(input)) {
|
|
962
968
|
return null;
|
|
963
969
|
}
|
|
964
|
-
|
|
970
|
+
var keys = Object.keys(input);
|
|
971
|
+
var hasParams = keys.includes("params");
|
|
972
|
+
var hasCallbacks = keys.includes("callbacks");
|
|
973
|
+
if (!hasParams && !hasCallbacks) {
|
|
974
|
+
return null;
|
|
975
|
+
}
|
|
976
|
+
var isLegacyEnvelope = keys.every(function(key) {
|
|
977
|
+
return key === "params" || key === "callbacks";
|
|
978
|
+
});
|
|
979
|
+
if (!isLegacyEnvelope) {
|
|
965
980
|
return null;
|
|
966
981
|
}
|
|
967
982
|
var payload = input;
|
|
@@ -993,7 +1008,7 @@ var global=typeof globalThis!=='undefined'?globalThis:typeof global!=='undefined
|
|
|
993
1008
|
}
|
|
994
1009
|
var hasCallbacks = isRecord(payloadCallbacks) && Object.keys(payloadCallbacks).length > 0;
|
|
995
1010
|
var isAppBridgePayload = payload != null;
|
|
996
|
-
if (hasCallbacks || isAppBridgePayload ||
|
|
1011
|
+
if (hasCallbacks || isAppBridgePayload || EXCEPT_METHODS.includes(methodName)) {
|
|
997
1012
|
return directMethod({
|
|
998
1013
|
params: payloadParams !== null && payloadParams !== void 0 ? payloadParams : {},
|
|
999
1014
|
callbacks: payloadCallbacks
|
|
@@ -11579,7 +11594,7 @@ var global=typeof globalThis!=='undefined'?globalThis:typeof global!=='undefined
|
|
|
11579
11594
|
})();
|
|
11580
11595
|
}
|
|
11581
11596
|
function shareWithScheme(params) {
|
|
11582
|
-
|
|
11597
|
+
return safePostMessage("shareWithScheme", params);
|
|
11583
11598
|
}
|
|
11584
11599
|
function getServerTime() {
|
|
11585
11600
|
return _async_to_generator(function() {
|
|
@@ -43507,7 +43522,44 @@ var global=typeof globalThis!=='undefined'?globalThis:typeof global!=='undefined
|
|
|
43507
43522
|
});
|
|
43508
43523
|
|
|
43509
43524
|
// ../../../.yarn/__virtual__/@apps-in-toss-native-modules-virtual-e56741e8de/1/packages/apps-in-toss/native-modules/src/MiniAppModule/native-modules/getTossShareLink.ts
|
|
43510
|
-
function getTossShareLink(path) {
|
|
43525
|
+
function getTossShareLink(path, ogImageUrl) {
|
|
43526
|
+
return _async_to_generator(function() {
|
|
43527
|
+
var shareLink;
|
|
43528
|
+
return __generator(this, function(_state) {
|
|
43529
|
+
switch (_state.label) {
|
|
43530
|
+
case 0:
|
|
43531
|
+
if (!!isMinVersionSupported2(V2_MIN_VERSION)) return [
|
|
43532
|
+
3,
|
|
43533
|
+
2
|
|
43534
|
+
];
|
|
43535
|
+
return [
|
|
43536
|
+
4,
|
|
43537
|
+
getTossShareLinkV1(path)
|
|
43538
|
+
];
|
|
43539
|
+
case 1:
|
|
43540
|
+
return [
|
|
43541
|
+
2,
|
|
43542
|
+
_state.sent()
|
|
43543
|
+
];
|
|
43544
|
+
case 2:
|
|
43545
|
+
return [
|
|
43546
|
+
4,
|
|
43547
|
+
safePostMessage2("getTossShareLink", {
|
|
43548
|
+
url: path,
|
|
43549
|
+
ogImageUrl
|
|
43550
|
+
})
|
|
43551
|
+
];
|
|
43552
|
+
case 3:
|
|
43553
|
+
shareLink = _state.sent().shareLink;
|
|
43554
|
+
return [
|
|
43555
|
+
2,
|
|
43556
|
+
shareLink
|
|
43557
|
+
];
|
|
43558
|
+
}
|
|
43559
|
+
});
|
|
43560
|
+
})();
|
|
43561
|
+
}
|
|
43562
|
+
function getTossShareLinkV1(path) {
|
|
43511
43563
|
return _async_to_generator(function() {
|
|
43512
43564
|
var shareLink, shareUrl;
|
|
43513
43565
|
return __generator(this, function(_state) {
|
|
@@ -43530,12 +43582,18 @@ var global=typeof globalThis!=='undefined'?globalThis:typeof global!=='undefined
|
|
|
43530
43582
|
});
|
|
43531
43583
|
})();
|
|
43532
43584
|
}
|
|
43585
|
+
var V2_MIN_VERSION;
|
|
43533
43586
|
var init_getTossShareLink = __esm({
|
|
43534
43587
|
"../../../.yarn/__virtual__/@apps-in-toss-native-modules-virtual-e56741e8de/1/packages/apps-in-toss/native-modules/src/MiniAppModule/native-modules/getTossShareLink.ts"() {
|
|
43535
43588
|
"use strict";
|
|
43536
43589
|
init_async_to_generator();
|
|
43537
43590
|
init_ts_generator();
|
|
43591
|
+
init_isMinVersionSupported();
|
|
43538
43592
|
init_natives2();
|
|
43593
|
+
V2_MIN_VERSION = {
|
|
43594
|
+
android: "5.240.0",
|
|
43595
|
+
ios: "5.239.0"
|
|
43596
|
+
};
|
|
43539
43597
|
}
|
|
43540
43598
|
});
|
|
43541
43599
|
|
|
@@ -45168,7 +45226,7 @@ var global=typeof globalThis!=='undefined'?globalThis:typeof global!=='undefined
|
|
|
45168
45226
|
4,
|
|
45169
45227
|
openConfirm({
|
|
45170
45228
|
title: "".concat(josa(brandDisplayName, "\uC744/\uB97C"), " \uC885\uB8CC\uD560\uAE4C\uC694?"),
|
|
45171
|
-
leftButton: "\
|
|
45229
|
+
leftButton: "\uB2EB\uAE30",
|
|
45172
45230
|
rightButton: "\uC885\uB8CC\uD558\uAE30",
|
|
45173
45231
|
closeOnDimmerClick: true,
|
|
45174
45232
|
onEntered
|
|
@@ -45916,7 +45974,7 @@ var global=typeof globalThis!=='undefined'?globalThis:typeof global!=='undefined
|
|
|
45916
45974
|
4,
|
|
45917
45975
|
openConfirm({
|
|
45918
45976
|
title: "".concat(josa(global2.brandDisplayName, "\uC744/\uB97C"), " \uC885\uB8CC\uD560\uAE4C\uC694?"),
|
|
45919
|
-
leftButton: "\
|
|
45977
|
+
leftButton: "\uB2EB\uAE30",
|
|
45920
45978
|
rightButton: "\uC885\uB8CC\uD558\uAE30",
|
|
45921
45979
|
closeOnDimmerClick: true,
|
|
45922
45980
|
onEntered: logging.closePopupShow
|
|
@@ -45996,7 +46054,7 @@ var global=typeof globalThis!=='undefined'?globalThis:typeof global!=='undefined
|
|
|
45996
46054
|
4,
|
|
45997
46055
|
openConfirm({
|
|
45998
46056
|
title: "".concat(josa(globals.brandDisplayName, "\uC744/\uB97C"), " \uC885\uB8CC\uD560\uAE4C\uC694?"),
|
|
45999
|
-
leftButton: "\
|
|
46057
|
+
leftButton: "\uB2EB\uAE30",
|
|
46000
46058
|
rightButton: "\uC885\uB8CC\uD558\uAE30",
|
|
46001
46059
|
closeOnDimmerClick: true,
|
|
46002
46060
|
onEntered: logging.closePopupShow
|
|
@@ -46679,7 +46737,7 @@ var global=typeof globalThis!=='undefined'?globalThis:typeof global!=='undefined
|
|
|
46679
46737
|
4,
|
|
46680
46738
|
openConfirm({
|
|
46681
46739
|
title: "".concat(josa(global2.brandDisplayName, "\uC744/\uB97C"), " \uC885\uB8CC\uD560\uAE4C\uC694?"),
|
|
46682
|
-
leftButton: "\
|
|
46740
|
+
leftButton: "\uB2EB\uAE30",
|
|
46683
46741
|
rightButton: "\uC885\uB8CC\uD558\uAE30",
|
|
46684
46742
|
closeOnDimmerClick: true,
|
|
46685
46743
|
onEntered: logging.closePopupShow
|
|
@@ -11054,7 +11054,7 @@ var global=typeof globalThis!=='undefined'?globalThis:typeof global!=='undefined
|
|
|
11054
11054
|
})();
|
|
11055
11055
|
}
|
|
11056
11056
|
function shareWithScheme(params) {
|
|
11057
|
-
|
|
11057
|
+
return safePostMessage("shareWithScheme", params);
|
|
11058
11058
|
}
|
|
11059
11059
|
function getServerTime() {
|
|
11060
11060
|
return _async_to_generator(function() {
|
|
@@ -42915,7 +42915,44 @@ var global=typeof globalThis!=='undefined'?globalThis:typeof global!=='undefined
|
|
|
42915
42915
|
});
|
|
42916
42916
|
|
|
42917
42917
|
// ../../../.yarn/__virtual__/@apps-in-toss-native-modules-virtual-e56741e8de/1/packages/apps-in-toss/native-modules/src/MiniAppModule/native-modules/getTossShareLink.ts
|
|
42918
|
-
function getTossShareLink(path) {
|
|
42918
|
+
function getTossShareLink(path, ogImageUrl) {
|
|
42919
|
+
return _async_to_generator(function() {
|
|
42920
|
+
var shareLink;
|
|
42921
|
+
return __generator(this, function(_state) {
|
|
42922
|
+
switch (_state.label) {
|
|
42923
|
+
case 0:
|
|
42924
|
+
if (!!isMinVersionSupported2(V2_MIN_VERSION)) return [
|
|
42925
|
+
3,
|
|
42926
|
+
2
|
|
42927
|
+
];
|
|
42928
|
+
return [
|
|
42929
|
+
4,
|
|
42930
|
+
getTossShareLinkV1(path)
|
|
42931
|
+
];
|
|
42932
|
+
case 1:
|
|
42933
|
+
return [
|
|
42934
|
+
2,
|
|
42935
|
+
_state.sent()
|
|
42936
|
+
];
|
|
42937
|
+
case 2:
|
|
42938
|
+
return [
|
|
42939
|
+
4,
|
|
42940
|
+
safePostMessage2("getTossShareLink", {
|
|
42941
|
+
url: path,
|
|
42942
|
+
ogImageUrl
|
|
42943
|
+
})
|
|
42944
|
+
];
|
|
42945
|
+
case 3:
|
|
42946
|
+
shareLink = _state.sent().shareLink;
|
|
42947
|
+
return [
|
|
42948
|
+
2,
|
|
42949
|
+
shareLink
|
|
42950
|
+
];
|
|
42951
|
+
}
|
|
42952
|
+
});
|
|
42953
|
+
})();
|
|
42954
|
+
}
|
|
42955
|
+
function getTossShareLinkV1(path) {
|
|
42919
42956
|
return _async_to_generator(function() {
|
|
42920
42957
|
var shareLink, shareUrl;
|
|
42921
42958
|
return __generator(this, function(_state) {
|
|
@@ -42938,12 +42975,18 @@ var global=typeof globalThis!=='undefined'?globalThis:typeof global!=='undefined
|
|
|
42938
42975
|
});
|
|
42939
42976
|
})();
|
|
42940
42977
|
}
|
|
42978
|
+
var V2_MIN_VERSION;
|
|
42941
42979
|
var init_getTossShareLink = __esm({
|
|
42942
42980
|
"../../../.yarn/__virtual__/@apps-in-toss-native-modules-virtual-e56741e8de/1/packages/apps-in-toss/native-modules/src/MiniAppModule/native-modules/getTossShareLink.ts"() {
|
|
42943
42981
|
"use strict";
|
|
42944
42982
|
init_async_to_generator();
|
|
42945
42983
|
init_ts_generator();
|
|
42984
|
+
init_isMinVersionSupported();
|
|
42946
42985
|
init_natives2();
|
|
42986
|
+
V2_MIN_VERSION = {
|
|
42987
|
+
android: "5.240.0",
|
|
42988
|
+
ios: "5.239.0"
|
|
42989
|
+
};
|
|
42947
42990
|
}
|
|
42948
42991
|
});
|
|
42949
42992
|
|
|
@@ -44576,7 +44619,7 @@ var global=typeof globalThis!=='undefined'?globalThis:typeof global!=='undefined
|
|
|
44576
44619
|
4,
|
|
44577
44620
|
openConfirm({
|
|
44578
44621
|
title: "".concat(josa(brandDisplayName, "\uC744/\uB97C"), " \uC885\uB8CC\uD560\uAE4C\uC694?"),
|
|
44579
|
-
leftButton: "\
|
|
44622
|
+
leftButton: "\uB2EB\uAE30",
|
|
44580
44623
|
rightButton: "\uC885\uB8CC\uD558\uAE30",
|
|
44581
44624
|
closeOnDimmerClick: true,
|
|
44582
44625
|
onEntered
|
|
@@ -45324,7 +45367,7 @@ var global=typeof globalThis!=='undefined'?globalThis:typeof global!=='undefined
|
|
|
45324
45367
|
4,
|
|
45325
45368
|
openConfirm({
|
|
45326
45369
|
title: "".concat(josa(global2.brandDisplayName, "\uC744/\uB97C"), " \uC885\uB8CC\uD560\uAE4C\uC694?"),
|
|
45327
|
-
leftButton: "\
|
|
45370
|
+
leftButton: "\uB2EB\uAE30",
|
|
45328
45371
|
rightButton: "\uC885\uB8CC\uD558\uAE30",
|
|
45329
45372
|
closeOnDimmerClick: true,
|
|
45330
45373
|
onEntered: logging.closePopupShow
|
|
@@ -45404,7 +45447,7 @@ var global=typeof globalThis!=='undefined'?globalThis:typeof global!=='undefined
|
|
|
45404
45447
|
4,
|
|
45405
45448
|
openConfirm({
|
|
45406
45449
|
title: "".concat(josa(globals.brandDisplayName, "\uC744/\uB97C"), " \uC885\uB8CC\uD560\uAE4C\uC694?"),
|
|
45407
|
-
leftButton: "\
|
|
45450
|
+
leftButton: "\uB2EB\uAE30",
|
|
45408
45451
|
rightButton: "\uC885\uB8CC\uD558\uAE30",
|
|
45409
45452
|
closeOnDimmerClick: true,
|
|
45410
45453
|
onEntered: logging.closePopupShow
|
|
@@ -46087,7 +46130,7 @@ var global=typeof globalThis!=='undefined'?globalThis:typeof global!=='undefined
|
|
|
46087
46130
|
4,
|
|
46088
46131
|
openConfirm({
|
|
46089
46132
|
title: "".concat(josa(global2.brandDisplayName, "\uC744/\uB97C"), " \uC885\uB8CC\uD560\uAE4C\uC694?"),
|
|
46090
|
-
leftButton: "\
|
|
46133
|
+
leftButton: "\uB2EB\uAE30",
|
|
46091
46134
|
rightButton: "\uC885\uB8CC\uD558\uAE30",
|
|
46092
46135
|
closeOnDimmerClick: true,
|
|
46093
46136
|
onEntered: logging.closePopupShow
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@apps-in-toss/web-framework",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "2.0.
|
|
4
|
+
"version": "2.0.3",
|
|
5
5
|
"description": "Web Framework for Apps In Toss",
|
|
6
6
|
"scripts": {
|
|
7
7
|
"typecheck": "tsc --noEmit",
|
|
@@ -86,13 +86,13 @@
|
|
|
86
86
|
"zod": "3.24.4"
|
|
87
87
|
},
|
|
88
88
|
"dependencies": {
|
|
89
|
-
"@apps-in-toss/bridge-core": "2.0.
|
|
90
|
-
"@apps-in-toss/cli": "2.0.
|
|
91
|
-
"@apps-in-toss/framework": "2.0.
|
|
92
|
-
"@apps-in-toss/plugins": "2.0.
|
|
93
|
-
"@apps-in-toss/web-analytics": "2.0.
|
|
94
|
-
"@apps-in-toss/web-bridge": "2.0.
|
|
95
|
-
"@apps-in-toss/web-config": "2.0.
|
|
89
|
+
"@apps-in-toss/bridge-core": "2.0.3",
|
|
90
|
+
"@apps-in-toss/cli": "2.0.3",
|
|
91
|
+
"@apps-in-toss/framework": "2.0.3",
|
|
92
|
+
"@apps-in-toss/plugins": "2.0.3",
|
|
93
|
+
"@apps-in-toss/web-analytics": "2.0.3",
|
|
94
|
+
"@apps-in-toss/web-bridge": "2.0.3",
|
|
95
|
+
"@apps-in-toss/web-config": "2.0.3",
|
|
96
96
|
"@babel/core": "7.23.9",
|
|
97
97
|
"@granite-js/cli": "1.0.4",
|
|
98
98
|
"@granite-js/mpack": "1.0.4",
|