@demind-inc/core 1.5.11 → 1.5.13

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.
@@ -15,6 +15,7 @@ export interface FeatureFlags {
15
15
  FF_new_onboarding_web?: boolean;
16
16
  FF_circadian_v3?: boolean;
17
17
  FF_action_screen?: boolean;
18
+ FF_ai_scheduler_chat_v4?: boolean;
18
19
  release_logs?: {
19
20
  releases: ReleaseLog[];
20
21
  };
@@ -13,8 +13,8 @@ export type ChatSessionType = "scheduler" | "recommendation";
13
13
  export interface SchedulerSession {
14
14
  schedulerSessionId: string;
15
15
  messages: SessionMessage[];
16
- scheduleOutput: any;
17
- deltaOutput?: any;
16
+ scheduleOutput: string;
17
+ deltaOutput?: string;
18
18
  createdAt: string;
19
19
  sessionType: ChatSessionType;
20
20
  }
@@ -28,7 +28,7 @@ export interface SessionMessage {
28
28
  export interface RecommendationSession {
29
29
  recSessionId: string;
30
30
  messages: SessionMessage[];
31
- recommendations: any;
31
+ recommendations: string;
32
32
  createdAt: string;
33
33
  sessionType: ChatSessionType;
34
34
  }
@@ -15,6 +15,7 @@ export interface FeatureFlags {
15
15
  FF_new_onboarding_web?: boolean;
16
16
  FF_circadian_v3?: boolean;
17
17
  FF_action_screen?: boolean;
18
+ FF_ai_scheduler_chat_v4?: boolean;
18
19
  release_logs?: {
19
20
  releases: ReleaseLog[];
20
21
  };
@@ -16,8 +16,8 @@ export type ChatSessionType = "scheduler" | "recommendation";
16
16
  export interface SchedulerSession {
17
17
  schedulerSessionId: string;
18
18
  messages: SessionMessage[];
19
- scheduleOutput: any; // json
20
- deltaOutput?: any; // json (output_schedule - schedule)
19
+ scheduleOutput: string; // json
20
+ deltaOutput?: string; // json (output_schedule - schedule)
21
21
  createdAt: string;
22
22
  sessionType: ChatSessionType;
23
23
  }
@@ -34,7 +34,7 @@ export interface SessionMessage {
34
34
  export interface RecommendationSession {
35
35
  recSessionId: string;
36
36
  messages: SessionMessage[];
37
- recommendations: any; // json
37
+ recommendations: string; // json
38
38
  createdAt: string;
39
39
  sessionType: ChatSessionType;
40
40
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@demind-inc/core",
3
- "version": "1.5.11",
3
+ "version": "1.5.13",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "scripts": {