@laplace.live/internal 1.3.6 → 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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@laplace.live/internal",
3
- "version": "1.3.6",
3
+ "version": "1.3.8",
4
4
  "module": "src/index.d.ts",
5
5
  "exports": {
6
6
  ".": "./src/index.d.ts",
@@ -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
@@ -1047,6 +1067,7 @@ export declare namespace LaplaceInternal {
1047
1067
  content: string
1048
1068
  tags: TagWithCount[]
1049
1069
  copyCount: number
1070
+ lastCopiedAt: string | null
1050
1071
  createdAt: string
1051
1072
  updatedAt: string
1052
1073
  }
@@ -1061,8 +1082,9 @@ export declare namespace LaplaceInternal {
1061
1082
  /** Query params for GET /laplace/memes */
1062
1083
  export interface MemeListQuery {
1063
1084
  uid?: number
1085
+ roomId?: number
1064
1086
  tags?: number[]
1065
- sortBy?: 'copyCount' | 'createdAt'
1087
+ sortBy?: 'copyCount' | 'lastCopiedAt' | 'createdAt'
1066
1088
  sort?: 'asc' | 'desc'
1067
1089
  limit?: number
1068
1090
  offset?: number