@deepdesk/deepdesk-sdk 17.0.0-rc.11 → 17.0.0-rc.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.
- package/dist/index.cjs.js +5 -5
- package/dist/index.d.mts +7 -16
- package/dist/index.d.ts +7 -16
- package/dist/index.esm.js +5 -5
- package/dist/index.iife.js +3 -3
- package/package.json +1 -1
- package/styles/index.js +1 -1
- package/styles.css +1 -1
- package/widget.css +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -772,27 +772,17 @@ declare namespace Server {
|
|
|
772
772
|
sticky_messages: boolean;
|
|
773
773
|
recommend_text_suggestions: boolean;
|
|
774
774
|
assisted_intake: boolean;
|
|
775
|
-
autocomplete_with_text_suggestions: boolean;
|
|
776
775
|
entities_command: boolean;
|
|
777
|
-
|
|
778
|
-
|
|
779
|
-
|
|
780
|
-
|
|
781
|
-
* Old rule group
|
|
782
|
-
* @deprecated in favor of `summarizer_assistant_new`
|
|
783
|
-
*/
|
|
784
|
-
summarizer_assistant?: string;
|
|
785
|
-
summarizer_assistant_new?: string;
|
|
786
|
-
conversation_accepted_assistant?: string;
|
|
787
|
-
conversation_new_message_assistant?: string;
|
|
788
|
-
conversation_ended_assistant?: string;
|
|
776
|
+
summarizer_assistant_new: string | null;
|
|
777
|
+
conversation_accepted_assistant: string | null;
|
|
778
|
+
conversation_new_message_assistant: string | null;
|
|
779
|
+
conversation_ended_assistant: string | null;
|
|
789
780
|
/**
|
|
790
781
|
* @deprecated in favor of `knowledge_assistant_new`
|
|
791
782
|
*/
|
|
792
|
-
knowledge_assistant: string;
|
|
793
|
-
knowledge_assistant_new: string;
|
|
783
|
+
knowledge_assistant: string | null;
|
|
784
|
+
knowledge_assistant_new: string | null;
|
|
794
785
|
on_demand_assistants: Array<OnDemandAssistant>;
|
|
795
|
-
authorized_groups: number[];
|
|
796
786
|
active_config: {
|
|
797
787
|
default_locale: string;
|
|
798
788
|
};
|
|
@@ -1852,6 +1842,7 @@ declare const styles$2: {
|
|
|
1852
1842
|
readonly "link": string;
|
|
1853
1843
|
readonly "loginText": string;
|
|
1854
1844
|
readonly "root": string;
|
|
1845
|
+
readonly "shortcut": string;
|
|
1855
1846
|
readonly "shortcutList": string;
|
|
1856
1847
|
readonly "stateText": string;
|
|
1857
1848
|
};
|
package/dist/index.d.ts
CHANGED
|
@@ -772,27 +772,17 @@ declare namespace Server {
|
|
|
772
772
|
sticky_messages: boolean;
|
|
773
773
|
recommend_text_suggestions: boolean;
|
|
774
774
|
assisted_intake: boolean;
|
|
775
|
-
autocomplete_with_text_suggestions: boolean;
|
|
776
775
|
entities_command: boolean;
|
|
777
|
-
|
|
778
|
-
|
|
779
|
-
|
|
780
|
-
|
|
781
|
-
* Old rule group
|
|
782
|
-
* @deprecated in favor of `summarizer_assistant_new`
|
|
783
|
-
*/
|
|
784
|
-
summarizer_assistant?: string;
|
|
785
|
-
summarizer_assistant_new?: string;
|
|
786
|
-
conversation_accepted_assistant?: string;
|
|
787
|
-
conversation_new_message_assistant?: string;
|
|
788
|
-
conversation_ended_assistant?: string;
|
|
776
|
+
summarizer_assistant_new: string | null;
|
|
777
|
+
conversation_accepted_assistant: string | null;
|
|
778
|
+
conversation_new_message_assistant: string | null;
|
|
779
|
+
conversation_ended_assistant: string | null;
|
|
789
780
|
/**
|
|
790
781
|
* @deprecated in favor of `knowledge_assistant_new`
|
|
791
782
|
*/
|
|
792
|
-
knowledge_assistant: string;
|
|
793
|
-
knowledge_assistant_new: string;
|
|
783
|
+
knowledge_assistant: string | null;
|
|
784
|
+
knowledge_assistant_new: string | null;
|
|
794
785
|
on_demand_assistants: Array<OnDemandAssistant>;
|
|
795
|
-
authorized_groups: number[];
|
|
796
786
|
active_config: {
|
|
797
787
|
default_locale: string;
|
|
798
788
|
};
|
|
@@ -1852,6 +1842,7 @@ declare const styles$2: {
|
|
|
1852
1842
|
readonly "link": string;
|
|
1853
1843
|
readonly "loginText": string;
|
|
1854
1844
|
readonly "root": string;
|
|
1845
|
+
readonly "shortcut": string;
|
|
1855
1846
|
readonly "shortcutList": string;
|
|
1856
1847
|
readonly "stateText": string;
|
|
1857
1848
|
};
|