@laplace.live/internal 1.2.7 → 1.2.9
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 +45 -2
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -475,18 +475,45 @@ export declare namespace LaplaceInternal {
|
|
|
475
475
|
/** 对应 UID */
|
|
476
476
|
id: number
|
|
477
477
|
username: string
|
|
478
|
-
/**
|
|
478
|
+
/**
|
|
479
|
+
* 之前泄漏的工会字段
|
|
480
|
+
*
|
|
481
|
+
* @deprecated use `guildInfo` instead
|
|
482
|
+
*/
|
|
479
483
|
guild: string
|
|
480
484
|
room: number
|
|
481
485
|
liveFansCount: number
|
|
482
486
|
avatar: string | null
|
|
483
487
|
/** 2024-12-15T03:44:13.788Z */
|
|
484
488
|
updatedAt: string
|
|
485
|
-
/**
|
|
489
|
+
/**
|
|
490
|
+
* 工会详细信息
|
|
491
|
+
*
|
|
492
|
+
* @deprecated use `guildInfo` instead
|
|
493
|
+
*/
|
|
486
494
|
guildDetails: {
|
|
487
495
|
id: number
|
|
488
496
|
name: string
|
|
489
497
|
} | null
|
|
498
|
+
/** 工会详细信息 */
|
|
499
|
+
guildInfo: {
|
|
500
|
+
current: {
|
|
501
|
+
name: string
|
|
502
|
+
/** Unix timestamp
|
|
503
|
+
*
|
|
504
|
+
* @example 1758039520166
|
|
505
|
+
*/
|
|
506
|
+
updatedAt: number
|
|
507
|
+
} | null
|
|
508
|
+
history: {
|
|
509
|
+
name: string
|
|
510
|
+
/** Unix timestamp
|
|
511
|
+
*
|
|
512
|
+
* @example 1758039520166
|
|
513
|
+
*/
|
|
514
|
+
updatedAt: number
|
|
515
|
+
}[]
|
|
516
|
+
} | null
|
|
490
517
|
}
|
|
491
518
|
|
|
492
519
|
/**
|
|
@@ -5600,6 +5627,22 @@ export declare namespace BilibiliInternal {
|
|
|
5600
5627
|
show_reply?: boolean
|
|
5601
5628
|
reply_mid?: number
|
|
5602
5629
|
reply_uname?: string
|
|
5630
|
+
reply_uname_color?: string
|
|
5631
|
+
/** 被回复用户是否是神秘人 */
|
|
5632
|
+
reply_is_mystery?: boolean
|
|
5633
|
+
/** 未知 */
|
|
5634
|
+
reply_type_enum?: number
|
|
5635
|
+
/** 未知 */
|
|
5636
|
+
hit_combo?: number
|
|
5637
|
+
/** 未知 */
|
|
5638
|
+
esports_jump_url?: string
|
|
5639
|
+
/**
|
|
5640
|
+
* 是否是跨房弹幕
|
|
5641
|
+
*
|
|
5642
|
+
* @since Sep 20, 2025
|
|
5643
|
+
*/
|
|
5644
|
+
is_mirror?: boolean
|
|
5645
|
+
is_collaboration_member?: boolean
|
|
5603
5646
|
}
|
|
5604
5647
|
|
|
5605
5648
|
/** Item of `ExtraMeta` */
|