@demind-inc/core 1.5.26 → 1.5.28

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.
@@ -81,6 +81,7 @@ export interface CalendarAutoScheduleFrom {
81
81
  from: CalendarScheduleFrom;
82
82
  id: string;
83
83
  chatSessionId?: string;
84
+ predicted?: boolean;
84
85
  }
85
86
  export type CalendarEventShowAs = "busy" | "available";
86
87
  export type CalendarEventVisibility = "default" | "public" | "private" | "confidential";
@@ -23,7 +23,7 @@ export interface SchedulerSession {
23
23
  export interface TimeSummary {
24
24
  startTime: string;
25
25
  endTime: string;
26
- description: number;
26
+ description: string;
27
27
  }
28
28
  export interface SleepSession {
29
29
  sleepSessionId: string;
@@ -11,6 +11,7 @@ export interface Metrics {
11
11
  movement?: MetricMovement[];
12
12
  basicTimezone?: string;
13
13
  targetUserId?: string;
14
+ baseCalendarId?: string;
14
15
  }
15
16
  export interface MetricSleep {
16
17
  metricSleepId: string;
@@ -102,6 +102,7 @@ export interface CalendarAutoScheduleFrom {
102
102
  from: CalendarScheduleFrom;
103
103
  id: string;
104
104
  chatSessionId?: string;
105
+ predicted?: boolean;
105
106
  }
106
107
 
107
108
  export type CalendarEventShowAs = "busy" | "available";
@@ -27,7 +27,7 @@ export interface SchedulerSession {
27
27
  export interface TimeSummary {
28
28
  startTime: string;
29
29
  endTime: string;
30
- description: number;
30
+ description: string;
31
31
  }
32
32
 
33
33
  export interface SleepSession {
@@ -12,6 +12,7 @@ export interface Metrics {
12
12
  movement?: MetricMovement[];
13
13
  basicTimezone?: string;
14
14
  targetUserId?: string;
15
+ baseCalendarId?: string;
15
16
  }
16
17
 
17
18
  export interface MetricSleep {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@demind-inc/core",
3
- "version": "1.5.26",
3
+ "version": "1.5.28",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "scripts": {