@inkeep/cxkit-types 0.5.29 → 0.5.31
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.d.ts +17 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -164,7 +164,7 @@ export declare interface AssistantSourceItemClickedEvent {
|
|
|
164
164
|
};
|
|
165
165
|
}
|
|
166
166
|
|
|
167
|
-
export declare type AvailableBuiltInIcons = 'FaBook' | 'FaGithub' | 'FaDatabase' | 'FaStackOverflow' | 'FaChrome' | 'FaPhone' | 'FaEnvelope' | 'FaPencil' | 'FaBlog' | 'FaSort' | 'FaPenSquare' | 'FaChevronRight' | 'FaChevronUp' | 'FaFilePdf' | 'FaDiscourse' | 'FaDiscord' | 'FaSlack' | 'IoDocumentTextSharp' | 'IoDocumentSharp' | 'IoSend' | 'IoInformationCircleOutline' | 'IoLinkOutline' | 'IoThumbsUpSharp' | 'IoThumbsDownSharp' | 'IoSearch' | 'IoCopyOutline' | 'IoCopy' | 'IoReturnDownBackOutline' | 'IoChevronForwardOutline' | 'IoReturnDownForward' | 'IoCloseOutline' | 'IoCheckmarkOutline' | 'IoBookOutline' | 'IoReaderOutline' | 'IoHelpBuoyOutline' | 'IoPeopleOutline' | 'IoDocumentTextOutline' | 'IoChatbubblesOutline' | 'FaRegFilePdf' | 'IoLogoDiscord' | 'IoLogoGithub' | 'IoTerminal' | 'FaBriefcase' | 'IoPlayCircleOutline' | 'IoPencilOutline' | 'IoCheckmarkDoneOutline' | 'IoHomeOutline' | 'IoMail' | 'IoOpenOutline' | 'FaTelegram' | 'FaTable' | 'FaMagnifyingGlass' | 'LuArrowLeft' | 'LuCircleCheck' | 'LuCommand' | 'LuCopy' | 'LuCheck' | 'LuCornerDownLeft' | 'LuRepeat' | 'LuThumbsDown' | 'LuThumbsUp' | 'LuUsers' | 'LuUser' | 'LuArrowUpRight' | 'LuBookOpen' | 'LuChevronDown' | 'LuLoaderCircle' | 'FiEdit' | 'LuSparkles';
|
|
167
|
+
export declare type AvailableBuiltInIcons = 'FaBook' | 'FaGithub' | 'FaDatabase' | 'FaStackOverflow' | 'FaChrome' | 'FaPhone' | 'FaEnvelope' | 'FaPencil' | 'FaBlog' | 'FaSort' | 'FaPenSquare' | 'FaChevronRight' | 'FaChevronUp' | 'FaFilePdf' | 'FaDiscourse' | 'FaDiscord' | 'FaSlack' | 'IoDocumentTextSharp' | 'IoDocumentSharp' | 'IoSend' | 'IoInformationCircleOutline' | 'IoLinkOutline' | 'IoThumbsUpSharp' | 'IoThumbsDownSharp' | 'IoSearch' | 'IoCopyOutline' | 'IoCopy' | 'IoReturnDownBackOutline' | 'IoChevronForwardOutline' | 'IoReturnDownForward' | 'IoCloseOutline' | 'IoCheckmarkOutline' | 'IoBookOutline' | 'IoReaderOutline' | 'IoHelpBuoyOutline' | 'IoPeopleOutline' | 'IoDocumentTextOutline' | 'IoChatbubblesOutline' | 'FaRegFilePdf' | 'IoLogoDiscord' | 'IoLogoGithub' | 'IoTerminal' | 'FaBriefcase' | 'IoPlayCircleOutline' | 'IoPencilOutline' | 'IoCheckmarkDoneOutline' | 'IoHomeOutline' | 'IoMail' | 'IoOpenOutline' | 'FaTelegram' | 'FaTable' | 'FaMagnifyingGlass' | 'LuArrowLeft' | 'LuCircleCheck' | 'LuCommand' | 'LuCopy' | 'LuCheck' | 'LuCornerDownLeft' | 'LuGlobe' | 'LuLink' | 'LuRepeat' | 'LuThumbsDown' | 'LuThumbsUp' | 'LuUsers' | 'LuUser' | 'LuArrowUpRight' | 'LuBookOpen' | 'LuChevronDown' | 'LuLoaderCircle' | 'FiEdit' | 'LuSparkles' | 'LuCornerDownRight';
|
|
168
168
|
|
|
169
169
|
export declare interface BaseFormField {
|
|
170
170
|
name: string;
|
|
@@ -328,6 +328,7 @@ export declare interface CustomIcons {
|
|
|
328
328
|
codeCopied: string;
|
|
329
329
|
openLinkInNewTab: string;
|
|
330
330
|
openLinkInSameTab: string;
|
|
331
|
+
newLine: string;
|
|
331
332
|
breadcrumbSeparator: string;
|
|
332
333
|
switchToSearch: string;
|
|
333
334
|
switchToChat: string;
|
|
@@ -812,6 +813,11 @@ export declare interface InkeepSearchSettings {
|
|
|
812
813
|
*
|
|
813
814
|
*/
|
|
814
815
|
searchQueryParamKey?: string;
|
|
816
|
+
/**
|
|
817
|
+
* The view to use for the search.
|
|
818
|
+
* @default 'single-pane'
|
|
819
|
+
*/
|
|
820
|
+
view?: 'single-pane' | 'dual-pane';
|
|
815
821
|
/**
|
|
816
822
|
* Filters to apply to the search results.
|
|
817
823
|
*/
|
|
@@ -1029,10 +1035,12 @@ export declare interface SearchHit {
|
|
|
1029
1035
|
url?: string;
|
|
1030
1036
|
preview?: string;
|
|
1031
1037
|
pathHeadings?: {
|
|
1038
|
+
anchor?: string | null;
|
|
1032
1039
|
content: string;
|
|
1033
1040
|
}[];
|
|
1034
1041
|
content?: {
|
|
1035
1042
|
content: string;
|
|
1043
|
+
anchor?: string | null;
|
|
1036
1044
|
};
|
|
1037
1045
|
}
|
|
1038
1046
|
|
|
@@ -1073,6 +1081,7 @@ export declare interface SearchRootRecord {
|
|
|
1073
1081
|
preview?: string;
|
|
1074
1082
|
pathBreadcrumbs?: string[];
|
|
1075
1083
|
contentType?: string;
|
|
1084
|
+
topLevelHeadings?: TopLevelHeading[];
|
|
1076
1085
|
body?: string;
|
|
1077
1086
|
state?: `${GitHubIssueState}`;
|
|
1078
1087
|
markedAsCorrectAnswer?: {
|
|
@@ -1356,6 +1365,13 @@ export declare type ToolsJSONSchema = {
|
|
|
1356
1365
|
[key: string]: unknown;
|
|
1357
1366
|
};
|
|
1358
1367
|
|
|
1368
|
+
export declare interface TopLevelHeading {
|
|
1369
|
+
anchor?: string | null;
|
|
1370
|
+
url?: string | null;
|
|
1371
|
+
content: string;
|
|
1372
|
+
isMatch?: boolean;
|
|
1373
|
+
}
|
|
1374
|
+
|
|
1359
1375
|
export declare interface TransformedSource {
|
|
1360
1376
|
/**
|
|
1361
1377
|
* ID of the source.
|