@laplace.live/internal 1.3.7 → 1.3.8
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/package.json
CHANGED
|
@@ -1673,7 +1673,11 @@ export declare namespace BilibiliInternal {
|
|
|
1673
1673
|
|
|
1674
1674
|
/**
|
|
1675
1675
|
* 获取礼物特效配置
|
|
1676
|
+
*
|
|
1676
1677
|
* `base_version` 为 0 时可获得所有特效
|
|
1678
|
+
*
|
|
1679
|
+
* Apr 18, 2026, 1:40:30 PM GMT+8: 通常来讲,所有直播间、不同分区、不同直播间号,拿到的特效列表是完全一样的
|
|
1680
|
+
*
|
|
1677
1681
|
* @example https://api.live.bilibili.com/xlive/general-interface/v1/fullScSpecialEffect/GetEffectConfListV2?platform=pc&room_id=134123123&area_parent_id=9&area_id=744&source=live&build=0&base_version=0&web_location=444.8&w_rid=1qwe1r123e123123&wts=12313123123
|
|
1678
1682
|
*/
|
|
1679
1683
|
export interface GetEffectConfListV2 {
|
|
@@ -97,6 +97,26 @@ export declare namespace LaplaceInternal {
|
|
|
97
97
|
}
|
|
98
98
|
}
|
|
99
99
|
|
|
100
|
+
/**
|
|
101
|
+
* 获取直播间自定义表情包
|
|
102
|
+
* /laplace/emotes/:roomId
|
|
103
|
+
*/
|
|
104
|
+
export interface Emotes {
|
|
105
|
+
/**
|
|
106
|
+
* - 0: valid result
|
|
107
|
+
* - non-zero: error
|
|
108
|
+
*/
|
|
109
|
+
status: number
|
|
110
|
+
data: {
|
|
111
|
+
emotes: {
|
|
112
|
+
server_base: string
|
|
113
|
+
map: {
|
|
114
|
+
[key: string]: number
|
|
115
|
+
}
|
|
116
|
+
}
|
|
117
|
+
}
|
|
118
|
+
}
|
|
119
|
+
|
|
100
120
|
/**
|
|
101
121
|
* 直播间排名列表,由外部 API 聚合而来
|
|
102
122
|
* /laplace/ranking
|