@laplace.live/internal 1.2.10 → 1.2.12
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 +5 -0
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -497,6 +497,9 @@ export declare namespace LaplaceInternal {
|
|
|
497
497
|
} | null
|
|
498
498
|
/** 工会详细信息 */
|
|
499
499
|
guildInfo: {
|
|
500
|
+
/**
|
|
501
|
+
* @deprecated use `history` instead, latest guild is now migrated to history in Sep 25, 2025, 4:51:27 AM PDT
|
|
502
|
+
*/
|
|
500
503
|
current: {
|
|
501
504
|
name: string
|
|
502
505
|
/** Unix timestamp
|
|
@@ -600,6 +603,7 @@ export declare namespace LaplaceInternal {
|
|
|
600
603
|
* @example /laplace/bilibili-guilds/:guildName
|
|
601
604
|
*/
|
|
602
605
|
export interface ListGuildMembers {
|
|
606
|
+
success: true
|
|
603
607
|
guild: string
|
|
604
608
|
count: number
|
|
605
609
|
members: LaplaceInternal.HTTPS.Workers.BilibiliUser[]
|
|
@@ -610,6 +614,7 @@ export declare namespace LaplaceInternal {
|
|
|
610
614
|
* @example /laplace/bilibili-guilds/:guildName
|
|
611
615
|
*/
|
|
612
616
|
export interface ListGuildMembersNotFound {
|
|
617
|
+
success: false
|
|
613
618
|
error: string
|
|
614
619
|
guild: string
|
|
615
620
|
}
|