@laplace.live/internal 1.2.8 → 1.2.10
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/index.d.ts +35 -0
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -594,6 +594,25 @@ export declare namespace LaplaceInternal {
|
|
|
594
594
|
/** json config URL, only the hash part */
|
|
595
595
|
json: string
|
|
596
596
|
}
|
|
597
|
+
|
|
598
|
+
/**
|
|
599
|
+
* Successful response for guild members list
|
|
600
|
+
* @example /laplace/bilibili-guilds/:guildName
|
|
601
|
+
*/
|
|
602
|
+
export interface ListGuildMembers {
|
|
603
|
+
guild: string
|
|
604
|
+
count: number
|
|
605
|
+
members: LaplaceInternal.HTTPS.Workers.BilibiliUser[]
|
|
606
|
+
}
|
|
607
|
+
|
|
608
|
+
/**
|
|
609
|
+
* Error response when guild is not found
|
|
610
|
+
* @example /laplace/bilibili-guilds/:guildName
|
|
611
|
+
*/
|
|
612
|
+
export interface ListGuildMembersNotFound {
|
|
613
|
+
error: string
|
|
614
|
+
guild: string
|
|
615
|
+
}
|
|
597
616
|
}
|
|
598
617
|
|
|
599
618
|
/** Migrated from experiments.sparanoid.net */
|
|
@@ -5627,6 +5646,22 @@ export declare namespace BilibiliInternal {
|
|
|
5627
5646
|
show_reply?: boolean
|
|
5628
5647
|
reply_mid?: number
|
|
5629
5648
|
reply_uname?: string
|
|
5649
|
+
reply_uname_color?: string
|
|
5650
|
+
/** 被回复用户是否是神秘人 */
|
|
5651
|
+
reply_is_mystery?: boolean
|
|
5652
|
+
/** 未知 */
|
|
5653
|
+
reply_type_enum?: number
|
|
5654
|
+
/** 未知 */
|
|
5655
|
+
hit_combo?: number
|
|
5656
|
+
/** 未知 */
|
|
5657
|
+
esports_jump_url?: string
|
|
5658
|
+
/**
|
|
5659
|
+
* 是否是跨房弹幕
|
|
5660
|
+
*
|
|
5661
|
+
* @since Sep 20, 2025
|
|
5662
|
+
*/
|
|
5663
|
+
is_mirror?: boolean
|
|
5664
|
+
is_collaboration_member?: boolean
|
|
5630
5665
|
}
|
|
5631
5666
|
|
|
5632
5667
|
/** Item of `ExtraMeta` */
|