@webex/event-dictionary-ts 1.0.2245 → 1.0.2246
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.
|
@@ -20873,6 +20873,12 @@
|
|
|
20873
20873
|
"type": "number",
|
|
20874
20874
|
"minimum": -9223372036854776000.0,
|
|
20875
20875
|
"maximum": 9223372036854776000.0
|
|
20876
|
+
},
|
|
20877
|
+
"minAntiStrobeGlobalRatio": {
|
|
20878
|
+
"type": "number"
|
|
20879
|
+
},
|
|
20880
|
+
"minAntiStrobeBlockRatio": {
|
|
20881
|
+
"type": "number"
|
|
20876
20882
|
}
|
|
20877
20883
|
}
|
|
20878
20884
|
},
|
|
@@ -6380,6 +6380,12 @@
|
|
|
6380
6380
|
"type": "number",
|
|
6381
6381
|
"minimum": -9223372036854776000.0,
|
|
6382
6382
|
"maximum": 9223372036854776000.0
|
|
6383
|
+
},
|
|
6384
|
+
"minAntiStrobeGlobalRatio": {
|
|
6385
|
+
"type": "number"
|
|
6386
|
+
},
|
|
6387
|
+
"minAntiStrobeBlockRatio": {
|
|
6388
|
+
"type": "number"
|
|
6383
6389
|
}
|
|
6384
6390
|
}
|
|
6385
6391
|
},
|
|
@@ -9293,6 +9293,8 @@ export interface Event {
|
|
|
9293
9293
|
| "VIDEO_STROBE_PATTERN_BAND"
|
|
9294
9294
|
| "VIDEO_STROBE_PATTERN_MIXED";
|
|
9295
9295
|
maxAntiStrobeProcessMillis?: number;
|
|
9296
|
+
minAntiStrobeGlobalRatio?: number;
|
|
9297
|
+
minAntiStrobeBlockRatio?: number;
|
|
9296
9298
|
additionalProperties?: never;
|
|
9297
9299
|
};
|
|
9298
9300
|
/**
|
|
@@ -25771,6 +25773,8 @@ export interface MediaQualityEvent {
|
|
|
25771
25773
|
| "VIDEO_STROBE_PATTERN_BAND"
|
|
25772
25774
|
| "VIDEO_STROBE_PATTERN_MIXED";
|
|
25773
25775
|
maxAntiStrobeProcessMillis?: number;
|
|
25776
|
+
minAntiStrobeGlobalRatio?: number;
|
|
25777
|
+
minAntiStrobeBlockRatio?: number;
|
|
25774
25778
|
additionalProperties?: never;
|
|
25775
25779
|
};
|
|
25776
25780
|
/**
|
package/package.json
CHANGED