@demind-inc/core 1.6.21 → 1.6.22

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/types.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- import { CalendarEvent, CalendarTaskFrom, EMASatisfaction, EnergyFeedbackType, EventCategorySet, MealType, MetricActivity, MetricHRValueSet, MetricMealDetail, MetricStressValueSet, PhaseStartEndSet, SleepDetail, TaskItem } from "./models";
1
+ import { CalendarEvent, CalendarTaskFrom, EMASatisfaction, EnergyFeedbackType, EventCategorySet, MealType, MetricActivity, MetricHRValueSet, MetricMealDetail, MetricStressValueSet, PhaseStartEndSet, SleepDetail, TaskItem, TodoAppFrom } from "./models";
2
2
  export type SupportedTerraProvidersType = "FITBIT" | "OURA" | "GARMIN" | "WHOOP" | "EIGHTSLEEP" | "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";
@@ -154,4 +154,5 @@ export interface ChatAdjustmentTask {
154
154
  category?: string;
155
155
  completed?: boolean;
156
156
  boardId?: string;
157
+ appFrom?: TodoAppFrom;
157
158
  }
package/lib/types.ts CHANGED
@@ -12,6 +12,7 @@ import {
12
12
  PhaseStartEndSet,
13
13
  SleepDetail,
14
14
  TaskItem,
15
+ TodoAppFrom,
15
16
  } from "./models";
16
17
 
17
18
  export type SupportedTerraProvidersType =
@@ -247,4 +248,5 @@ export interface ChatAdjustmentTask {
247
248
  category?: string;
248
249
  completed?: boolean;
249
250
  boardId?: string;
251
+ appFrom?: TodoAppFrom;
250
252
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@demind-inc/core",
3
- "version": "1.6.21",
3
+ "version": "1.6.22",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "scripts": {