@bytexbyte/nxtlinq-ai-agent-sdk 1.4.1 → 1.4.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/dist/api/nxtlinq-api.d.ts.map +1 -1
- package/dist/api/nxtlinq-api.js +12 -0
- package/dist/components/context/ChatBotContext.d.ts.map +1 -1
- package/dist/components/context/ChatBotContext.js +39 -1
- package/dist/components/types/ChatBotTypes.d.ts.map +1 -1
- package/dist/components/types/ChatBotTypes.js +4 -0
- package/dist/components/ui/MessageList.d.ts.map +1 -1
- package/dist/components/ui/MessageList.js +13 -4
- package/dist/core/lib/useSpeechToTextFromMic/helper.d.ts +2 -2
- package/dist/core/lib/useSpeechToTextFromMic/helper.js +2 -2
- package/dist/umd-entry.d.ts +3 -0
- package/dist/umd-entry.d.ts.map +1 -0
- package/dist/umd-entry.js +66 -0
- package/package.json +19 -5
- package/umd/nxtlinq-ai-agent.umd.js +102 -0
- package/umd/nxtlinq-ai-agent.umd.js.LICENSE.txt +37 -0
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @license React
|
|
3
|
+
* react-is.production.js
|
|
4
|
+
*
|
|
5
|
+
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
6
|
+
*
|
|
7
|
+
* This source code is licensed under the MIT license found in the
|
|
8
|
+
* LICENSE file in the root directory of this source tree.
|
|
9
|
+
*/
|
|
10
|
+
|
|
11
|
+
/**
|
|
12
|
+
* @license React
|
|
13
|
+
* react-jsx-runtime.production.min.js
|
|
14
|
+
*
|
|
15
|
+
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
16
|
+
*
|
|
17
|
+
* This source code is licensed under the MIT license found in the
|
|
18
|
+
* LICENSE file in the root directory of this source tree.
|
|
19
|
+
*/
|
|
20
|
+
|
|
21
|
+
/**
|
|
22
|
+
* [js-sha3]{@link https://github.com/emn178/js-sha3}
|
|
23
|
+
*
|
|
24
|
+
* @version 0.8.0
|
|
25
|
+
* @author Chen, Yi-Cyuan [emn178@gmail.com]
|
|
26
|
+
* @copyright Chen, Yi-Cyuan 2015-2018
|
|
27
|
+
* @license MIT
|
|
28
|
+
*/
|
|
29
|
+
|
|
30
|
+
/** @license React v16.13.1
|
|
31
|
+
* react-is.production.min.js
|
|
32
|
+
*
|
|
33
|
+
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
34
|
+
*
|
|
35
|
+
* This source code is licensed under the MIT license found in the
|
|
36
|
+
* LICENSE file in the root directory of this source tree.
|
|
37
|
+
*/
|