@demind-inc/core 1.4.24 → 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 +1 -1
- package/lib/types.ts +8 -1
- package/package.json +1 -1
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, "taskId" | "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
|
-
|
|
151
|
+
| "taskId"
|
|
152
|
+
| "name"
|
|
153
|
+
| "duration"
|
|
154
|
+
| "sortIndex"
|
|
155
|
+
| "labels"
|
|
156
|
+
| "addedToCalendar"
|
|
157
|
+
| "boardId"
|
|
158
|
+
| "appFrom"
|
|
152
159
|
>;
|