@apps-in-toss/web-bridge 1.6.0 → 1.6.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 +3 -0
- package/built/index.cjs +12 -6
- package/built/index.js +12 -6
- package/package.json +6 -11
package/CHANGELOG.md
ADDED
package/built/index.cjs
CHANGED
|
@@ -1065,12 +1065,18 @@ startUpdateLocation.openPermissionDialog = () => openPermissionDialog2({ name: "
|
|
|
1065
1065
|
|
|
1066
1066
|
// src/integratedAd.ts
|
|
1067
1067
|
var import_bridge_core21 = require("@apps-in-toss/bridge-core");
|
|
1068
|
-
var loadFullScreenAd = Object.assign(
|
|
1069
|
-
|
|
1070
|
-
|
|
1071
|
-
|
|
1072
|
-
|
|
1073
|
-
|
|
1068
|
+
var loadFullScreenAd = Object.assign(
|
|
1069
|
+
(0, import_bridge_core21.createEventBridge)("loadFullScreenAd"),
|
|
1070
|
+
{
|
|
1071
|
+
isSupported: (0, import_bridge_core21.createConstantBridge)("loadFullScreenAd_isSupported")
|
|
1072
|
+
}
|
|
1073
|
+
);
|
|
1074
|
+
var showFullScreenAd = Object.assign(
|
|
1075
|
+
(0, import_bridge_core21.createEventBridge)("showFullScreenAd"),
|
|
1076
|
+
{
|
|
1077
|
+
isSupported: (0, import_bridge_core21.createConstantBridge)("showFullScreenAd_isSupported")
|
|
1078
|
+
}
|
|
1079
|
+
);
|
|
1074
1080
|
|
|
1075
1081
|
// src/toss-ad/index.ts
|
|
1076
1082
|
var import_bridge_core23 = require("@apps-in-toss/bridge-core");
|
package/built/index.js
CHANGED
|
@@ -1024,12 +1024,18 @@ startUpdateLocation.openPermissionDialog = () => openPermissionDialog2({ name: "
|
|
|
1024
1024
|
|
|
1025
1025
|
// src/integratedAd.ts
|
|
1026
1026
|
import { createConstantBridge as createConstantBridge6, createEventBridge as createEventBridge8 } from "@apps-in-toss/bridge-core";
|
|
1027
|
-
var loadFullScreenAd = Object.assign(
|
|
1028
|
-
|
|
1029
|
-
|
|
1030
|
-
|
|
1031
|
-
|
|
1032
|
-
|
|
1027
|
+
var loadFullScreenAd = Object.assign(
|
|
1028
|
+
createEventBridge8("loadFullScreenAd"),
|
|
1029
|
+
{
|
|
1030
|
+
isSupported: createConstantBridge6("loadFullScreenAd_isSupported")
|
|
1031
|
+
}
|
|
1032
|
+
);
|
|
1033
|
+
var showFullScreenAd = Object.assign(
|
|
1034
|
+
createEventBridge8("showFullScreenAd"),
|
|
1035
|
+
{
|
|
1036
|
+
isSupported: createConstantBridge6("showFullScreenAd_isSupported")
|
|
1037
|
+
}
|
|
1038
|
+
);
|
|
1033
1039
|
|
|
1034
1040
|
// src/toss-ad/index.ts
|
|
1035
1041
|
import { createAsyncBridge as createAsyncBridge13, createConstantBridge as createConstantBridge7, createEventBridge as createEventBridge9 } from "@apps-in-toss/bridge-core";
|
package/package.json
CHANGED
|
@@ -1,10 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@apps-in-toss/web-bridge",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "1.6.
|
|
4
|
+
"version": "1.6.1",
|
|
5
5
|
"description": "Web Bridge for Apps In Toss",
|
|
6
6
|
"scripts": {
|
|
7
|
-
"prepack": "yarn build",
|
|
8
7
|
"typecheck": "tsc --noEmit",
|
|
9
8
|
"lint": "eslint .",
|
|
10
9
|
"build": "tsup"
|
|
@@ -28,11 +27,11 @@
|
|
|
28
27
|
"built"
|
|
29
28
|
],
|
|
30
29
|
"dependencies": {
|
|
31
|
-
"@apps-in-toss/types": "1.6.
|
|
30
|
+
"@apps-in-toss/types": "1.6.1"
|
|
32
31
|
},
|
|
33
32
|
"devDependencies": {
|
|
34
|
-
"@apps-in-toss/bridge-core": "1.6.
|
|
35
|
-
"@apps-in-toss/framework": "1.6.
|
|
33
|
+
"@apps-in-toss/bridge-core": "1.6.1",
|
|
34
|
+
"@apps-in-toss/framework": "1.6.1",
|
|
36
35
|
"@swc/core": "^1.12.7",
|
|
37
36
|
"picocolors": "^1.1.1",
|
|
38
37
|
"ts-morph": "^26.0.0",
|
|
@@ -42,9 +41,5 @@
|
|
|
42
41
|
},
|
|
43
42
|
"peerDependencies": {
|
|
44
43
|
"@apps-in-toss/bridge-core": "*"
|
|
45
|
-
}
|
|
46
|
-
|
|
47
|
-
"access": "public"
|
|
48
|
-
},
|
|
49
|
-
"gitHead": "ee1ce0d363246b54246472599e0312cd2d2c1ff5"
|
|
50
|
-
}
|
|
44
|
+
}
|
|
45
|
+
}
|