@webex/event-dictionary-ts 1.0.1338 → 1.0.1340
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.
|
@@ -10418,6 +10418,12 @@
|
|
|
10418
10418
|
"clientSplitTunnelDetected": {
|
|
10419
10419
|
"type": "boolean"
|
|
10420
10420
|
},
|
|
10421
|
+
"clientUaType": {
|
|
10422
|
+
"type": "string"
|
|
10423
|
+
},
|
|
10424
|
+
"clientUaVersion": {
|
|
10425
|
+
"type": "string"
|
|
10426
|
+
},
|
|
10421
10427
|
"deviceType": {
|
|
10422
10428
|
"type": "string"
|
|
10423
10429
|
},
|
|
@@ -17965,6 +17971,11 @@
|
|
|
17965
17971
|
"UpSample_DNN_4"
|
|
17966
17972
|
]
|
|
17967
17973
|
},
|
|
17974
|
+
"processSRMillis": {
|
|
17975
|
+
"type": "number",
|
|
17976
|
+
"minimum": 0.0,
|
|
17977
|
+
"maximum": 9223372036854776000.0
|
|
17978
|
+
},
|
|
17968
17979
|
"remoteClientType": {
|
|
17969
17980
|
"type": "string",
|
|
17970
17981
|
"description": "this defines the major client types",
|
|
@@ -6807,6 +6807,11 @@
|
|
|
6807
6807
|
"UpSample_DNN_4"
|
|
6808
6808
|
]
|
|
6809
6809
|
},
|
|
6810
|
+
"processSRMillis": {
|
|
6811
|
+
"type": "number",
|
|
6812
|
+
"minimum": 0.0,
|
|
6813
|
+
"maximum": 9223372036854776000.0
|
|
6814
|
+
},
|
|
6810
6815
|
"remoteClientType": {
|
|
6811
6816
|
"type": "string",
|
|
6812
6817
|
"description": "this defines the major client types",
|
|
@@ -4495,6 +4495,8 @@ export interface Event {
|
|
|
4495
4495
|
cloudIngressTheaterClustersLoadBalanced?: string[];
|
|
4496
4496
|
clientCountryCode?: string;
|
|
4497
4497
|
clientSplitTunnelDetected?: boolean;
|
|
4498
|
+
clientUaType?: string;
|
|
4499
|
+
clientUaVersion?: string;
|
|
4498
4500
|
deviceType?: string;
|
|
4499
4501
|
expectedCloudReachabilityClustersCount?: number;
|
|
4500
4502
|
geoHint?: string[];
|
|
@@ -7311,6 +7313,7 @@ export interface Event {
|
|
|
7311
7313
|
| "UpSample_VP_2"
|
|
7312
7314
|
| "UpSample_DNN_2"
|
|
7313
7315
|
| "UpSample_DNN_4";
|
|
7316
|
+
processSRMillis?: number;
|
|
7314
7317
|
/**
|
|
7315
7318
|
* this defines the major client types
|
|
7316
7319
|
*/
|
|
@@ -16356,6 +16359,7 @@ export interface MediaQualityEvent {
|
|
|
16356
16359
|
renderWindowResolution?: number;
|
|
16357
16360
|
scaledResolution?: number;
|
|
16358
16361
|
upSampleType?: "UpSample_None" | "UpSample_Render" | "UpSample_VP_2" | "UpSample_DNN_2" | "UpSample_DNN_4";
|
|
16362
|
+
processSRMillis?: number;
|
|
16359
16363
|
/**
|
|
16360
16364
|
* this defines the major client types
|
|
16361
16365
|
*/
|
package/package.json
CHANGED