@microsoft/omnichannel-chat-widget 2.0.0-main.ba244dd → 2.0.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 +10 -2
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
# Omnichannel Live Chat Widget UI Components
|
|
2
2
|
|
|
3
|
-
](https://github.com/microsoft/omnichannel-chat-widget/actions/workflows/npm-release.yml)
|
|
4
|
+
[](https://www.npmjs.com/package/@microsoft/omnichannel-chat-widget)
|
|
5
5
|
|
|
6
6
|
[@microsoft/omnichannel-chat-widget](https://www.npmjs.com/package/@microsoft/omnichannel-chat-widget) is a React-based UI component library which allows you to build your own live chat widget experience using [@microsoft/omnichannel-chat-sdk](https://www.npmjs.com/package/@microsoft/omnichannel-chat-sdk).
|
|
7
7
|
|
|
@@ -50,6 +50,14 @@ yarn add @microsoft/omnichannel-chat-components
|
|
|
50
50
|
|
|
51
51
|
This package requires Node.js `>=22.12.0` for consumer builds. Node 20 is not supported.
|
|
52
52
|
|
|
53
|
+
For a production application, pin the exact stable versions:
|
|
54
|
+
|
|
55
|
+
```bash
|
|
56
|
+
npm install --save-exact @microsoft/omnichannel-chat-widget@2.0.0 @microsoft/omnichannel-chat-components@1.2.0 @microsoft/omnichannel-chat-sdk@2.0.0
|
|
57
|
+
```
|
|
58
|
+
|
|
59
|
+
`2.0.0` release date is 2026-08-18. Official support ends on 2027-08-18. See the [root support table](https://github.com/microsoft/omnichannel-chat-widget#chat-widget).
|
|
60
|
+
|
|
53
61
|
TypeScript consumers that imported the exported Web Chat middleware factories now receive Redux 5 `unknown` actions. Narrow with `isWebChatAction` before reading `type` or `payload`. Runtime behavior is unchanged.
|
|
54
62
|
|
|
55
63
|
## WebChat dependency constraint
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@microsoft/omnichannel-chat-widget",
|
|
3
|
-
"version": "2.0.0
|
|
3
|
+
"version": "2.0.0",
|
|
4
4
|
"description": "Microsoft Omnichannel Chat Widget",
|
|
5
5
|
"main": "lib/cjs/index.js",
|
|
6
6
|
"types": "lib/types/index.d.ts",
|
|
@@ -92,8 +92,8 @@
|
|
|
92
92
|
"dependencies": {
|
|
93
93
|
"@azure/core-tracing": "^1.2.0",
|
|
94
94
|
"@microsoft/applicationinsights-web": "^3.3.6",
|
|
95
|
-
"@microsoft/omnichannel-chat-components": "1.2.0
|
|
96
|
-
"@microsoft/omnichannel-chat-sdk": "2.0.0
|
|
95
|
+
"@microsoft/omnichannel-chat-components": "1.2.0",
|
|
96
|
+
"@microsoft/omnichannel-chat-sdk": "2.0.0",
|
|
97
97
|
"@opentelemetry/api": "^1.9.0",
|
|
98
98
|
"abort-controller": "^3",
|
|
99
99
|
"botframework-webchat": "4.18.1-hotfix.20260308.b15b405",
|