@botfabrik/engine-webclient 4.88.5 → 4.89.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 +2 -2
- package/dist/client/assets/{index-Dudp437V.js → index-Dsewv1TL.js} +37 -37
- package/dist/client/assets/index-Dsewv1TL.js.map +1 -0
- package/dist/client/index.html +1 -1
- package/dist/createSessionInfo.d.ts +3 -4
- package/dist/extractLocale.d.ts +1 -1
- package/dist/index.d.ts +1 -3
- package/dist/index.js +8 -41
- package/dist/loadPreviousConversation.d.ts +1 -1
- package/dist/middleware/index.d.ts +1 -1
- package/dist/requestSessionData.d.ts +2 -2
- package/dist/setTranslations.d.ts +2 -2
- package/package.json +8 -9
- package/dist/client/assets/index-Dudp437V.js.map +0 -1
package/README.md
CHANGED
|
@@ -224,7 +224,7 @@ Erlaubt es, den Chatverlauf an eine Email-Adresse zu verschicken. Idealerweise w
|
|
|
224
224
|
Beispiel:
|
|
225
225
|
|
|
226
226
|
```typescript
|
|
227
|
-
import { requestNLUEvent } from '@botfabrik/engine-
|
|
227
|
+
import { requestNLUEvent } from '@botfabrik/engine-domain';
|
|
228
228
|
|
|
229
229
|
const webclientProps = {
|
|
230
230
|
getStartedAction: requestNLUEvent('WELCOME'),
|
|
@@ -255,7 +255,7 @@ Mit dieser Option können allgemeine Bedingungen zu Beginn des Chats angezeigt w
|
|
|
255
255
|
Beispiel:
|
|
256
256
|
|
|
257
257
|
```typescript
|
|
258
|
-
import { requestNLUEvent } from '@botfabrik/engine-
|
|
258
|
+
import { requestNLUEvent } from '@botfabrik/engine-domain';
|
|
259
259
|
|
|
260
260
|
const webclientProps = {
|
|
261
261
|
getStartedAction: requestNLUEvent('WELCOME'),
|