@demind-inc/core 1.4.81 → 1.4.83
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/constants.d.ts +1 -0
- package/dist/constants.js +1 -0
- package/dist/types.d.ts +1 -1
- package/lib/constants.ts +1 -0
- package/lib/types.ts +1 -0
- package/package.json +1 -1
package/dist/constants.d.ts
CHANGED
package/dist/constants.js
CHANGED
package/dist/types.d.ts
CHANGED
|
@@ -103,6 +103,6 @@ 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">;
|
|
106
|
+
export type TaskItemForSchedule = Pick<TaskItem, "taskId" | "name" | "duration" | "sortIndex" | "labels" | "addedToCalendar" | "boardId" | "appFrom" | "dueDateTime">;
|
|
107
107
|
export type ScheduleLogicElement = "timebox" | "routine" | "task";
|
|
108
108
|
export type WearableSourceType = "ALL" | "SLEEP" | "ACTIVITY" | "MEAL" | "STRESS";
|
package/lib/constants.ts
CHANGED
package/lib/types.ts
CHANGED