@deepdesk/deepdesk-sdk 19.0.1 → 19.0.2-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 +14 -8
- package/dist/index.d.mts +7 -6
- package/dist/index.d.ts +7 -6
- package/dist/index.esm.js +14 -8
- package/dist/index.iife.js +41 -35
- package/package.json +2 -2
- package/styles/index.js +1 -1
- package/styles.css +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -1377,6 +1377,7 @@ declare const reducers: redux.Reducer<{
|
|
|
1377
1377
|
searchTriggerKey: string;
|
|
1378
1378
|
visible: boolean;
|
|
1379
1379
|
insertLink: boolean;
|
|
1380
|
+
insertLinkAsHtml: boolean;
|
|
1380
1381
|
addToPersonalCollection: boolean;
|
|
1381
1382
|
inlineSuggestions: boolean;
|
|
1382
1383
|
suggestionsPlacement: "inline" | "above" | "below";
|
|
@@ -1388,7 +1389,6 @@ declare const reducers: redux.Reducer<{
|
|
|
1388
1389
|
enableSuggestionFeedback: boolean;
|
|
1389
1390
|
enableFeedbackForm: boolean;
|
|
1390
1391
|
hasKeyboardInput: boolean;
|
|
1391
|
-
truncateAssistantSuggestion: boolean;
|
|
1392
1392
|
};
|
|
1393
1393
|
profile: State$8;
|
|
1394
1394
|
search: State$b;
|
|
@@ -1441,6 +1441,7 @@ declare const reducers: redux.Reducer<{
|
|
|
1441
1441
|
searchTriggerKey: string;
|
|
1442
1442
|
visible: boolean;
|
|
1443
1443
|
insertLink: boolean;
|
|
1444
|
+
insertLinkAsHtml: boolean;
|
|
1444
1445
|
addToPersonalCollection: boolean;
|
|
1445
1446
|
inlineSuggestions: boolean;
|
|
1446
1447
|
suggestionsPlacement: "inline" | "above" | "below";
|
|
@@ -1452,7 +1453,6 @@ declare const reducers: redux.Reducer<{
|
|
|
1452
1453
|
enableSuggestionFeedback: boolean;
|
|
1453
1454
|
enableFeedbackForm: boolean;
|
|
1454
1455
|
hasKeyboardInput: boolean;
|
|
1455
|
-
truncateAssistantSuggestion: boolean;
|
|
1456
1456
|
} | undefined;
|
|
1457
1457
|
profile: State$8 | undefined;
|
|
1458
1458
|
search: State$b | undefined;
|
|
@@ -1506,6 +1506,7 @@ declare function createStore(config: StoreConfig): _reduxjs_toolkit.EnhancedStor
|
|
|
1506
1506
|
searchTriggerKey: string;
|
|
1507
1507
|
visible: boolean;
|
|
1508
1508
|
insertLink: boolean;
|
|
1509
|
+
insertLinkAsHtml: boolean;
|
|
1509
1510
|
addToPersonalCollection: boolean;
|
|
1510
1511
|
inlineSuggestions: boolean;
|
|
1511
1512
|
suggestionsPlacement: "inline" | "above" | "below";
|
|
@@ -1517,7 +1518,6 @@ declare function createStore(config: StoreConfig): _reduxjs_toolkit.EnhancedStor
|
|
|
1517
1518
|
enableSuggestionFeedback: boolean;
|
|
1518
1519
|
enableFeedbackForm: boolean;
|
|
1519
1520
|
hasKeyboardInput: boolean;
|
|
1520
|
-
truncateAssistantSuggestion: boolean;
|
|
1521
1521
|
};
|
|
1522
1522
|
profile: State$8;
|
|
1523
1523
|
search: State$b;
|
|
@@ -1898,6 +1898,7 @@ type State = {
|
|
|
1898
1898
|
searchTriggerKey: string;
|
|
1899
1899
|
visible: boolean;
|
|
1900
1900
|
insertLink: boolean;
|
|
1901
|
+
insertLinkAsHtml: boolean;
|
|
1901
1902
|
addToPersonalCollection: boolean;
|
|
1902
1903
|
inlineSuggestions: boolean;
|
|
1903
1904
|
suggestionsPlacement: 'inline' | 'above' | 'below';
|
|
@@ -1909,7 +1910,6 @@ type State = {
|
|
|
1909
1910
|
enableSuggestionFeedback: boolean;
|
|
1910
1911
|
enableFeedbackForm: boolean;
|
|
1911
1912
|
hasKeyboardInput: boolean;
|
|
1912
|
-
truncateAssistantSuggestion: boolean;
|
|
1913
1913
|
};
|
|
1914
1914
|
type Settings = State;
|
|
1915
1915
|
declare const set: _reduxjs_toolkit.ActionCreatorWithPayload<Partial<State>, "settings/set">;
|
|
@@ -2019,6 +2019,7 @@ interface WidgetOptions {
|
|
|
2019
2019
|
customStyles?: WidgetCustomStyles;
|
|
2020
2020
|
showImages?: boolean;
|
|
2021
2021
|
isEmbedded?: boolean;
|
|
2022
|
+
insertLinkAsHtml?: boolean;
|
|
2022
2023
|
knowledgeAssist?: KnowledgeAssistOptions;
|
|
2023
2024
|
assistantOptions?: Omit<EvaluateInput, 'assistantCode'>;
|
|
2024
2025
|
}
|
|
@@ -2123,6 +2124,7 @@ declare class DeepdeskSDK {
|
|
|
2123
2124
|
searchTriggerKey: string;
|
|
2124
2125
|
visible: boolean;
|
|
2125
2126
|
insertLink: boolean;
|
|
2127
|
+
insertLinkAsHtml: boolean;
|
|
2126
2128
|
addToPersonalCollection: boolean;
|
|
2127
2129
|
inlineSuggestions: boolean;
|
|
2128
2130
|
suggestionsPlacement: "inline" | "above" | "below";
|
|
@@ -2134,7 +2136,6 @@ declare class DeepdeskSDK {
|
|
|
2134
2136
|
enableSuggestionFeedback: boolean;
|
|
2135
2137
|
enableFeedbackForm: boolean;
|
|
2136
2138
|
hasKeyboardInput: boolean;
|
|
2137
|
-
truncateAssistantSuggestion: boolean;
|
|
2138
2139
|
};
|
|
2139
2140
|
profile: State$8;
|
|
2140
2141
|
search: State$b;
|
|
@@ -2170,6 +2171,7 @@ declare class DeepdeskSDK {
|
|
|
2170
2171
|
searchTriggerKey: string;
|
|
2171
2172
|
visible: boolean;
|
|
2172
2173
|
insertLink: boolean;
|
|
2174
|
+
insertLinkAsHtml: boolean;
|
|
2173
2175
|
addToPersonalCollection: boolean;
|
|
2174
2176
|
inlineSuggestions: boolean;
|
|
2175
2177
|
suggestionsPlacement: "inline" | "above" | "below";
|
|
@@ -2181,7 +2183,6 @@ declare class DeepdeskSDK {
|
|
|
2181
2183
|
enableSuggestionFeedback: boolean;
|
|
2182
2184
|
enableFeedbackForm: boolean;
|
|
2183
2185
|
hasKeyboardInput: boolean;
|
|
2184
|
-
truncateAssistantSuggestion: boolean;
|
|
2185
2186
|
};
|
|
2186
2187
|
get selectedTextSuggestion(): TextSuggestion;
|
|
2187
2188
|
/**
|
package/dist/index.d.ts
CHANGED
|
@@ -1377,6 +1377,7 @@ declare const reducers: redux.Reducer<{
|
|
|
1377
1377
|
searchTriggerKey: string;
|
|
1378
1378
|
visible: boolean;
|
|
1379
1379
|
insertLink: boolean;
|
|
1380
|
+
insertLinkAsHtml: boolean;
|
|
1380
1381
|
addToPersonalCollection: boolean;
|
|
1381
1382
|
inlineSuggestions: boolean;
|
|
1382
1383
|
suggestionsPlacement: "inline" | "above" | "below";
|
|
@@ -1388,7 +1389,6 @@ declare const reducers: redux.Reducer<{
|
|
|
1388
1389
|
enableSuggestionFeedback: boolean;
|
|
1389
1390
|
enableFeedbackForm: boolean;
|
|
1390
1391
|
hasKeyboardInput: boolean;
|
|
1391
|
-
truncateAssistantSuggestion: boolean;
|
|
1392
1392
|
};
|
|
1393
1393
|
profile: State$8;
|
|
1394
1394
|
search: State$b;
|
|
@@ -1441,6 +1441,7 @@ declare const reducers: redux.Reducer<{
|
|
|
1441
1441
|
searchTriggerKey: string;
|
|
1442
1442
|
visible: boolean;
|
|
1443
1443
|
insertLink: boolean;
|
|
1444
|
+
insertLinkAsHtml: boolean;
|
|
1444
1445
|
addToPersonalCollection: boolean;
|
|
1445
1446
|
inlineSuggestions: boolean;
|
|
1446
1447
|
suggestionsPlacement: "inline" | "above" | "below";
|
|
@@ -1452,7 +1453,6 @@ declare const reducers: redux.Reducer<{
|
|
|
1452
1453
|
enableSuggestionFeedback: boolean;
|
|
1453
1454
|
enableFeedbackForm: boolean;
|
|
1454
1455
|
hasKeyboardInput: boolean;
|
|
1455
|
-
truncateAssistantSuggestion: boolean;
|
|
1456
1456
|
} | undefined;
|
|
1457
1457
|
profile: State$8 | undefined;
|
|
1458
1458
|
search: State$b | undefined;
|
|
@@ -1506,6 +1506,7 @@ declare function createStore(config: StoreConfig): _reduxjs_toolkit.EnhancedStor
|
|
|
1506
1506
|
searchTriggerKey: string;
|
|
1507
1507
|
visible: boolean;
|
|
1508
1508
|
insertLink: boolean;
|
|
1509
|
+
insertLinkAsHtml: boolean;
|
|
1509
1510
|
addToPersonalCollection: boolean;
|
|
1510
1511
|
inlineSuggestions: boolean;
|
|
1511
1512
|
suggestionsPlacement: "inline" | "above" | "below";
|
|
@@ -1517,7 +1518,6 @@ declare function createStore(config: StoreConfig): _reduxjs_toolkit.EnhancedStor
|
|
|
1517
1518
|
enableSuggestionFeedback: boolean;
|
|
1518
1519
|
enableFeedbackForm: boolean;
|
|
1519
1520
|
hasKeyboardInput: boolean;
|
|
1520
|
-
truncateAssistantSuggestion: boolean;
|
|
1521
1521
|
};
|
|
1522
1522
|
profile: State$8;
|
|
1523
1523
|
search: State$b;
|
|
@@ -1898,6 +1898,7 @@ type State = {
|
|
|
1898
1898
|
searchTriggerKey: string;
|
|
1899
1899
|
visible: boolean;
|
|
1900
1900
|
insertLink: boolean;
|
|
1901
|
+
insertLinkAsHtml: boolean;
|
|
1901
1902
|
addToPersonalCollection: boolean;
|
|
1902
1903
|
inlineSuggestions: boolean;
|
|
1903
1904
|
suggestionsPlacement: 'inline' | 'above' | 'below';
|
|
@@ -1909,7 +1910,6 @@ type State = {
|
|
|
1909
1910
|
enableSuggestionFeedback: boolean;
|
|
1910
1911
|
enableFeedbackForm: boolean;
|
|
1911
1912
|
hasKeyboardInput: boolean;
|
|
1912
|
-
truncateAssistantSuggestion: boolean;
|
|
1913
1913
|
};
|
|
1914
1914
|
type Settings = State;
|
|
1915
1915
|
declare const set: _reduxjs_toolkit.ActionCreatorWithPayload<Partial<State>, "settings/set">;
|
|
@@ -2019,6 +2019,7 @@ interface WidgetOptions {
|
|
|
2019
2019
|
customStyles?: WidgetCustomStyles;
|
|
2020
2020
|
showImages?: boolean;
|
|
2021
2021
|
isEmbedded?: boolean;
|
|
2022
|
+
insertLinkAsHtml?: boolean;
|
|
2022
2023
|
knowledgeAssist?: KnowledgeAssistOptions;
|
|
2023
2024
|
assistantOptions?: Omit<EvaluateInput, 'assistantCode'>;
|
|
2024
2025
|
}
|
|
@@ -2123,6 +2124,7 @@ declare class DeepdeskSDK {
|
|
|
2123
2124
|
searchTriggerKey: string;
|
|
2124
2125
|
visible: boolean;
|
|
2125
2126
|
insertLink: boolean;
|
|
2127
|
+
insertLinkAsHtml: boolean;
|
|
2126
2128
|
addToPersonalCollection: boolean;
|
|
2127
2129
|
inlineSuggestions: boolean;
|
|
2128
2130
|
suggestionsPlacement: "inline" | "above" | "below";
|
|
@@ -2134,7 +2136,6 @@ declare class DeepdeskSDK {
|
|
|
2134
2136
|
enableSuggestionFeedback: boolean;
|
|
2135
2137
|
enableFeedbackForm: boolean;
|
|
2136
2138
|
hasKeyboardInput: boolean;
|
|
2137
|
-
truncateAssistantSuggestion: boolean;
|
|
2138
2139
|
};
|
|
2139
2140
|
profile: State$8;
|
|
2140
2141
|
search: State$b;
|
|
@@ -2170,6 +2171,7 @@ declare class DeepdeskSDK {
|
|
|
2170
2171
|
searchTriggerKey: string;
|
|
2171
2172
|
visible: boolean;
|
|
2172
2173
|
insertLink: boolean;
|
|
2174
|
+
insertLinkAsHtml: boolean;
|
|
2173
2175
|
addToPersonalCollection: boolean;
|
|
2174
2176
|
inlineSuggestions: boolean;
|
|
2175
2177
|
suggestionsPlacement: "inline" | "above" | "below";
|
|
@@ -2181,7 +2183,6 @@ declare class DeepdeskSDK {
|
|
|
2181
2183
|
enableSuggestionFeedback: boolean;
|
|
2182
2184
|
enableFeedbackForm: boolean;
|
|
2183
2185
|
hasKeyboardInput: boolean;
|
|
2184
|
-
truncateAssistantSuggestion: boolean;
|
|
2185
2186
|
};
|
|
2186
2187
|
get selectedTextSuggestion(): TextSuggestion;
|
|
2187
2188
|
/**
|