@deepdesk/deepdesk-sdk 17.1.0 → 17.1.1-beta.1
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.cjs.js +2 -2
- package/dist/index.d.mts +10 -1
- package/dist/index.d.ts +10 -1
- package/dist/index.esm.js +2 -2
- package/dist/index.iife.js +15 -15
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -736,11 +736,20 @@ declare namespace Server {
|
|
|
736
736
|
image_search: boolean;
|
|
737
737
|
sticky_messages: boolean;
|
|
738
738
|
recommend_text_suggestions: boolean;
|
|
739
|
-
assisted_intake: boolean;
|
|
740
739
|
entities_command: boolean;
|
|
740
|
+
live_translation_enabled: boolean;
|
|
741
741
|
summarizer_assistant_new: string | null;
|
|
742
|
+
/**
|
|
743
|
+
* @deprecated in favor of `on_conversation_accepted_assistants`
|
|
744
|
+
*/
|
|
742
745
|
conversation_accepted_assistant: string | null;
|
|
746
|
+
/**
|
|
747
|
+
* @deprecated in favor of `on_conversation_new_message_assistants`
|
|
748
|
+
*/
|
|
743
749
|
conversation_new_message_assistant: string | null;
|
|
750
|
+
/**
|
|
751
|
+
* @deprecated in favor of `on_conversation_ended_assistants`
|
|
752
|
+
*/
|
|
744
753
|
conversation_ended_assistant: string | null;
|
|
745
754
|
on_conversation_accepted_assistants: Array<ConversationAssistant>;
|
|
746
755
|
on_conversation_new_message_assistants: Array<ConversationAssistant>;
|
package/dist/index.d.ts
CHANGED
|
@@ -736,11 +736,20 @@ declare namespace Server {
|
|
|
736
736
|
image_search: boolean;
|
|
737
737
|
sticky_messages: boolean;
|
|
738
738
|
recommend_text_suggestions: boolean;
|
|
739
|
-
assisted_intake: boolean;
|
|
740
739
|
entities_command: boolean;
|
|
740
|
+
live_translation_enabled: boolean;
|
|
741
741
|
summarizer_assistant_new: string | null;
|
|
742
|
+
/**
|
|
743
|
+
* @deprecated in favor of `on_conversation_accepted_assistants`
|
|
744
|
+
*/
|
|
742
745
|
conversation_accepted_assistant: string | null;
|
|
746
|
+
/**
|
|
747
|
+
* @deprecated in favor of `on_conversation_new_message_assistants`
|
|
748
|
+
*/
|
|
743
749
|
conversation_new_message_assistant: string | null;
|
|
750
|
+
/**
|
|
751
|
+
* @deprecated in favor of `on_conversation_ended_assistants`
|
|
752
|
+
*/
|
|
744
753
|
conversation_ended_assistant: string | null;
|
|
745
754
|
on_conversation_accepted_assistants: Array<ConversationAssistant>;
|
|
746
755
|
on_conversation_new_message_assistants: Array<ConversationAssistant>;
|