@webex/webrtc 2.60.0 → 2.60.1-next.10
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/index.js +1 -2
- package/dist/index.js.map +1 -1
- package/package.json +13 -12
package/dist/index.js
CHANGED
|
@@ -16,7 +16,7 @@ var _createClass2 = _interopRequireDefault(require("@babel/runtime-corejs2/helpe
|
|
|
16
16
|
* APIs to talk with the browser.
|
|
17
17
|
* This package could be used by any third-party project.
|
|
18
18
|
*/
|
|
19
|
-
var WebRTC = /*#__PURE__*/function () {
|
|
19
|
+
var WebRTC = exports.default = /*#__PURE__*/function () {
|
|
20
20
|
function WebRTC() {
|
|
21
21
|
(0, _classCallCheck2.default)(this, WebRTC);
|
|
22
22
|
}
|
|
@@ -63,5 +63,4 @@ var WebRTC = /*#__PURE__*/function () {
|
|
|
63
63
|
}]);
|
|
64
64
|
return WebRTC;
|
|
65
65
|
}();
|
|
66
|
-
exports.default = WebRTC;
|
|
67
66
|
//# sourceMappingURL=index.js.map
|
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["WebRTC","
|
|
1
|
+
{"version":3,"names":["WebRTC","exports","default","_classCallCheck2","_createClass2","key","value","printStatsToConsole","console","log","getHistory","getRawInfo","setPeerConnectionAndVideo"],"sources":["index.js"],"sourcesContent":["/* eslint-disable no-console */\n\n/*!\n * Copyright (c) 2015-2020 Cisco Systems, Inc. See LICENSE file.\n */\n\n/**\n * APIs to talk with the browser.\n * This package could be used by any third-party project.\n */\nexport default class WebRTC {\n /**\n * Print stats to console.\n * @returns {undefined}\n */\n printStatsToConsole() {\n console.log('stats');\n }\n\n /**\n * Get history.\n * @returns {Object}\n */\n getHistory() {\n return {};\n }\n\n /**\n * Get info before analysis.\n * @returns {Object}\n */\n getRawInfo() {\n return {};\n }\n\n /**\n * Set peer connection and video.\n * TODO: Should this be split into explicit calls?\n * e.g., setPeerConnection, setVideo\n * @returns {undefined}\n */\n setPeerConnectionAndVideo() {}\n}\n"],"mappings":";;;;;;;;;;AAAA;AAEA;AACA;AACA;AAEA;AACA;AACA;AACA;AAHA,IAIqBA,MAAM,GAAAC,OAAA,CAAAC,OAAA;EAAA,SAAAF,OAAA;IAAA,IAAAG,gBAAA,CAAAD,OAAA,QAAAF,MAAA;EAAA;EAAA,IAAAI,aAAA,CAAAF,OAAA,EAAAF,MAAA;IAAAK,GAAA;IAAAC,KAAA;IACzB;AACF;AACA;AACA;IACE,SAAAC,oBAAA,EAAsB;MACpBC,OAAO,CAACC,GAAG,CAAC,OAAO,CAAC;IACtB;;IAEA;AACF;AACA;AACA;EAHE;IAAAJ,GAAA;IAAAC,KAAA,EAIA,SAAAI,WAAA,EAAa;MACX,OAAO,CAAC,CAAC;IACX;;IAEA;AACF;AACA;AACA;EAHE;IAAAL,GAAA;IAAAC,KAAA,EAIA,SAAAK,WAAA,EAAa;MACX,OAAO,CAAC,CAAC;IACX;;IAEA;AACF;AACA;AACA;AACA;AACA;EALE;IAAAN,GAAA;IAAAC,KAAA,EAMA,SAAAM,0BAAA,EAA4B,CAAC;EAAC;EAAA,OAAAZ,MAAA;AAAA"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@webex/webrtc",
|
|
3
|
-
"version": "2.60.0",
|
|
4
3
|
"description": "",
|
|
5
4
|
"license": "MIT",
|
|
6
5
|
"contributors": [
|
|
@@ -20,7 +19,7 @@
|
|
|
20
19
|
"directory": "packages/@webex/webrtc"
|
|
21
20
|
},
|
|
22
21
|
"engines": {
|
|
23
|
-
"node": ">=
|
|
22
|
+
"node": ">=16"
|
|
24
23
|
},
|
|
25
24
|
"browserify": {
|
|
26
25
|
"transform": [
|
|
@@ -31,6 +30,7 @@
|
|
|
31
30
|
"scripts": {
|
|
32
31
|
"build": "yarn build:src",
|
|
33
32
|
"build:src": "webex-legacy-tools build -dest \"./dist\" -src \"./src\" -js -ts -maps",
|
|
33
|
+
"deploy:npm": "yarn npm publish",
|
|
34
34
|
"test": "yarn test:style && yarn test:unit && yarn test:integration && yarn test:browser",
|
|
35
35
|
"test:browser": "webex-legacy-tools test --integration --unit --runner karma",
|
|
36
36
|
"test:integration": "webex-legacy-tools test --integration --runner mocha",
|
|
@@ -39,15 +39,16 @@
|
|
|
39
39
|
},
|
|
40
40
|
"devDependencies": {
|
|
41
41
|
"@babel/core": "^7.17.10",
|
|
42
|
-
"@webex/babel-config-legacy": "
|
|
43
|
-
"@webex/eslint-config-legacy": "
|
|
44
|
-
"@webex/jest-config-legacy": "
|
|
45
|
-
"@webex/legacy-tools": "
|
|
46
|
-
"@webex/test-helper-chai": "2.60.
|
|
47
|
-
"@webex/test-helper-mocha": "2.60.
|
|
48
|
-
"@webex/test-helper-mock-webex": "2.60.
|
|
49
|
-
"@webex/test-helper-test-users": "2.60.
|
|
42
|
+
"@webex/babel-config-legacy": "0.0.0",
|
|
43
|
+
"@webex/eslint-config-legacy": "0.0.0",
|
|
44
|
+
"@webex/jest-config-legacy": "0.0.0",
|
|
45
|
+
"@webex/legacy-tools": "0.0.0",
|
|
46
|
+
"@webex/test-helper-chai": "2.60.1-next.10",
|
|
47
|
+
"@webex/test-helper-mocha": "2.60.1-next.10",
|
|
48
|
+
"@webex/test-helper-mock-webex": "2.60.1-next.10",
|
|
49
|
+
"@webex/test-helper-test-users": "2.60.1-next.10",
|
|
50
50
|
"eslint": "^8.24.0",
|
|
51
51
|
"prettier": "^2.7.1"
|
|
52
|
-
}
|
|
53
|
-
|
|
52
|
+
},
|
|
53
|
+
"version": "2.60.1-next.10"
|
|
54
|
+
}
|