lr-chatbot 0.12.2 → 0.12.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/custom-elements.json +1 -1
- package/index.js +2 -2
- package/index.js.map +1 -1
- package/package.json +1 -1
package/custom-elements.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"schemaVersion":"1.0.0","readme":"","modules":[{"kind":"javascript-module","path":"/builds/laredoute/digital/apps/uxeng/components/uxeng-gui-front/libs/shared/client/features/chatbot/src/components/chatbot/Chatbot.ts","declarations":[{"kind":"class","description":"","name":"Chatbot","members":[{"kind":"field","name":"_chatElementRef","type":{"text":"DeepChat | null | undefined"},"privacy":"private","default":"null"},{"kind":"field","name":"_closeClickCount","type":{"text":"number"},"privacy":"private","default":"0"},{"kind":"field","name":"apiUrl","type":{"text":"string"},"default":"''","attribute":"apiUrl"},{"kind":"field","name":"opened","type":{"text":"boolean"},"default":"false","attribute":"opened","reflects":true},{"kind":"field","name":"minimized","type":{"text":"boolean"},"default":"false","attribute":"minimized"},{"kind":"field","name":"sticky","type":{"text":"boolean"},"default":"false","attribute":"sticky"},{"kind":"field","name":"country","type":{"text":"AppCountry"},"attribute":"country"},{"kind":"field","name":"language","type":{"text":"AppLanguage"},"attribute":"language"},{"kind":"field","name":"overlay","type":{"text":"boolean"},"default":"false","attribute":"overlay"},{"kind":"method","name":"getVersion"
|
|
1
|
+
{"schemaVersion":"1.0.0","readme":"","modules":[{"kind":"javascript-module","path":"/builds/laredoute/digital/apps/uxeng/components/uxeng-gui-front/libs/shared/client/features/chatbot/src/components/chatbot/Chatbot.ts","declarations":[{"kind":"class","description":"","name":"Chatbot","members":[{"kind":"field","name":"_chatElementRef","type":{"text":"DeepChat | null | undefined"},"privacy":"private","default":"null"},{"kind":"field","name":"_closeClickCount","type":{"text":"number"},"privacy":"private","default":"0"},{"kind":"field","name":"apiUrl","type":{"text":"string"},"default":"''","attribute":"apiUrl"},{"kind":"field","name":"opened","type":{"text":"boolean"},"default":"false","attribute":"opened","reflects":true},{"kind":"field","name":"minimized","type":{"text":"boolean"},"default":"false","attribute":"minimized"},{"kind":"field","name":"sticky","type":{"text":"boolean"},"default":"false","attribute":"sticky"},{"kind":"field","name":"country","type":{"text":"AppCountry"},"attribute":"country"},{"kind":"field","name":"language","type":{"text":"AppLanguage"},"attribute":"language"},{"kind":"field","name":"overlay","type":{"text":"boolean"},"default":"false","attribute":"overlay"},{"kind":"method","name":"getVersion"},{"kind":"method","name":"getChatHistory","return":{"type":{"text":"Promise<void>"}},"parameters":[{"name":"conversationId","type":{"text":"string | null"}}]},{"kind":"method","name":"initChat","return":{"type":{"text":"void"}}},{"kind":"method","name":"initTranslations","privacy":"private"},{"kind":"method","name":"setChatTranslations","privacy":"private"},{"kind":"method","name":"postUserMessage","parameters":[{"name":"event","type":{"text":"any"}}]},{"kind":"method","name":"setChatStyle","privacy":"private"},{"kind":"method","name":"setChatInitialMessages","privacy":"private"},{"kind":"method","name":"setChatConnection","privacy":"private","parameters":[{"name":"conversationId","optional":true,"type":{"text":"string | null"}}]},{"kind":"method","name":"handleClosure"},{"kind":"method","name":"close"},{"kind":"method","name":"handleReturnConversation"},{"kind":"method","name":"minimize"},{"kind":"method","name":"open"}],"attributes":[{"name":"apiUrl","type":{"text":"string"},"default":"''","fieldName":"apiUrl"},{"name":"opened","type":{"text":"boolean"},"default":"false","fieldName":"opened"},{"name":"minimized","type":{"text":"boolean"},"default":"false","fieldName":"minimized"},{"name":"sticky","type":{"text":"boolean"},"default":"false","fieldName":"sticky"},{"name":"country","type":{"text":"AppCountry"},"fieldName":"country"},{"name":"language","type":{"text":"AppLanguage"},"fieldName":"language"},{"name":"overlay","type":{"text":"boolean"},"default":"false","fieldName":"overlay"}],"superclass":{"name":"SuperElement","module":"//builds/laredoute/digital/apps/uxeng/components/uxeng-gui-front/libs/shared/client/features/chatbot/src/components/super/SuperElement"},"tagName":"lr-chatbot","customElement":true}],"exports":[{"kind":"js","name":"Chatbot","declaration":{"name":"Chatbot","module":"/builds/laredoute/digital/apps/uxeng/components/uxeng-gui-front/libs/shared/client/features/chatbot/src/components/chatbot/Chatbot.ts"}},{"kind":"custom-element-definition","name":"lr-chatbot","declaration":{"name":"Chatbot","module":"/builds/laredoute/digital/apps/uxeng/components/uxeng-gui-front/libs/shared/client/features/chatbot/src/components/chatbot/Chatbot.ts"}}]}]}
|
package/index.js
CHANGED
|
@@ -20734,8 +20734,8 @@ let Ke = class extends tt {
|
|
|
20734
20734
|
set overlay(n) {
|
|
20735
20735
|
wt(this, wr, n);
|
|
20736
20736
|
}
|
|
20737
|
-
|
|
20738
|
-
return "LR Chatbot - 0.12.
|
|
20737
|
+
getVersion() {
|
|
20738
|
+
return "LR Chatbot - 0.12.3";
|
|
20739
20739
|
}
|
|
20740
20740
|
async performUpdate() {
|
|
20741
20741
|
return await this.initTranslations(), super.performUpdate();
|