@apps-in-toss/framework 1.8.1 → 1.9.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 CHANGED
@@ -1,5 +1,21 @@
1
1
  # @apps-in-toss/framework
2
2
 
3
+ ## 1.9.1
4
+
5
+ ### Patch Changes
6
+
7
+ [[AIT-3945] getServerTime web-bridge 배포](https://github.toss.bz/toss/apps-in-toss-sdk/pull/31)
8
+
9
+ getServerTime 브릿지에 isSupported 를 추가합니다
10
+
11
+ ## 1.9.0
12
+
13
+ ### Minor Changes
14
+
15
+ [[AIT-3902] getServerTime 앱브릿지 추가](https://github.toss.bz/toss/apps-in-toss-sdk/pull/24)
16
+
17
+ 서버 시간을 가져오는 getServerTime 브릿지를 추가합니다.
18
+
3
19
  ## 1.8.1
4
20
 
5
21
  ### Patch Changes
package/dist/index.cjs CHANGED
@@ -2639,6 +2639,7 @@ function WebView({ type, local, onMessage, ...props }) {
2639
2639
  right: insets.right
2640
2640
  }),
2641
2641
  ...Object.fromEntries(Object.entries(global2).map(([key, value]) => [key, () => value])),
2642
+ getServerTime_isSupported: import_native_modules23.getServerTime.isSupported,
2642
2643
  /** AdMobV2 */
2643
2644
  loadAppsInTossAdMob_isSupported: import_native_modules23.GoogleAdMob.loadAppsInTossAdMob.isSupported,
2644
2645
  showAppsInTossAdMob_isSupported: import_native_modules23.GoogleAdMob.showAppsInTossAdMob.isSupported,
@@ -2653,6 +2654,7 @@ function WebView({ type, local, onMessage, ...props }) {
2653
2654
  },
2654
2655
  asyncHandlerMap: {
2655
2656
  ...appsInTossAsyncBridges,
2657
+ getServerTime: import_native_modules23.getServerTime,
2656
2658
  setIosSwipeGestureEnabled: (options) => {
2657
2659
  setAllowsBackForwardNavigationGestures(options.isEnabled);
2658
2660
  return appsInTossAsyncBridges.setIosSwipeGestureEnabled(options);
package/dist/index.js CHANGED
@@ -1378,6 +1378,7 @@ import {
1378
1378
  IAP,
1379
1379
  Storage,
1380
1380
  appsInTossEvent,
1381
+ getServerTime,
1381
1382
  iapCreateOneTimePurchaseOrder,
1382
1383
  processProductGrant,
1383
1384
  requestOneTimePurchase
@@ -2626,6 +2627,7 @@ function WebView({ type, local, onMessage, ...props }) {
2626
2627
  right: insets.right
2627
2628
  }),
2628
2629
  ...Object.fromEntries(Object.entries(global2).map(([key, value]) => [key, () => value])),
2630
+ getServerTime_isSupported: getServerTime.isSupported,
2629
2631
  /** AdMobV2 */
2630
2632
  loadAppsInTossAdMob_isSupported: GoogleAdMob2.loadAppsInTossAdMob.isSupported,
2631
2633
  showAppsInTossAdMob_isSupported: GoogleAdMob2.showAppsInTossAdMob.isSupported,
@@ -2640,6 +2642,7 @@ function WebView({ type, local, onMessage, ...props }) {
2640
2642
  },
2641
2643
  asyncHandlerMap: {
2642
2644
  ...appsInTossAsyncBridges,
2645
+ getServerTime,
2643
2646
  setIosSwipeGestureEnabled: (options) => {
2644
2647
  setAllowsBackForwardNavigationGestures(options.isEnabled);
2645
2648
  return appsInTossAsyncBridges.setIosSwipeGestureEnabled(options);
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@apps-in-toss/framework",
3
3
  "type": "module",
4
- "version": "1.8.1",
4
+ "version": "1.9.1",
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.8.1",
59
- "@apps-in-toss/cli": "1.8.1",
60
- "@apps-in-toss/native-modules": "1.8.1",
61
- "@apps-in-toss/plugins": "1.8.1",
62
- "@apps-in-toss/types": "1.8.1",
58
+ "@apps-in-toss/analytics": "1.9.1",
59
+ "@apps-in-toss/cli": "1.9.1",
60
+ "@apps-in-toss/native-modules": "1.9.1",
61
+ "@apps-in-toss/plugins": "1.9.1",
62
+ "@apps-in-toss/types": "1.9.1",
63
63
  "es-hangul": "^2.3.2"
64
64
  },
65
65
  "devDependencies": {