@webex/event-dictionary-ts 1.0.1979 → 1.0.1981
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.
|
@@ -487,6 +487,12 @@
|
|
|
487
487
|
},
|
|
488
488
|
"vendorId": {
|
|
489
489
|
"type": "string"
|
|
490
|
+
},
|
|
491
|
+
"staticPerformanceLevel": {
|
|
492
|
+
"type": "string"
|
|
493
|
+
},
|
|
494
|
+
"staticPerformanceScore": {
|
|
495
|
+
"type": "integer"
|
|
490
496
|
}
|
|
491
497
|
}
|
|
492
498
|
},
|
|
@@ -4287,6 +4293,12 @@
|
|
|
4287
4293
|
},
|
|
4288
4294
|
"vendorId": {
|
|
4289
4295
|
"type": "string"
|
|
4296
|
+
},
|
|
4297
|
+
"staticPerformanceLevel": {
|
|
4298
|
+
"type": "string"
|
|
4299
|
+
},
|
|
4300
|
+
"staticPerformanceScore": {
|
|
4301
|
+
"type": "integer"
|
|
4290
4302
|
}
|
|
4291
4303
|
}
|
|
4292
4304
|
},
|
|
@@ -19002,6 +19014,16 @@
|
|
|
19002
19014
|
"minimum": 0,
|
|
19003
19015
|
"maximum": 127
|
|
19004
19016
|
},
|
|
19017
|
+
"faceDetectMillis": {
|
|
19018
|
+
"type": "integer",
|
|
19019
|
+
"minimum": 0,
|
|
19020
|
+
"maximum": 2147483647
|
|
19021
|
+
},
|
|
19022
|
+
"faceDetectCount": {
|
|
19023
|
+
"type": "integer",
|
|
19024
|
+
"minimum": -1,
|
|
19025
|
+
"maximum": 127
|
|
19026
|
+
},
|
|
19005
19027
|
"capturedFrameRateNormalShare": {
|
|
19006
19028
|
"type": "number",
|
|
19007
19029
|
"minimum": -9223372036854776000.0,
|
|
@@ -5826,6 +5826,16 @@
|
|
|
5826
5826
|
"minimum": 0,
|
|
5827
5827
|
"maximum": 127
|
|
5828
5828
|
},
|
|
5829
|
+
"faceDetectMillis": {
|
|
5830
|
+
"type": "integer",
|
|
5831
|
+
"minimum": 0,
|
|
5832
|
+
"maximum": 2147483647
|
|
5833
|
+
},
|
|
5834
|
+
"faceDetectCount": {
|
|
5835
|
+
"type": "integer",
|
|
5836
|
+
"minimum": -1,
|
|
5837
|
+
"maximum": 127
|
|
5838
|
+
},
|
|
5829
5839
|
"capturedFrameRateNormalShare": {
|
|
5830
5840
|
"type": "number",
|
|
5831
5841
|
"minimum": -9223372036854776000.0,
|
|
@@ -279,6 +279,8 @@ export interface Event {
|
|
|
279
279
|
mtaVersion?: string;
|
|
280
280
|
isWarholOpening?: boolean;
|
|
281
281
|
vendorId?: string;
|
|
282
|
+
staticPerformanceLevel?: string;
|
|
283
|
+
staticPerformanceScore?: number;
|
|
282
284
|
additionalProperties?: false;
|
|
283
285
|
};
|
|
284
286
|
emmVendorId?: string;
|
|
@@ -1942,6 +1944,8 @@ export interface Event {
|
|
|
1942
1944
|
mtaVersion?: string;
|
|
1943
1945
|
isWarholOpening?: boolean;
|
|
1944
1946
|
vendorId?: string;
|
|
1947
|
+
staticPerformanceLevel?: string;
|
|
1948
|
+
staticPerformanceScore?: number;
|
|
1945
1949
|
additionalProperties?: false;
|
|
1946
1950
|
};
|
|
1947
1951
|
emmVendorId?: string;
|
|
@@ -8255,6 +8259,8 @@ export interface Event {
|
|
|
8255
8259
|
relightingNeededFrameCount?: number;
|
|
8256
8260
|
relightingSkippedFrameCount?: number;
|
|
8257
8261
|
meanRelitPostProcessMillis?: number;
|
|
8262
|
+
faceDetectMillis?: number;
|
|
8263
|
+
faceDetectCount?: number;
|
|
8258
8264
|
capturedFrameRateNormalShare?: number;
|
|
8259
8265
|
capturedFrameRateHFPSShare?: number;
|
|
8260
8266
|
transmittedFrameRateNormalShare?: number;
|
|
@@ -17121,6 +17127,8 @@ export interface ClientEvent {
|
|
|
17121
17127
|
mtaVersion?: string;
|
|
17122
17128
|
isWarholOpening?: boolean;
|
|
17123
17129
|
vendorId?: string;
|
|
17130
|
+
staticPerformanceLevel?: string;
|
|
17131
|
+
staticPerformanceScore?: number;
|
|
17124
17132
|
additionalProperties?: false;
|
|
17125
17133
|
};
|
|
17126
17134
|
emmVendorId?: string;
|
|
@@ -23112,6 +23120,8 @@ export interface MediaQualityEvent {
|
|
|
23112
23120
|
relightingNeededFrameCount?: number;
|
|
23113
23121
|
relightingSkippedFrameCount?: number;
|
|
23114
23122
|
meanRelitPostProcessMillis?: number;
|
|
23123
|
+
faceDetectMillis?: number;
|
|
23124
|
+
faceDetectCount?: number;
|
|
23115
23125
|
capturedFrameRateNormalShare?: number;
|
|
23116
23126
|
capturedFrameRateHFPSShare?: number;
|
|
23117
23127
|
transmittedFrameRateNormalShare?: number;
|
package/package.json
CHANGED