@webex/plugin-device-manager 3.0.0-beta.7 → 3.0.0-beta.71

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/src/index.js CHANGED
@@ -11,7 +11,7 @@ import DeviceManager from './device-manager';
11
11
  import config from './config';
12
12
 
13
13
  registerPlugin('devicemanager', DeviceManager, {
14
- config
14
+ config,
15
15
  });
16
16
 
17
17
  export {default} from './device-manager';
package/webex.js CHANGED
@@ -17,20 +17,20 @@ const WebexCore = require('@webex/webex-core').default;
17
17
  const config = {
18
18
  hydraServiceUrl: process.env.HYDRA_SERVICE_URL || 'https://api.ciscospark.com/v1',
19
19
  credentials: {
20
- clientType: 'confidential'
20
+ clientType: 'confidential',
21
21
  },
22
22
  device: {
23
- ephemeral: true
23
+ ephemeral: true,
24
24
  },
25
25
  storage: {
26
26
  boundedAdapter: MemoryStoreAdapter,
27
- unboundedAdapter: MemoryStoreAdapter
28
- }
27
+ unboundedAdapter: MemoryStoreAdapter,
28
+ },
29
29
  };
30
30
 
31
31
  const Webex = WebexCore.extend({
32
32
  webex: true,
33
- version: PACKAGE_VERSION
33
+ version: PACKAGE_VERSION,
34
34
  });
35
35
 
36
36
  Webex.init = function init(attrs = {}) {