@apps-in-toss/web-bridge 0.0.0-dev.1763432540119 → 0.0.0-dev.1765732023607

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.
@@ -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/built/index.d.cts CHANGED
@@ -821,13 +821,7 @@ declare function isMinVersionSupported(minVersions: {
821
821
  ios: `${number}.${number}.${number}` | 'always' | 'never';
822
822
  }): boolean;
823
823
 
824
- type AppsInTossEvent = {
825
- entryMessageExited: {
826
- onEvent: () => void;
827
- onError?: (error: Error) => void;
828
- options: undefined;
829
- };
830
- };
824
+ type AppsInTossEvent = {};
831
825
  declare const appsInTossEvent: {
832
826
  addEventListener: <K extends keyof AppsInTossEvent>(event: K, { onEvent, onError, options, }: {
833
827
  onEvent: AppsInTossEvent[K]["onEvent"];
package/built/index.d.ts CHANGED
@@ -821,13 +821,7 @@ declare function isMinVersionSupported(minVersions: {
821
821
  ios: `${number}.${number}.${number}` | 'always' | 'never';
822
822
  }): boolean;
823
823
 
824
- type AppsInTossEvent = {
825
- entryMessageExited: {
826
- onEvent: () => void;
827
- onError?: (error: Error) => void;
828
- options: undefined;
829
- };
830
- };
824
+ type AppsInTossEvent = {};
831
825
  declare const appsInTossEvent: {
832
826
  addEventListener: <K extends keyof AppsInTossEvent>(event: K, { onEvent, onError, options, }: {
833
827
  onEvent: AppsInTossEvent[K]["onEvent"];
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@apps-in-toss/web-bridge",
3
3
  "type": "module",
4
- "version": "0.0.0-dev.1763432540119",
4
+ "version": "0.0.0-dev.1765732023607",
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": "0.0.0-dev.1763432540119"
31
+ "@apps-in-toss/types": "0.0.0-dev.1765732023607"
32
32
  },
33
33
  "devDependencies": {
34
- "@apps-in-toss/bridge-core": "0.0.0-dev.1763432540119",
35
- "@apps-in-toss/framework": "0.0.0-dev.1763432540119",
34
+ "@apps-in-toss/bridge-core": "0.0.0-dev.1765732023607",
35
+ "@apps-in-toss/framework": "0.0.0-dev.1765732023607",
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": "3f902e3347692904f0e31afd7c246d8ad3b07218"
49
+ "gitHead": "e45c1308eb7d471b4873b1d92b7570e11bc85ae3"
50
50
  }