@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/README.md +3 -1
- package/dist/components/Message.d.ts.map +1 -1
- package/dist/components/MessageList.d.ts.map +1 -1
- package/dist/fusioni-sdk.umd.js +32 -6
- package/dist/fusioni-sdk.umd.js.map +1 -1
- package/dist/i18n/el.d.ts +3 -0
- package/dist/i18n/el.d.ts.map +1 -1
- package/dist/i18n/en.d.ts +3 -0
- package/dist/i18n/en.d.ts.map +1 -1
- package/dist/i18n/index.d.ts +6 -0
- package/dist/i18n/index.d.ts.map +1 -1
- package/dist/index.css +384 -338
- package/dist/index.d.ts +5 -1
- package/dist/index.esm.js +31 -5
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +31 -5
- package/dist/index.js.map +1 -1
- package/dist/services/SDKClientService.d.ts +1 -0
- package/dist/services/SDKClientService.d.ts.map +1 -1
- package/dist/test.d.ts.map +1 -1
- package/dist/types/index.d.ts +2 -1
- package/dist/types/index.d.ts.map +1 -1
- package/package.json +1 -1
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";
|