Skip to content

Commit

Permalink
build
Browse files Browse the repository at this point in the history
  • Loading branch information
dolphinlin committed Dec 11, 2020
1 parent 8176046 commit 082f2a7
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 11 deletions.
12 changes: 8 additions & 4 deletions dist/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -54,11 +54,12 @@ interface ClickTopStreamerEventPayload extends BasePayload {
streamerId: string;
type: "topavatar";
liveStatus: boolean;
// //如果有勾選“Open 17 app when clicking avatar if enable.”則為true,反之則為false
// 如果有勾選“Open 17 app when clicking avatar if enable.”則為true,反之則為false
hasDeeplink: boolean;
}
interface ClickTopStreamerEvent extends BaseEvent<ClickTopStreamerEventPayload> {
category: "LiveStream";
// 直撥中 = LiveStream, 非直撥中 = Profile
category: "LiveStream" | "Profile";
action: "click";
name: "avatar_top";
}
Expand All @@ -68,11 +69,14 @@ interface ClickStreamerEventPayload extends BasePayload {
streamerId: string;
type: "avatar";
liveStatus: boolean;
// 如果有勾選“Open 17 app when clicking avatar if enable.”則為true,反之則為false
hasDeeplink: boolean;
}
interface ClickStreamerEvent extends BaseEvent<ClickStreamerEventPayload> {
category: "LiveStream";
// 直撥中 = LiveStream, 非直撥中 = Profile
category: "LiveStream" | "Profile";
action: "click";
name: "avatar_top";
name: "avatar_streamer";
}
interface LinkEventPayload extends BasePayload {
action: "LinkClick";
Expand Down
12 changes: 8 additions & 4 deletions dist/index.esm.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -54,11 +54,12 @@ interface ClickTopStreamerEventPayload extends BasePayload {
streamerId: string;
type: "topavatar";
liveStatus: boolean;
// //如果有勾選“Open 17 app when clicking avatar if enable.”則為true,反之則為false
// 如果有勾選“Open 17 app when clicking avatar if enable.”則為true,反之則為false
hasDeeplink: boolean;
}
interface ClickTopStreamerEvent extends BaseEvent<ClickTopStreamerEventPayload> {
category: "LiveStream";
// 直撥中 = LiveStream, 非直撥中 = Profile
category: "LiveStream" | "Profile";
action: "click";
name: "avatar_top";
}
Expand All @@ -68,11 +69,14 @@ interface ClickStreamerEventPayload extends BasePayload {
streamerId: string;
type: "avatar";
liveStatus: boolean;
// 如果有勾選“Open 17 app when clicking avatar if enable.”則為true,反之則為false
hasDeeplink: boolean;
}
interface ClickStreamerEvent extends BaseEvent<ClickStreamerEventPayload> {
category: "LiveStream";
// 直撥中 = LiveStream, 非直撥中 = Profile
category: "LiveStream" | "Profile";
action: "click";
name: "avatar_top";
name: "avatar_streamer";
}
interface LinkEventPayload extends BasePayload {
action: "LinkClick";
Expand Down
2 changes: 1 addition & 1 deletion dist/index.esm.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/index.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/tsconfig.tsbuildinfo
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@
},
"../src/trackingevent.ts": {
"version": 1,
"signature": "51487960984",
"signature": "69842569413",
"affectsGlobalScope": false
},
"../src/types.ts": {
Expand Down

0 comments on commit 082f2a7

Please sign in to comment.