@laplace.live/internal 1.2.21 → 1.2.23
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 +4 -0
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -742,11 +742,15 @@ export declare namespace LaplaceInternal {
|
|
|
742
742
|
username: string
|
|
743
743
|
avatar: string | null
|
|
744
744
|
room: number | null
|
|
745
|
+
/** 0 = offline, 1 = live, 2 = rotating */
|
|
746
|
+
liveStatus: number | null
|
|
745
747
|
} | null
|
|
746
748
|
status: FertilityStatus
|
|
747
749
|
dayInCycle: number
|
|
748
750
|
/** ISO date string (YYYY-MM-DD) */
|
|
749
751
|
nextPeriod: string
|
|
752
|
+
/** Calculated cycle length based on history (median) or user preference */
|
|
753
|
+
effectiveCycleLength: number
|
|
750
754
|
}
|
|
751
755
|
|
|
752
756
|
/**
|