@botfabrik/engine-webclient 4.84.0 → 4.84.2

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));