@inkeep/cxkit-types 0.5.23 → 0.5.24
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 +18 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -563,6 +563,10 @@ export declare interface InkeepAIChatSettings {
|
|
|
563
563
|
* @default 'inkeep-qa-expert'
|
|
564
564
|
*/
|
|
565
565
|
model?: `${ChatModel}`;
|
|
566
|
+
/**
|
|
567
|
+
* Filters to apply to the chat results.
|
|
568
|
+
*/
|
|
569
|
+
filters?: SearchAndChatFilters;
|
|
566
570
|
}
|
|
567
571
|
|
|
568
572
|
export declare interface InkeepBaseSettings {
|
|
@@ -675,6 +679,10 @@ export declare interface InkeepBaseSettings {
|
|
|
675
679
|
* Object mapping parameter names to values.
|
|
676
680
|
*/
|
|
677
681
|
urlQueryParamsToAppend?: UrlQueryParam;
|
|
682
|
+
/**
|
|
683
|
+
* Filters to apply to the search results.
|
|
684
|
+
*/
|
|
685
|
+
filters?: SearchAndChatFilters;
|
|
678
686
|
}
|
|
679
687
|
|
|
680
688
|
export declare type InkeepCallbackEvent = InkeepEventWithCommon & {
|
|
@@ -805,6 +813,10 @@ export declare interface InkeepSearchSettings {
|
|
|
805
813
|
* @default 'q'
|
|
806
814
|
*/
|
|
807
815
|
searchQueryParamKey?: string;
|
|
816
|
+
/**
|
|
817
|
+
* Filters to apply to the search results.
|
|
818
|
+
*/
|
|
819
|
+
filters?: SearchAndChatFilters;
|
|
808
820
|
}
|
|
809
821
|
|
|
810
822
|
export declare type InputMaybe<T> = T | null;
|
|
@@ -987,6 +999,12 @@ export declare type RenderFn = ({ children, ssr, root, }: {
|
|
|
987
999
|
|
|
988
1000
|
export declare type Root = Record<string, ComponentType<HTMLProps<HTMLElement> & ShadowRootProps>>;
|
|
989
1001
|
|
|
1002
|
+
declare interface SearchAndChatFilters {
|
|
1003
|
+
attributes?: {
|
|
1004
|
+
[key: string]: any;
|
|
1005
|
+
};
|
|
1006
|
+
}
|
|
1007
|
+
|
|
990
1008
|
export declare type SearchEvent = SearchQueryResponseReceivedEvent | SearchQuerySubmittedEvent | SearchResultClickedEvent;
|
|
991
1009
|
|
|
992
1010
|
export declare type SearchFiltersInput = {
|