@webex/internal-plugin-device 1.140.0 → 1.142.2
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/config.js +1 -1
- package/dist/config.js.map +1 -1
- package/dist/device.js +1 -1
- package/package.json +5 -5
- package/src/config.js +2 -2
package/dist/config.js
CHANGED
|
@@ -32,7 +32,7 @@ var _default = {
|
|
|
32
32
|
*/
|
|
33
33
|
body: {
|
|
34
34
|
name: (typeof process.title === 'string' ? process.title.trim() : undefined) || _common.inBrowser && 'browser' || 'javascript',
|
|
35
|
-
deviceType:
|
|
35
|
+
deviceType: _common.deviceType.WEB,
|
|
36
36
|
model: 'web-js-sdk',
|
|
37
37
|
localizedModel: 'webex-js-sdk',
|
|
38
38
|
systemName: 'WEBEX_JS_SDK',
|
package/dist/config.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["config.js"],"names":["device","canRegisterWaitDuration","defaults","body","name","process","title","trim","undefined","inBrowser","deviceType","model","localizedModel","systemName","systemVersion","enableInactivityEnforcement","ephemeral","ephemeralDeviceTTL"],"mappings":";;;;;;;;;;AAAA;;eAEe;AACbA,EAAAA,MAAM,EAAE;AAEN;AACJ;AACA;AACA;AACA;AACIC,IAAAA,uBAAuB,EAAE,EAPnB;;AASN;AACJ;AACA;AACA;AACA;AACIC,IAAAA,QAAQ,EAAE;AAER;AACN;AACA;AACA;AACA;AACMC,MAAAA,IAAI,EAAE;AACJC,QAAAA,IAAI,EAAE,CAAC,OAAOC,OAAO,CAACC,KAAf,KAAyB,QAAzB,GACLD,OAAO,CAACC,KAAR,CAAcC,IAAd,EADK,GACkBC,SADnB,KAEJC,qBAAa,SAFT,IAEsB,YAHxB;AAIJC,QAAAA,UAAU,
|
|
1
|
+
{"version":3,"sources":["config.js"],"names":["device","canRegisterWaitDuration","defaults","body","name","process","title","trim","undefined","inBrowser","deviceType","WEB","model","localizedModel","systemName","systemVersion","enableInactivityEnforcement","ephemeral","ephemeralDeviceTTL"],"mappings":";;;;;;;;;;AAAA;;eAEe;AACbA,EAAAA,MAAM,EAAE;AAEN;AACJ;AACA;AACA;AACA;AACIC,IAAAA,uBAAuB,EAAE,EAPnB;;AASN;AACJ;AACA;AACA;AACA;AACIC,IAAAA,QAAQ,EAAE;AAER;AACN;AACA;AACA;AACA;AACMC,MAAAA,IAAI,EAAE;AACJC,QAAAA,IAAI,EAAE,CAAC,OAAOC,OAAO,CAACC,KAAf,KAAyB,QAAzB,GACLD,OAAO,CAACC,KAAR,CAAcC,IAAd,EADK,GACkBC,SADnB,KAEJC,qBAAa,SAFT,IAEsB,YAHxB;AAIJC,QAAAA,UAAU,EAAEA,mBAAWC,GAJnB;AAKJC,QAAAA,KAAK,EAAE,YALH;AAMJC,QAAAA,cAAc,EAAE,cANZ;AAOJC,QAAAA,UAAU,EAAE,cAPR;AAQJC,QAAAA,aAAa,EAAE;AARX;AAPE,KAdJ;;AAiCN;AACJ;AACA;AACA;AACA;AACIC,IAAAA,2BAA2B,EAAE,KAtCvB;;AAwCN;AACJ;AACA;AACA;AACA;AACA;AACA;AACIC,IAAAA,SAAS,EAAE,KA/CL;;AAiDN;AACJ;AACA;AACA;AACA;AACA;AACIC,IAAAA,kBAAkB,EAAE,KAAK;AAvDnB;AADK,C","sourcesContent":["import {inBrowser, deviceType} from '@webex/common';\n\nexport default {\n device: {\n\n /**\n * The duration to wait for the catalog to populate in seconds.\n *\n * @type {number}\n */\n canRegisterWaitDuration: 10,\n\n /**\n * The default configuration group when sending registration requests.\n *\n * @type {Object}\n */\n defaults: {\n\n /**\n * The default body configuration of registration requests.\n *\n * @type {Object}\n */\n body: {\n name: (typeof process.title === 'string' ?\n process.title.trim() : undefined) ||\n inBrowser && 'browser' || 'javascript',\n deviceType: deviceType.WEB,\n model: 'web-js-sdk',\n localizedModel: 'webex-js-sdk',\n systemName: 'WEBEX_JS_SDK',\n systemVersion: '1.0.0'\n }\n },\n\n /**\n * When true, the **wdm** service will enforce an inactivity duration.\n *\n * @type {boolean}\n */\n enableInactivityEnforcement: false,\n\n /**\n * When true, the device registration will include a ttl value of\n * {@link config.device.ephemeralDeviceTTL} and refresh on an interval of\n * {@link config.device.ephemeralDeviceTTL} / 2 + 60 seconds.\n *\n * @type {boolean}\n */\n ephemeral: false,\n\n /**\n * The ttl value to include in device registration if\n * {@link config.device.ephemeral} is true. Measured in seconds.\n *\n * @type {boolean}\n */\n ephemeralDeviceTTL: 30 * 60\n }\n};\n"]}
|
package/dist/device.js
CHANGED
|
@@ -760,7 +760,7 @@ var Device = _webexCore.WebexPlugin.extend((_dec = (0, _webexCore.waitForValue)(
|
|
|
760
760
|
}
|
|
761
761
|
/* eslint-enable require-jsdoc */
|
|
762
762
|
,
|
|
763
|
-
version: "1.
|
|
763
|
+
version: "1.142.2"
|
|
764
764
|
}, ((0, _applyDecoratedDescriptor2.default)(_obj, "refresh", [_common.oneFlight, _dec], (0, _getOwnPropertyDescriptor.default)(_obj, "refresh"), _obj), (0, _applyDecoratedDescriptor2.default)(_obj, "register", [_common.oneFlight, _dec2], (0, _getOwnPropertyDescriptor.default)(_obj, "register"), _obj), (0, _applyDecoratedDescriptor2.default)(_obj, "unregister", [_common.oneFlight, _dec3], (0, _getOwnPropertyDescriptor.default)(_obj, "unregister"), _obj), (0, _applyDecoratedDescriptor2.default)(_obj, "markUrlFailedAndGetNew", [_dec4], (0, _getOwnPropertyDescriptor.default)(_obj, "markUrlFailedAndGetNew"), _obj), (0, _applyDecoratedDescriptor2.default)(_obj, "initialize", [_dec5], (0, _getOwnPropertyDescriptor.default)(_obj, "initialize"), _obj)), _obj)));
|
|
765
765
|
|
|
766
766
|
var _default = Device;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@webex/internal-plugin-device",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.142.2",
|
|
4
4
|
"description": "",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "Timothy Scheuering <timsch@cisco.com>",
|
|
@@ -17,13 +17,13 @@
|
|
|
17
17
|
},
|
|
18
18
|
"dependencies": {
|
|
19
19
|
"@babel/runtime-corejs2": "^7.14.8",
|
|
20
|
-
"@webex/webex-core": "1.
|
|
21
|
-
"@webex/common": "1.
|
|
22
|
-
"@webex/common-timers": "1.
|
|
20
|
+
"@webex/webex-core": "1.142.2",
|
|
21
|
+
"@webex/common": "1.142.2",
|
|
22
|
+
"@webex/common-timers": "1.142.2",
|
|
23
23
|
"ampersand-state": "^5.0.3",
|
|
24
24
|
"ampersand-collection": "^2.0.2",
|
|
25
25
|
"lodash": "^4.17.21",
|
|
26
|
-
"@webex/http-core": "1.
|
|
26
|
+
"@webex/http-core": "1.142.2",
|
|
27
27
|
"envify": "^4.1.0"
|
|
28
28
|
}
|
|
29
29
|
}
|
package/src/config.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {inBrowser} from '@webex/common';
|
|
1
|
+
import {inBrowser, deviceType} from '@webex/common';
|
|
2
2
|
|
|
3
3
|
export default {
|
|
4
4
|
device: {
|
|
@@ -26,7 +26,7 @@ export default {
|
|
|
26
26
|
name: (typeof process.title === 'string' ?
|
|
27
27
|
process.title.trim() : undefined) ||
|
|
28
28
|
inBrowser && 'browser' || 'javascript',
|
|
29
|
-
deviceType:
|
|
29
|
+
deviceType: deviceType.WEB,
|
|
30
30
|
model: 'web-js-sdk',
|
|
31
31
|
localizedModel: 'webex-js-sdk',
|
|
32
32
|
systemName: 'WEBEX_JS_SDK',
|