@deepdesk/deepdesk-sdk 17.0.1-beta.1 → 17.0.1-beta.2
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 +4 -0
- package/dist/index.d.ts +4 -0
- package/dist/index.esm.js +8 -8
- package/dist/index.iife.js +43 -43
- package/package.json +2 -1
- package/styles/index.js +1 -1
- package/styles.css +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -267,6 +267,7 @@ declare enum Locale {
|
|
|
267
267
|
}
|
|
268
268
|
interface SuggestionApiMetrics {
|
|
269
269
|
source?: string;
|
|
270
|
+
assistantCode?: string;
|
|
270
271
|
score?: number;
|
|
271
272
|
abVariant?: string;
|
|
272
273
|
abTestName?: string;
|
|
@@ -1263,6 +1264,7 @@ type State$8 = {
|
|
|
1263
1264
|
mixedSuggestion: TextSuggestion | null;
|
|
1264
1265
|
metrics: MetricState;
|
|
1265
1266
|
textSuggestions: TextSuggestion[];
|
|
1267
|
+
pinnedSuggestions: TextSuggestion[];
|
|
1266
1268
|
selectedSuggestionIndex: number;
|
|
1267
1269
|
};
|
|
1268
1270
|
|
|
@@ -1786,6 +1788,8 @@ type TabCompletionStyles = typeof styles$4;
|
|
|
1786
1788
|
declare const styles$3: {
|
|
1787
1789
|
readonly "actions": string;
|
|
1788
1790
|
readonly "badge": string;
|
|
1791
|
+
readonly "closeIcon": string;
|
|
1792
|
+
readonly "closeIconContainer": string;
|
|
1789
1793
|
readonly "formattedText": string;
|
|
1790
1794
|
readonly "root": string;
|
|
1791
1795
|
};
|
package/dist/index.d.ts
CHANGED
|
@@ -267,6 +267,7 @@ declare enum Locale {
|
|
|
267
267
|
}
|
|
268
268
|
interface SuggestionApiMetrics {
|
|
269
269
|
source?: string;
|
|
270
|
+
assistantCode?: string;
|
|
270
271
|
score?: number;
|
|
271
272
|
abVariant?: string;
|
|
272
273
|
abTestName?: string;
|
|
@@ -1263,6 +1264,7 @@ type State$8 = {
|
|
|
1263
1264
|
mixedSuggestion: TextSuggestion | null;
|
|
1264
1265
|
metrics: MetricState;
|
|
1265
1266
|
textSuggestions: TextSuggestion[];
|
|
1267
|
+
pinnedSuggestions: TextSuggestion[];
|
|
1266
1268
|
selectedSuggestionIndex: number;
|
|
1267
1269
|
};
|
|
1268
1270
|
|
|
@@ -1786,6 +1788,8 @@ type TabCompletionStyles = typeof styles$4;
|
|
|
1786
1788
|
declare const styles$3: {
|
|
1787
1789
|
readonly "actions": string;
|
|
1788
1790
|
readonly "badge": string;
|
|
1791
|
+
readonly "closeIcon": string;
|
|
1792
|
+
readonly "closeIconContainer": string;
|
|
1789
1793
|
readonly "formattedText": string;
|
|
1790
1794
|
readonly "root": string;
|
|
1791
1795
|
};
|