@apps-in-toss/web-framework 1.7.1 → 1.8.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +4 -0
- package/dist/prebuilt/dev.android.js +108 -54
- package/dist/prebuilt/dev.ios.js +108 -54
- package/dist/prebuilt/prod.android.js +94 -19
- package/dist/prebuilt/prod.ios.js +94 -19
- package/package.json +7 -7
|
@@ -11173,6 +11173,40 @@ var global=typeof globalThis!=='undefined'?globalThis:typeof global!=='undefined
|
|
|
11173
11173
|
});
|
|
11174
11174
|
};
|
|
11175
11175
|
}
|
|
11176
|
+
function isAppsInTossAdMobLoaded(params) {
|
|
11177
|
+
return _isAppsInTossAdMobLoaded.apply(this, arguments);
|
|
11178
|
+
}
|
|
11179
|
+
function _isAppsInTossAdMobLoaded() {
|
|
11180
|
+
_isAppsInTossAdMobLoaded = _async_to_generator(function(params) {
|
|
11181
|
+
return __generator(this, function(_state) {
|
|
11182
|
+
if (!isAppsInTossAdMobLoadedSupported()) {
|
|
11183
|
+
return [
|
|
11184
|
+
2,
|
|
11185
|
+
false
|
|
11186
|
+
];
|
|
11187
|
+
}
|
|
11188
|
+
return [
|
|
11189
|
+
2,
|
|
11190
|
+
new Promise(function(resolve, reject) {
|
|
11191
|
+
var unregister = INTERNAL__appBridgeHandler.invokeAppBridgeMethod("getCachedStatusAppsInTossAdmob", _object_spread({}, params), {
|
|
11192
|
+
onSuccess: function(cached) {
|
|
11193
|
+
resolve(cached);
|
|
11194
|
+
unregister();
|
|
11195
|
+
},
|
|
11196
|
+
onError: reject
|
|
11197
|
+
});
|
|
11198
|
+
})
|
|
11199
|
+
];
|
|
11200
|
+
});
|
|
11201
|
+
});
|
|
11202
|
+
return _isAppsInTossAdMobLoaded.apply(this, arguments);
|
|
11203
|
+
}
|
|
11204
|
+
function isAppsInTossAdMobLoadedSupported() {
|
|
11205
|
+
return ENVIRONMENT !== "toss" ? false : isMinVersionSupported({
|
|
11206
|
+
android: "5.244.0",
|
|
11207
|
+
ios: "5.244.0"
|
|
11208
|
+
});
|
|
11209
|
+
}
|
|
11176
11210
|
function normalizeParams(params) {
|
|
11177
11211
|
return Object.fromEntries(Object.entries(params).filter(function(param) {
|
|
11178
11212
|
var _param = _sliced_to_array(param, 2), value = _param[1];
|
|
@@ -11865,6 +11899,7 @@ var global=typeof globalThis!=='undefined'?globalThis:typeof global!=='undefined
|
|
|
11865
11899
|
ENVIRONMENT = getOperationalEnvironment();
|
|
11866
11900
|
loadAppsInTossAdMob.isSupported = createIsSupported();
|
|
11867
11901
|
showAppsInTossAdMob.isSupported = createIsSupported();
|
|
11902
|
+
isAppsInTossAdMobLoaded.isSupported = isAppsInTossAdMobLoadedSupported;
|
|
11868
11903
|
DEFAULT_MAX_COUNT = 10;
|
|
11869
11904
|
DEFAULT_MAX_WIDTH = 1024;
|
|
11870
11905
|
fetchAlbumPhotos = createPermissionFunction({
|
|
@@ -11999,7 +12034,8 @@ var global=typeof globalThis!=='undefined'?globalThis:typeof global!=='undefined
|
|
|
11999
12034
|
};
|
|
12000
12035
|
GoogleAdMob = {
|
|
12001
12036
|
loadAppsInTossAdMob,
|
|
12002
|
-
showAppsInTossAdMob
|
|
12037
|
+
showAppsInTossAdMob,
|
|
12038
|
+
isAppsInTossAdMobLoaded
|
|
12003
12039
|
};
|
|
12004
12040
|
startUpdateLocation.openPermissionDialog = getCurrentLocation.openPermissionDialog;
|
|
12005
12041
|
startUpdateLocation.getPermission = getCurrentLocation.getPermission;
|
|
@@ -44622,12 +44658,48 @@ var global=typeof globalThis!=='undefined'?globalThis:typeof global!=='undefined
|
|
|
44622
44658
|
});
|
|
44623
44659
|
};
|
|
44624
44660
|
}
|
|
44661
|
+
function isAppsInTossAdMobLoaded2(params) {
|
|
44662
|
+
return _isAppsInTossAdMobLoaded2.apply(this, arguments);
|
|
44663
|
+
}
|
|
44664
|
+
function _isAppsInTossAdMobLoaded2() {
|
|
44665
|
+
_isAppsInTossAdMobLoaded2 = _async_to_generator(function(params) {
|
|
44666
|
+
return __generator(this, function(_state) {
|
|
44667
|
+
if (!isAppsInTossAdMobLoadedSupported2()) {
|
|
44668
|
+
return [
|
|
44669
|
+
2,
|
|
44670
|
+
false
|
|
44671
|
+
];
|
|
44672
|
+
}
|
|
44673
|
+
return [
|
|
44674
|
+
2,
|
|
44675
|
+
new Promise(function(resolve, reject) {
|
|
44676
|
+
var unregister = INTERNAL__appBridgeHandler2.invokeAppBridgeMethod("getCachedStatusAppsInTossAdmob", _object_spread({}, params), {
|
|
44677
|
+
onSuccess: function(cached) {
|
|
44678
|
+
resolve(cached);
|
|
44679
|
+
unregister();
|
|
44680
|
+
},
|
|
44681
|
+
onError: reject
|
|
44682
|
+
});
|
|
44683
|
+
})
|
|
44684
|
+
];
|
|
44685
|
+
});
|
|
44686
|
+
});
|
|
44687
|
+
return _isAppsInTossAdMobLoaded2.apply(this, arguments);
|
|
44688
|
+
}
|
|
44689
|
+
function isAppsInTossAdMobLoadedSupported2() {
|
|
44690
|
+
return ENVIRONMENT2 !== "toss" ? false : isMinVersionSupported2({
|
|
44691
|
+
android: "5.244.0",
|
|
44692
|
+
ios: "5.244.0"
|
|
44693
|
+
});
|
|
44694
|
+
}
|
|
44625
44695
|
var ANDROID_GOOGLE_AD_MOB_SUPPORTED_VERSION2, IOS_GOOGLE_AD_MOB_SUPPORTED_VERSION2, UNSUPPORTED_ERROR_MESSAGE2, ENVIRONMENT2;
|
|
44626
44696
|
var init_googleAdMobV2 = __esm({
|
|
44627
44697
|
"../../../.yarn/__virtual__/@apps-in-toss-native-modules-virtual-e56741e8de/1/packages/apps-in-toss/native-modules/src/AppsInTossModule/native-modules/ads/googleAdMobV2.ts"() {
|
|
44628
44698
|
"use strict";
|
|
44699
|
+
init_async_to_generator();
|
|
44629
44700
|
init_object_spread();
|
|
44630
44701
|
init_object_spread_props();
|
|
44702
|
+
init_ts_generator();
|
|
44631
44703
|
init_dist5();
|
|
44632
44704
|
init_getReferrer();
|
|
44633
44705
|
init_appBridge();
|
|
@@ -44639,6 +44711,7 @@ var global=typeof globalThis!=='undefined'?globalThis:typeof global!=='undefined
|
|
|
44639
44711
|
ENVIRONMENT2 = getOperationalEnvironment2();
|
|
44640
44712
|
loadAppsInTossAdMob2.isSupported = createIsSupported2();
|
|
44641
44713
|
showAppsInTossAdMob2.isSupported = createIsSupported2();
|
|
44714
|
+
isAppsInTossAdMobLoaded2.isSupported = isAppsInTossAdMobLoadedSupported2;
|
|
44642
44715
|
}
|
|
44643
44716
|
});
|
|
44644
44717
|
|
|
@@ -46504,7 +46577,7 @@ var global=typeof globalThis!=='undefined'?globalThis:typeof global!=='undefined
|
|
|
46504
46577
|
canGoForward
|
|
46505
46578
|
};
|
|
46506
46579
|
}
|
|
46507
|
-
function useWebBackHandler(webViewRef) {
|
|
46580
|
+
function useWebBackHandler(webViewInitialURL, webViewRef) {
|
|
46508
46581
|
var captureExitLog = useCaptureExitLog().captureExitLog;
|
|
46509
46582
|
var _useWebViewHistory = useWebViewHistory(), hasHistory = _useWebViewHistory.hasHistory, onNavigationStateChange = _useWebViewHistory.onNavigationStateChange;
|
|
46510
46583
|
var _useBackEventState = useBackEventState(), webBackHandlersRef = _useBackEventState.handlersRef, hasWebBackEvent = _useBackEventState.hasBackEvent, addWebBackEventListener = _useBackEventState.addEventListener, removeWebBackEventListener = _useBackEventState.removeEventListener;
|
|
@@ -46555,7 +46628,7 @@ var global=typeof globalThis!=='undefined'?globalThis:typeof global!=='undefined
|
|
|
46555
46628
|
3,
|
|
46556
46629
|
1
|
|
46557
46630
|
];
|
|
46558
|
-
(_webViewRef_current = webViewRef.current) === null || _webViewRef_current === void 0 ? void 0 : _webViewRef_current.injectJavaScript(
|
|
46631
|
+
(_webViewRef_current = webViewRef.current) === null || _webViewRef_current === void 0 ? void 0 : _webViewRef_current.injectJavaScript("window.history.back();");
|
|
46559
46632
|
return [
|
|
46560
46633
|
3,
|
|
46561
46634
|
3
|
|
@@ -46621,11 +46694,12 @@ var global=typeof globalThis!=='undefined'?globalThis:typeof global!=='undefined
|
|
|
46621
46694
|
}
|
|
46622
46695
|
return;
|
|
46623
46696
|
}
|
|
46624
|
-
(_webViewRef_current = webViewRef.current) === null || _webViewRef_current === void 0 ? void 0 : _webViewRef_current.injectJavaScript(
|
|
46697
|
+
(_webViewRef_current = webViewRef.current) === null || _webViewRef_current === void 0 ? void 0 : _webViewRef_current.injectJavaScript("\n (function() {\n const webBundleOrigin = '".concat(webViewInitialURL.origin, "';\n window.location.href = window.location.origin === webBundleOrigin ? '/' : webBundleOrigin;\n })();\n "));
|
|
46625
46698
|
}, [
|
|
46626
46699
|
hasWebBackEvent,
|
|
46627
46700
|
webBackHandlersRef,
|
|
46628
46701
|
logging,
|
|
46702
|
+
webViewInitialURL,
|
|
46629
46703
|
webViewRef
|
|
46630
46704
|
]);
|
|
46631
46705
|
return (0, import_react234.useMemo)(function() {
|
|
@@ -46891,10 +46965,10 @@ var global=typeof globalThis!=='undefined'?globalThis:typeof global!=='undefined
|
|
|
46891
46965
|
}
|
|
46892
46966
|
return baseUrl;
|
|
46893
46967
|
}
|
|
46894
|
-
function
|
|
46968
|
+
function getWebViewURL(local) {
|
|
46895
46969
|
if (false) {
|
|
46896
46970
|
var devUrl = "http://".concat(local.host, ":").concat(local.port);
|
|
46897
|
-
return mergeSchemeQueryParamsInto(devUrl)
|
|
46971
|
+
return mergeSchemeQueryParamsInto(devUrl);
|
|
46898
46972
|
}
|
|
46899
46973
|
var _AppsInTossModule_getWebBundleURL = AppsInTossModule.getWebBundleURL({}), rawUrl = _AppsInTossModule_getWebBundleURL.url;
|
|
46900
46974
|
var url = mergeSchemeQueryParamsInto(rawUrl);
|
|
@@ -46902,7 +46976,7 @@ var global=typeof globalThis!=='undefined'?globalThis:typeof global!=='undefined
|
|
|
46902
46976
|
if (deploymentId2) {
|
|
46903
46977
|
url.searchParams.set("_deploymentId", deploymentId2);
|
|
46904
46978
|
}
|
|
46905
|
-
return url
|
|
46979
|
+
return url;
|
|
46906
46980
|
}
|
|
46907
46981
|
function WebView(_param) {
|
|
46908
46982
|
var type = _param.type, local = _param.local, onMessage = _param.onMessage, props = _object_without_properties(_param, [
|
|
@@ -46914,12 +46988,12 @@ var global=typeof globalThis!=='undefined'?globalThis:typeof global!=='undefined
|
|
|
46914
46988
|
throw new Error("Invalid WebView type: '".concat(type, "'"));
|
|
46915
46989
|
}
|
|
46916
46990
|
var webViewRef = (0, import_react227.useRef)(null);
|
|
46917
|
-
var
|
|
46918
|
-
|
|
46919
|
-
return getWebViewUri(local);
|
|
46991
|
+
var url = (0, import_react227.useMemo)(function() {
|
|
46992
|
+
return getWebViewURL(local);
|
|
46920
46993
|
}, [
|
|
46921
46994
|
local
|
|
46922
46995
|
]);
|
|
46996
|
+
var webBackHandler = useWebBackHandler(url, webViewRef);
|
|
46923
46997
|
var top = useSafeAreaTop();
|
|
46924
46998
|
var bottom = useSafeAreaBottom();
|
|
46925
46999
|
var insets = (0, react_native_safe_area_context_exports.useSafeAreaInsets)();
|
|
@@ -47001,6 +47075,7 @@ var global=typeof globalThis!=='undefined'?globalThis:typeof global!=='undefined
|
|
|
47001
47075
|
/** AdMobV2 */
|
|
47002
47076
|
loadAppsInTossAdMob_isSupported: GoogleAdMob.loadAppsInTossAdMob.isSupported,
|
|
47003
47077
|
showAppsInTossAdMob_isSupported: GoogleAdMob.showAppsInTossAdMob.isSupported,
|
|
47078
|
+
isAppsInTossAdMobLoaded_isSupported: GoogleAdMob.isAppsInTossAdMobLoaded.isSupported,
|
|
47004
47079
|
/** IntegratedAd */
|
|
47005
47080
|
loadFullScreenAd_isSupported: loadFullScreenAdForWeb.isSupported,
|
|
47006
47081
|
showFullScreenAd_isSupported: showFullScreenAd.isSupported,
|
|
@@ -47057,6 +47132,8 @@ var global=typeof globalThis!=='undefined'?globalThis:typeof global!=='undefined
|
|
|
47057
47132
|
getPendingOrders: IAP.getPendingOrders,
|
|
47058
47133
|
getCompletedOrRefundedOrders: IAP.getCompletedOrRefundedOrders,
|
|
47059
47134
|
completeProductGrant: IAP.completeProductGrant,
|
|
47135
|
+
/** AdMobV2 */
|
|
47136
|
+
isAppsInTossAdMobLoaded: GoogleAdMob.isAppsInTossAdMobLoaded,
|
|
47060
47137
|
/** Toss Ads */
|
|
47061
47138
|
tossAdEventLog,
|
|
47062
47139
|
/** Private */
|
|
@@ -47106,7 +47183,7 @@ var global=typeof globalThis!=='undefined'?globalThis:typeof global!=='undefined
|
|
|
47106
47183
|
ref: refs
|
|
47107
47184
|
}, props, headerPropForExternalWebView), {
|
|
47108
47185
|
source: {
|
|
47109
|
-
uri,
|
|
47186
|
+
uri: url.href,
|
|
47110
47187
|
// NOTE: https://github.com/react-native-webview/react-native-webview/pull/3133
|
|
47111
47188
|
headers: {
|
|
47112
47189
|
"User-Agent": userAgent
|
|
@@ -47133,15 +47210,15 @@ var global=typeof globalThis!=='undefined'?globalThis:typeof global!=='undefined
|
|
|
47133
47210
|
allowsBackForwardNavigationGestures,
|
|
47134
47211
|
onShouldStartLoadWithRequest: function(event) {
|
|
47135
47212
|
try {
|
|
47136
|
-
var
|
|
47213
|
+
var url2 = new URL(event.url);
|
|
47137
47214
|
if ([
|
|
47138
47215
|
"https:",
|
|
47139
47216
|
"http:"
|
|
47140
|
-
].includes(
|
|
47217
|
+
].includes(url2.protocol) || url2.href === "about:blank") {
|
|
47141
47218
|
return true;
|
|
47142
47219
|
} else {
|
|
47143
47220
|
var _convertIntentURL;
|
|
47144
|
-
import_react_native221.Linking.openURL((_convertIntentURL = convertIntentURL(
|
|
47221
|
+
import_react_native221.Linking.openURL((_convertIntentURL = convertIntentURL(url2)) !== null && _convertIntentURL !== void 0 ? _convertIntentURL : url2.href);
|
|
47145
47222
|
return false;
|
|
47146
47223
|
}
|
|
47147
47224
|
} catch (error) {
|
|
@@ -47179,7 +47256,7 @@ var global=typeof globalThis!=='undefined'?globalThis:typeof global!=='undefined
|
|
|
47179
47256
|
return typeof script === "string";
|
|
47180
47257
|
}).join("\n");
|
|
47181
47258
|
}
|
|
47182
|
-
var import_react_native197, import_react210, import_react211, import_react212, import_react213, import_jsx_runtime218, import_react214, import_jsx_runtime219, import_react215, import_react_native203, import_react216, import_react_native205, import_react217, import_react_native207, import_react218, import_react219, import_react220, import_react221, import_jsx_runtime220, import_jsx_runtime221, import_react222, import_react_native210, import_react223, import_react224, import_react225, import_react_native215, import_react_native216, import_jsx_runtime222, import_jsx_runtime223, import_jsx_runtime224, import_jsx_runtime225, import_react226, import_jsx_runtime226, import_jsx_runtime227, import_react_native219, import_jsx_runtime228, import_jsx_runtime229, import_jsx_runtime230, import_react227, import_react_native221, import_react228, import_react_native222, import_react229, import_react_native224, import_jsx_runtime231, import_jsx_runtime232, import_react230, import_react231, import_jsx_runtime233, import_jsx_runtime234, import_react232, import_react233, import_react234, import_react235, import_react_native230, import_react236, import_react237, import_jsx_runtime235, __defProp2, __getOwnPropDesc2, __getOwnPropNames2, __hasOwnProp2, __copyProps2, __reExport2, env, EXIT_IMPRESSION_LOG_NAME, EXIT_IMPRESSION_SCHEMA_ID, ENTRY_APP_EVENT_SCHEMA_ID, AppEvent, UPDATE_SCHEME, NavigationBarContext, GAME_PROFILE_WEBVIEW_URL, GAME_MIN_VERSION, PLAYSTORE_LINK, APPSTORE_LINK, getMarketLink, UPDATE_DIALOG_SCHEMA_ID, UPDATE_DIALOG_LOG_NAME, UPDATE_DIALOG_CTA_CLICK_SCHEMA_ID, UPDATE_DIALOG_CTA_CLICK_LOG_NAME, DEFAULT_ERROR, useErrorAlert, INTERNAL__onVisibilityChangedByTransparentServiceWeb, openTransparentWebView, useTransparentWebview, useGameProfileToast, useGameCenterProfile, Z_INDEX, GameInitializer, overlayStyle, NAVI_BAR_IMPRESSION_SCHEMA_ID, NAVI_BAR_IMPRESSION_LOG_NAME, CLOSE_POPUP_SHOW_SCHEMA_ID, CLOSE_POPUP_SHOW_LOG_NAME, CLOSE_BUTTON_CLICK_SCHEMA_ID, CLOSE_BUTTON_CLICK_LOG_NAME, CLOSE_POPUP_CTA_CLICK_SCHEMA_ID, CLOSE_POPUP_CTA_CLICK_LOG_NAME, HOME_BUTTON_CLICK_SCHEMA_ID, HOME_BUTTON_CLICK_LOG_NAME, BOTTOM_SHEET_SCHEMA_ID, BOTTOM_SHEET_LOG_NAME, BOTTOM_SHEET_OPEN_SCHEMA_ID, BOTTOM_SHEET_OPEN_LOG_NAME, BOTTOM_SHEET_CLOSE_CLICK_SCHEMA_ID, BOTTOM_SHEET_CLOSE_CLICK_LOG_NAME, BOTTOM_SHEET_MENU_CLICK_SCHEMA_ID, BOTTOM_SHEET_MENU_CLICK_LOG_NAME, iconNameRegExp, iconURLRegExp, SHARE_SCHEME_REFERRER, APP_SHARE_MENU_INFO, APP_BRIDGE_METHOD_NAME, MIN_VERSION, RNNavigationBar, bridge_entry_exports, AppsInToss, GameWebView, PartnerWebView, sessionId, ANDROID_FETCH_TOSS_AD_SUPPORTED_VERSION, IOS_FETCH_TOSS_AD_SUPPORTED_VERSION, UNSUPPORTED_ERROR_MESSAGE3, ENVIRONMENT3, OPERATIONAL_ENVIRONMENT, OS, APP_VER, ALPHA_EVENT_TRACKER_HTTP_ENDPOINT, LIVE_EVENT_TRACKER_HTTP_ENDPOINT, INTEGRATED_AD_SDK_VERSION, ANDROID_INTEGRATED_AD_SUPPORTED_VERSION, IOS_INTEGRATED_AD_SUPPORTED_VERSION, UNSUPPORTED_ERROR_MESSAGE22, INTG_AD_ADM_FALLBACK_RID_MAP, loadFullScreenAd, loadFullScreenAdForWeb, globalEventListenerMap, EventEmitter, INITIAL_STATE,
|
|
47259
|
+
var import_react_native197, import_react210, import_react211, import_react212, import_react213, import_jsx_runtime218, import_react214, import_jsx_runtime219, import_react215, import_react_native203, import_react216, import_react_native205, import_react217, import_react_native207, import_react218, import_react219, import_react220, import_react221, import_jsx_runtime220, import_jsx_runtime221, import_react222, import_react_native210, import_react223, import_react224, import_react225, import_react_native215, import_react_native216, import_jsx_runtime222, import_jsx_runtime223, import_jsx_runtime224, import_jsx_runtime225, import_react226, import_jsx_runtime226, import_jsx_runtime227, import_react_native219, import_jsx_runtime228, import_jsx_runtime229, import_jsx_runtime230, import_react227, import_react_native221, import_react228, import_react_native222, import_react229, import_react_native224, import_jsx_runtime231, import_jsx_runtime232, import_react230, import_react231, import_jsx_runtime233, import_jsx_runtime234, import_react232, import_react233, import_react234, import_react235, import_react_native230, import_react236, import_react237, import_jsx_runtime235, __defProp2, __getOwnPropDesc2, __getOwnPropNames2, __hasOwnProp2, __copyProps2, __reExport2, env, EXIT_IMPRESSION_LOG_NAME, EXIT_IMPRESSION_SCHEMA_ID, ENTRY_APP_EVENT_SCHEMA_ID, AppEvent, UPDATE_SCHEME, NavigationBarContext, GAME_PROFILE_WEBVIEW_URL, GAME_MIN_VERSION, PLAYSTORE_LINK, APPSTORE_LINK, getMarketLink, UPDATE_DIALOG_SCHEMA_ID, UPDATE_DIALOG_LOG_NAME, UPDATE_DIALOG_CTA_CLICK_SCHEMA_ID, UPDATE_DIALOG_CTA_CLICK_LOG_NAME, DEFAULT_ERROR, useErrorAlert, INTERNAL__onVisibilityChangedByTransparentServiceWeb, openTransparentWebView, useTransparentWebview, useGameProfileToast, useGameCenterProfile, Z_INDEX, GameInitializer, overlayStyle, NAVI_BAR_IMPRESSION_SCHEMA_ID, NAVI_BAR_IMPRESSION_LOG_NAME, CLOSE_POPUP_SHOW_SCHEMA_ID, CLOSE_POPUP_SHOW_LOG_NAME, CLOSE_BUTTON_CLICK_SCHEMA_ID, CLOSE_BUTTON_CLICK_LOG_NAME, CLOSE_POPUP_CTA_CLICK_SCHEMA_ID, CLOSE_POPUP_CTA_CLICK_LOG_NAME, HOME_BUTTON_CLICK_SCHEMA_ID, HOME_BUTTON_CLICK_LOG_NAME, BOTTOM_SHEET_SCHEMA_ID, BOTTOM_SHEET_LOG_NAME, BOTTOM_SHEET_OPEN_SCHEMA_ID, BOTTOM_SHEET_OPEN_LOG_NAME, BOTTOM_SHEET_CLOSE_CLICK_SCHEMA_ID, BOTTOM_SHEET_CLOSE_CLICK_LOG_NAME, BOTTOM_SHEET_MENU_CLICK_SCHEMA_ID, BOTTOM_SHEET_MENU_CLICK_LOG_NAME, iconNameRegExp, iconURLRegExp, SHARE_SCHEME_REFERRER, APP_SHARE_MENU_INFO, APP_BRIDGE_METHOD_NAME, MIN_VERSION, RNNavigationBar, bridge_entry_exports, AppsInToss, GameWebView, PartnerWebView, sessionId, ANDROID_FETCH_TOSS_AD_SUPPORTED_VERSION, IOS_FETCH_TOSS_AD_SUPPORTED_VERSION, UNSUPPORTED_ERROR_MESSAGE3, ENVIRONMENT3, OPERATIONAL_ENVIRONMENT, OS, APP_VER, ALPHA_EVENT_TRACKER_HTTP_ENDPOINT, LIVE_EVENT_TRACKER_HTTP_ENDPOINT, INTEGRATED_AD_SDK_VERSION, ANDROID_INTEGRATED_AD_SUPPORTED_VERSION, IOS_INTEGRATED_AD_SUPPORTED_VERSION, UNSUPPORTED_ERROR_MESSAGE22, INTG_AD_ADM_FALLBACK_RID_MAP, loadFullScreenAd, loadFullScreenAdForWeb, globalEventListenerMap, EventEmitter, INITIAL_STATE, FontA11yCategory, androidFontScaleMap, iosScaleToAndroidScale, extractDateFromUUIDv7, getGroupId, getReferrer22, trackScreen, operationalEnvironment, TYPES, WEBVIEW_TYPES, Analytics2;
|
|
47183
47260
|
var init_dist8 = __esm({
|
|
47184
47261
|
"../../../.yarn/__virtual__/@apps-in-toss-framework-virtual-afbad361af/1/packages/apps-in-toss/framework/dist/index.js"() {
|
|
47185
47262
|
"use strict";
|
|
@@ -47955,8 +48032,8 @@ var global=typeof globalThis!=='undefined'?globalThis:typeof global!=='undefined
|
|
|
47955
48032
|
ALPHA_EVENT_TRACKER_HTTP_ENDPOINT = "https://alpha-trillion.toss.im/trk/sdk-mediation/event";
|
|
47956
48033
|
LIVE_EVENT_TRACKER_HTTP_ENDPOINT = "https://trillion.toss.im/trk/sdk-mediation/event";
|
|
47957
48034
|
INTEGRATED_AD_SDK_VERSION = "0.0.0";
|
|
47958
|
-
ANDROID_INTEGRATED_AD_SUPPORTED_VERSION = "5.
|
|
47959
|
-
IOS_INTEGRATED_AD_SUPPORTED_VERSION = "5.
|
|
48035
|
+
ANDROID_INTEGRATED_AD_SUPPORTED_VERSION = "5.244.1";
|
|
48036
|
+
IOS_INTEGRATED_AD_SUPPORTED_VERSION = "5.244.1";
|
|
47960
48037
|
UNSUPPORTED_ERROR_MESSAGE22 = "This feature is not supported in the current environment";
|
|
47961
48038
|
INTG_AD_ADM_FALLBACK_RID_MAP = {};
|
|
47962
48039
|
loadFullScreenAd = generateLoadFullScreenAd("107");
|
|
@@ -48011,8 +48088,6 @@ var global=typeof globalThis!=='undefined'?globalThis:typeof global!=='undefined
|
|
|
48011
48088
|
stack: [],
|
|
48012
48089
|
index: -1
|
|
48013
48090
|
};
|
|
48014
|
-
HISTORY_BACK_SCRIPT = "\n(function() {\n window.history.back();\n true;\n})();\n";
|
|
48015
|
-
HISTORY_HOME_SCRIPT = "\n (function() {\n window.location.href = '/';\n true;\n })();\n";
|
|
48016
48091
|
FontA11yCategory = {
|
|
48017
48092
|
Large: "Large",
|
|
48018
48093
|
xLarge: "xLarge",
|
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.8.1",
|
|
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.8.1",
|
|
90
|
+
"@apps-in-toss/cli": "1.8.1",
|
|
91
|
+
"@apps-in-toss/framework": "1.8.1",
|
|
92
|
+
"@apps-in-toss/plugins": "1.8.1",
|
|
93
|
+
"@apps-in-toss/web-analytics": "1.8.1",
|
|
94
|
+
"@apps-in-toss/web-bridge": "1.8.1",
|
|
95
95
|
"@babel/core": "7.23.9",
|
|
96
96
|
"@granite-js/cli": "0.1.31",
|
|
97
97
|
"@granite-js/mpack": "0.1.31",
|