@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?: Array<{
96
- day: string;
97
- deepWorkTime: CalendarDataComparison;
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;
@@ -104,10 +104,12 @@ export interface CalendarDataWeeklyTrendWithData {
104
104
  numOfEvents?: CalendarDataComparison;
105
105
  numOfMeetings?: CalendarDataComparison;
106
106
  deepWorkTime?: CalendarDataComparison;
107
- deepWorkTimeByDay?: Array<{
108
- day: string;
109
- deepWorkTime: CalendarDataComparison;
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 {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@demind-inc/core",
3
- "version": "1.4.75",
3
+ "version": "1.4.76",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "scripts": {