@opentok/client 2.21.3 → 2.21.4
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 +404 -414
- 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.4 bae71ec34
|
|
3
3
|
*
|
|
4
4
|
* Copyright (c) 2010-2021 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: Fri, 17 Dec 2021 14:09:51 GMT
|
|
9
9
|
*/
|
|
10
10
|
|
|
11
11
|
(function webpackUniversalModuleDefinition(root, factory) {
|
|
@@ -1393,8 +1393,6 @@ const isiOS = __webpack_require__(530);
|
|
|
1393
1393
|
|
|
1394
1394
|
const iOSVersion = __webpack_require__(531);
|
|
1395
1395
|
|
|
1396
|
-
const getVersionFromUserAgent = __webpack_require__(532);
|
|
1397
|
-
|
|
1398
1396
|
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;
|
|
1399
1397
|
/* We must use global.process here as process is a variable injected
|
|
1400
1398
|
* by webpack and its value is fixed at build time, not runtime.
|
|
@@ -1413,15 +1411,22 @@ if (typeof ((_global2 = (typeof window !== undefined ? window : global)) == null
|
|
|
1413
1411
|
if (env.userAgent.indexOf('opera') > -1 || env.userAgent.indexOf('opr/') > -1) {
|
|
1414
1412
|
env.name = 'Opera';
|
|
1415
1413
|
env.isOpera = true;
|
|
1416
|
-
|
|
1414
|
+
|
|
1415
|
+
if (/opr\/([0-9]{1,}[.0-9]{0,})/.exec(env.userAgent) !== null) {
|
|
1416
|
+
env.version = parseFloat(RegExp.$1);
|
|
1417
|
+
}
|
|
1417
1418
|
} else if (env.userAgent.indexOf('firefox') > -1) {
|
|
1418
1419
|
env.name = 'Firefox';
|
|
1419
1420
|
env.isFirefox = true;
|
|
1420
|
-
|
|
1421
|
+
|
|
1422
|
+
if (/firefox\/([0-9]{1,}[.0-9]{0,})/.exec(env.userAgent) !== null) {
|
|
1423
|
+
env.version = parseFloat(RegExp.$1);
|
|
1424
|
+
}
|
|
1421
1425
|
} else if (env.userAgent.match(/edge?\/(\d+)(?:\.\d+)+$/)) {
|
|
1422
1426
|
env.name = 'Edge';
|
|
1423
1427
|
env.isEdge = true;
|
|
1424
|
-
|
|
1428
|
+
const version = RegExp.$1;
|
|
1429
|
+
env.version = parseInt(version, 10);
|
|
1425
1430
|
} else if (env.userAgent.indexOf('chrome') > -1) {
|
|
1426
1431
|
env.name = 'Chrome';
|
|
1427
1432
|
env.isElectron = isElectron;
|
|
@@ -1430,7 +1435,9 @@ if (typeof ((_global2 = (typeof window !== undefined ? window : global)) == null
|
|
|
1430
1435
|
env.isChrome = true;
|
|
1431
1436
|
}
|
|
1432
1437
|
|
|
1433
|
-
|
|
1438
|
+
if (/chrome\/([0-9]{1,}[.0-9]{0,})/.exec(env.userAgent) !== null) {
|
|
1439
|
+
env.version = parseFloat(RegExp.$1);
|
|
1440
|
+
}
|
|
1434
1441
|
} else if ((typeof window !== undefined ? window : global).navigator.vendor && (typeof window !== undefined ? window : global).navigator.vendor.toLowerCase().indexOf('apple') > -1) {
|
|
1435
1442
|
env.name = 'Safari';
|
|
1436
1443
|
env.isSafari = true;
|
|
@@ -1440,7 +1447,15 @@ if (typeof ((_global2 = (typeof window !== undefined ? window : global)) == null
|
|
|
1440
1447
|
env.iOSVersion = iOSVersion();
|
|
1441
1448
|
}
|
|
1442
1449
|
|
|
1443
|
-
|
|
1450
|
+
if (/version\/([0-9]{1,}[.0-9]{0,})/.exec(env.userAgent) !== null) {
|
|
1451
|
+
env.version = parseFloat(RegExp.$1);
|
|
1452
|
+
} else if (/fxios\/([0-9]{1,}[.0-9]{0,})/.exec(env.userAgent) !== null) {
|
|
1453
|
+
// This gets the version from Firefox in iOS
|
|
1454
|
+
env.version = parseFloat(RegExp.$1);
|
|
1455
|
+
} else if (/crios\/([0-9]{1,}[.0-9]{0,})/.exec(env.userAgent) !== null) {
|
|
1456
|
+
// This gets the version from Chrome in iOS
|
|
1457
|
+
env.version = parseFloat(RegExp.$1);
|
|
1458
|
+
}
|
|
1444
1459
|
} else if (env.userAgent.indexOf('applewebkit') > -1) {
|
|
1445
1460
|
// From https://stackoverflow.com/questions/4460205/detect-ipad-iphone-webview-via-javascript
|
|
1446
1461
|
if (env.userAgent.indexOf('version') === -1) {
|
|
@@ -1679,10 +1694,10 @@ OTHelpers.logging = log('OT.$');
|
|
|
1679
1694
|
OTHelpers.ElementCollection = __webpack_require__(246);
|
|
1680
1695
|
OTHelpers.env = __webpack_require__(3);
|
|
1681
1696
|
OTHelpers.ajax = __webpack_require__(244);
|
|
1682
|
-
OTHelpers.statable = __webpack_require__(
|
|
1697
|
+
OTHelpers.statable = __webpack_require__(537);
|
|
1683
1698
|
OTHelpers.Analytics = __webpack_require__(243);
|
|
1684
1699
|
OTHelpers.Collection = __webpack_require__(248);
|
|
1685
|
-
OTHelpers.domExtras = __webpack_require__(
|
|
1700
|
+
OTHelpers.domExtras = __webpack_require__(538);
|
|
1686
1701
|
OTHelpers.Error = __webpack_require__(250);
|
|
1687
1702
|
setDeprecatedProperty(OTHelpers, 'useLogHelpers', {
|
|
1688
1703
|
value(mixin) {
|
|
@@ -2364,7 +2379,7 @@ module.exports = function otErrorFactory(deps) {
|
|
|
2364
2379
|
/* 12 */
|
|
2365
2380
|
/***/ (function(module, exports, __webpack_require__) {
|
|
2366
2381
|
|
|
2367
|
-
module.exports = __webpack_require__(
|
|
2382
|
+
module.exports = __webpack_require__(599);
|
|
2368
2383
|
|
|
2369
2384
|
|
|
2370
2385
|
/***/ }),
|
|
@@ -2931,7 +2946,7 @@ const eventing = __webpack_require__(6);
|
|
|
2931
2946
|
|
|
2932
2947
|
const eventNames = __webpack_require__(26);
|
|
2933
2948
|
|
|
2934
|
-
const errorCodeToErrorTitleMap = __webpack_require__(
|
|
2949
|
+
const errorCodeToErrorTitleMap = __webpack_require__(536);
|
|
2935
2950
|
|
|
2936
2951
|
const Events = __webpack_require__(22)();
|
|
2937
2952
|
/**
|
|
@@ -5033,7 +5048,7 @@ module.exports = function (deps) {
|
|
|
5033
5048
|
|
|
5034
5049
|
const getNativeEnumerateDevices = deps.getNativeEnumerateDevices || __webpack_require__(286)();
|
|
5035
5050
|
|
|
5036
|
-
const getNativeMediaDevices = deps.getNativeMediaDevices || __webpack_require__(
|
|
5051
|
+
const getNativeMediaDevices = deps.getNativeMediaDevices || __webpack_require__(623)();
|
|
5037
5052
|
|
|
5038
5053
|
const _ref = deps.currentAudioOutputDevice || __webpack_require__(106),
|
|
5039
5054
|
getCurrentAudioOutputDeviceId = _ref.getCurrentAudioOutputDeviceId;
|
|
@@ -5789,7 +5804,7 @@ const StaticConfig = __webpack_require__(44)();
|
|
|
5789
5804
|
|
|
5790
5805
|
const eventing = __webpack_require__(6);
|
|
5791
5806
|
|
|
5792
|
-
const sanitizeQosData = __webpack_require__(
|
|
5807
|
+
const sanitizeQosData = __webpack_require__(539);
|
|
5793
5808
|
|
|
5794
5809
|
const LOG_VERSION = '2';
|
|
5795
5810
|
|
|
@@ -6765,7 +6780,7 @@ const _require = __webpack_require__(139),
|
|
|
6765
6780
|
/** @type builtInConfig */
|
|
6766
6781
|
|
|
6767
6782
|
|
|
6768
|
-
const builtInConfig = cloneDeep({"version":"v2.21.
|
|
6783
|
+
const builtInConfig = cloneDeep({"version":"v2.21.4","buildHash":"bae71ec34","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"});
|
|
6769
6784
|
const whitelistAllowedRuntimeProperties = pick(['apiURL', 'assetURL', 'cdnURL', 'sessionInfoOverrides', 'loggingURL']);
|
|
6770
6785
|
const liveConfigMap = {
|
|
6771
6786
|
apiUrl: 'apiURL',
|
|
@@ -7031,7 +7046,7 @@ module.exports = function highResolutionNow() {
|
|
|
7031
7046
|
/* 49 */
|
|
7032
7047
|
/***/ (function(module, exports, __webpack_require__) {
|
|
7033
7048
|
|
|
7034
|
-
var before = __webpack_require__(
|
|
7049
|
+
var before = __webpack_require__(572);
|
|
7035
7050
|
|
|
7036
7051
|
/**
|
|
7037
7052
|
* Creates a function that is restricted to invoking `func` once. Repeat calls
|
|
@@ -8201,9 +8216,9 @@ exports.check = function (deps) {
|
|
|
8201
8216
|
|
|
8202
8217
|
const env = deps.env || __webpack_require__(3);
|
|
8203
8218
|
|
|
8204
|
-
const hasGetUserMediaCapability = deps.hasGetUserMediaCapability || __webpack_require__(
|
|
8219
|
+
const hasGetUserMediaCapability = deps.hasGetUserMediaCapability || __webpack_require__(581);
|
|
8205
8220
|
|
|
8206
|
-
const hasPeerConnectionCapability = deps.hasPeerConnectionCapability || __webpack_require__(
|
|
8221
|
+
const hasPeerConnectionCapability = deps.hasPeerConnectionCapability || __webpack_require__(582);
|
|
8207
8222
|
|
|
8208
8223
|
const logging = deps.logging || __webpack_require__(1)('hasOpenTokSupport');
|
|
8209
8224
|
/** @type StaticConfig */
|
|
@@ -8232,7 +8247,7 @@ exports.once = once(() => exports.check());
|
|
|
8232
8247
|
/* 61 */
|
|
8233
8248
|
/***/ (function(module, exports, __webpack_require__) {
|
|
8234
8249
|
|
|
8235
|
-
var createFind = __webpack_require__(
|
|
8250
|
+
var createFind = __webpack_require__(595),
|
|
8236
8251
|
findIndex = __webpack_require__(272);
|
|
8237
8252
|
|
|
8238
8253
|
/**
|
|
@@ -9012,7 +9027,7 @@ module.exports = IntervalRunner;
|
|
|
9012
9027
|
|
|
9013
9028
|
const pick = __webpack_require__(47);
|
|
9014
9029
|
|
|
9015
|
-
const mapValues = __webpack_require__(
|
|
9030
|
+
const mapValues = __webpack_require__(638);
|
|
9016
9031
|
|
|
9017
9032
|
const isObject = __webpack_require__(9);
|
|
9018
9033
|
|
|
@@ -10123,33 +10138,33 @@ module.exports = function PeerConnectionFactory(deps) {
|
|
|
10123
10138
|
deps = {};
|
|
10124
10139
|
}
|
|
10125
10140
|
|
|
10126
|
-
const hasValidPeerConnection = deps.hasValidPeerConnection || __webpack_require__(
|
|
10141
|
+
const hasValidPeerConnection = deps.hasValidPeerConnection || __webpack_require__(598);
|
|
10127
10142
|
|
|
10128
10143
|
const applySdpTransform = deps.applySdpTransform || __webpack_require__(156);
|
|
10129
10144
|
|
|
10130
|
-
const createPeerConnection = deps.createPeerConnection || __webpack_require__(
|
|
10145
|
+
const createPeerConnection = deps.createPeerConnection || __webpack_require__(601);
|
|
10131
10146
|
|
|
10132
10147
|
const env = deps.env || __webpack_require__(3);
|
|
10133
10148
|
|
|
10134
|
-
const sdpTransformDefaults = deps.sdpTransformDefaults || __webpack_require__(
|
|
10149
|
+
const sdpTransformDefaults = deps.sdpTransformDefaults || __webpack_require__(603);
|
|
10135
10150
|
|
|
10136
10151
|
const getStatsAdapter = deps.getStatsAdapter || __webpack_require__(274);
|
|
10137
10152
|
|
|
10138
10153
|
const getRtcStatsReportAdapter = deps.getRtcStatsReportAdapter || __webpack_require__(277);
|
|
10139
10154
|
|
|
10140
|
-
const getSynchronizationSources = deps.getSynchronizationSources || __webpack_require__(
|
|
10155
|
+
const getSynchronizationSources = deps.getSynchronizationSources || __webpack_require__(607);
|
|
10141
10156
|
|
|
10142
|
-
const IceCandidateProcessor = deps.IceCandidateProcessor || __webpack_require__(
|
|
10157
|
+
const IceCandidateProcessor = deps.IceCandidateProcessor || __webpack_require__(608);
|
|
10143
10158
|
|
|
10144
10159
|
const createLog = deps.logging || __webpack_require__(1);
|
|
10145
10160
|
|
|
10146
|
-
const offerProcessor = deps.offerProcessor || __webpack_require__(
|
|
10161
|
+
const offerProcessor = deps.offerProcessor || __webpack_require__(610);
|
|
10147
10162
|
|
|
10148
|
-
const PeerConnectionChannels = deps.PeerConnectionChannels || __webpack_require__(
|
|
10163
|
+
const PeerConnectionChannels = deps.PeerConnectionChannels || __webpack_require__(612);
|
|
10149
10164
|
|
|
10150
|
-
const subscribeProcessor = deps.subscribeProcessor || __webpack_require__(
|
|
10165
|
+
const subscribeProcessor = deps.subscribeProcessor || __webpack_require__(614);
|
|
10151
10166
|
|
|
10152
|
-
const _ref = deps.changeMediaDirection || __webpack_require__(
|
|
10167
|
+
const _ref = deps.changeMediaDirection || __webpack_require__(615),
|
|
10153
10168
|
changeMediaDirectionToInactive = _ref.changeMediaDirectionToInactive,
|
|
10154
10169
|
changeMediaDirectionToRecvOnly = _ref.changeMediaDirectionToRecvOnly;
|
|
10155
10170
|
|
|
@@ -10157,9 +10172,9 @@ module.exports = function PeerConnectionFactory(deps) {
|
|
|
10157
10172
|
|
|
10158
10173
|
const windowMock = deps.global || (typeof window !== undefined ? window : global);
|
|
10159
10174
|
|
|
10160
|
-
const debounce = deps.debounce || __webpack_require__(
|
|
10175
|
+
const debounce = deps.debounce || __webpack_require__(619);
|
|
10161
10176
|
|
|
10162
|
-
const needsToSwapH264Profiles = deps.needsToSwapH264Profiles || __webpack_require__(
|
|
10177
|
+
const needsToSwapH264Profiles = deps.needsToSwapH264Profiles || __webpack_require__(621).once;
|
|
10163
10178
|
|
|
10164
10179
|
const futureIsPeerConnectionValid = () => hasValidPeerConnection(windowMock.RTCPeerConnection);
|
|
10165
10180
|
|
|
@@ -12791,9 +12806,9 @@ module.exports = SessionInfo;
|
|
|
12791
12806
|
"use strict";
|
|
12792
12807
|
|
|
12793
12808
|
|
|
12794
|
-
const extendES5Native = __webpack_require__(
|
|
12809
|
+
const extendES5Native = __webpack_require__(545);
|
|
12795
12810
|
|
|
12796
|
-
const webrtcAdapter = __webpack_require__(
|
|
12811
|
+
const webrtcAdapter = __webpack_require__(546);
|
|
12797
12812
|
|
|
12798
12813
|
const logging = __webpack_require__(1)('createWindowMock');
|
|
12799
12814
|
|
|
@@ -13290,7 +13305,7 @@ module.exports = (_temp = /*#__PURE__*/function () {
|
|
|
13290
13305
|
// @todo enable the following disabled rules see OPENTOK-31136 for more info
|
|
13291
13306
|
|
|
13292
13307
|
/* eslint-disable no-underscore-dangle, no-use-before-define */
|
|
13293
|
-
const domState = __webpack_require__(
|
|
13308
|
+
const domState = __webpack_require__(557);
|
|
13294
13309
|
|
|
13295
13310
|
const eventNames = __webpack_require__(26);
|
|
13296
13311
|
|
|
@@ -13354,7 +13369,7 @@ module.exports = new EnvironmentLoader();
|
|
|
13354
13369
|
/* 148 */
|
|
13355
13370
|
/***/ (function(module, exports, __webpack_require__) {
|
|
13356
13371
|
|
|
13357
|
-
var baseMerge = __webpack_require__(
|
|
13372
|
+
var baseMerge = __webpack_require__(558),
|
|
13358
13373
|
createAssigner = __webpack_require__(191);
|
|
13359
13374
|
|
|
13360
13375
|
/**
|
|
@@ -13402,7 +13417,7 @@ module.exports = merge;
|
|
|
13402
13417
|
"use strict";
|
|
13403
13418
|
|
|
13404
13419
|
|
|
13405
|
-
var objectAssign = __webpack_require__(
|
|
13420
|
+
var objectAssign = __webpack_require__(562);
|
|
13406
13421
|
|
|
13407
13422
|
// compare and isBuffer taken from https://github.com/feross/buffer/blob/680e9e5e488f22aac27599a57dc844a6315928dd/index.js
|
|
13408
13423
|
// original notice:
|
|
@@ -13472,7 +13487,7 @@ function isBuffer(b) {
|
|
|
13472
13487
|
// ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
|
13473
13488
|
// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
13474
13489
|
|
|
13475
|
-
var util = __webpack_require__(
|
|
13490
|
+
var util = __webpack_require__(563);
|
|
13476
13491
|
var hasOwn = Object.prototype.hasOwnProperty;
|
|
13477
13492
|
var pSlice = Array.prototype.slice;
|
|
13478
13493
|
var functionsHaveNames = (function () {
|
|
@@ -14056,13 +14071,13 @@ module.exports = function videoOrientationFactory() {
|
|
|
14056
14071
|
// @todo enable the following disabled rules see OPENTOK-31136 for more info
|
|
14057
14072
|
|
|
14058
14073
|
/* eslint-disable no-param-reassign, no-underscore-dangle */
|
|
14059
|
-
const fixBackgroundImageURI = __webpack_require__(
|
|
14074
|
+
const fixBackgroundImageURI = __webpack_require__(578);
|
|
14060
14075
|
|
|
14061
14076
|
const logging = __webpack_require__(1)('StylableComponent');
|
|
14062
14077
|
|
|
14063
|
-
const Style = __webpack_require__(
|
|
14078
|
+
const Style = __webpack_require__(579);
|
|
14064
14079
|
|
|
14065
|
-
const styleHashLogFilter = __webpack_require__(
|
|
14080
|
+
const styleHashLogFilter = __webpack_require__(580);
|
|
14066
14081
|
/* Stylable Notes
|
|
14067
14082
|
* Some bits are controlled by multiple flags, i.e. buttonDisplayMode and nameDisplayMode.
|
|
14068
14083
|
* When there are multiple flags how is the final setting chosen?
|
|
@@ -14359,15 +14374,15 @@ const EnvironmentLoader = __webpack_require__(147);
|
|
|
14359
14374
|
|
|
14360
14375
|
const hasOpenTokSupport = __webpack_require__(60).once;
|
|
14361
14376
|
|
|
14362
|
-
const isWebSocketSupported = __webpack_require__(
|
|
14377
|
+
const isWebSocketSupported = __webpack_require__(583);
|
|
14363
14378
|
|
|
14364
14379
|
const OTHelpers = __webpack_require__(5);
|
|
14365
14380
|
|
|
14366
14381
|
const logging = __webpack_require__(1)('systemRequirements');
|
|
14367
14382
|
|
|
14368
|
-
const upgradeHtml = __webpack_require__(
|
|
14383
|
+
const upgradeHtml = __webpack_require__(584);
|
|
14369
14384
|
|
|
14370
|
-
const Modal = __webpack_require__(
|
|
14385
|
+
const Modal = __webpack_require__(585);
|
|
14371
14386
|
|
|
14372
14387
|
const staticConfig = StaticConfig.onlyLocal(); // This will be logged before we even get the correct loggingUrl from
|
|
14373
14388
|
// config.opentok.com.
|
|
@@ -14466,9 +14481,9 @@ var _interopRequireDefault = __webpack_require__(2);
|
|
|
14466
14481
|
|
|
14467
14482
|
var _inheritsLoose2 = _interopRequireDefault(__webpack_require__(59));
|
|
14468
14483
|
|
|
14469
|
-
var _wrapNativeSuper2 = _interopRequireDefault(__webpack_require__(
|
|
14484
|
+
var _wrapNativeSuper2 = _interopRequireDefault(__webpack_require__(586));
|
|
14470
14485
|
|
|
14471
|
-
const pFinally = __webpack_require__(
|
|
14486
|
+
const pFinally = __webpack_require__(590);
|
|
14472
14487
|
|
|
14473
14488
|
let TimeoutError = /*#__PURE__*/function (_Error) {
|
|
14474
14489
|
(0, _inheritsLoose2.default)(TimeoutError, _Error);
|
|
@@ -14764,11 +14779,11 @@ module.exports = function screenSharingFactory(deps) {
|
|
|
14764
14779
|
|
|
14765
14780
|
const chromeExtensionHelper = deps.chromeExtensionHelper || __webpack_require__(280)();
|
|
14766
14781
|
|
|
14767
|
-
const electronExtensionHelper = deps.electronExtensionHelper || __webpack_require__(
|
|
14782
|
+
const electronExtensionHelper = deps.electronExtensionHelper || __webpack_require__(626)();
|
|
14768
14783
|
|
|
14769
14784
|
const Errors = deps.Errors || __webpack_require__(4);
|
|
14770
14785
|
|
|
14771
|
-
const firefoxExtensionHelper = deps.firefoxExtensionHelper || __webpack_require__(
|
|
14786
|
+
const firefoxExtensionHelper = deps.firefoxExtensionHelper || __webpack_require__(628);
|
|
14772
14787
|
|
|
14773
14788
|
const getDisplayMediaExtensionHelper = deps.getDisplayMediaExtensionHelper || __webpack_require__(287);
|
|
14774
14789
|
|
|
@@ -15163,7 +15178,7 @@ const _require = __webpack_require__(74),
|
|
|
15163
15178
|
|
|
15164
15179
|
const eventing = __webpack_require__(6);
|
|
15165
15180
|
|
|
15166
|
-
const hasPassiveCapability = __webpack_require__(
|
|
15181
|
+
const hasPassiveCapability = __webpack_require__(642);
|
|
15167
15182
|
|
|
15168
15183
|
const defaultLogging = __webpack_require__(1)('WidgetView');
|
|
15169
15184
|
|
|
@@ -15177,15 +15192,15 @@ const _require2 = __webpack_require__(165),
|
|
|
15177
15192
|
|
|
15178
15193
|
const unblockAudio = __webpack_require__(166);
|
|
15179
15194
|
|
|
15180
|
-
const waitForVideoResolution = __webpack_require__(
|
|
15195
|
+
const waitForVideoResolution = __webpack_require__(644);
|
|
15181
15196
|
|
|
15182
|
-
const waitForVideoToBePlaying = __webpack_require__(
|
|
15197
|
+
const waitForVideoToBePlaying = __webpack_require__(645);
|
|
15183
15198
|
|
|
15184
|
-
const fixMini = __webpack_require__(
|
|
15199
|
+
const fixMini = __webpack_require__(646);
|
|
15185
15200
|
|
|
15186
|
-
const getOrCreateContainer = __webpack_require__(
|
|
15201
|
+
const getOrCreateContainer = __webpack_require__(647);
|
|
15187
15202
|
|
|
15188
|
-
const ensureCSSUnit = __webpack_require__(
|
|
15203
|
+
const ensureCSSUnit = __webpack_require__(648);
|
|
15189
15204
|
|
|
15190
15205
|
const eventHelper = __webpack_require__(62);
|
|
15191
15206
|
|
|
@@ -15755,7 +15770,7 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
15755
15770
|
});
|
|
15756
15771
|
exports.CancellationError = exports.default = undefined;
|
|
15757
15772
|
|
|
15758
|
-
var _Cancellation = __webpack_require__(
|
|
15773
|
+
var _Cancellation = __webpack_require__(643);
|
|
15759
15774
|
|
|
15760
15775
|
var _Cancellation2 = _interopRequireDefault(_Cancellation);
|
|
15761
15776
|
|
|
@@ -15869,7 +15884,7 @@ const pick = __webpack_require__(47);
|
|
|
15869
15884
|
|
|
15870
15885
|
const once = __webpack_require__(49);
|
|
15871
15886
|
|
|
15872
|
-
const startCase = __webpack_require__(
|
|
15887
|
+
const startCase = __webpack_require__(662);
|
|
15873
15888
|
|
|
15874
15889
|
const uuid = __webpack_require__(19);
|
|
15875
15890
|
|
|
@@ -15886,7 +15901,7 @@ const _require2 = __webpack_require__(74),
|
|
|
15886
15901
|
|
|
15887
15902
|
const env = __webpack_require__(3);
|
|
15888
15903
|
|
|
15889
|
-
const setEncodersActiveStateDefault = __webpack_require__(
|
|
15904
|
+
const setEncodersActiveStateDefault = __webpack_require__(672);
|
|
15890
15905
|
|
|
15891
15906
|
const promisify = __webpack_require__(307);
|
|
15892
15907
|
|
|
@@ -15906,28 +15921,28 @@ const IntervalRunnerDefault = __webpack_require__(75);
|
|
|
15906
15921
|
|
|
15907
15922
|
const createCleanupJobs = __webpack_require__(155);
|
|
15908
15923
|
|
|
15909
|
-
const whitelistPublisherProperties = __webpack_require__(
|
|
15924
|
+
const whitelistPublisherProperties = __webpack_require__(673);
|
|
15910
15925
|
|
|
15911
15926
|
const defaultWidgetView = __webpack_require__(164)();
|
|
15912
15927
|
|
|
15913
|
-
const audioLevelBehaviour = __webpack_require__(
|
|
15928
|
+
const audioLevelBehaviour = __webpack_require__(674);
|
|
15914
15929
|
|
|
15915
|
-
const blockCallsUntilComplete = __webpack_require__(
|
|
15930
|
+
const blockCallsUntilComplete = __webpack_require__(675);
|
|
15916
15931
|
|
|
15917
15932
|
const unblockAudio = __webpack_require__(166);
|
|
15918
15933
|
|
|
15919
15934
|
const _require3 = __webpack_require__(23)(),
|
|
15920
15935
|
getInputMediaDevices = _require3.getInputMediaDevices;
|
|
15921
15936
|
|
|
15922
|
-
const createCanvasVideoTrack = __webpack_require__(
|
|
15937
|
+
const createCanvasVideoTrack = __webpack_require__(676);
|
|
15923
15938
|
|
|
15924
15939
|
const isSecureContextRequired = __webpack_require__(269);
|
|
15925
15940
|
|
|
15926
15941
|
const isGetRtcStatsReportSupported = __webpack_require__(306);
|
|
15927
15942
|
|
|
15928
|
-
const getDeviceIdFromStream = __webpack_require__(
|
|
15943
|
+
const getDeviceIdFromStream = __webpack_require__(677);
|
|
15929
15944
|
|
|
15930
|
-
const createStreamErrorMap = __webpack_require__(
|
|
15945
|
+
const createStreamErrorMap = __webpack_require__(678);
|
|
15931
15946
|
|
|
15932
15947
|
const _require4 = __webpack_require__(290),
|
|
15933
15948
|
setVideoContentHint = _require4.setVideoContentHint,
|
|
@@ -20615,7 +20630,7 @@ const eventing = __webpack_require__(6);
|
|
|
20615
20630
|
|
|
20616
20631
|
const Events = __webpack_require__(22)();
|
|
20617
20632
|
|
|
20618
|
-
const connectionCapabilities = __webpack_require__(
|
|
20633
|
+
const connectionCapabilities = __webpack_require__(708);
|
|
20619
20634
|
/**
|
|
20620
20635
|
* The Connection object represents a connection to an OpenTok session. Each client that connects
|
|
20621
20636
|
* to a session has a unique connection, with a unique connection ID (represented by the
|
|
@@ -24485,8 +24500,8 @@ const isFunction = __webpack_require__(15);
|
|
|
24485
24500
|
const extensions = {
|
|
24486
24501
|
attributes: __webpack_require__(528),
|
|
24487
24502
|
css: __webpack_require__(529),
|
|
24488
|
-
classNames: __webpack_require__(
|
|
24489
|
-
observers: __webpack_require__(
|
|
24503
|
+
classNames: __webpack_require__(532),
|
|
24504
|
+
observers: __webpack_require__(534)
|
|
24490
24505
|
};
|
|
24491
24506
|
const idRegex = /^#([\w-]*)$/; // A helper for converting a NodeList to a JS Array
|
|
24492
24507
|
|
|
@@ -26336,7 +26351,7 @@ module.exports = (_temp = /*#__PURE__*/function () {
|
|
|
26336
26351
|
|
|
26337
26352
|
const merge = __webpack_require__(148);
|
|
26338
26353
|
|
|
26339
|
-
const normalizeConstraintInput = __webpack_require__(
|
|
26354
|
+
const normalizeConstraintInput = __webpack_require__(561);
|
|
26340
26355
|
|
|
26341
26356
|
const isScreenSharingSource = __webpack_require__(264);
|
|
26342
26357
|
|
|
@@ -26646,7 +26661,7 @@ module.exports = capitalize;
|
|
|
26646
26661
|
/* 259 */
|
|
26647
26662
|
/***/ (function(module, exports, __webpack_require__) {
|
|
26648
26663
|
|
|
26649
|
-
var createCaseFirst = __webpack_require__(
|
|
26664
|
+
var createCaseFirst = __webpack_require__(566);
|
|
26650
26665
|
|
|
26651
26666
|
/**
|
|
26652
26667
|
* Converts the first character of `string` to upper case.
|
|
@@ -26743,9 +26758,9 @@ module.exports = hasUnicode;
|
|
|
26743
26758
|
/* 262 */
|
|
26744
26759
|
/***/ (function(module, exports, __webpack_require__) {
|
|
26745
26760
|
|
|
26746
|
-
var asciiToArray = __webpack_require__(
|
|
26761
|
+
var asciiToArray = __webpack_require__(568),
|
|
26747
26762
|
hasUnicode = __webpack_require__(261),
|
|
26748
|
-
unicodeToArray = __webpack_require__(
|
|
26763
|
+
unicodeToArray = __webpack_require__(569);
|
|
26749
26764
|
|
|
26750
26765
|
/**
|
|
26751
26766
|
* Converts `string` to an array.
|
|
@@ -26788,7 +26803,7 @@ module.exports = Boolean(env.isChrome && env.version >= 74 || env.isEdge && env.
|
|
|
26788
26803
|
"use strict";
|
|
26789
26804
|
|
|
26790
26805
|
|
|
26791
|
-
const screenSharingSources = __webpack_require__(
|
|
26806
|
+
const screenSharingSources = __webpack_require__(570);
|
|
26792
26807
|
|
|
26793
26808
|
const isElectronScreenSharingSource = __webpack_require__(265);
|
|
26794
26809
|
|
|
@@ -26834,7 +26849,7 @@ module.exports = videoSource => {
|
|
|
26834
26849
|
/***/ (function(module, exports, __webpack_require__) {
|
|
26835
26850
|
|
|
26836
26851
|
var baseForOwn = __webpack_require__(100),
|
|
26837
|
-
createBaseEach = __webpack_require__(
|
|
26852
|
+
createBaseEach = __webpack_require__(575);
|
|
26838
26853
|
|
|
26839
26854
|
/**
|
|
26840
26855
|
* The base implementation of `_.forEach` without support for iteratee shorthands.
|
|
@@ -26924,10 +26939,10 @@ module.exports = _setPrototypeOf;
|
|
|
26924
26939
|
|
|
26925
26940
|
var arrayMap = __webpack_require__(32),
|
|
26926
26941
|
baseClone = __webpack_require__(78),
|
|
26927
|
-
baseUnset = __webpack_require__(
|
|
26942
|
+
baseUnset = __webpack_require__(591),
|
|
26928
26943
|
castPath = __webpack_require__(57),
|
|
26929
26944
|
copyObject = __webpack_require__(39),
|
|
26930
|
-
customOmitClone = __webpack_require__(
|
|
26945
|
+
customOmitClone = __webpack_require__(594),
|
|
26931
26946
|
flatRest = __webpack_require__(138),
|
|
26932
26947
|
getAllKeysIn = __webpack_require__(184);
|
|
26933
26948
|
|
|
@@ -27046,7 +27061,7 @@ module.exports = findIndex;
|
|
|
27046
27061
|
/* 273 */
|
|
27047
27062
|
/***/ (function(module, exports, __webpack_require__) {
|
|
27048
27063
|
|
|
27049
|
-
var baseUniq = __webpack_require__(
|
|
27064
|
+
var baseUniq = __webpack_require__(596);
|
|
27050
27065
|
|
|
27051
27066
|
/**
|
|
27052
27067
|
* Creates a duplicate-free version of an array, using
|
|
@@ -27080,7 +27095,7 @@ module.exports = uniq;
|
|
|
27080
27095
|
"use strict";
|
|
27081
27096
|
|
|
27082
27097
|
|
|
27083
|
-
const toArray = __webpack_require__(
|
|
27098
|
+
const toArray = __webpack_require__(604);
|
|
27084
27099
|
|
|
27085
27100
|
const getRtcStatsReportAdapter = __webpack_require__(277);
|
|
27086
27101
|
|
|
@@ -27160,7 +27175,7 @@ module.exports = isString;
|
|
|
27160
27175
|
/* 276 */
|
|
27161
27176
|
/***/ (function(module, exports, __webpack_require__) {
|
|
27162
27177
|
|
|
27163
|
-
var baseValues = __webpack_require__(
|
|
27178
|
+
var baseValues = __webpack_require__(606),
|
|
27164
27179
|
keys = __webpack_require__(29);
|
|
27165
27180
|
|
|
27166
27181
|
/**
|
|
@@ -27245,9 +27260,9 @@ var _events = __webpack_require__(41);
|
|
|
27245
27260
|
|
|
27246
27261
|
var _clone = _interopRequireDefault(__webpack_require__(36));
|
|
27247
27262
|
|
|
27248
|
-
var _parseQOS = _interopRequireDefault(__webpack_require__(
|
|
27263
|
+
var _parseQOS = _interopRequireDefault(__webpack_require__(616));
|
|
27249
27264
|
|
|
27250
|
-
var _TruthyChangeCounter = _interopRequireDefault(__webpack_require__(
|
|
27265
|
+
var _TruthyChangeCounter = _interopRequireDefault(__webpack_require__(618));
|
|
27251
27266
|
|
|
27252
27267
|
var _now = _interopRequireDefault(__webpack_require__(48));
|
|
27253
27268
|
|
|
@@ -27680,7 +27695,7 @@ module.exports = function createChromeMixinFactory(deps) {
|
|
|
27680
27695
|
deps = {};
|
|
27681
27696
|
}
|
|
27682
27697
|
|
|
27683
|
-
const Archiving = deps.Archiving || __webpack_require__(
|
|
27698
|
+
const Archiving = deps.Archiving || __webpack_require__(622);
|
|
27684
27699
|
|
|
27685
27700
|
const AudioLevelMeter = deps.AudioLevelMeter || __webpack_require__(282);
|
|
27686
27701
|
|
|
@@ -28731,11 +28746,11 @@ const eventing = __webpack_require__(6);
|
|
|
28731
28746
|
|
|
28732
28747
|
const eventHelper = __webpack_require__(62);
|
|
28733
28748
|
|
|
28734
|
-
const destroyObj = __webpack_require__(
|
|
28749
|
+
const destroyObj = __webpack_require__(633);
|
|
28735
28750
|
|
|
28736
|
-
const patchSrcObject = __webpack_require__(
|
|
28751
|
+
const patchSrcObject = __webpack_require__(634);
|
|
28737
28752
|
|
|
28738
|
-
const isDomElementVisible = __webpack_require__(
|
|
28753
|
+
const isDomElementVisible = __webpack_require__(635);
|
|
28739
28754
|
|
|
28740
28755
|
const promiseDelay = __webpack_require__(107);
|
|
28741
28756
|
|
|
@@ -28786,13 +28801,13 @@ function NativeVideoElementWrapperFactory(deps) {
|
|
|
28786
28801
|
|
|
28787
28802
|
const audioContextProvider = deps.audioContext || __webpack_require__(158)();
|
|
28788
28803
|
|
|
28789
|
-
const canBeOrientatedMixin = deps.canBeOrientatedMixin || __webpack_require__(
|
|
28804
|
+
const canBeOrientatedMixin = deps.canBeOrientatedMixin || __webpack_require__(636);
|
|
28790
28805
|
/** @type {Document} */
|
|
28791
28806
|
|
|
28792
28807
|
|
|
28793
28808
|
const document = deps.document || (typeof window !== undefined ? window : global).document;
|
|
28794
28809
|
|
|
28795
|
-
const listenForTracksEnded = deps.listenForTracksEnded || __webpack_require__(
|
|
28810
|
+
const listenForTracksEnded = deps.listenForTracksEnded || __webpack_require__(637)();
|
|
28796
28811
|
|
|
28797
28812
|
const createLog = deps.logging || __webpack_require__(1);
|
|
28798
28813
|
|
|
@@ -29840,7 +29855,7 @@ module.exports = function PublisherPeerConnectionFactory(deps) {
|
|
|
29840
29855
|
|
|
29841
29856
|
const setCertificates = deps.setCertificates || __webpack_require__(163)();
|
|
29842
29857
|
|
|
29843
|
-
const watchAudioAcquisition = deps.watchAudioAcquisition || __webpack_require__(
|
|
29858
|
+
const watchAudioAcquisition = deps.watchAudioAcquisition || __webpack_require__(639);
|
|
29844
29859
|
/**
|
|
29845
29860
|
* @typedef {object} PublisherPeerConnectionConfig
|
|
29846
29861
|
* @property {function(string, string=, object=, object=, boolean=)} logAnalyticsEvent
|
|
@@ -30117,7 +30132,7 @@ module.exports = function SubscriberPeerConnectionFactory(deps) {
|
|
|
30117
30132
|
|
|
30118
30133
|
const OTErrorClass = deps.OTErrorClass || __webpack_require__(21);
|
|
30119
30134
|
|
|
30120
|
-
const watchSubscriberAudio = deps.watchSubscriberAudio || __webpack_require__(
|
|
30135
|
+
const watchSubscriberAudio = deps.watchSubscriberAudio || __webpack_require__(640);
|
|
30121
30136
|
/*
|
|
30122
30137
|
* Abstracts PeerConnection related stuff away from Subscriber.
|
|
30123
30138
|
*
|
|
@@ -30593,19 +30608,19 @@ const eventNames = __webpack_require__(26);
|
|
|
30593
30608
|
|
|
30594
30609
|
const eventing = __webpack_require__(6);
|
|
30595
30610
|
|
|
30596
|
-
const waitUntil = __webpack_require__(
|
|
30611
|
+
const waitUntil = __webpack_require__(649);
|
|
30597
30612
|
|
|
30598
30613
|
const RafRunner = __webpack_require__(104);
|
|
30599
30614
|
|
|
30600
30615
|
const eventHelper = __webpack_require__(62);
|
|
30601
30616
|
|
|
30602
|
-
const interpretSubscriberCreateError = __webpack_require__(
|
|
30617
|
+
const interpretSubscriberCreateError = __webpack_require__(650);
|
|
30603
30618
|
|
|
30604
30619
|
const Errors = __webpack_require__(4);
|
|
30605
30620
|
|
|
30606
30621
|
const defaultWidgetView = __webpack_require__(164)();
|
|
30607
30622
|
|
|
30608
|
-
const audioLevelBehaviour = __webpack_require__(
|
|
30623
|
+
const audioLevelBehaviour = __webpack_require__(651);
|
|
30609
30624
|
|
|
30610
30625
|
const AudioLevelMeterDefault = __webpack_require__(282);
|
|
30611
30626
|
|
|
@@ -30629,7 +30644,7 @@ const hasAudioOutputLevelStatCapabilityDefault = __webpack_require__(301);
|
|
|
30629
30644
|
|
|
30630
30645
|
const hasRemoteStreamsWithWebAudioDefault = __webpack_require__(302);
|
|
30631
30646
|
|
|
30632
|
-
const audioLevelSamplerDefault = __webpack_require__(
|
|
30647
|
+
const audioLevelSamplerDefault = __webpack_require__(652);
|
|
30633
30648
|
|
|
30634
30649
|
const interpretPeerConnectionErrorDefault = __webpack_require__(162)();
|
|
30635
30650
|
|
|
@@ -30659,23 +30674,23 @@ const SubscriberPeerConnectionDefault = __webpack_require__(296)({
|
|
|
30659
30674
|
|
|
30660
30675
|
const SubscribingStateDefault = __webpack_require__(303);
|
|
30661
30676
|
|
|
30662
|
-
const VideoDisabledIndicatorDefault = __webpack_require__(
|
|
30677
|
+
const VideoDisabledIndicatorDefault = __webpack_require__(655);
|
|
30663
30678
|
|
|
30664
|
-
const AudioBlockedIndicatorDefault = __webpack_require__(
|
|
30679
|
+
const AudioBlockedIndicatorDefault = __webpack_require__(656);
|
|
30665
30680
|
|
|
30666
|
-
const VideoUnsupportedIndicatorDefault = __webpack_require__(
|
|
30681
|
+
const VideoUnsupportedIndicatorDefault = __webpack_require__(657);
|
|
30667
30682
|
|
|
30668
|
-
const watchFrameRateDefault = __webpack_require__(
|
|
30683
|
+
const watchFrameRateDefault = __webpack_require__(658);
|
|
30669
30684
|
|
|
30670
30685
|
const createSendMethodDefault = __webpack_require__(304);
|
|
30671
30686
|
|
|
30672
30687
|
const parseIceServersDefault = __webpack_require__(101).parseIceServers;
|
|
30673
30688
|
|
|
30674
|
-
const overallTimeout = __webpack_require__(
|
|
30689
|
+
const overallTimeout = __webpack_require__(659);
|
|
30675
30690
|
|
|
30676
|
-
const createConnectivityState = __webpack_require__(
|
|
30691
|
+
const createConnectivityState = __webpack_require__(660);
|
|
30677
30692
|
|
|
30678
|
-
const createConnectivityAttemptPinger = __webpack_require__(
|
|
30693
|
+
const createConnectivityAttemptPinger = __webpack_require__(661);
|
|
30679
30694
|
|
|
30680
30695
|
const isGetRtcStatsReportSupported = __webpack_require__(306);
|
|
30681
30696
|
|
|
@@ -34963,9 +34978,9 @@ const isFunction = __webpack_require__(15);
|
|
|
34963
34978
|
|
|
34964
34979
|
const isObject = __webpack_require__(9);
|
|
34965
34980
|
|
|
34966
|
-
const isNullOrFalse = __webpack_require__(
|
|
34981
|
+
const isNullOrFalse = __webpack_require__(679);
|
|
34967
34982
|
|
|
34968
|
-
const setVideoContentHintIfCanvas = __webpack_require__(
|
|
34983
|
+
const setVideoContentHintIfCanvas = __webpack_require__(680);
|
|
34969
34984
|
|
|
34970
34985
|
module.exports = function initPublisherFactory(deps) {
|
|
34971
34986
|
if (deps === void 0) {
|
|
@@ -35578,7 +35593,7 @@ var _extends2 = _interopRequireDefault(__webpack_require__(25));
|
|
|
35578
35593
|
/* eslint-disable max-len */
|
|
35579
35594
|
const EventEmitter = __webpack_require__(41);
|
|
35580
35595
|
|
|
35581
|
-
const findKey = __webpack_require__(
|
|
35596
|
+
const findKey = __webpack_require__(681);
|
|
35582
35597
|
|
|
35583
35598
|
const isObject = __webpack_require__(9);
|
|
35584
35599
|
|
|
@@ -35601,9 +35616,9 @@ const IntervalRunner = __webpack_require__(75);
|
|
|
35601
35616
|
|
|
35602
35617
|
const promisify = __webpack_require__(307);
|
|
35603
35618
|
|
|
35604
|
-
const testRemovingVideoCodecs = __webpack_require__(
|
|
35619
|
+
const testRemovingVideoCodecs = __webpack_require__(683);
|
|
35605
35620
|
|
|
35606
|
-
const validateIceConfigFactory = __webpack_require__(
|
|
35621
|
+
const validateIceConfigFactory = __webpack_require__(684);
|
|
35607
35622
|
|
|
35608
35623
|
const _require2 = __webpack_require__(139),
|
|
35609
35624
|
prependProxyToUrlIfNeeded = _require2.prependProxyToUrlIfNeeded;
|
|
@@ -35626,7 +35641,7 @@ module.exports = function SessionFactory(deps) {
|
|
|
35626
35641
|
|
|
35627
35642
|
const Capabilities = deps.Capabilities || __webpack_require__(169);
|
|
35628
35643
|
|
|
35629
|
-
const convertAnvilErrorCode = deps.convertAnvilErrorCode || __webpack_require__(
|
|
35644
|
+
const convertAnvilErrorCode = deps.convertAnvilErrorCode || __webpack_require__(685);
|
|
35630
35645
|
|
|
35631
35646
|
const convertRumorError = deps.convertRumorError || __webpack_require__(310);
|
|
35632
35647
|
|
|
@@ -35648,7 +35663,7 @@ module.exports = function SessionFactory(deps) {
|
|
|
35648
35663
|
|
|
35649
35664
|
const OTHelpers = deps.OTHelpers || __webpack_require__(5);
|
|
35650
35665
|
|
|
35651
|
-
const forceMuteErrors = __webpack_require__(
|
|
35666
|
+
const forceMuteErrors = __webpack_require__(686);
|
|
35652
35667
|
/** @type {typeof StaticConfigDefault} */
|
|
35653
35668
|
|
|
35654
35669
|
|
|
@@ -35659,7 +35674,7 @@ module.exports = function SessionFactory(deps) {
|
|
|
35659
35674
|
|
|
35660
35675
|
const Publisher = deps.Publisher || __webpack_require__(168)();
|
|
35661
35676
|
|
|
35662
|
-
const RaptorSocket = deps.RaptorSocket || __webpack_require__(
|
|
35677
|
+
const RaptorSocket = deps.RaptorSocket || __webpack_require__(687).default();
|
|
35663
35678
|
|
|
35664
35679
|
const SessionDispatcher = deps.SessionDispatcher || __webpack_require__(318);
|
|
35665
35680
|
|
|
@@ -35680,7 +35695,7 @@ module.exports = function SessionFactory(deps) {
|
|
|
35680
35695
|
});
|
|
35681
35696
|
const windowMock = deps.global || (typeof window !== undefined ? window : global);
|
|
35682
35697
|
|
|
35683
|
-
const getSessionInfo = deps.getSessionInfo || __webpack_require__(
|
|
35698
|
+
const getSessionInfo = deps.getSessionInfo || __webpack_require__(711)();
|
|
35684
35699
|
|
|
35685
35700
|
const SessionInfo = __webpack_require__(142);
|
|
35686
35701
|
|
|
@@ -38869,7 +38884,7 @@ const logging = __webpack_require__(1)('Dispatcher');
|
|
|
38869
38884
|
|
|
38870
38885
|
const RumorMessageTypes = __webpack_require__(171);
|
|
38871
38886
|
|
|
38872
|
-
const unboxFromRumorMessage = __webpack_require__(
|
|
38887
|
+
const unboxFromRumorMessage = __webpack_require__(702);
|
|
38873
38888
|
|
|
38874
38889
|
const Dispatcher = function Dispatcher() {
|
|
38875
38890
|
eventing(this);
|
|
@@ -39183,13 +39198,13 @@ const uuid = __webpack_require__(19);
|
|
|
39183
39198
|
|
|
39184
39199
|
const OTHelpers = __webpack_require__(5);
|
|
39185
39200
|
|
|
39186
|
-
const hasBundleCapability = __webpack_require__(
|
|
39201
|
+
const hasBundleCapability = __webpack_require__(705);
|
|
39187
39202
|
|
|
39188
|
-
const hasRTCPMuxCapability = __webpack_require__(
|
|
39203
|
+
const hasRTCPMuxCapability = __webpack_require__(706);
|
|
39189
39204
|
|
|
39190
39205
|
const serializeMessage = __webpack_require__(312);
|
|
39191
39206
|
|
|
39192
|
-
const supportedCryptoScheme = __webpack_require__(
|
|
39207
|
+
const supportedCryptoScheme = __webpack_require__(707);
|
|
39193
39208
|
|
|
39194
39209
|
const staticConfig = __webpack_require__(44)().onlyLocal();
|
|
39195
39210
|
|
|
@@ -39652,7 +39667,7 @@ const now = __webpack_require__(48);
|
|
|
39652
39667
|
|
|
39653
39668
|
const Connection = __webpack_require__(172);
|
|
39654
39669
|
|
|
39655
|
-
const DelayedEventQueue = __webpack_require__(
|
|
39670
|
+
const DelayedEventQueue = __webpack_require__(710);
|
|
39656
39671
|
|
|
39657
39672
|
const Dispatcher = __webpack_require__(314);
|
|
39658
39673
|
|
|
@@ -40535,15 +40550,15 @@ const AnalyticsHelper = __webpack_require__(34);
|
|
|
40535
40550
|
|
|
40536
40551
|
const setDeprecatedProperty = __webpack_require__(249);
|
|
40537
40552
|
|
|
40538
|
-
const runtimeProperties = __webpack_require__(
|
|
40553
|
+
const runtimeProperties = __webpack_require__(542);
|
|
40539
40554
|
|
|
40540
|
-
const mutableRuntimeProperties = __webpack_require__(
|
|
40555
|
+
const mutableRuntimeProperties = __webpack_require__(543);
|
|
40541
40556
|
|
|
40542
40557
|
const staticConfig = StaticConfig.onlyLocal(); // We need to do this first because of circular dependency issues with otplugin.js. @TODO: fix this.
|
|
40543
40558
|
|
|
40544
40559
|
const OT = {}; // noConflict is constructed before we override global.OT so we keep the original value
|
|
40545
40560
|
|
|
40546
|
-
OT.noConflict = __webpack_require__(
|
|
40561
|
+
OT.noConflict = __webpack_require__(544)();
|
|
40547
40562
|
(typeof window !== undefined ? window : global).OT = OT;
|
|
40548
40563
|
module.exports = OT;
|
|
40549
40564
|
|
|
@@ -40596,7 +40611,7 @@ const logging = __webpack_require__(1)('OT');
|
|
|
40596
40611
|
|
|
40597
40612
|
const logLevels = __webpack_require__(120);
|
|
40598
40613
|
|
|
40599
|
-
const setLogLevel = __webpack_require__(
|
|
40614
|
+
const setLogLevel = __webpack_require__(571);
|
|
40600
40615
|
|
|
40601
40616
|
const OTErrorClass = __webpack_require__(21);
|
|
40602
40617
|
|
|
@@ -40639,7 +40654,7 @@ const Events = __webpack_require__(22)();
|
|
|
40639
40654
|
|
|
40640
40655
|
const generateSimpleStateMachine = __webpack_require__(160)();
|
|
40641
40656
|
|
|
40642
|
-
const getUserMediaHelper = __webpack_require__(
|
|
40657
|
+
const getUserMediaHelper = __webpack_require__(624)({
|
|
40643
40658
|
otError,
|
|
40644
40659
|
global: windowMock
|
|
40645
40660
|
});
|
|
@@ -40649,7 +40664,7 @@ const screenSharing = __webpack_require__(161)({
|
|
|
40649
40664
|
otError
|
|
40650
40665
|
});
|
|
40651
40666
|
|
|
40652
|
-
const processPubOptions = __webpack_require__(
|
|
40667
|
+
const processPubOptions = __webpack_require__(629)({
|
|
40653
40668
|
deviceHelpers,
|
|
40654
40669
|
generateConstraintInfo,
|
|
40655
40670
|
getUserMediaHelper,
|
|
@@ -40658,7 +40673,7 @@ const processPubOptions = __webpack_require__(630)({
|
|
|
40658
40673
|
screenSharing
|
|
40659
40674
|
});
|
|
40660
40675
|
|
|
40661
|
-
const getUserMedia = __webpack_require__(
|
|
40676
|
+
const getUserMedia = __webpack_require__(632)({
|
|
40662
40677
|
otError,
|
|
40663
40678
|
processPubOptions
|
|
40664
40679
|
});
|
|
@@ -40696,7 +40711,7 @@ const SubscriberPeerConnection = __webpack_require__(296)({
|
|
|
40696
40711
|
|
|
40697
40712
|
const PublishingState = __webpack_require__(297)();
|
|
40698
40713
|
|
|
40699
|
-
const reportIssue = __webpack_require__(
|
|
40714
|
+
const reportIssue = __webpack_require__(641)({
|
|
40700
40715
|
otError
|
|
40701
40716
|
});
|
|
40702
40717
|
|
|
@@ -40757,14 +40772,14 @@ const Session = __webpack_require__(309)({
|
|
|
40757
40772
|
Subscriber
|
|
40758
40773
|
});
|
|
40759
40774
|
|
|
40760
|
-
const initSession = __webpack_require__(
|
|
40775
|
+
const initSession = __webpack_require__(714)({
|
|
40761
40776
|
Session
|
|
40762
40777
|
}); // Allow events to be bound on OT
|
|
40763
40778
|
|
|
40764
40779
|
|
|
40765
40780
|
eventing(OT);
|
|
40766
40781
|
|
|
40767
|
-
const getSupportedCodecs = __webpack_require__(
|
|
40782
|
+
const getSupportedCodecs = __webpack_require__(715);
|
|
40768
40783
|
|
|
40769
40784
|
setDeprecatedProperty(OT, '$', {
|
|
40770
40785
|
name: 'OT.$',
|
|
@@ -40810,10 +40825,10 @@ OT.Error.on(eventNames.EXCEPTION, exceptionEvent => {
|
|
|
40810
40825
|
OT.Event = Event;
|
|
40811
40826
|
OT.ExceptionCodes = ExceptionCodes;
|
|
40812
40827
|
OT.ExceptionEvent = Events.ExceptionEvent;
|
|
40813
|
-
OT.getDevices = __webpack_require__(
|
|
40828
|
+
OT.getDevices = __webpack_require__(718);
|
|
40814
40829
|
OT.getAudioOutputDevices = __webpack_require__(320);
|
|
40815
40830
|
OT.getActiveAudioOutputDevice = __webpack_require__(321);
|
|
40816
|
-
OT.setAudioOutputDevice = __webpack_require__(
|
|
40831
|
+
OT.setAudioOutputDevice = __webpack_require__(719)();
|
|
40817
40832
|
OT.GetAudioLevelSampler = GetAudioLevelSampler;
|
|
40818
40833
|
OT.HAS_REQUIREMENTS = 1;
|
|
40819
40834
|
OT.IntervalRunner = IntervalRunner;
|
|
@@ -40984,7 +40999,7 @@ EnvironmentLoader.onUnload(() => {
|
|
|
40984
40999
|
sessionObjects.sessions.destroy('unloaded');
|
|
40985
41000
|
});
|
|
40986
41001
|
|
|
40987
|
-
__webpack_require__(
|
|
41002
|
+
__webpack_require__(720)();
|
|
40988
41003
|
/**
|
|
40989
41004
|
* This method is deprecated. Use <a href="#on">on()</a> or <a href="#once">once()</a> instead.
|
|
40990
41005
|
*
|
|
@@ -50773,35 +50788,10 @@ module.exports = function iOSVersion() {
|
|
|
50773
50788
|
"use strict";
|
|
50774
50789
|
|
|
50775
50790
|
|
|
50776
|
-
const operaUserAgentRegex = /(opr)\/([0-9]{1,}[.0-9]{0,})/i;
|
|
50777
|
-
const edgeUserAgentRegex = /(edge?)\/([0-9]{1,}[.0-9]{0,})/i;
|
|
50778
|
-
const userAgentRegex = /(firefox|chrome|safari|fxios|crios|version)\/([0-9]{1,}[.0-9]{0,})/i;
|
|
50779
|
-
|
|
50780
|
-
module.exports = userAgent => {
|
|
50781
|
-
let matches;
|
|
50782
|
-
|
|
50783
|
-
if (/opr/i.test(userAgent)) {
|
|
50784
|
-
matches = userAgent.match(operaUserAgentRegex);
|
|
50785
|
-
} else if (/edge?/i.test(userAgent)) {
|
|
50786
|
-
matches = userAgent.match(edgeUserAgentRegex);
|
|
50787
|
-
} else {
|
|
50788
|
-
matches = userAgent.match(userAgentRegex);
|
|
50789
|
-
}
|
|
50790
|
-
|
|
50791
|
-
return parseFloat(matches[2]);
|
|
50792
|
-
};
|
|
50793
|
-
|
|
50794
|
-
/***/ }),
|
|
50795
|
-
/* 533 */
|
|
50796
|
-
/***/ (function(module, exports, __webpack_require__) {
|
|
50797
|
-
|
|
50798
|
-
"use strict";
|
|
50799
|
-
|
|
50800
|
-
|
|
50801
50791
|
// @todo enable the following disabled rules see OPENTOK-31136 for more info
|
|
50802
50792
|
|
|
50803
50793
|
/* eslint-disable no-param-reassign, no-bitwise */
|
|
50804
|
-
const hasClassListCapability = __webpack_require__(
|
|
50794
|
+
const hasClassListCapability = __webpack_require__(533);
|
|
50805
50795
|
|
|
50806
50796
|
function hasClass(element, className) {
|
|
50807
50797
|
if (!className) {
|
|
@@ -50956,7 +50946,7 @@ module.exports = function (ElementCollection) {
|
|
|
50956
50946
|
};
|
|
50957
50947
|
|
|
50958
50948
|
/***/ }),
|
|
50959
|
-
/*
|
|
50949
|
+
/* 533 */
|
|
50960
50950
|
/***/ (function(module, exports, __webpack_require__) {
|
|
50961
50951
|
|
|
50962
50952
|
"use strict";
|
|
@@ -50965,7 +50955,7 @@ module.exports = function (ElementCollection) {
|
|
|
50965
50955
|
module.exports = () => typeof document !== 'undefined' && 'classList' in document.createElement('a');
|
|
50966
50956
|
|
|
50967
50957
|
/***/ }),
|
|
50968
|
-
/*
|
|
50958
|
+
/* 534 */
|
|
50969
50959
|
/***/ (function(module, exports, __webpack_require__) {
|
|
50970
50960
|
|
|
50971
50961
|
"use strict";
|
|
@@ -50976,7 +50966,7 @@ module.exports = () => typeof document !== 'undefined' && 'classList' in documen
|
|
|
50976
50966
|
/* eslint-disable prefer-rest-params, no-param-reassign */
|
|
50977
50967
|
|
|
50978
50968
|
/* eslint-disable no-underscore-dangle */
|
|
50979
|
-
const isEmpty = __webpack_require__(
|
|
50969
|
+
const isEmpty = __webpack_require__(535);
|
|
50980
50970
|
|
|
50981
50971
|
module.exports = function (ElementCollection) {
|
|
50982
50972
|
let sizeObserverCount = 0;
|
|
@@ -51212,7 +51202,7 @@ module.exports = function (ElementCollection) {
|
|
|
51212
51202
|
};
|
|
51213
51203
|
|
|
51214
51204
|
/***/ }),
|
|
51215
|
-
/*
|
|
51205
|
+
/* 535 */
|
|
51216
51206
|
/***/ (function(module, exports, __webpack_require__) {
|
|
51217
51207
|
|
|
51218
51208
|
var baseKeys = __webpack_require__(115),
|
|
@@ -51295,7 +51285,7 @@ module.exports = isEmpty;
|
|
|
51295
51285
|
|
|
51296
51286
|
|
|
51297
51287
|
/***/ }),
|
|
51298
|
-
/*
|
|
51288
|
+
/* 536 */
|
|
51299
51289
|
/***/ (function(module, exports, __webpack_require__) {
|
|
51300
51290
|
|
|
51301
51291
|
"use strict";
|
|
@@ -51341,7 +51331,7 @@ module.exports = {
|
|
|
51341
51331
|
};
|
|
51342
51332
|
|
|
51343
51333
|
/***/ }),
|
|
51344
|
-
/*
|
|
51334
|
+
/* 537 */
|
|
51345
51335
|
/***/ (function(module, exports, __webpack_require__) {
|
|
51346
51336
|
|
|
51347
51337
|
"use strict";
|
|
@@ -51410,7 +51400,7 @@ module.exports = function statable(self, possibleStates, initialState, stateChan
|
|
|
51410
51400
|
};
|
|
51411
51401
|
|
|
51412
51402
|
/***/ }),
|
|
51413
|
-
/*
|
|
51403
|
+
/* 538 */
|
|
51414
51404
|
/***/ (function(module, exports, __webpack_require__) {
|
|
51415
51405
|
|
|
51416
51406
|
"use strict";
|
|
@@ -51468,7 +51458,7 @@ domExtras.createElement = function (nodeName, attributes, children, doc) {
|
|
|
51468
51458
|
makeEverythingAttachToOTHelpers(domExtras);
|
|
51469
51459
|
|
|
51470
51460
|
/***/ }),
|
|
51471
|
-
/*
|
|
51461
|
+
/* 539 */
|
|
51472
51462
|
/***/ (function(module, exports, __webpack_require__) {
|
|
51473
51463
|
|
|
51474
51464
|
"use strict";
|
|
@@ -51479,14 +51469,14 @@ makeEverythingAttachToOTHelpers(domExtras);
|
|
|
51479
51469
|
/* eslint-disable one-var, no-underscore-dangle, no-use-before-define, no-param-reassign */
|
|
51480
51470
|
|
|
51481
51471
|
/* eslint-disable max-len, no-var, vars-on-top, global-require */
|
|
51482
|
-
const blacklistedStats = __webpack_require__(
|
|
51472
|
+
const blacklistedStats = __webpack_require__(540);
|
|
51483
51473
|
|
|
51484
51474
|
module.exports = function (deps) {
|
|
51485
51475
|
if (deps === void 0) {
|
|
51486
51476
|
deps = {};
|
|
51487
51477
|
}
|
|
51488
51478
|
|
|
51489
|
-
const isSessionProxied = deps.isSessionProxied || __webpack_require__(
|
|
51479
|
+
const isSessionProxied = deps.isSessionProxied || __webpack_require__(541);
|
|
51490
51480
|
|
|
51491
51481
|
const _deps = deps,
|
|
51492
51482
|
sessionId = _deps.sessionId;
|
|
@@ -51503,7 +51493,7 @@ module.exports = function (deps) {
|
|
|
51503
51493
|
};
|
|
51504
51494
|
|
|
51505
51495
|
/***/ }),
|
|
51506
|
-
/*
|
|
51496
|
+
/* 540 */
|
|
51507
51497
|
/***/ (function(module, exports, __webpack_require__) {
|
|
51508
51498
|
|
|
51509
51499
|
"use strict";
|
|
@@ -51513,7 +51503,7 @@ module.exports = function (deps) {
|
|
|
51513
51503
|
module.exports = ['audioLocalAddress', 'audioRemoteAddress', 'videoLocalAddress', 'videoRemoteAddress'];
|
|
51514
51504
|
|
|
51515
51505
|
/***/ }),
|
|
51516
|
-
/*
|
|
51506
|
+
/* 541 */
|
|
51517
51507
|
/***/ (function(module, exports, __webpack_require__) {
|
|
51518
51508
|
|
|
51519
51509
|
"use strict";
|
|
@@ -51534,7 +51524,7 @@ module.exports = sessionId => {
|
|
|
51534
51524
|
};
|
|
51535
51525
|
|
|
51536
51526
|
/***/ }),
|
|
51537
|
-
/*
|
|
51527
|
+
/* 542 */
|
|
51538
51528
|
/***/ (function(module, exports, __webpack_require__) {
|
|
51539
51529
|
|
|
51540
51530
|
"use strict";
|
|
@@ -51544,7 +51534,7 @@ const runtimeProperties = ['buildHash', 'minimumVersion', 'debug', ['websiteURL'
|
|
|
51544
51534
|
module.exports = runtimeProperties;
|
|
51545
51535
|
|
|
51546
51536
|
/***/ }),
|
|
51547
|
-
/*
|
|
51537
|
+
/* 543 */
|
|
51548
51538
|
/***/ (function(module, exports, __webpack_require__) {
|
|
51549
51539
|
|
|
51550
51540
|
"use strict";
|
|
@@ -51554,7 +51544,7 @@ const mutableRuntimeProperties = ['apiUrl', 'apiURL', 'apiURLSSL'];
|
|
|
51554
51544
|
module.exports = mutableRuntimeProperties;
|
|
51555
51545
|
|
|
51556
51546
|
/***/ }),
|
|
51557
|
-
/*
|
|
51547
|
+
/* 544 */
|
|
51558
51548
|
/***/ (function(module, exports, __webpack_require__) {
|
|
51559
51549
|
|
|
51560
51550
|
"use strict";
|
|
@@ -51572,7 +51562,7 @@ module.exports = function noConflict() {
|
|
|
51572
51562
|
};
|
|
51573
51563
|
|
|
51574
51564
|
/***/ }),
|
|
51575
|
-
/*
|
|
51565
|
+
/* 545 */
|
|
51576
51566
|
/***/ (function(module, exports, __webpack_require__) {
|
|
51577
51567
|
|
|
51578
51568
|
"use strict";
|
|
@@ -51609,7 +51599,7 @@ module.exports = function extendES5Native(ParentClass) {
|
|
|
51609
51599
|
};
|
|
51610
51600
|
|
|
51611
51601
|
/***/ }),
|
|
51612
|
-
/*
|
|
51602
|
+
/* 546 */
|
|
51613
51603
|
/***/ (function(module, exports, __webpack_require__) {
|
|
51614
51604
|
|
|
51615
51605
|
"use strict";
|
|
@@ -51653,11 +51643,11 @@ module.exports = function(dependencies, opts) {
|
|
|
51653
51643
|
// require('./utils').disableLog(false);
|
|
51654
51644
|
|
|
51655
51645
|
// Browser shims.
|
|
51656
|
-
var chromeShim = __webpack_require__(
|
|
51657
|
-
var edgeShim = __webpack_require__(
|
|
51658
|
-
var firefoxShim = __webpack_require__(
|
|
51659
|
-
var safariShim = __webpack_require__(
|
|
51660
|
-
var commonShim = __webpack_require__(
|
|
51646
|
+
var chromeShim = __webpack_require__(547) || null;
|
|
51647
|
+
var edgeShim = __webpack_require__(549) || null;
|
|
51648
|
+
var firefoxShim = __webpack_require__(553) || null;
|
|
51649
|
+
var safariShim = __webpack_require__(555) || null;
|
|
51650
|
+
var commonShim = __webpack_require__(556) || null;
|
|
51661
51651
|
|
|
51662
51652
|
// Export to the adapter global object visible in the browser.
|
|
51663
51653
|
var adapter = {
|
|
@@ -51771,7 +51761,7 @@ module.exports = function(dependencies, opts) {
|
|
|
51771
51761
|
|
|
51772
51762
|
|
|
51773
51763
|
/***/ }),
|
|
51774
|
-
/*
|
|
51764
|
+
/* 547 */
|
|
51775
51765
|
/***/ (function(module, exports, __webpack_require__) {
|
|
51776
51766
|
|
|
51777
51767
|
"use strict";
|
|
@@ -51830,7 +51820,7 @@ function filterStats(result, track, outbound) {
|
|
|
51830
51820
|
}
|
|
51831
51821
|
|
|
51832
51822
|
module.exports = {
|
|
51833
|
-
shimGetUserMedia: __webpack_require__(
|
|
51823
|
+
shimGetUserMedia: __webpack_require__(548),
|
|
51834
51824
|
shimMediaStream: function(window) {
|
|
51835
51825
|
window.MediaStream = window.MediaStream || window.webkitMediaStream;
|
|
51836
51826
|
},
|
|
@@ -52716,7 +52706,7 @@ module.exports = {
|
|
|
52716
52706
|
/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(0)))
|
|
52717
52707
|
|
|
52718
52708
|
/***/ }),
|
|
52719
|
-
/*
|
|
52709
|
+
/* 548 */
|
|
52720
52710
|
/***/ (function(module, exports, __webpack_require__) {
|
|
52721
52711
|
|
|
52722
52712
|
"use strict";
|
|
@@ -52971,7 +52961,7 @@ module.exports = function(window) {
|
|
|
52971
52961
|
/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(0)))
|
|
52972
52962
|
|
|
52973
52963
|
/***/ }),
|
|
52974
|
-
/*
|
|
52964
|
+
/* 549 */
|
|
52975
52965
|
/***/ (function(module, exports, __webpack_require__) {
|
|
52976
52966
|
|
|
52977
52967
|
"use strict";
|
|
@@ -52986,11 +52976,11 @@ module.exports = function(window) {
|
|
|
52986
52976
|
|
|
52987
52977
|
|
|
52988
52978
|
var utils = __webpack_require__(27);
|
|
52989
|
-
var filterIceServers = __webpack_require__(
|
|
52990
|
-
var shimRTCPeerConnection = __webpack_require__(
|
|
52979
|
+
var filterIceServers = __webpack_require__(550);
|
|
52980
|
+
var shimRTCPeerConnection = __webpack_require__(551);
|
|
52991
52981
|
|
|
52992
52982
|
module.exports = {
|
|
52993
|
-
shimGetUserMedia: __webpack_require__(
|
|
52983
|
+
shimGetUserMedia: __webpack_require__(552),
|
|
52994
52984
|
shimPeerConnection: function(window) {
|
|
52995
52985
|
var browserDetails = utils.detectBrowser(window);
|
|
52996
52986
|
|
|
@@ -53082,7 +53072,7 @@ module.exports = {
|
|
|
53082
53072
|
|
|
53083
53073
|
|
|
53084
53074
|
/***/ }),
|
|
53085
|
-
/*
|
|
53075
|
+
/* 550 */
|
|
53086
53076
|
/***/ (function(module, exports, __webpack_require__) {
|
|
53087
53077
|
|
|
53088
53078
|
"use strict";
|
|
@@ -53138,7 +53128,7 @@ module.exports = function(iceServers, edgeVersion) {
|
|
|
53138
53128
|
|
|
53139
53129
|
|
|
53140
53130
|
/***/ }),
|
|
53141
|
-
/*
|
|
53131
|
+
/* 551 */
|
|
53142
53132
|
/***/ (function(module, exports, __webpack_require__) {
|
|
53143
53133
|
|
|
53144
53134
|
"use strict";
|
|
@@ -55003,7 +54993,7 @@ module.exports = function(window, edgeVersion) {
|
|
|
55003
54993
|
/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(0)))
|
|
55004
54994
|
|
|
55005
54995
|
/***/ }),
|
|
55006
|
-
/*
|
|
54996
|
+
/* 552 */
|
|
55007
54997
|
/***/ (function(module, exports, __webpack_require__) {
|
|
55008
54998
|
|
|
55009
54999
|
"use strict";
|
|
@@ -55045,7 +55035,7 @@ module.exports = function(window) {
|
|
|
55045
55035
|
/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(0)))
|
|
55046
55036
|
|
|
55047
55037
|
/***/ }),
|
|
55048
|
-
/*
|
|
55038
|
+
/* 553 */
|
|
55049
55039
|
/***/ (function(module, exports, __webpack_require__) {
|
|
55050
55040
|
|
|
55051
55041
|
"use strict";
|
|
@@ -55062,7 +55052,7 @@ module.exports = function(window) {
|
|
|
55062
55052
|
var utils = __webpack_require__(27);
|
|
55063
55053
|
|
|
55064
55054
|
module.exports = {
|
|
55065
|
-
shimGetUserMedia: __webpack_require__(
|
|
55055
|
+
shimGetUserMedia: __webpack_require__(554),
|
|
55066
55056
|
shimOnTrack: function(window) {
|
|
55067
55057
|
if (typeof window === 'object' && window.RTCPeerConnection && !('ontrack' in
|
|
55068
55058
|
window.RTCPeerConnection.prototype)) {
|
|
@@ -55370,7 +55360,7 @@ module.exports = {
|
|
|
55370
55360
|
/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(0)))
|
|
55371
55361
|
|
|
55372
55362
|
/***/ }),
|
|
55373
|
-
/*
|
|
55363
|
+
/* 554 */
|
|
55374
55364
|
/***/ (function(module, exports, __webpack_require__) {
|
|
55375
55365
|
|
|
55376
55366
|
"use strict";
|
|
@@ -55587,7 +55577,7 @@ module.exports = function(window) {
|
|
|
55587
55577
|
/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(0)))
|
|
55588
55578
|
|
|
55589
55579
|
/***/ }),
|
|
55590
|
-
/*
|
|
55580
|
+
/* 555 */
|
|
55591
55581
|
/***/ (function(module, exports, __webpack_require__) {
|
|
55592
55582
|
|
|
55593
55583
|
"use strict";
|
|
@@ -55909,7 +55899,7 @@ module.exports = {
|
|
|
55909
55899
|
/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(0)))
|
|
55910
55900
|
|
|
55911
55901
|
/***/ }),
|
|
55912
|
-
/*
|
|
55902
|
+
/* 556 */
|
|
55913
55903
|
/***/ (function(module, exports, __webpack_require__) {
|
|
55914
55904
|
|
|
55915
55905
|
"use strict";
|
|
@@ -56206,7 +56196,7 @@ module.exports = {
|
|
|
56206
56196
|
|
|
56207
56197
|
|
|
56208
56198
|
/***/ }),
|
|
56209
|
-
/*
|
|
56199
|
+
/* 557 */
|
|
56210
56200
|
/***/ (function(module, exports, __webpack_require__) {
|
|
56211
56201
|
|
|
56212
56202
|
"use strict";
|
|
@@ -56260,13 +56250,13 @@ module.exports = domState;
|
|
|
56260
56250
|
/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(0)))
|
|
56261
56251
|
|
|
56262
56252
|
/***/ }),
|
|
56263
|
-
/*
|
|
56253
|
+
/* 558 */
|
|
56264
56254
|
/***/ (function(module, exports, __webpack_require__) {
|
|
56265
56255
|
|
|
56266
56256
|
var Stack = __webpack_require__(79),
|
|
56267
56257
|
assignMergeValue = __webpack_require__(255),
|
|
56268
56258
|
baseFor = __webpack_require__(238),
|
|
56269
|
-
baseMergeDeep = __webpack_require__(
|
|
56259
|
+
baseMergeDeep = __webpack_require__(559),
|
|
56270
56260
|
isObject = __webpack_require__(9),
|
|
56271
56261
|
keysIn = __webpack_require__(52),
|
|
56272
56262
|
safeGet = __webpack_require__(256);
|
|
@@ -56308,7 +56298,7 @@ module.exports = baseMerge;
|
|
|
56308
56298
|
|
|
56309
56299
|
|
|
56310
56300
|
/***/ }),
|
|
56311
|
-
/*
|
|
56301
|
+
/* 559 */
|
|
56312
56302
|
/***/ (function(module, exports, __webpack_require__) {
|
|
56313
56303
|
|
|
56314
56304
|
var assignMergeValue = __webpack_require__(255),
|
|
@@ -56325,7 +56315,7 @@ var assignMergeValue = __webpack_require__(255),
|
|
|
56325
56315
|
isPlainObject = __webpack_require__(136),
|
|
56326
56316
|
isTypedArray = __webpack_require__(86),
|
|
56327
56317
|
safeGet = __webpack_require__(256),
|
|
56328
|
-
toPlainObject = __webpack_require__(
|
|
56318
|
+
toPlainObject = __webpack_require__(560);
|
|
56329
56319
|
|
|
56330
56320
|
/**
|
|
56331
56321
|
* A specialized version of `baseMerge` for arrays and objects which performs
|
|
@@ -56408,7 +56398,7 @@ module.exports = baseMergeDeep;
|
|
|
56408
56398
|
|
|
56409
56399
|
|
|
56410
56400
|
/***/ }),
|
|
56411
|
-
/*
|
|
56401
|
+
/* 560 */
|
|
56412
56402
|
/***/ (function(module, exports, __webpack_require__) {
|
|
56413
56403
|
|
|
56414
56404
|
var copyObject = __webpack_require__(39),
|
|
@@ -56446,7 +56436,7 @@ module.exports = toPlainObject;
|
|
|
56446
56436
|
|
|
56447
56437
|
|
|
56448
56438
|
/***/ }),
|
|
56449
|
-
/*
|
|
56439
|
+
/* 561 */
|
|
56450
56440
|
/***/ (function(module, exports, __webpack_require__) {
|
|
56451
56441
|
|
|
56452
56442
|
"use strict";
|
|
@@ -56660,7 +56650,7 @@ module.exports = function normalizeConstraintInput(opt) {
|
|
|
56660
56650
|
};
|
|
56661
56651
|
|
|
56662
56652
|
/***/ }),
|
|
56663
|
-
/*
|
|
56653
|
+
/* 562 */
|
|
56664
56654
|
/***/ (function(module, exports, __webpack_require__) {
|
|
56665
56655
|
|
|
56666
56656
|
"use strict";
|
|
@@ -56757,7 +56747,7 @@ module.exports = shouldUseNative() ? Object.assign : function (target, source) {
|
|
|
56757
56747
|
|
|
56758
56748
|
|
|
56759
56749
|
/***/ }),
|
|
56760
|
-
/*
|
|
56750
|
+
/* 563 */
|
|
56761
56751
|
/***/ (function(module, exports, __webpack_require__) {
|
|
56762
56752
|
|
|
56763
56753
|
/* WEBPACK VAR INJECTION */(function(process, Promise) {// Copyright Joyent, Inc. and other Node contributors.
|
|
@@ -57295,7 +57285,7 @@ function isPrimitive(arg) {
|
|
|
57295
57285
|
}
|
|
57296
57286
|
exports.isPrimitive = isPrimitive;
|
|
57297
57287
|
|
|
57298
|
-
exports.isBuffer = __webpack_require__(
|
|
57288
|
+
exports.isBuffer = __webpack_require__(564);
|
|
57299
57289
|
|
|
57300
57290
|
function objectToString(o) {
|
|
57301
57291
|
return Object.prototype.toString.call(o);
|
|
@@ -57339,7 +57329,7 @@ exports.log = function() {
|
|
|
57339
57329
|
* prototype.
|
|
57340
57330
|
* @param {function} superCtor Constructor function to inherit prototype from.
|
|
57341
57331
|
*/
|
|
57342
|
-
exports.inherits = __webpack_require__(
|
|
57332
|
+
exports.inherits = __webpack_require__(565);
|
|
57343
57333
|
|
|
57344
57334
|
exports._extend = function(origin, add) {
|
|
57345
57335
|
// Don't do anything if add isn't an object
|
|
@@ -57467,7 +57457,7 @@ exports.callbackify = callbackify;
|
|
|
57467
57457
|
/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(69), __webpack_require__(0)))
|
|
57468
57458
|
|
|
57469
57459
|
/***/ }),
|
|
57470
|
-
/*
|
|
57460
|
+
/* 564 */
|
|
57471
57461
|
/***/ (function(module, exports) {
|
|
57472
57462
|
|
|
57473
57463
|
module.exports = function isBuffer(arg) {
|
|
@@ -57478,7 +57468,7 @@ module.exports = function isBuffer(arg) {
|
|
|
57478
57468
|
}
|
|
57479
57469
|
|
|
57480
57470
|
/***/ }),
|
|
57481
|
-
/*
|
|
57471
|
+
/* 565 */
|
|
57482
57472
|
/***/ (function(module, exports) {
|
|
57483
57473
|
|
|
57484
57474
|
if (typeof Object.create === 'function') {
|
|
@@ -57507,10 +57497,10 @@ if (typeof Object.create === 'function') {
|
|
|
57507
57497
|
|
|
57508
57498
|
|
|
57509
57499
|
/***/ }),
|
|
57510
|
-
/*
|
|
57500
|
+
/* 566 */
|
|
57511
57501
|
/***/ (function(module, exports, __webpack_require__) {
|
|
57512
57502
|
|
|
57513
|
-
var castSlice = __webpack_require__(
|
|
57503
|
+
var castSlice = __webpack_require__(567),
|
|
57514
57504
|
hasUnicode = __webpack_require__(261),
|
|
57515
57505
|
stringToArray = __webpack_require__(262),
|
|
57516
57506
|
toString = __webpack_require__(58);
|
|
@@ -57546,7 +57536,7 @@ module.exports = createCaseFirst;
|
|
|
57546
57536
|
|
|
57547
57537
|
|
|
57548
57538
|
/***/ }),
|
|
57549
|
-
/*
|
|
57539
|
+
/* 567 */
|
|
57550
57540
|
/***/ (function(module, exports, __webpack_require__) {
|
|
57551
57541
|
|
|
57552
57542
|
var baseSlice = __webpack_require__(260);
|
|
@@ -57570,7 +57560,7 @@ module.exports = castSlice;
|
|
|
57570
57560
|
|
|
57571
57561
|
|
|
57572
57562
|
/***/ }),
|
|
57573
|
-
/*
|
|
57563
|
+
/* 568 */
|
|
57574
57564
|
/***/ (function(module, exports) {
|
|
57575
57565
|
|
|
57576
57566
|
/**
|
|
@@ -57588,7 +57578,7 @@ module.exports = asciiToArray;
|
|
|
57588
57578
|
|
|
57589
57579
|
|
|
57590
57580
|
/***/ }),
|
|
57591
|
-
/*
|
|
57581
|
+
/* 569 */
|
|
57592
57582
|
/***/ (function(module, exports) {
|
|
57593
57583
|
|
|
57594
57584
|
/** Used to compose unicode character classes. */
|
|
@@ -57634,7 +57624,7 @@ module.exports = unicodeToArray;
|
|
|
57634
57624
|
|
|
57635
57625
|
|
|
57636
57626
|
/***/ }),
|
|
57637
|
-
/*
|
|
57627
|
+
/* 570 */
|
|
57638
57628
|
/***/ (function(module, exports, __webpack_require__) {
|
|
57639
57629
|
|
|
57640
57630
|
"use strict";
|
|
@@ -57643,7 +57633,7 @@ module.exports = unicodeToArray;
|
|
|
57643
57633
|
module.exports = ['screen', 'window', 'tab', 'browser', 'application'];
|
|
57644
57634
|
|
|
57645
57635
|
/***/ }),
|
|
57646
|
-
/*
|
|
57636
|
+
/* 571 */
|
|
57647
57637
|
/***/ (function(module, exports, __webpack_require__) {
|
|
57648
57638
|
|
|
57649
57639
|
"use strict";
|
|
@@ -57657,9 +57647,9 @@ const once = __webpack_require__(49);
|
|
|
57657
57647
|
|
|
57658
57648
|
const logLevels = __webpack_require__(120);
|
|
57659
57649
|
|
|
57660
|
-
const some = __webpack_require__(
|
|
57650
|
+
const some = __webpack_require__(573);
|
|
57661
57651
|
|
|
57662
|
-
const map = __webpack_require__(
|
|
57652
|
+
const map = __webpack_require__(576);
|
|
57663
57653
|
|
|
57664
57654
|
const PATH_TO_RELEASE_NOTES = '/opentok/webrtc/docs/js/release-notes.html';
|
|
57665
57655
|
const staticConfig = StaticConfig.onlyLocal();
|
|
@@ -57776,7 +57766,7 @@ module.exports = setLogLevel;
|
|
|
57776
57766
|
*/
|
|
57777
57767
|
|
|
57778
57768
|
/***/ }),
|
|
57779
|
-
/*
|
|
57769
|
+
/* 572 */
|
|
57780
57770
|
/***/ (function(module, exports, __webpack_require__) {
|
|
57781
57771
|
|
|
57782
57772
|
var toInteger = __webpack_require__(97);
|
|
@@ -57822,12 +57812,12 @@ module.exports = before;
|
|
|
57822
57812
|
|
|
57823
57813
|
|
|
57824
57814
|
/***/ }),
|
|
57825
|
-
/*
|
|
57815
|
+
/* 573 */
|
|
57826
57816
|
/***/ (function(module, exports, __webpack_require__) {
|
|
57827
57817
|
|
|
57828
57818
|
var arraySome = __webpack_require__(231),
|
|
57829
57819
|
baseIteratee = __webpack_require__(33),
|
|
57830
|
-
baseSome = __webpack_require__(
|
|
57820
|
+
baseSome = __webpack_require__(574),
|
|
57831
57821
|
isArray = __webpack_require__(10),
|
|
57832
57822
|
isIterateeCall = __webpack_require__(123);
|
|
57833
57823
|
|
|
@@ -57879,7 +57869,7 @@ module.exports = some;
|
|
|
57879
57869
|
|
|
57880
57870
|
|
|
57881
57871
|
/***/ }),
|
|
57882
|
-
/*
|
|
57872
|
+
/* 574 */
|
|
57883
57873
|
/***/ (function(module, exports, __webpack_require__) {
|
|
57884
57874
|
|
|
57885
57875
|
var baseEach = __webpack_require__(266);
|
|
@@ -57907,7 +57897,7 @@ module.exports = baseSome;
|
|
|
57907
57897
|
|
|
57908
57898
|
|
|
57909
57899
|
/***/ }),
|
|
57910
|
-
/*
|
|
57900
|
+
/* 575 */
|
|
57911
57901
|
/***/ (function(module, exports, __webpack_require__) {
|
|
57912
57902
|
|
|
57913
57903
|
var isArrayLike = __webpack_require__(24);
|
|
@@ -57945,12 +57935,12 @@ module.exports = createBaseEach;
|
|
|
57945
57935
|
|
|
57946
57936
|
|
|
57947
57937
|
/***/ }),
|
|
57948
|
-
/*
|
|
57938
|
+
/* 576 */
|
|
57949
57939
|
/***/ (function(module, exports, __webpack_require__) {
|
|
57950
57940
|
|
|
57951
57941
|
var arrayMap = __webpack_require__(32),
|
|
57952
57942
|
baseIteratee = __webpack_require__(33),
|
|
57953
|
-
baseMap = __webpack_require__(
|
|
57943
|
+
baseMap = __webpack_require__(577),
|
|
57954
57944
|
isArray = __webpack_require__(10);
|
|
57955
57945
|
|
|
57956
57946
|
/**
|
|
@@ -58004,7 +57994,7 @@ module.exports = map;
|
|
|
58004
57994
|
|
|
58005
57995
|
|
|
58006
57996
|
/***/ }),
|
|
58007
|
-
/*
|
|
57997
|
+
/* 577 */
|
|
58008
57998
|
/***/ (function(module, exports, __webpack_require__) {
|
|
58009
57999
|
|
|
58010
58000
|
var baseEach = __webpack_require__(266),
|
|
@@ -58032,7 +58022,7 @@ module.exports = baseMap;
|
|
|
58032
58022
|
|
|
58033
58023
|
|
|
58034
58024
|
/***/ }),
|
|
58035
|
-
/*
|
|
58025
|
+
/* 578 */
|
|
58036
58026
|
/***/ (function(module, exports, __webpack_require__) {
|
|
58037
58027
|
|
|
58038
58028
|
"use strict";
|
|
@@ -58050,7 +58040,7 @@ module.exports = function fixBackgroundImageURI(bgImgURI) {
|
|
|
58050
58040
|
};
|
|
58051
58041
|
|
|
58052
58042
|
/***/ }),
|
|
58053
|
-
/*
|
|
58043
|
+
/* 579 */
|
|
58054
58044
|
/***/ (function(module, exports, __webpack_require__) {
|
|
58055
58045
|
|
|
58056
58046
|
"use strict";
|
|
@@ -58163,7 +58153,7 @@ module.exports = function Style(initalStyles, onStyleChange) {
|
|
|
58163
58153
|
};
|
|
58164
58154
|
|
|
58165
58155
|
/***/ }),
|
|
58166
|
-
/*
|
|
58156
|
+
/* 580 */
|
|
58167
58157
|
/***/ (function(module, exports, __webpack_require__) {
|
|
58168
58158
|
|
|
58169
58159
|
"use strict";
|
|
@@ -58186,7 +58176,7 @@ module.exports = function styleHashLogFilter(styleHashInput) {
|
|
|
58186
58176
|
};
|
|
58187
58177
|
|
|
58188
58178
|
/***/ }),
|
|
58189
|
-
/*
|
|
58179
|
+
/* 581 */
|
|
58190
58180
|
/***/ (function(module, exports, __webpack_require__) {
|
|
58191
58181
|
|
|
58192
58182
|
"use strict";
|
|
@@ -58213,7 +58203,7 @@ const hasGetUserMediaSupport = () => {
|
|
|
58213
58203
|
module.exports = () => Boolean(env.name !== 'Node' && hasGetUserMediaSupport());
|
|
58214
58204
|
|
|
58215
58205
|
/***/ }),
|
|
58216
|
-
/*
|
|
58206
|
+
/* 582 */
|
|
58217
58207
|
/***/ (function(module, exports, __webpack_require__) {
|
|
58218
58208
|
|
|
58219
58209
|
"use strict";
|
|
@@ -58249,7 +58239,7 @@ module.exports = () => {
|
|
|
58249
58239
|
};
|
|
58250
58240
|
|
|
58251
58241
|
/***/ }),
|
|
58252
|
-
/*
|
|
58242
|
+
/* 583 */
|
|
58253
58243
|
/***/ (function(module, exports, __webpack_require__) {
|
|
58254
58244
|
|
|
58255
58245
|
"use strict";
|
|
@@ -58259,13 +58249,13 @@ module.exports = () => {
|
|
|
58259
58249
|
module.exports = (typeof window !== undefined ? window : global).WebSocket !== undefined;
|
|
58260
58250
|
|
|
58261
58251
|
/***/ }),
|
|
58262
|
-
/*
|
|
58252
|
+
/* 584 */
|
|
58263
58253
|
/***/ (function(module, exports) {
|
|
58264
58254
|
|
|
58265
58255
|
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>";
|
|
58266
58256
|
|
|
58267
58257
|
/***/ }),
|
|
58268
|
-
/*
|
|
58258
|
+
/* 585 */
|
|
58269
58259
|
/***/ (function(module, exports, __webpack_require__) {
|
|
58270
58260
|
|
|
58271
58261
|
"use strict";
|
|
@@ -58339,16 +58329,16 @@ module.exports = /*#__PURE__*/function (_Events) {
|
|
|
58339
58329
|
}(Events);
|
|
58340
58330
|
|
|
58341
58331
|
/***/ }),
|
|
58342
|
-
/*
|
|
58332
|
+
/* 586 */
|
|
58343
58333
|
/***/ (function(module, exports, __webpack_require__) {
|
|
58344
58334
|
|
|
58345
|
-
var getPrototypeOf = __webpack_require__(
|
|
58335
|
+
var getPrototypeOf = __webpack_require__(587);
|
|
58346
58336
|
|
|
58347
58337
|
var setPrototypeOf = __webpack_require__(270);
|
|
58348
58338
|
|
|
58349
|
-
var isNativeFunction = __webpack_require__(
|
|
58339
|
+
var isNativeFunction = __webpack_require__(588);
|
|
58350
58340
|
|
|
58351
|
-
var construct = __webpack_require__(
|
|
58341
|
+
var construct = __webpack_require__(589);
|
|
58352
58342
|
|
|
58353
58343
|
function _wrapNativeSuper(Class) {
|
|
58354
58344
|
var _cache = typeof Map === "function" ? new Map() : undefined;
|
|
@@ -58387,7 +58377,7 @@ function _wrapNativeSuper(Class) {
|
|
|
58387
58377
|
module.exports = _wrapNativeSuper;
|
|
58388
58378
|
|
|
58389
58379
|
/***/ }),
|
|
58390
|
-
/*
|
|
58380
|
+
/* 587 */
|
|
58391
58381
|
/***/ (function(module, exports) {
|
|
58392
58382
|
|
|
58393
58383
|
function _getPrototypeOf(o) {
|
|
@@ -58400,7 +58390,7 @@ function _getPrototypeOf(o) {
|
|
|
58400
58390
|
module.exports = _getPrototypeOf;
|
|
58401
58391
|
|
|
58402
58392
|
/***/ }),
|
|
58403
|
-
/*
|
|
58393
|
+
/* 588 */
|
|
58404
58394
|
/***/ (function(module, exports) {
|
|
58405
58395
|
|
|
58406
58396
|
function _isNativeFunction(fn) {
|
|
@@ -58410,7 +58400,7 @@ function _isNativeFunction(fn) {
|
|
|
58410
58400
|
module.exports = _isNativeFunction;
|
|
58411
58401
|
|
|
58412
58402
|
/***/ }),
|
|
58413
|
-
/*
|
|
58403
|
+
/* 589 */
|
|
58414
58404
|
/***/ (function(module, exports, __webpack_require__) {
|
|
58415
58405
|
|
|
58416
58406
|
var setPrototypeOf = __webpack_require__(270);
|
|
@@ -58448,7 +58438,7 @@ function _construct(Parent, args, Class) {
|
|
|
58448
58438
|
module.exports = _construct;
|
|
58449
58439
|
|
|
58450
58440
|
/***/ }),
|
|
58451
|
-
/*
|
|
58441
|
+
/* 590 */
|
|
58452
58442
|
/***/ (function(module, exports, __webpack_require__) {
|
|
58453
58443
|
|
|
58454
58444
|
"use strict";
|
|
@@ -58468,12 +58458,12 @@ module.exports = (promise, onFinally) => {
|
|
|
58468
58458
|
/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(0)))
|
|
58469
58459
|
|
|
58470
58460
|
/***/ }),
|
|
58471
|
-
/*
|
|
58461
|
+
/* 591 */
|
|
58472
58462
|
/***/ (function(module, exports, __webpack_require__) {
|
|
58473
58463
|
|
|
58474
58464
|
var castPath = __webpack_require__(57),
|
|
58475
|
-
last = __webpack_require__(
|
|
58476
|
-
parent = __webpack_require__(
|
|
58465
|
+
last = __webpack_require__(592),
|
|
58466
|
+
parent = __webpack_require__(593),
|
|
58477
58467
|
toKey = __webpack_require__(46);
|
|
58478
58468
|
|
|
58479
58469
|
/**
|
|
@@ -58494,7 +58484,7 @@ module.exports = baseUnset;
|
|
|
58494
58484
|
|
|
58495
58485
|
|
|
58496
58486
|
/***/ }),
|
|
58497
|
-
/*
|
|
58487
|
+
/* 592 */
|
|
58498
58488
|
/***/ (function(module, exports) {
|
|
58499
58489
|
|
|
58500
58490
|
/**
|
|
@@ -58520,7 +58510,7 @@ module.exports = last;
|
|
|
58520
58510
|
|
|
58521
58511
|
|
|
58522
58512
|
/***/ }),
|
|
58523
|
-
/*
|
|
58513
|
+
/* 593 */
|
|
58524
58514
|
/***/ (function(module, exports, __webpack_require__) {
|
|
58525
58515
|
|
|
58526
58516
|
var baseGet = __webpack_require__(99),
|
|
@@ -58542,7 +58532,7 @@ module.exports = parent;
|
|
|
58542
58532
|
|
|
58543
58533
|
|
|
58544
58534
|
/***/ }),
|
|
58545
|
-
/*
|
|
58535
|
+
/* 594 */
|
|
58546
58536
|
/***/ (function(module, exports, __webpack_require__) {
|
|
58547
58537
|
|
|
58548
58538
|
var isPlainObject = __webpack_require__(136);
|
|
@@ -58564,7 +58554,7 @@ module.exports = customOmitClone;
|
|
|
58564
58554
|
|
|
58565
58555
|
|
|
58566
58556
|
/***/ }),
|
|
58567
|
-
/*
|
|
58557
|
+
/* 595 */
|
|
58568
58558
|
/***/ (function(module, exports, __webpack_require__) {
|
|
58569
58559
|
|
|
58570
58560
|
var baseIteratee = __webpack_require__(33),
|
|
@@ -58595,14 +58585,14 @@ module.exports = createFind;
|
|
|
58595
58585
|
|
|
58596
58586
|
|
|
58597
58587
|
/***/ }),
|
|
58598
|
-
/*
|
|
58588
|
+
/* 596 */
|
|
58599
58589
|
/***/ (function(module, exports, __webpack_require__) {
|
|
58600
58590
|
|
|
58601
58591
|
var SetCache = __webpack_require__(93),
|
|
58602
58592
|
arrayIncludes = __webpack_require__(94),
|
|
58603
58593
|
arrayIncludesWith = __webpack_require__(129),
|
|
58604
58594
|
cacheHas = __webpack_require__(95),
|
|
58605
|
-
createSet = __webpack_require__(
|
|
58595
|
+
createSet = __webpack_require__(597),
|
|
58606
58596
|
setToArray = __webpack_require__(98);
|
|
58607
58597
|
|
|
58608
58598
|
/** Used as the size to enable large array optimizations. */
|
|
@@ -58673,7 +58663,7 @@ module.exports = baseUniq;
|
|
|
58673
58663
|
|
|
58674
58664
|
|
|
58675
58665
|
/***/ }),
|
|
58676
|
-
/*
|
|
58666
|
+
/* 597 */
|
|
58677
58667
|
/***/ (function(module, exports, __webpack_require__) {
|
|
58678
58668
|
|
|
58679
58669
|
var Set = __webpack_require__(185),
|
|
@@ -58698,7 +58688,7 @@ module.exports = createSet;
|
|
|
58698
58688
|
|
|
58699
58689
|
|
|
58700
58690
|
/***/ }),
|
|
58701
|
-
/*
|
|
58691
|
+
/* 598 */
|
|
58702
58692
|
/***/ (function(module, exports, __webpack_require__) {
|
|
58703
58693
|
|
|
58704
58694
|
"use strict";
|
|
@@ -58797,7 +58787,7 @@ module.exports = hasValidPeerConnection;
|
|
|
58797
58787
|
/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(0)))
|
|
58798
58788
|
|
|
58799
58789
|
/***/ }),
|
|
58800
|
-
/*
|
|
58790
|
+
/* 599 */
|
|
58801
58791
|
/***/ (function(module, exports, __webpack_require__) {
|
|
58802
58792
|
|
|
58803
58793
|
/**
|
|
@@ -58824,7 +58814,7 @@ var oldRuntime = hadRuntime && g.regeneratorRuntime;
|
|
|
58824
58814
|
// Force reevalutation of runtime.js.
|
|
58825
58815
|
g.regeneratorRuntime = undefined;
|
|
58826
58816
|
|
|
58827
|
-
module.exports = __webpack_require__(
|
|
58817
|
+
module.exports = __webpack_require__(600);
|
|
58828
58818
|
|
|
58829
58819
|
if (hadRuntime) {
|
|
58830
58820
|
// Restore the original runtime.
|
|
@@ -58840,7 +58830,7 @@ if (hadRuntime) {
|
|
|
58840
58830
|
|
|
58841
58831
|
|
|
58842
58832
|
/***/ }),
|
|
58843
|
-
/*
|
|
58833
|
+
/* 600 */
|
|
58844
58834
|
/***/ (function(module, exports, __webpack_require__) {
|
|
58845
58835
|
|
|
58846
58836
|
/* WEBPACK VAR INJECTION */(function(Promise) {/**
|
|
@@ -59568,7 +59558,7 @@ if (hadRuntime) {
|
|
|
59568
59558
|
/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(0)))
|
|
59569
59559
|
|
|
59570
59560
|
/***/ }),
|
|
59571
|
-
/*
|
|
59561
|
+
/* 601 */
|
|
59572
59562
|
/***/ (function(module, exports, __webpack_require__) {
|
|
59573
59563
|
|
|
59574
59564
|
"use strict";
|
|
@@ -59578,7 +59568,7 @@ const clone = __webpack_require__(36);
|
|
|
59578
59568
|
|
|
59579
59569
|
const env = __webpack_require__(3);
|
|
59580
59570
|
|
|
59581
|
-
const filterIceServers = __webpack_require__(
|
|
59571
|
+
const filterIceServers = __webpack_require__(602);
|
|
59582
59572
|
|
|
59583
59573
|
const shouldUsePlanBSDP = __webpack_require__(73);
|
|
59584
59574
|
|
|
@@ -59602,7 +59592,7 @@ module.exports = function createPeerConnection(_ref) {
|
|
|
59602
59592
|
/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(0)))
|
|
59603
59593
|
|
|
59604
59594
|
/***/ }),
|
|
59605
|
-
/*
|
|
59595
|
+
/* 602 */
|
|
59606
59596
|
/***/ (function(module, exports, __webpack_require__) {
|
|
59607
59597
|
|
|
59608
59598
|
"use strict";
|
|
@@ -59679,7 +59669,7 @@ module.exports = function filterIceServers(env, iceServers) {
|
|
|
59679
59669
|
};
|
|
59680
59670
|
|
|
59681
59671
|
/***/ }),
|
|
59682
|
-
/*
|
|
59672
|
+
/* 603 */
|
|
59683
59673
|
/***/ (function(module, exports, __webpack_require__) {
|
|
59684
59674
|
|
|
59685
59675
|
"use strict";
|
|
@@ -59859,7 +59849,7 @@ module.exports = {
|
|
|
59859
59849
|
};
|
|
59860
59850
|
|
|
59861
59851
|
/***/ }),
|
|
59862
|
-
/*
|
|
59852
|
+
/* 604 */
|
|
59863
59853
|
/***/ (function(module, exports, __webpack_require__) {
|
|
59864
59854
|
|
|
59865
59855
|
var Symbol = __webpack_require__(38),
|
|
@@ -59867,7 +59857,7 @@ var Symbol = __webpack_require__(38),
|
|
|
59867
59857
|
getTag = __webpack_require__(40),
|
|
59868
59858
|
isArrayLike = __webpack_require__(24),
|
|
59869
59859
|
isString = __webpack_require__(275),
|
|
59870
|
-
iteratorToArray = __webpack_require__(
|
|
59860
|
+
iteratorToArray = __webpack_require__(605),
|
|
59871
59861
|
mapToArray = __webpack_require__(232),
|
|
59872
59862
|
setToArray = __webpack_require__(98),
|
|
59873
59863
|
stringToArray = __webpack_require__(262),
|
|
@@ -59923,7 +59913,7 @@ module.exports = toArray;
|
|
|
59923
59913
|
|
|
59924
59914
|
|
|
59925
59915
|
/***/ }),
|
|
59926
|
-
/*
|
|
59916
|
+
/* 605 */
|
|
59927
59917
|
/***/ (function(module, exports) {
|
|
59928
59918
|
|
|
59929
59919
|
/**
|
|
@@ -59947,7 +59937,7 @@ module.exports = iteratorToArray;
|
|
|
59947
59937
|
|
|
59948
59938
|
|
|
59949
59939
|
/***/ }),
|
|
59950
|
-
/*
|
|
59940
|
+
/* 606 */
|
|
59951
59941
|
/***/ (function(module, exports, __webpack_require__) {
|
|
59952
59942
|
|
|
59953
59943
|
var arrayMap = __webpack_require__(32);
|
|
@@ -59972,7 +59962,7 @@ module.exports = baseValues;
|
|
|
59972
59962
|
|
|
59973
59963
|
|
|
59974
59964
|
/***/ }),
|
|
59975
|
-
/*
|
|
59965
|
+
/* 607 */
|
|
59976
59966
|
/***/ (function(module, exports, __webpack_require__) {
|
|
59977
59967
|
|
|
59978
59968
|
"use strict";
|
|
@@ -59998,7 +59988,7 @@ module.exports = (peerConnection, completion) => {
|
|
|
59998
59988
|
};
|
|
59999
59989
|
|
|
60000
59990
|
/***/ }),
|
|
60001
|
-
/*
|
|
59991
|
+
/* 608 */
|
|
60002
59992
|
/***/ (function(module, exports, __webpack_require__) {
|
|
60003
59993
|
|
|
60004
59994
|
"use strict";
|
|
@@ -60007,7 +59997,7 @@ module.exports = (peerConnection, completion) => {
|
|
|
60007
59997
|
// @todo enable the following disabled rules see OPENTOK-31136 for more info
|
|
60008
59998
|
|
|
60009
59999
|
/* eslint-disable no-underscore-dangle */
|
|
60010
|
-
const promisify = __webpack_require__(
|
|
60000
|
+
const promisify = __webpack_require__(609);
|
|
60011
60001
|
/*
|
|
60012
60002
|
* Process incoming Ice Candidates from a remote connection.
|
|
60013
60003
|
*
|
|
@@ -60152,7 +60142,7 @@ module.exports = IceCandidateProcessor;
|
|
|
60152
60142
|
/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(0)))
|
|
60153
60143
|
|
|
60154
60144
|
/***/ }),
|
|
60155
|
-
/*
|
|
60145
|
+
/* 609 */
|
|
60156
60146
|
/***/ (function(module, exports, __webpack_require__) {
|
|
60157
60147
|
|
|
60158
60148
|
"use strict";
|
|
@@ -60177,7 +60167,7 @@ module.exports = function promisify(context, methodName) {
|
|
|
60177
60167
|
/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(0)))
|
|
60178
60168
|
|
|
60179
60169
|
/***/ }),
|
|
60180
|
-
/*
|
|
60170
|
+
/* 610 */
|
|
60181
60171
|
/***/ (function(module, exports, __webpack_require__) {
|
|
60182
60172
|
|
|
60183
60173
|
"use strict";
|
|
@@ -60194,7 +60184,7 @@ const logging = __webpack_require__(1)('offerProcessor');
|
|
|
60194
60184
|
|
|
60195
60185
|
const SDPHelpers = __webpack_require__(50);
|
|
60196
60186
|
|
|
60197
|
-
const testSupportVideo = __webpack_require__(
|
|
60187
|
+
const testSupportVideo = __webpack_require__(611); // Attempt to completely process +offer+. This will:
|
|
60198
60188
|
// * set the offer as the remote description
|
|
60199
60189
|
// * create an answer and
|
|
60200
60190
|
// * set the new answer as the location description
|
|
@@ -60267,7 +60257,7 @@ module.exports = function offerProcessor(peerConnection, RTCPeerConnection, RTCS
|
|
|
60267
60257
|
};
|
|
60268
60258
|
|
|
60269
60259
|
/***/ }),
|
|
60270
|
-
/*
|
|
60260
|
+
/* 611 */
|
|
60271
60261
|
/***/ (function(module, exports, __webpack_require__) {
|
|
60272
60262
|
|
|
60273
60263
|
"use strict";
|
|
@@ -60309,7 +60299,7 @@ module.exports = testSupportVideo;
|
|
|
60309
60299
|
/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(0)))
|
|
60310
60300
|
|
|
60311
60301
|
/***/ }),
|
|
60312
|
-
/*
|
|
60302
|
+
/* 612 */
|
|
60313
60303
|
/***/ (function(module, exports, __webpack_require__) {
|
|
60314
60304
|
|
|
60315
60305
|
"use strict";
|
|
@@ -60320,7 +60310,7 @@ module.exports = testSupportVideo;
|
|
|
60320
60310
|
/* eslint-disable no-restricted-syntax, no-prototype-builtins */
|
|
60321
60311
|
const find = __webpack_require__(61);
|
|
60322
60312
|
|
|
60323
|
-
const DataChannel = __webpack_require__(
|
|
60313
|
+
const DataChannel = __webpack_require__(613); // Contains a collection of DataChannels for a particular RTCPeerConnection
|
|
60324
60314
|
//
|
|
60325
60315
|
// @param [RTCPeerConnection] pc A native peer connection object
|
|
60326
60316
|
//
|
|
@@ -60415,7 +60405,7 @@ module.exports = function PeerConnectionChannels(pc) {
|
|
|
60415
60405
|
};
|
|
60416
60406
|
|
|
60417
60407
|
/***/ }),
|
|
60418
|
-
/*
|
|
60408
|
+
/* 613 */
|
|
60419
60409
|
/***/ (function(module, exports, __webpack_require__) {
|
|
60420
60410
|
|
|
60421
60411
|
"use strict";
|
|
@@ -60583,7 +60573,7 @@ module.exports = function DataChannel(dataChannel) {
|
|
|
60583
60573
|
};
|
|
60584
60574
|
|
|
60585
60575
|
/***/ }),
|
|
60586
|
-
/*
|
|
60576
|
+
/* 614 */
|
|
60587
60577
|
/***/ (function(module, exports, __webpack_require__) {
|
|
60588
60578
|
|
|
60589
60579
|
"use strict";
|
|
@@ -60648,7 +60638,7 @@ module.exports = function subscribeProcessor(_ref) {
|
|
|
60648
60638
|
};
|
|
60649
60639
|
|
|
60650
60640
|
/***/ }),
|
|
60651
|
-
/*
|
|
60641
|
+
/* 615 */
|
|
60652
60642
|
/***/ (function(module, exports, __webpack_require__) {
|
|
60653
60643
|
|
|
60654
60644
|
"use strict";
|
|
@@ -60722,7 +60712,7 @@ module.exports = {
|
|
|
60722
60712
|
};
|
|
60723
60713
|
|
|
60724
60714
|
/***/ }),
|
|
60725
|
-
/*
|
|
60715
|
+
/* 616 */
|
|
60726
60716
|
/***/ (function(module, exports, __webpack_require__) {
|
|
60727
60717
|
|
|
60728
60718
|
"use strict";
|
|
@@ -60752,7 +60742,7 @@ const sdpHelpers = __webpack_require__(50);
|
|
|
60752
60742
|
|
|
60753
60743
|
const getProtocolFromPriority = __webpack_require__(279);
|
|
60754
60744
|
|
|
60755
|
-
const getLocalRelayProtocol = __webpack_require__(
|
|
60745
|
+
const getLocalRelayProtocol = __webpack_require__(617);
|
|
60756
60746
|
|
|
60757
60747
|
const shouldUseStandardGetStats = __webpack_require__(103)();
|
|
60758
60748
|
|
|
@@ -61154,7 +61144,7 @@ function extendStats(stats, isPublisher) {
|
|
|
61154
61144
|
}
|
|
61155
61145
|
|
|
61156
61146
|
/***/ }),
|
|
61157
|
-
/*
|
|
61147
|
+
/* 617 */
|
|
61158
61148
|
/***/ (function(module, exports, __webpack_require__) {
|
|
61159
61149
|
|
|
61160
61150
|
"use strict";
|
|
@@ -61195,7 +61185,7 @@ module.exports = (selectedCandidatePairId, stats) => {
|
|
|
61195
61185
|
};
|
|
61196
61186
|
|
|
61197
61187
|
/***/ }),
|
|
61198
|
-
/*
|
|
61188
|
+
/* 618 */
|
|
61199
61189
|
/***/ (function(module, exports, __webpack_require__) {
|
|
61200
61190
|
|
|
61201
61191
|
"use strict";
|
|
@@ -61236,11 +61226,11 @@ let TruthyChangeCounter = /*#__PURE__*/function () {
|
|
|
61236
61226
|
exports.default = TruthyChangeCounter;
|
|
61237
61227
|
|
|
61238
61228
|
/***/ }),
|
|
61239
|
-
/*
|
|
61229
|
+
/* 619 */
|
|
61240
61230
|
/***/ (function(module, exports, __webpack_require__) {
|
|
61241
61231
|
|
|
61242
61232
|
var isObject = __webpack_require__(9),
|
|
61243
|
-
now = __webpack_require__(
|
|
61233
|
+
now = __webpack_require__(620),
|
|
61244
61234
|
toNumber = __webpack_require__(228);
|
|
61245
61235
|
|
|
61246
61236
|
/** Error message constants. */
|
|
@@ -61433,7 +61423,7 @@ module.exports = debounce;
|
|
|
61433
61423
|
|
|
61434
61424
|
|
|
61435
61425
|
/***/ }),
|
|
61436
|
-
/*
|
|
61426
|
+
/* 620 */
|
|
61437
61427
|
/***/ (function(module, exports, __webpack_require__) {
|
|
61438
61428
|
|
|
61439
61429
|
var root = __webpack_require__(14);
|
|
@@ -61462,7 +61452,7 @@ module.exports = now;
|
|
|
61462
61452
|
|
|
61463
61453
|
|
|
61464
61454
|
/***/ }),
|
|
61465
|
-
/*
|
|
61455
|
+
/* 621 */
|
|
61466
61456
|
/***/ (function(module, exports, __webpack_require__) {
|
|
61467
61457
|
|
|
61468
61458
|
"use strict";
|
|
@@ -61487,7 +61477,7 @@ exports.check = function (deps) {
|
|
|
61487
61477
|
exports.once = once(() => exports.check());
|
|
61488
61478
|
|
|
61489
61479
|
/***/ }),
|
|
61490
|
-
/*
|
|
61480
|
+
/* 622 */
|
|
61491
61481
|
/***/ (function(module, exports, __webpack_require__) {
|
|
61492
61482
|
|
|
61493
61483
|
"use strict";
|
|
@@ -61618,7 +61608,7 @@ module.exports = function Archiving(options) {
|
|
|
61618
61608
|
};
|
|
61619
61609
|
|
|
61620
61610
|
/***/ }),
|
|
61621
|
-
/*
|
|
61611
|
+
/* 623 */
|
|
61622
61612
|
/***/ (function(module, exports, __webpack_require__) {
|
|
61623
61613
|
|
|
61624
61614
|
"use strict";
|
|
@@ -61634,7 +61624,7 @@ module.exports = function (deps) {
|
|
|
61634
61624
|
};
|
|
61635
61625
|
|
|
61636
61626
|
/***/ }),
|
|
61637
|
-
/*
|
|
61627
|
+
/* 624 */
|
|
61638
61628
|
/***/ (function(module, exports, __webpack_require__) {
|
|
61639
61629
|
|
|
61640
61630
|
"use strict";
|
|
@@ -61651,7 +61641,7 @@ const isObject = __webpack_require__(9);
|
|
|
61651
61641
|
|
|
61652
61642
|
const promiseDelay = __webpack_require__(107);
|
|
61653
61643
|
|
|
61654
|
-
const trackUsage = __webpack_require__(
|
|
61644
|
+
const trackUsage = __webpack_require__(625);
|
|
61655
61645
|
|
|
61656
61646
|
const AnalyticsHelper = __webpack_require__(34);
|
|
61657
61647
|
|
|
@@ -62043,7 +62033,7 @@ module.exports = function getUserMediaFactory(deps) {
|
|
|
62043
62033
|
/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(0)))
|
|
62044
62034
|
|
|
62045
62035
|
/***/ }),
|
|
62046
|
-
/*
|
|
62036
|
+
/* 625 */
|
|
62047
62037
|
/***/ (function(module, exports, __webpack_require__) {
|
|
62048
62038
|
|
|
62049
62039
|
"use strict";
|
|
@@ -62090,7 +62080,7 @@ module.exports = function (_temp) {
|
|
|
62090
62080
|
};
|
|
62091
62081
|
|
|
62092
62082
|
/***/ }),
|
|
62093
|
-
/*
|
|
62083
|
+
/* 626 */
|
|
62094
62084
|
/***/ (function(module, exports, __webpack_require__) {
|
|
62095
62085
|
|
|
62096
62086
|
"use strict";
|
|
@@ -62098,7 +62088,7 @@ module.exports = function (_temp) {
|
|
|
62098
62088
|
|
|
62099
62089
|
const env = __webpack_require__(3);
|
|
62100
62090
|
|
|
62101
|
-
const _require = __webpack_require__(
|
|
62091
|
+
const _require = __webpack_require__(627),
|
|
62102
62092
|
isCallbackBasedAPI = _require.isCallbackBasedAPI;
|
|
62103
62093
|
|
|
62104
62094
|
let isElectronScreenSharingSource = __webpack_require__(265);
|
|
@@ -62224,7 +62214,7 @@ module.exports = function electronExtensionHelperFactory(deps) {
|
|
|
62224
62214
|
};
|
|
62225
62215
|
|
|
62226
62216
|
/***/ }),
|
|
62227
|
-
/*
|
|
62217
|
+
/* 627 */
|
|
62228
62218
|
/***/ (function(module, exports, __webpack_require__) {
|
|
62229
62219
|
|
|
62230
62220
|
"use strict";
|
|
@@ -62242,7 +62232,7 @@ module.exports = {
|
|
|
62242
62232
|
};
|
|
62243
62233
|
|
|
62244
62234
|
/***/ }),
|
|
62245
|
-
/*
|
|
62235
|
+
/* 628 */
|
|
62246
62236
|
/***/ (function(module, exports, __webpack_require__) {
|
|
62247
62237
|
|
|
62248
62238
|
"use strict";
|
|
@@ -62310,7 +62300,7 @@ module.exports = {
|
|
|
62310
62300
|
};
|
|
62311
62301
|
|
|
62312
62302
|
/***/ }),
|
|
62313
|
-
/*
|
|
62303
|
+
/* 629 */
|
|
62314
62304
|
/***/ (function(module, exports, __webpack_require__) {
|
|
62315
62305
|
|
|
62316
62306
|
"use strict";
|
|
@@ -62324,7 +62314,7 @@ var _asyncToGenerator2 = _interopRequireDefault(__webpack_require__(13));
|
|
|
62324
62314
|
|
|
62325
62315
|
var _extends2 = _interopRequireDefault(__webpack_require__(25));
|
|
62326
62316
|
|
|
62327
|
-
const _require = __webpack_require__(
|
|
62317
|
+
const _require = __webpack_require__(630),
|
|
62328
62318
|
normaliseOptions = _require.normaliseOptions;
|
|
62329
62319
|
|
|
62330
62320
|
const _require2 = __webpack_require__(288),
|
|
@@ -62383,7 +62373,7 @@ module.exports = function processPubOptionsFactory(deps) {
|
|
|
62383
62373
|
|
|
62384
62374
|
const env = deps.env || defaultEnv;
|
|
62385
62375
|
|
|
62386
|
-
const usingOptionalMandatoryStyle = __webpack_require__(
|
|
62376
|
+
const usingOptionalMandatoryStyle = __webpack_require__(631)({
|
|
62387
62377
|
navigator: navigator || {}
|
|
62388
62378
|
});
|
|
62389
62379
|
|
|
@@ -62728,7 +62718,7 @@ module.exports = function processPubOptionsFactory(deps) {
|
|
|
62728
62718
|
};
|
|
62729
62719
|
|
|
62730
62720
|
/***/ }),
|
|
62731
|
-
/*
|
|
62721
|
+
/* 630 */
|
|
62732
62722
|
/***/ (function(module, exports, __webpack_require__) {
|
|
62733
62723
|
|
|
62734
62724
|
"use strict";
|
|
@@ -62785,7 +62775,7 @@ const normaliseOptions = (originalOptions, logPrefix, logging) => {
|
|
|
62785
62775
|
exports.normaliseOptions = normaliseOptions;
|
|
62786
62776
|
|
|
62787
62777
|
/***/ }),
|
|
62788
|
-
/*
|
|
62778
|
+
/* 631 */
|
|
62789
62779
|
/***/ (function(module, exports, __webpack_require__) {
|
|
62790
62780
|
|
|
62791
62781
|
"use strict";
|
|
@@ -62820,7 +62810,7 @@ module.exports = function usingOptionalMandatoryStyleFactory(_temp) {
|
|
|
62820
62810
|
};
|
|
62821
62811
|
|
|
62822
62812
|
/***/ }),
|
|
62823
|
-
/*
|
|
62813
|
+
/* 632 */
|
|
62824
62814
|
/***/ (function(module, exports, __webpack_require__) {
|
|
62825
62815
|
|
|
62826
62816
|
"use strict";
|
|
@@ -62914,7 +62904,7 @@ module.exports = function getUserMediaFactory(deps) {
|
|
|
62914
62904
|
};
|
|
62915
62905
|
|
|
62916
62906
|
/***/ }),
|
|
62917
|
-
/*
|
|
62907
|
+
/* 633 */
|
|
62918
62908
|
/***/ (function(module, exports, __webpack_require__) {
|
|
62919
62909
|
|
|
62920
62910
|
"use strict";
|
|
@@ -62939,7 +62929,7 @@ module.exports = function destroyObj(name, obj) {
|
|
|
62939
62929
|
};
|
|
62940
62930
|
|
|
62941
62931
|
/***/ }),
|
|
62942
|
-
/*
|
|
62932
|
+
/* 634 */
|
|
62943
62933
|
/***/ (function(module, exports, __webpack_require__) {
|
|
62944
62934
|
|
|
62945
62935
|
"use strict";
|
|
@@ -63001,7 +62991,7 @@ module.exports = el => {
|
|
|
63001
62991
|
};
|
|
63002
62992
|
|
|
63003
62993
|
/***/ }),
|
|
63004
|
-
/*
|
|
62994
|
+
/* 635 */
|
|
63005
62995
|
/***/ (function(module, exports, __webpack_require__) {
|
|
63006
62996
|
|
|
63007
62997
|
"use strict";
|
|
@@ -63049,7 +63039,7 @@ const isVisible = domElement => {
|
|
|
63049
63039
|
module.exports = domElement => isDomElement(domElement) && isInViewPort(domElement) && isVisible(domElement);
|
|
63050
63040
|
|
|
63051
63041
|
/***/ }),
|
|
63052
|
-
/*
|
|
63042
|
+
/* 636 */
|
|
63053
63043
|
/***/ (function(module, exports, __webpack_require__) {
|
|
63054
63044
|
|
|
63055
63045
|
"use strict";
|
|
@@ -63132,7 +63122,7 @@ module.exports = function canBeOrientatedMixin(self, getDomElementCallback, init
|
|
|
63132
63122
|
};
|
|
63133
63123
|
|
|
63134
63124
|
/***/ }),
|
|
63135
|
-
/*
|
|
63125
|
+
/* 637 */
|
|
63136
63126
|
/***/ (function(module, exports, __webpack_require__) {
|
|
63137
63127
|
|
|
63138
63128
|
"use strict";
|
|
@@ -63217,7 +63207,7 @@ module.exports = function listenForTracksEndedFactory() {
|
|
|
63217
63207
|
};
|
|
63218
63208
|
|
|
63219
63209
|
/***/ }),
|
|
63220
|
-
/*
|
|
63210
|
+
/* 638 */
|
|
63221
63211
|
/***/ (function(module, exports, __webpack_require__) {
|
|
63222
63212
|
|
|
63223
63213
|
var baseAssignValue = __webpack_require__(63),
|
|
@@ -63266,7 +63256,7 @@ module.exports = mapValues;
|
|
|
63266
63256
|
|
|
63267
63257
|
|
|
63268
63258
|
/***/ }),
|
|
63269
|
-
/*
|
|
63259
|
+
/* 639 */
|
|
63270
63260
|
/***/ (function(module, exports, __webpack_require__) {
|
|
63271
63261
|
|
|
63272
63262
|
"use strict";
|
|
@@ -63309,7 +63299,7 @@ module.exports = function watchAudioAcquisition(getStats, warningCb) {
|
|
|
63309
63299
|
};
|
|
63310
63300
|
|
|
63311
63301
|
/***/ }),
|
|
63312
|
-
/*
|
|
63302
|
+
/* 640 */
|
|
63313
63303
|
/***/ (function(module, exports, __webpack_require__) {
|
|
63314
63304
|
|
|
63315
63305
|
"use strict";
|
|
@@ -63405,7 +63395,7 @@ module.exports = function watchSubscriberAudio(getStats, warningCb, disableAudio
|
|
|
63405
63395
|
};
|
|
63406
63396
|
|
|
63407
63397
|
/***/ }),
|
|
63408
|
-
/*
|
|
63398
|
+
/* 641 */
|
|
63409
63399
|
/***/ (function(module, exports, __webpack_require__) {
|
|
63410
63400
|
|
|
63411
63401
|
"use strict";
|
|
@@ -63483,7 +63473,7 @@ module.exports = function reportIssueFactory(deps) {
|
|
|
63483
63473
|
/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(0)))
|
|
63484
63474
|
|
|
63485
63475
|
/***/ }),
|
|
63486
|
-
/*
|
|
63476
|
+
/* 642 */
|
|
63487
63477
|
/***/ (function(module, exports, __webpack_require__) {
|
|
63488
63478
|
|
|
63489
63479
|
"use strict";
|
|
@@ -63511,7 +63501,7 @@ module.exports = (_ref) => {
|
|
|
63511
63501
|
};
|
|
63512
63502
|
|
|
63513
63503
|
/***/ }),
|
|
63514
|
-
/*
|
|
63504
|
+
/* 643 */
|
|
63515
63505
|
/***/ (function(module, exports, __webpack_require__) {
|
|
63516
63506
|
|
|
63517
63507
|
"use strict";
|
|
@@ -63649,7 +63639,7 @@ Cancellation.CANCELED = new Cancellation();
|
|
|
63649
63639
|
Cancellation.CANCELED.internalIsCanceled = true;
|
|
63650
63640
|
|
|
63651
63641
|
/***/ }),
|
|
63652
|
-
/*
|
|
63642
|
+
/* 644 */
|
|
63653
63643
|
/***/ (function(module, exports, __webpack_require__) {
|
|
63654
63644
|
|
|
63655
63645
|
"use strict";
|
|
@@ -63693,7 +63683,7 @@ module.exports = waitForCorrectResolution;
|
|
|
63693
63683
|
/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(0)))
|
|
63694
63684
|
|
|
63695
63685
|
/***/ }),
|
|
63696
|
-
/*
|
|
63686
|
+
/* 645 */
|
|
63697
63687
|
/***/ (function(module, exports, __webpack_require__) {
|
|
63698
63688
|
|
|
63699
63689
|
"use strict";
|
|
@@ -63734,7 +63724,7 @@ module.exports = waitForVideoToBePlaying;
|
|
|
63734
63724
|
/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(0)))
|
|
63735
63725
|
|
|
63736
63726
|
/***/ }),
|
|
63737
|
-
/*
|
|
63727
|
+
/* 646 */
|
|
63738
63728
|
/***/ (function(module, exports, __webpack_require__) {
|
|
63739
63729
|
|
|
63740
63730
|
"use strict";
|
|
@@ -63777,7 +63767,7 @@ container) {
|
|
|
63777
63767
|
};
|
|
63778
63768
|
|
|
63779
63769
|
/***/ }),
|
|
63780
|
-
/*
|
|
63770
|
+
/* 647 */
|
|
63781
63771
|
/***/ (function(module, exports, __webpack_require__) {
|
|
63782
63772
|
|
|
63783
63773
|
"use strict";
|
|
@@ -63849,7 +63839,7 @@ module.exports = function getOrCreateContainer(elementOrDomId, insertMode) {
|
|
|
63849
63839
|
};
|
|
63850
63840
|
|
|
63851
63841
|
/***/ }),
|
|
63852
|
-
/*
|
|
63842
|
+
/* 648 */
|
|
63853
63843
|
/***/ (function(module, exports, __webpack_require__) {
|
|
63854
63844
|
|
|
63855
63845
|
"use strict";
|
|
@@ -63868,7 +63858,7 @@ module.exports = function ensureCSSUnit(measurement, defaultUnit) {
|
|
|
63868
63858
|
};
|
|
63869
63859
|
|
|
63870
63860
|
/***/ }),
|
|
63871
|
-
/*
|
|
63861
|
+
/* 649 */
|
|
63872
63862
|
/***/ (function(module, exports, __webpack_require__) {
|
|
63873
63863
|
|
|
63874
63864
|
"use strict";
|
|
@@ -63910,7 +63900,7 @@ module.exports = function waitUntil(predicate, _temp) {
|
|
|
63910
63900
|
/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(0)))
|
|
63911
63901
|
|
|
63912
63902
|
/***/ }),
|
|
63913
|
-
/*
|
|
63903
|
+
/* 650 */
|
|
63914
63904
|
/***/ (function(module, exports, __webpack_require__) {
|
|
63915
63905
|
|
|
63916
63906
|
"use strict";
|
|
@@ -63935,7 +63925,7 @@ module.exports = err => {
|
|
|
63935
63925
|
};
|
|
63936
63926
|
|
|
63937
63927
|
/***/ }),
|
|
63938
|
-
/*
|
|
63928
|
+
/* 651 */
|
|
63939
63929
|
/***/ (function(module, exports, __webpack_require__) {
|
|
63940
63930
|
|
|
63941
63931
|
"use strict";
|
|
@@ -64005,7 +63995,7 @@ module.exports = (_ref) => {
|
|
|
64005
63995
|
};
|
|
64006
63996
|
|
|
64007
63997
|
/***/ }),
|
|
64008
|
-
/*
|
|
63998
|
+
/* 652 */
|
|
64009
63999
|
/***/ (function(module, exports, __webpack_require__) {
|
|
64010
64000
|
|
|
64011
64001
|
"use strict";
|
|
@@ -64016,7 +64006,7 @@ const GetAudioLevelSampler = __webpack_require__(253);
|
|
|
64016
64006
|
|
|
64017
64007
|
const WebAudioAudioLevelSampler = __webpack_require__(146);
|
|
64018
64008
|
|
|
64019
|
-
const hasSynchronizationSourcesCapability = __webpack_require__(
|
|
64009
|
+
const hasSynchronizationSourcesCapability = __webpack_require__(653);
|
|
64020
64010
|
|
|
64021
64011
|
const hasAudioOutputLevelStatCapability = __webpack_require__(301);
|
|
64022
64012
|
|
|
@@ -64024,7 +64014,7 @@ const hasRemoteStreamsWithWebAudio = __webpack_require__(302);
|
|
|
64024
64014
|
|
|
64025
64015
|
const getAudioContext = __webpack_require__(158)();
|
|
64026
64016
|
|
|
64027
|
-
const isAudioContext = __webpack_require__(
|
|
64017
|
+
const isAudioContext = __webpack_require__(654);
|
|
64028
64018
|
|
|
64029
64019
|
const logging = __webpack_require__(1)('Subscriber');
|
|
64030
64020
|
|
|
@@ -64062,7 +64052,7 @@ module.exports = function (peerConnection, deps) {
|
|
|
64062
64052
|
};
|
|
64063
64053
|
|
|
64064
64054
|
/***/ }),
|
|
64065
|
-
/*
|
|
64055
|
+
/* 653 */
|
|
64066
64056
|
/***/ (function(module, exports, __webpack_require__) {
|
|
64067
64057
|
|
|
64068
64058
|
"use strict";
|
|
@@ -64086,7 +64076,7 @@ module.exports = function (deps) {
|
|
|
64086
64076
|
};
|
|
64087
64077
|
|
|
64088
64078
|
/***/ }),
|
|
64089
|
-
/*
|
|
64079
|
+
/* 654 */
|
|
64090
64080
|
/***/ (function(module, exports, __webpack_require__) {
|
|
64091
64081
|
|
|
64092
64082
|
"use strict";
|
|
@@ -64095,7 +64085,7 @@ module.exports = function (deps) {
|
|
|
64095
64085
|
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;
|
|
64096
64086
|
|
|
64097
64087
|
/***/ }),
|
|
64098
|
-
/*
|
|
64088
|
+
/* 655 */
|
|
64099
64089
|
/***/ (function(module, exports, __webpack_require__) {
|
|
64100
64090
|
|
|
64101
64091
|
"use strict";
|
|
@@ -64158,7 +64148,7 @@ module.exports = function VideoDisabledIndicator(options) {
|
|
|
64158
64148
|
};
|
|
64159
64149
|
|
|
64160
64150
|
/***/ }),
|
|
64161
|
-
/*
|
|
64151
|
+
/* 656 */
|
|
64162
64152
|
/***/ (function(module, exports, __webpack_require__) {
|
|
64163
64153
|
|
|
64164
64154
|
"use strict";
|
|
@@ -64208,7 +64198,7 @@ module.exports = function AudioBlockedIndicator(options) {
|
|
|
64208
64198
|
};
|
|
64209
64199
|
|
|
64210
64200
|
/***/ }),
|
|
64211
|
-
/*
|
|
64201
|
+
/* 657 */
|
|
64212
64202
|
/***/ (function(module, exports, __webpack_require__) {
|
|
64213
64203
|
|
|
64214
64204
|
"use strict";
|
|
@@ -64255,7 +64245,7 @@ module.exports = function VideoUnsupportedIndicator(options) {
|
|
|
64255
64245
|
};
|
|
64256
64246
|
|
|
64257
64247
|
/***/ }),
|
|
64258
|
-
/*
|
|
64248
|
+
/* 658 */
|
|
64259
64249
|
/***/ (function(module, exports, __webpack_require__) {
|
|
64260
64250
|
|
|
64261
64251
|
"use strict";
|
|
@@ -64346,7 +64336,7 @@ const watchFrameRate = function watchFrameRate(getStats, delay) {
|
|
|
64346
64336
|
module.exports = watchFrameRate;
|
|
64347
64337
|
|
|
64348
64338
|
/***/ }),
|
|
64349
|
-
/*
|
|
64339
|
+
/* 659 */
|
|
64350
64340
|
/***/ (function(module, exports, __webpack_require__) {
|
|
64351
64341
|
|
|
64352
64342
|
"use strict";
|
|
@@ -64375,7 +64365,7 @@ module.exports = (_ref) => {
|
|
|
64375
64365
|
};
|
|
64376
64366
|
|
|
64377
64367
|
/***/ }),
|
|
64378
|
-
/*
|
|
64368
|
+
/* 660 */
|
|
64379
64369
|
/***/ (function(module, exports, __webpack_require__) {
|
|
64380
64370
|
|
|
64381
64371
|
"use strict";
|
|
@@ -64419,7 +64409,7 @@ module.exports = (_ref) => {
|
|
|
64419
64409
|
};
|
|
64420
64410
|
|
|
64421
64411
|
/***/ }),
|
|
64422
|
-
/*
|
|
64412
|
+
/* 661 */
|
|
64423
64413
|
/***/ (function(module, exports, __webpack_require__) {
|
|
64424
64414
|
|
|
64425
64415
|
"use strict";
|
|
@@ -64448,10 +64438,10 @@ module.exports = (_ref) => {
|
|
|
64448
64438
|
};
|
|
64449
64439
|
|
|
64450
64440
|
/***/ }),
|
|
64451
|
-
/*
|
|
64441
|
+
/* 662 */
|
|
64452
64442
|
/***/ (function(module, exports, __webpack_require__) {
|
|
64453
64443
|
|
|
64454
|
-
var createCompounder = __webpack_require__(
|
|
64444
|
+
var createCompounder = __webpack_require__(663),
|
|
64455
64445
|
upperFirst = __webpack_require__(259);
|
|
64456
64446
|
|
|
64457
64447
|
/**
|
|
@@ -64483,12 +64473,12 @@ module.exports = startCase;
|
|
|
64483
64473
|
|
|
64484
64474
|
|
|
64485
64475
|
/***/ }),
|
|
64486
|
-
/*
|
|
64476
|
+
/* 663 */
|
|
64487
64477
|
/***/ (function(module, exports, __webpack_require__) {
|
|
64488
64478
|
|
|
64489
|
-
var arrayReduce = __webpack_require__(
|
|
64490
|
-
deburr = __webpack_require__(
|
|
64491
|
-
words = __webpack_require__(
|
|
64479
|
+
var arrayReduce = __webpack_require__(664),
|
|
64480
|
+
deburr = __webpack_require__(665),
|
|
64481
|
+
words = __webpack_require__(668);
|
|
64492
64482
|
|
|
64493
64483
|
/** Used to compose unicode capture groups. */
|
|
64494
64484
|
var rsApos = "['\u2019]";
|
|
@@ -64513,7 +64503,7 @@ module.exports = createCompounder;
|
|
|
64513
64503
|
|
|
64514
64504
|
|
|
64515
64505
|
/***/ }),
|
|
64516
|
-
/*
|
|
64506
|
+
/* 664 */
|
|
64517
64507
|
/***/ (function(module, exports) {
|
|
64518
64508
|
|
|
64519
64509
|
/**
|
|
@@ -64545,10 +64535,10 @@ module.exports = arrayReduce;
|
|
|
64545
64535
|
|
|
64546
64536
|
|
|
64547
64537
|
/***/ }),
|
|
64548
|
-
/*
|
|
64538
|
+
/* 665 */
|
|
64549
64539
|
/***/ (function(module, exports, __webpack_require__) {
|
|
64550
64540
|
|
|
64551
|
-
var deburrLetter = __webpack_require__(
|
|
64541
|
+
var deburrLetter = __webpack_require__(666),
|
|
64552
64542
|
toString = __webpack_require__(58);
|
|
64553
64543
|
|
|
64554
64544
|
/** Used to match Latin Unicode letters (excluding mathematical operators). */
|
|
@@ -64596,10 +64586,10 @@ module.exports = deburr;
|
|
|
64596
64586
|
|
|
64597
64587
|
|
|
64598
64588
|
/***/ }),
|
|
64599
|
-
/*
|
|
64589
|
+
/* 666 */
|
|
64600
64590
|
/***/ (function(module, exports, __webpack_require__) {
|
|
64601
64591
|
|
|
64602
|
-
var basePropertyOf = __webpack_require__(
|
|
64592
|
+
var basePropertyOf = __webpack_require__(667);
|
|
64603
64593
|
|
|
64604
64594
|
/** Used to map Latin Unicode letters to basic Latin letters. */
|
|
64605
64595
|
var deburredLetters = {
|
|
@@ -64673,7 +64663,7 @@ module.exports = deburrLetter;
|
|
|
64673
64663
|
|
|
64674
64664
|
|
|
64675
64665
|
/***/ }),
|
|
64676
|
-
/*
|
|
64666
|
+
/* 667 */
|
|
64677
64667
|
/***/ (function(module, exports) {
|
|
64678
64668
|
|
|
64679
64669
|
/**
|
|
@@ -64693,13 +64683,13 @@ module.exports = basePropertyOf;
|
|
|
64693
64683
|
|
|
64694
64684
|
|
|
64695
64685
|
/***/ }),
|
|
64696
|
-
/*
|
|
64686
|
+
/* 668 */
|
|
64697
64687
|
/***/ (function(module, exports, __webpack_require__) {
|
|
64698
64688
|
|
|
64699
|
-
var asciiWords = __webpack_require__(
|
|
64700
|
-
hasUnicodeWord = __webpack_require__(
|
|
64689
|
+
var asciiWords = __webpack_require__(669),
|
|
64690
|
+
hasUnicodeWord = __webpack_require__(670),
|
|
64701
64691
|
toString = __webpack_require__(58),
|
|
64702
|
-
unicodeWords = __webpack_require__(
|
|
64692
|
+
unicodeWords = __webpack_require__(671);
|
|
64703
64693
|
|
|
64704
64694
|
/**
|
|
64705
64695
|
* Splits `string` into an array of its words.
|
|
@@ -64734,7 +64724,7 @@ module.exports = words;
|
|
|
64734
64724
|
|
|
64735
64725
|
|
|
64736
64726
|
/***/ }),
|
|
64737
|
-
/*
|
|
64727
|
+
/* 669 */
|
|
64738
64728
|
/***/ (function(module, exports) {
|
|
64739
64729
|
|
|
64740
64730
|
/** Used to match words composed of alphanumeric characters. */
|
|
@@ -64755,7 +64745,7 @@ module.exports = asciiWords;
|
|
|
64755
64745
|
|
|
64756
64746
|
|
|
64757
64747
|
/***/ }),
|
|
64758
|
-
/*
|
|
64748
|
+
/* 670 */
|
|
64759
64749
|
/***/ (function(module, exports) {
|
|
64760
64750
|
|
|
64761
64751
|
/** Used to detect strings that need a more robust regexp to match words. */
|
|
@@ -64776,7 +64766,7 @@ module.exports = hasUnicodeWord;
|
|
|
64776
64766
|
|
|
64777
64767
|
|
|
64778
64768
|
/***/ }),
|
|
64779
|
-
/*
|
|
64769
|
+
/* 671 */
|
|
64780
64770
|
/***/ (function(module, exports) {
|
|
64781
64771
|
|
|
64782
64772
|
/** Used to compose unicode character classes. */
|
|
@@ -64851,7 +64841,7 @@ module.exports = unicodeWords;
|
|
|
64851
64841
|
|
|
64852
64842
|
|
|
64853
64843
|
/***/ }),
|
|
64854
|
-
/*
|
|
64844
|
+
/* 672 */
|
|
64855
64845
|
/***/ (function(module, exports, __webpack_require__) {
|
|
64856
64846
|
|
|
64857
64847
|
"use strict";
|
|
@@ -64871,7 +64861,7 @@ module.exports = (peerConnection, activeState) => {
|
|
|
64871
64861
|
};
|
|
64872
64862
|
|
|
64873
64863
|
/***/ }),
|
|
64874
|
-
/*
|
|
64864
|
+
/* 673 */
|
|
64875
64865
|
/***/ (function(module, exports, __webpack_require__) {
|
|
64876
64866
|
|
|
64877
64867
|
"use strict";
|
|
@@ -64883,7 +64873,7 @@ const pick = __webpack_require__(47);
|
|
|
64883
64873
|
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']);
|
|
64884
64874
|
|
|
64885
64875
|
/***/ }),
|
|
64886
|
-
/*
|
|
64876
|
+
/* 674 */
|
|
64887
64877
|
/***/ (function(module, exports, __webpack_require__) {
|
|
64888
64878
|
|
|
64889
64879
|
"use strict";
|
|
@@ -64950,7 +64940,7 @@ module.exports = (_ref) => {
|
|
|
64950
64940
|
};
|
|
64951
64941
|
|
|
64952
64942
|
/***/ }),
|
|
64953
|
-
/*
|
|
64943
|
+
/* 675 */
|
|
64954
64944
|
/***/ (function(module, exports, __webpack_require__) {
|
|
64955
64945
|
|
|
64956
64946
|
"use strict";
|
|
@@ -65018,7 +65008,7 @@ module.exports = function blockCallsUntilComplete(fn) {
|
|
|
65018
65008
|
};
|
|
65019
65009
|
|
|
65020
65010
|
/***/ }),
|
|
65021
|
-
/*
|
|
65011
|
+
/* 676 */
|
|
65022
65012
|
/***/ (function(module, exports, __webpack_require__) {
|
|
65023
65013
|
|
|
65024
65014
|
"use strict";
|
|
@@ -65049,7 +65039,7 @@ module.exports = function createCanvasVideoTrack(dimensions) {
|
|
|
65049
65039
|
};
|
|
65050
65040
|
|
|
65051
65041
|
/***/ }),
|
|
65052
|
-
/*
|
|
65042
|
+
/* 677 */
|
|
65053
65043
|
/***/ (function(module, exports, __webpack_require__) {
|
|
65054
65044
|
|
|
65055
65045
|
"use strict";
|
|
@@ -65102,7 +65092,7 @@ module.exports = (stream, videoDevices) => {
|
|
|
65102
65092
|
};
|
|
65103
65093
|
|
|
65104
65094
|
/***/ }),
|
|
65105
|
-
/*
|
|
65095
|
+
/* 678 */
|
|
65106
65096
|
/***/ (function(module, exports, __webpack_require__) {
|
|
65107
65097
|
|
|
65108
65098
|
"use strict";
|
|
@@ -65122,7 +65112,7 @@ module.exports = error => {
|
|
|
65122
65112
|
};
|
|
65123
65113
|
|
|
65124
65114
|
/***/ }),
|
|
65125
|
-
/*
|
|
65115
|
+
/* 679 */
|
|
65126
65116
|
/***/ (function(module, exports, __webpack_require__) {
|
|
65127
65117
|
|
|
65128
65118
|
"use strict";
|
|
@@ -65133,7 +65123,7 @@ const isNullOrFalse = value => value === null || value === false;
|
|
|
65133
65123
|
module.exports = isNullOrFalse;
|
|
65134
65124
|
|
|
65135
65125
|
/***/ }),
|
|
65136
|
-
/*
|
|
65126
|
+
/* 680 */
|
|
65137
65127
|
/***/ (function(module, exports, __webpack_require__) {
|
|
65138
65128
|
|
|
65139
65129
|
"use strict";
|
|
@@ -65149,10 +65139,10 @@ module.exports = properties => {
|
|
|
65149
65139
|
};
|
|
65150
65140
|
|
|
65151
65141
|
/***/ }),
|
|
65152
|
-
/*
|
|
65142
|
+
/* 681 */
|
|
65153
65143
|
/***/ (function(module, exports, __webpack_require__) {
|
|
65154
65144
|
|
|
65155
|
-
var baseFindKey = __webpack_require__(
|
|
65145
|
+
var baseFindKey = __webpack_require__(682),
|
|
65156
65146
|
baseForOwn = __webpack_require__(100),
|
|
65157
65147
|
baseIteratee = __webpack_require__(33);
|
|
65158
65148
|
|
|
@@ -65199,7 +65189,7 @@ module.exports = findKey;
|
|
|
65199
65189
|
|
|
65200
65190
|
|
|
65201
65191
|
/***/ }),
|
|
65202
|
-
/*
|
|
65192
|
+
/* 682 */
|
|
65203
65193
|
/***/ (function(module, exports) {
|
|
65204
65194
|
|
|
65205
65195
|
/**
|
|
@@ -65228,7 +65218,7 @@ module.exports = baseFindKey;
|
|
|
65228
65218
|
|
|
65229
65219
|
|
|
65230
65220
|
/***/ }),
|
|
65231
|
-
/*
|
|
65221
|
+
/* 683 */
|
|
65232
65222
|
/***/ (function(module, exports, __webpack_require__) {
|
|
65233
65223
|
|
|
65234
65224
|
"use strict";
|
|
@@ -65303,7 +65293,7 @@ module.exports = (_ref) => {
|
|
|
65303
65293
|
/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(0)))
|
|
65304
65294
|
|
|
65305
65295
|
/***/ }),
|
|
65306
|
-
/*
|
|
65296
|
+
/* 684 */
|
|
65307
65297
|
/***/ (function(module, exports, __webpack_require__) {
|
|
65308
65298
|
|
|
65309
65299
|
"use strict";
|
|
@@ -65344,7 +65334,7 @@ module.exports = (_ref) => {
|
|
|
65344
65334
|
};
|
|
65345
65335
|
|
|
65346
65336
|
/***/ }),
|
|
65347
|
-
/*
|
|
65337
|
+
/* 685 */
|
|
65348
65338
|
/***/ (function(module, exports, __webpack_require__) {
|
|
65349
65339
|
|
|
65350
65340
|
"use strict";
|
|
@@ -65375,7 +65365,7 @@ module.exports = function convertAnvilErrorCode(code) {
|
|
|
65375
65365
|
};
|
|
65376
65366
|
|
|
65377
65367
|
/***/ }),
|
|
65378
|
-
/*
|
|
65368
|
+
/* 686 */
|
|
65379
65369
|
/***/ (function(module, exports, __webpack_require__) {
|
|
65380
65370
|
|
|
65381
65371
|
"use strict";
|
|
@@ -65413,7 +65403,7 @@ module.exports = {
|
|
|
65413
65403
|
};
|
|
65414
65404
|
|
|
65415
65405
|
/***/ }),
|
|
65416
|
-
/*
|
|
65406
|
+
/* 687 */
|
|
65417
65407
|
/***/ (function(module, exports, __webpack_require__) {
|
|
65418
65408
|
|
|
65419
65409
|
"use strict";
|
|
@@ -65436,7 +65426,7 @@ var _uuid = _interopRequireDefault(__webpack_require__(19));
|
|
|
65436
65426
|
|
|
65437
65427
|
var _serializeMessage = _interopRequireDefault(__webpack_require__(312));
|
|
65438
65428
|
|
|
65439
|
-
var _defaultRumorSocket = _interopRequireDefault(__webpack_require__(
|
|
65429
|
+
var _defaultRumorSocket = _interopRequireDefault(__webpack_require__(688));
|
|
65440
65430
|
|
|
65441
65431
|
// @todo enable the following disabled rules see OPENTOK-31136 for more info
|
|
65442
65432
|
|
|
@@ -65456,7 +65446,7 @@ function RaptorSocketFactory(deps) {
|
|
|
65456
65446
|
|
|
65457
65447
|
const hasIceRestartsCapability = deps.hasIceRestartsCapability || __webpack_require__(311);
|
|
65458
65448
|
|
|
65459
|
-
const hasRenegotiationCapability = deps.hasRenegotiationCapability || __webpack_require__(
|
|
65449
|
+
const hasRenegotiationCapability = deps.hasRenegotiationCapability || __webpack_require__(704);
|
|
65460
65450
|
|
|
65461
65451
|
const logging = deps.logging || __webpack_require__(1)('RaptorSocket');
|
|
65462
65452
|
|
|
@@ -65468,7 +65458,7 @@ function RaptorSocketFactory(deps) {
|
|
|
65468
65458
|
|
|
65469
65459
|
const Signal = deps.Signal || __webpack_require__(316);
|
|
65470
65460
|
|
|
65471
|
-
const SignalError = deps.SignalError || __webpack_require__(
|
|
65461
|
+
const SignalError = deps.SignalError || __webpack_require__(709); // The Dispatcher bit is purely to make testing simpler, it defaults to a new Dispatcher so in
|
|
65472
65462
|
// normal operation you would omit it.
|
|
65473
65463
|
|
|
65474
65464
|
|
|
@@ -65939,7 +65929,7 @@ function RaptorSocketFactory(deps) {
|
|
|
65939
65929
|
/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(0)))
|
|
65940
65930
|
|
|
65941
65931
|
/***/ }),
|
|
65942
|
-
/*
|
|
65932
|
+
/* 688 */
|
|
65943
65933
|
/***/ (function(module, exports, __webpack_require__) {
|
|
65944
65934
|
|
|
65945
65935
|
"use strict";
|
|
@@ -65952,15 +65942,15 @@ exports.default = defaultRumorSocket;
|
|
|
65952
65942
|
|
|
65953
65943
|
var _events = _interopRequireDefault(__webpack_require__(41));
|
|
65954
65944
|
|
|
65955
|
-
var _createCounter = _interopRequireDefault(__webpack_require__(
|
|
65945
|
+
var _createCounter = _interopRequireDefault(__webpack_require__(689));
|
|
65956
65946
|
|
|
65957
65947
|
var _log = _interopRequireDefault(__webpack_require__(1));
|
|
65958
65948
|
|
|
65959
|
-
var _ReconnectableSocket = _interopRequireDefault(__webpack_require__(
|
|
65949
|
+
var _ReconnectableSocket = _interopRequireDefault(__webpack_require__(690));
|
|
65960
65950
|
|
|
65961
|
-
var _RumorSocket = _interopRequireDefault(__webpack_require__(
|
|
65951
|
+
var _RumorSocket = _interopRequireDefault(__webpack_require__(695));
|
|
65962
65952
|
|
|
65963
|
-
var _WebSocket = _interopRequireDefault(__webpack_require__(
|
|
65953
|
+
var _WebSocket = _interopRequireDefault(__webpack_require__(700));
|
|
65964
65954
|
|
|
65965
65955
|
/* eslint-disable no-underscore-dangle */
|
|
65966
65956
|
function defaultRumorSocket(_temp) {
|
|
@@ -65985,7 +65975,7 @@ function defaultRumorSocket(_temp) {
|
|
|
65985
65975
|
}
|
|
65986
65976
|
|
|
65987
65977
|
/***/ }),
|
|
65988
|
-
/*
|
|
65978
|
+
/* 689 */
|
|
65989
65979
|
/***/ (function(module, exports, __webpack_require__) {
|
|
65990
65980
|
|
|
65991
65981
|
"use strict";
|
|
@@ -66003,7 +65993,7 @@ function createCounter() {
|
|
|
66003
65993
|
}
|
|
66004
65994
|
|
|
66005
65995
|
/***/ }),
|
|
66006
|
-
/*
|
|
65996
|
+
/* 690 */
|
|
66007
65997
|
/***/ (function(module, exports, __webpack_require__) {
|
|
66008
65998
|
|
|
66009
65999
|
"use strict";
|
|
@@ -66030,13 +66020,13 @@ var _logEvents = _interopRequireDefault(__webpack_require__(313));
|
|
|
66030
66020
|
|
|
66031
66021
|
var _socketCloseCodes = __webpack_require__(77);
|
|
66032
66022
|
|
|
66033
|
-
var _Timer = _interopRequireDefault(__webpack_require__(
|
|
66023
|
+
var _Timer = _interopRequireDefault(__webpack_require__(691));
|
|
66034
66024
|
|
|
66035
66025
|
var _eventHelper = _interopRequireDefault(__webpack_require__(62));
|
|
66036
66026
|
|
|
66037
|
-
var _createReadyStateMachine = _interopRequireDefault(__webpack_require__(
|
|
66027
|
+
var _createReadyStateMachine = _interopRequireDefault(__webpack_require__(692));
|
|
66038
66028
|
|
|
66039
|
-
var _drainWebSocket = _interopRequireDefault(__webpack_require__(
|
|
66029
|
+
var _drainWebSocket = _interopRequireDefault(__webpack_require__(694));
|
|
66040
66030
|
|
|
66041
66031
|
/* eslint-disable no-underscore-dangle, no-constant-condition */
|
|
66042
66032
|
const removeReturnVal = fn => function () {
|
|
@@ -66486,7 +66476,7 @@ var _default = (_ref) => {
|
|
|
66486
66476
|
exports.default = _default;
|
|
66487
66477
|
|
|
66488
66478
|
/***/ }),
|
|
66489
|
-
/*
|
|
66479
|
+
/* 691 */
|
|
66490
66480
|
/***/ (function(module, exports, __webpack_require__) {
|
|
66491
66481
|
|
|
66492
66482
|
"use strict";
|
|
@@ -66553,7 +66543,7 @@ let Timer = /*#__PURE__*/function () {
|
|
|
66553
66543
|
exports.default = Timer;
|
|
66554
66544
|
|
|
66555
66545
|
/***/ }),
|
|
66556
|
-
/*
|
|
66546
|
+
/* 692 */
|
|
66557
66547
|
/***/ (function(module, exports, __webpack_require__) {
|
|
66558
66548
|
|
|
66559
66549
|
"use strict";
|
|
@@ -66566,7 +66556,7 @@ exports.default = void 0;
|
|
|
66566
66556
|
|
|
66567
66557
|
var _javascriptStateMachine = _interopRequireDefault(__webpack_require__(305));
|
|
66568
66558
|
|
|
66569
|
-
var _elapsed = _interopRequireDefault(__webpack_require__(
|
|
66559
|
+
var _elapsed = _interopRequireDefault(__webpack_require__(693));
|
|
66570
66560
|
|
|
66571
66561
|
var _socketCloseCodes = __webpack_require__(77);
|
|
66572
66562
|
|
|
@@ -66633,7 +66623,7 @@ var _default = (_ref) => {
|
|
|
66633
66623
|
exports.default = _default;
|
|
66634
66624
|
|
|
66635
66625
|
/***/ }),
|
|
66636
|
-
/*
|
|
66626
|
+
/* 693 */
|
|
66637
66627
|
/***/ (function(module, exports, __webpack_require__) {
|
|
66638
66628
|
|
|
66639
66629
|
"use strict";
|
|
@@ -66648,7 +66638,7 @@ module.exports = timeInMilliseconds => {
|
|
|
66648
66638
|
};
|
|
66649
66639
|
|
|
66650
66640
|
/***/ }),
|
|
66651
|
-
/*
|
|
66641
|
+
/* 694 */
|
|
66652
66642
|
/***/ (function(module, exports, __webpack_require__) {
|
|
66653
66643
|
|
|
66654
66644
|
"use strict";
|
|
@@ -66712,7 +66702,7 @@ var _default = /*#__PURE__*/function () {
|
|
|
66712
66702
|
exports.default = _default;
|
|
66713
66703
|
|
|
66714
66704
|
/***/ }),
|
|
66715
|
-
/*
|
|
66705
|
+
/* 695 */
|
|
66716
66706
|
/***/ (function(module, exports, __webpack_require__) {
|
|
66717
66707
|
|
|
66718
66708
|
"use strict";
|
|
@@ -66737,11 +66727,11 @@ var _uuid = _interopRequireDefault(__webpack_require__(19));
|
|
|
66737
66727
|
|
|
66738
66728
|
var _logEvents = _interopRequireDefault(__webpack_require__(313));
|
|
66739
66729
|
|
|
66740
|
-
var _RumorMessage = _interopRequireDefault(__webpack_require__(
|
|
66730
|
+
var _RumorMessage = _interopRequireDefault(__webpack_require__(696));
|
|
66741
66731
|
|
|
66742
66732
|
var RumorMessageTypes = _interopRequireWildcard(__webpack_require__(171));
|
|
66743
66733
|
|
|
66744
|
-
var _SocketError = _interopRequireDefault(__webpack_require__(
|
|
66734
|
+
var _SocketError = _interopRequireDefault(__webpack_require__(699));
|
|
66745
66735
|
|
|
66746
66736
|
var _socketCloseCodes = __webpack_require__(77);
|
|
66747
66737
|
|
|
@@ -67069,7 +67059,7 @@ var _default = (_ref) => {
|
|
|
67069
67059
|
exports.default = _default;
|
|
67070
67060
|
|
|
67071
67061
|
/***/ }),
|
|
67072
|
-
/*
|
|
67062
|
+
/* 696 */
|
|
67073
67063
|
/***/ (function(module, exports, __webpack_require__) {
|
|
67074
67064
|
|
|
67075
67065
|
"use strict";
|
|
@@ -67086,7 +67076,7 @@ var _defineProperty2 = _interopRequireDefault(__webpack_require__(18));
|
|
|
67086
67076
|
|
|
67087
67077
|
var _uuid = _interopRequireDefault(__webpack_require__(19));
|
|
67088
67078
|
|
|
67089
|
-
var _encoding = __webpack_require__(
|
|
67079
|
+
var _encoding = __webpack_require__(697);
|
|
67090
67080
|
|
|
67091
67081
|
var RumorMessageTypes = _interopRequireWildcard(__webpack_require__(171));
|
|
67092
67082
|
|
|
@@ -67311,7 +67301,7 @@ let RumorMessage = /*#__PURE__*/function () {
|
|
|
67311
67301
|
exports.default = RumorMessage;
|
|
67312
67302
|
|
|
67313
67303
|
/***/ }),
|
|
67314
|
-
/*
|
|
67304
|
+
/* 697 */
|
|
67315
67305
|
/***/ (function(module, exports, __webpack_require__) {
|
|
67316
67306
|
|
|
67317
67307
|
"use strict";
|
|
@@ -67322,7 +67312,7 @@ var _interopRequireWildcard = __webpack_require__(109);
|
|
|
67322
67312
|
exports.__esModule = true;
|
|
67323
67313
|
exports.TextDecoder = exports.TextEncoder = void 0;
|
|
67324
67314
|
|
|
67325
|
-
var TextEncoding = _interopRequireWildcard(__webpack_require__(
|
|
67315
|
+
var TextEncoding = _interopRequireWildcard(__webpack_require__(698));
|
|
67326
67316
|
|
|
67327
67317
|
// Unfortunately it looks like the text-encoding module always returns its implementations of
|
|
67328
67318
|
// TextEncoder and TextDecoder, so we wrap it here to expose the global (window) ones, if available.
|
|
@@ -67332,7 +67322,7 @@ const TextDecoder = (typeof window !== undefined ? window : global).TextDecoder
|
|
|
67332
67322
|
exports.TextDecoder = TextDecoder;
|
|
67333
67323
|
|
|
67334
67324
|
/***/ }),
|
|
67335
|
-
/*
|
|
67325
|
+
/* 698 */
|
|
67336
67326
|
/***/ (function(__webpack_module__, __webpack_exports__, __webpack_require__) {
|
|
67337
67327
|
|
|
67338
67328
|
"use strict";
|
|
@@ -68007,7 +67997,7 @@ function UTF8Encoder(options) {
|
|
|
68007
67997
|
|
|
68008
67998
|
|
|
68009
67999
|
/***/ }),
|
|
68010
|
-
/*
|
|
68000
|
+
/* 699 */
|
|
68011
68001
|
/***/ (function(module, exports, __webpack_require__) {
|
|
68012
68002
|
|
|
68013
68003
|
"use strict";
|
|
@@ -68042,7 +68032,7 @@ let SocketError = function SocketError(code, message) {
|
|
|
68042
68032
|
exports.default = SocketError;
|
|
68043
68033
|
|
|
68044
68034
|
/***/ }),
|
|
68045
|
-
/*
|
|
68035
|
+
/* 700 */
|
|
68046
68036
|
/***/ (function(module, exports, __webpack_require__) {
|
|
68047
68037
|
|
|
68048
68038
|
"use strict";
|
|
@@ -68053,7 +68043,7 @@ var _interopRequireDefault = __webpack_require__(2);
|
|
|
68053
68043
|
exports.__esModule = true;
|
|
68054
68044
|
exports.default = void 0;
|
|
68055
68045
|
|
|
68056
|
-
var _ws = _interopRequireDefault(__webpack_require__(
|
|
68046
|
+
var _ws = _interopRequireDefault(__webpack_require__(701));
|
|
68057
68047
|
|
|
68058
68048
|
var _default = (() => {
|
|
68059
68049
|
if ((typeof window !== undefined ? window : global).WebSocket) {
|
|
@@ -68066,7 +68056,7 @@ var _default = (() => {
|
|
|
68066
68056
|
exports.default = _default;
|
|
68067
68057
|
|
|
68068
68058
|
/***/ }),
|
|
68069
|
-
/*
|
|
68059
|
+
/* 701 */
|
|
68070
68060
|
/***/ (function(module, exports, __webpack_require__) {
|
|
68071
68061
|
|
|
68072
68062
|
"use strict";
|
|
@@ -68081,13 +68071,13 @@ module.exports = function () {
|
|
|
68081
68071
|
|
|
68082
68072
|
|
|
68083
68073
|
/***/ }),
|
|
68084
|
-
/*
|
|
68074
|
+
/* 702 */
|
|
68085
68075
|
/***/ (function(module, exports, __webpack_require__) {
|
|
68086
68076
|
|
|
68087
68077
|
"use strict";
|
|
68088
68078
|
|
|
68089
68079
|
|
|
68090
|
-
const deserializeMessage = __webpack_require__(
|
|
68080
|
+
const deserializeMessage = __webpack_require__(703);
|
|
68091
68081
|
|
|
68092
68082
|
module.exports = function unboxFromRumorMessage(rumorMessage) {
|
|
68093
68083
|
const message = deserializeMessage(rumorMessage.data);
|
|
@@ -68097,7 +68087,7 @@ module.exports = function unboxFromRumorMessage(rumorMessage) {
|
|
|
68097
68087
|
};
|
|
68098
68088
|
|
|
68099
68089
|
/***/ }),
|
|
68100
|
-
/*
|
|
68090
|
+
/* 703 */
|
|
68101
68091
|
/***/ (function(module, exports, __webpack_require__) {
|
|
68102
68092
|
|
|
68103
68093
|
"use strict";
|
|
@@ -68152,7 +68142,7 @@ module.exports = function deserializeMessage(msg) {
|
|
|
68152
68142
|
};
|
|
68153
68143
|
|
|
68154
68144
|
/***/ }),
|
|
68155
|
-
/*
|
|
68145
|
+
/* 704 */
|
|
68156
68146
|
/***/ (function(module, exports, __webpack_require__) {
|
|
68157
68147
|
|
|
68158
68148
|
"use strict";
|
|
@@ -68166,7 +68156,7 @@ const hasOpenTokSupport = __webpack_require__(60).once;
|
|
|
68166
68156
|
module.exports = () => hasOpenTokSupport() && ['Chrome', 'Firefox', 'Safari'].indexOf(name) > -1;
|
|
68167
68157
|
|
|
68168
68158
|
/***/ }),
|
|
68169
|
-
/*
|
|
68159
|
+
/* 705 */
|
|
68170
68160
|
/***/ (function(module, exports, __webpack_require__) {
|
|
68171
68161
|
|
|
68172
68162
|
"use strict";
|
|
@@ -68187,7 +68177,7 @@ const hasOpenTokSupport = __webpack_require__(60).once; // TODO Remove all trans
|
|
|
68187
68177
|
module.exports = () => hasOpenTokSupport() && (env.name === 'Chrome' || env.name === 'Firefox' || env.name === 'Node' || env.name === 'Safari' || env.name === 'Edge');
|
|
68188
68178
|
|
|
68189
68179
|
/***/ }),
|
|
68190
|
-
/*
|
|
68180
|
+
/* 706 */
|
|
68191
68181
|
/***/ (function(module, exports, __webpack_require__) {
|
|
68192
68182
|
|
|
68193
68183
|
"use strict";
|
|
@@ -68202,7 +68192,7 @@ const hasOpenTokSupport = __webpack_require__(60).once; // Indicates if the brow
|
|
|
68202
68192
|
module.exports = () => hasOpenTokSupport();
|
|
68203
68193
|
|
|
68204
68194
|
/***/ }),
|
|
68205
|
-
/*
|
|
68195
|
+
/* 707 */
|
|
68206
68196
|
/***/ (function(module, exports, __webpack_require__) {
|
|
68207
68197
|
|
|
68208
68198
|
"use strict";
|
|
@@ -68211,7 +68201,7 @@ module.exports = () => hasOpenTokSupport();
|
|
|
68211
68201
|
module.exports = 'DTLS_SRTP';
|
|
68212
68202
|
|
|
68213
68203
|
/***/ }),
|
|
68214
|
-
/*
|
|
68204
|
+
/* 708 */
|
|
68215
68205
|
/***/ (function(module, exports, __webpack_require__) {
|
|
68216
68206
|
|
|
68217
68207
|
"use strict";
|
|
@@ -68225,7 +68215,7 @@ module.exports = function capabilitiesFromHash(_ref) {
|
|
|
68225
68215
|
};
|
|
68226
68216
|
|
|
68227
68217
|
/***/ }),
|
|
68228
|
-
/*
|
|
68218
|
+
/* 709 */
|
|
68229
68219
|
/***/ (function(module, exports, __webpack_require__) {
|
|
68230
68220
|
|
|
68231
68221
|
"use strict";
|
|
@@ -68239,7 +68229,7 @@ module.exports = function SignalError(code, message) {
|
|
|
68239
68229
|
};
|
|
68240
68230
|
|
|
68241
68231
|
/***/ }),
|
|
68242
|
-
/*
|
|
68232
|
+
/* 710 */
|
|
68243
68233
|
/***/ (function(module, exports, __webpack_require__) {
|
|
68244
68234
|
|
|
68245
68235
|
"use strict";
|
|
@@ -68288,7 +68278,7 @@ const DelayedEventQueue = function DelayedEventQueue(eventDispatcher) {
|
|
|
68288
68278
|
module.exports = DelayedEventQueue;
|
|
68289
68279
|
|
|
68290
68280
|
/***/ }),
|
|
68291
|
-
/*
|
|
68281
|
+
/* 711 */
|
|
68292
68282
|
/***/ (function(module, exports, __webpack_require__) {
|
|
68293
68283
|
|
|
68294
68284
|
"use strict";
|
|
@@ -68310,9 +68300,9 @@ const SessionInfo = __webpack_require__(142);
|
|
|
68310
68300
|
|
|
68311
68301
|
const ExceptionCodes = __webpack_require__(8);
|
|
68312
68302
|
|
|
68313
|
-
const mapErrorCodeToName = __webpack_require__(
|
|
68303
|
+
const mapErrorCodeToName = __webpack_require__(712);
|
|
68314
68304
|
|
|
68315
|
-
const mapStatusCodeToErrorCode = __webpack_require__(
|
|
68305
|
+
const mapStatusCodeToErrorCode = __webpack_require__(713);
|
|
68316
68306
|
|
|
68317
68307
|
const promiseEndeavour = __webpack_require__(289).default;
|
|
68318
68308
|
|
|
@@ -68461,7 +68451,7 @@ function getSessionInfoFactory(_temp) {
|
|
|
68461
68451
|
module.exports = getSessionInfoFactory;
|
|
68462
68452
|
|
|
68463
68453
|
/***/ }),
|
|
68464
|
-
/*
|
|
68454
|
+
/* 712 */
|
|
68465
68455
|
/***/ (function(module, exports, __webpack_require__) {
|
|
68466
68456
|
|
|
68467
68457
|
"use strict";
|
|
@@ -68497,7 +68487,7 @@ function mapErrorCodeToName(code) {
|
|
|
68497
68487
|
module.exports = mapErrorCodeToName;
|
|
68498
68488
|
|
|
68499
68489
|
/***/ }),
|
|
68500
|
-
/*
|
|
68490
|
+
/* 713 */
|
|
68501
68491
|
/***/ (function(module, exports, __webpack_require__) {
|
|
68502
68492
|
|
|
68503
68493
|
"use strict";
|
|
@@ -68525,7 +68515,7 @@ function mapStatusCodeToErrorCode(code) {
|
|
|
68525
68515
|
module.exports = mapStatusCodeToErrorCode;
|
|
68526
68516
|
|
|
68527
68517
|
/***/ }),
|
|
68528
|
-
/*
|
|
68518
|
+
/* 714 */
|
|
68529
68519
|
/***/ (function(module, exports, __webpack_require__) {
|
|
68530
68520
|
|
|
68531
68521
|
"use strict";
|
|
@@ -68639,7 +68629,7 @@ module.exports = function initSessionFactory(deps) {
|
|
|
68639
68629
|
};
|
|
68640
68630
|
|
|
68641
68631
|
/***/ }),
|
|
68642
|
-
/*
|
|
68632
|
+
/* 715 */
|
|
68643
68633
|
/***/ (function(module, exports, __webpack_require__) {
|
|
68644
68634
|
|
|
68645
68635
|
"use strict";
|
|
@@ -68651,7 +68641,7 @@ var _regenerator = _interopRequireDefault(__webpack_require__(12));
|
|
|
68651
68641
|
|
|
68652
68642
|
var _asyncToGenerator2 = _interopRequireDefault(__webpack_require__(13));
|
|
68653
68643
|
|
|
68654
|
-
const difference = __webpack_require__(
|
|
68644
|
+
const difference = __webpack_require__(716);
|
|
68655
68645
|
|
|
68656
68646
|
const uniq = __webpack_require__(273);
|
|
68657
68647
|
|
|
@@ -68836,10 +68826,10 @@ const getSupportedCodecs = /*#__PURE__*/function () {
|
|
|
68836
68826
|
module.exports = getSupportedCodecs;
|
|
68837
68827
|
|
|
68838
68828
|
/***/ }),
|
|
68839
|
-
/*
|
|
68829
|
+
/* 716 */
|
|
68840
68830
|
/***/ (function(module, exports, __webpack_require__) {
|
|
68841
68831
|
|
|
68842
|
-
var baseDifference = __webpack_require__(
|
|
68832
|
+
var baseDifference = __webpack_require__(717),
|
|
68843
68833
|
baseFlatten = __webpack_require__(237),
|
|
68844
68834
|
baseRest = __webpack_require__(88),
|
|
68845
68835
|
isArrayLikeObject = __webpack_require__(130);
|
|
@@ -68875,7 +68865,7 @@ module.exports = difference;
|
|
|
68875
68865
|
|
|
68876
68866
|
|
|
68877
68867
|
/***/ }),
|
|
68878
|
-
/*
|
|
68868
|
+
/* 717 */
|
|
68879
68869
|
/***/ (function(module, exports, __webpack_require__) {
|
|
68880
68870
|
|
|
68881
68871
|
var SetCache = __webpack_require__(93),
|
|
@@ -68948,7 +68938,7 @@ module.exports = baseDifference;
|
|
|
68948
68938
|
|
|
68949
68939
|
|
|
68950
68940
|
/***/ }),
|
|
68951
|
-
/*
|
|
68941
|
+
/* 718 */
|
|
68952
68942
|
/***/ (function(module, exports, __webpack_require__) {
|
|
68953
68943
|
|
|
68954
68944
|
"use strict";
|
|
@@ -69000,7 +68990,7 @@ module.exports = function getDevices(callback) {
|
|
|
69000
68990
|
};
|
|
69001
68991
|
|
|
69002
68992
|
/***/ }),
|
|
69003
|
-
/*
|
|
68993
|
+
/* 719 */
|
|
69004
68994
|
/***/ (function(module, exports, __webpack_require__) {
|
|
69005
68995
|
|
|
69006
68996
|
"use strict";
|
|
@@ -69103,7 +69093,7 @@ module.exports = function (deps) {
|
|
|
69103
69093
|
};
|
|
69104
69094
|
|
|
69105
69095
|
/***/ }),
|
|
69106
|
-
/*
|
|
69096
|
+
/* 720 */
|
|
69107
69097
|
/***/ (function(module, exports, __webpack_require__) {
|
|
69108
69098
|
|
|
69109
69099
|
"use strict";
|
|
@@ -69115,7 +69105,7 @@ var _regenerator = _interopRequireDefault(__webpack_require__(12));
|
|
|
69115
69105
|
|
|
69116
69106
|
var _asyncToGenerator2 = _interopRequireDefault(__webpack_require__(13));
|
|
69117
69107
|
|
|
69118
|
-
const audioOutputDevicesChangeHandler = __webpack_require__(
|
|
69108
|
+
const audioOutputDevicesChangeHandler = __webpack_require__(721)();
|
|
69119
69109
|
|
|
69120
69110
|
const _require = __webpack_require__(23)(),
|
|
69121
69111
|
hasAudioOutputApiSupport = _require.hasAudioOutputApiSupport,
|
|
@@ -69155,7 +69145,7 @@ module.exports = () => {
|
|
|
69155
69145
|
};
|
|
69156
69146
|
|
|
69157
69147
|
/***/ }),
|
|
69158
|
-
/*
|
|
69148
|
+
/* 721 */
|
|
69159
69149
|
/***/ (function(module, exports, __webpack_require__) {
|
|
69160
69150
|
|
|
69161
69151
|
"use strict";
|