@laplace.live/internal 1.3.16 → 1.3.18
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
|
@@ -6843,19 +6843,25 @@ export declare namespace BilibiliInternal {
|
|
|
6843
6843
|
data: {
|
|
6844
6844
|
/**
|
|
6845
6845
|
* 禁言类型:
|
|
6846
|
+
* - `all` 主播对全部用户开启了禁言
|
|
6846
6847
|
* - `level` 用户等级(已退出历史舞台)
|
|
6847
6848
|
* - `wealth` 荣耀等级
|
|
6848
6849
|
* - `medal` 粉丝勋章等级
|
|
6849
|
-
* - `member`
|
|
6850
|
+
* - `member` 主播对除房管外的用户开启了禁言
|
|
6851
|
+
* - `follow` 非本房粉丝的用户开启了禁言
|
|
6852
|
+
*/
|
|
6853
|
+
type: 'all' | 'level' | 'wealth' | 'medal' | 'member' | 'follow'
|
|
6854
|
+
/**
|
|
6855
|
+
* - 1:
|
|
6850
6856
|
*/
|
|
6851
|
-
type: 'level' | 'wealth' | 'medal' | 'member'
|
|
6852
6857
|
level: number
|
|
6853
6858
|
/**
|
|
6854
6859
|
* 禁言时长,`-1` 时为永久禁言,unix 时间戳时为限时禁言
|
|
6855
6860
|
*/
|
|
6856
6861
|
second: number
|
|
6857
6862
|
/**
|
|
6858
|
-
*
|
|
6863
|
+
* @example '[系统]: 主播对荣耀等级1级以下的用户开启了禁言'
|
|
6864
|
+
* @example "[系统]: 主播对非本房粉丝的用户开启了禁言"
|
|
6859
6865
|
*/
|
|
6860
6866
|
msg: string
|
|
6861
6867
|
}
|
|
@@ -6873,7 +6879,9 @@ export declare namespace BilibiliInternal {
|
|
|
6873
6879
|
level: number
|
|
6874
6880
|
/** 通常为 0 */
|
|
6875
6881
|
second: number
|
|
6876
|
-
/**
|
|
6882
|
+
/**
|
|
6883
|
+
* @example `'[系统]: 主播取消了房间禁言'`
|
|
6884
|
+
*/
|
|
6877
6885
|
msg: string
|
|
6878
6886
|
}
|
|
6879
6887
|
}
|