@demind-inc/core 1.5.18 → 1.5.19
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.
|
@@ -71,7 +71,7 @@ export interface CalendarEvent {
|
|
|
71
71
|
color: string;
|
|
72
72
|
};
|
|
73
73
|
}
|
|
74
|
-
export type CalendarScheduleFrom = "todo" | "activity" | "calendar" | "energyBoost" | "aiScheduler";
|
|
74
|
+
export type CalendarScheduleFrom = "todo" | "activity" | "calendar" | "energyBoost" | "aiScheduler" | "sleep" | "meal";
|
|
75
75
|
export type CalendarEventType = "default" | "outOfOffice" | "focusTime" | "workingLocation" | "other";
|
|
76
76
|
export interface CalendarEventUser {
|
|
77
77
|
email: string;
|
|
@@ -80,6 +80,7 @@ export interface CalendarEventUser {
|
|
|
80
80
|
export interface CalendarAutoScheduleFrom {
|
|
81
81
|
from: CalendarScheduleFrom;
|
|
82
82
|
id: string;
|
|
83
|
+
chatSessionId?: string;
|
|
83
84
|
}
|
|
84
85
|
export type CalendarEventShowAs = "busy" | "available";
|
|
85
86
|
export type CalendarEventVisibility = "default" | "public" | "private" | "confidential";
|
package/lib/models/Calendar.ts
CHANGED
|
@@ -82,7 +82,9 @@ export type CalendarScheduleFrom =
|
|
|
82
82
|
| "activity"
|
|
83
83
|
| "calendar"
|
|
84
84
|
| "energyBoost"
|
|
85
|
-
| "aiScheduler"
|
|
85
|
+
| "aiScheduler"
|
|
86
|
+
| "sleep"
|
|
87
|
+
| "meal";
|
|
86
88
|
|
|
87
89
|
export type CalendarEventType =
|
|
88
90
|
| "default"
|
|
@@ -99,6 +101,7 @@ export interface CalendarEventUser {
|
|
|
99
101
|
export interface CalendarAutoScheduleFrom {
|
|
100
102
|
from: CalendarScheduleFrom;
|
|
101
103
|
id: string;
|
|
104
|
+
chatSessionId?: string;
|
|
102
105
|
}
|
|
103
106
|
|
|
104
107
|
export type CalendarEventShowAs = "busy" | "available";
|