@fusioni/client-sdk 1.1.22 → 1.1.24

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.
package/dist/index.d.ts CHANGED
@@ -29,7 +29,7 @@ interface FusioniMemoryMessage {
29
29
  has_error?: boolean;
30
30
  role: 'user' | 'assistant' | 'system';
31
31
  keywords: string[] | null;
32
- thoughts: string | null;
32
+ thoughts: string | string[] | Record<string, unknown> | null;
33
33
  created: Date;
34
34
  content: string;
35
35
  loading: boolean;
@@ -96,6 +96,7 @@ interface FusioniSDKConfig {
96
96
  showThemeToggle?: boolean;
97
97
  showFullscreenToggle?: boolean;
98
98
  showLanguageSwitcher?: boolean;
99
+ showThoughts?: boolean;
99
100
  position?: 'bottom-right' | 'bottom-left' | 'top-right' | 'top-left';
100
101
  primaryColor?: string;
101
102
  showConversationList?: boolean;
@@ -295,6 +296,9 @@ declare const en: {
295
296
  readonly cancel: "Cancel";
296
297
  };
297
298
  };
299
+ readonly thoughts: {
300
+ readonly title: "Thoughts";
301
+ };
298
302
  readonly connection: {
299
303
  readonly connected: "Real-time updates connected";
300
304
  readonly disconnected: "Real-time updates disconnected";