@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.
Files changed (2) hide show
  1. package/README.md +7 -1
  2. 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
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@microsoft/omnichannel-chat-sdk",
3
- "version": "1.2.1-main.5f9a9de",
3
+ "version": "1.2.1-main.c18015b",
4
4
  "description": "Microsoft Omnichannel Chat SDK",
5
5
  "files": [
6
6
  "lib/**/*"