@flashphoner/websdk 2.0.215 → 2.0.216

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.
@@ -10562,7 +10562,7 @@ var createSession = function createSession(options) {
10562
10562
  mediaProviders: Object.keys(MediaProvider),
10563
10563
  keepAlive: keepAlive,
10564
10564
  authToken: authToken,
10565
- clientVersion: "2.0.215",
10565
+ clientVersion: "2.0.216",
10566
10566
  clientOSVersion: window.navigator.appVersion,
10567
10567
  clientBrowserVersion: window.navigator.userAgent,
10568
10568
  msePacketizationVersion: 2,
@@ -13215,6 +13215,9 @@ var Browser = {
13215
13215
  },
13216
13216
  isAndroidFirefox: function isAndroidFirefox() {
13217
13217
  return this.isAndroid() && /Firefox/i.test(navigator.userAgent);
13218
+ },
13219
+ isChromiumEdge: function isChromiumEdge() {
13220
+ return /Chrome/i.test(navigator.userAgent) && /Edg/i.test(navigator.userAgent);
13218
13221
  }
13219
13222
  };
13220
13223
  var SDP = {