@demind-inc/core 1.6.80 → 1.6.82

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.
@@ -97,7 +97,7 @@ export interface CalendarEventRecurrence {
97
97
  };
98
98
  }
99
99
  export interface CalendarRoutineFrom {
100
- routineId: string;
100
+ routineActivityId: string;
101
101
  }
102
102
  export type CalendarScheduleFrom = "todo" | "activity" | "calendar" | "energyBoost" | "aiScheduler" | "sleep" | "meal" | "routine";
103
103
  export type CalendarEventType = "default" | "outOfOffice" | "focusTime" | "workingLocation" | "other";
@@ -15,7 +15,7 @@ export interface ChatSummary {
15
15
  recommendations?: string;
16
16
  }
17
17
  export type ChatSessionType = "scheduler" | "recommendation" | "sleep" | "meal" | "task" | "general";
18
- export type StreamChatSessionType = "sleep" | "meal" | "task" | "general" | "recommendation";
18
+ export type StreamChatSessionType = "sleep" | "meal" | "task" | "general" | "recommendation" | "scheduler";
19
19
  export interface SchedulerSession {
20
20
  schedulerSessionId: string;
21
21
  messages: SessionMessage[];
@@ -105,7 +105,7 @@ export interface CalendarEventRecurrence {
105
105
  }
106
106
 
107
107
  export interface CalendarRoutineFrom {
108
- routineId: string;
108
+ routineActivityId: string;
109
109
  }
110
110
 
111
111
  export type CalendarScheduleFrom =
@@ -30,7 +30,8 @@ export type StreamChatSessionType =
30
30
  | "meal"
31
31
  | "task"
32
32
  | "general"
33
- | "recommendation";
33
+ | "recommendation"
34
+ | "scheduler";
34
35
 
35
36
  export interface SchedulerSession {
36
37
  schedulerSessionId: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@demind-inc/core",
3
- "version": "1.6.80",
3
+ "version": "1.6.82",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "scripts": {