@demind-inc/core 1.6.20 → 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 +5 -3
- package/lib/types.ts +5 -2
- package/package.json +1 -1
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";
|
|
@@ -147,10 +147,12 @@ export interface ChatAdjustmentTask {
|
|
|
147
147
|
taskId: string;
|
|
148
148
|
name: string;
|
|
149
149
|
description?: string;
|
|
150
|
-
startTime
|
|
151
|
-
endTime
|
|
150
|
+
startTime?: string;
|
|
151
|
+
endTime?: string;
|
|
152
|
+
date: string;
|
|
152
153
|
durationMinutes: number;
|
|
153
154
|
category?: string;
|
|
154
155
|
completed?: boolean;
|
|
155
156
|
boardId?: string;
|
|
157
|
+
appFrom?: TodoAppFrom;
|
|
156
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 =
|
|
@@ -240,10 +241,12 @@ export interface ChatAdjustmentTask {
|
|
|
240
241
|
taskId: string;
|
|
241
242
|
name: string;
|
|
242
243
|
description?: string;
|
|
243
|
-
startTime
|
|
244
|
-
endTime
|
|
244
|
+
startTime?: string; // ISO string (start datetime)
|
|
245
|
+
endTime?: string; // ISO string (due datetime)
|
|
246
|
+
date: string; // YYYY-MM-DD
|
|
245
247
|
durationMinutes: number;
|
|
246
248
|
category?: string;
|
|
247
249
|
completed?: boolean;
|
|
248
250
|
boardId?: string;
|
|
251
|
+
appFrom?: TodoAppFrom;
|
|
249
252
|
}
|