@deepdesk/deepdesk-sdk 10.10.3-beta.3 → 10.10.3-beta.4
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 +6 -6
- package/dist/index.d.mts +2 -1
- package/dist/index.d.ts +2 -1
- package/dist/index.esm.js +6 -6
- package/dist/index.iife.js +12 -12
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -1426,13 +1426,14 @@ type State$4 = {
|
|
|
1426
1426
|
fetchState: FetchState;
|
|
1427
1427
|
};
|
|
1428
1428
|
|
|
1429
|
-
type SearchResultType = string | SearchResultDefaultType;
|
|
1430
1429
|
declare enum SearchResultDefaultType {
|
|
1430
|
+
default = "DEFAULT",
|
|
1431
1431
|
url = "URL",
|
|
1432
1432
|
personal = "PERSONAL",
|
|
1433
1433
|
pinned = "STICKYMESSAGE",
|
|
1434
1434
|
image = "IMAGE"
|
|
1435
1435
|
}
|
|
1436
|
+
type SearchResultType = string | SearchResultDefaultType;
|
|
1436
1437
|
type SearchResult = SearchSuggestion;
|
|
1437
1438
|
interface State$3 {
|
|
1438
1439
|
list: Array<SearchResult>;
|
package/dist/index.d.ts
CHANGED
|
@@ -1426,13 +1426,14 @@ type State$4 = {
|
|
|
1426
1426
|
fetchState: FetchState;
|
|
1427
1427
|
};
|
|
1428
1428
|
|
|
1429
|
-
type SearchResultType = string | SearchResultDefaultType;
|
|
1430
1429
|
declare enum SearchResultDefaultType {
|
|
1430
|
+
default = "DEFAULT",
|
|
1431
1431
|
url = "URL",
|
|
1432
1432
|
personal = "PERSONAL",
|
|
1433
1433
|
pinned = "STICKYMESSAGE",
|
|
1434
1434
|
image = "IMAGE"
|
|
1435
1435
|
}
|
|
1436
|
+
type SearchResultType = string | SearchResultDefaultType;
|
|
1436
1437
|
type SearchResult = SearchSuggestion;
|
|
1437
1438
|
interface State$3 {
|
|
1438
1439
|
list: Array<SearchResult>;
|