@demind-inc/core 1.6.25 → 1.6.26

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