@opentok/client 2.21.6 → 2.21.7
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/js/opentok.js +715 -633
- package/dist/js/opentok.js.map +1 -1
- package/dist/js/opentok.min.js +5 -5
- package/dist/js/opentok.min.js.map +1 -1
- package/package.json +1 -1
package/dist/js/opentok.js
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @license OpenTok.js 2.21.
|
|
2
|
+
* @license OpenTok.js 2.21.7 8db653cdf
|
|
3
3
|
*
|
|
4
4
|
* Copyright (c) 2010-2022 TokBox, Inc.
|
|
5
5
|
* Subject to the applicable Software Development Kit (SDK) License Agreement:
|
|
6
6
|
* https://www.vonage.com/legal/communications-apis/terms-of-use/
|
|
7
7
|
*
|
|
8
|
-
* Date:
|
|
8
|
+
* Date: Tue, 01 Feb 2022 03:14:35 GMT
|
|
9
9
|
*/
|
|
10
10
|
|
|
11
11
|
(function webpackUniversalModuleDefinition(root, factory) {
|
|
@@ -1367,6 +1367,7 @@ var _global, _global$navigator, _global2, _global2$process, _global2$process$ver
|
|
|
1367
1367
|
* @property isEdge Whether the client is isEdge (legacy or chromiumedge)
|
|
1368
1368
|
* @property isChromiumEdge Whether the client is isChromiumEdge (version >= 79)
|
|
1369
1369
|
* @property isLegacyEdge Whether the client is isLegacyEdge (version < 79)
|
|
1370
|
+
* @property isLegacyElectron Whether the client is isLegacyElectron (version < 2)
|
|
1370
1371
|
* @property isAndroid Whether the client is an Android device
|
|
1371
1372
|
* @property protocol The protocol property of the URL
|
|
1372
1373
|
* @property hostName The domain of the URL
|
|
@@ -1381,6 +1382,8 @@ const isiOS = __webpack_require__(530);
|
|
|
1381
1382
|
|
|
1382
1383
|
const iOSVersion = __webpack_require__(531);
|
|
1383
1384
|
|
|
1385
|
+
const getElectronVersion = __webpack_require__(532);
|
|
1386
|
+
|
|
1384
1387
|
const isElectron = ((_global = (typeof window !== undefined ? window : global)) == null ? void 0 : (_global$navigator = _global.navigator) == null ? void 0 : _global$navigator.userAgent.toLowerCase().indexOf('electron')) >= 0;
|
|
1385
1388
|
/* We must use global.process here as process is a variable injected
|
|
1386
1389
|
* by webpack and its value is fixed at build time, not runtime.
|
|
@@ -1421,6 +1424,8 @@ if (typeof ((_global2 = (typeof window !== undefined ? window : global)) == null
|
|
|
1421
1424
|
|
|
1422
1425
|
if (!env.isElectron) {
|
|
1423
1426
|
env.isChrome = true;
|
|
1427
|
+
} else {
|
|
1428
|
+
env.electronVersion = getElectronVersion((typeof window !== undefined ? window : global).navigator.userAgent);
|
|
1424
1429
|
}
|
|
1425
1430
|
|
|
1426
1431
|
if (/chrome\/([0-9]{1,}[.0-9]{0,})/.exec(env.userAgent) !== null) {
|
|
@@ -1456,10 +1461,15 @@ if (typeof ((_global2 = (typeof window !== undefined ? window : global)) == null
|
|
|
1456
1461
|
// code base
|
|
1457
1462
|
|
|
1458
1463
|
env.isLegacyEdge = env.name === 'Edge' && env.version < 79;
|
|
1464
|
+
env.isLegacyElectron = env.isElectron && env.electronVersion < 2;
|
|
1459
1465
|
env.isAndroid = env.userAgent.indexOf('android') > -1;
|
|
1460
1466
|
env.userAgent = (typeof window !== undefined ? window : global).navigator.userAgent;
|
|
1461
1467
|
env.protocol = (typeof window !== undefined ? window : global).location.protocol;
|
|
1462
1468
|
env.hostName = (typeof window !== undefined ? window : global).location.hostName;
|
|
1469
|
+
|
|
1470
|
+
if (env.version === -1 || env.name === 'unknown' || env.isiOS && !env.iOSVersion) {
|
|
1471
|
+
env.error = true;
|
|
1472
|
+
}
|
|
1463
1473
|
}
|
|
1464
1474
|
|
|
1465
1475
|
module.exports = env;
|
|
@@ -1601,6 +1611,8 @@ module.exports = {
|
|
|
1601
1611
|
STREAM_LIMIT_EXCEEDED: 'OT_STREAM_LIMIT_EXCEEDED',
|
|
1602
1612
|
// Couldn't subscribe to the stream because it was not found.
|
|
1603
1613
|
STREAM_NOT_FOUND: 'OT_STREAM_NOT_FOUND',
|
|
1614
|
+
// Couldn't subscribe to stream due to unexpected error from rumor
|
|
1615
|
+
UNABLE_TO_SUBSCRIBE: 'OT_UNABLE_TO_SUBSCRIBE',
|
|
1604
1616
|
// Couldn't connect due to a terms of service violation.
|
|
1605
1617
|
TERMS_OF_SERVICE_FAILURE: 'OT_TERMS_OF_SERVICE_FAILURE',
|
|
1606
1618
|
// A timer expired while waiting for an action to occur.
|
|
@@ -1694,10 +1706,10 @@ OTHelpers.logging = log('OT.$');
|
|
|
1694
1706
|
OTHelpers.ElementCollection = __webpack_require__(246);
|
|
1695
1707
|
OTHelpers.env = __webpack_require__(2);
|
|
1696
1708
|
OTHelpers.ajax = __webpack_require__(244);
|
|
1697
|
-
OTHelpers.statable = __webpack_require__(
|
|
1709
|
+
OTHelpers.statable = __webpack_require__(538);
|
|
1698
1710
|
OTHelpers.Analytics = __webpack_require__(243);
|
|
1699
1711
|
OTHelpers.Collection = __webpack_require__(248);
|
|
1700
|
-
OTHelpers.domExtras = __webpack_require__(
|
|
1712
|
+
OTHelpers.domExtras = __webpack_require__(539);
|
|
1701
1713
|
OTHelpers.Error = __webpack_require__(250);
|
|
1702
1714
|
setDeprecatedProperty(OTHelpers, 'useLogHelpers', {
|
|
1703
1715
|
value(mixin) {
|
|
@@ -2156,7 +2168,7 @@ var assignValue = __webpack_require__(83),
|
|
|
2156
2168
|
createAssigner = __webpack_require__(191),
|
|
2157
2169
|
isArrayLike = __webpack_require__(24),
|
|
2158
2170
|
isPrototype = __webpack_require__(68),
|
|
2159
|
-
keys = __webpack_require__(
|
|
2171
|
+
keys = __webpack_require__(30);
|
|
2160
2172
|
|
|
2161
2173
|
/** Used for built-in method references. */
|
|
2162
2174
|
var objectProto = Object.prototype;
|
|
@@ -2379,7 +2391,7 @@ module.exports = function otErrorFactory(deps) {
|
|
|
2379
2391
|
/* 12 */
|
|
2380
2392
|
/***/ (function(module, exports, __webpack_require__) {
|
|
2381
2393
|
|
|
2382
|
-
module.exports = __webpack_require__(
|
|
2394
|
+
module.exports = __webpack_require__(600);
|
|
2383
2395
|
|
|
2384
2396
|
|
|
2385
2397
|
/***/ }),
|
|
@@ -2444,7 +2456,7 @@ module.exports = root;
|
|
|
2444
2456
|
/* 15 */
|
|
2445
2457
|
/***/ (function(module, exports, __webpack_require__) {
|
|
2446
2458
|
|
|
2447
|
-
var baseGetTag = __webpack_require__(
|
|
2459
|
+
var baseGetTag = __webpack_require__(29),
|
|
2448
2460
|
isObject = __webpack_require__(9);
|
|
2449
2461
|
|
|
2450
2462
|
/** `Object#toString` result references. */
|
|
@@ -2946,7 +2958,7 @@ const eventing = __webpack_require__(6);
|
|
|
2946
2958
|
|
|
2947
2959
|
const eventNames = __webpack_require__(26);
|
|
2948
2960
|
|
|
2949
|
-
const errorCodeToErrorTitleMap = __webpack_require__(
|
|
2961
|
+
const errorCodeToErrorTitleMap = __webpack_require__(537);
|
|
2950
2962
|
|
|
2951
2963
|
const Events = __webpack_require__(22)();
|
|
2952
2964
|
/**
|
|
@@ -5048,7 +5060,7 @@ module.exports = function (deps) {
|
|
|
5048
5060
|
|
|
5049
5061
|
const getNativeEnumerateDevices = deps.getNativeEnumerateDevices || __webpack_require__(286)();
|
|
5050
5062
|
|
|
5051
|
-
const getNativeMediaDevices = deps.getNativeMediaDevices || __webpack_require__(
|
|
5063
|
+
const getNativeMediaDevices = deps.getNativeMediaDevices || __webpack_require__(624)();
|
|
5052
5064
|
|
|
5053
5065
|
const _ref = deps.currentAudioOutputDevice || __webpack_require__(105),
|
|
5054
5066
|
getCurrentAudioOutputDeviceId = _ref.getCurrentAudioOutputDeviceId;
|
|
@@ -5370,6 +5382,185 @@ module.exports = {
|
|
|
5370
5382
|
/* 27 */
|
|
5371
5383
|
/***/ (function(module, exports, __webpack_require__) {
|
|
5372
5384
|
|
|
5385
|
+
"use strict";
|
|
5386
|
+
|
|
5387
|
+
|
|
5388
|
+
var _interopRequireDefault = __webpack_require__(3);
|
|
5389
|
+
|
|
5390
|
+
var _extends2 = _interopRequireDefault(__webpack_require__(25));
|
|
5391
|
+
|
|
5392
|
+
var _createClass2 = _interopRequireDefault(__webpack_require__(45));
|
|
5393
|
+
|
|
5394
|
+
var _defineProperty2 = _interopRequireDefault(__webpack_require__(18));
|
|
5395
|
+
|
|
5396
|
+
/* eslint-disable no-underscore-dangle */
|
|
5397
|
+
const guidStorage = __webpack_require__(240);
|
|
5398
|
+
|
|
5399
|
+
const Analytics = __webpack_require__(243);
|
|
5400
|
+
|
|
5401
|
+
const SessionInfo = __webpack_require__(141);
|
|
5402
|
+
|
|
5403
|
+
const StaticConfig = __webpack_require__(44)();
|
|
5404
|
+
|
|
5405
|
+
const eventing = __webpack_require__(6);
|
|
5406
|
+
|
|
5407
|
+
const sanitizeQosData = __webpack_require__(540);
|
|
5408
|
+
|
|
5409
|
+
const LOG_VERSION = '2';
|
|
5410
|
+
|
|
5411
|
+
let AnalyticsHelper = /*#__PURE__*/function () {
|
|
5412
|
+
function AnalyticsHelper(_temp) {
|
|
5413
|
+
let _ref = _temp === void 0 ? {} : _temp,
|
|
5414
|
+
_ref$staticConfig = _ref.staticConfig,
|
|
5415
|
+
staticConfig = _ref$staticConfig === void 0 ? StaticConfig.onlyLocal() : _ref$staticConfig,
|
|
5416
|
+
_ref$sessionInfo = _ref.sessionInfo,
|
|
5417
|
+
sessionInfo = _ref$sessionInfo === void 0 ? new SessionInfo() : _ref$sessionInfo,
|
|
5418
|
+
ajax = _ref.ajax,
|
|
5419
|
+
queue = _ref.queue;
|
|
5420
|
+
|
|
5421
|
+
(0, _defineProperty2.default)(this, "getTurnServerName", iceServers => {
|
|
5422
|
+
let turnNoTLSServerName;
|
|
5423
|
+
let turnTLSServerName; // In case we don't find the server name we will be returning nothing
|
|
5424
|
+
// which will be ignored and relay server will not be present in the logs
|
|
5425
|
+
|
|
5426
|
+
if (!iceServers || typeof iceServers !== 'object') return turnNoTLSServerName;
|
|
5427
|
+
const servers = Array.isArray(iceServers) ? iceServers : [iceServers];
|
|
5428
|
+
servers.forEach(server => {
|
|
5429
|
+
const urls = server.urls || server.url;
|
|
5430
|
+
const arrUrl = Array.isArray(urls) ? urls : [urls];
|
|
5431
|
+
arrUrl.forEach(url => {
|
|
5432
|
+
// Index where server name value starts
|
|
5433
|
+
const prefixIndex = url.indexOf(':') + 1; // Index of the port number
|
|
5434
|
+
|
|
5435
|
+
const suffixIndex = url.lastIndexOf(':'); // We assume that TLS turn, i.e. turns, is the one which contains
|
|
5436
|
+
// the domain name.
|
|
5437
|
+
|
|
5438
|
+
if (url.includes('turns')) {
|
|
5439
|
+
turnTLSServerName = url.substring(prefixIndex, suffixIndex);
|
|
5440
|
+
} else {
|
|
5441
|
+
turnNoTLSServerName = url.substring(prefixIndex, suffixIndex);
|
|
5442
|
+
}
|
|
5443
|
+
});
|
|
5444
|
+
});
|
|
5445
|
+
return turnTLSServerName || turnNoTLSServerName;
|
|
5446
|
+
});
|
|
5447
|
+
this.ajax = ajax;
|
|
5448
|
+
this.queue = queue;
|
|
5449
|
+
this.sessionInfo = sessionInfo;
|
|
5450
|
+
this.staticConfig = staticConfig;
|
|
5451
|
+
}
|
|
5452
|
+
|
|
5453
|
+
var _proto = AnalyticsHelper.prototype;
|
|
5454
|
+
|
|
5455
|
+
_proto._getCommon = function _getCommon() {
|
|
5456
|
+
return {
|
|
5457
|
+
clientVersion: this.staticConfig.clientVersion,
|
|
5458
|
+
buildHash: this.staticConfig.buildHash,
|
|
5459
|
+
source: (typeof window !== undefined ? window : global).location && (typeof window !== undefined ? window : global).location.href,
|
|
5460
|
+
logVersion: LOG_VERSION,
|
|
5461
|
+
apiServer: this.staticConfig.apiUrl,
|
|
5462
|
+
clientSystemTime: new Date().getTime(),
|
|
5463
|
+
sessionId: this.sessionInfo.sessionId,
|
|
5464
|
+
mediaServerName: this.sessionInfo.mediaServerName,
|
|
5465
|
+
relayServer: this.getTurnServerName(this.sessionInfo.iceServers),
|
|
5466
|
+
p2p: this.sessionInfo.p2pEnabled,
|
|
5467
|
+
messagingServer: this.sessionInfo.messagingServer,
|
|
5468
|
+
messagingUrl: this.sessionInfo.messagingURL,
|
|
5469
|
+
version: this.staticConfig.version,
|
|
5470
|
+
partnerId: this.sessionInfo.partnerId
|
|
5471
|
+
};
|
|
5472
|
+
};
|
|
5473
|
+
|
|
5474
|
+
_proto.logError = function logError(code, type, message, details, options) {
|
|
5475
|
+
if (options === void 0) {
|
|
5476
|
+
options = {};
|
|
5477
|
+
}
|
|
5478
|
+
|
|
5479
|
+
guidStorage.get((error, guid) => {
|
|
5480
|
+
if (error) {
|
|
5481
|
+
// @todo
|
|
5482
|
+
return;
|
|
5483
|
+
}
|
|
5484
|
+
|
|
5485
|
+
const args = [code, type, message, details, (0, _extends2.default)({
|
|
5486
|
+
guid
|
|
5487
|
+
}, this.combineWithCommon(options))];
|
|
5488
|
+
AnalyticsHelper.emit('logError', ...args);
|
|
5489
|
+
|
|
5490
|
+
this._analytics.logError(...args);
|
|
5491
|
+
});
|
|
5492
|
+
};
|
|
5493
|
+
|
|
5494
|
+
_proto.combineWithCommon = function combineWithCommon(options) {
|
|
5495
|
+
return (0, _extends2.default)({}, this._getCommon(), options);
|
|
5496
|
+
};
|
|
5497
|
+
|
|
5498
|
+
_proto.logEvent = function logEvent(options, throttle, completionHandler) {
|
|
5499
|
+
if (options === void 0) {
|
|
5500
|
+
options = {};
|
|
5501
|
+
}
|
|
5502
|
+
|
|
5503
|
+
guidStorage.get((error, guid) => {
|
|
5504
|
+
if (error) {
|
|
5505
|
+
// @todo
|
|
5506
|
+
return;
|
|
5507
|
+
}
|
|
5508
|
+
|
|
5509
|
+
const logData = (0, _extends2.default)({
|
|
5510
|
+
guid
|
|
5511
|
+
}, this.combineWithCommon(options));
|
|
5512
|
+
AnalyticsHelper.emit('logEvent', logData);
|
|
5513
|
+
|
|
5514
|
+
this._analytics.logEvent(logData, false, throttle, completionHandler);
|
|
5515
|
+
});
|
|
5516
|
+
};
|
|
5517
|
+
|
|
5518
|
+
_proto.logQOS = function logQOS(options) {
|
|
5519
|
+
if (options === void 0) {
|
|
5520
|
+
options = {};
|
|
5521
|
+
}
|
|
5522
|
+
|
|
5523
|
+
guidStorage.get((error, guid) => {
|
|
5524
|
+
if (error) {
|
|
5525
|
+
// @todo
|
|
5526
|
+
return;
|
|
5527
|
+
}
|
|
5528
|
+
|
|
5529
|
+
const qosData = (0, _extends2.default)({
|
|
5530
|
+
guid,
|
|
5531
|
+
duration: 0
|
|
5532
|
+
}, this.combineWithCommon(options));
|
|
5533
|
+
sanitizeQosData(qosData);
|
|
5534
|
+
AnalyticsHelper.emit('logQOS', qosData);
|
|
5535
|
+
|
|
5536
|
+
this._analytics.logQOS(qosData);
|
|
5537
|
+
});
|
|
5538
|
+
};
|
|
5539
|
+
|
|
5540
|
+
(0, _createClass2.default)(AnalyticsHelper, [{
|
|
5541
|
+
key: "staticConfig",
|
|
5542
|
+
get: function get() {
|
|
5543
|
+
return this._staticConfig;
|
|
5544
|
+
},
|
|
5545
|
+
set: function set(staticConfig) {
|
|
5546
|
+
this._staticConfig = staticConfig;
|
|
5547
|
+
this._analytics = new Analytics({
|
|
5548
|
+
loggingUrl: this.staticConfig.loggingUrl,
|
|
5549
|
+
ajax: this.ajax,
|
|
5550
|
+
queue: this.queue
|
|
5551
|
+
});
|
|
5552
|
+
}
|
|
5553
|
+
}]);
|
|
5554
|
+
return AnalyticsHelper;
|
|
5555
|
+
}();
|
|
5556
|
+
|
|
5557
|
+
eventing(AnalyticsHelper);
|
|
5558
|
+
module.exports = AnalyticsHelper;
|
|
5559
|
+
|
|
5560
|
+
/***/ }),
|
|
5561
|
+
/* 28 */
|
|
5562
|
+
/***/ (function(module, exports, __webpack_require__) {
|
|
5563
|
+
|
|
5373
5564
|
"use strict";
|
|
5374
5565
|
/*
|
|
5375
5566
|
* Copyright (c) 2016 The WebRTC project authors. All Rights Reserved.
|
|
@@ -5554,7 +5745,7 @@ module.exports = {
|
|
|
5554
5745
|
|
|
5555
5746
|
|
|
5556
5747
|
/***/ }),
|
|
5557
|
-
/*
|
|
5748
|
+
/* 29 */
|
|
5558
5749
|
/***/ (function(module, exports, __webpack_require__) {
|
|
5559
5750
|
|
|
5560
5751
|
var Symbol = __webpack_require__(38),
|
|
@@ -5588,7 +5779,7 @@ module.exports = baseGetTag;
|
|
|
5588
5779
|
|
|
5589
5780
|
|
|
5590
5781
|
/***/ }),
|
|
5591
|
-
/*
|
|
5782
|
+
/* 30 */
|
|
5592
5783
|
/***/ (function(module, exports, __webpack_require__) {
|
|
5593
5784
|
|
|
5594
5785
|
var arrayLikeKeys = __webpack_require__(177),
|
|
@@ -5631,7 +5822,7 @@ module.exports = keys;
|
|
|
5631
5822
|
|
|
5632
5823
|
|
|
5633
5824
|
/***/ }),
|
|
5634
|
-
/*
|
|
5825
|
+
/* 31 */
|
|
5635
5826
|
/***/ (function(module, exports, __webpack_require__) {
|
|
5636
5827
|
|
|
5637
5828
|
"use strict";
|
|
@@ -5646,7 +5837,7 @@ module.exports = function (value) {
|
|
|
5646
5837
|
|
|
5647
5838
|
|
|
5648
5839
|
/***/ }),
|
|
5649
|
-
/*
|
|
5840
|
+
/* 32 */
|
|
5650
5841
|
/***/ (function(module, exports, __webpack_require__) {
|
|
5651
5842
|
|
|
5652
5843
|
"use strict";
|
|
@@ -5715,7 +5906,7 @@ d.gs = function (dscr, get, set/*, options*/) {
|
|
|
5715
5906
|
|
|
5716
5907
|
|
|
5717
5908
|
/***/ }),
|
|
5718
|
-
/*
|
|
5909
|
+
/* 33 */
|
|
5719
5910
|
/***/ (function(module, exports) {
|
|
5720
5911
|
|
|
5721
5912
|
/**
|
|
@@ -5742,7 +5933,7 @@ module.exports = arrayMap;
|
|
|
5742
5933
|
|
|
5743
5934
|
|
|
5744
5935
|
/***/ }),
|
|
5745
|
-
/*
|
|
5936
|
+
/* 34 */
|
|
5746
5937
|
/***/ (function(module, exports, __webpack_require__) {
|
|
5747
5938
|
|
|
5748
5939
|
var baseMatches = __webpack_require__(496),
|
|
@@ -5778,185 +5969,6 @@ function baseIteratee(value) {
|
|
|
5778
5969
|
module.exports = baseIteratee;
|
|
5779
5970
|
|
|
5780
5971
|
|
|
5781
|
-
/***/ }),
|
|
5782
|
-
/* 34 */
|
|
5783
|
-
/***/ (function(module, exports, __webpack_require__) {
|
|
5784
|
-
|
|
5785
|
-
"use strict";
|
|
5786
|
-
|
|
5787
|
-
|
|
5788
|
-
var _interopRequireDefault = __webpack_require__(3);
|
|
5789
|
-
|
|
5790
|
-
var _extends2 = _interopRequireDefault(__webpack_require__(25));
|
|
5791
|
-
|
|
5792
|
-
var _createClass2 = _interopRequireDefault(__webpack_require__(45));
|
|
5793
|
-
|
|
5794
|
-
var _defineProperty2 = _interopRequireDefault(__webpack_require__(18));
|
|
5795
|
-
|
|
5796
|
-
/* eslint-disable no-underscore-dangle */
|
|
5797
|
-
const guidStorage = __webpack_require__(240);
|
|
5798
|
-
|
|
5799
|
-
const Analytics = __webpack_require__(243);
|
|
5800
|
-
|
|
5801
|
-
const SessionInfo = __webpack_require__(141);
|
|
5802
|
-
|
|
5803
|
-
const StaticConfig = __webpack_require__(44)();
|
|
5804
|
-
|
|
5805
|
-
const eventing = __webpack_require__(6);
|
|
5806
|
-
|
|
5807
|
-
const sanitizeQosData = __webpack_require__(539);
|
|
5808
|
-
|
|
5809
|
-
const LOG_VERSION = '2';
|
|
5810
|
-
|
|
5811
|
-
let AnalyticsHelper = /*#__PURE__*/function () {
|
|
5812
|
-
function AnalyticsHelper(_temp) {
|
|
5813
|
-
let _ref = _temp === void 0 ? {} : _temp,
|
|
5814
|
-
_ref$staticConfig = _ref.staticConfig,
|
|
5815
|
-
staticConfig = _ref$staticConfig === void 0 ? StaticConfig.onlyLocal() : _ref$staticConfig,
|
|
5816
|
-
_ref$sessionInfo = _ref.sessionInfo,
|
|
5817
|
-
sessionInfo = _ref$sessionInfo === void 0 ? new SessionInfo() : _ref$sessionInfo,
|
|
5818
|
-
ajax = _ref.ajax,
|
|
5819
|
-
queue = _ref.queue;
|
|
5820
|
-
|
|
5821
|
-
(0, _defineProperty2.default)(this, "getTurnServerName", iceServers => {
|
|
5822
|
-
let turnNoTLSServerName;
|
|
5823
|
-
let turnTLSServerName; // In case we don't find the server name we will be returning nothing
|
|
5824
|
-
// which will be ignored and relay server will not be present in the logs
|
|
5825
|
-
|
|
5826
|
-
if (!iceServers || typeof iceServers !== 'object') return turnNoTLSServerName;
|
|
5827
|
-
const servers = Array.isArray(iceServers) ? iceServers : [iceServers];
|
|
5828
|
-
servers.forEach(server => {
|
|
5829
|
-
const urls = server.urls || server.url;
|
|
5830
|
-
const arrUrl = Array.isArray(urls) ? urls : [urls];
|
|
5831
|
-
arrUrl.forEach(url => {
|
|
5832
|
-
// Index where server name value starts
|
|
5833
|
-
const prefixIndex = url.indexOf(':') + 1; // Index of the port number
|
|
5834
|
-
|
|
5835
|
-
const suffixIndex = url.lastIndexOf(':'); // We assume that TLS turn, i.e. turns, is the one which contains
|
|
5836
|
-
// the domain name.
|
|
5837
|
-
|
|
5838
|
-
if (url.includes('turns')) {
|
|
5839
|
-
turnTLSServerName = url.substring(prefixIndex, suffixIndex);
|
|
5840
|
-
} else {
|
|
5841
|
-
turnNoTLSServerName = url.substring(prefixIndex, suffixIndex);
|
|
5842
|
-
}
|
|
5843
|
-
});
|
|
5844
|
-
});
|
|
5845
|
-
return turnTLSServerName || turnNoTLSServerName;
|
|
5846
|
-
});
|
|
5847
|
-
this.ajax = ajax;
|
|
5848
|
-
this.queue = queue;
|
|
5849
|
-
this.sessionInfo = sessionInfo;
|
|
5850
|
-
this.staticConfig = staticConfig;
|
|
5851
|
-
}
|
|
5852
|
-
|
|
5853
|
-
var _proto = AnalyticsHelper.prototype;
|
|
5854
|
-
|
|
5855
|
-
_proto._getCommon = function _getCommon() {
|
|
5856
|
-
return {
|
|
5857
|
-
clientVersion: this.staticConfig.clientVersion,
|
|
5858
|
-
buildHash: this.staticConfig.buildHash,
|
|
5859
|
-
source: (typeof window !== undefined ? window : global).location && (typeof window !== undefined ? window : global).location.href,
|
|
5860
|
-
logVersion: LOG_VERSION,
|
|
5861
|
-
apiServer: this.staticConfig.apiUrl,
|
|
5862
|
-
clientSystemTime: new Date().getTime(),
|
|
5863
|
-
sessionId: this.sessionInfo.sessionId,
|
|
5864
|
-
mediaServerName: this.sessionInfo.mediaServerName,
|
|
5865
|
-
relayServer: this.getTurnServerName(this.sessionInfo.iceServers),
|
|
5866
|
-
p2p: this.sessionInfo.p2pEnabled,
|
|
5867
|
-
messagingServer: this.sessionInfo.messagingServer,
|
|
5868
|
-
messagingUrl: this.sessionInfo.messagingURL,
|
|
5869
|
-
version: this.staticConfig.version,
|
|
5870
|
-
partnerId: this.sessionInfo.partnerId
|
|
5871
|
-
};
|
|
5872
|
-
};
|
|
5873
|
-
|
|
5874
|
-
_proto.logError = function logError(code, type, message, details, options) {
|
|
5875
|
-
if (options === void 0) {
|
|
5876
|
-
options = {};
|
|
5877
|
-
}
|
|
5878
|
-
|
|
5879
|
-
guidStorage.get((error, guid) => {
|
|
5880
|
-
if (error) {
|
|
5881
|
-
// @todo
|
|
5882
|
-
return;
|
|
5883
|
-
}
|
|
5884
|
-
|
|
5885
|
-
const args = [code, type, message, details, (0, _extends2.default)({
|
|
5886
|
-
guid
|
|
5887
|
-
}, this.combineWithCommon(options))];
|
|
5888
|
-
AnalyticsHelper.emit('logError', ...args);
|
|
5889
|
-
|
|
5890
|
-
this._analytics.logError(...args);
|
|
5891
|
-
});
|
|
5892
|
-
};
|
|
5893
|
-
|
|
5894
|
-
_proto.combineWithCommon = function combineWithCommon(options) {
|
|
5895
|
-
return (0, _extends2.default)({}, this._getCommon(), options);
|
|
5896
|
-
};
|
|
5897
|
-
|
|
5898
|
-
_proto.logEvent = function logEvent(options, throttle, completionHandler) {
|
|
5899
|
-
if (options === void 0) {
|
|
5900
|
-
options = {};
|
|
5901
|
-
}
|
|
5902
|
-
|
|
5903
|
-
guidStorage.get((error, guid) => {
|
|
5904
|
-
if (error) {
|
|
5905
|
-
// @todo
|
|
5906
|
-
return;
|
|
5907
|
-
}
|
|
5908
|
-
|
|
5909
|
-
const logData = (0, _extends2.default)({
|
|
5910
|
-
guid
|
|
5911
|
-
}, this.combineWithCommon(options));
|
|
5912
|
-
AnalyticsHelper.emit('logEvent', logData);
|
|
5913
|
-
|
|
5914
|
-
this._analytics.logEvent(logData, false, throttle, completionHandler);
|
|
5915
|
-
});
|
|
5916
|
-
};
|
|
5917
|
-
|
|
5918
|
-
_proto.logQOS = function logQOS(options) {
|
|
5919
|
-
if (options === void 0) {
|
|
5920
|
-
options = {};
|
|
5921
|
-
}
|
|
5922
|
-
|
|
5923
|
-
guidStorage.get((error, guid) => {
|
|
5924
|
-
if (error) {
|
|
5925
|
-
// @todo
|
|
5926
|
-
return;
|
|
5927
|
-
}
|
|
5928
|
-
|
|
5929
|
-
const qosData = (0, _extends2.default)({
|
|
5930
|
-
guid,
|
|
5931
|
-
duration: 0
|
|
5932
|
-
}, this.combineWithCommon(options));
|
|
5933
|
-
sanitizeQosData(qosData);
|
|
5934
|
-
AnalyticsHelper.emit('logQOS', qosData);
|
|
5935
|
-
|
|
5936
|
-
this._analytics.logQOS(qosData);
|
|
5937
|
-
});
|
|
5938
|
-
};
|
|
5939
|
-
|
|
5940
|
-
(0, _createClass2.default)(AnalyticsHelper, [{
|
|
5941
|
-
key: "staticConfig",
|
|
5942
|
-
get: function get() {
|
|
5943
|
-
return this._staticConfig;
|
|
5944
|
-
},
|
|
5945
|
-
set: function set(staticConfig) {
|
|
5946
|
-
this._staticConfig = staticConfig;
|
|
5947
|
-
this._analytics = new Analytics({
|
|
5948
|
-
loggingUrl: this.staticConfig.loggingUrl,
|
|
5949
|
-
ajax: this.ajax,
|
|
5950
|
-
queue: this.queue
|
|
5951
|
-
});
|
|
5952
|
-
}
|
|
5953
|
-
}]);
|
|
5954
|
-
return AnalyticsHelper;
|
|
5955
|
-
}();
|
|
5956
|
-
|
|
5957
|
-
eventing(AnalyticsHelper);
|
|
5958
|
-
module.exports = AnalyticsHelper;
|
|
5959
|
-
|
|
5960
5972
|
/***/ }),
|
|
5961
5973
|
/* 35 */
|
|
5962
5974
|
/***/ (function(module, exports, __webpack_require__) {
|
|
@@ -6175,7 +6187,7 @@ var DataView = __webpack_require__(380),
|
|
|
6175
6187
|
Promise = __webpack_require__(381),
|
|
6176
6188
|
Set = __webpack_require__(185),
|
|
6177
6189
|
WeakMap = __webpack_require__(186),
|
|
6178
|
-
baseGetTag = __webpack_require__(
|
|
6190
|
+
baseGetTag = __webpack_require__(29),
|
|
6179
6191
|
toSource = __webpack_require__(174);
|
|
6180
6192
|
|
|
6181
6193
|
/** `Object#toString` result references. */
|
|
@@ -6780,7 +6792,7 @@ const _require = __webpack_require__(138),
|
|
|
6780
6792
|
/** @type builtInConfig */
|
|
6781
6793
|
|
|
6782
6794
|
|
|
6783
|
-
const builtInConfig = cloneDeep({"version":"v2.21.
|
|
6795
|
+
const builtInConfig = cloneDeep({"version":"v2.21.7","buildHash":"8db653cdf","minimumVersion":{"firefox":52,"chrome":49},"debug":"false","websiteURL":"http://www.tokbox.com","configURL":"https://config.opentok.com","ipWhitelistConfigURL":"","cdnURL":"https://static.opentok.com","loggingURL":"https://hlg.tokbox.com/prod","apiURL":"https://anvil.opentok.com"});
|
|
6784
6796
|
const whitelistAllowedRuntimeProperties = pick(['apiURL', 'assetURL', 'cdnURL', 'sessionInfoOverrides', 'loggingURL']);
|
|
6785
6797
|
const liveConfigMap = {
|
|
6786
6798
|
apiUrl: 'apiURL',
|
|
@@ -7046,7 +7058,7 @@ module.exports = function highResolutionNow() {
|
|
|
7046
7058
|
/* 49 */
|
|
7047
7059
|
/***/ (function(module, exports, __webpack_require__) {
|
|
7048
7060
|
|
|
7049
|
-
var before = __webpack_require__(
|
|
7061
|
+
var before = __webpack_require__(573);
|
|
7050
7062
|
|
|
7051
7063
|
/**
|
|
7052
7064
|
* Creates a function that is restricted to invoking `func` once. Repeat calls
|
|
@@ -8216,9 +8228,9 @@ exports.check = function (deps) {
|
|
|
8216
8228
|
|
|
8217
8229
|
const env = deps.env || __webpack_require__(2);
|
|
8218
8230
|
|
|
8219
|
-
const hasGetUserMediaCapability = deps.hasGetUserMediaCapability || __webpack_require__(
|
|
8231
|
+
const hasGetUserMediaCapability = deps.hasGetUserMediaCapability || __webpack_require__(582);
|
|
8220
8232
|
|
|
8221
|
-
const hasPeerConnectionCapability = deps.hasPeerConnectionCapability || __webpack_require__(
|
|
8233
|
+
const hasPeerConnectionCapability = deps.hasPeerConnectionCapability || __webpack_require__(583);
|
|
8222
8234
|
|
|
8223
8235
|
const logging = deps.logging || __webpack_require__(1)('hasOpenTokSupport');
|
|
8224
8236
|
/** @type StaticConfig */
|
|
@@ -8247,7 +8259,7 @@ exports.once = once(() => exports.check());
|
|
|
8247
8259
|
/* 61 */
|
|
8248
8260
|
/***/ (function(module, exports, __webpack_require__) {
|
|
8249
8261
|
|
|
8250
|
-
var createFind = __webpack_require__(
|
|
8262
|
+
var createFind = __webpack_require__(596),
|
|
8251
8263
|
findIndex = __webpack_require__(272);
|
|
8252
8264
|
|
|
8253
8265
|
/**
|
|
@@ -8761,7 +8773,7 @@ module.exports = function (fn) {
|
|
|
8761
8773
|
/* 71 */
|
|
8762
8774
|
/***/ (function(module, exports, __webpack_require__) {
|
|
8763
8775
|
|
|
8764
|
-
var baseGetTag = __webpack_require__(
|
|
8776
|
+
var baseGetTag = __webpack_require__(29),
|
|
8765
8777
|
isObjectLike = __webpack_require__(16);
|
|
8766
8778
|
|
|
8767
8779
|
/** `Object#toString` result references. */
|
|
@@ -8897,7 +8909,7 @@ module.exports = IntervalRunner;
|
|
|
8897
8909
|
|
|
8898
8910
|
const pick = __webpack_require__(47);
|
|
8899
8911
|
|
|
8900
|
-
const mapValues = __webpack_require__(
|
|
8912
|
+
const mapValues = __webpack_require__(639);
|
|
8901
8913
|
|
|
8902
8914
|
const isObject = __webpack_require__(9);
|
|
8903
8915
|
|
|
@@ -9201,7 +9213,7 @@ var Stack = __webpack_require__(78),
|
|
|
9201
9213
|
isMap = __webpack_require__(387),
|
|
9202
9214
|
isObject = __webpack_require__(9),
|
|
9203
9215
|
isSet = __webpack_require__(389),
|
|
9204
|
-
keys = __webpack_require__(
|
|
9216
|
+
keys = __webpack_require__(30),
|
|
9205
9217
|
keysIn = __webpack_require__(52);
|
|
9206
9218
|
|
|
9207
9219
|
/** Used to compose bitmasks for cloning. */
|
|
@@ -9926,7 +9938,7 @@ module.exports = baseGet;
|
|
|
9926
9938
|
/***/ (function(module, exports, __webpack_require__) {
|
|
9927
9939
|
|
|
9928
9940
|
var baseFor = __webpack_require__(238),
|
|
9929
|
-
keys = __webpack_require__(
|
|
9941
|
+
keys = __webpack_require__(30);
|
|
9930
9942
|
|
|
9931
9943
|
/**
|
|
9932
9944
|
* The base implementation of `_.forOwn` without support for iteratee shorthands.
|
|
@@ -10015,33 +10027,33 @@ module.exports = function PeerConnectionFactory(deps) {
|
|
|
10015
10027
|
deps = {};
|
|
10016
10028
|
}
|
|
10017
10029
|
|
|
10018
|
-
const hasValidPeerConnection = deps.hasValidPeerConnection || __webpack_require__(
|
|
10030
|
+
const hasValidPeerConnection = deps.hasValidPeerConnection || __webpack_require__(599);
|
|
10019
10031
|
|
|
10020
10032
|
const applySdpTransform = deps.applySdpTransform || __webpack_require__(155);
|
|
10021
10033
|
|
|
10022
|
-
const createPeerConnection = deps.createPeerConnection || __webpack_require__(
|
|
10034
|
+
const createPeerConnection = deps.createPeerConnection || __webpack_require__(602);
|
|
10023
10035
|
|
|
10024
10036
|
const env = deps.env || __webpack_require__(2);
|
|
10025
10037
|
|
|
10026
|
-
const sdpTransformDefaults = deps.sdpTransformDefaults || __webpack_require__(
|
|
10038
|
+
const sdpTransformDefaults = deps.sdpTransformDefaults || __webpack_require__(604);
|
|
10027
10039
|
|
|
10028
10040
|
const getStatsAdapter = deps.getStatsAdapter || __webpack_require__(274);
|
|
10029
10041
|
|
|
10030
10042
|
const getRtcStatsReportAdapter = deps.getRtcStatsReportAdapter || __webpack_require__(277);
|
|
10031
10043
|
|
|
10032
|
-
const getSynchronizationSources = deps.getSynchronizationSources || __webpack_require__(
|
|
10044
|
+
const getSynchronizationSources = deps.getSynchronizationSources || __webpack_require__(608);
|
|
10033
10045
|
|
|
10034
|
-
const IceCandidateProcessor = deps.IceCandidateProcessor || __webpack_require__(
|
|
10046
|
+
const IceCandidateProcessor = deps.IceCandidateProcessor || __webpack_require__(609);
|
|
10035
10047
|
|
|
10036
10048
|
const createLog = deps.logging || __webpack_require__(1);
|
|
10037
10049
|
|
|
10038
|
-
const offerProcessor = deps.offerProcessor || __webpack_require__(
|
|
10050
|
+
const offerProcessor = deps.offerProcessor || __webpack_require__(611);
|
|
10039
10051
|
|
|
10040
|
-
const PeerConnectionChannels = deps.PeerConnectionChannels || __webpack_require__(
|
|
10052
|
+
const PeerConnectionChannels = deps.PeerConnectionChannels || __webpack_require__(613);
|
|
10041
10053
|
|
|
10042
|
-
const subscribeProcessor = deps.subscribeProcessor || __webpack_require__(
|
|
10054
|
+
const subscribeProcessor = deps.subscribeProcessor || __webpack_require__(615);
|
|
10043
10055
|
|
|
10044
|
-
const _ref = deps.changeMediaDirection || __webpack_require__(
|
|
10056
|
+
const _ref = deps.changeMediaDirection || __webpack_require__(616),
|
|
10045
10057
|
changeMediaDirectionToInactive = _ref.changeMediaDirectionToInactive,
|
|
10046
10058
|
changeMediaDirectionToRecvOnly = _ref.changeMediaDirectionToRecvOnly;
|
|
10047
10059
|
|
|
@@ -10049,9 +10061,9 @@ module.exports = function PeerConnectionFactory(deps) {
|
|
|
10049
10061
|
|
|
10050
10062
|
const windowMock = deps.global || (typeof window !== undefined ? window : global);
|
|
10051
10063
|
|
|
10052
|
-
const debounce = deps.debounce || __webpack_require__(
|
|
10064
|
+
const debounce = deps.debounce || __webpack_require__(620);
|
|
10053
10065
|
|
|
10054
|
-
const needsToSwapH264Profiles = deps.needsToSwapH264Profiles || __webpack_require__(
|
|
10066
|
+
const needsToSwapH264Profiles = deps.needsToSwapH264Profiles || __webpack_require__(622).once;
|
|
10055
10067
|
|
|
10056
10068
|
const futureIsPeerConnectionValid = () => hasValidPeerConnection(windowMock.RTCPeerConnection);
|
|
10057
10069
|
|
|
@@ -11824,7 +11836,7 @@ module.exports = /*#__PURE__*/function () {
|
|
|
11824
11836
|
/* 127 */
|
|
11825
11837
|
/***/ (function(module, exports, __webpack_require__) {
|
|
11826
11838
|
|
|
11827
|
-
var arrayMap = __webpack_require__(
|
|
11839
|
+
var arrayMap = __webpack_require__(33),
|
|
11828
11840
|
baseIntersection = __webpack_require__(446),
|
|
11829
11841
|
baseRest = __webpack_require__(87),
|
|
11830
11842
|
castArrayLikeObject = __webpack_require__(452);
|
|
@@ -12136,7 +12148,7 @@ module.exports = replaceHolders;
|
|
|
12136
12148
|
/* 135 */
|
|
12137
12149
|
/***/ (function(module, exports, __webpack_require__) {
|
|
12138
12150
|
|
|
12139
|
-
var baseGetTag = __webpack_require__(
|
|
12151
|
+
var baseGetTag = __webpack_require__(29),
|
|
12140
12152
|
getPrototype = __webpack_require__(117),
|
|
12141
12153
|
isObjectLike = __webpack_require__(16);
|
|
12142
12154
|
|
|
@@ -12331,7 +12343,7 @@ module.exports = {
|
|
|
12331
12343
|
errorMessages,
|
|
12332
12344
|
setProxyUrl: url => {
|
|
12333
12345
|
// This is necessary to break a circular dependancy, but seems hacky and should be cleaned up
|
|
12334
|
-
const AnalyticsHelper = __webpack_require__(
|
|
12346
|
+
const AnalyticsHelper = __webpack_require__(27);
|
|
12335
12347
|
|
|
12336
12348
|
const apiKey = __webpack_require__(72);
|
|
12337
12349
|
|
|
@@ -12692,9 +12704,9 @@ module.exports = SessionInfo;
|
|
|
12692
12704
|
"use strict";
|
|
12693
12705
|
|
|
12694
12706
|
|
|
12695
|
-
const extendES5Native = __webpack_require__(
|
|
12707
|
+
const extendES5Native = __webpack_require__(546);
|
|
12696
12708
|
|
|
12697
|
-
const webrtcAdapter = __webpack_require__(
|
|
12709
|
+
const webrtcAdapter = __webpack_require__(547);
|
|
12698
12710
|
|
|
12699
12711
|
const logging = __webpack_require__(1)('createWindowMock');
|
|
12700
12712
|
|
|
@@ -13191,7 +13203,7 @@ module.exports = (_temp = /*#__PURE__*/function () {
|
|
|
13191
13203
|
// @todo enable the following disabled rules see OPENTOK-31136 for more info
|
|
13192
13204
|
|
|
13193
13205
|
/* eslint-disable no-underscore-dangle, no-use-before-define */
|
|
13194
|
-
const domState = __webpack_require__(
|
|
13206
|
+
const domState = __webpack_require__(558);
|
|
13195
13207
|
|
|
13196
13208
|
const eventNames = __webpack_require__(26);
|
|
13197
13209
|
|
|
@@ -13255,7 +13267,7 @@ module.exports = new EnvironmentLoader();
|
|
|
13255
13267
|
/* 147 */
|
|
13256
13268
|
/***/ (function(module, exports, __webpack_require__) {
|
|
13257
13269
|
|
|
13258
|
-
var baseMerge = __webpack_require__(
|
|
13270
|
+
var baseMerge = __webpack_require__(559),
|
|
13259
13271
|
createAssigner = __webpack_require__(191);
|
|
13260
13272
|
|
|
13261
13273
|
/**
|
|
@@ -13303,7 +13315,7 @@ module.exports = merge;
|
|
|
13303
13315
|
"use strict";
|
|
13304
13316
|
|
|
13305
13317
|
|
|
13306
|
-
var objectAssign = __webpack_require__(
|
|
13318
|
+
var objectAssign = __webpack_require__(563);
|
|
13307
13319
|
|
|
13308
13320
|
// compare and isBuffer taken from https://github.com/feross/buffer/blob/680e9e5e488f22aac27599a57dc844a6315928dd/index.js
|
|
13309
13321
|
// original notice:
|
|
@@ -13373,7 +13385,7 @@ function isBuffer(b) {
|
|
|
13373
13385
|
// ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
|
13374
13386
|
// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
13375
13387
|
|
|
13376
|
-
var util = __webpack_require__(
|
|
13388
|
+
var util = __webpack_require__(564);
|
|
13377
13389
|
var hasOwn = Object.prototype.hasOwnProperty;
|
|
13378
13390
|
var pSlice = Array.prototype.slice;
|
|
13379
13391
|
var functionsHaveNames = (function () {
|
|
@@ -13957,13 +13969,13 @@ module.exports = function videoOrientationFactory() {
|
|
|
13957
13969
|
// @todo enable the following disabled rules see OPENTOK-31136 for more info
|
|
13958
13970
|
|
|
13959
13971
|
/* eslint-disable no-param-reassign, no-underscore-dangle */
|
|
13960
|
-
const fixBackgroundImageURI = __webpack_require__(
|
|
13972
|
+
const fixBackgroundImageURI = __webpack_require__(579);
|
|
13961
13973
|
|
|
13962
13974
|
const logging = __webpack_require__(1)('StylableComponent');
|
|
13963
13975
|
|
|
13964
|
-
const Style = __webpack_require__(
|
|
13976
|
+
const Style = __webpack_require__(580);
|
|
13965
13977
|
|
|
13966
|
-
const styleHashLogFilter = __webpack_require__(
|
|
13978
|
+
const styleHashLogFilter = __webpack_require__(581);
|
|
13967
13979
|
/* Stylable Notes
|
|
13968
13980
|
* Some bits are controlled by multiple flags, i.e. buttonDisplayMode and nameDisplayMode.
|
|
13969
13981
|
* When there are multiple flags how is the final setting chosen?
|
|
@@ -14252,7 +14264,7 @@ const once = __webpack_require__(49);
|
|
|
14252
14264
|
|
|
14253
14265
|
const StaticConfig = __webpack_require__(44)();
|
|
14254
14266
|
|
|
14255
|
-
const Analytics = __webpack_require__(
|
|
14267
|
+
const Analytics = __webpack_require__(27);
|
|
14256
14268
|
|
|
14257
14269
|
const APIKEY = __webpack_require__(72);
|
|
14258
14270
|
|
|
@@ -14260,15 +14272,15 @@ const EnvironmentLoader = __webpack_require__(146);
|
|
|
14260
14272
|
|
|
14261
14273
|
const hasOpenTokSupport = __webpack_require__(60).once;
|
|
14262
14274
|
|
|
14263
|
-
const isWebSocketSupported = __webpack_require__(
|
|
14275
|
+
const isWebSocketSupported = __webpack_require__(584);
|
|
14264
14276
|
|
|
14265
14277
|
const OTHelpers = __webpack_require__(5);
|
|
14266
14278
|
|
|
14267
14279
|
const logging = __webpack_require__(1)('systemRequirements');
|
|
14268
14280
|
|
|
14269
|
-
const upgradeHtml = __webpack_require__(
|
|
14281
|
+
const upgradeHtml = __webpack_require__(585);
|
|
14270
14282
|
|
|
14271
|
-
const Modal = __webpack_require__(
|
|
14283
|
+
const Modal = __webpack_require__(586);
|
|
14272
14284
|
|
|
14273
14285
|
const staticConfig = StaticConfig.onlyLocal(); // This will be logged before we even get the correct loggingUrl from
|
|
14274
14286
|
// config.opentok.com.
|
|
@@ -14367,9 +14379,9 @@ var _interopRequireDefault = __webpack_require__(3);
|
|
|
14367
14379
|
|
|
14368
14380
|
var _inheritsLoose2 = _interopRequireDefault(__webpack_require__(59));
|
|
14369
14381
|
|
|
14370
|
-
var _wrapNativeSuper2 = _interopRequireDefault(__webpack_require__(
|
|
14382
|
+
var _wrapNativeSuper2 = _interopRequireDefault(__webpack_require__(587));
|
|
14371
14383
|
|
|
14372
|
-
const pFinally = __webpack_require__(
|
|
14384
|
+
const pFinally = __webpack_require__(591);
|
|
14373
14385
|
|
|
14374
14386
|
let TimeoutError = /*#__PURE__*/function (_Error) {
|
|
14375
14387
|
(0, _inheritsLoose2.default)(TimeoutError, _Error);
|
|
@@ -14714,11 +14726,11 @@ module.exports = function screenSharingFactory(deps) {
|
|
|
14714
14726
|
|
|
14715
14727
|
const chromeExtensionHelper = deps.chromeExtensionHelper || __webpack_require__(280)();
|
|
14716
14728
|
|
|
14717
|
-
const electronExtensionHelper = deps.electronExtensionHelper || __webpack_require__(
|
|
14729
|
+
const electronExtensionHelper = deps.electronExtensionHelper || __webpack_require__(627)();
|
|
14718
14730
|
|
|
14719
14731
|
const Errors = deps.Errors || __webpack_require__(4);
|
|
14720
14732
|
|
|
14721
|
-
const firefoxExtensionHelper = deps.firefoxExtensionHelper || __webpack_require__(
|
|
14733
|
+
const firefoxExtensionHelper = deps.firefoxExtensionHelper || __webpack_require__(629);
|
|
14722
14734
|
|
|
14723
14735
|
const getDisplayMediaExtensionHelper = deps.getDisplayMediaExtensionHelper || __webpack_require__(287);
|
|
14724
14736
|
|
|
@@ -15110,13 +15122,13 @@ var _defineProperty2 = _interopRequireDefault(__webpack_require__(18));
|
|
|
15110
15122
|
/* eslint-disable no-underscore-dangle */
|
|
15111
15123
|
const eventing = __webpack_require__(6);
|
|
15112
15124
|
|
|
15113
|
-
const hasPassiveCapability = __webpack_require__(
|
|
15125
|
+
const hasPassiveCapability = __webpack_require__(643);
|
|
15114
15126
|
|
|
15115
15127
|
const defaultLogging = __webpack_require__(1)('WidgetView');
|
|
15116
15128
|
|
|
15117
15129
|
const DefaultOTHelpers = __webpack_require__(5);
|
|
15118
15130
|
|
|
15119
|
-
const defaultVersionGreaterThan = __webpack_require__(
|
|
15131
|
+
const defaultVersionGreaterThan = __webpack_require__(644);
|
|
15120
15132
|
|
|
15121
15133
|
const defaultEnv = __webpack_require__(2);
|
|
15122
15134
|
|
|
@@ -15126,15 +15138,15 @@ const _require = __webpack_require__(165),
|
|
|
15126
15138
|
|
|
15127
15139
|
const unblockAudio = __webpack_require__(166);
|
|
15128
15140
|
|
|
15129
|
-
const waitForVideoResolution = __webpack_require__(
|
|
15141
|
+
const waitForVideoResolution = __webpack_require__(646);
|
|
15130
15142
|
|
|
15131
|
-
const waitForVideoToBePlaying = __webpack_require__(
|
|
15143
|
+
const waitForVideoToBePlaying = __webpack_require__(647);
|
|
15132
15144
|
|
|
15133
|
-
const fixMini = __webpack_require__(
|
|
15145
|
+
const fixMini = __webpack_require__(648);
|
|
15134
15146
|
|
|
15135
|
-
const getOrCreateContainer = __webpack_require__(
|
|
15147
|
+
const getOrCreateContainer = __webpack_require__(649);
|
|
15136
15148
|
|
|
15137
|
-
const ensureCSSUnit = __webpack_require__(
|
|
15149
|
+
const ensureCSSUnit = __webpack_require__(650);
|
|
15138
15150
|
|
|
15139
15151
|
const eventHelper = __webpack_require__(62);
|
|
15140
15152
|
|
|
@@ -15706,7 +15718,7 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
15706
15718
|
});
|
|
15707
15719
|
exports.CancellationError = exports.default = undefined;
|
|
15708
15720
|
|
|
15709
|
-
var _Cancellation = __webpack_require__(
|
|
15721
|
+
var _Cancellation = __webpack_require__(645);
|
|
15710
15722
|
|
|
15711
15723
|
var _Cancellation2 = _interopRequireDefault(_Cancellation);
|
|
15712
15724
|
|
|
@@ -15820,7 +15832,7 @@ const pick = __webpack_require__(47);
|
|
|
15820
15832
|
|
|
15821
15833
|
const once = __webpack_require__(49);
|
|
15822
15834
|
|
|
15823
|
-
const startCase = __webpack_require__(
|
|
15835
|
+
const startCase = __webpack_require__(664);
|
|
15824
15836
|
|
|
15825
15837
|
const uuid = __webpack_require__(19);
|
|
15826
15838
|
|
|
@@ -15834,7 +15846,7 @@ const _require = __webpack_require__(165),
|
|
|
15834
15846
|
|
|
15835
15847
|
const env = __webpack_require__(2);
|
|
15836
15848
|
|
|
15837
|
-
const setEncodersActiveStateDefault = __webpack_require__(
|
|
15849
|
+
const setEncodersActiveStateDefault = __webpack_require__(674);
|
|
15838
15850
|
|
|
15839
15851
|
const promisify = __webpack_require__(307);
|
|
15840
15852
|
|
|
@@ -15848,34 +15860,34 @@ const promiseDelay = __webpack_require__(106);
|
|
|
15848
15860
|
|
|
15849
15861
|
const Event = __webpack_require__(126);
|
|
15850
15862
|
|
|
15851
|
-
const AnalyticsHelperDefault = __webpack_require__(
|
|
15863
|
+
const AnalyticsHelperDefault = __webpack_require__(27);
|
|
15852
15864
|
|
|
15853
15865
|
const IntervalRunnerDefault = __webpack_require__(74);
|
|
15854
15866
|
|
|
15855
15867
|
const createCleanupJobs = __webpack_require__(154);
|
|
15856
15868
|
|
|
15857
|
-
const whitelistPublisherProperties = __webpack_require__(
|
|
15869
|
+
const whitelistPublisherProperties = __webpack_require__(675);
|
|
15858
15870
|
|
|
15859
15871
|
const defaultWidgetView = __webpack_require__(164)();
|
|
15860
15872
|
|
|
15861
|
-
const audioLevelBehaviour = __webpack_require__(
|
|
15873
|
+
const audioLevelBehaviour = __webpack_require__(676);
|
|
15862
15874
|
|
|
15863
|
-
const blockCallsUntilComplete = __webpack_require__(
|
|
15875
|
+
const blockCallsUntilComplete = __webpack_require__(677);
|
|
15864
15876
|
|
|
15865
15877
|
const unblockAudio = __webpack_require__(166);
|
|
15866
15878
|
|
|
15867
15879
|
const _require2 = __webpack_require__(23)(),
|
|
15868
15880
|
getInputMediaDevices = _require2.getInputMediaDevices;
|
|
15869
15881
|
|
|
15870
|
-
const createCanvasVideoTrack = __webpack_require__(
|
|
15882
|
+
const createCanvasVideoTrack = __webpack_require__(678);
|
|
15871
15883
|
|
|
15872
15884
|
const isSecureContextRequired = __webpack_require__(269);
|
|
15873
15885
|
|
|
15874
15886
|
const isGetRtcStatsReportSupported = __webpack_require__(306);
|
|
15875
15887
|
|
|
15876
|
-
const getDeviceIdFromStream = __webpack_require__(
|
|
15888
|
+
const getDeviceIdFromStream = __webpack_require__(679);
|
|
15877
15889
|
|
|
15878
|
-
const createStreamErrorMap = __webpack_require__(
|
|
15890
|
+
const createStreamErrorMap = __webpack_require__(680);
|
|
15879
15891
|
|
|
15880
15892
|
const _require3 = __webpack_require__(290),
|
|
15881
15893
|
setVideoContentHint = _require3.setVideoContentHint,
|
|
@@ -18592,9 +18604,10 @@ module.exports = function PublisherFactory(_ref) {
|
|
|
18592
18604
|
// that internally calls the play function, we only need to call pause(),
|
|
18593
18605
|
// and the play will be automatically executed.
|
|
18594
18606
|
this.videoElement().pause();
|
|
18595
|
-
this.session.trigger('gsmCallEnded');
|
|
18596
18607
|
}
|
|
18597
18608
|
}
|
|
18609
|
+
|
|
18610
|
+
this.session.trigger('gsmCallEnded');
|
|
18598
18611
|
};
|
|
18599
18612
|
/**
|
|
18600
18613
|
* Switches the audio input source used by the publisher. You can set the
|
|
@@ -20581,7 +20594,7 @@ const eventing = __webpack_require__(6);
|
|
|
20581
20594
|
|
|
20582
20595
|
const Events = __webpack_require__(22)();
|
|
20583
20596
|
|
|
20584
|
-
const connectionCapabilities = __webpack_require__(
|
|
20597
|
+
const connectionCapabilities = __webpack_require__(710);
|
|
20585
20598
|
/**
|
|
20586
20599
|
* The Connection object represents a connection to an OpenTok session. Each client that connects
|
|
20587
20600
|
* to a session has a unique connection, with a unique connection ID (represented by the
|
|
@@ -20716,7 +20729,7 @@ module.exports = defineProperty;
|
|
|
20716
20729
|
/***/ (function(module, exports, __webpack_require__) {
|
|
20717
20730
|
|
|
20718
20731
|
var copyObject = __webpack_require__(39),
|
|
20719
|
-
keys = __webpack_require__(
|
|
20732
|
+
keys = __webpack_require__(30);
|
|
20720
20733
|
|
|
20721
20734
|
/**
|
|
20722
20735
|
* The base implementation of `_.assign` without support for multiple sources
|
|
@@ -20918,7 +20931,7 @@ module.exports = getSymbolsIn;
|
|
|
20918
20931
|
|
|
20919
20932
|
var baseGetAllKeys = __webpack_require__(183),
|
|
20920
20933
|
getSymbols = __webpack_require__(115),
|
|
20921
|
-
keys = __webpack_require__(
|
|
20934
|
+
keys = __webpack_require__(30);
|
|
20922
20935
|
|
|
20923
20936
|
/**
|
|
20924
20937
|
* Creates an array of own enumerable property names and symbols of `object`.
|
|
@@ -21313,7 +21326,7 @@ module.exports = function (/* CustomCreate*/) {
|
|
|
21313
21326
|
|
|
21314
21327
|
|
|
21315
21328
|
var isObject = __webpack_require__(197)
|
|
21316
|
-
, value = __webpack_require__(
|
|
21329
|
+
, value = __webpack_require__(31)
|
|
21317
21330
|
, objIsPrototypeOf = Object.prototype.isPrototypeOf
|
|
21318
21331
|
, defineProperty = Object.defineProperty
|
|
21319
21332
|
, nullDesc = { configurable: true, enumerable: false, writable: true, value: undefined }
|
|
@@ -21504,8 +21517,8 @@ module.exports = function (value) {
|
|
|
21504
21517
|
var clear = __webpack_require__(421)
|
|
21505
21518
|
, assign = __webpack_require__(125)
|
|
21506
21519
|
, callable = __webpack_require__(70)
|
|
21507
|
-
, value = __webpack_require__(
|
|
21508
|
-
, d = __webpack_require__(
|
|
21520
|
+
, value = __webpack_require__(31)
|
|
21521
|
+
, d = __webpack_require__(32)
|
|
21509
21522
|
, autoBind = __webpack_require__(422)
|
|
21510
21523
|
, Symbol = __webpack_require__(43);
|
|
21511
21524
|
|
|
@@ -24451,8 +24464,8 @@ const isFunction = __webpack_require__(15);
|
|
|
24451
24464
|
const extensions = {
|
|
24452
24465
|
attributes: __webpack_require__(528),
|
|
24453
24466
|
css: __webpack_require__(529),
|
|
24454
|
-
classNames: __webpack_require__(
|
|
24455
|
-
observers: __webpack_require__(
|
|
24467
|
+
classNames: __webpack_require__(533),
|
|
24468
|
+
observers: __webpack_require__(535)
|
|
24456
24469
|
};
|
|
24457
24470
|
const idRegex = /^#([\w-]*)$/; // A helper for converting a NodeList to a JS Array
|
|
24458
24471
|
|
|
@@ -26302,7 +26315,7 @@ module.exports = (_temp = /*#__PURE__*/function () {
|
|
|
26302
26315
|
|
|
26303
26316
|
const merge = __webpack_require__(147);
|
|
26304
26317
|
|
|
26305
|
-
const normalizeConstraintInput = __webpack_require__(
|
|
26318
|
+
const normalizeConstraintInput = __webpack_require__(562);
|
|
26306
26319
|
|
|
26307
26320
|
const isScreenSharingSource = __webpack_require__(264);
|
|
26308
26321
|
|
|
@@ -26612,7 +26625,7 @@ module.exports = capitalize;
|
|
|
26612
26625
|
/* 259 */
|
|
26613
26626
|
/***/ (function(module, exports, __webpack_require__) {
|
|
26614
26627
|
|
|
26615
|
-
var createCaseFirst = __webpack_require__(
|
|
26628
|
+
var createCaseFirst = __webpack_require__(567);
|
|
26616
26629
|
|
|
26617
26630
|
/**
|
|
26618
26631
|
* Converts the first character of `string` to upper case.
|
|
@@ -26709,9 +26722,9 @@ module.exports = hasUnicode;
|
|
|
26709
26722
|
/* 262 */
|
|
26710
26723
|
/***/ (function(module, exports, __webpack_require__) {
|
|
26711
26724
|
|
|
26712
|
-
var asciiToArray = __webpack_require__(
|
|
26725
|
+
var asciiToArray = __webpack_require__(569),
|
|
26713
26726
|
hasUnicode = __webpack_require__(261),
|
|
26714
|
-
unicodeToArray = __webpack_require__(
|
|
26727
|
+
unicodeToArray = __webpack_require__(570);
|
|
26715
26728
|
|
|
26716
26729
|
/**
|
|
26717
26730
|
* Converts `string` to an array.
|
|
@@ -26754,7 +26767,7 @@ module.exports = Boolean(env.isChrome && env.version >= 74 || env.isEdge && env.
|
|
|
26754
26767
|
"use strict";
|
|
26755
26768
|
|
|
26756
26769
|
|
|
26757
|
-
const screenSharingSources = __webpack_require__(
|
|
26770
|
+
const screenSharingSources = __webpack_require__(571);
|
|
26758
26771
|
|
|
26759
26772
|
const isElectronScreenSharingSource = __webpack_require__(265);
|
|
26760
26773
|
|
|
@@ -26800,7 +26813,7 @@ module.exports = videoSource => {
|
|
|
26800
26813
|
/***/ (function(module, exports, __webpack_require__) {
|
|
26801
26814
|
|
|
26802
26815
|
var baseForOwn = __webpack_require__(99),
|
|
26803
|
-
createBaseEach = __webpack_require__(
|
|
26816
|
+
createBaseEach = __webpack_require__(576);
|
|
26804
26817
|
|
|
26805
26818
|
/**
|
|
26806
26819
|
* The base implementation of `_.forEach` without support for iteratee shorthands.
|
|
@@ -26888,12 +26901,12 @@ module.exports = _setPrototypeOf;
|
|
|
26888
26901
|
/* 271 */
|
|
26889
26902
|
/***/ (function(module, exports, __webpack_require__) {
|
|
26890
26903
|
|
|
26891
|
-
var arrayMap = __webpack_require__(
|
|
26904
|
+
var arrayMap = __webpack_require__(33),
|
|
26892
26905
|
baseClone = __webpack_require__(77),
|
|
26893
|
-
baseUnset = __webpack_require__(
|
|
26906
|
+
baseUnset = __webpack_require__(592),
|
|
26894
26907
|
castPath = __webpack_require__(57),
|
|
26895
26908
|
copyObject = __webpack_require__(39),
|
|
26896
|
-
customOmitClone = __webpack_require__(
|
|
26909
|
+
customOmitClone = __webpack_require__(595),
|
|
26897
26910
|
flatRest = __webpack_require__(137),
|
|
26898
26911
|
getAllKeysIn = __webpack_require__(184);
|
|
26899
26912
|
|
|
@@ -26952,7 +26965,7 @@ module.exports = omit;
|
|
|
26952
26965
|
/***/ (function(module, exports, __webpack_require__) {
|
|
26953
26966
|
|
|
26954
26967
|
var baseFindIndex = __webpack_require__(205),
|
|
26955
|
-
baseIteratee = __webpack_require__(
|
|
26968
|
+
baseIteratee = __webpack_require__(34),
|
|
26956
26969
|
toInteger = __webpack_require__(96);
|
|
26957
26970
|
|
|
26958
26971
|
/* Built-in method references for those with the same name as other `lodash` methods. */
|
|
@@ -27012,7 +27025,7 @@ module.exports = findIndex;
|
|
|
27012
27025
|
/* 273 */
|
|
27013
27026
|
/***/ (function(module, exports, __webpack_require__) {
|
|
27014
27027
|
|
|
27015
|
-
var baseUniq = __webpack_require__(
|
|
27028
|
+
var baseUniq = __webpack_require__(597);
|
|
27016
27029
|
|
|
27017
27030
|
/**
|
|
27018
27031
|
* Creates a duplicate-free version of an array, using
|
|
@@ -27046,7 +27059,7 @@ module.exports = uniq;
|
|
|
27046
27059
|
"use strict";
|
|
27047
27060
|
|
|
27048
27061
|
|
|
27049
|
-
const toArray = __webpack_require__(
|
|
27062
|
+
const toArray = __webpack_require__(605);
|
|
27050
27063
|
|
|
27051
27064
|
const getRtcStatsReportAdapter = __webpack_require__(277);
|
|
27052
27065
|
|
|
@@ -27090,7 +27103,7 @@ module.exports = (peerConnection, completion) => {
|
|
|
27090
27103
|
/* 275 */
|
|
27091
27104
|
/***/ (function(module, exports, __webpack_require__) {
|
|
27092
27105
|
|
|
27093
|
-
var baseGetTag = __webpack_require__(
|
|
27106
|
+
var baseGetTag = __webpack_require__(29),
|
|
27094
27107
|
isArray = __webpack_require__(10),
|
|
27095
27108
|
isObjectLike = __webpack_require__(16);
|
|
27096
27109
|
|
|
@@ -27126,8 +27139,8 @@ module.exports = isString;
|
|
|
27126
27139
|
/* 276 */
|
|
27127
27140
|
/***/ (function(module, exports, __webpack_require__) {
|
|
27128
27141
|
|
|
27129
|
-
var baseValues = __webpack_require__(
|
|
27130
|
-
keys = __webpack_require__(
|
|
27142
|
+
var baseValues = __webpack_require__(607),
|
|
27143
|
+
keys = __webpack_require__(30);
|
|
27131
27144
|
|
|
27132
27145
|
/**
|
|
27133
27146
|
* Creates an array of the own enumerable string keyed property values of `object`.
|
|
@@ -27211,9 +27224,9 @@ var _events = __webpack_require__(41);
|
|
|
27211
27224
|
|
|
27212
27225
|
var _clone = _interopRequireDefault(__webpack_require__(36));
|
|
27213
27226
|
|
|
27214
|
-
var _parseQOS = _interopRequireDefault(__webpack_require__(
|
|
27227
|
+
var _parseQOS = _interopRequireDefault(__webpack_require__(617));
|
|
27215
27228
|
|
|
27216
|
-
var _TruthyChangeCounter = _interopRequireDefault(__webpack_require__(
|
|
27229
|
+
var _TruthyChangeCounter = _interopRequireDefault(__webpack_require__(619));
|
|
27217
27230
|
|
|
27218
27231
|
var _now = _interopRequireDefault(__webpack_require__(48));
|
|
27219
27232
|
|
|
@@ -27651,7 +27664,7 @@ module.exports = function createChromeMixinFactory(deps) {
|
|
|
27651
27664
|
deps = {};
|
|
27652
27665
|
}
|
|
27653
27666
|
|
|
27654
|
-
const Archiving = deps.Archiving || __webpack_require__(
|
|
27667
|
+
const Archiving = deps.Archiving || __webpack_require__(623);
|
|
27655
27668
|
|
|
27656
27669
|
const AudioLevelMeter = deps.AudioLevelMeter || __webpack_require__(282);
|
|
27657
27670
|
|
|
@@ -28699,11 +28712,11 @@ const eventing = __webpack_require__(6);
|
|
|
28699
28712
|
|
|
28700
28713
|
const eventHelper = __webpack_require__(62);
|
|
28701
28714
|
|
|
28702
|
-
const destroyObj = __webpack_require__(
|
|
28715
|
+
const destroyObj = __webpack_require__(634);
|
|
28703
28716
|
|
|
28704
|
-
const patchSrcObject = __webpack_require__(
|
|
28717
|
+
const patchSrcObject = __webpack_require__(635);
|
|
28705
28718
|
|
|
28706
|
-
const isDomElementVisible = __webpack_require__(
|
|
28719
|
+
const isDomElementVisible = __webpack_require__(636);
|
|
28707
28720
|
|
|
28708
28721
|
const promiseDelay = __webpack_require__(106);
|
|
28709
28722
|
|
|
@@ -28754,13 +28767,13 @@ function NativeVideoElementWrapperFactory(deps) {
|
|
|
28754
28767
|
|
|
28755
28768
|
const audioContextProvider = deps.audioContext || __webpack_require__(158)();
|
|
28756
28769
|
|
|
28757
|
-
const canBeOrientatedMixin = deps.canBeOrientatedMixin || __webpack_require__(
|
|
28770
|
+
const canBeOrientatedMixin = deps.canBeOrientatedMixin || __webpack_require__(637);
|
|
28758
28771
|
/** @type {Document} */
|
|
28759
28772
|
|
|
28760
28773
|
|
|
28761
28774
|
const document = deps.document || (typeof window !== undefined ? window : global).document;
|
|
28762
28775
|
|
|
28763
|
-
const listenForTracksEnded = deps.listenForTracksEnded || __webpack_require__(
|
|
28776
|
+
const listenForTracksEnded = deps.listenForTracksEnded || __webpack_require__(638)();
|
|
28764
28777
|
|
|
28765
28778
|
const createLog = deps.logging || __webpack_require__(1);
|
|
28766
28779
|
|
|
@@ -29808,7 +29821,7 @@ module.exports = function PublisherPeerConnectionFactory(deps) {
|
|
|
29808
29821
|
|
|
29809
29822
|
const setCertificates = deps.setCertificates || __webpack_require__(163)();
|
|
29810
29823
|
|
|
29811
|
-
const watchAudioAcquisition = deps.watchAudioAcquisition || __webpack_require__(
|
|
29824
|
+
const watchAudioAcquisition = deps.watchAudioAcquisition || __webpack_require__(640);
|
|
29812
29825
|
/**
|
|
29813
29826
|
* @typedef {object} PublisherPeerConnectionConfig
|
|
29814
29827
|
* @property {function(string, string=, object=, object=, boolean=)} logAnalyticsEvent
|
|
@@ -30085,7 +30098,7 @@ module.exports = function SubscriberPeerConnectionFactory(deps) {
|
|
|
30085
30098
|
|
|
30086
30099
|
const OTErrorClass = deps.OTErrorClass || __webpack_require__(21);
|
|
30087
30100
|
|
|
30088
|
-
const watchSubscriberAudio = deps.watchSubscriberAudio || __webpack_require__(
|
|
30101
|
+
const watchSubscriberAudio = deps.watchSubscriberAudio || __webpack_require__(641);
|
|
30089
30102
|
/*
|
|
30090
30103
|
* Abstracts PeerConnection related stuff away from Subscriber.
|
|
30091
30104
|
*
|
|
@@ -30561,19 +30574,19 @@ const eventNames = __webpack_require__(26);
|
|
|
30561
30574
|
|
|
30562
30575
|
const eventing = __webpack_require__(6);
|
|
30563
30576
|
|
|
30564
|
-
const waitUntil = __webpack_require__(
|
|
30577
|
+
const waitUntil = __webpack_require__(651);
|
|
30565
30578
|
|
|
30566
30579
|
const RafRunner = __webpack_require__(103);
|
|
30567
30580
|
|
|
30568
30581
|
const eventHelper = __webpack_require__(62);
|
|
30569
30582
|
|
|
30570
|
-
const interpretSubscriberCreateError = __webpack_require__(
|
|
30583
|
+
const interpretSubscriberCreateError = __webpack_require__(652);
|
|
30571
30584
|
|
|
30572
30585
|
const Errors = __webpack_require__(4);
|
|
30573
30586
|
|
|
30574
30587
|
const defaultWidgetView = __webpack_require__(164)();
|
|
30575
30588
|
|
|
30576
|
-
const audioLevelBehaviour = __webpack_require__(
|
|
30589
|
+
const audioLevelBehaviour = __webpack_require__(653);
|
|
30577
30590
|
|
|
30578
30591
|
const AudioLevelMeterDefault = __webpack_require__(282);
|
|
30579
30592
|
|
|
@@ -30597,7 +30610,7 @@ const hasAudioOutputLevelStatCapabilityDefault = __webpack_require__(301);
|
|
|
30597
30610
|
|
|
30598
30611
|
const hasRemoteStreamsWithWebAudioDefault = __webpack_require__(302);
|
|
30599
30612
|
|
|
30600
|
-
const audioLevelSamplerDefault = __webpack_require__(
|
|
30613
|
+
const audioLevelSamplerDefault = __webpack_require__(654);
|
|
30601
30614
|
|
|
30602
30615
|
const interpretPeerConnectionErrorDefault = __webpack_require__(162)();
|
|
30603
30616
|
|
|
@@ -30627,23 +30640,23 @@ const SubscriberPeerConnectionDefault = __webpack_require__(296)({
|
|
|
30627
30640
|
|
|
30628
30641
|
const SubscribingStateDefault = __webpack_require__(303);
|
|
30629
30642
|
|
|
30630
|
-
const VideoDisabledIndicatorDefault = __webpack_require__(
|
|
30643
|
+
const VideoDisabledIndicatorDefault = __webpack_require__(657);
|
|
30631
30644
|
|
|
30632
|
-
const AudioBlockedIndicatorDefault = __webpack_require__(
|
|
30645
|
+
const AudioBlockedIndicatorDefault = __webpack_require__(658);
|
|
30633
30646
|
|
|
30634
|
-
const VideoUnsupportedIndicatorDefault = __webpack_require__(
|
|
30647
|
+
const VideoUnsupportedIndicatorDefault = __webpack_require__(659);
|
|
30635
30648
|
|
|
30636
|
-
const watchFrameRateDefault = __webpack_require__(
|
|
30649
|
+
const watchFrameRateDefault = __webpack_require__(660);
|
|
30637
30650
|
|
|
30638
30651
|
const createSendMethodDefault = __webpack_require__(304);
|
|
30639
30652
|
|
|
30640
30653
|
const parseIceServersDefault = __webpack_require__(100).parseIceServers;
|
|
30641
30654
|
|
|
30642
|
-
const overallTimeout = __webpack_require__(
|
|
30655
|
+
const overallTimeout = __webpack_require__(661);
|
|
30643
30656
|
|
|
30644
|
-
const createConnectivityState = __webpack_require__(
|
|
30657
|
+
const createConnectivityState = __webpack_require__(662);
|
|
30645
30658
|
|
|
30646
|
-
const createConnectivityAttemptPinger = __webpack_require__(
|
|
30659
|
+
const createConnectivityAttemptPinger = __webpack_require__(663);
|
|
30647
30660
|
|
|
30648
30661
|
const isGetRtcStatsReportSupported = __webpack_require__(306);
|
|
30649
30662
|
|
|
@@ -34923,7 +34936,9 @@ const isFunction = __webpack_require__(15);
|
|
|
34923
34936
|
|
|
34924
34937
|
const isObject = __webpack_require__(9);
|
|
34925
34938
|
|
|
34926
|
-
const isNullOrFalse = __webpack_require__(
|
|
34939
|
+
const isNullOrFalse = __webpack_require__(681);
|
|
34940
|
+
|
|
34941
|
+
const setVideoContentHintIfCanvas = __webpack_require__(682);
|
|
34927
34942
|
|
|
34928
34943
|
module.exports = function initPublisherFactory(deps) {
|
|
34929
34944
|
if (deps === void 0) {
|
|
@@ -35483,6 +35498,7 @@ module.exports = function initPublisherFactory(deps) {
|
|
|
35483
35498
|
}
|
|
35484
35499
|
}
|
|
35485
35500
|
|
|
35501
|
+
setVideoContentHintIfCanvas(properties);
|
|
35486
35502
|
const publisher = new Publisher(properties || {});
|
|
35487
35503
|
sessionObjects.publishers.add(publisher);
|
|
35488
35504
|
|
|
@@ -35535,7 +35551,7 @@ var _extends2 = _interopRequireDefault(__webpack_require__(25));
|
|
|
35535
35551
|
/* eslint-disable max-len */
|
|
35536
35552
|
const EventEmitter = __webpack_require__(41);
|
|
35537
35553
|
|
|
35538
|
-
const findKey = __webpack_require__(
|
|
35554
|
+
const findKey = __webpack_require__(683);
|
|
35539
35555
|
|
|
35540
35556
|
const isObject = __webpack_require__(9);
|
|
35541
35557
|
|
|
@@ -35547,7 +35563,7 @@ const eventNames = __webpack_require__(26);
|
|
|
35547
35563
|
|
|
35548
35564
|
const eventing = __webpack_require__(6);
|
|
35549
35565
|
|
|
35550
|
-
const AnalyticsHelperDefault = __webpack_require__(
|
|
35566
|
+
const AnalyticsHelperDefault = __webpack_require__(27);
|
|
35551
35567
|
|
|
35552
35568
|
const StaticConfigDefault = __webpack_require__(44)();
|
|
35553
35569
|
|
|
@@ -35555,9 +35571,9 @@ const IntervalRunner = __webpack_require__(74);
|
|
|
35555
35571
|
|
|
35556
35572
|
const promisify = __webpack_require__(307);
|
|
35557
35573
|
|
|
35558
|
-
const testRemovingVideoCodecs = __webpack_require__(
|
|
35574
|
+
const testRemovingVideoCodecs = __webpack_require__(685);
|
|
35559
35575
|
|
|
35560
|
-
const validateIceConfigFactory = __webpack_require__(
|
|
35576
|
+
const validateIceConfigFactory = __webpack_require__(686);
|
|
35561
35577
|
|
|
35562
35578
|
const _require = __webpack_require__(138),
|
|
35563
35579
|
prependProxyToUrlIfNeeded = _require.prependProxyToUrlIfNeeded;
|
|
@@ -35580,7 +35596,7 @@ module.exports = function SessionFactory(deps) {
|
|
|
35580
35596
|
|
|
35581
35597
|
const Capabilities = deps.Capabilities || __webpack_require__(169);
|
|
35582
35598
|
|
|
35583
|
-
const convertAnvilErrorCode = deps.convertAnvilErrorCode || __webpack_require__(
|
|
35599
|
+
const convertAnvilErrorCode = deps.convertAnvilErrorCode || __webpack_require__(687);
|
|
35584
35600
|
|
|
35585
35601
|
const convertRumorError = deps.convertRumorError || __webpack_require__(310);
|
|
35586
35602
|
|
|
@@ -35602,7 +35618,7 @@ module.exports = function SessionFactory(deps) {
|
|
|
35602
35618
|
|
|
35603
35619
|
const OTHelpers = deps.OTHelpers || __webpack_require__(5);
|
|
35604
35620
|
|
|
35605
|
-
const forceMuteErrors = __webpack_require__(
|
|
35621
|
+
const forceMuteErrors = __webpack_require__(688);
|
|
35606
35622
|
/** @type {typeof StaticConfigDefault} */
|
|
35607
35623
|
|
|
35608
35624
|
|
|
@@ -35613,7 +35629,7 @@ module.exports = function SessionFactory(deps) {
|
|
|
35613
35629
|
|
|
35614
35630
|
const Publisher = deps.Publisher || __webpack_require__(168)();
|
|
35615
35631
|
|
|
35616
|
-
const RaptorSocket = deps.RaptorSocket || __webpack_require__(
|
|
35632
|
+
const RaptorSocket = deps.RaptorSocket || __webpack_require__(689).default();
|
|
35617
35633
|
|
|
35618
35634
|
const SessionDispatcher = deps.SessionDispatcher || __webpack_require__(318);
|
|
35619
35635
|
|
|
@@ -35634,7 +35650,7 @@ module.exports = function SessionFactory(deps) {
|
|
|
35634
35650
|
});
|
|
35635
35651
|
const windowMock = deps.global || (typeof window !== undefined ? window : global);
|
|
35636
35652
|
|
|
35637
|
-
const getSessionInfo = deps.getSessionInfo || __webpack_require__(
|
|
35653
|
+
const getSessionInfo = deps.getSessionInfo || __webpack_require__(713)();
|
|
35638
35654
|
|
|
35639
35655
|
const SessionInfo = __webpack_require__(141);
|
|
35640
35656
|
|
|
@@ -38823,7 +38839,7 @@ const logging = __webpack_require__(1)('Dispatcher');
|
|
|
38823
38839
|
|
|
38824
38840
|
const RumorMessageTypes = __webpack_require__(171);
|
|
38825
38841
|
|
|
38826
|
-
const unboxFromRumorMessage = __webpack_require__(
|
|
38842
|
+
const unboxFromRumorMessage = __webpack_require__(704);
|
|
38827
38843
|
|
|
38828
38844
|
const Dispatcher = function Dispatcher() {
|
|
38829
38845
|
eventing(this);
|
|
@@ -39137,13 +39153,13 @@ const uuid = __webpack_require__(19);
|
|
|
39137
39153
|
|
|
39138
39154
|
const OTHelpers = __webpack_require__(5);
|
|
39139
39155
|
|
|
39140
|
-
const hasBundleCapability = __webpack_require__(
|
|
39156
|
+
const hasBundleCapability = __webpack_require__(707);
|
|
39141
39157
|
|
|
39142
|
-
const hasRTCPMuxCapability = __webpack_require__(
|
|
39158
|
+
const hasRTCPMuxCapability = __webpack_require__(708);
|
|
39143
39159
|
|
|
39144
39160
|
const serializeMessage = __webpack_require__(312);
|
|
39145
39161
|
|
|
39146
|
-
const supportedCryptoScheme = __webpack_require__(
|
|
39162
|
+
const supportedCryptoScheme = __webpack_require__(709);
|
|
39147
39163
|
|
|
39148
39164
|
const staticConfig = __webpack_require__(44)().onlyLocal();
|
|
39149
39165
|
|
|
@@ -39606,7 +39622,7 @@ const now = __webpack_require__(48);
|
|
|
39606
39622
|
|
|
39607
39623
|
const Connection = __webpack_require__(172);
|
|
39608
39624
|
|
|
39609
|
-
const DelayedEventQueue = __webpack_require__(
|
|
39625
|
+
const DelayedEventQueue = __webpack_require__(712);
|
|
39610
39626
|
|
|
39611
39627
|
const Dispatcher = __webpack_require__(314);
|
|
39612
39628
|
|
|
@@ -40282,7 +40298,7 @@ const _require2 = __webpack_require__(23)(),
|
|
|
40282
40298
|
|
|
40283
40299
|
const noop = __webpack_require__(294);
|
|
40284
40300
|
|
|
40285
|
-
const AnalyticsHelper = __webpack_require__(
|
|
40301
|
+
const AnalyticsHelper = __webpack_require__(27);
|
|
40286
40302
|
|
|
40287
40303
|
const analytics = new AnalyticsHelper();
|
|
40288
40304
|
|
|
@@ -40485,19 +40501,19 @@ const Event = __webpack_require__(126);
|
|
|
40485
40501
|
|
|
40486
40502
|
const StaticConfig = __webpack_require__(44)();
|
|
40487
40503
|
|
|
40488
|
-
const AnalyticsHelper = __webpack_require__(
|
|
40504
|
+
const AnalyticsHelper = __webpack_require__(27);
|
|
40489
40505
|
|
|
40490
40506
|
const setDeprecatedProperty = __webpack_require__(249);
|
|
40491
40507
|
|
|
40492
|
-
const runtimeProperties = __webpack_require__(
|
|
40508
|
+
const runtimeProperties = __webpack_require__(543);
|
|
40493
40509
|
|
|
40494
|
-
const mutableRuntimeProperties = __webpack_require__(
|
|
40510
|
+
const mutableRuntimeProperties = __webpack_require__(544);
|
|
40495
40511
|
|
|
40496
40512
|
const staticConfig = StaticConfig.onlyLocal(); // We need to do this first because of circular dependency issues with otplugin.js. @TODO: fix this.
|
|
40497
40513
|
|
|
40498
40514
|
const OT = {}; // noConflict is constructed before we override global.OT so we keep the original value
|
|
40499
40515
|
|
|
40500
|
-
OT.noConflict = __webpack_require__(
|
|
40516
|
+
OT.noConflict = __webpack_require__(545)();
|
|
40501
40517
|
(typeof window !== undefined ? window : global).OT = OT;
|
|
40502
40518
|
module.exports = OT;
|
|
40503
40519
|
|
|
@@ -40550,7 +40566,7 @@ const logging = __webpack_require__(1)('OT');
|
|
|
40550
40566
|
|
|
40551
40567
|
const logLevels = __webpack_require__(119);
|
|
40552
40568
|
|
|
40553
|
-
const setLogLevel = __webpack_require__(
|
|
40569
|
+
const setLogLevel = __webpack_require__(572);
|
|
40554
40570
|
|
|
40555
40571
|
const OTErrorClass = __webpack_require__(21);
|
|
40556
40572
|
|
|
@@ -40593,7 +40609,7 @@ const Events = __webpack_require__(22)();
|
|
|
40593
40609
|
|
|
40594
40610
|
const generateSimpleStateMachine = __webpack_require__(160)();
|
|
40595
40611
|
|
|
40596
|
-
const getUserMediaHelper = __webpack_require__(
|
|
40612
|
+
const getUserMediaHelper = __webpack_require__(625)({
|
|
40597
40613
|
otError,
|
|
40598
40614
|
global: windowMock
|
|
40599
40615
|
});
|
|
@@ -40603,7 +40619,7 @@ const screenSharing = __webpack_require__(161)({
|
|
|
40603
40619
|
otError
|
|
40604
40620
|
});
|
|
40605
40621
|
|
|
40606
|
-
const processPubOptions = __webpack_require__(
|
|
40622
|
+
const processPubOptions = __webpack_require__(630)({
|
|
40607
40623
|
deviceHelpers,
|
|
40608
40624
|
generateConstraintInfo,
|
|
40609
40625
|
getUserMediaHelper,
|
|
@@ -40612,7 +40628,7 @@ const processPubOptions = __webpack_require__(629)({
|
|
|
40612
40628
|
screenSharing
|
|
40613
40629
|
});
|
|
40614
40630
|
|
|
40615
|
-
const getUserMedia = __webpack_require__(
|
|
40631
|
+
const getUserMedia = __webpack_require__(633)({
|
|
40616
40632
|
otError,
|
|
40617
40633
|
processPubOptions
|
|
40618
40634
|
});
|
|
@@ -40650,7 +40666,7 @@ const SubscriberPeerConnection = __webpack_require__(296)({
|
|
|
40650
40666
|
|
|
40651
40667
|
const PublishingState = __webpack_require__(297)();
|
|
40652
40668
|
|
|
40653
|
-
const reportIssue = __webpack_require__(
|
|
40669
|
+
const reportIssue = __webpack_require__(642)({
|
|
40654
40670
|
otError
|
|
40655
40671
|
});
|
|
40656
40672
|
|
|
@@ -40711,14 +40727,14 @@ const Session = __webpack_require__(309)({
|
|
|
40711
40727
|
Subscriber
|
|
40712
40728
|
});
|
|
40713
40729
|
|
|
40714
|
-
const initSession = __webpack_require__(
|
|
40730
|
+
const initSession = __webpack_require__(716)({
|
|
40715
40731
|
Session
|
|
40716
40732
|
}); // Allow events to be bound on OT
|
|
40717
40733
|
|
|
40718
40734
|
|
|
40719
40735
|
eventing(OT);
|
|
40720
40736
|
|
|
40721
|
-
const getSupportedCodecs = __webpack_require__(
|
|
40737
|
+
const getSupportedCodecs = __webpack_require__(717);
|
|
40722
40738
|
|
|
40723
40739
|
setDeprecatedProperty(OT, '$', {
|
|
40724
40740
|
name: 'OT.$',
|
|
@@ -40764,10 +40780,10 @@ OT.Error.on(eventNames.EXCEPTION, exceptionEvent => {
|
|
|
40764
40780
|
OT.Event = Event;
|
|
40765
40781
|
OT.ExceptionCodes = ExceptionCodes;
|
|
40766
40782
|
OT.ExceptionEvent = Events.ExceptionEvent;
|
|
40767
|
-
OT.getDevices = __webpack_require__(
|
|
40783
|
+
OT.getDevices = __webpack_require__(720);
|
|
40768
40784
|
OT.getAudioOutputDevices = __webpack_require__(320);
|
|
40769
40785
|
OT.getActiveAudioOutputDevice = __webpack_require__(321);
|
|
40770
|
-
OT.setAudioOutputDevice = __webpack_require__(
|
|
40786
|
+
OT.setAudioOutputDevice = __webpack_require__(721)();
|
|
40771
40787
|
OT.GetAudioLevelSampler = GetAudioLevelSampler;
|
|
40772
40788
|
OT.HAS_REQUIREMENTS = 1;
|
|
40773
40789
|
OT.IntervalRunner = IntervalRunner;
|
|
@@ -40938,7 +40954,9 @@ EnvironmentLoader.onUnload(() => {
|
|
|
40938
40954
|
sessionObjects.sessions.destroy('unloaded');
|
|
40939
40955
|
});
|
|
40940
40956
|
|
|
40941
|
-
__webpack_require__(
|
|
40957
|
+
__webpack_require__(722)();
|
|
40958
|
+
|
|
40959
|
+
__webpack_require__(724)();
|
|
40942
40960
|
/**
|
|
40943
40961
|
* This method is deprecated. Use <a href="#on">on()</a> or <a href="#once">once()</a> instead.
|
|
40944
40962
|
*
|
|
@@ -42696,7 +42714,7 @@ module.exports = baseTimes;
|
|
|
42696
42714
|
/* 370 */
|
|
42697
42715
|
/***/ (function(module, exports, __webpack_require__) {
|
|
42698
42716
|
|
|
42699
|
-
var baseGetTag = __webpack_require__(
|
|
42717
|
+
var baseGetTag = __webpack_require__(29),
|
|
42700
42718
|
isObjectLike = __webpack_require__(16);
|
|
42701
42719
|
|
|
42702
42720
|
/** `Object#toString` result references. */
|
|
@@ -42744,7 +42762,7 @@ module.exports = stubFalse;
|
|
|
42744
42762
|
/* 372 */
|
|
42745
42763
|
/***/ (function(module, exports, __webpack_require__) {
|
|
42746
42764
|
|
|
42747
|
-
var baseGetTag = __webpack_require__(
|
|
42765
|
+
var baseGetTag = __webpack_require__(29),
|
|
42748
42766
|
isLength = __webpack_require__(112),
|
|
42749
42767
|
isObjectLike = __webpack_require__(16);
|
|
42750
42768
|
|
|
@@ -44062,9 +44080,9 @@ module.exports = function () {
|
|
|
44062
44080
|
var isValue = __webpack_require__(42)
|
|
44063
44081
|
, setPrototypeOf = __webpack_require__(123)
|
|
44064
44082
|
, object = __webpack_require__(401)
|
|
44065
|
-
, ensureValue = __webpack_require__(
|
|
44083
|
+
, ensureValue = __webpack_require__(31)
|
|
44066
44084
|
, randomUniq = __webpack_require__(402)
|
|
44067
|
-
, d = __webpack_require__(
|
|
44085
|
+
, d = __webpack_require__(32)
|
|
44068
44086
|
, getIterator = __webpack_require__(201)
|
|
44069
44087
|
, forOf = __webpack_require__(444)
|
|
44070
44088
|
, toStringTagSymbol = __webpack_require__(43).toStringTag
|
|
@@ -44288,7 +44306,7 @@ module.exports = function () {
|
|
|
44288
44306
|
|
|
44289
44307
|
|
|
44290
44308
|
var keys = __webpack_require__(407)
|
|
44291
|
-
, value = __webpack_require__(
|
|
44309
|
+
, value = __webpack_require__(31)
|
|
44292
44310
|
, max = Math.max;
|
|
44293
44311
|
|
|
44294
44312
|
module.exports = function (dest, src/*, …srcn*/) {
|
|
@@ -44389,7 +44407,7 @@ module.exports = function (searchString/*, position*/) {
|
|
|
44389
44407
|
|
|
44390
44408
|
var setPrototypeOf = __webpack_require__(123)
|
|
44391
44409
|
, contains = __webpack_require__(200)
|
|
44392
|
-
, d = __webpack_require__(
|
|
44410
|
+
, d = __webpack_require__(32)
|
|
44393
44411
|
, Symbol = __webpack_require__(43)
|
|
44394
44412
|
, Iterator = __webpack_require__(203);
|
|
44395
44413
|
|
|
@@ -44506,7 +44524,7 @@ module.exports = (function () {
|
|
|
44506
44524
|
|
|
44507
44525
|
|
|
44508
44526
|
|
|
44509
|
-
var d = __webpack_require__(
|
|
44527
|
+
var d = __webpack_require__(32)
|
|
44510
44528
|
, validateSymbol = __webpack_require__(202)
|
|
44511
44529
|
, NativeSymbol = __webpack_require__(91).Symbol
|
|
44512
44530
|
, generateName = __webpack_require__(418)
|
|
@@ -44614,7 +44632,7 @@ module.exports = function (value) {
|
|
|
44614
44632
|
"use strict";
|
|
44615
44633
|
|
|
44616
44634
|
|
|
44617
|
-
var d = __webpack_require__(
|
|
44635
|
+
var d = __webpack_require__(32);
|
|
44618
44636
|
|
|
44619
44637
|
var create = Object.create, defineProperty = Object.defineProperty, objPrototype = Object.prototype;
|
|
44620
44638
|
|
|
@@ -44650,7 +44668,7 @@ module.exports = function (desc) {
|
|
|
44650
44668
|
"use strict";
|
|
44651
44669
|
|
|
44652
44670
|
|
|
44653
|
-
var d = __webpack_require__(
|
|
44671
|
+
var d = __webpack_require__(32)
|
|
44654
44672
|
, NativeSymbol = __webpack_require__(91).Symbol;
|
|
44655
44673
|
|
|
44656
44674
|
module.exports = function (SymbolPolyfill) {
|
|
@@ -44691,7 +44709,7 @@ module.exports = function (SymbolPolyfill) {
|
|
|
44691
44709
|
"use strict";
|
|
44692
44710
|
|
|
44693
44711
|
|
|
44694
|
-
var d = __webpack_require__(
|
|
44712
|
+
var d = __webpack_require__(32)
|
|
44695
44713
|
, validateSymbol = __webpack_require__(202);
|
|
44696
44714
|
|
|
44697
44715
|
var registry = Object.create(null);
|
|
@@ -44725,7 +44743,7 @@ module.exports = function (SymbolPolyfill) {
|
|
|
44725
44743
|
|
|
44726
44744
|
|
|
44727
44745
|
|
|
44728
|
-
var value = __webpack_require__(
|
|
44746
|
+
var value = __webpack_require__(31);
|
|
44729
44747
|
|
|
44730
44748
|
module.exports = function () {
|
|
44731
44749
|
value(this).length = 0;
|
|
@@ -44897,7 +44915,7 @@ module.exports = function (value/*, options*/) {
|
|
|
44897
44915
|
|
|
44898
44916
|
var aFrom = __webpack_require__(429)
|
|
44899
44917
|
, assign = __webpack_require__(125)
|
|
44900
|
-
, value = __webpack_require__(
|
|
44918
|
+
, value = __webpack_require__(31);
|
|
44901
44919
|
|
|
44902
44920
|
module.exports = function (obj/*, propertyNames, options*/) {
|
|
44903
44921
|
var copy = Object(value(obj)), propertyNames = arguments[1], options = Object(arguments[2]);
|
|
@@ -44952,7 +44970,7 @@ var iteratorSymbol = __webpack_require__(43).iterator
|
|
|
44952
44970
|
, isFunction = __webpack_require__(432)
|
|
44953
44971
|
, toPosInt = __webpack_require__(433)
|
|
44954
44972
|
, callable = __webpack_require__(70)
|
|
44955
|
-
, validValue = __webpack_require__(
|
|
44973
|
+
, validValue = __webpack_require__(31)
|
|
44956
44974
|
, isValue = __webpack_require__(42)
|
|
44957
44975
|
, isString = __webpack_require__(90)
|
|
44958
44976
|
, isArray = Array.isArray
|
|
@@ -45194,7 +45212,7 @@ module.exports = __webpack_require__(440)("forEach");
|
|
|
45194
45212
|
|
|
45195
45213
|
|
|
45196
45214
|
var callable = __webpack_require__(70)
|
|
45197
|
-
, value = __webpack_require__(
|
|
45215
|
+
, value = __webpack_require__(31)
|
|
45198
45216
|
, bind = Function.prototype.bind
|
|
45199
45217
|
, call = Function.prototype.call
|
|
45200
45218
|
, keys = Object.keys
|
|
@@ -45230,7 +45248,7 @@ module.exports = function (method, defVal) {
|
|
|
45230
45248
|
|
|
45231
45249
|
|
|
45232
45250
|
var setPrototypeOf = __webpack_require__(123)
|
|
45233
|
-
, d = __webpack_require__(
|
|
45251
|
+
, d = __webpack_require__(32)
|
|
45234
45252
|
, Symbol = __webpack_require__(43)
|
|
45235
45253
|
, Iterator = __webpack_require__(203);
|
|
45236
45254
|
|
|
@@ -45379,7 +45397,7 @@ module.exports = (function () {
|
|
|
45379
45397
|
var SetCache = __webpack_require__(92),
|
|
45380
45398
|
arrayIncludes = __webpack_require__(93),
|
|
45381
45399
|
arrayIncludesWith = __webpack_require__(128),
|
|
45382
|
-
arrayMap = __webpack_require__(
|
|
45400
|
+
arrayMap = __webpack_require__(33),
|
|
45383
45401
|
baseUnary = __webpack_require__(67),
|
|
45384
45402
|
cacheHas = __webpack_require__(94);
|
|
45385
45403
|
|
|
@@ -48243,7 +48261,7 @@ module.exports = curry;
|
|
|
48243
48261
|
/* 493 */
|
|
48244
48262
|
/***/ (function(module, exports, __webpack_require__) {
|
|
48245
48263
|
|
|
48246
|
-
var baseGetTag = __webpack_require__(
|
|
48264
|
+
var baseGetTag = __webpack_require__(29),
|
|
48247
48265
|
isObjectLike = __webpack_require__(16),
|
|
48248
48266
|
isPlainObject = __webpack_require__(135);
|
|
48249
48267
|
|
|
@@ -48320,7 +48338,7 @@ module.exports = isWeakMap;
|
|
|
48320
48338
|
/***/ (function(module, exports, __webpack_require__) {
|
|
48321
48339
|
|
|
48322
48340
|
var baseClone = __webpack_require__(77),
|
|
48323
|
-
baseIteratee = __webpack_require__(
|
|
48341
|
+
baseIteratee = __webpack_require__(34);
|
|
48324
48342
|
|
|
48325
48343
|
/** Used to compose bitmasks for cloning. */
|
|
48326
48344
|
var CLONE_DEEP_FLAG = 1;
|
|
@@ -48778,7 +48796,7 @@ module.exports = equalObjects;
|
|
|
48778
48796
|
/***/ (function(module, exports, __webpack_require__) {
|
|
48779
48797
|
|
|
48780
48798
|
var isStrictComparable = __webpack_require__(233),
|
|
48781
|
-
keys = __webpack_require__(
|
|
48799
|
+
keys = __webpack_require__(30);
|
|
48782
48800
|
|
|
48783
48801
|
/**
|
|
48784
48802
|
* Gets the property names, values, and compare flags of `object`.
|
|
@@ -48879,7 +48897,7 @@ module.exports = memoizeCapped;
|
|
|
48879
48897
|
/***/ (function(module, exports, __webpack_require__) {
|
|
48880
48898
|
|
|
48881
48899
|
var Symbol = __webpack_require__(38),
|
|
48882
|
-
arrayMap = __webpack_require__(
|
|
48900
|
+
arrayMap = __webpack_require__(33),
|
|
48883
48901
|
isArray = __webpack_require__(10),
|
|
48884
48902
|
isSymbol = __webpack_require__(71);
|
|
48885
48903
|
|
|
@@ -49158,7 +49176,7 @@ module.exports = isFlattenable;
|
|
|
49158
49176
|
/* 513 */
|
|
49159
49177
|
/***/ (function(module, exports, __webpack_require__) {
|
|
49160
49178
|
|
|
49161
|
-
var arrayMap = __webpack_require__(
|
|
49179
|
+
var arrayMap = __webpack_require__(33),
|
|
49162
49180
|
copyArray = __webpack_require__(53),
|
|
49163
49181
|
isArray = __webpack_require__(10),
|
|
49164
49182
|
isSymbol = __webpack_require__(71),
|
|
@@ -49328,7 +49346,7 @@ module.exports = func;
|
|
|
49328
49346
|
|
|
49329
49347
|
var baseAssignValue = __webpack_require__(63),
|
|
49330
49348
|
baseForOwn = __webpack_require__(99),
|
|
49331
|
-
baseIteratee = __webpack_require__(
|
|
49349
|
+
baseIteratee = __webpack_require__(34);
|
|
49332
49350
|
|
|
49333
49351
|
/**
|
|
49334
49352
|
* The opposite of `_.mapValues`; this method creates an object with the
|
|
@@ -50727,10 +50745,24 @@ module.exports = function iOSVersion() {
|
|
|
50727
50745
|
"use strict";
|
|
50728
50746
|
|
|
50729
50747
|
|
|
50748
|
+
const electronUserAgentRegex = /(Electron)\/([0-9]{1,}[.0-9]{0,})/;
|
|
50749
|
+
|
|
50750
|
+
module.exports = userAgent => {
|
|
50751
|
+
const matches = userAgent.match(electronUserAgentRegex);
|
|
50752
|
+
return matches && parseFloat(matches[2]);
|
|
50753
|
+
};
|
|
50754
|
+
|
|
50755
|
+
/***/ }),
|
|
50756
|
+
/* 533 */
|
|
50757
|
+
/***/ (function(module, exports, __webpack_require__) {
|
|
50758
|
+
|
|
50759
|
+
"use strict";
|
|
50760
|
+
|
|
50761
|
+
|
|
50730
50762
|
// @todo enable the following disabled rules see OPENTOK-31136 for more info
|
|
50731
50763
|
|
|
50732
50764
|
/* eslint-disable no-param-reassign, no-bitwise */
|
|
50733
|
-
const hasClassListCapability = __webpack_require__(
|
|
50765
|
+
const hasClassListCapability = __webpack_require__(534);
|
|
50734
50766
|
|
|
50735
50767
|
function hasClass(element, className) {
|
|
50736
50768
|
if (!className) {
|
|
@@ -50885,7 +50917,7 @@ module.exports = function (ElementCollection) {
|
|
|
50885
50917
|
};
|
|
50886
50918
|
|
|
50887
50919
|
/***/ }),
|
|
50888
|
-
/*
|
|
50920
|
+
/* 534 */
|
|
50889
50921
|
/***/ (function(module, exports, __webpack_require__) {
|
|
50890
50922
|
|
|
50891
50923
|
"use strict";
|
|
@@ -50894,7 +50926,7 @@ module.exports = function (ElementCollection) {
|
|
|
50894
50926
|
module.exports = () => typeof document !== 'undefined' && 'classList' in document.createElement('a');
|
|
50895
50927
|
|
|
50896
50928
|
/***/ }),
|
|
50897
|
-
/*
|
|
50929
|
+
/* 535 */
|
|
50898
50930
|
/***/ (function(module, exports, __webpack_require__) {
|
|
50899
50931
|
|
|
50900
50932
|
"use strict";
|
|
@@ -50905,7 +50937,7 @@ module.exports = () => typeof document !== 'undefined' && 'classList' in documen
|
|
|
50905
50937
|
/* eslint-disable prefer-rest-params, no-param-reassign */
|
|
50906
50938
|
|
|
50907
50939
|
/* eslint-disable no-underscore-dangle */
|
|
50908
|
-
const isEmpty = __webpack_require__(
|
|
50940
|
+
const isEmpty = __webpack_require__(536);
|
|
50909
50941
|
|
|
50910
50942
|
module.exports = function (ElementCollection) {
|
|
50911
50943
|
let sizeObserverCount = 0;
|
|
@@ -51141,7 +51173,7 @@ module.exports = function (ElementCollection) {
|
|
|
51141
51173
|
};
|
|
51142
51174
|
|
|
51143
51175
|
/***/ }),
|
|
51144
|
-
/*
|
|
51176
|
+
/* 536 */
|
|
51145
51177
|
/***/ (function(module, exports, __webpack_require__) {
|
|
51146
51178
|
|
|
51147
51179
|
var baseKeys = __webpack_require__(114),
|
|
@@ -51224,7 +51256,7 @@ module.exports = isEmpty;
|
|
|
51224
51256
|
|
|
51225
51257
|
|
|
51226
51258
|
/***/ }),
|
|
51227
|
-
/*
|
|
51259
|
+
/* 537 */
|
|
51228
51260
|
/***/ (function(module, exports, __webpack_require__) {
|
|
51229
51261
|
|
|
51230
51262
|
"use strict";
|
|
@@ -51270,7 +51302,7 @@ module.exports = {
|
|
|
51270
51302
|
};
|
|
51271
51303
|
|
|
51272
51304
|
/***/ }),
|
|
51273
|
-
/*
|
|
51305
|
+
/* 538 */
|
|
51274
51306
|
/***/ (function(module, exports, __webpack_require__) {
|
|
51275
51307
|
|
|
51276
51308
|
"use strict";
|
|
@@ -51339,7 +51371,7 @@ module.exports = function statable(self, possibleStates, initialState, stateChan
|
|
|
51339
51371
|
};
|
|
51340
51372
|
|
|
51341
51373
|
/***/ }),
|
|
51342
|
-
/*
|
|
51374
|
+
/* 539 */
|
|
51343
51375
|
/***/ (function(module, exports, __webpack_require__) {
|
|
51344
51376
|
|
|
51345
51377
|
"use strict";
|
|
@@ -51397,7 +51429,7 @@ domExtras.createElement = function (nodeName, attributes, children, doc) {
|
|
|
51397
51429
|
makeEverythingAttachToOTHelpers(domExtras);
|
|
51398
51430
|
|
|
51399
51431
|
/***/ }),
|
|
51400
|
-
/*
|
|
51432
|
+
/* 540 */
|
|
51401
51433
|
/***/ (function(module, exports, __webpack_require__) {
|
|
51402
51434
|
|
|
51403
51435
|
"use strict";
|
|
@@ -51408,14 +51440,14 @@ makeEverythingAttachToOTHelpers(domExtras);
|
|
|
51408
51440
|
/* eslint-disable one-var, no-underscore-dangle, no-use-before-define, no-param-reassign */
|
|
51409
51441
|
|
|
51410
51442
|
/* eslint-disable max-len, no-var, vars-on-top, global-require */
|
|
51411
|
-
const blacklistedStats = __webpack_require__(
|
|
51443
|
+
const blacklistedStats = __webpack_require__(541);
|
|
51412
51444
|
|
|
51413
51445
|
module.exports = function (deps) {
|
|
51414
51446
|
if (deps === void 0) {
|
|
51415
51447
|
deps = {};
|
|
51416
51448
|
}
|
|
51417
51449
|
|
|
51418
|
-
const isSessionProxied = deps.isSessionProxied || __webpack_require__(
|
|
51450
|
+
const isSessionProxied = deps.isSessionProxied || __webpack_require__(542);
|
|
51419
51451
|
|
|
51420
51452
|
const _deps = deps,
|
|
51421
51453
|
sessionId = _deps.sessionId;
|
|
@@ -51432,7 +51464,7 @@ module.exports = function (deps) {
|
|
|
51432
51464
|
};
|
|
51433
51465
|
|
|
51434
51466
|
/***/ }),
|
|
51435
|
-
/*
|
|
51467
|
+
/* 541 */
|
|
51436
51468
|
/***/ (function(module, exports, __webpack_require__) {
|
|
51437
51469
|
|
|
51438
51470
|
"use strict";
|
|
@@ -51442,7 +51474,7 @@ module.exports = function (deps) {
|
|
|
51442
51474
|
module.exports = ['audioLocalAddress', 'audioRemoteAddress', 'videoLocalAddress', 'videoRemoteAddress'];
|
|
51443
51475
|
|
|
51444
51476
|
/***/ }),
|
|
51445
|
-
/*
|
|
51477
|
+
/* 542 */
|
|
51446
51478
|
/***/ (function(module, exports, __webpack_require__) {
|
|
51447
51479
|
|
|
51448
51480
|
"use strict";
|
|
@@ -51463,7 +51495,7 @@ module.exports = sessionId => {
|
|
|
51463
51495
|
};
|
|
51464
51496
|
|
|
51465
51497
|
/***/ }),
|
|
51466
|
-
/*
|
|
51498
|
+
/* 543 */
|
|
51467
51499
|
/***/ (function(module, exports, __webpack_require__) {
|
|
51468
51500
|
|
|
51469
51501
|
"use strict";
|
|
@@ -51473,7 +51505,7 @@ const runtimeProperties = ['buildHash', 'minimumVersion', 'debug', ['websiteURL'
|
|
|
51473
51505
|
module.exports = runtimeProperties;
|
|
51474
51506
|
|
|
51475
51507
|
/***/ }),
|
|
51476
|
-
/*
|
|
51508
|
+
/* 544 */
|
|
51477
51509
|
/***/ (function(module, exports, __webpack_require__) {
|
|
51478
51510
|
|
|
51479
51511
|
"use strict";
|
|
@@ -51483,7 +51515,7 @@ const mutableRuntimeProperties = ['apiUrl', 'apiURL', 'apiURLSSL'];
|
|
|
51483
51515
|
module.exports = mutableRuntimeProperties;
|
|
51484
51516
|
|
|
51485
51517
|
/***/ }),
|
|
51486
|
-
/*
|
|
51518
|
+
/* 545 */
|
|
51487
51519
|
/***/ (function(module, exports, __webpack_require__) {
|
|
51488
51520
|
|
|
51489
51521
|
"use strict";
|
|
@@ -51501,7 +51533,7 @@ module.exports = function noConflict() {
|
|
|
51501
51533
|
};
|
|
51502
51534
|
|
|
51503
51535
|
/***/ }),
|
|
51504
|
-
/*
|
|
51536
|
+
/* 546 */
|
|
51505
51537
|
/***/ (function(module, exports, __webpack_require__) {
|
|
51506
51538
|
|
|
51507
51539
|
"use strict";
|
|
@@ -51538,7 +51570,7 @@ module.exports = function extendES5Native(ParentClass) {
|
|
|
51538
51570
|
};
|
|
51539
51571
|
|
|
51540
51572
|
/***/ }),
|
|
51541
|
-
/*
|
|
51573
|
+
/* 547 */
|
|
51542
51574
|
/***/ (function(module, exports, __webpack_require__) {
|
|
51543
51575
|
|
|
51544
51576
|
"use strict";
|
|
@@ -51553,7 +51585,7 @@ module.exports = function extendES5Native(ParentClass) {
|
|
|
51553
51585
|
|
|
51554
51586
|
|
|
51555
51587
|
|
|
51556
|
-
var utils = __webpack_require__(
|
|
51588
|
+
var utils = __webpack_require__(28);
|
|
51557
51589
|
// Shimming starts here.
|
|
51558
51590
|
module.exports = function(dependencies, opts) {
|
|
51559
51591
|
var window = dependencies && dependencies.window;
|
|
@@ -51582,11 +51614,11 @@ module.exports = function(dependencies, opts) {
|
|
|
51582
51614
|
// require('./utils').disableLog(false);
|
|
51583
51615
|
|
|
51584
51616
|
// Browser shims.
|
|
51585
|
-
var chromeShim = __webpack_require__(
|
|
51586
|
-
var edgeShim = __webpack_require__(
|
|
51587
|
-
var firefoxShim = __webpack_require__(
|
|
51588
|
-
var safariShim = __webpack_require__(
|
|
51589
|
-
var commonShim = __webpack_require__(
|
|
51617
|
+
var chromeShim = __webpack_require__(548) || null;
|
|
51618
|
+
var edgeShim = __webpack_require__(550) || null;
|
|
51619
|
+
var firefoxShim = __webpack_require__(554) || null;
|
|
51620
|
+
var safariShim = __webpack_require__(556) || null;
|
|
51621
|
+
var commonShim = __webpack_require__(557) || null;
|
|
51590
51622
|
|
|
51591
51623
|
// Export to the adapter global object visible in the browser.
|
|
51592
51624
|
var adapter = {
|
|
@@ -51700,7 +51732,7 @@ module.exports = function(dependencies, opts) {
|
|
|
51700
51732
|
|
|
51701
51733
|
|
|
51702
51734
|
/***/ }),
|
|
51703
|
-
/*
|
|
51735
|
+
/* 548 */
|
|
51704
51736
|
/***/ (function(module, exports, __webpack_require__) {
|
|
51705
51737
|
|
|
51706
51738
|
"use strict";
|
|
@@ -51714,7 +51746,7 @@ module.exports = function(dependencies, opts) {
|
|
|
51714
51746
|
*/
|
|
51715
51747
|
/* eslint-env node */
|
|
51716
51748
|
|
|
51717
|
-
var utils = __webpack_require__(
|
|
51749
|
+
var utils = __webpack_require__(28);
|
|
51718
51750
|
var logging = utils.log;
|
|
51719
51751
|
|
|
51720
51752
|
/* iterates the stats graph recursively. */
|
|
@@ -51759,7 +51791,7 @@ function filterStats(result, track, outbound) {
|
|
|
51759
51791
|
}
|
|
51760
51792
|
|
|
51761
51793
|
module.exports = {
|
|
51762
|
-
shimGetUserMedia: __webpack_require__(
|
|
51794
|
+
shimGetUserMedia: __webpack_require__(549),
|
|
51763
51795
|
shimMediaStream: function(window) {
|
|
51764
51796
|
window.MediaStream = window.MediaStream || window.webkitMediaStream;
|
|
51765
51797
|
},
|
|
@@ -52645,7 +52677,7 @@ module.exports = {
|
|
|
52645
52677
|
/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(0)))
|
|
52646
52678
|
|
|
52647
52679
|
/***/ }),
|
|
52648
|
-
/*
|
|
52680
|
+
/* 549 */
|
|
52649
52681
|
/***/ (function(module, exports, __webpack_require__) {
|
|
52650
52682
|
|
|
52651
52683
|
"use strict";
|
|
@@ -52658,7 +52690,7 @@ module.exports = {
|
|
|
52658
52690
|
*/
|
|
52659
52691
|
/* eslint-env node */
|
|
52660
52692
|
|
|
52661
|
-
var utils = __webpack_require__(
|
|
52693
|
+
var utils = __webpack_require__(28);
|
|
52662
52694
|
var logging = utils.log;
|
|
52663
52695
|
|
|
52664
52696
|
// Expose public methods.
|
|
@@ -52900,7 +52932,7 @@ module.exports = function(window) {
|
|
|
52900
52932
|
/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(0)))
|
|
52901
52933
|
|
|
52902
52934
|
/***/ }),
|
|
52903
|
-
/*
|
|
52935
|
+
/* 550 */
|
|
52904
52936
|
/***/ (function(module, exports, __webpack_require__) {
|
|
52905
52937
|
|
|
52906
52938
|
"use strict";
|
|
@@ -52914,12 +52946,12 @@ module.exports = function(window) {
|
|
|
52914
52946
|
/* eslint-env node */
|
|
52915
52947
|
|
|
52916
52948
|
|
|
52917
|
-
var utils = __webpack_require__(
|
|
52918
|
-
var filterIceServers = __webpack_require__(
|
|
52919
|
-
var shimRTCPeerConnection = __webpack_require__(
|
|
52949
|
+
var utils = __webpack_require__(28);
|
|
52950
|
+
var filterIceServers = __webpack_require__(551);
|
|
52951
|
+
var shimRTCPeerConnection = __webpack_require__(552);
|
|
52920
52952
|
|
|
52921
52953
|
module.exports = {
|
|
52922
|
-
shimGetUserMedia: __webpack_require__(
|
|
52954
|
+
shimGetUserMedia: __webpack_require__(553),
|
|
52923
52955
|
shimPeerConnection: function(window) {
|
|
52924
52956
|
var browserDetails = utils.detectBrowser(window);
|
|
52925
52957
|
|
|
@@ -53011,7 +53043,7 @@ module.exports = {
|
|
|
53011
53043
|
|
|
53012
53044
|
|
|
53013
53045
|
/***/ }),
|
|
53014
|
-
/*
|
|
53046
|
+
/* 551 */
|
|
53015
53047
|
/***/ (function(module, exports, __webpack_require__) {
|
|
53016
53048
|
|
|
53017
53049
|
"use strict";
|
|
@@ -53025,7 +53057,7 @@ module.exports = {
|
|
|
53025
53057
|
/* eslint-env node */
|
|
53026
53058
|
|
|
53027
53059
|
|
|
53028
|
-
var utils = __webpack_require__(
|
|
53060
|
+
var utils = __webpack_require__(28);
|
|
53029
53061
|
// Edge does not like
|
|
53030
53062
|
// 1) stun: filtered after 14393 unless ?transport=udp is present
|
|
53031
53063
|
// 2) turn: that does not have all of turn:host:port?transport=udp
|
|
@@ -53067,7 +53099,7 @@ module.exports = function(iceServers, edgeVersion) {
|
|
|
53067
53099
|
|
|
53068
53100
|
|
|
53069
53101
|
/***/ }),
|
|
53070
|
-
/*
|
|
53102
|
+
/* 552 */
|
|
53071
53103
|
/***/ (function(module, exports, __webpack_require__) {
|
|
53072
53104
|
|
|
53073
53105
|
"use strict";
|
|
@@ -54932,7 +54964,7 @@ module.exports = function(window, edgeVersion) {
|
|
|
54932
54964
|
/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(0)))
|
|
54933
54965
|
|
|
54934
54966
|
/***/ }),
|
|
54935
|
-
/*
|
|
54967
|
+
/* 553 */
|
|
54936
54968
|
/***/ (function(module, exports, __webpack_require__) {
|
|
54937
54969
|
|
|
54938
54970
|
"use strict";
|
|
@@ -54974,7 +55006,7 @@ module.exports = function(window) {
|
|
|
54974
55006
|
/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(0)))
|
|
54975
55007
|
|
|
54976
55008
|
/***/ }),
|
|
54977
|
-
/*
|
|
55009
|
+
/* 554 */
|
|
54978
55010
|
/***/ (function(module, exports, __webpack_require__) {
|
|
54979
55011
|
|
|
54980
55012
|
"use strict";
|
|
@@ -54988,10 +55020,10 @@ module.exports = function(window) {
|
|
|
54988
55020
|
/* eslint-env node */
|
|
54989
55021
|
|
|
54990
55022
|
|
|
54991
|
-
var utils = __webpack_require__(
|
|
55023
|
+
var utils = __webpack_require__(28);
|
|
54992
55024
|
|
|
54993
55025
|
module.exports = {
|
|
54994
|
-
shimGetUserMedia: __webpack_require__(
|
|
55026
|
+
shimGetUserMedia: __webpack_require__(555),
|
|
54995
55027
|
shimOnTrack: function(window) {
|
|
54996
55028
|
if (typeof window === 'object' && window.RTCPeerConnection && !('ontrack' in
|
|
54997
55029
|
window.RTCPeerConnection.prototype)) {
|
|
@@ -55299,7 +55331,7 @@ module.exports = {
|
|
|
55299
55331
|
/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(0)))
|
|
55300
55332
|
|
|
55301
55333
|
/***/ }),
|
|
55302
|
-
/*
|
|
55334
|
+
/* 555 */
|
|
55303
55335
|
/***/ (function(module, exports, __webpack_require__) {
|
|
55304
55336
|
|
|
55305
55337
|
"use strict";
|
|
@@ -55313,7 +55345,7 @@ module.exports = {
|
|
|
55313
55345
|
/* eslint-env node */
|
|
55314
55346
|
|
|
55315
55347
|
|
|
55316
|
-
var utils = __webpack_require__(
|
|
55348
|
+
var utils = __webpack_require__(28);
|
|
55317
55349
|
var logging = utils.log;
|
|
55318
55350
|
|
|
55319
55351
|
// Expose public methods.
|
|
@@ -55516,7 +55548,7 @@ module.exports = function(window) {
|
|
|
55516
55548
|
/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(0)))
|
|
55517
55549
|
|
|
55518
55550
|
/***/ }),
|
|
55519
|
-
/*
|
|
55551
|
+
/* 556 */
|
|
55520
55552
|
/***/ (function(module, exports, __webpack_require__) {
|
|
55521
55553
|
|
|
55522
55554
|
"use strict";
|
|
@@ -55528,7 +55560,7 @@ module.exports = function(window) {
|
|
|
55528
55560
|
* tree.
|
|
55529
55561
|
*/
|
|
55530
55562
|
|
|
55531
|
-
var utils = __webpack_require__(
|
|
55563
|
+
var utils = __webpack_require__(28);
|
|
55532
55564
|
|
|
55533
55565
|
module.exports = {
|
|
55534
55566
|
shimLocalStreamsAPI: function(window) {
|
|
@@ -55838,7 +55870,7 @@ module.exports = {
|
|
|
55838
55870
|
/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(0)))
|
|
55839
55871
|
|
|
55840
55872
|
/***/ }),
|
|
55841
|
-
/*
|
|
55873
|
+
/* 557 */
|
|
55842
55874
|
/***/ (function(module, exports, __webpack_require__) {
|
|
55843
55875
|
|
|
55844
55876
|
"use strict";
|
|
@@ -55853,7 +55885,7 @@ module.exports = {
|
|
|
55853
55885
|
|
|
55854
55886
|
|
|
55855
55887
|
var SDPUtils = __webpack_require__(251);
|
|
55856
|
-
var utils = __webpack_require__(
|
|
55888
|
+
var utils = __webpack_require__(28);
|
|
55857
55889
|
|
|
55858
55890
|
module.exports = {
|
|
55859
55891
|
shimRTCIceCandidate: function(window) {
|
|
@@ -56135,7 +56167,7 @@ module.exports = {
|
|
|
56135
56167
|
|
|
56136
56168
|
|
|
56137
56169
|
/***/ }),
|
|
56138
|
-
/*
|
|
56170
|
+
/* 558 */
|
|
56139
56171
|
/***/ (function(module, exports, __webpack_require__) {
|
|
56140
56172
|
|
|
56141
56173
|
"use strict";
|
|
@@ -56189,13 +56221,13 @@ module.exports = domState;
|
|
|
56189
56221
|
/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(0)))
|
|
56190
56222
|
|
|
56191
56223
|
/***/ }),
|
|
56192
|
-
/*
|
|
56224
|
+
/* 559 */
|
|
56193
56225
|
/***/ (function(module, exports, __webpack_require__) {
|
|
56194
56226
|
|
|
56195
56227
|
var Stack = __webpack_require__(78),
|
|
56196
56228
|
assignMergeValue = __webpack_require__(255),
|
|
56197
56229
|
baseFor = __webpack_require__(238),
|
|
56198
|
-
baseMergeDeep = __webpack_require__(
|
|
56230
|
+
baseMergeDeep = __webpack_require__(560),
|
|
56199
56231
|
isObject = __webpack_require__(9),
|
|
56200
56232
|
keysIn = __webpack_require__(52),
|
|
56201
56233
|
safeGet = __webpack_require__(256);
|
|
@@ -56237,7 +56269,7 @@ module.exports = baseMerge;
|
|
|
56237
56269
|
|
|
56238
56270
|
|
|
56239
56271
|
/***/ }),
|
|
56240
|
-
/*
|
|
56272
|
+
/* 560 */
|
|
56241
56273
|
/***/ (function(module, exports, __webpack_require__) {
|
|
56242
56274
|
|
|
56243
56275
|
var assignMergeValue = __webpack_require__(255),
|
|
@@ -56254,7 +56286,7 @@ var assignMergeValue = __webpack_require__(255),
|
|
|
56254
56286
|
isPlainObject = __webpack_require__(135),
|
|
56255
56287
|
isTypedArray = __webpack_require__(85),
|
|
56256
56288
|
safeGet = __webpack_require__(256),
|
|
56257
|
-
toPlainObject = __webpack_require__(
|
|
56289
|
+
toPlainObject = __webpack_require__(561);
|
|
56258
56290
|
|
|
56259
56291
|
/**
|
|
56260
56292
|
* A specialized version of `baseMerge` for arrays and objects which performs
|
|
@@ -56337,7 +56369,7 @@ module.exports = baseMergeDeep;
|
|
|
56337
56369
|
|
|
56338
56370
|
|
|
56339
56371
|
/***/ }),
|
|
56340
|
-
/*
|
|
56372
|
+
/* 561 */
|
|
56341
56373
|
/***/ (function(module, exports, __webpack_require__) {
|
|
56342
56374
|
|
|
56343
56375
|
var copyObject = __webpack_require__(39),
|
|
@@ -56375,7 +56407,7 @@ module.exports = toPlainObject;
|
|
|
56375
56407
|
|
|
56376
56408
|
|
|
56377
56409
|
/***/ }),
|
|
56378
|
-
/*
|
|
56410
|
+
/* 562 */
|
|
56379
56411
|
/***/ (function(module, exports, __webpack_require__) {
|
|
56380
56412
|
|
|
56381
56413
|
"use strict";
|
|
@@ -56589,7 +56621,7 @@ module.exports = function normalizeConstraintInput(opt) {
|
|
|
56589
56621
|
};
|
|
56590
56622
|
|
|
56591
56623
|
/***/ }),
|
|
56592
|
-
/*
|
|
56624
|
+
/* 563 */
|
|
56593
56625
|
/***/ (function(module, exports, __webpack_require__) {
|
|
56594
56626
|
|
|
56595
56627
|
"use strict";
|
|
@@ -56686,7 +56718,7 @@ module.exports = shouldUseNative() ? Object.assign : function (target, source) {
|
|
|
56686
56718
|
|
|
56687
56719
|
|
|
56688
56720
|
/***/ }),
|
|
56689
|
-
/*
|
|
56721
|
+
/* 564 */
|
|
56690
56722
|
/***/ (function(module, exports, __webpack_require__) {
|
|
56691
56723
|
|
|
56692
56724
|
/* WEBPACK VAR INJECTION */(function(process, Promise) {// Copyright Joyent, Inc. and other Node contributors.
|
|
@@ -57224,7 +57256,7 @@ function isPrimitive(arg) {
|
|
|
57224
57256
|
}
|
|
57225
57257
|
exports.isPrimitive = isPrimitive;
|
|
57226
57258
|
|
|
57227
|
-
exports.isBuffer = __webpack_require__(
|
|
57259
|
+
exports.isBuffer = __webpack_require__(565);
|
|
57228
57260
|
|
|
57229
57261
|
function objectToString(o) {
|
|
57230
57262
|
return Object.prototype.toString.call(o);
|
|
@@ -57268,7 +57300,7 @@ exports.log = function() {
|
|
|
57268
57300
|
* prototype.
|
|
57269
57301
|
* @param {function} superCtor Constructor function to inherit prototype from.
|
|
57270
57302
|
*/
|
|
57271
|
-
exports.inherits = __webpack_require__(
|
|
57303
|
+
exports.inherits = __webpack_require__(566);
|
|
57272
57304
|
|
|
57273
57305
|
exports._extend = function(origin, add) {
|
|
57274
57306
|
// Don't do anything if add isn't an object
|
|
@@ -57396,7 +57428,7 @@ exports.callbackify = callbackify;
|
|
|
57396
57428
|
/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(69), __webpack_require__(0)))
|
|
57397
57429
|
|
|
57398
57430
|
/***/ }),
|
|
57399
|
-
/*
|
|
57431
|
+
/* 565 */
|
|
57400
57432
|
/***/ (function(module, exports) {
|
|
57401
57433
|
|
|
57402
57434
|
module.exports = function isBuffer(arg) {
|
|
@@ -57407,7 +57439,7 @@ module.exports = function isBuffer(arg) {
|
|
|
57407
57439
|
}
|
|
57408
57440
|
|
|
57409
57441
|
/***/ }),
|
|
57410
|
-
/*
|
|
57442
|
+
/* 566 */
|
|
57411
57443
|
/***/ (function(module, exports) {
|
|
57412
57444
|
|
|
57413
57445
|
if (typeof Object.create === 'function') {
|
|
@@ -57436,10 +57468,10 @@ if (typeof Object.create === 'function') {
|
|
|
57436
57468
|
|
|
57437
57469
|
|
|
57438
57470
|
/***/ }),
|
|
57439
|
-
/*
|
|
57471
|
+
/* 567 */
|
|
57440
57472
|
/***/ (function(module, exports, __webpack_require__) {
|
|
57441
57473
|
|
|
57442
|
-
var castSlice = __webpack_require__(
|
|
57474
|
+
var castSlice = __webpack_require__(568),
|
|
57443
57475
|
hasUnicode = __webpack_require__(261),
|
|
57444
57476
|
stringToArray = __webpack_require__(262),
|
|
57445
57477
|
toString = __webpack_require__(58);
|
|
@@ -57475,7 +57507,7 @@ module.exports = createCaseFirst;
|
|
|
57475
57507
|
|
|
57476
57508
|
|
|
57477
57509
|
/***/ }),
|
|
57478
|
-
/*
|
|
57510
|
+
/* 568 */
|
|
57479
57511
|
/***/ (function(module, exports, __webpack_require__) {
|
|
57480
57512
|
|
|
57481
57513
|
var baseSlice = __webpack_require__(260);
|
|
@@ -57499,7 +57531,7 @@ module.exports = castSlice;
|
|
|
57499
57531
|
|
|
57500
57532
|
|
|
57501
57533
|
/***/ }),
|
|
57502
|
-
/*
|
|
57534
|
+
/* 569 */
|
|
57503
57535
|
/***/ (function(module, exports) {
|
|
57504
57536
|
|
|
57505
57537
|
/**
|
|
@@ -57517,7 +57549,7 @@ module.exports = asciiToArray;
|
|
|
57517
57549
|
|
|
57518
57550
|
|
|
57519
57551
|
/***/ }),
|
|
57520
|
-
/*
|
|
57552
|
+
/* 570 */
|
|
57521
57553
|
/***/ (function(module, exports) {
|
|
57522
57554
|
|
|
57523
57555
|
/** Used to compose unicode character classes. */
|
|
@@ -57563,7 +57595,7 @@ module.exports = unicodeToArray;
|
|
|
57563
57595
|
|
|
57564
57596
|
|
|
57565
57597
|
/***/ }),
|
|
57566
|
-
/*
|
|
57598
|
+
/* 571 */
|
|
57567
57599
|
/***/ (function(module, exports, __webpack_require__) {
|
|
57568
57600
|
|
|
57569
57601
|
"use strict";
|
|
@@ -57572,7 +57604,7 @@ module.exports = unicodeToArray;
|
|
|
57572
57604
|
module.exports = ['screen', 'window', 'tab', 'browser', 'application'];
|
|
57573
57605
|
|
|
57574
57606
|
/***/ }),
|
|
57575
|
-
/*
|
|
57607
|
+
/* 572 */
|
|
57576
57608
|
/***/ (function(module, exports, __webpack_require__) {
|
|
57577
57609
|
|
|
57578
57610
|
"use strict";
|
|
@@ -57586,9 +57618,9 @@ const once = __webpack_require__(49);
|
|
|
57586
57618
|
|
|
57587
57619
|
const logLevels = __webpack_require__(119);
|
|
57588
57620
|
|
|
57589
|
-
const some = __webpack_require__(
|
|
57621
|
+
const some = __webpack_require__(574);
|
|
57590
57622
|
|
|
57591
|
-
const map = __webpack_require__(
|
|
57623
|
+
const map = __webpack_require__(577);
|
|
57592
57624
|
|
|
57593
57625
|
const PATH_TO_RELEASE_NOTES = '/opentok/webrtc/docs/js/release-notes.html';
|
|
57594
57626
|
const staticConfig = StaticConfig.onlyLocal();
|
|
@@ -57705,7 +57737,7 @@ module.exports = setLogLevel;
|
|
|
57705
57737
|
*/
|
|
57706
57738
|
|
|
57707
57739
|
/***/ }),
|
|
57708
|
-
/*
|
|
57740
|
+
/* 573 */
|
|
57709
57741
|
/***/ (function(module, exports, __webpack_require__) {
|
|
57710
57742
|
|
|
57711
57743
|
var toInteger = __webpack_require__(96);
|
|
@@ -57751,12 +57783,12 @@ module.exports = before;
|
|
|
57751
57783
|
|
|
57752
57784
|
|
|
57753
57785
|
/***/ }),
|
|
57754
|
-
/*
|
|
57786
|
+
/* 574 */
|
|
57755
57787
|
/***/ (function(module, exports, __webpack_require__) {
|
|
57756
57788
|
|
|
57757
57789
|
var arraySome = __webpack_require__(231),
|
|
57758
|
-
baseIteratee = __webpack_require__(
|
|
57759
|
-
baseSome = __webpack_require__(
|
|
57790
|
+
baseIteratee = __webpack_require__(34),
|
|
57791
|
+
baseSome = __webpack_require__(575),
|
|
57760
57792
|
isArray = __webpack_require__(10),
|
|
57761
57793
|
isIterateeCall = __webpack_require__(122);
|
|
57762
57794
|
|
|
@@ -57808,7 +57840,7 @@ module.exports = some;
|
|
|
57808
57840
|
|
|
57809
57841
|
|
|
57810
57842
|
/***/ }),
|
|
57811
|
-
/*
|
|
57843
|
+
/* 575 */
|
|
57812
57844
|
/***/ (function(module, exports, __webpack_require__) {
|
|
57813
57845
|
|
|
57814
57846
|
var baseEach = __webpack_require__(266);
|
|
@@ -57836,7 +57868,7 @@ module.exports = baseSome;
|
|
|
57836
57868
|
|
|
57837
57869
|
|
|
57838
57870
|
/***/ }),
|
|
57839
|
-
/*
|
|
57871
|
+
/* 576 */
|
|
57840
57872
|
/***/ (function(module, exports, __webpack_require__) {
|
|
57841
57873
|
|
|
57842
57874
|
var isArrayLike = __webpack_require__(24);
|
|
@@ -57874,12 +57906,12 @@ module.exports = createBaseEach;
|
|
|
57874
57906
|
|
|
57875
57907
|
|
|
57876
57908
|
/***/ }),
|
|
57877
|
-
/*
|
|
57909
|
+
/* 577 */
|
|
57878
57910
|
/***/ (function(module, exports, __webpack_require__) {
|
|
57879
57911
|
|
|
57880
|
-
var arrayMap = __webpack_require__(
|
|
57881
|
-
baseIteratee = __webpack_require__(
|
|
57882
|
-
baseMap = __webpack_require__(
|
|
57912
|
+
var arrayMap = __webpack_require__(33),
|
|
57913
|
+
baseIteratee = __webpack_require__(34),
|
|
57914
|
+
baseMap = __webpack_require__(578),
|
|
57883
57915
|
isArray = __webpack_require__(10);
|
|
57884
57916
|
|
|
57885
57917
|
/**
|
|
@@ -57933,7 +57965,7 @@ module.exports = map;
|
|
|
57933
57965
|
|
|
57934
57966
|
|
|
57935
57967
|
/***/ }),
|
|
57936
|
-
/*
|
|
57968
|
+
/* 578 */
|
|
57937
57969
|
/***/ (function(module, exports, __webpack_require__) {
|
|
57938
57970
|
|
|
57939
57971
|
var baseEach = __webpack_require__(266),
|
|
@@ -57961,7 +57993,7 @@ module.exports = baseMap;
|
|
|
57961
57993
|
|
|
57962
57994
|
|
|
57963
57995
|
/***/ }),
|
|
57964
|
-
/*
|
|
57996
|
+
/* 579 */
|
|
57965
57997
|
/***/ (function(module, exports, __webpack_require__) {
|
|
57966
57998
|
|
|
57967
57999
|
"use strict";
|
|
@@ -57979,7 +58011,7 @@ module.exports = function fixBackgroundImageURI(bgImgURI) {
|
|
|
57979
58011
|
};
|
|
57980
58012
|
|
|
57981
58013
|
/***/ }),
|
|
57982
|
-
/*
|
|
58014
|
+
/* 580 */
|
|
57983
58015
|
/***/ (function(module, exports, __webpack_require__) {
|
|
57984
58016
|
|
|
57985
58017
|
"use strict";
|
|
@@ -58092,7 +58124,7 @@ module.exports = function Style(initalStyles, onStyleChange) {
|
|
|
58092
58124
|
};
|
|
58093
58125
|
|
|
58094
58126
|
/***/ }),
|
|
58095
|
-
/*
|
|
58127
|
+
/* 581 */
|
|
58096
58128
|
/***/ (function(module, exports, __webpack_require__) {
|
|
58097
58129
|
|
|
58098
58130
|
"use strict";
|
|
@@ -58115,7 +58147,7 @@ module.exports = function styleHashLogFilter(styleHashInput) {
|
|
|
58115
58147
|
};
|
|
58116
58148
|
|
|
58117
58149
|
/***/ }),
|
|
58118
|
-
/*
|
|
58150
|
+
/* 582 */
|
|
58119
58151
|
/***/ (function(module, exports, __webpack_require__) {
|
|
58120
58152
|
|
|
58121
58153
|
"use strict";
|
|
@@ -58142,7 +58174,7 @@ const hasGetUserMediaSupport = () => {
|
|
|
58142
58174
|
module.exports = () => Boolean(env.name !== 'Node' && hasGetUserMediaSupport());
|
|
58143
58175
|
|
|
58144
58176
|
/***/ }),
|
|
58145
|
-
/*
|
|
58177
|
+
/* 583 */
|
|
58146
58178
|
/***/ (function(module, exports, __webpack_require__) {
|
|
58147
58179
|
|
|
58148
58180
|
"use strict";
|
|
@@ -58178,7 +58210,7 @@ module.exports = () => {
|
|
|
58178
58210
|
};
|
|
58179
58211
|
|
|
58180
58212
|
/***/ }),
|
|
58181
|
-
/*
|
|
58213
|
+
/* 584 */
|
|
58182
58214
|
/***/ (function(module, exports, __webpack_require__) {
|
|
58183
58215
|
|
|
58184
58216
|
"use strict";
|
|
@@ -58188,13 +58220,13 @@ module.exports = () => {
|
|
|
58188
58220
|
module.exports = (typeof window !== undefined ? window : global).WebSocket !== undefined;
|
|
58189
58221
|
|
|
58190
58222
|
/***/ }),
|
|
58191
|
-
/*
|
|
58223
|
+
/* 585 */
|
|
58192
58224
|
/***/ (function(module, exports) {
|
|
58193
58225
|
|
|
58194
58226
|
module.exports = "<div id=\"tb_alert\"><div id=\"section-normal-install\" class=\"OT_alert\"><div class=\"OT_alert-exclamation\">!</div><button class=\"OT_alert-close-button\" role=\"OT_close\">×</button><div class=\"OT_alert-header\" data-text=\"Incompatible Browser\">Incompatible Browser</div><div class=\"OT_alert-body\">The video component of this application requires <a target=\"_blank\" href=\"https://www.google.com/chrome/\">Google Chrome</a>, <a target=\"_blank\" href=\"http://www.mozilla.org/firefox\">Firefox</a>, <a target=\"_blank\" href=\"https://www.microsoft.com/en-us/edge\">Edge</a>, or <a target=\"_blank\" href=\"https://www.apple.com/safari/\">Safari</a>.</div></div><div id=\"section-upgrade-install\" class=\"OT_alert\"><div class=\"OT_alert-exclamation\">!</div><button class=\"OT_alert-close-button\" role=\"OT_close\">×</button><div class=\"OT_alert-header\" data-text=\"Incompatible Browser\">Incompatible Browser</div><div class=\"OT_alert-body\">The video component of this application requires a newer version of <a target=\"_blank\" href=\"https://www.google.com/chrome/\">Google Chrome</a>, <a target=\"_blank\" href=\"http://www.mozilla.org/firefox\">Firefox</a>, <a target=\"_blank\" href=\"https://www.microsoft.com/en-us/edge\">Edge</a>, or <a target=\"_blank\" href=\"https://www.apple.com/safari/\">Safari</a>.</div><div class=\"continue-text\"><a href=\"#\" role=\"OT_close\">Continue at my own risk.</a></div></div><div id=\"section-supported-mobile-browser\" class=\"OT_alert\"><div class=\"OT_alert-exclamation\">!</div><button class=\"OT_alert-close-button\" role=\"OT_close\">×</button><div class=\"OT_alert-header\" data-text=\"Incompatible Browser\">Incompatible Browser</div><div class=\"OT_alert-body\">The video component of this application requires a newer version of <a target=\"_blank\" href=\"https://www.google.com.au/chrome/browser/mobile/\">Google Chrome</a>.</div><div class=\"continue-text\"><a href=\"#\" role=\"OT_close\">Continue at my own risk.</a></div></div><div id=\"section-mobile-browser\" class=\"OT_alert\"><div class=\"OT_alert-exclamation\">!</div><button class=\"OT_alert-close-button\" role=\"OT_close\">×</button><div class=\"OT_alert-header\" data-text=\"Incompatible Browser\">Incompatible Browser</div><div class=\"OT_alert-body\">The video component of this application is not supported on your mobile device's browser at this time.</div></div></div>";
|
|
58195
58227
|
|
|
58196
58228
|
/***/ }),
|
|
58197
|
-
/*
|
|
58229
|
+
/* 586 */
|
|
58198
58230
|
/***/ (function(module, exports, __webpack_require__) {
|
|
58199
58231
|
|
|
58200
58232
|
"use strict";
|
|
@@ -58268,16 +58300,16 @@ module.exports = /*#__PURE__*/function (_Events) {
|
|
|
58268
58300
|
}(Events);
|
|
58269
58301
|
|
|
58270
58302
|
/***/ }),
|
|
58271
|
-
/*
|
|
58303
|
+
/* 587 */
|
|
58272
58304
|
/***/ (function(module, exports, __webpack_require__) {
|
|
58273
58305
|
|
|
58274
|
-
var getPrototypeOf = __webpack_require__(
|
|
58306
|
+
var getPrototypeOf = __webpack_require__(588);
|
|
58275
58307
|
|
|
58276
58308
|
var setPrototypeOf = __webpack_require__(270);
|
|
58277
58309
|
|
|
58278
|
-
var isNativeFunction = __webpack_require__(
|
|
58310
|
+
var isNativeFunction = __webpack_require__(589);
|
|
58279
58311
|
|
|
58280
|
-
var construct = __webpack_require__(
|
|
58312
|
+
var construct = __webpack_require__(590);
|
|
58281
58313
|
|
|
58282
58314
|
function _wrapNativeSuper(Class) {
|
|
58283
58315
|
var _cache = typeof Map === "function" ? new Map() : undefined;
|
|
@@ -58316,7 +58348,7 @@ function _wrapNativeSuper(Class) {
|
|
|
58316
58348
|
module.exports = _wrapNativeSuper;
|
|
58317
58349
|
|
|
58318
58350
|
/***/ }),
|
|
58319
|
-
/*
|
|
58351
|
+
/* 588 */
|
|
58320
58352
|
/***/ (function(module, exports) {
|
|
58321
58353
|
|
|
58322
58354
|
function _getPrototypeOf(o) {
|
|
@@ -58329,7 +58361,7 @@ function _getPrototypeOf(o) {
|
|
|
58329
58361
|
module.exports = _getPrototypeOf;
|
|
58330
58362
|
|
|
58331
58363
|
/***/ }),
|
|
58332
|
-
/*
|
|
58364
|
+
/* 589 */
|
|
58333
58365
|
/***/ (function(module, exports) {
|
|
58334
58366
|
|
|
58335
58367
|
function _isNativeFunction(fn) {
|
|
@@ -58339,7 +58371,7 @@ function _isNativeFunction(fn) {
|
|
|
58339
58371
|
module.exports = _isNativeFunction;
|
|
58340
58372
|
|
|
58341
58373
|
/***/ }),
|
|
58342
|
-
/*
|
|
58374
|
+
/* 590 */
|
|
58343
58375
|
/***/ (function(module, exports, __webpack_require__) {
|
|
58344
58376
|
|
|
58345
58377
|
var setPrototypeOf = __webpack_require__(270);
|
|
@@ -58377,7 +58409,7 @@ function _construct(Parent, args, Class) {
|
|
|
58377
58409
|
module.exports = _construct;
|
|
58378
58410
|
|
|
58379
58411
|
/***/ }),
|
|
58380
|
-
/*
|
|
58412
|
+
/* 591 */
|
|
58381
58413
|
/***/ (function(module, exports, __webpack_require__) {
|
|
58382
58414
|
|
|
58383
58415
|
"use strict";
|
|
@@ -58397,12 +58429,12 @@ module.exports = (promise, onFinally) => {
|
|
|
58397
58429
|
/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(0)))
|
|
58398
58430
|
|
|
58399
58431
|
/***/ }),
|
|
58400
|
-
/*
|
|
58432
|
+
/* 592 */
|
|
58401
58433
|
/***/ (function(module, exports, __webpack_require__) {
|
|
58402
58434
|
|
|
58403
58435
|
var castPath = __webpack_require__(57),
|
|
58404
|
-
last = __webpack_require__(
|
|
58405
|
-
parent = __webpack_require__(
|
|
58436
|
+
last = __webpack_require__(593),
|
|
58437
|
+
parent = __webpack_require__(594),
|
|
58406
58438
|
toKey = __webpack_require__(46);
|
|
58407
58439
|
|
|
58408
58440
|
/**
|
|
@@ -58423,7 +58455,7 @@ module.exports = baseUnset;
|
|
|
58423
58455
|
|
|
58424
58456
|
|
|
58425
58457
|
/***/ }),
|
|
58426
|
-
/*
|
|
58458
|
+
/* 593 */
|
|
58427
58459
|
/***/ (function(module, exports) {
|
|
58428
58460
|
|
|
58429
58461
|
/**
|
|
@@ -58449,7 +58481,7 @@ module.exports = last;
|
|
|
58449
58481
|
|
|
58450
58482
|
|
|
58451
58483
|
/***/ }),
|
|
58452
|
-
/*
|
|
58484
|
+
/* 594 */
|
|
58453
58485
|
/***/ (function(module, exports, __webpack_require__) {
|
|
58454
58486
|
|
|
58455
58487
|
var baseGet = __webpack_require__(98),
|
|
@@ -58471,7 +58503,7 @@ module.exports = parent;
|
|
|
58471
58503
|
|
|
58472
58504
|
|
|
58473
58505
|
/***/ }),
|
|
58474
|
-
/*
|
|
58506
|
+
/* 595 */
|
|
58475
58507
|
/***/ (function(module, exports, __webpack_require__) {
|
|
58476
58508
|
|
|
58477
58509
|
var isPlainObject = __webpack_require__(135);
|
|
@@ -58493,12 +58525,12 @@ module.exports = customOmitClone;
|
|
|
58493
58525
|
|
|
58494
58526
|
|
|
58495
58527
|
/***/ }),
|
|
58496
|
-
/*
|
|
58528
|
+
/* 596 */
|
|
58497
58529
|
/***/ (function(module, exports, __webpack_require__) {
|
|
58498
58530
|
|
|
58499
|
-
var baseIteratee = __webpack_require__(
|
|
58531
|
+
var baseIteratee = __webpack_require__(34),
|
|
58500
58532
|
isArrayLike = __webpack_require__(24),
|
|
58501
|
-
keys = __webpack_require__(
|
|
58533
|
+
keys = __webpack_require__(30);
|
|
58502
58534
|
|
|
58503
58535
|
/**
|
|
58504
58536
|
* Creates a `_.find` or `_.findLast` function.
|
|
@@ -58524,14 +58556,14 @@ module.exports = createFind;
|
|
|
58524
58556
|
|
|
58525
58557
|
|
|
58526
58558
|
/***/ }),
|
|
58527
|
-
/*
|
|
58559
|
+
/* 597 */
|
|
58528
58560
|
/***/ (function(module, exports, __webpack_require__) {
|
|
58529
58561
|
|
|
58530
58562
|
var SetCache = __webpack_require__(92),
|
|
58531
58563
|
arrayIncludes = __webpack_require__(93),
|
|
58532
58564
|
arrayIncludesWith = __webpack_require__(128),
|
|
58533
58565
|
cacheHas = __webpack_require__(94),
|
|
58534
|
-
createSet = __webpack_require__(
|
|
58566
|
+
createSet = __webpack_require__(598),
|
|
58535
58567
|
setToArray = __webpack_require__(97);
|
|
58536
58568
|
|
|
58537
58569
|
/** Used as the size to enable large array optimizations. */
|
|
@@ -58602,7 +58634,7 @@ module.exports = baseUniq;
|
|
|
58602
58634
|
|
|
58603
58635
|
|
|
58604
58636
|
/***/ }),
|
|
58605
|
-
/*
|
|
58637
|
+
/* 598 */
|
|
58606
58638
|
/***/ (function(module, exports, __webpack_require__) {
|
|
58607
58639
|
|
|
58608
58640
|
var Set = __webpack_require__(185),
|
|
@@ -58627,7 +58659,7 @@ module.exports = createSet;
|
|
|
58627
58659
|
|
|
58628
58660
|
|
|
58629
58661
|
/***/ }),
|
|
58630
|
-
/*
|
|
58662
|
+
/* 599 */
|
|
58631
58663
|
/***/ (function(module, exports, __webpack_require__) {
|
|
58632
58664
|
|
|
58633
58665
|
"use strict";
|
|
@@ -58726,7 +58758,7 @@ module.exports = hasValidPeerConnection;
|
|
|
58726
58758
|
/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(0)))
|
|
58727
58759
|
|
|
58728
58760
|
/***/ }),
|
|
58729
|
-
/*
|
|
58761
|
+
/* 600 */
|
|
58730
58762
|
/***/ (function(module, exports, __webpack_require__) {
|
|
58731
58763
|
|
|
58732
58764
|
/**
|
|
@@ -58753,7 +58785,7 @@ var oldRuntime = hadRuntime && g.regeneratorRuntime;
|
|
|
58753
58785
|
// Force reevalutation of runtime.js.
|
|
58754
58786
|
g.regeneratorRuntime = undefined;
|
|
58755
58787
|
|
|
58756
|
-
module.exports = __webpack_require__(
|
|
58788
|
+
module.exports = __webpack_require__(601);
|
|
58757
58789
|
|
|
58758
58790
|
if (hadRuntime) {
|
|
58759
58791
|
// Restore the original runtime.
|
|
@@ -58769,7 +58801,7 @@ if (hadRuntime) {
|
|
|
58769
58801
|
|
|
58770
58802
|
|
|
58771
58803
|
/***/ }),
|
|
58772
|
-
/*
|
|
58804
|
+
/* 601 */
|
|
58773
58805
|
/***/ (function(module, exports, __webpack_require__) {
|
|
58774
58806
|
|
|
58775
58807
|
/* WEBPACK VAR INJECTION */(function(Promise) {/**
|
|
@@ -59497,7 +59529,7 @@ if (hadRuntime) {
|
|
|
59497
59529
|
/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(0)))
|
|
59498
59530
|
|
|
59499
59531
|
/***/ }),
|
|
59500
|
-
/*
|
|
59532
|
+
/* 602 */
|
|
59501
59533
|
/***/ (function(module, exports, __webpack_require__) {
|
|
59502
59534
|
|
|
59503
59535
|
"use strict";
|
|
@@ -59507,7 +59539,7 @@ const clone = __webpack_require__(36);
|
|
|
59507
59539
|
|
|
59508
59540
|
const env = __webpack_require__(2);
|
|
59509
59541
|
|
|
59510
|
-
const filterIceServers = __webpack_require__(
|
|
59542
|
+
const filterIceServers = __webpack_require__(603);
|
|
59511
59543
|
|
|
59512
59544
|
const shouldUsePlanBSDP = __webpack_require__(73);
|
|
59513
59545
|
|
|
@@ -59531,7 +59563,7 @@ module.exports = function createPeerConnection(_ref) {
|
|
|
59531
59563
|
/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(0)))
|
|
59532
59564
|
|
|
59533
59565
|
/***/ }),
|
|
59534
|
-
/*
|
|
59566
|
+
/* 603 */
|
|
59535
59567
|
/***/ (function(module, exports, __webpack_require__) {
|
|
59536
59568
|
|
|
59537
59569
|
"use strict";
|
|
@@ -59608,7 +59640,7 @@ module.exports = function filterIceServers(env, iceServers) {
|
|
|
59608
59640
|
};
|
|
59609
59641
|
|
|
59610
59642
|
/***/ }),
|
|
59611
|
-
/*
|
|
59643
|
+
/* 604 */
|
|
59612
59644
|
/***/ (function(module, exports, __webpack_require__) {
|
|
59613
59645
|
|
|
59614
59646
|
"use strict";
|
|
@@ -59788,7 +59820,7 @@ module.exports = {
|
|
|
59788
59820
|
};
|
|
59789
59821
|
|
|
59790
59822
|
/***/ }),
|
|
59791
|
-
/*
|
|
59823
|
+
/* 605 */
|
|
59792
59824
|
/***/ (function(module, exports, __webpack_require__) {
|
|
59793
59825
|
|
|
59794
59826
|
var Symbol = __webpack_require__(38),
|
|
@@ -59796,7 +59828,7 @@ var Symbol = __webpack_require__(38),
|
|
|
59796
59828
|
getTag = __webpack_require__(40),
|
|
59797
59829
|
isArrayLike = __webpack_require__(24),
|
|
59798
59830
|
isString = __webpack_require__(275),
|
|
59799
|
-
iteratorToArray = __webpack_require__(
|
|
59831
|
+
iteratorToArray = __webpack_require__(606),
|
|
59800
59832
|
mapToArray = __webpack_require__(232),
|
|
59801
59833
|
setToArray = __webpack_require__(97),
|
|
59802
59834
|
stringToArray = __webpack_require__(262),
|
|
@@ -59852,7 +59884,7 @@ module.exports = toArray;
|
|
|
59852
59884
|
|
|
59853
59885
|
|
|
59854
59886
|
/***/ }),
|
|
59855
|
-
/*
|
|
59887
|
+
/* 606 */
|
|
59856
59888
|
/***/ (function(module, exports) {
|
|
59857
59889
|
|
|
59858
59890
|
/**
|
|
@@ -59876,10 +59908,10 @@ module.exports = iteratorToArray;
|
|
|
59876
59908
|
|
|
59877
59909
|
|
|
59878
59910
|
/***/ }),
|
|
59879
|
-
/*
|
|
59911
|
+
/* 607 */
|
|
59880
59912
|
/***/ (function(module, exports, __webpack_require__) {
|
|
59881
59913
|
|
|
59882
|
-
var arrayMap = __webpack_require__(
|
|
59914
|
+
var arrayMap = __webpack_require__(33);
|
|
59883
59915
|
|
|
59884
59916
|
/**
|
|
59885
59917
|
* The base implementation of `_.values` and `_.valuesIn` which creates an
|
|
@@ -59901,7 +59933,7 @@ module.exports = baseValues;
|
|
|
59901
59933
|
|
|
59902
59934
|
|
|
59903
59935
|
/***/ }),
|
|
59904
|
-
/*
|
|
59936
|
+
/* 608 */
|
|
59905
59937
|
/***/ (function(module, exports, __webpack_require__) {
|
|
59906
59938
|
|
|
59907
59939
|
"use strict";
|
|
@@ -59927,7 +59959,7 @@ module.exports = (peerConnection, completion) => {
|
|
|
59927
59959
|
};
|
|
59928
59960
|
|
|
59929
59961
|
/***/ }),
|
|
59930
|
-
/*
|
|
59962
|
+
/* 609 */
|
|
59931
59963
|
/***/ (function(module, exports, __webpack_require__) {
|
|
59932
59964
|
|
|
59933
59965
|
"use strict";
|
|
@@ -59936,7 +59968,7 @@ module.exports = (peerConnection, completion) => {
|
|
|
59936
59968
|
// @todo enable the following disabled rules see OPENTOK-31136 for more info
|
|
59937
59969
|
|
|
59938
59970
|
/* eslint-disable no-underscore-dangle */
|
|
59939
|
-
const promisify = __webpack_require__(
|
|
59971
|
+
const promisify = __webpack_require__(610);
|
|
59940
59972
|
/*
|
|
59941
59973
|
* Process incoming Ice Candidates from a remote connection.
|
|
59942
59974
|
*
|
|
@@ -60081,7 +60113,7 @@ module.exports = IceCandidateProcessor;
|
|
|
60081
60113
|
/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(0)))
|
|
60082
60114
|
|
|
60083
60115
|
/***/ }),
|
|
60084
|
-
/*
|
|
60116
|
+
/* 610 */
|
|
60085
60117
|
/***/ (function(module, exports, __webpack_require__) {
|
|
60086
60118
|
|
|
60087
60119
|
"use strict";
|
|
@@ -60106,7 +60138,7 @@ module.exports = function promisify(context, methodName) {
|
|
|
60106
60138
|
/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(0)))
|
|
60107
60139
|
|
|
60108
60140
|
/***/ }),
|
|
60109
|
-
/*
|
|
60141
|
+
/* 611 */
|
|
60110
60142
|
/***/ (function(module, exports, __webpack_require__) {
|
|
60111
60143
|
|
|
60112
60144
|
"use strict";
|
|
@@ -60123,7 +60155,7 @@ const logging = __webpack_require__(1)('offerProcessor');
|
|
|
60123
60155
|
|
|
60124
60156
|
const SDPHelpers = __webpack_require__(50);
|
|
60125
60157
|
|
|
60126
|
-
const testSupportVideo = __webpack_require__(
|
|
60158
|
+
const testSupportVideo = __webpack_require__(612); // Attempt to completely process +offer+. This will:
|
|
60127
60159
|
// * set the offer as the remote description
|
|
60128
60160
|
// * create an answer and
|
|
60129
60161
|
// * set the new answer as the location description
|
|
@@ -60196,7 +60228,7 @@ module.exports = function offerProcessor(peerConnection, RTCPeerConnection, RTCS
|
|
|
60196
60228
|
};
|
|
60197
60229
|
|
|
60198
60230
|
/***/ }),
|
|
60199
|
-
/*
|
|
60231
|
+
/* 612 */
|
|
60200
60232
|
/***/ (function(module, exports, __webpack_require__) {
|
|
60201
60233
|
|
|
60202
60234
|
"use strict";
|
|
@@ -60238,7 +60270,7 @@ module.exports = testSupportVideo;
|
|
|
60238
60270
|
/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(0)))
|
|
60239
60271
|
|
|
60240
60272
|
/***/ }),
|
|
60241
|
-
/*
|
|
60273
|
+
/* 613 */
|
|
60242
60274
|
/***/ (function(module, exports, __webpack_require__) {
|
|
60243
60275
|
|
|
60244
60276
|
"use strict";
|
|
@@ -60249,7 +60281,7 @@ module.exports = testSupportVideo;
|
|
|
60249
60281
|
/* eslint-disable no-restricted-syntax, no-prototype-builtins */
|
|
60250
60282
|
const find = __webpack_require__(61);
|
|
60251
60283
|
|
|
60252
|
-
const DataChannel = __webpack_require__(
|
|
60284
|
+
const DataChannel = __webpack_require__(614); // Contains a collection of DataChannels for a particular RTCPeerConnection
|
|
60253
60285
|
//
|
|
60254
60286
|
// @param [RTCPeerConnection] pc A native peer connection object
|
|
60255
60287
|
//
|
|
@@ -60344,7 +60376,7 @@ module.exports = function PeerConnectionChannels(pc) {
|
|
|
60344
60376
|
};
|
|
60345
60377
|
|
|
60346
60378
|
/***/ }),
|
|
60347
|
-
/*
|
|
60379
|
+
/* 614 */
|
|
60348
60380
|
/***/ (function(module, exports, __webpack_require__) {
|
|
60349
60381
|
|
|
60350
60382
|
"use strict";
|
|
@@ -60512,7 +60544,7 @@ module.exports = function DataChannel(dataChannel) {
|
|
|
60512
60544
|
};
|
|
60513
60545
|
|
|
60514
60546
|
/***/ }),
|
|
60515
|
-
/*
|
|
60547
|
+
/* 615 */
|
|
60516
60548
|
/***/ (function(module, exports, __webpack_require__) {
|
|
60517
60549
|
|
|
60518
60550
|
"use strict";
|
|
@@ -60577,7 +60609,7 @@ module.exports = function subscribeProcessor(_ref) {
|
|
|
60577
60609
|
};
|
|
60578
60610
|
|
|
60579
60611
|
/***/ }),
|
|
60580
|
-
/*
|
|
60612
|
+
/* 616 */
|
|
60581
60613
|
/***/ (function(module, exports, __webpack_require__) {
|
|
60582
60614
|
|
|
60583
60615
|
"use strict";
|
|
@@ -60651,7 +60683,7 @@ module.exports = {
|
|
|
60651
60683
|
};
|
|
60652
60684
|
|
|
60653
60685
|
/***/ }),
|
|
60654
|
-
/*
|
|
60686
|
+
/* 617 */
|
|
60655
60687
|
/***/ (function(module, exports, __webpack_require__) {
|
|
60656
60688
|
|
|
60657
60689
|
"use strict";
|
|
@@ -60683,7 +60715,7 @@ const sdpHelpers = __webpack_require__(50);
|
|
|
60683
60715
|
|
|
60684
60716
|
const getProtocolFromPriority = __webpack_require__(279);
|
|
60685
60717
|
|
|
60686
|
-
const getLocalRelayProtocol = __webpack_require__(
|
|
60718
|
+
const getLocalRelayProtocol = __webpack_require__(618);
|
|
60687
60719
|
|
|
60688
60720
|
const shouldUseStandardGetStats = __webpack_require__(102)();
|
|
60689
60721
|
|
|
@@ -61116,7 +61148,7 @@ function extendStats(stats, isPublisher) {
|
|
|
61116
61148
|
}
|
|
61117
61149
|
|
|
61118
61150
|
/***/ }),
|
|
61119
|
-
/*
|
|
61151
|
+
/* 618 */
|
|
61120
61152
|
/***/ (function(module, exports, __webpack_require__) {
|
|
61121
61153
|
|
|
61122
61154
|
"use strict";
|
|
@@ -61157,7 +61189,7 @@ module.exports = (selectedCandidatePairId, stats) => {
|
|
|
61157
61189
|
};
|
|
61158
61190
|
|
|
61159
61191
|
/***/ }),
|
|
61160
|
-
/*
|
|
61192
|
+
/* 619 */
|
|
61161
61193
|
/***/ (function(module, exports, __webpack_require__) {
|
|
61162
61194
|
|
|
61163
61195
|
"use strict";
|
|
@@ -61198,11 +61230,11 @@ let TruthyChangeCounter = /*#__PURE__*/function () {
|
|
|
61198
61230
|
exports.default = TruthyChangeCounter;
|
|
61199
61231
|
|
|
61200
61232
|
/***/ }),
|
|
61201
|
-
/*
|
|
61233
|
+
/* 620 */
|
|
61202
61234
|
/***/ (function(module, exports, __webpack_require__) {
|
|
61203
61235
|
|
|
61204
61236
|
var isObject = __webpack_require__(9),
|
|
61205
|
-
now = __webpack_require__(
|
|
61237
|
+
now = __webpack_require__(621),
|
|
61206
61238
|
toNumber = __webpack_require__(228);
|
|
61207
61239
|
|
|
61208
61240
|
/** Error message constants. */
|
|
@@ -61395,7 +61427,7 @@ module.exports = debounce;
|
|
|
61395
61427
|
|
|
61396
61428
|
|
|
61397
61429
|
/***/ }),
|
|
61398
|
-
/*
|
|
61430
|
+
/* 621 */
|
|
61399
61431
|
/***/ (function(module, exports, __webpack_require__) {
|
|
61400
61432
|
|
|
61401
61433
|
var root = __webpack_require__(14);
|
|
@@ -61424,7 +61456,7 @@ module.exports = now;
|
|
|
61424
61456
|
|
|
61425
61457
|
|
|
61426
61458
|
/***/ }),
|
|
61427
|
-
/*
|
|
61459
|
+
/* 622 */
|
|
61428
61460
|
/***/ (function(module, exports, __webpack_require__) {
|
|
61429
61461
|
|
|
61430
61462
|
"use strict";
|
|
@@ -61449,7 +61481,7 @@ exports.check = function (deps) {
|
|
|
61449
61481
|
exports.once = once(() => exports.check());
|
|
61450
61482
|
|
|
61451
61483
|
/***/ }),
|
|
61452
|
-
/*
|
|
61484
|
+
/* 623 */
|
|
61453
61485
|
/***/ (function(module, exports, __webpack_require__) {
|
|
61454
61486
|
|
|
61455
61487
|
"use strict";
|
|
@@ -61580,7 +61612,7 @@ module.exports = function Archiving(options) {
|
|
|
61580
61612
|
};
|
|
61581
61613
|
|
|
61582
61614
|
/***/ }),
|
|
61583
|
-
/*
|
|
61615
|
+
/* 624 */
|
|
61584
61616
|
/***/ (function(module, exports, __webpack_require__) {
|
|
61585
61617
|
|
|
61586
61618
|
"use strict";
|
|
@@ -61596,7 +61628,7 @@ module.exports = function (deps) {
|
|
|
61596
61628
|
};
|
|
61597
61629
|
|
|
61598
61630
|
/***/ }),
|
|
61599
|
-
/*
|
|
61631
|
+
/* 625 */
|
|
61600
61632
|
/***/ (function(module, exports, __webpack_require__) {
|
|
61601
61633
|
|
|
61602
61634
|
"use strict";
|
|
@@ -61613,9 +61645,9 @@ const isObject = __webpack_require__(9);
|
|
|
61613
61645
|
|
|
61614
61646
|
const promiseDelay = __webpack_require__(106);
|
|
61615
61647
|
|
|
61616
|
-
const trackUsage = __webpack_require__(
|
|
61648
|
+
const trackUsage = __webpack_require__(626);
|
|
61617
61649
|
|
|
61618
|
-
const AnalyticsHelper = __webpack_require__(
|
|
61650
|
+
const AnalyticsHelper = __webpack_require__(27);
|
|
61619
61651
|
|
|
61620
61652
|
const OTErrorClass = __webpack_require__(21);
|
|
61621
61653
|
|
|
@@ -62003,7 +62035,7 @@ module.exports = function getUserMediaFactory(deps) {
|
|
|
62003
62035
|
/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(0)))
|
|
62004
62036
|
|
|
62005
62037
|
/***/ }),
|
|
62006
|
-
/*
|
|
62038
|
+
/* 626 */
|
|
62007
62039
|
/***/ (function(module, exports, __webpack_require__) {
|
|
62008
62040
|
|
|
62009
62041
|
"use strict";
|
|
@@ -62050,7 +62082,7 @@ module.exports = function (_temp) {
|
|
|
62050
62082
|
};
|
|
62051
62083
|
|
|
62052
62084
|
/***/ }),
|
|
62053
|
-
/*
|
|
62085
|
+
/* 627 */
|
|
62054
62086
|
/***/ (function(module, exports, __webpack_require__) {
|
|
62055
62087
|
|
|
62056
62088
|
"use strict";
|
|
@@ -62058,7 +62090,7 @@ module.exports = function (_temp) {
|
|
|
62058
62090
|
|
|
62059
62091
|
const env = __webpack_require__(2);
|
|
62060
62092
|
|
|
62061
|
-
const _require = __webpack_require__(
|
|
62093
|
+
const _require = __webpack_require__(628),
|
|
62062
62094
|
isCallbackBasedAPI = _require.isCallbackBasedAPI;
|
|
62063
62095
|
|
|
62064
62096
|
let isElectronScreenSharingSource = __webpack_require__(265);
|
|
@@ -62184,7 +62216,7 @@ module.exports = function electronExtensionHelperFactory(deps) {
|
|
|
62184
62216
|
};
|
|
62185
62217
|
|
|
62186
62218
|
/***/ }),
|
|
62187
|
-
/*
|
|
62219
|
+
/* 628 */
|
|
62188
62220
|
/***/ (function(module, exports, __webpack_require__) {
|
|
62189
62221
|
|
|
62190
62222
|
"use strict";
|
|
@@ -62202,7 +62234,7 @@ module.exports = {
|
|
|
62202
62234
|
};
|
|
62203
62235
|
|
|
62204
62236
|
/***/ }),
|
|
62205
|
-
/*
|
|
62237
|
+
/* 629 */
|
|
62206
62238
|
/***/ (function(module, exports, __webpack_require__) {
|
|
62207
62239
|
|
|
62208
62240
|
"use strict";
|
|
@@ -62270,7 +62302,7 @@ module.exports = {
|
|
|
62270
62302
|
};
|
|
62271
62303
|
|
|
62272
62304
|
/***/ }),
|
|
62273
|
-
/*
|
|
62305
|
+
/* 630 */
|
|
62274
62306
|
/***/ (function(module, exports, __webpack_require__) {
|
|
62275
62307
|
|
|
62276
62308
|
"use strict";
|
|
@@ -62284,7 +62316,7 @@ var _asyncToGenerator2 = _interopRequireDefault(__webpack_require__(13));
|
|
|
62284
62316
|
|
|
62285
62317
|
var _extends2 = _interopRequireDefault(__webpack_require__(25));
|
|
62286
62318
|
|
|
62287
|
-
const _require = __webpack_require__(
|
|
62319
|
+
const _require = __webpack_require__(631),
|
|
62288
62320
|
normaliseOptions = _require.normaliseOptions;
|
|
62289
62321
|
|
|
62290
62322
|
const _require2 = __webpack_require__(288),
|
|
@@ -62340,7 +62372,7 @@ module.exports = function processPubOptionsFactory(deps) {
|
|
|
62340
62372
|
|
|
62341
62373
|
const env = deps.env || defaultEnv;
|
|
62342
62374
|
|
|
62343
|
-
const usingOptionalMandatoryStyle = __webpack_require__(
|
|
62375
|
+
const usingOptionalMandatoryStyle = __webpack_require__(632)({
|
|
62344
62376
|
navigator: navigator || {}
|
|
62345
62377
|
});
|
|
62346
62378
|
|
|
@@ -62685,7 +62717,7 @@ module.exports = function processPubOptionsFactory(deps) {
|
|
|
62685
62717
|
};
|
|
62686
62718
|
|
|
62687
62719
|
/***/ }),
|
|
62688
|
-
/*
|
|
62720
|
+
/* 631 */
|
|
62689
62721
|
/***/ (function(module, exports, __webpack_require__) {
|
|
62690
62722
|
|
|
62691
62723
|
"use strict";
|
|
@@ -62742,7 +62774,7 @@ const normaliseOptions = (originalOptions, logPrefix, logging) => {
|
|
|
62742
62774
|
exports.normaliseOptions = normaliseOptions;
|
|
62743
62775
|
|
|
62744
62776
|
/***/ }),
|
|
62745
|
-
/*
|
|
62777
|
+
/* 632 */
|
|
62746
62778
|
/***/ (function(module, exports, __webpack_require__) {
|
|
62747
62779
|
|
|
62748
62780
|
"use strict";
|
|
@@ -62777,7 +62809,7 @@ module.exports = function usingOptionalMandatoryStyleFactory(_temp) {
|
|
|
62777
62809
|
};
|
|
62778
62810
|
|
|
62779
62811
|
/***/ }),
|
|
62780
|
-
/*
|
|
62812
|
+
/* 633 */
|
|
62781
62813
|
/***/ (function(module, exports, __webpack_require__) {
|
|
62782
62814
|
|
|
62783
62815
|
"use strict";
|
|
@@ -62871,7 +62903,7 @@ module.exports = function getUserMediaFactory(deps) {
|
|
|
62871
62903
|
};
|
|
62872
62904
|
|
|
62873
62905
|
/***/ }),
|
|
62874
|
-
/*
|
|
62906
|
+
/* 634 */
|
|
62875
62907
|
/***/ (function(module, exports, __webpack_require__) {
|
|
62876
62908
|
|
|
62877
62909
|
"use strict";
|
|
@@ -62896,7 +62928,7 @@ module.exports = function destroyObj(name, obj) {
|
|
|
62896
62928
|
};
|
|
62897
62929
|
|
|
62898
62930
|
/***/ }),
|
|
62899
|
-
/*
|
|
62931
|
+
/* 635 */
|
|
62900
62932
|
/***/ (function(module, exports, __webpack_require__) {
|
|
62901
62933
|
|
|
62902
62934
|
"use strict";
|
|
@@ -62958,7 +62990,7 @@ module.exports = el => {
|
|
|
62958
62990
|
};
|
|
62959
62991
|
|
|
62960
62992
|
/***/ }),
|
|
62961
|
-
/*
|
|
62993
|
+
/* 636 */
|
|
62962
62994
|
/***/ (function(module, exports, __webpack_require__) {
|
|
62963
62995
|
|
|
62964
62996
|
"use strict";
|
|
@@ -63006,7 +63038,7 @@ const isVisible = domElement => {
|
|
|
63006
63038
|
module.exports = domElement => isDomElement(domElement) && isInViewPort(domElement) && isVisible(domElement);
|
|
63007
63039
|
|
|
63008
63040
|
/***/ }),
|
|
63009
|
-
/*
|
|
63041
|
+
/* 637 */
|
|
63010
63042
|
/***/ (function(module, exports, __webpack_require__) {
|
|
63011
63043
|
|
|
63012
63044
|
"use strict";
|
|
@@ -63089,7 +63121,7 @@ module.exports = function canBeOrientatedMixin(self, getDomElementCallback, init
|
|
|
63089
63121
|
};
|
|
63090
63122
|
|
|
63091
63123
|
/***/ }),
|
|
63092
|
-
/*
|
|
63124
|
+
/* 638 */
|
|
63093
63125
|
/***/ (function(module, exports, __webpack_require__) {
|
|
63094
63126
|
|
|
63095
63127
|
"use strict";
|
|
@@ -63174,12 +63206,12 @@ module.exports = function listenForTracksEndedFactory() {
|
|
|
63174
63206
|
};
|
|
63175
63207
|
|
|
63176
63208
|
/***/ }),
|
|
63177
|
-
/*
|
|
63209
|
+
/* 639 */
|
|
63178
63210
|
/***/ (function(module, exports, __webpack_require__) {
|
|
63179
63211
|
|
|
63180
63212
|
var baseAssignValue = __webpack_require__(63),
|
|
63181
63213
|
baseForOwn = __webpack_require__(99),
|
|
63182
|
-
baseIteratee = __webpack_require__(
|
|
63214
|
+
baseIteratee = __webpack_require__(34);
|
|
63183
63215
|
|
|
63184
63216
|
/**
|
|
63185
63217
|
* Creates an object with the same keys as `object` and values generated
|
|
@@ -63223,7 +63255,7 @@ module.exports = mapValues;
|
|
|
63223
63255
|
|
|
63224
63256
|
|
|
63225
63257
|
/***/ }),
|
|
63226
|
-
/*
|
|
63258
|
+
/* 640 */
|
|
63227
63259
|
/***/ (function(module, exports, __webpack_require__) {
|
|
63228
63260
|
|
|
63229
63261
|
"use strict";
|
|
@@ -63266,7 +63298,7 @@ module.exports = function watchAudioAcquisition(getStats, warningCb) {
|
|
|
63266
63298
|
};
|
|
63267
63299
|
|
|
63268
63300
|
/***/ }),
|
|
63269
|
-
/*
|
|
63301
|
+
/* 641 */
|
|
63270
63302
|
/***/ (function(module, exports, __webpack_require__) {
|
|
63271
63303
|
|
|
63272
63304
|
"use strict";
|
|
@@ -63362,14 +63394,14 @@ module.exports = function watchSubscriberAudio(getStats, warningCb, disableAudio
|
|
|
63362
63394
|
};
|
|
63363
63395
|
|
|
63364
63396
|
/***/ }),
|
|
63365
|
-
/*
|
|
63397
|
+
/* 642 */
|
|
63366
63398
|
/***/ (function(module, exports, __webpack_require__) {
|
|
63367
63399
|
|
|
63368
63400
|
"use strict";
|
|
63369
63401
|
/* WEBPACK VAR INJECTION */(function(Promise) {
|
|
63370
63402
|
|
|
63371
63403
|
/* eslint-disable global-require */
|
|
63372
|
-
const Analytics = __webpack_require__(
|
|
63404
|
+
const Analytics = __webpack_require__(27);
|
|
63373
63405
|
|
|
63374
63406
|
const defaultAnalytics = new Analytics();
|
|
63375
63407
|
|
|
@@ -63440,7 +63472,7 @@ module.exports = function reportIssueFactory(deps) {
|
|
|
63440
63472
|
/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(0)))
|
|
63441
63473
|
|
|
63442
63474
|
/***/ }),
|
|
63443
|
-
/*
|
|
63475
|
+
/* 643 */
|
|
63444
63476
|
/***/ (function(module, exports, __webpack_require__) {
|
|
63445
63477
|
|
|
63446
63478
|
"use strict";
|
|
@@ -63468,7 +63500,7 @@ module.exports = (_ref) => {
|
|
|
63468
63500
|
};
|
|
63469
63501
|
|
|
63470
63502
|
/***/ }),
|
|
63471
|
-
/*
|
|
63503
|
+
/* 644 */
|
|
63472
63504
|
/***/ (function(module, exports, __webpack_require__) {
|
|
63473
63505
|
|
|
63474
63506
|
"use strict";
|
|
@@ -63517,7 +63549,7 @@ module.exports = function versionGreaterThan(version1, version2) {
|
|
|
63517
63549
|
};
|
|
63518
63550
|
|
|
63519
63551
|
/***/ }),
|
|
63520
|
-
/*
|
|
63552
|
+
/* 645 */
|
|
63521
63553
|
/***/ (function(module, exports, __webpack_require__) {
|
|
63522
63554
|
|
|
63523
63555
|
"use strict";
|
|
@@ -63655,7 +63687,7 @@ Cancellation.CANCELED = new Cancellation();
|
|
|
63655
63687
|
Cancellation.CANCELED.internalIsCanceled = true;
|
|
63656
63688
|
|
|
63657
63689
|
/***/ }),
|
|
63658
|
-
/*
|
|
63690
|
+
/* 646 */
|
|
63659
63691
|
/***/ (function(module, exports, __webpack_require__) {
|
|
63660
63692
|
|
|
63661
63693
|
"use strict";
|
|
@@ -63699,7 +63731,7 @@ module.exports = waitForCorrectResolution;
|
|
|
63699
63731
|
/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(0)))
|
|
63700
63732
|
|
|
63701
63733
|
/***/ }),
|
|
63702
|
-
/*
|
|
63734
|
+
/* 647 */
|
|
63703
63735
|
/***/ (function(module, exports, __webpack_require__) {
|
|
63704
63736
|
|
|
63705
63737
|
"use strict";
|
|
@@ -63740,7 +63772,7 @@ module.exports = waitForVideoToBePlaying;
|
|
|
63740
63772
|
/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(0)))
|
|
63741
63773
|
|
|
63742
63774
|
/***/ }),
|
|
63743
|
-
/*
|
|
63775
|
+
/* 648 */
|
|
63744
63776
|
/***/ (function(module, exports, __webpack_require__) {
|
|
63745
63777
|
|
|
63746
63778
|
"use strict";
|
|
@@ -63783,7 +63815,7 @@ container) {
|
|
|
63783
63815
|
};
|
|
63784
63816
|
|
|
63785
63817
|
/***/ }),
|
|
63786
|
-
/*
|
|
63818
|
+
/* 649 */
|
|
63787
63819
|
/***/ (function(module, exports, __webpack_require__) {
|
|
63788
63820
|
|
|
63789
63821
|
"use strict";
|
|
@@ -63855,7 +63887,7 @@ module.exports = function getOrCreateContainer(elementOrDomId, insertMode) {
|
|
|
63855
63887
|
};
|
|
63856
63888
|
|
|
63857
63889
|
/***/ }),
|
|
63858
|
-
/*
|
|
63890
|
+
/* 650 */
|
|
63859
63891
|
/***/ (function(module, exports, __webpack_require__) {
|
|
63860
63892
|
|
|
63861
63893
|
"use strict";
|
|
@@ -63874,7 +63906,7 @@ module.exports = function ensureCSSUnit(measurement, defaultUnit) {
|
|
|
63874
63906
|
};
|
|
63875
63907
|
|
|
63876
63908
|
/***/ }),
|
|
63877
|
-
/*
|
|
63909
|
+
/* 651 */
|
|
63878
63910
|
/***/ (function(module, exports, __webpack_require__) {
|
|
63879
63911
|
|
|
63880
63912
|
"use strict";
|
|
@@ -63916,7 +63948,7 @@ module.exports = function waitUntil(predicate, _temp) {
|
|
|
63916
63948
|
/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(0)))
|
|
63917
63949
|
|
|
63918
63950
|
/***/ }),
|
|
63919
|
-
/*
|
|
63951
|
+
/* 652 */
|
|
63920
63952
|
/***/ (function(module, exports, __webpack_require__) {
|
|
63921
63953
|
|
|
63922
63954
|
"use strict";
|
|
@@ -63933,7 +63965,7 @@ module.exports = err => {
|
|
|
63933
63965
|
return otError(Errors.STREAM_NOT_FOUND, new Error('stream not found'), ExceptionCodes.UNABLE_TO_SUBSCRIBE);
|
|
63934
63966
|
}
|
|
63935
63967
|
|
|
63936
|
-
if (String(err.code) === '409') {
|
|
63968
|
+
if (String(err.code) === '409' && err.message === 'streamLimitExceeded') {
|
|
63937
63969
|
return otError(Errors.STREAM_LIMIT_EXCEEDED, new Error('The limit for concurrent streams in the session has been reached'), ExceptionCodes.STREAM_LIMIT_EXCEEDED);
|
|
63938
63970
|
}
|
|
63939
63971
|
|
|
@@ -63941,7 +63973,7 @@ module.exports = err => {
|
|
|
63941
63973
|
};
|
|
63942
63974
|
|
|
63943
63975
|
/***/ }),
|
|
63944
|
-
/*
|
|
63976
|
+
/* 653 */
|
|
63945
63977
|
/***/ (function(module, exports, __webpack_require__) {
|
|
63946
63978
|
|
|
63947
63979
|
"use strict";
|
|
@@ -64011,7 +64043,7 @@ module.exports = (_ref) => {
|
|
|
64011
64043
|
};
|
|
64012
64044
|
|
|
64013
64045
|
/***/ }),
|
|
64014
|
-
/*
|
|
64046
|
+
/* 654 */
|
|
64015
64047
|
/***/ (function(module, exports, __webpack_require__) {
|
|
64016
64048
|
|
|
64017
64049
|
"use strict";
|
|
@@ -64022,7 +64054,7 @@ const GetAudioLevelSampler = __webpack_require__(253);
|
|
|
64022
64054
|
|
|
64023
64055
|
const WebAudioAudioLevelSampler = __webpack_require__(145);
|
|
64024
64056
|
|
|
64025
|
-
const hasSynchronizationSourcesCapability = __webpack_require__(
|
|
64057
|
+
const hasSynchronizationSourcesCapability = __webpack_require__(655);
|
|
64026
64058
|
|
|
64027
64059
|
const hasAudioOutputLevelStatCapability = __webpack_require__(301);
|
|
64028
64060
|
|
|
@@ -64030,7 +64062,7 @@ const hasRemoteStreamsWithWebAudio = __webpack_require__(302);
|
|
|
64030
64062
|
|
|
64031
64063
|
const getAudioContext = __webpack_require__(158)();
|
|
64032
64064
|
|
|
64033
|
-
const isAudioContext = __webpack_require__(
|
|
64065
|
+
const isAudioContext = __webpack_require__(656);
|
|
64034
64066
|
|
|
64035
64067
|
const logging = __webpack_require__(1)('Subscriber');
|
|
64036
64068
|
|
|
@@ -64068,7 +64100,7 @@ module.exports = function (peerConnection, deps) {
|
|
|
64068
64100
|
};
|
|
64069
64101
|
|
|
64070
64102
|
/***/ }),
|
|
64071
|
-
/*
|
|
64103
|
+
/* 655 */
|
|
64072
64104
|
/***/ (function(module, exports, __webpack_require__) {
|
|
64073
64105
|
|
|
64074
64106
|
"use strict";
|
|
@@ -64092,7 +64124,7 @@ module.exports = function (deps) {
|
|
|
64092
64124
|
};
|
|
64093
64125
|
|
|
64094
64126
|
/***/ }),
|
|
64095
|
-
/*
|
|
64127
|
+
/* 656 */
|
|
64096
64128
|
/***/ (function(module, exports, __webpack_require__) {
|
|
64097
64129
|
|
|
64098
64130
|
"use strict";
|
|
@@ -64101,7 +64133,7 @@ module.exports = function (deps) {
|
|
|
64101
64133
|
module.exports = audioContext => (typeof window !== undefined ? window : global).AudioContext && audioContext instanceof (typeof window !== undefined ? window : global).AudioContext || (typeof window !== undefined ? window : global).webkitAudioContext && audioContext instanceof (typeof window !== undefined ? window : global).webkitAudioContext;
|
|
64102
64134
|
|
|
64103
64135
|
/***/ }),
|
|
64104
|
-
/*
|
|
64136
|
+
/* 657 */
|
|
64105
64137
|
/***/ (function(module, exports, __webpack_require__) {
|
|
64106
64138
|
|
|
64107
64139
|
"use strict";
|
|
@@ -64164,7 +64196,7 @@ module.exports = function VideoDisabledIndicator(options) {
|
|
|
64164
64196
|
};
|
|
64165
64197
|
|
|
64166
64198
|
/***/ }),
|
|
64167
|
-
/*
|
|
64199
|
+
/* 658 */
|
|
64168
64200
|
/***/ (function(module, exports, __webpack_require__) {
|
|
64169
64201
|
|
|
64170
64202
|
"use strict";
|
|
@@ -64214,7 +64246,7 @@ module.exports = function AudioBlockedIndicator(options) {
|
|
|
64214
64246
|
};
|
|
64215
64247
|
|
|
64216
64248
|
/***/ }),
|
|
64217
|
-
/*
|
|
64249
|
+
/* 659 */
|
|
64218
64250
|
/***/ (function(module, exports, __webpack_require__) {
|
|
64219
64251
|
|
|
64220
64252
|
"use strict";
|
|
@@ -64261,7 +64293,7 @@ module.exports = function VideoUnsupportedIndicator(options) {
|
|
|
64261
64293
|
};
|
|
64262
64294
|
|
|
64263
64295
|
/***/ }),
|
|
64264
|
-
/*
|
|
64296
|
+
/* 660 */
|
|
64265
64297
|
/***/ (function(module, exports, __webpack_require__) {
|
|
64266
64298
|
|
|
64267
64299
|
"use strict";
|
|
@@ -64347,7 +64379,7 @@ const watchFrameRate = function watchFrameRate(getStats, delay) {
|
|
|
64347
64379
|
module.exports = watchFrameRate;
|
|
64348
64380
|
|
|
64349
64381
|
/***/ }),
|
|
64350
|
-
/*
|
|
64382
|
+
/* 661 */
|
|
64351
64383
|
/***/ (function(module, exports, __webpack_require__) {
|
|
64352
64384
|
|
|
64353
64385
|
"use strict";
|
|
@@ -64376,7 +64408,7 @@ module.exports = (_ref) => {
|
|
|
64376
64408
|
};
|
|
64377
64409
|
|
|
64378
64410
|
/***/ }),
|
|
64379
|
-
/*
|
|
64411
|
+
/* 662 */
|
|
64380
64412
|
/***/ (function(module, exports, __webpack_require__) {
|
|
64381
64413
|
|
|
64382
64414
|
"use strict";
|
|
@@ -64420,7 +64452,7 @@ module.exports = (_ref) => {
|
|
|
64420
64452
|
};
|
|
64421
64453
|
|
|
64422
64454
|
/***/ }),
|
|
64423
|
-
/*
|
|
64455
|
+
/* 663 */
|
|
64424
64456
|
/***/ (function(module, exports, __webpack_require__) {
|
|
64425
64457
|
|
|
64426
64458
|
"use strict";
|
|
@@ -64449,10 +64481,10 @@ module.exports = (_ref) => {
|
|
|
64449
64481
|
};
|
|
64450
64482
|
|
|
64451
64483
|
/***/ }),
|
|
64452
|
-
/*
|
|
64484
|
+
/* 664 */
|
|
64453
64485
|
/***/ (function(module, exports, __webpack_require__) {
|
|
64454
64486
|
|
|
64455
|
-
var createCompounder = __webpack_require__(
|
|
64487
|
+
var createCompounder = __webpack_require__(665),
|
|
64456
64488
|
upperFirst = __webpack_require__(259);
|
|
64457
64489
|
|
|
64458
64490
|
/**
|
|
@@ -64484,12 +64516,12 @@ module.exports = startCase;
|
|
|
64484
64516
|
|
|
64485
64517
|
|
|
64486
64518
|
/***/ }),
|
|
64487
|
-
/*
|
|
64519
|
+
/* 665 */
|
|
64488
64520
|
/***/ (function(module, exports, __webpack_require__) {
|
|
64489
64521
|
|
|
64490
|
-
var arrayReduce = __webpack_require__(
|
|
64491
|
-
deburr = __webpack_require__(
|
|
64492
|
-
words = __webpack_require__(
|
|
64522
|
+
var arrayReduce = __webpack_require__(666),
|
|
64523
|
+
deburr = __webpack_require__(667),
|
|
64524
|
+
words = __webpack_require__(670);
|
|
64493
64525
|
|
|
64494
64526
|
/** Used to compose unicode capture groups. */
|
|
64495
64527
|
var rsApos = "['\u2019]";
|
|
@@ -64514,7 +64546,7 @@ module.exports = createCompounder;
|
|
|
64514
64546
|
|
|
64515
64547
|
|
|
64516
64548
|
/***/ }),
|
|
64517
|
-
/*
|
|
64549
|
+
/* 666 */
|
|
64518
64550
|
/***/ (function(module, exports) {
|
|
64519
64551
|
|
|
64520
64552
|
/**
|
|
@@ -64546,10 +64578,10 @@ module.exports = arrayReduce;
|
|
|
64546
64578
|
|
|
64547
64579
|
|
|
64548
64580
|
/***/ }),
|
|
64549
|
-
/*
|
|
64581
|
+
/* 667 */
|
|
64550
64582
|
/***/ (function(module, exports, __webpack_require__) {
|
|
64551
64583
|
|
|
64552
|
-
var deburrLetter = __webpack_require__(
|
|
64584
|
+
var deburrLetter = __webpack_require__(668),
|
|
64553
64585
|
toString = __webpack_require__(58);
|
|
64554
64586
|
|
|
64555
64587
|
/** Used to match Latin Unicode letters (excluding mathematical operators). */
|
|
@@ -64597,10 +64629,10 @@ module.exports = deburr;
|
|
|
64597
64629
|
|
|
64598
64630
|
|
|
64599
64631
|
/***/ }),
|
|
64600
|
-
/*
|
|
64632
|
+
/* 668 */
|
|
64601
64633
|
/***/ (function(module, exports, __webpack_require__) {
|
|
64602
64634
|
|
|
64603
|
-
var basePropertyOf = __webpack_require__(
|
|
64635
|
+
var basePropertyOf = __webpack_require__(669);
|
|
64604
64636
|
|
|
64605
64637
|
/** Used to map Latin Unicode letters to basic Latin letters. */
|
|
64606
64638
|
var deburredLetters = {
|
|
@@ -64674,7 +64706,7 @@ module.exports = deburrLetter;
|
|
|
64674
64706
|
|
|
64675
64707
|
|
|
64676
64708
|
/***/ }),
|
|
64677
|
-
/*
|
|
64709
|
+
/* 669 */
|
|
64678
64710
|
/***/ (function(module, exports) {
|
|
64679
64711
|
|
|
64680
64712
|
/**
|
|
@@ -64694,13 +64726,13 @@ module.exports = basePropertyOf;
|
|
|
64694
64726
|
|
|
64695
64727
|
|
|
64696
64728
|
/***/ }),
|
|
64697
|
-
/*
|
|
64729
|
+
/* 670 */
|
|
64698
64730
|
/***/ (function(module, exports, __webpack_require__) {
|
|
64699
64731
|
|
|
64700
|
-
var asciiWords = __webpack_require__(
|
|
64701
|
-
hasUnicodeWord = __webpack_require__(
|
|
64732
|
+
var asciiWords = __webpack_require__(671),
|
|
64733
|
+
hasUnicodeWord = __webpack_require__(672),
|
|
64702
64734
|
toString = __webpack_require__(58),
|
|
64703
|
-
unicodeWords = __webpack_require__(
|
|
64735
|
+
unicodeWords = __webpack_require__(673);
|
|
64704
64736
|
|
|
64705
64737
|
/**
|
|
64706
64738
|
* Splits `string` into an array of its words.
|
|
@@ -64735,7 +64767,7 @@ module.exports = words;
|
|
|
64735
64767
|
|
|
64736
64768
|
|
|
64737
64769
|
/***/ }),
|
|
64738
|
-
/*
|
|
64770
|
+
/* 671 */
|
|
64739
64771
|
/***/ (function(module, exports) {
|
|
64740
64772
|
|
|
64741
64773
|
/** Used to match words composed of alphanumeric characters. */
|
|
@@ -64756,7 +64788,7 @@ module.exports = asciiWords;
|
|
|
64756
64788
|
|
|
64757
64789
|
|
|
64758
64790
|
/***/ }),
|
|
64759
|
-
/*
|
|
64791
|
+
/* 672 */
|
|
64760
64792
|
/***/ (function(module, exports) {
|
|
64761
64793
|
|
|
64762
64794
|
/** Used to detect strings that need a more robust regexp to match words. */
|
|
@@ -64777,7 +64809,7 @@ module.exports = hasUnicodeWord;
|
|
|
64777
64809
|
|
|
64778
64810
|
|
|
64779
64811
|
/***/ }),
|
|
64780
|
-
/*
|
|
64812
|
+
/* 673 */
|
|
64781
64813
|
/***/ (function(module, exports) {
|
|
64782
64814
|
|
|
64783
64815
|
/** Used to compose unicode character classes. */
|
|
@@ -64852,7 +64884,7 @@ module.exports = unicodeWords;
|
|
|
64852
64884
|
|
|
64853
64885
|
|
|
64854
64886
|
/***/ }),
|
|
64855
|
-
/*
|
|
64887
|
+
/* 674 */
|
|
64856
64888
|
/***/ (function(module, exports, __webpack_require__) {
|
|
64857
64889
|
|
|
64858
64890
|
"use strict";
|
|
@@ -64872,7 +64904,7 @@ module.exports = (peerConnection, activeState) => {
|
|
|
64872
64904
|
};
|
|
64873
64905
|
|
|
64874
64906
|
/***/ }),
|
|
64875
|
-
/*
|
|
64907
|
+
/* 675 */
|
|
64876
64908
|
/***/ (function(module, exports, __webpack_require__) {
|
|
64877
64909
|
|
|
64878
64910
|
"use strict";
|
|
@@ -64884,7 +64916,7 @@ const pick = __webpack_require__(47);
|
|
|
64884
64916
|
module.exports = x => pick(x, ['audioDeviceId', 'audioFallbackEnabled', 'audioSource', 'channels', 'classNames', 'constraints', 'disableAudioProcessing', 'echoCancellation', 'noiseSuppression', 'autoGainControl', 'enableRenegotiation', 'enableStereo', 'facingMode', 'fitMode', 'frameRate', 'height', 'insertDefaultUI', 'insertMode', 'audioBitrate', 'maxResolution', 'minVideoBitrate', 'mirror', 'name', 'publishAudio', 'publishVideo', 'resolution', 'showControls', 'style', 'videoContentHint', 'videoDeviceId', 'videoDimensions', 'videoSource', 'width']);
|
|
64885
64917
|
|
|
64886
64918
|
/***/ }),
|
|
64887
|
-
/*
|
|
64919
|
+
/* 676 */
|
|
64888
64920
|
/***/ (function(module, exports, __webpack_require__) {
|
|
64889
64921
|
|
|
64890
64922
|
"use strict";
|
|
@@ -64951,7 +64983,7 @@ module.exports = (_ref) => {
|
|
|
64951
64983
|
};
|
|
64952
64984
|
|
|
64953
64985
|
/***/ }),
|
|
64954
|
-
/*
|
|
64986
|
+
/* 677 */
|
|
64955
64987
|
/***/ (function(module, exports, __webpack_require__) {
|
|
64956
64988
|
|
|
64957
64989
|
"use strict";
|
|
@@ -65019,7 +65051,7 @@ module.exports = function blockCallsUntilComplete(fn) {
|
|
|
65019
65051
|
};
|
|
65020
65052
|
|
|
65021
65053
|
/***/ }),
|
|
65022
|
-
/*
|
|
65054
|
+
/* 678 */
|
|
65023
65055
|
/***/ (function(module, exports, __webpack_require__) {
|
|
65024
65056
|
|
|
65025
65057
|
"use strict";
|
|
@@ -65050,7 +65082,7 @@ module.exports = function createCanvasVideoTrack(dimensions) {
|
|
|
65050
65082
|
};
|
|
65051
65083
|
|
|
65052
65084
|
/***/ }),
|
|
65053
|
-
/*
|
|
65085
|
+
/* 679 */
|
|
65054
65086
|
/***/ (function(module, exports, __webpack_require__) {
|
|
65055
65087
|
|
|
65056
65088
|
"use strict";
|
|
@@ -65103,7 +65135,7 @@ module.exports = (stream, videoDevices) => {
|
|
|
65103
65135
|
};
|
|
65104
65136
|
|
|
65105
65137
|
/***/ }),
|
|
65106
|
-
/*
|
|
65138
|
+
/* 680 */
|
|
65107
65139
|
/***/ (function(module, exports, __webpack_require__) {
|
|
65108
65140
|
|
|
65109
65141
|
"use strict";
|
|
@@ -65123,7 +65155,7 @@ module.exports = error => {
|
|
|
65123
65155
|
};
|
|
65124
65156
|
|
|
65125
65157
|
/***/ }),
|
|
65126
|
-
/*
|
|
65158
|
+
/* 681 */
|
|
65127
65159
|
/***/ (function(module, exports, __webpack_require__) {
|
|
65128
65160
|
|
|
65129
65161
|
"use strict";
|
|
@@ -65134,12 +65166,28 @@ const isNullOrFalse = value => value === null || value === false;
|
|
|
65134
65166
|
module.exports = isNullOrFalse;
|
|
65135
65167
|
|
|
65136
65168
|
/***/ }),
|
|
65137
|
-
/*
|
|
65169
|
+
/* 682 */
|
|
65170
|
+
/***/ (function(module, exports, __webpack_require__) {
|
|
65171
|
+
|
|
65172
|
+
"use strict";
|
|
65173
|
+
|
|
65174
|
+
|
|
65175
|
+
module.exports = properties => {
|
|
65176
|
+
var _properties$videoSour;
|
|
65177
|
+
|
|
65178
|
+
const isCanvas = !!(properties && ((_properties$videoSour = properties.videoSource) == null ? void 0 : _properties$videoSour.canvas));
|
|
65179
|
+
const hasVideoContentHint = !!(properties && 'videoContentHint' in properties); // eslint-disable-next-line no-param-reassign
|
|
65180
|
+
|
|
65181
|
+
if (isCanvas && !hasVideoContentHint) properties.videoContentHint = 'detail';
|
|
65182
|
+
};
|
|
65183
|
+
|
|
65184
|
+
/***/ }),
|
|
65185
|
+
/* 683 */
|
|
65138
65186
|
/***/ (function(module, exports, __webpack_require__) {
|
|
65139
65187
|
|
|
65140
|
-
var baseFindKey = __webpack_require__(
|
|
65188
|
+
var baseFindKey = __webpack_require__(684),
|
|
65141
65189
|
baseForOwn = __webpack_require__(99),
|
|
65142
|
-
baseIteratee = __webpack_require__(
|
|
65190
|
+
baseIteratee = __webpack_require__(34);
|
|
65143
65191
|
|
|
65144
65192
|
/**
|
|
65145
65193
|
* This method is like `_.find` except that it returns the key of the first
|
|
@@ -65184,7 +65232,7 @@ module.exports = findKey;
|
|
|
65184
65232
|
|
|
65185
65233
|
|
|
65186
65234
|
/***/ }),
|
|
65187
|
-
/*
|
|
65235
|
+
/* 684 */
|
|
65188
65236
|
/***/ (function(module, exports) {
|
|
65189
65237
|
|
|
65190
65238
|
/**
|
|
@@ -65213,7 +65261,7 @@ module.exports = baseFindKey;
|
|
|
65213
65261
|
|
|
65214
65262
|
|
|
65215
65263
|
/***/ }),
|
|
65216
|
-
/*
|
|
65264
|
+
/* 685 */
|
|
65217
65265
|
/***/ (function(module, exports, __webpack_require__) {
|
|
65218
65266
|
|
|
65219
65267
|
"use strict";
|
|
@@ -65288,7 +65336,7 @@ module.exports = (_ref) => {
|
|
|
65288
65336
|
/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(0)))
|
|
65289
65337
|
|
|
65290
65338
|
/***/ }),
|
|
65291
|
-
/*
|
|
65339
|
+
/* 686 */
|
|
65292
65340
|
/***/ (function(module, exports, __webpack_require__) {
|
|
65293
65341
|
|
|
65294
65342
|
"use strict";
|
|
@@ -65329,7 +65377,7 @@ module.exports = (_ref) => {
|
|
|
65329
65377
|
};
|
|
65330
65378
|
|
|
65331
65379
|
/***/ }),
|
|
65332
|
-
/*
|
|
65380
|
+
/* 687 */
|
|
65333
65381
|
/***/ (function(module, exports, __webpack_require__) {
|
|
65334
65382
|
|
|
65335
65383
|
"use strict";
|
|
@@ -65360,7 +65408,7 @@ module.exports = function convertAnvilErrorCode(code) {
|
|
|
65360
65408
|
};
|
|
65361
65409
|
|
|
65362
65410
|
/***/ }),
|
|
65363
|
-
/*
|
|
65411
|
+
/* 688 */
|
|
65364
65412
|
/***/ (function(module, exports, __webpack_require__) {
|
|
65365
65413
|
|
|
65366
65414
|
"use strict";
|
|
@@ -65398,7 +65446,7 @@ module.exports = {
|
|
|
65398
65446
|
};
|
|
65399
65447
|
|
|
65400
65448
|
/***/ }),
|
|
65401
|
-
/*
|
|
65449
|
+
/* 689 */
|
|
65402
65450
|
/***/ (function(module, exports, __webpack_require__) {
|
|
65403
65451
|
|
|
65404
65452
|
"use strict";
|
|
@@ -65421,7 +65469,7 @@ var _uuid = _interopRequireDefault(__webpack_require__(19));
|
|
|
65421
65469
|
|
|
65422
65470
|
var _serializeMessage = _interopRequireDefault(__webpack_require__(312));
|
|
65423
65471
|
|
|
65424
|
-
var _defaultRumorSocket = _interopRequireDefault(__webpack_require__(
|
|
65472
|
+
var _defaultRumorSocket = _interopRequireDefault(__webpack_require__(690));
|
|
65425
65473
|
|
|
65426
65474
|
// @todo enable the following disabled rules see OPENTOK-31136 for more info
|
|
65427
65475
|
|
|
@@ -65441,7 +65489,7 @@ function RaptorSocketFactory(deps) {
|
|
|
65441
65489
|
|
|
65442
65490
|
const hasIceRestartsCapability = deps.hasIceRestartsCapability || __webpack_require__(311);
|
|
65443
65491
|
|
|
65444
|
-
const hasRenegotiationCapability = deps.hasRenegotiationCapability || __webpack_require__(
|
|
65492
|
+
const hasRenegotiationCapability = deps.hasRenegotiationCapability || __webpack_require__(706);
|
|
65445
65493
|
|
|
65446
65494
|
const logging = deps.logging || __webpack_require__(1)('RaptorSocket');
|
|
65447
65495
|
|
|
@@ -65453,7 +65501,7 @@ function RaptorSocketFactory(deps) {
|
|
|
65453
65501
|
|
|
65454
65502
|
const Signal = deps.Signal || __webpack_require__(316);
|
|
65455
65503
|
|
|
65456
|
-
const SignalError = deps.SignalError || __webpack_require__(
|
|
65504
|
+
const SignalError = deps.SignalError || __webpack_require__(711); // The Dispatcher bit is purely to make testing simpler, it defaults to a new Dispatcher so in
|
|
65457
65505
|
// normal operation you would omit it.
|
|
65458
65506
|
|
|
65459
65507
|
|
|
@@ -65924,7 +65972,7 @@ function RaptorSocketFactory(deps) {
|
|
|
65924
65972
|
/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(0)))
|
|
65925
65973
|
|
|
65926
65974
|
/***/ }),
|
|
65927
|
-
/*
|
|
65975
|
+
/* 690 */
|
|
65928
65976
|
/***/ (function(module, exports, __webpack_require__) {
|
|
65929
65977
|
|
|
65930
65978
|
"use strict";
|
|
@@ -65937,15 +65985,15 @@ exports.default = defaultRumorSocket;
|
|
|
65937
65985
|
|
|
65938
65986
|
var _events = _interopRequireDefault(__webpack_require__(41));
|
|
65939
65987
|
|
|
65940
|
-
var _createCounter = _interopRequireDefault(__webpack_require__(
|
|
65988
|
+
var _createCounter = _interopRequireDefault(__webpack_require__(691));
|
|
65941
65989
|
|
|
65942
65990
|
var _log = _interopRequireDefault(__webpack_require__(1));
|
|
65943
65991
|
|
|
65944
|
-
var _ReconnectableSocket = _interopRequireDefault(__webpack_require__(
|
|
65992
|
+
var _ReconnectableSocket = _interopRequireDefault(__webpack_require__(692));
|
|
65945
65993
|
|
|
65946
|
-
var _RumorSocket = _interopRequireDefault(__webpack_require__(
|
|
65994
|
+
var _RumorSocket = _interopRequireDefault(__webpack_require__(697));
|
|
65947
65995
|
|
|
65948
|
-
var _WebSocket = _interopRequireDefault(__webpack_require__(
|
|
65996
|
+
var _WebSocket = _interopRequireDefault(__webpack_require__(702));
|
|
65949
65997
|
|
|
65950
65998
|
/* eslint-disable no-underscore-dangle */
|
|
65951
65999
|
function defaultRumorSocket(_temp) {
|
|
@@ -65970,7 +66018,7 @@ function defaultRumorSocket(_temp) {
|
|
|
65970
66018
|
}
|
|
65971
66019
|
|
|
65972
66020
|
/***/ }),
|
|
65973
|
-
/*
|
|
66021
|
+
/* 691 */
|
|
65974
66022
|
/***/ (function(module, exports, __webpack_require__) {
|
|
65975
66023
|
|
|
65976
66024
|
"use strict";
|
|
@@ -65988,7 +66036,7 @@ function createCounter() {
|
|
|
65988
66036
|
}
|
|
65989
66037
|
|
|
65990
66038
|
/***/ }),
|
|
65991
|
-
/*
|
|
66039
|
+
/* 692 */
|
|
65992
66040
|
/***/ (function(module, exports, __webpack_require__) {
|
|
65993
66041
|
|
|
65994
66042
|
"use strict";
|
|
@@ -66015,13 +66063,13 @@ var _logEvents = _interopRequireDefault(__webpack_require__(313));
|
|
|
66015
66063
|
|
|
66016
66064
|
var _socketCloseCodes = __webpack_require__(76);
|
|
66017
66065
|
|
|
66018
|
-
var _Timer = _interopRequireDefault(__webpack_require__(
|
|
66066
|
+
var _Timer = _interopRequireDefault(__webpack_require__(693));
|
|
66019
66067
|
|
|
66020
66068
|
var _eventHelper = _interopRequireDefault(__webpack_require__(62));
|
|
66021
66069
|
|
|
66022
|
-
var _createReadyStateMachine = _interopRequireDefault(__webpack_require__(
|
|
66070
|
+
var _createReadyStateMachine = _interopRequireDefault(__webpack_require__(694));
|
|
66023
66071
|
|
|
66024
|
-
var _drainWebSocket = _interopRequireDefault(__webpack_require__(
|
|
66072
|
+
var _drainWebSocket = _interopRequireDefault(__webpack_require__(696));
|
|
66025
66073
|
|
|
66026
66074
|
/* eslint-disable no-underscore-dangle, no-constant-condition */
|
|
66027
66075
|
const removeReturnVal = fn => function () {
|
|
@@ -66471,7 +66519,7 @@ var _default = (_ref) => {
|
|
|
66471
66519
|
exports.default = _default;
|
|
66472
66520
|
|
|
66473
66521
|
/***/ }),
|
|
66474
|
-
/*
|
|
66522
|
+
/* 693 */
|
|
66475
66523
|
/***/ (function(module, exports, __webpack_require__) {
|
|
66476
66524
|
|
|
66477
66525
|
"use strict";
|
|
@@ -66538,7 +66586,7 @@ let Timer = /*#__PURE__*/function () {
|
|
|
66538
66586
|
exports.default = Timer;
|
|
66539
66587
|
|
|
66540
66588
|
/***/ }),
|
|
66541
|
-
/*
|
|
66589
|
+
/* 694 */
|
|
66542
66590
|
/***/ (function(module, exports, __webpack_require__) {
|
|
66543
66591
|
|
|
66544
66592
|
"use strict";
|
|
@@ -66551,7 +66599,7 @@ exports.default = void 0;
|
|
|
66551
66599
|
|
|
66552
66600
|
var _javascriptStateMachine = _interopRequireDefault(__webpack_require__(305));
|
|
66553
66601
|
|
|
66554
|
-
var _elapsed = _interopRequireDefault(__webpack_require__(
|
|
66602
|
+
var _elapsed = _interopRequireDefault(__webpack_require__(695));
|
|
66555
66603
|
|
|
66556
66604
|
var _socketCloseCodes = __webpack_require__(76);
|
|
66557
66605
|
|
|
@@ -66618,7 +66666,7 @@ var _default = (_ref) => {
|
|
|
66618
66666
|
exports.default = _default;
|
|
66619
66667
|
|
|
66620
66668
|
/***/ }),
|
|
66621
|
-
/*
|
|
66669
|
+
/* 695 */
|
|
66622
66670
|
/***/ (function(module, exports, __webpack_require__) {
|
|
66623
66671
|
|
|
66624
66672
|
"use strict";
|
|
@@ -66633,7 +66681,7 @@ module.exports = timeInMilliseconds => {
|
|
|
66633
66681
|
};
|
|
66634
66682
|
|
|
66635
66683
|
/***/ }),
|
|
66636
|
-
/*
|
|
66684
|
+
/* 696 */
|
|
66637
66685
|
/***/ (function(module, exports, __webpack_require__) {
|
|
66638
66686
|
|
|
66639
66687
|
"use strict";
|
|
@@ -66697,7 +66745,7 @@ var _default = /*#__PURE__*/function () {
|
|
|
66697
66745
|
exports.default = _default;
|
|
66698
66746
|
|
|
66699
66747
|
/***/ }),
|
|
66700
|
-
/*
|
|
66748
|
+
/* 697 */
|
|
66701
66749
|
/***/ (function(module, exports, __webpack_require__) {
|
|
66702
66750
|
|
|
66703
66751
|
"use strict";
|
|
@@ -66722,11 +66770,11 @@ var _uuid = _interopRequireDefault(__webpack_require__(19));
|
|
|
66722
66770
|
|
|
66723
66771
|
var _logEvents = _interopRequireDefault(__webpack_require__(313));
|
|
66724
66772
|
|
|
66725
|
-
var _RumorMessage = _interopRequireDefault(__webpack_require__(
|
|
66773
|
+
var _RumorMessage = _interopRequireDefault(__webpack_require__(698));
|
|
66726
66774
|
|
|
66727
66775
|
var RumorMessageTypes = _interopRequireWildcard(__webpack_require__(171));
|
|
66728
66776
|
|
|
66729
|
-
var _SocketError = _interopRequireDefault(__webpack_require__(
|
|
66777
|
+
var _SocketError = _interopRequireDefault(__webpack_require__(701));
|
|
66730
66778
|
|
|
66731
66779
|
var _socketCloseCodes = __webpack_require__(76);
|
|
66732
66780
|
|
|
@@ -67054,7 +67102,7 @@ var _default = (_ref) => {
|
|
|
67054
67102
|
exports.default = _default;
|
|
67055
67103
|
|
|
67056
67104
|
/***/ }),
|
|
67057
|
-
/*
|
|
67105
|
+
/* 698 */
|
|
67058
67106
|
/***/ (function(module, exports, __webpack_require__) {
|
|
67059
67107
|
|
|
67060
67108
|
"use strict";
|
|
@@ -67071,7 +67119,7 @@ var _defineProperty2 = _interopRequireDefault(__webpack_require__(18));
|
|
|
67071
67119
|
|
|
67072
67120
|
var _uuid = _interopRequireDefault(__webpack_require__(19));
|
|
67073
67121
|
|
|
67074
|
-
var _encoding = __webpack_require__(
|
|
67122
|
+
var _encoding = __webpack_require__(699);
|
|
67075
67123
|
|
|
67076
67124
|
var RumorMessageTypes = _interopRequireWildcard(__webpack_require__(171));
|
|
67077
67125
|
|
|
@@ -67296,7 +67344,7 @@ let RumorMessage = /*#__PURE__*/function () {
|
|
|
67296
67344
|
exports.default = RumorMessage;
|
|
67297
67345
|
|
|
67298
67346
|
/***/ }),
|
|
67299
|
-
/*
|
|
67347
|
+
/* 699 */
|
|
67300
67348
|
/***/ (function(module, exports, __webpack_require__) {
|
|
67301
67349
|
|
|
67302
67350
|
"use strict";
|
|
@@ -67307,7 +67355,7 @@ var _interopRequireWildcard = __webpack_require__(108);
|
|
|
67307
67355
|
exports.__esModule = true;
|
|
67308
67356
|
exports.TextDecoder = exports.TextEncoder = void 0;
|
|
67309
67357
|
|
|
67310
|
-
var TextEncoding = _interopRequireWildcard(__webpack_require__(
|
|
67358
|
+
var TextEncoding = _interopRequireWildcard(__webpack_require__(700));
|
|
67311
67359
|
|
|
67312
67360
|
// Unfortunately it looks like the text-encoding module always returns its implementations of
|
|
67313
67361
|
// TextEncoder and TextDecoder, so we wrap it here to expose the global (window) ones, if available.
|
|
@@ -67317,7 +67365,7 @@ const TextDecoder = (typeof window !== undefined ? window : global).TextDecoder
|
|
|
67317
67365
|
exports.TextDecoder = TextDecoder;
|
|
67318
67366
|
|
|
67319
67367
|
/***/ }),
|
|
67320
|
-
/*
|
|
67368
|
+
/* 700 */
|
|
67321
67369
|
/***/ (function(__webpack_module__, __webpack_exports__, __webpack_require__) {
|
|
67322
67370
|
|
|
67323
67371
|
"use strict";
|
|
@@ -67992,7 +68040,7 @@ function UTF8Encoder(options) {
|
|
|
67992
68040
|
|
|
67993
68041
|
|
|
67994
68042
|
/***/ }),
|
|
67995
|
-
/*
|
|
68043
|
+
/* 701 */
|
|
67996
68044
|
/***/ (function(module, exports, __webpack_require__) {
|
|
67997
68045
|
|
|
67998
68046
|
"use strict";
|
|
@@ -68027,7 +68075,7 @@ let SocketError = function SocketError(code, message) {
|
|
|
68027
68075
|
exports.default = SocketError;
|
|
68028
68076
|
|
|
68029
68077
|
/***/ }),
|
|
68030
|
-
/*
|
|
68078
|
+
/* 702 */
|
|
68031
68079
|
/***/ (function(module, exports, __webpack_require__) {
|
|
68032
68080
|
|
|
68033
68081
|
"use strict";
|
|
@@ -68038,7 +68086,7 @@ var _interopRequireDefault = __webpack_require__(3);
|
|
|
68038
68086
|
exports.__esModule = true;
|
|
68039
68087
|
exports.default = void 0;
|
|
68040
68088
|
|
|
68041
|
-
var _ws = _interopRequireDefault(__webpack_require__(
|
|
68089
|
+
var _ws = _interopRequireDefault(__webpack_require__(703));
|
|
68042
68090
|
|
|
68043
68091
|
var _default = (() => {
|
|
68044
68092
|
if ((typeof window !== undefined ? window : global).WebSocket) {
|
|
@@ -68051,7 +68099,7 @@ var _default = (() => {
|
|
|
68051
68099
|
exports.default = _default;
|
|
68052
68100
|
|
|
68053
68101
|
/***/ }),
|
|
68054
|
-
/*
|
|
68102
|
+
/* 703 */
|
|
68055
68103
|
/***/ (function(module, exports, __webpack_require__) {
|
|
68056
68104
|
|
|
68057
68105
|
"use strict";
|
|
@@ -68066,13 +68114,13 @@ module.exports = function () {
|
|
|
68066
68114
|
|
|
68067
68115
|
|
|
68068
68116
|
/***/ }),
|
|
68069
|
-
/*
|
|
68117
|
+
/* 704 */
|
|
68070
68118
|
/***/ (function(module, exports, __webpack_require__) {
|
|
68071
68119
|
|
|
68072
68120
|
"use strict";
|
|
68073
68121
|
|
|
68074
68122
|
|
|
68075
|
-
const deserializeMessage = __webpack_require__(
|
|
68123
|
+
const deserializeMessage = __webpack_require__(705);
|
|
68076
68124
|
|
|
68077
68125
|
module.exports = function unboxFromRumorMessage(rumorMessage) {
|
|
68078
68126
|
const message = deserializeMessage(rumorMessage.data);
|
|
@@ -68082,7 +68130,7 @@ module.exports = function unboxFromRumorMessage(rumorMessage) {
|
|
|
68082
68130
|
};
|
|
68083
68131
|
|
|
68084
68132
|
/***/ }),
|
|
68085
|
-
/*
|
|
68133
|
+
/* 705 */
|
|
68086
68134
|
/***/ (function(module, exports, __webpack_require__) {
|
|
68087
68135
|
|
|
68088
68136
|
"use strict";
|
|
@@ -68137,7 +68185,7 @@ module.exports = function deserializeMessage(msg) {
|
|
|
68137
68185
|
};
|
|
68138
68186
|
|
|
68139
68187
|
/***/ }),
|
|
68140
|
-
/*
|
|
68188
|
+
/* 706 */
|
|
68141
68189
|
/***/ (function(module, exports, __webpack_require__) {
|
|
68142
68190
|
|
|
68143
68191
|
"use strict";
|
|
@@ -68151,7 +68199,7 @@ const hasOpenTokSupport = __webpack_require__(60).once;
|
|
|
68151
68199
|
module.exports = () => hasOpenTokSupport() && ['Chrome', 'Firefox', 'Safari'].indexOf(name) > -1;
|
|
68152
68200
|
|
|
68153
68201
|
/***/ }),
|
|
68154
|
-
/*
|
|
68202
|
+
/* 707 */
|
|
68155
68203
|
/***/ (function(module, exports, __webpack_require__) {
|
|
68156
68204
|
|
|
68157
68205
|
"use strict";
|
|
@@ -68172,7 +68220,7 @@ const hasOpenTokSupport = __webpack_require__(60).once; // TODO Remove all trans
|
|
|
68172
68220
|
module.exports = () => hasOpenTokSupport() && (env.name === 'Chrome' || env.name === 'Firefox' || env.name === 'Node' || env.name === 'Safari' || env.name === 'Edge');
|
|
68173
68221
|
|
|
68174
68222
|
/***/ }),
|
|
68175
|
-
/*
|
|
68223
|
+
/* 708 */
|
|
68176
68224
|
/***/ (function(module, exports, __webpack_require__) {
|
|
68177
68225
|
|
|
68178
68226
|
"use strict";
|
|
@@ -68187,7 +68235,7 @@ const hasOpenTokSupport = __webpack_require__(60).once; // Indicates if the brow
|
|
|
68187
68235
|
module.exports = () => hasOpenTokSupport();
|
|
68188
68236
|
|
|
68189
68237
|
/***/ }),
|
|
68190
|
-
/*
|
|
68238
|
+
/* 709 */
|
|
68191
68239
|
/***/ (function(module, exports, __webpack_require__) {
|
|
68192
68240
|
|
|
68193
68241
|
"use strict";
|
|
@@ -68196,7 +68244,7 @@ module.exports = () => hasOpenTokSupport();
|
|
|
68196
68244
|
module.exports = 'DTLS_SRTP';
|
|
68197
68245
|
|
|
68198
68246
|
/***/ }),
|
|
68199
|
-
/*
|
|
68247
|
+
/* 710 */
|
|
68200
68248
|
/***/ (function(module, exports, __webpack_require__) {
|
|
68201
68249
|
|
|
68202
68250
|
"use strict";
|
|
@@ -68210,7 +68258,7 @@ module.exports = function capabilitiesFromHash(_ref) {
|
|
|
68210
68258
|
};
|
|
68211
68259
|
|
|
68212
68260
|
/***/ }),
|
|
68213
|
-
/*
|
|
68261
|
+
/* 711 */
|
|
68214
68262
|
/***/ (function(module, exports, __webpack_require__) {
|
|
68215
68263
|
|
|
68216
68264
|
"use strict";
|
|
@@ -68224,7 +68272,7 @@ module.exports = function SignalError(code, message) {
|
|
|
68224
68272
|
};
|
|
68225
68273
|
|
|
68226
68274
|
/***/ }),
|
|
68227
|
-
/*
|
|
68275
|
+
/* 712 */
|
|
68228
68276
|
/***/ (function(module, exports, __webpack_require__) {
|
|
68229
68277
|
|
|
68230
68278
|
"use strict";
|
|
@@ -68273,7 +68321,7 @@ const DelayedEventQueue = function DelayedEventQueue(eventDispatcher) {
|
|
|
68273
68321
|
module.exports = DelayedEventQueue;
|
|
68274
68322
|
|
|
68275
68323
|
/***/ }),
|
|
68276
|
-
/*
|
|
68324
|
+
/* 713 */
|
|
68277
68325
|
/***/ (function(module, exports, __webpack_require__) {
|
|
68278
68326
|
|
|
68279
68327
|
"use strict";
|
|
@@ -68295,9 +68343,9 @@ const SessionInfo = __webpack_require__(141);
|
|
|
68295
68343
|
|
|
68296
68344
|
const ExceptionCodes = __webpack_require__(8);
|
|
68297
68345
|
|
|
68298
|
-
const mapErrorCodeToName = __webpack_require__(
|
|
68346
|
+
const mapErrorCodeToName = __webpack_require__(714);
|
|
68299
68347
|
|
|
68300
|
-
const mapStatusCodeToErrorCode = __webpack_require__(
|
|
68348
|
+
const mapStatusCodeToErrorCode = __webpack_require__(715);
|
|
68301
68349
|
|
|
68302
68350
|
const promiseEndeavour = __webpack_require__(289).default;
|
|
68303
68351
|
|
|
@@ -68446,7 +68494,7 @@ function getSessionInfoFactory(_temp) {
|
|
|
68446
68494
|
module.exports = getSessionInfoFactory;
|
|
68447
68495
|
|
|
68448
68496
|
/***/ }),
|
|
68449
|
-
/*
|
|
68497
|
+
/* 714 */
|
|
68450
68498
|
/***/ (function(module, exports, __webpack_require__) {
|
|
68451
68499
|
|
|
68452
68500
|
"use strict";
|
|
@@ -68482,7 +68530,7 @@ function mapErrorCodeToName(code) {
|
|
|
68482
68530
|
module.exports = mapErrorCodeToName;
|
|
68483
68531
|
|
|
68484
68532
|
/***/ }),
|
|
68485
|
-
/*
|
|
68533
|
+
/* 715 */
|
|
68486
68534
|
/***/ (function(module, exports, __webpack_require__) {
|
|
68487
68535
|
|
|
68488
68536
|
"use strict";
|
|
@@ -68510,7 +68558,7 @@ function mapStatusCodeToErrorCode(code) {
|
|
|
68510
68558
|
module.exports = mapStatusCodeToErrorCode;
|
|
68511
68559
|
|
|
68512
68560
|
/***/ }),
|
|
68513
|
-
/*
|
|
68561
|
+
/* 716 */
|
|
68514
68562
|
/***/ (function(module, exports, __webpack_require__) {
|
|
68515
68563
|
|
|
68516
68564
|
"use strict";
|
|
@@ -68624,7 +68672,7 @@ module.exports = function initSessionFactory(deps) {
|
|
|
68624
68672
|
};
|
|
68625
68673
|
|
|
68626
68674
|
/***/ }),
|
|
68627
|
-
/*
|
|
68675
|
+
/* 717 */
|
|
68628
68676
|
/***/ (function(module, exports, __webpack_require__) {
|
|
68629
68677
|
|
|
68630
68678
|
"use strict";
|
|
@@ -68636,7 +68684,7 @@ var _regenerator = _interopRequireDefault(__webpack_require__(12));
|
|
|
68636
68684
|
|
|
68637
68685
|
var _asyncToGenerator2 = _interopRequireDefault(__webpack_require__(13));
|
|
68638
68686
|
|
|
68639
|
-
const difference = __webpack_require__(
|
|
68687
|
+
const difference = __webpack_require__(718);
|
|
68640
68688
|
|
|
68641
68689
|
const uniq = __webpack_require__(273);
|
|
68642
68690
|
|
|
@@ -68821,10 +68869,10 @@ const getSupportedCodecs = /*#__PURE__*/function () {
|
|
|
68821
68869
|
module.exports = getSupportedCodecs;
|
|
68822
68870
|
|
|
68823
68871
|
/***/ }),
|
|
68824
|
-
/*
|
|
68872
|
+
/* 718 */
|
|
68825
68873
|
/***/ (function(module, exports, __webpack_require__) {
|
|
68826
68874
|
|
|
68827
|
-
var baseDifference = __webpack_require__(
|
|
68875
|
+
var baseDifference = __webpack_require__(719),
|
|
68828
68876
|
baseFlatten = __webpack_require__(237),
|
|
68829
68877
|
baseRest = __webpack_require__(87),
|
|
68830
68878
|
isArrayLikeObject = __webpack_require__(129);
|
|
@@ -68860,13 +68908,13 @@ module.exports = difference;
|
|
|
68860
68908
|
|
|
68861
68909
|
|
|
68862
68910
|
/***/ }),
|
|
68863
|
-
/*
|
|
68911
|
+
/* 719 */
|
|
68864
68912
|
/***/ (function(module, exports, __webpack_require__) {
|
|
68865
68913
|
|
|
68866
68914
|
var SetCache = __webpack_require__(92),
|
|
68867
68915
|
arrayIncludes = __webpack_require__(93),
|
|
68868
68916
|
arrayIncludesWith = __webpack_require__(128),
|
|
68869
|
-
arrayMap = __webpack_require__(
|
|
68917
|
+
arrayMap = __webpack_require__(33),
|
|
68870
68918
|
baseUnary = __webpack_require__(67),
|
|
68871
68919
|
cacheHas = __webpack_require__(94);
|
|
68872
68920
|
|
|
@@ -68933,7 +68981,7 @@ module.exports = baseDifference;
|
|
|
68933
68981
|
|
|
68934
68982
|
|
|
68935
68983
|
/***/ }),
|
|
68936
|
-
/*
|
|
68984
|
+
/* 720 */
|
|
68937
68985
|
/***/ (function(module, exports, __webpack_require__) {
|
|
68938
68986
|
|
|
68939
68987
|
"use strict";
|
|
@@ -68985,7 +69033,7 @@ module.exports = function getDevices(callback) {
|
|
|
68985
69033
|
};
|
|
68986
69034
|
|
|
68987
69035
|
/***/ }),
|
|
68988
|
-
/*
|
|
69036
|
+
/* 721 */
|
|
68989
69037
|
/***/ (function(module, exports, __webpack_require__) {
|
|
68990
69038
|
|
|
68991
69039
|
"use strict";
|
|
@@ -69088,7 +69136,7 @@ module.exports = function (deps) {
|
|
|
69088
69136
|
};
|
|
69089
69137
|
|
|
69090
69138
|
/***/ }),
|
|
69091
|
-
/*
|
|
69139
|
+
/* 722 */
|
|
69092
69140
|
/***/ (function(module, exports, __webpack_require__) {
|
|
69093
69141
|
|
|
69094
69142
|
"use strict";
|
|
@@ -69100,7 +69148,7 @@ var _regenerator = _interopRequireDefault(__webpack_require__(12));
|
|
|
69100
69148
|
|
|
69101
69149
|
var _asyncToGenerator2 = _interopRequireDefault(__webpack_require__(13));
|
|
69102
69150
|
|
|
69103
|
-
const audioOutputDevicesChangeHandler = __webpack_require__(
|
|
69151
|
+
const audioOutputDevicesChangeHandler = __webpack_require__(723)();
|
|
69104
69152
|
|
|
69105
69153
|
const _require = __webpack_require__(23)(),
|
|
69106
69154
|
hasAudioOutputApiSupport = _require.hasAudioOutputApiSupport,
|
|
@@ -69140,7 +69188,7 @@ module.exports = () => {
|
|
|
69140
69188
|
};
|
|
69141
69189
|
|
|
69142
69190
|
/***/ }),
|
|
69143
|
-
/*
|
|
69191
|
+
/* 723 */
|
|
69144
69192
|
/***/ (function(module, exports, __webpack_require__) {
|
|
69145
69193
|
|
|
69146
69194
|
"use strict";
|
|
@@ -69234,6 +69282,40 @@ module.exports = function (deps) {
|
|
|
69234
69282
|
return audioOutputDevicesChangeHandler;
|
|
69235
69283
|
};
|
|
69236
69284
|
|
|
69285
|
+
/***/ }),
|
|
69286
|
+
/* 724 */
|
|
69287
|
+
/***/ (function(module, exports, __webpack_require__) {
|
|
69288
|
+
|
|
69289
|
+
"use strict";
|
|
69290
|
+
|
|
69291
|
+
|
|
69292
|
+
/* eslint-disable global-require */
|
|
69293
|
+
const AnalyticsHelper = __webpack_require__(27);
|
|
69294
|
+
|
|
69295
|
+
module.exports = function (deps) {
|
|
69296
|
+
if (deps === void 0) {
|
|
69297
|
+
deps = {};
|
|
69298
|
+
}
|
|
69299
|
+
|
|
69300
|
+
const env = deps.env || __webpack_require__(2);
|
|
69301
|
+
|
|
69302
|
+
const analytics = deps.analytics || new AnalyticsHelper();
|
|
69303
|
+
analytics.logEvent({
|
|
69304
|
+
action: 'UserAgentParsing',
|
|
69305
|
+
variation: 'Attempt',
|
|
69306
|
+
payload: {
|
|
69307
|
+
userAgent: env.userAgent
|
|
69308
|
+
}
|
|
69309
|
+
});
|
|
69310
|
+
analytics.logEvent({
|
|
69311
|
+
action: 'UserAgentParsing',
|
|
69312
|
+
variation: env.error ? 'Failure' : 'Success',
|
|
69313
|
+
payload: {
|
|
69314
|
+
userAgent: env.userAgent
|
|
69315
|
+
}
|
|
69316
|
+
});
|
|
69317
|
+
};
|
|
69318
|
+
|
|
69237
69319
|
/***/ })
|
|
69238
69320
|
/******/ ]);
|
|
69239
69321
|
});
|