@apps-in-toss/framework 1.7.1 → 1.8.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 +14 -0
- package/dist/index.cjs +5 -2
- package/dist/index.js +5 -2
- package/package.json +6 -6
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# @apps-in-toss/framework
|
|
2
2
|
|
|
3
|
+
## 1.8.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
[[AIT-3762]: GoogleAdMob 로딩 여부 확인하는 브릿지 추가](https://github.toss.bz/toss/apps-in-toss-sdk/pull/18)
|
|
8
|
+
|
|
9
|
+
구글 광고가 로딩되었는지 확인하는 isAdMobLoaded를 추가합니다.
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
[[AP-2118] 토스애즈 integrated ad 최소 앱버전 5.244.1로 변경 - changeset 생성](https://github.toss.bz/toss/apps-in-toss-sdk/pull/21)
|
|
14
|
+
|
|
15
|
+
토스애즈 integrated ad 최소 앱버전을 5.244.1로 변경
|
|
16
|
+
|
|
3
17
|
## 1.7.1
|
|
4
18
|
|
|
5
19
|
### Patch Changes
|
package/dist/index.cjs
CHANGED
|
@@ -1700,8 +1700,8 @@ function postEventTracking(params) {
|
|
|
1700
1700
|
|
|
1701
1701
|
// src/ads/integratedAd.ts
|
|
1702
1702
|
var INTEGRATED_AD_SDK_VERSION = "0.0.0";
|
|
1703
|
-
var ANDROID_INTEGRATED_AD_SUPPORTED_VERSION = "5.
|
|
1704
|
-
var IOS_INTEGRATED_AD_SUPPORTED_VERSION = "5.
|
|
1703
|
+
var ANDROID_INTEGRATED_AD_SUPPORTED_VERSION = "5.244.1";
|
|
1704
|
+
var IOS_INTEGRATED_AD_SUPPORTED_VERSION = "5.244.1";
|
|
1705
1705
|
var UNSUPPORTED_ERROR_MESSAGE2 = "This feature is not supported in the current environment";
|
|
1706
1706
|
var INTG_AD_ADM_FALLBACK_RID_MAP = {};
|
|
1707
1707
|
function integratedAdIsSupported() {
|
|
@@ -2649,6 +2649,7 @@ function WebView({ type, local, onMessage, ...props }) {
|
|
|
2649
2649
|
/** AdMobV2 */
|
|
2650
2650
|
loadAppsInTossAdMob_isSupported: import_native_modules23.GoogleAdMob.loadAppsInTossAdMob.isSupported,
|
|
2651
2651
|
showAppsInTossAdMob_isSupported: import_native_modules23.GoogleAdMob.showAppsInTossAdMob.isSupported,
|
|
2652
|
+
isAppsInTossAdMobLoaded_isSupported: import_native_modules23.GoogleAdMob.isAppsInTossAdMobLoaded.isSupported,
|
|
2652
2653
|
/** IntegratedAd */
|
|
2653
2654
|
loadFullScreenAd_isSupported: loadFullScreenAdForWeb.isSupported,
|
|
2654
2655
|
showFullScreenAd_isSupported: showFullScreenAd.isSupported,
|
|
@@ -2687,6 +2688,8 @@ function WebView({ type, local, onMessage, ...props }) {
|
|
|
2687
2688
|
getPendingOrders: import_native_modules23.IAP.getPendingOrders,
|
|
2688
2689
|
getCompletedOrRefundedOrders: import_native_modules23.IAP.getCompletedOrRefundedOrders,
|
|
2689
2690
|
completeProductGrant: import_native_modules23.IAP.completeProductGrant,
|
|
2691
|
+
/** AdMobV2 */
|
|
2692
|
+
isAppsInTossAdMobLoaded: import_native_modules23.GoogleAdMob.isAppsInTossAdMobLoaded,
|
|
2690
2693
|
/** Toss Ads */
|
|
2691
2694
|
tossAdEventLog,
|
|
2692
2695
|
/** Private */
|
package/dist/index.js
CHANGED
|
@@ -1687,8 +1687,8 @@ function postEventTracking(params) {
|
|
|
1687
1687
|
|
|
1688
1688
|
// src/ads/integratedAd.ts
|
|
1689
1689
|
var INTEGRATED_AD_SDK_VERSION = "0.0.0";
|
|
1690
|
-
var ANDROID_INTEGRATED_AD_SUPPORTED_VERSION = "5.
|
|
1691
|
-
var IOS_INTEGRATED_AD_SUPPORTED_VERSION = "5.
|
|
1690
|
+
var ANDROID_INTEGRATED_AD_SUPPORTED_VERSION = "5.244.1";
|
|
1691
|
+
var IOS_INTEGRATED_AD_SUPPORTED_VERSION = "5.244.1";
|
|
1692
1692
|
var UNSUPPORTED_ERROR_MESSAGE2 = "This feature is not supported in the current environment";
|
|
1693
1693
|
var INTG_AD_ADM_FALLBACK_RID_MAP = {};
|
|
1694
1694
|
function integratedAdIsSupported() {
|
|
@@ -2636,6 +2636,7 @@ function WebView({ type, local, onMessage, ...props }) {
|
|
|
2636
2636
|
/** AdMobV2 */
|
|
2637
2637
|
loadAppsInTossAdMob_isSupported: GoogleAdMob2.loadAppsInTossAdMob.isSupported,
|
|
2638
2638
|
showAppsInTossAdMob_isSupported: GoogleAdMob2.showAppsInTossAdMob.isSupported,
|
|
2639
|
+
isAppsInTossAdMobLoaded_isSupported: GoogleAdMob2.isAppsInTossAdMobLoaded.isSupported,
|
|
2639
2640
|
/** IntegratedAd */
|
|
2640
2641
|
loadFullScreenAd_isSupported: loadFullScreenAdForWeb.isSupported,
|
|
2641
2642
|
showFullScreenAd_isSupported: showFullScreenAd.isSupported,
|
|
@@ -2674,6 +2675,8 @@ function WebView({ type, local, onMessage, ...props }) {
|
|
|
2674
2675
|
getPendingOrders: IAP.getPendingOrders,
|
|
2675
2676
|
getCompletedOrRefundedOrders: IAP.getCompletedOrRefundedOrders,
|
|
2676
2677
|
completeProductGrant: IAP.completeProductGrant,
|
|
2678
|
+
/** AdMobV2 */
|
|
2679
|
+
isAppsInTossAdMobLoaded: GoogleAdMob2.isAppsInTossAdMobLoaded,
|
|
2677
2680
|
/** Toss Ads */
|
|
2678
2681
|
tossAdEventLog,
|
|
2679
2682
|
/** Private */
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@apps-in-toss/framework",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "1.
|
|
4
|
+
"version": "1.8.0",
|
|
5
5
|
"description": "The framework for Apps In Toss",
|
|
6
6
|
"scripts": {
|
|
7
7
|
"typecheck": "tsc --noEmit",
|
|
@@ -55,11 +55,11 @@
|
|
|
55
55
|
"ait": "./bin/ait.js"
|
|
56
56
|
},
|
|
57
57
|
"dependencies": {
|
|
58
|
-
"@apps-in-toss/analytics": "1.
|
|
59
|
-
"@apps-in-toss/cli": "1.
|
|
60
|
-
"@apps-in-toss/native-modules": "1.
|
|
61
|
-
"@apps-in-toss/plugins": "1.
|
|
62
|
-
"@apps-in-toss/types": "1.
|
|
58
|
+
"@apps-in-toss/analytics": "1.8.0",
|
|
59
|
+
"@apps-in-toss/cli": "1.8.0",
|
|
60
|
+
"@apps-in-toss/native-modules": "1.8.0",
|
|
61
|
+
"@apps-in-toss/plugins": "1.8.0",
|
|
62
|
+
"@apps-in-toss/types": "1.8.0",
|
|
63
63
|
"es-hangul": "^2.3.2"
|
|
64
64
|
},
|
|
65
65
|
"devDependencies": {
|