@laplace.live/internal 1.2.6 → 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 +35 -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
|
/**
|
|
@@ -7301,6 +7328,12 @@ export declare namespace BilibiliInternal {
|
|
|
7301
7328
|
* @example 1718132706
|
|
7302
7329
|
*/
|
|
7303
7330
|
live_time?: number
|
|
7331
|
+
/**
|
|
7332
|
+
* 未知,只有在首次触发时会携带
|
|
7333
|
+
*
|
|
7334
|
+
* @example [50]
|
|
7335
|
+
*/
|
|
7336
|
+
special_types?: number[]
|
|
7304
7337
|
}
|
|
7305
7338
|
|
|
7306
7339
|
/**
|