@koredev/agentai-web-sdk 1.4.0-rc → 1.4.1-rc
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.
|
@@ -52,6 +52,7 @@ export declare class rootService {
|
|
|
52
52
|
disableWidgetFlag: boolean;
|
|
53
53
|
defaultFeedbackSettings: any;
|
|
54
54
|
defaultSuggestionObj: any;
|
|
55
|
+
tableList: string[];
|
|
55
56
|
constructor(hostInstance: any);
|
|
56
57
|
updateDefaultFeedbackData(): void;
|
|
57
58
|
formatSearchResponse(response: any, isSearch: boolean | undefined, suggestionIndex: number, suggestionFrom?: string): any;
|
|
@@ -204,8 +205,8 @@ export declare class rootService {
|
|
|
204
205
|
getSmallTalkTemplate(smallTalkObj: any, activeTab: string, hostInstance: any): HTMLElement | null;
|
|
205
206
|
addDialogTemplate(automationNodeObj: any, automation: any, activeTab: string, hostInstance: any): void;
|
|
206
207
|
getDialogWrapper(hostInstance: any, dialogId: string): any;
|
|
207
|
-
getAutomationStartTemplate(automation: any, hostInstance: any): ChildNode;
|
|
208
|
-
getAutomationEndTemplate(automation: any, hostInstance: any): ChildNode;
|
|
208
|
+
getAutomationStartTemplate(automation: any, hostInstance: any): "" | ChildNode;
|
|
209
|
+
getAutomationEndTemplate(automation: any, hostInstance: any): "" | ChildNode;
|
|
209
210
|
appendFeedbackWrapper(dialogWrapper: any, automation: any, hostInstance: any): void;
|
|
210
211
|
getAutomationNodeTemplate(automation: any, automationNodeObj: any, activeTab: string, hostInstance: any): any;
|
|
211
212
|
appendTemplate: (template: any, entityNode: any) => void;
|
|
@@ -5,5 +5,5 @@ declare class DomManager {
|
|
|
5
5
|
constructor(component: any, host: any);
|
|
6
6
|
renderMessage(msgData: any): ChildNode;
|
|
7
7
|
}
|
|
8
|
-
export declare function getHTML(comp: any, msgData: any, hostInstance: any): ChildNode;
|
|
8
|
+
export declare function getHTML(comp: any, msgData: any, hostInstance: any): "" | ChildNode;
|
|
9
9
|
export default DomManager;
|