@demind-inc/core 1.5.63 → 1.5.65
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.
|
@@ -82,6 +82,7 @@ export interface CalendarAutoScheduleFrom {
|
|
|
82
82
|
id: string;
|
|
83
83
|
chatSessionId?: string;
|
|
84
84
|
predicted?: boolean;
|
|
85
|
+
edited?: boolean;
|
|
85
86
|
}
|
|
86
87
|
export type CalendarEventShowAs = "busy" | "available";
|
|
87
88
|
export type CalendarEventVisibility = "default" | "public" | "private" | "confidential";
|
package/dist/models/User.d.ts
CHANGED
|
@@ -54,6 +54,7 @@ export interface OnboardingStatus {
|
|
|
54
54
|
connectWearables?: OnboardingStatusOption;
|
|
55
55
|
energySetting?: OnboardingStatusOption;
|
|
56
56
|
connectTodo?: OnboardingStatusOption;
|
|
57
|
+
aiAssistantDemo?: OnboardingStatusOption;
|
|
57
58
|
allowNotification?: OnboardingStatusOption;
|
|
58
59
|
aiSchedulerPractice?: OnboardingStatusOption;
|
|
59
60
|
initialSync?: OnboardingStatusOption;
|
package/lib/models/Calendar.ts
CHANGED
package/lib/models/User.ts
CHANGED
|
@@ -57,8 +57,9 @@ export interface UserTokens {
|
|
|
57
57
|
export interface OnboardingStatus {
|
|
58
58
|
personaSurvey?: OnboardingStatusOption;
|
|
59
59
|
connectWearables?: OnboardingStatusOption;
|
|
60
|
-
energySetting?: OnboardingStatusOption;
|
|
60
|
+
energySetting?: OnboardingStatusOption; //@deprecated
|
|
61
61
|
connectTodo?: OnboardingStatusOption;
|
|
62
|
+
aiAssistantDemo?: OnboardingStatusOption;
|
|
62
63
|
allowNotification?: OnboardingStatusOption;
|
|
63
64
|
aiSchedulerPractice?: OnboardingStatusOption;
|
|
64
65
|
initialSync?: OnboardingStatusOption; // @deprecated
|