@demind-inc/core 1.6.56 → 1.6.58
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/dist/constants.js +0 -1
- package/dist/models/Metrics.d.ts +1 -0
- package/dist/types.d.ts +1 -1
- package/lib/constants.ts +0 -1
- package/lib/models/Metrics.ts +1 -0
- package/lib/types.ts +0 -1
- package/package.json +1 -1
package/dist/constants.js
CHANGED
package/dist/models/Metrics.d.ts
CHANGED
|
@@ -143,6 +143,7 @@ export interface SleepDetail {
|
|
|
143
143
|
source?: string;
|
|
144
144
|
stages?: SleepStage;
|
|
145
145
|
heartRateSummary?: MetricHRSummary;
|
|
146
|
+
temperatureDelta?: number;
|
|
146
147
|
}
|
|
147
148
|
export type SleepStageType = "deep" | "light" | "rem" | "awake";
|
|
148
149
|
export type SleepStage = Record<SleepStageType, number>;
|
package/dist/types.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { CalendarEvent, CalendarTaskFrom, EMASatisfaction, EnergyFeedbackType, EventCategorySet, MealType, MetricActivity, MetricHRValueSet, MetricMealDetail, MetricStressValueSet, PhaseStartEndSet, SleepDetail, TaskItem, TodoAppFrom } from "./models";
|
|
2
|
-
export type SupportedTerraProvidersType = "FITBIT" | "OURA" | "GARMIN" | "WHOOP" | "
|
|
2
|
+
export type SupportedTerraProvidersType = "FITBIT" | "OURA" | "GARMIN" | "WHOOP" | "ULTRAHUMAN" | "STRAVA" | "MYFITNESSPAL";
|
|
3
3
|
export type SupportedTerraSDKType = "APPLE" | "GOOGLE_FIT" | "SAMSUNG_HEALTH" | "FREESTYLE_LIBRE";
|
|
4
4
|
export type CircadianPhase = "default" | "wakeup_low" | "wakeup_normal" | "morning_high" | "morning_normal" | "morning_low" | "evening_high" | "evening_low" | "evening_normal";
|
|
5
5
|
export type TimePhase = "morning" | "midday" | "evening";
|
package/lib/constants.ts
CHANGED
package/lib/models/Metrics.ts
CHANGED
package/lib/types.ts
CHANGED