@demind-inc/core 1.4.23 → 1.4.25

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
@@ -93,4 +93,4 @@ export interface EnergyFluctuationItem {
93
93
  }
94
94
  export * from "./featureFlags.types";
95
95
  export type TimeboxSessionType = "deepWork" | "lightWork";
96
- export type TaskItemForSchedule = Pick<TaskItem, "name" | "duration" | "sortIndex" | "labels" | "addedToCalendar">;
96
+ export type TaskItemForSchedule = Pick<TaskItem, "taskId" | "name" | "duration" | "sortIndex" | "labels" | "addedToCalendar" | "boardId" | "appFrom">;
package/lib/types.ts CHANGED
@@ -148,5 +148,12 @@ export type TimeboxSessionType = "deepWork" | "lightWork";
148
148
 
149
149
  export type TaskItemForSchedule = Pick<
150
150
  TaskItem,
151
- "name" | "duration" | "sortIndex" | "labels" | "addedToCalendar"
151
+ | "taskId"
152
+ | "name"
153
+ | "duration"
154
+ | "sortIndex"
155
+ | "labels"
156
+ | "addedToCalendar"
157
+ | "boardId"
158
+ | "appFrom"
152
159
  >;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@demind-inc/core",
3
- "version": "1.4.23",
3
+ "version": "1.4.25",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "scripts": {