@demind-inc/core 1.4.75 → 1.4.76
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.
|
@@ -92,10 +92,11 @@ export interface CalendarDataWeeklyTrendWithData {
|
|
|
92
92
|
numOfEvents?: CalendarDataComparison;
|
|
93
93
|
numOfMeetings?: CalendarDataComparison;
|
|
94
94
|
deepWorkTime?: CalendarDataComparison;
|
|
95
|
-
deepWorkTimeByDay?:
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
95
|
+
deepWorkTimeByDay?: 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
|
@@ -104,10 +104,12 @@ export interface CalendarDataWeeklyTrendWithData {
|
|
|
104
104
|
numOfEvents?: CalendarDataComparison;
|
|
105
105
|
numOfMeetings?: CalendarDataComparison;
|
|
106
106
|
deepWorkTime?: CalendarDataComparison;
|
|
107
|
-
deepWorkTimeByDay?:
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
107
|
+
deepWorkTimeByDay?: CalendarDeepWorkTimeByDate[];
|
|
108
|
+
}
|
|
109
|
+
|
|
110
|
+
export interface CalendarDeepWorkTimeByDate {
|
|
111
|
+
date: string;
|
|
112
|
+
deepWorkTime: number;
|
|
111
113
|
}
|
|
112
114
|
|
|
113
115
|
export interface CalendarDataComparison {
|