@demind-inc/core 1.6.57 → 1.6.59

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 = [
@@ -49,6 +49,7 @@ export interface DateTimeSet {
49
49
  datetime?: string;
50
50
  date?: string;
51
51
  timezone?: string;
52
+ autoSuggested?: boolean;
52
53
  }
53
54
  export interface TaskRecurring {
54
55
  isRecurring: boolean;
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
 
@@ -55,6 +55,7 @@ export interface DateTimeSet {
55
55
  datetime?: string;
56
56
  date?: string;
57
57
  timezone?: string;
58
+ autoSuggested?: boolean;
58
59
  }
59
60
 
60
61
  export interface TaskRecurring {
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.57",
3
+ "version": "1.6.59",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "scripts": {