@demind-inc/core 1.5.13 → 1.5.15
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/models/Routine.d.ts +1 -0
- package/dist/types.d.ts +3 -1
- package/lib/models/Routine.ts +1 -0
- package/lib/types.ts +3 -1
- package/package.json +1 -1
package/dist/models/Routine.d.ts
CHANGED
|
@@ -15,6 +15,7 @@ export interface RoutineActivity {
|
|
|
15
15
|
recurring: RoutineActivityRecurring;
|
|
16
16
|
default?: boolean;
|
|
17
17
|
hidden?: boolean;
|
|
18
|
+
selected?: boolean;
|
|
18
19
|
}
|
|
19
20
|
export type RoutineActivityRecurringDay = "monday" | "tuesday" | "wednesday" | "thursday" | "friday" | "saturday" | "sunday";
|
|
20
21
|
export type RoutineActivityRecurring = {
|
package/dist/types.d.ts
CHANGED
|
@@ -103,7 +103,9 @@ export interface EnergyFluctuationItem {
|
|
|
103
103
|
}
|
|
104
104
|
export * from "./featureFlags.types";
|
|
105
105
|
export type TimeboxSessionType = "deepWork" | "lightWork";
|
|
106
|
-
export type TaskItemForSchedule = Pick<TaskItem, "taskId" | "name" | "duration" | "sortIndex" | "labels" | "addedToCalendar" | "boardId" | "appFrom" | "dueDateTime"
|
|
106
|
+
export type TaskItemForSchedule = Pick<TaskItem, "taskId" | "name" | "duration" | "sortIndex" | "labels" | "addedToCalendar" | "boardId" | "appFrom" | "dueDateTime"> & {
|
|
107
|
+
selected?: boolean;
|
|
108
|
+
};
|
|
107
109
|
export type ScheduleLogicElement = "timebox" | "routine" | "task";
|
|
108
110
|
export type WearableSourceType = "ALL" | "SLEEP" | "ACTIVITY" | "MEAL" | "STRESS";
|
|
109
111
|
export type RecommendationActionType = "core_action" | "energy_boost" | "task" | "routine";
|
package/lib/models/Routine.ts
CHANGED
package/lib/types.ts
CHANGED