@webex/event-dictionary-ts 1.0.1902 → 1.0.1903
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.
|
@@ -18903,6 +18903,16 @@
|
|
|
18903
18903
|
"minimum": -9223372036854776000.0,
|
|
18904
18904
|
"maximum": 9223372036854776000.0
|
|
18905
18905
|
},
|
|
18906
|
+
"camOutputIntervalMin": {
|
|
18907
|
+
"type": "number",
|
|
18908
|
+
"minimum": -9223372036854776000.0,
|
|
18909
|
+
"maximum": 9223372036854776000.0
|
|
18910
|
+
},
|
|
18911
|
+
"camOutputIntervalMax": {
|
|
18912
|
+
"type": "number",
|
|
18913
|
+
"minimum": -9223372036854776000.0,
|
|
18914
|
+
"maximum": 9223372036854776000.0
|
|
18915
|
+
},
|
|
18906
18916
|
"adaptedFrames": {
|
|
18907
18917
|
"type": "integer",
|
|
18908
18918
|
"minimum": -2147483648,
|
|
@@ -5834,6 +5834,16 @@
|
|
|
5834
5834
|
"minimum": -9223372036854776000.0,
|
|
5835
5835
|
"maximum": 9223372036854776000.0
|
|
5836
5836
|
},
|
|
5837
|
+
"camOutputIntervalMin": {
|
|
5838
|
+
"type": "number",
|
|
5839
|
+
"minimum": -9223372036854776000.0,
|
|
5840
|
+
"maximum": 9223372036854776000.0
|
|
5841
|
+
},
|
|
5842
|
+
"camOutputIntervalMax": {
|
|
5843
|
+
"type": "number",
|
|
5844
|
+
"minimum": -9223372036854776000.0,
|
|
5845
|
+
"maximum": 9223372036854776000.0
|
|
5846
|
+
},
|
|
5837
5847
|
"adaptedFrames": {
|
|
5838
5848
|
"type": "integer",
|
|
5839
5849
|
"minimum": -2147483648,
|
|
@@ -8208,6 +8208,8 @@ export interface Event {
|
|
|
8208
8208
|
additionalProperties?: false;
|
|
8209
8209
|
}[];
|
|
8210
8210
|
camOutputFps?: number;
|
|
8211
|
+
camOutputIntervalMin?: number;
|
|
8212
|
+
camOutputIntervalMax?: number;
|
|
8211
8213
|
adaptedFrames?: number;
|
|
8212
8214
|
droppedFrames?: number;
|
|
8213
8215
|
sentFps?: number;
|
|
@@ -22256,6 +22258,8 @@ export interface MediaQualityEvent {
|
|
|
22256
22258
|
additionalProperties?: false;
|
|
22257
22259
|
}[];
|
|
22258
22260
|
camOutputFps?: number;
|
|
22261
|
+
camOutputIntervalMin?: number;
|
|
22262
|
+
camOutputIntervalMax?: number;
|
|
22259
22263
|
adaptedFrames?: number;
|
|
22260
22264
|
droppedFrames?: number;
|
|
22261
22265
|
sentFps?: number;
|
package/package.json
CHANGED