@demind-inc/core 1.4.75 → 1.4.77
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.
|
@@ -91,11 +91,12 @@ export interface CalendarDataWeeklyTrendWithData {
|
|
|
91
91
|
endDate: string;
|
|
92
92
|
numOfEvents?: CalendarDataComparison;
|
|
93
93
|
numOfMeetings?: CalendarDataComparison;
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
94
|
+
deepWorkTimeMin?: CalendarDataComparison;
|
|
95
|
+
deepWorkTimeMinByDate?: CalendarDeepWorkTimeByDate[];
|
|
96
|
+
}
|
|
97
|
+
export interface CalendarDeepWorkTimeByDate {
|
|
98
|
+
date: string;
|
|
99
|
+
deepWorkTime: number;
|
|
99
100
|
}
|
|
100
101
|
export interface CalendarDataComparison {
|
|
101
102
|
current: number;
|
package/lib/models/DataTrend.ts
CHANGED
|
@@ -103,11 +103,13 @@ export interface CalendarDataWeeklyTrendWithData {
|
|
|
103
103
|
endDate: string;
|
|
104
104
|
numOfEvents?: CalendarDataComparison;
|
|
105
105
|
numOfMeetings?: CalendarDataComparison;
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
106
|
+
deepWorkTimeMin?: CalendarDataComparison;
|
|
107
|
+
deepWorkTimeMinByDate?: CalendarDeepWorkTimeByDate[];
|
|
108
|
+
}
|
|
109
|
+
|
|
110
|
+
export interface CalendarDeepWorkTimeByDate {
|
|
111
|
+
date: string;
|
|
112
|
+
deepWorkTime: number;
|
|
111
113
|
}
|
|
112
114
|
|
|
113
115
|
export interface CalendarDataComparison {
|