@laplace.live/internal 1.3.8 → 1.3.10
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/package.json +1 -1
- package/src/namespaces/laplace.d.ts +20 -2
package/package.json
CHANGED
|
@@ -109,7 +109,6 @@ export declare namespace LaplaceInternal {
|
|
|
109
109
|
status: number
|
|
110
110
|
data: {
|
|
111
111
|
emotes: {
|
|
112
|
-
server_base: string
|
|
113
112
|
map: {
|
|
114
113
|
[key: string]: number
|
|
115
114
|
}
|
|
@@ -733,6 +732,13 @@ export declare namespace LaplaceInternal {
|
|
|
733
732
|
nextPeriod: Date
|
|
734
733
|
/** How many history entries used for calculation */
|
|
735
734
|
dataPoints: number
|
|
735
|
+
/**
|
|
736
|
+
* Number of complete cycles estimated to have passed since the last
|
|
737
|
+
* observed period. Zero when data is fresh; non-zero when no recent
|
|
738
|
+
* observation exists, in which case dayInCycle, status, and nextPeriod
|
|
739
|
+
* are projected forward assuming the cycle continued normally.
|
|
740
|
+
*/
|
|
741
|
+
cyclesElapsedSinceObservation: number
|
|
736
742
|
}
|
|
737
743
|
|
|
738
744
|
/**
|
|
@@ -776,6 +782,12 @@ export declare namespace LaplaceInternal {
|
|
|
776
782
|
effectiveCycleLength: number
|
|
777
783
|
effectivePeriodLength: number
|
|
778
784
|
dataPoints: number
|
|
785
|
+
/**
|
|
786
|
+
* Complete cycles estimated to have passed since the last observed
|
|
787
|
+
* period. Zero when data is fresh; non-zero indicates dayInCycle and
|
|
788
|
+
* status are projected from a stale observation.
|
|
789
|
+
*/
|
|
790
|
+
cyclesElapsedSinceObservation: number
|
|
779
791
|
userPreferences: {
|
|
780
792
|
cycleLength: number
|
|
781
793
|
periodLength: number
|
|
@@ -825,10 +837,16 @@ export declare namespace LaplaceInternal {
|
|
|
825
837
|
nextPeriod: string
|
|
826
838
|
/** Calculated cycle length based on history (median) or user preference */
|
|
827
839
|
effectiveCycleLength: number
|
|
828
|
-
/** Calculated period length based on history (
|
|
840
|
+
/** Calculated period length based on history (median) or user preference */
|
|
829
841
|
effectivePeriodLength: number
|
|
830
842
|
/** Number of history entries used for calculation */
|
|
831
843
|
dataPoints: number
|
|
844
|
+
/**
|
|
845
|
+
* Complete cycles estimated to have passed since the last observed
|
|
846
|
+
* period. Zero when data is fresh; non-zero indicates dayInCycle and
|
|
847
|
+
* status are projected from a stale observation.
|
|
848
|
+
*/
|
|
849
|
+
cyclesElapsedSinceObservation: number
|
|
832
850
|
}
|
|
833
851
|
|
|
834
852
|
/**
|