@laplace.live/internal 1.2.28 → 1.2.29
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 +16 -0
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -720,6 +720,14 @@ export declare namespace LaplaceInternal {
|
|
|
720
720
|
liveStatus: number | null
|
|
721
721
|
/** Number of live room membership */
|
|
722
722
|
liveFansCount: number | null
|
|
723
|
+
/** Guild membership info */
|
|
724
|
+
guildInfo: {
|
|
725
|
+
history: {
|
|
726
|
+
name: string
|
|
727
|
+
/** Unix timestamp in milliseconds */
|
|
728
|
+
updatedAt: number
|
|
729
|
+
}[]
|
|
730
|
+
} | null
|
|
723
731
|
} | null
|
|
724
732
|
status: FertilityStatus
|
|
725
733
|
dayInCycle: number
|
|
@@ -750,6 +758,14 @@ export declare namespace LaplaceInternal {
|
|
|
750
758
|
liveStatus: number | null
|
|
751
759
|
/** Number of live room followers */
|
|
752
760
|
liveFansCount: number | null
|
|
761
|
+
/** Guild membership info */
|
|
762
|
+
guildInfo: {
|
|
763
|
+
history: {
|
|
764
|
+
name: string
|
|
765
|
+
/** Unix timestamp in milliseconds */
|
|
766
|
+
updatedAt: number
|
|
767
|
+
}[]
|
|
768
|
+
} | null
|
|
753
769
|
} | null
|
|
754
770
|
status: FertilityStatus
|
|
755
771
|
dayInCycle: number
|