@laplace.live/internal 1.2.7 → 1.2.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/index.d.ts +29 -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
|
/**
|