@digipair/skill-web-chatbot 0.33.2 → 0.33.3
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/index.cjs2.js +36772 -36769
- package/index.esm2.js +36772 -36769
- package/libs/skill-web-chatbot/src/lib/chat.element.d.ts +1 -0
- package/libs/skill-web-chatbot/src/lib/digipair-full.element.d.ts +2 -1
- package/libs/skill-web-chatbot/src/lib/digipair.element.d.ts +2 -1
- package/libs/skill-web-chatbot/src/lib/message.interface.d.ts +8 -0
- package/libs/skill-web-chatbot/src/lib/pins/chatbot.actions.d.ts +0 -2
- package/package.json +1 -1
|
@@ -24,9 +24,10 @@ export declare class DigipairFullElement extends LitElement {
|
|
|
24
24
|
private scrollDown;
|
|
25
25
|
execute(boost: any, message?: string): Promise<void>;
|
|
26
26
|
private executeBoost;
|
|
27
|
-
private
|
|
27
|
+
private pushMessage;
|
|
28
28
|
private openMenu;
|
|
29
29
|
private closeMenu;
|
|
30
|
+
private setBoost;
|
|
30
31
|
private executeScene;
|
|
31
32
|
static styles: import("lit").CSSResult;
|
|
32
33
|
render(): TemplateResult;
|
|
@@ -32,9 +32,10 @@ export declare class ChatbotElement extends LitElement {
|
|
|
32
32
|
private scrollDown;
|
|
33
33
|
execute(boost: any, message?: string): Promise<void>;
|
|
34
34
|
private executeBoost;
|
|
35
|
-
private
|
|
35
|
+
private pushMessage;
|
|
36
36
|
private openResult;
|
|
37
37
|
private closeResult;
|
|
38
|
+
private setBoost;
|
|
38
39
|
private executeScene;
|
|
39
40
|
static styles: import("lit").CSSResult;
|
|
40
41
|
render(): TemplateResult;
|
|
@@ -1,3 +1 @@
|
|
|
1
|
-
export declare const setElementAttribute: (params: any, pinsSettingsList: PinsSettings[], context: any) => Promise<any>;
|
|
2
|
-
export declare const dispatchEvent: (params: any, pinsSettingsList: PinsSettings[], context: any) => Promise<any>;
|
|
3
1
|
export declare const executeRemoteReasoning: (params: any, pinsSettingsList: PinsSettings[], context: any) => Promise<any>;
|