@demind-inc/core 1.7.5 → 1.7.7

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.
@@ -118,6 +118,7 @@ export interface TaskItem {
118
118
  todoist?: TaskItemAdditionalParamsTodoist;
119
119
  [key: string]: any;
120
120
  };
121
+ completedDates?: string[];
121
122
  }
122
123
  export interface TaskCategorySet {
123
124
  id: string;
package/dist/types.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- import { CalendarEvent, CalendarTaskFrom, EMASatisfaction, EnergyFeedbackType, EventCategorySet, MealType, MetricActivity, MetricHRValueSet, MetricMealDetail, MetricStressValueSet, PhaseStartEndSet, Priority, SleepDetail, TaskItem, TodoAppFrom } from "./models";
1
+ import { CalendarEvent, CalendarTaskFrom, EMASatisfaction, EnergyFeedbackType, EventCategorySet, MealType, MetricActivity, MetricHRValueSet, MetricMealDetail, MetricStressValueSet, PhaseStartEndSet, SleepDetail, TaskItem, TaskPriority, TodoAppFrom } from "./models";
2
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";
@@ -36,7 +36,7 @@ export interface ScheduledAction {
36
36
  todoFrom?: CalendarTaskFrom;
37
37
  logicElement?: ScheduleLogicElement;
38
38
  eventFrom?: ScheduledActionEventFrom;
39
- priority?: Priority;
39
+ priority?: TaskPriority;
40
40
  }
41
41
  export interface ScheduledActionOptions {
42
42
  startDate: string;
@@ -130,6 +130,7 @@ export interface TaskItem {
130
130
  todoist?: TaskItemAdditionalParamsTodoist;
131
131
  [key: string]: any;
132
132
  };
133
+ completedDates?: string[];
133
134
  }
134
135
 
135
136
  export interface TaskCategorySet {
package/lib/types.ts CHANGED
@@ -10,9 +10,9 @@ import {
10
10
  MetricMealDetail,
11
11
  MetricStressValueSet,
12
12
  PhaseStartEndSet,
13
- Priority,
14
13
  SleepDetail,
15
14
  TaskItem,
15
+ TaskPriority,
16
16
  TodoAppFrom,
17
17
  } from "./models";
18
18
 
@@ -84,7 +84,7 @@ export interface ScheduledAction {
84
84
  todoFrom?: CalendarTaskFrom;
85
85
  logicElement?: ScheduleLogicElement;
86
86
  eventFrom?: ScheduledActionEventFrom;
87
- priority?: Priority;
87
+ priority?: TaskPriority;
88
88
  }
89
89
 
90
90
  export interface ScheduledActionOptions {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@demind-inc/core",
3
- "version": "1.7.5",
3
+ "version": "1.7.7",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "scripts": {