@deepdesk/deepdesk-sdk 19.0.0 → 19.0.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 +8 -8
- package/dist/index.d.mts +9 -0
- package/dist/index.d.ts +9 -0
- package/dist/index.esm.js +8 -8
- package/dist/index.iife.js +18 -18
- package/package.json +1 -1
- package/styles/index.js +1 -1
- package/styles.css +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -1388,6 +1388,7 @@ declare const reducers: redux.Reducer<{
|
|
|
1388
1388
|
enableSuggestionFeedback: boolean;
|
|
1389
1389
|
enableFeedbackForm: boolean;
|
|
1390
1390
|
hasKeyboardInput: boolean;
|
|
1391
|
+
truncateAssistantSuggestion: boolean;
|
|
1391
1392
|
};
|
|
1392
1393
|
profile: State$8;
|
|
1393
1394
|
search: State$b;
|
|
@@ -1451,6 +1452,7 @@ declare const reducers: redux.Reducer<{
|
|
|
1451
1452
|
enableSuggestionFeedback: boolean;
|
|
1452
1453
|
enableFeedbackForm: boolean;
|
|
1453
1454
|
hasKeyboardInput: boolean;
|
|
1455
|
+
truncateAssistantSuggestion: boolean;
|
|
1454
1456
|
} | undefined;
|
|
1455
1457
|
profile: State$8 | undefined;
|
|
1456
1458
|
search: State$b | undefined;
|
|
@@ -1515,6 +1517,7 @@ declare function createStore(config: StoreConfig): _reduxjs_toolkit.EnhancedStor
|
|
|
1515
1517
|
enableSuggestionFeedback: boolean;
|
|
1516
1518
|
enableFeedbackForm: boolean;
|
|
1517
1519
|
hasKeyboardInput: boolean;
|
|
1520
|
+
truncateAssistantSuggestion: boolean;
|
|
1518
1521
|
};
|
|
1519
1522
|
profile: State$8;
|
|
1520
1523
|
search: State$b;
|
|
@@ -1770,10 +1773,13 @@ type TabCompletionStyles = typeof styles$4;
|
|
|
1770
1773
|
|
|
1771
1774
|
declare const styles$3: {
|
|
1772
1775
|
readonly "actions": string;
|
|
1776
|
+
readonly "assistantBadge": string;
|
|
1777
|
+
readonly "assistantContainer": string;
|
|
1773
1778
|
readonly "badge": string;
|
|
1774
1779
|
readonly "closeIcon": string;
|
|
1775
1780
|
readonly "closeIconContainer": string;
|
|
1776
1781
|
readonly "formattedText": string;
|
|
1782
|
+
readonly "formattedTextTruncated": string;
|
|
1777
1783
|
readonly "root": string;
|
|
1778
1784
|
};
|
|
1779
1785
|
|
|
@@ -1903,6 +1909,7 @@ type State = {
|
|
|
1903
1909
|
enableSuggestionFeedback: boolean;
|
|
1904
1910
|
enableFeedbackForm: boolean;
|
|
1905
1911
|
hasKeyboardInput: boolean;
|
|
1912
|
+
truncateAssistantSuggestion: boolean;
|
|
1906
1913
|
};
|
|
1907
1914
|
type Settings = State;
|
|
1908
1915
|
declare const set: _reduxjs_toolkit.ActionCreatorWithPayload<Partial<State>, "settings/set">;
|
|
@@ -2127,6 +2134,7 @@ declare class DeepdeskSDK {
|
|
|
2127
2134
|
enableSuggestionFeedback: boolean;
|
|
2128
2135
|
enableFeedbackForm: boolean;
|
|
2129
2136
|
hasKeyboardInput: boolean;
|
|
2137
|
+
truncateAssistantSuggestion: boolean;
|
|
2130
2138
|
};
|
|
2131
2139
|
profile: State$8;
|
|
2132
2140
|
search: State$b;
|
|
@@ -2173,6 +2181,7 @@ declare class DeepdeskSDK {
|
|
|
2173
2181
|
enableSuggestionFeedback: boolean;
|
|
2174
2182
|
enableFeedbackForm: boolean;
|
|
2175
2183
|
hasKeyboardInput: boolean;
|
|
2184
|
+
truncateAssistantSuggestion: boolean;
|
|
2176
2185
|
};
|
|
2177
2186
|
get selectedTextSuggestion(): TextSuggestion;
|
|
2178
2187
|
/**
|
package/dist/index.d.ts
CHANGED
|
@@ -1388,6 +1388,7 @@ declare const reducers: redux.Reducer<{
|
|
|
1388
1388
|
enableSuggestionFeedback: boolean;
|
|
1389
1389
|
enableFeedbackForm: boolean;
|
|
1390
1390
|
hasKeyboardInput: boolean;
|
|
1391
|
+
truncateAssistantSuggestion: boolean;
|
|
1391
1392
|
};
|
|
1392
1393
|
profile: State$8;
|
|
1393
1394
|
search: State$b;
|
|
@@ -1451,6 +1452,7 @@ declare const reducers: redux.Reducer<{
|
|
|
1451
1452
|
enableSuggestionFeedback: boolean;
|
|
1452
1453
|
enableFeedbackForm: boolean;
|
|
1453
1454
|
hasKeyboardInput: boolean;
|
|
1455
|
+
truncateAssistantSuggestion: boolean;
|
|
1454
1456
|
} | undefined;
|
|
1455
1457
|
profile: State$8 | undefined;
|
|
1456
1458
|
search: State$b | undefined;
|
|
@@ -1515,6 +1517,7 @@ declare function createStore(config: StoreConfig): _reduxjs_toolkit.EnhancedStor
|
|
|
1515
1517
|
enableSuggestionFeedback: boolean;
|
|
1516
1518
|
enableFeedbackForm: boolean;
|
|
1517
1519
|
hasKeyboardInput: boolean;
|
|
1520
|
+
truncateAssistantSuggestion: boolean;
|
|
1518
1521
|
};
|
|
1519
1522
|
profile: State$8;
|
|
1520
1523
|
search: State$b;
|
|
@@ -1770,10 +1773,13 @@ type TabCompletionStyles = typeof styles$4;
|
|
|
1770
1773
|
|
|
1771
1774
|
declare const styles$3: {
|
|
1772
1775
|
readonly "actions": string;
|
|
1776
|
+
readonly "assistantBadge": string;
|
|
1777
|
+
readonly "assistantContainer": string;
|
|
1773
1778
|
readonly "badge": string;
|
|
1774
1779
|
readonly "closeIcon": string;
|
|
1775
1780
|
readonly "closeIconContainer": string;
|
|
1776
1781
|
readonly "formattedText": string;
|
|
1782
|
+
readonly "formattedTextTruncated": string;
|
|
1777
1783
|
readonly "root": string;
|
|
1778
1784
|
};
|
|
1779
1785
|
|
|
@@ -1903,6 +1909,7 @@ type State = {
|
|
|
1903
1909
|
enableSuggestionFeedback: boolean;
|
|
1904
1910
|
enableFeedbackForm: boolean;
|
|
1905
1911
|
hasKeyboardInput: boolean;
|
|
1912
|
+
truncateAssistantSuggestion: boolean;
|
|
1906
1913
|
};
|
|
1907
1914
|
type Settings = State;
|
|
1908
1915
|
declare const set: _reduxjs_toolkit.ActionCreatorWithPayload<Partial<State>, "settings/set">;
|
|
@@ -2127,6 +2134,7 @@ declare class DeepdeskSDK {
|
|
|
2127
2134
|
enableSuggestionFeedback: boolean;
|
|
2128
2135
|
enableFeedbackForm: boolean;
|
|
2129
2136
|
hasKeyboardInput: boolean;
|
|
2137
|
+
truncateAssistantSuggestion: boolean;
|
|
2130
2138
|
};
|
|
2131
2139
|
profile: State$8;
|
|
2132
2140
|
search: State$b;
|
|
@@ -2173,6 +2181,7 @@ declare class DeepdeskSDK {
|
|
|
2173
2181
|
enableSuggestionFeedback: boolean;
|
|
2174
2182
|
enableFeedbackForm: boolean;
|
|
2175
2183
|
hasKeyboardInput: boolean;
|
|
2184
|
+
truncateAssistantSuggestion: boolean;
|
|
2176
2185
|
};
|
|
2177
2186
|
get selectedTextSuggestion(): TextSuggestion;
|
|
2178
2187
|
/**
|