@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 CHANGED
@@ -50,7 +50,6 @@ exports.SLEEP_SUPPORTED_TERRA_PROVIDERS = [
50
50
  "OURA",
51
51
  "GARMIN",
52
52
  "WHOOP",
53
- "EIGHTSLEEP",
54
53
  "ULTRAHUMAN",
55
54
  ]; // APPLE is not supported in terra-api
56
55
  exports.STRESS_SUPPORTED_TERRA_PROVIDERS = [
@@ -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" | "EIGHTSLEEP" | "ULTRAHUMAN" | "STRAVA" | "MYFITNESSPAL";
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
@@ -51,7 +51,6 @@ export const SLEEP_SUPPORTED_TERRA_PROVIDERS: SupportedTerraProvidersType[] = [
51
51
  "OURA",
52
52
  "GARMIN",
53
53
  "WHOOP",
54
- "EIGHTSLEEP",
55
54
  "ULTRAHUMAN",
56
55
  ]; // APPLE is not supported in terra-api
57
56
 
@@ -163,6 +163,7 @@ export interface SleepDetail {
163
163
  source?: string;
164
164
  stages?: SleepStage;
165
165
  heartRateSummary?: MetricHRSummary;
166
+ temperatureDelta?: number;
166
167
  }
167
168
 
168
169
  export type SleepStageType = "deep" | "light" | "rem" | "awake";
package/lib/types.ts CHANGED
@@ -20,7 +20,6 @@ export type SupportedTerraProvidersType =
20
20
  | "OURA"
21
21
  | "GARMIN"
22
22
  | "WHOOP"
23
- | "EIGHTSLEEP"
24
23
  | "ULTRAHUMAN"
25
24
  | "STRAVA"
26
25
  | "MYFITNESSPAL";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@demind-inc/core",
3
- "version": "1.6.56",
3
+ "version": "1.6.58",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "scripts": {