@demind-inc/core 1.4.25 → 1.4.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 +2 -0
- package/lib/types.ts +3 -0
- package/package.json +1 -1
package/dist/types.d.ts
CHANGED
|
@@ -33,6 +33,7 @@ export interface ScheduledAction {
|
|
|
33
33
|
categoryId?: string;
|
|
34
34
|
phase?: CircadianPhase;
|
|
35
35
|
todoFrom?: CalendarTaskFrom;
|
|
36
|
+
logicElement?: ScheduleLogicElement;
|
|
36
37
|
}
|
|
37
38
|
export interface ScheduledActionOptions {
|
|
38
39
|
startDate: string;
|
|
@@ -94,3 +95,4 @@ export interface EnergyFluctuationItem {
|
|
|
94
95
|
export * from "./featureFlags.types";
|
|
95
96
|
export type TimeboxSessionType = "deepWork" | "lightWork";
|
|
96
97
|
export type TaskItemForSchedule = Pick<TaskItem, "taskId" | "name" | "duration" | "sortIndex" | "labels" | "addedToCalendar" | "boardId" | "appFrom">;
|
|
98
|
+
export type ScheduleLogicElement = "timebox" | "routine" | "task";
|
package/lib/types.ts
CHANGED
|
@@ -73,6 +73,7 @@ export interface ScheduledAction {
|
|
|
73
73
|
categoryId?: string;
|
|
74
74
|
phase?: CircadianPhase;
|
|
75
75
|
todoFrom?: CalendarTaskFrom;
|
|
76
|
+
logicElement?: ScheduleLogicElement;
|
|
76
77
|
}
|
|
77
78
|
|
|
78
79
|
export interface ScheduledActionOptions {
|
|
@@ -157,3 +158,5 @@ export type TaskItemForSchedule = Pick<
|
|
|
157
158
|
| "boardId"
|
|
158
159
|
| "appFrom"
|
|
159
160
|
>;
|
|
161
|
+
|
|
162
|
+
export type ScheduleLogicElement = "timebox" | "routine" | "task";
|