@demind-inc/core 1.5.4 → 1.5.6

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.
@@ -19,6 +19,7 @@ export interface Calendar {
19
19
  rawJson?: any;
20
20
  preferenceId?: string;
21
21
  metricId?: string;
22
+ userPersona?: string;
22
23
  }
23
24
  export interface CategoryLabels {
24
25
  categoryLabelsId: string;
@@ -26,6 +27,10 @@ export interface CategoryLabels {
26
27
  eventNames: string[];
27
28
  updatedAt: string;
28
29
  }
30
+ export interface EventTracking {
31
+ timeSeconds: number;
32
+ updatedAt: string;
33
+ }
29
34
  export interface CalendarEvent {
30
35
  eventId: string;
31
36
  summary: string;
@@ -60,6 +65,7 @@ export interface CalendarEvent {
60
65
  autoScheduleFrom?: CalendarAutoScheduleFrom;
61
66
  categories?: EventCategorySet[];
62
67
  unSyncToCalendar?: boolean;
68
+ tracking?: EventTracking;
63
69
  }
64
70
  export type CalendarScheduleFrom = "todo" | "activity" | "calendar" | "energyBoost" | "aiScheduler";
65
71
  export type CalendarEventType = "default" | "outOfOffice" | "focusTime" | "workingLocation" | "other";
@@ -15,6 +15,7 @@ export interface TodoTasksBoard {
15
15
  rawJson?: any;
16
16
  lists?: TodoTasksBoardList[];
17
17
  taskLabelsGroupId?: string;
18
+ userPersona?: string;
18
19
  }
19
20
  export interface TodoTasksBoardList {
20
21
  todoTasksBoardListId: string;
@@ -21,6 +21,7 @@ export interface Calendar {
21
21
  rawJson?: any;
22
22
  preferenceId?: string;
23
23
  metricId?: string;
24
+ userPersona?: string;
24
25
  }
25
26
 
26
27
  export interface CategoryLabels {
@@ -30,6 +31,11 @@ export interface CategoryLabels {
30
31
  updatedAt: string;
31
32
  }
32
33
 
34
+ export interface EventTracking {
35
+ timeSeconds: number;
36
+ updatedAt: string;
37
+ }
38
+
33
39
  export interface CalendarEvent {
34
40
  eventId: string;
35
41
  summary: string;
@@ -64,6 +70,7 @@ export interface CalendarEvent {
64
70
  autoScheduleFrom?: CalendarAutoScheduleFrom;
65
71
  categories?: EventCategorySet[];
66
72
  unSyncToCalendar?: boolean;
73
+ tracking?: EventTracking;
67
74
  }
68
75
 
69
76
  export type CalendarScheduleFrom =
@@ -16,6 +16,7 @@ export interface TodoTasksBoard {
16
16
  rawJson?: any;
17
17
  lists?: TodoTasksBoardList[];
18
18
  taskLabelsGroupId?: string;
19
+ userPersona?: string;
19
20
  }
20
21
 
21
22
  export interface TodoTasksBoardList {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@demind-inc/core",
3
- "version": "1.5.4",
3
+ "version": "1.5.6",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "scripts": {