@demind-inc/core 1.5.13 → 1.5.14

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
@@ -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/types.ts CHANGED
@@ -171,7 +171,9 @@ export type TaskItemForSchedule = Pick<
171
171
  | "boardId"
172
172
  | "appFrom"
173
173
  | "dueDateTime"
174
- >;
174
+ > & {
175
+ selected?: boolean;
176
+ };
175
177
 
176
178
  export type ScheduleLogicElement = "timebox" | "routine" | "task";
177
179
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@demind-inc/core",
3
- "version": "1.5.13",
3
+ "version": "1.5.14",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "scripts": {