@botfabrik/engine-webclient 4.84.0 → 4.84.1

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/README.md CHANGED
@@ -217,7 +217,7 @@ const webclientProps = {
217
217
  bot.addClient(Webclient('webclient', webclientProps));
218
218
  ```
219
219
 
220
- ### enableTranscriptExportMail (optional, true | false [default])
220
+ ### enableTranscriptExportEmail (optional, true | false [default])
221
221
 
222
222
  Erlaubt es, den Chatverlauf an eine Email-Adresse zu verschicken. Idealerweise wird dazu die Middleware @botfabrik/engine-transcript-mail verwendet.
223
223
 
@@ -228,7 +228,7 @@ import { requestNLUEvent } from '@botfabrik/engine-core';
228
228
 
229
229
  const webclientProps = {
230
230
  getStartedAction: requestNLUEvent('WELCOME'),
231
- enableTranscriptExportMail: true,
231
+ enableTranscriptExportEmail: true,
232
232
  };
233
233
 
234
234
  bot.addClient(Webclient('webclient', webclientProps));
@@ -273,7 +273,7 @@ Die Bedingungen beinhalten drei Elemente:
273
273
 
274
274
  Diese Texte können auch Markdown beinhalten. Um die Standardtexte zu überschreiben, kann man den Übersetzungsmechanismus verwenden.
275
275
 
276
- ### enableConversationRating (optional, true | false [default])
276
+ ### enableConversationRating (optional, true [default] | false)
277
277
 
278
278
  Ist dieses Property aktiviert, so können Benutzer den Chat mittels Stärnchen bewerten.
279
279
  Durch das Bewerten des Chats wird die Action `core.conversation.rating.from.guest` ausgelöst. Die Bewertung wird in Bubble Chat gespeichert (sofern die Middleware aktiv ist).