@botfabrik/engine-webclient 4.0.0-alpha.0
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 +169 -0
- package/dist/client/asset-manifest.json +22 -0
- package/dist/client/bot.png +0 -0
- package/dist/client/bot.svg +1 -0
- package/dist/client/custom.css +4 -0
- package/dist/client/favicon.ico +0 -0
- package/dist/client/index.html +1 -0
- package/dist/client/logo192.png +0 -0
- package/dist/client/logo512.png +0 -0
- package/dist/client/manifest.json +25 -0
- package/dist/client/play-button.png +0 -0
- package/dist/client/precache-manifest.18268e8ddbe40ae5d8e91a4a76774701.js +26 -0
- package/dist/client/robots.txt +3 -0
- package/dist/client/service-worker.js +39 -0
- package/dist/client/static/css/main.9f09e476.chunk.css +2 -0
- package/dist/client/static/css/main.9f09e476.chunk.css.map +1 -0
- package/dist/client/static/js/2.94d39000.chunk.js +3 -0
- package/dist/client/static/js/2.94d39000.chunk.js.LICENSE.txt +103 -0
- package/dist/client/static/js/2.94d39000.chunk.js.map +1 -0
- package/dist/client/static/js/main.1f8d6c7f.chunk.js +2 -0
- package/dist/client/static/js/main.1f8d6c7f.chunk.js.map +1 -0
- package/dist/client/static/js/runtime-main.f63e6028.js +2 -0
- package/dist/client/static/js/runtime-main.f63e6028.js.map +1 -0
- package/dist/client/visitor.png +0 -0
- package/dist/client/visitor.svg +1 -0
- package/dist/createSessionInfo.d.ts +5 -0
- package/dist/createSessionInfo.js +36 -0
- package/dist/createSessionInfo.js.map +1 -0
- package/dist/createSessionInfo.test.d.ts +1 -0
- package/dist/createSessionInfo.test.js +88 -0
- package/dist/createSessionInfo.test.js.map +1 -0
- package/dist/extractIP.d.ts +2 -0
- package/dist/extractIP.js +11 -0
- package/dist/extractIP.js.map +1 -0
- package/dist/extractIP.test.d.ts +1 -0
- package/dist/extractIP.test.js +38 -0
- package/dist/extractIP.test.js.map +1 -0
- package/dist/extractLocale.d.ts +2 -0
- package/dist/extractLocale.js +20 -0
- package/dist/extractLocale.js.map +1 -0
- package/dist/extractLocale.test.d.ts +1 -0
- package/dist/extractLocale.test.js +22 -0
- package/dist/extractLocale.test.js.map +1 -0
- package/dist/getSupportedClientLocale.d.ts +2 -0
- package/dist/getSupportedClientLocale.js +19 -0
- package/dist/getSupportedClientLocale.js.map +1 -0
- package/dist/getSupportedClientLocale.test.d.ts +1 -0
- package/dist/getSupportedClientLocale.test.js +20 -0
- package/dist/getSupportedClientLocale.test.js.map +1 -0
- package/dist/index.d.ts +14 -0
- package/dist/index.js +105 -0
- package/dist/index.js.map +1 -0
- package/dist/index.test.d.ts +1 -0
- package/dist/index.test.js +16 -0
- package/dist/index.test.js.map +1 -0
- package/dist/loadPreviousConversation.d.ts +3 -0
- package/dist/loadPreviousConversation.js +27 -0
- package/dist/loadPreviousConversation.js.map +1 -0
- package/dist/middleware/index.d.ts +3 -0
- package/dist/middleware/index.js +32 -0
- package/dist/middleware/index.js.map +1 -0
- package/dist/requestSessionData.d.ts +10 -0
- package/dist/requestSessionData.js +40 -0
- package/dist/requestSessionData.js.map +1 -0
- package/dist/requestSessionData.test.d.ts +1 -0
- package/dist/requestSessionData.test.js +83 -0
- package/dist/requestSessionData.test.js.map +1 -0
- package/dist/speechToText.d.ts +7 -0
- package/dist/speechToText.js +46 -0
- package/dist/speechToText.js.map +1 -0
- package/dist/types.d.ts +7 -0
- package/dist/types.js +3 -0
- package/dist/types.js.map +1 -0
- package/dist/views/index.d.ts +2 -0
- package/dist/views/index.js +102 -0
- package/dist/views/index.js.map +1 -0
- package/package.json +36 -0
|
@@ -0,0 +1,103 @@
|
|
|
1
|
+
/*
|
|
2
|
+
object-assign
|
|
3
|
+
(c) Sindre Sorhus
|
|
4
|
+
@license MIT
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
/*
|
|
8
|
+
object-assign
|
|
9
|
+
(c) Sindre Sorhus
|
|
10
|
+
@license MIT
|
|
11
|
+
*/
|
|
12
|
+
|
|
13
|
+
/*!
|
|
14
|
+
Copyright (c) 2017 Jed Watson.
|
|
15
|
+
Licensed under the MIT License (MIT), see
|
|
16
|
+
http://jedwatson.github.io/classnames
|
|
17
|
+
*/
|
|
18
|
+
|
|
19
|
+
/*!
|
|
20
|
+
* Clamp.js 0.7.0
|
|
21
|
+
* Based on: https://github.com/xavi160/Clamp.js/commit/e313818da231b8dd8fd603dd9c9a61a9d725c22f
|
|
22
|
+
* Mixins:
|
|
23
|
+
* - https://github.com/josephschmitt/Clamp.js/pull/50
|
|
24
|
+
* - https://github.com/josephschmitt/Clamp.js/pull/49
|
|
25
|
+
*
|
|
26
|
+
* Copyright 2011-2013, Joseph Schmitt http://joe.sh
|
|
27
|
+
* Released under the WTFPL license
|
|
28
|
+
* http://sam.zoy.org/wtfpl/
|
|
29
|
+
*/
|
|
30
|
+
|
|
31
|
+
/*!
|
|
32
|
+
* Determine if an object is a Buffer
|
|
33
|
+
*
|
|
34
|
+
* @author Feross Aboukhadijeh <https://feross.org>
|
|
35
|
+
* @license MIT
|
|
36
|
+
*/
|
|
37
|
+
|
|
38
|
+
/*!
|
|
39
|
+
* JavaScript Cookie v2.2.1
|
|
40
|
+
* https://github.com/js-cookie/js-cookie
|
|
41
|
+
*
|
|
42
|
+
* Copyright 2006, 2015 Klaus Hartl & Fagner Brack
|
|
43
|
+
* Released under the MIT license
|
|
44
|
+
*/
|
|
45
|
+
|
|
46
|
+
/*!
|
|
47
|
+
* The buffer module from node.js, for the browser.
|
|
48
|
+
*
|
|
49
|
+
* @author Feross Aboukhadijeh <http://feross.org>
|
|
50
|
+
* @license MIT
|
|
51
|
+
*/
|
|
52
|
+
|
|
53
|
+
/*!
|
|
54
|
+
* isobject <https://github.com/jonschlinkert/isobject>
|
|
55
|
+
*
|
|
56
|
+
* Copyright (c) 2014-2017, Jon Schlinkert.
|
|
57
|
+
* Released under the MIT License.
|
|
58
|
+
*/
|
|
59
|
+
|
|
60
|
+
/*!
|
|
61
|
+
* object.pick <https://github.com/jonschlinkert/object.pick>
|
|
62
|
+
*
|
|
63
|
+
* Copyright (c) 2014-2015 Jon Schlinkert, contributors.
|
|
64
|
+
* Licensed under the MIT License
|
|
65
|
+
*/
|
|
66
|
+
|
|
67
|
+
/*! https://mths.be/utf8js v2.1.2 by @mathias */
|
|
68
|
+
|
|
69
|
+
/** @license React v0.19.1
|
|
70
|
+
* scheduler.production.min.js
|
|
71
|
+
*
|
|
72
|
+
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
73
|
+
*
|
|
74
|
+
* This source code is licensed under the MIT license found in the
|
|
75
|
+
* LICENSE file in the root directory of this source tree.
|
|
76
|
+
*/
|
|
77
|
+
|
|
78
|
+
/** @license React v16.13.1
|
|
79
|
+
* react-dom.production.min.js
|
|
80
|
+
*
|
|
81
|
+
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
82
|
+
*
|
|
83
|
+
* This source code is licensed under the MIT license found in the
|
|
84
|
+
* LICENSE file in the root directory of this source tree.
|
|
85
|
+
*/
|
|
86
|
+
|
|
87
|
+
/** @license React v16.13.1
|
|
88
|
+
* react-is.production.min.js
|
|
89
|
+
*
|
|
90
|
+
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
91
|
+
*
|
|
92
|
+
* This source code is licensed under the MIT license found in the
|
|
93
|
+
* LICENSE file in the root directory of this source tree.
|
|
94
|
+
*/
|
|
95
|
+
|
|
96
|
+
/** @license React v16.13.1
|
|
97
|
+
* react.production.min.js
|
|
98
|
+
*
|
|
99
|
+
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
100
|
+
*
|
|
101
|
+
* This source code is licensed under the MIT license found in the
|
|
102
|
+
* LICENSE file in the root directory of this source tree.
|
|
103
|
+
*/
|