@apps-in-toss/web-bridge 1.5.1 → 1.5.2
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/built/eventLog.d.ts +2 -2
- package/package.json +5 -5
package/built/eventLog.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
export type Primitive = string | number | boolean | null | undefined | symbol;
|
|
2
2
|
export interface EventLogParams {
|
|
3
3
|
log_name: string;
|
|
4
|
-
log_type: "debug" | "info" | "warn" | "error" | "screen" | "impression" | "click";
|
|
4
|
+
log_type: "debug" | "info" | "warn" | "error" | "event" | "screen" | "impression" | "click";
|
|
5
5
|
params: Record<string, Primitive>;
|
|
6
6
|
}
|
|
7
7
|
/**
|
|
@@ -15,7 +15,7 @@ export interface EventLogParams {
|
|
|
15
15
|
*
|
|
16
16
|
* @param {Object} params 로그 기록에 필요한 매개변수 객체예요.
|
|
17
17
|
* @param {string} params.log_name 로그의 이름이에요.
|
|
18
|
-
* @param {'debug' | 'info' | 'warn' | 'error' | 'screen' | 'impression' | 'click'} params.log_type 로그의 유형이에요.
|
|
18
|
+
* @param {'debug' | 'info' | 'warn' | 'error' | 'event' | 'screen' | 'impression' | 'click'} params.log_type 로그의 유형이에요.
|
|
19
19
|
* @param {Record<string, Primitive>} params.params 로그에 포함할 추가 매개변수 객체예요.
|
|
20
20
|
*
|
|
21
21
|
* @returns {Promise<void>} 로그 기록이 완료되면 해결되는 Promise예요.
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@apps-in-toss/web-bridge",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "1.5.
|
|
4
|
+
"version": "1.5.2",
|
|
5
5
|
"description": "Web Bridge for Apps In Toss",
|
|
6
6
|
"scripts": {
|
|
7
7
|
"prepack": "yarn build",
|
|
@@ -28,11 +28,11 @@
|
|
|
28
28
|
"built"
|
|
29
29
|
],
|
|
30
30
|
"dependencies": {
|
|
31
|
-
"@apps-in-toss/types": "1.5.
|
|
31
|
+
"@apps-in-toss/types": "1.5.2"
|
|
32
32
|
},
|
|
33
33
|
"devDependencies": {
|
|
34
|
-
"@apps-in-toss/bridge-core": "1.5.
|
|
35
|
-
"@apps-in-toss/framework": "1.5.
|
|
34
|
+
"@apps-in-toss/bridge-core": "1.5.2",
|
|
35
|
+
"@apps-in-toss/framework": "1.5.2",
|
|
36
36
|
"@swc/core": "^1.12.7",
|
|
37
37
|
"picocolors": "^1.1.1",
|
|
38
38
|
"ts-morph": "^26.0.0",
|
|
@@ -46,5 +46,5 @@
|
|
|
46
46
|
"publishConfig": {
|
|
47
47
|
"access": "public"
|
|
48
48
|
},
|
|
49
|
-
"gitHead": "
|
|
49
|
+
"gitHead": "8224b90876f7d9e0feac0cd38ef80be42a5d784f"
|
|
50
50
|
}
|