@microsoft/omnichannel-chat-sdk 1.2.1-main.5f9a9de → 1.2.1-main.c18015b
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 +7 -1
- package/package.json +1 -1
package/README.md
CHANGED
@@ -125,6 +125,11 @@ The following steps will be required to run Omnichannel Chat SDK on React Native
|
|
125
125
|
npm install react-native-url-polyfill --save-dev
|
126
126
|
```
|
127
127
|
|
128
|
+
1. Install `@azure/core-asynciterator-polyfill`
|
129
|
+
```
|
130
|
+
npm install @azure/core-asynciterator-polyfill --save-dev
|
131
|
+
```
|
132
|
+
|
128
133
|
1. Update *metro.config.js* to use React Native compatible Node Core modules
|
129
134
|
```ts
|
130
135
|
module.exports = {
|
@@ -143,7 +148,8 @@ The following steps will be required to run Omnichannel Chat SDK on React Native
|
|
143
148
|
```ts
|
144
149
|
import 'node-libs-react-native/globals';
|
145
150
|
import 'react-native-get-random-values';
|
146
|
-
import 'react-native-url-polyfill';
|
151
|
+
import 'react-native-url-polyfill/auto';
|
152
|
+
import '@azure/core-asynciterator-polyfill';
|
147
153
|
```
|
148
154
|
|
149
155
|
## SDK Methods
|