@demind-inc/core 1.7.70 → 1.7.72

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, CalendarRoutineFrom, CalendarTaskFrom, EMASatisfaction, EnergyFeedbackType, EventCategorySet, MealType, MetricActivity, MetricHRValueSet, MetricMealDetail, MetricMealSummary, MetricStressValueSet, PhaseStartEndSet, RichContext, RoutineActivity, NapDetail, SleepDetail, TaskItem, TaskPriority, TodoAppFrom } from "./models";
1
+ import { CalendarEvent, CalendarEventRecurrence, CalendarRoutineFrom, CalendarTaskFrom, EMASatisfaction, EnergyFeedbackType, EventCategorySet, MealType, MetricActivity, MetricHRValueSet, MetricMealDetail, MetricMealSummary, MetricStressValueSet, PhaseStartEndSet, RichContext, RoutineActivity, NapDetail, 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";
@@ -42,6 +42,8 @@ export interface ScheduledAction {
42
42
  priority?: TaskPriority;
43
43
  actionType?: ScheduledActionType;
44
44
  richContext?: RichContext | null;
45
+ recurrence?: CalendarEventRecurrence;
46
+ seriesId?: string;
45
47
  }
46
48
  export interface ScheduledActionOptions {
47
49
  startDate: string;
package/lib/types.ts CHANGED
@@ -1,5 +1,6 @@
1
1
  import {
2
2
  CalendarEvent,
3
+ CalendarEventRecurrence,
3
4
  CalendarRoutineFrom,
4
5
  CalendarTaskFrom,
5
6
  EMASatisfaction,
@@ -101,6 +102,8 @@ export interface ScheduledAction {
101
102
  priority?: TaskPriority;
102
103
  actionType?: ScheduledActionType;
103
104
  richContext?: RichContext | null;
105
+ recurrence?: CalendarEventRecurrence;
106
+ seriesId?: string;
104
107
  }
105
108
 
106
109
  export interface ScheduledActionOptions {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@demind-inc/core",
3
- "version": "1.7.70",
3
+ "version": "1.7.72",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "scripts": {