@webex/internal-plugin-device 3.0.0-beta.3 → 3.0.0-beta.300
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/README.md +10 -6
- package/dist/config.js +0 -8
- package/dist/config.js.map +1 -1
- package/dist/constants.js +2 -3
- package/dist/constants.js.map +1 -1
- package/dist/device.js +102 -172
- package/dist/device.js.map +1 -1
- package/dist/features/feature-collection.js +1 -8
- package/dist/features/feature-collection.js.map +1 -1
- package/dist/features/feature-model.js +15 -42
- package/dist/features/feature-model.js.map +1 -1
- package/dist/features/features-model.js +9 -21
- package/dist/features/features-model.js.map +1 -1
- package/dist/features/index.js +0 -8
- package/dist/features/index.js.map +1 -1
- package/dist/index.js +2 -24
- package/dist/index.js.map +1 -1
- package/dist/interceptors/device-url.js +12 -33
- package/dist/interceptors/device-url.js.map +1 -1
- package/dist/ipNetworkDetector.js +200 -0
- package/dist/ipNetworkDetector.js.map +1 -0
- package/dist/metrics.js +0 -2
- package/dist/metrics.js.map +1 -1
- package/package.json +10 -10
- package/src/config.js +8 -9
- package/src/constants.js +3 -5
- package/src/device.js +149 -146
- package/src/features/feature-collection.js +1 -1
- package/src/features/feature-model.js +5 -11
- package/src/features/features-model.js +3 -9
- package/src/features/index.js +1 -5
- package/src/index.js +3 -11
- package/src/interceptors/device-url.js +5 -7
- package/src/ipNetworkDetector.ts +176 -0
- package/src/metrics.js +1 -2
- package/test/integration/spec/device.js +210 -239
- package/test/integration/spec/webex.js +9 -9
- package/test/unit/spec/device.js +44 -53
- package/test/unit/spec/features/feature-collection.js +2 -2
- package/test/unit/spec/features/feature-model.js +23 -39
- package/test/unit/spec/features/features-model.js +4 -12
- package/test/unit/spec/interceptors/device-url.js +69 -109
- package/test/unit/spec/ipNetworkDetector.js +410 -0
- package/test/unit/spec/wdm-dto.json +5 -13
|
@@ -50,26 +50,20 @@
|
|
|
50
50
|
},
|
|
51
51
|
"creationTime": "2020-01-01T12:12:12.000Z",
|
|
52
52
|
"modificationTime": "2020-01-01T12:12:12.000Z",
|
|
53
|
-
"deviceSettings": {
|
|
54
|
-
|
|
55
|
-
},
|
|
53
|
+
"deviceSettings": {},
|
|
56
54
|
"deviceSettingsString": "{}",
|
|
57
55
|
"showSupportText": false,
|
|
58
56
|
"reportingSiteUrl": "www.example.com/report",
|
|
59
57
|
"reportingSiteDesc": "Example Description",
|
|
60
58
|
"isDeviceManaged": false,
|
|
61
|
-
"trainSiteNames": [
|
|
62
|
-
|
|
63
|
-
],
|
|
59
|
+
"trainSiteNames": [],
|
|
64
60
|
"clientSecurityPolicy": "on",
|
|
65
61
|
"intranetInactivityCheckUrl": "www.example-intranet.com/spark_session_check.json",
|
|
66
62
|
"blockExternalCommunications": false,
|
|
67
63
|
"clientMessagingGiphy": "ALLOW",
|
|
68
64
|
"clientMessagingLinkPreview": "ALLOW",
|
|
69
65
|
"ecmEnabledForAllUsers": false,
|
|
70
|
-
"ecmSupportedStorageProviders": [
|
|
71
|
-
|
|
72
|
-
],
|
|
66
|
+
"ecmSupportedStorageProviders": [],
|
|
73
67
|
"defaultEcmMicrosoftCloud": "GLOBAL",
|
|
74
68
|
"ecmMicrosoftTenant": "",
|
|
75
69
|
"ecmScreenCaptureFeatureAllowed": true,
|
|
@@ -88,9 +82,7 @@
|
|
|
88
82
|
"mobileAutoLockIdleTimeout": 0,
|
|
89
83
|
"disableMeetingScheduling": false,
|
|
90
84
|
"ecmEnabledForAllUsers": false,
|
|
91
|
-
"ecmSupportedStorageProviders": [
|
|
92
|
-
|
|
93
|
-
],
|
|
85
|
+
"ecmSupportedStorageProviders": [],
|
|
94
86
|
"defaultEcmMicrosoftCloud": "GLOBAL",
|
|
95
87
|
"ecmMicrosoftTenant": "",
|
|
96
88
|
"restrictAccountsToEmailDomain": false,
|
|
@@ -109,4 +101,4 @@
|
|
|
109
101
|
},
|
|
110
102
|
"userId": "USERID",
|
|
111
103
|
"orgId": "ORGID"
|
|
112
|
-
}
|
|
104
|
+
}
|