@laplace.live/internal 1.1.94 → 1.1.96
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/README.md +2 -2
- package/index.d.ts +17 -1
- package/jsr.json +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
package/index.d.ts
CHANGED
|
@@ -5183,6 +5183,7 @@ export declare namespace BilibiliInternal {
|
|
|
5183
5183
|
* - DANMU_MSG
|
|
5184
5184
|
* - LIKE_INFO_V3_CLICK
|
|
5185
5185
|
* - ONLINE_RANK_V2
|
|
5186
|
+
* - POPULARITY_RED_POCKET_V2_START
|
|
5186
5187
|
*/
|
|
5187
5188
|
medal: BilibiliInternal.HTTPS.Prod.MedalInfo | null
|
|
5188
5189
|
/**
|
|
@@ -5192,6 +5193,7 @@ export declare namespace BilibiliInternal {
|
|
|
5192
5193
|
* 已知下列事件中为 null
|
|
5193
5194
|
* - ONLINE_RANK_V2
|
|
5194
5195
|
* - SUPER_CHAT_MESSAGE
|
|
5196
|
+
* - POPULARITY_RED_POCKET_V2_START
|
|
5195
5197
|
*/
|
|
5196
5198
|
wealth: {
|
|
5197
5199
|
/**
|
|
@@ -7614,7 +7616,7 @@ export declare namespace BilibiliInternal {
|
|
|
7614
7616
|
}
|
|
7615
7617
|
|
|
7616
7618
|
/**
|
|
7617
|
-
*
|
|
7619
|
+
* 进入直播间事件
|
|
7618
7620
|
*/
|
|
7619
7621
|
export interface LIVE_OPEN_PLATFORM_LIVE_ROOM_ENTER {
|
|
7620
7622
|
cmd: 'LIVE_OPEN_PLATFORM_LIVE_ROOM_ENTER'
|
|
@@ -7662,6 +7664,20 @@ export declare namespace BilibiliInternal {
|
|
|
7662
7664
|
room_id: number
|
|
7663
7665
|
}
|
|
7664
7666
|
}
|
|
7667
|
+
|
|
7668
|
+
/**
|
|
7669
|
+
* 消息推送结束通知事件
|
|
7670
|
+
*/
|
|
7671
|
+
export interface LIVE_OPEN_PLATFORM_INTERACTION_END {
|
|
7672
|
+
cmd: 'LIVE_OPEN_PLATFORM_INTERACTION_END'
|
|
7673
|
+
data: {
|
|
7674
|
+
game_id: string
|
|
7675
|
+
/**
|
|
7676
|
+
* @example `1714113037`
|
|
7677
|
+
*/
|
|
7678
|
+
timestamp: number
|
|
7679
|
+
}
|
|
7680
|
+
}
|
|
7665
7681
|
}
|
|
7666
7682
|
}
|
|
7667
7683
|
}
|
package/jsr.json
CHANGED