@webex/event-dictionary-ts 1.0.1797 → 1.0.1798
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.
|
@@ -18285,6 +18285,12 @@
|
|
|
18285
18285
|
"minimum": 0,
|
|
18286
18286
|
"maximum": 2147483647
|
|
18287
18287
|
},
|
|
18288
|
+
"screenCaptureRecord": {
|
|
18289
|
+
"type": "array",
|
|
18290
|
+
"items": {
|
|
18291
|
+
"type": "string"
|
|
18292
|
+
}
|
|
18293
|
+
},
|
|
18288
18294
|
"presenterOverlayMode": {
|
|
18289
18295
|
"type": "string",
|
|
18290
18296
|
"description": "the mode of Presenter Overlay feature Apple provides",
|
|
@@ -5434,6 +5434,12 @@
|
|
|
5434
5434
|
"minimum": 0,
|
|
5435
5435
|
"maximum": 2147483647
|
|
5436
5436
|
},
|
|
5437
|
+
"screenCaptureRecord": {
|
|
5438
|
+
"type": "array",
|
|
5439
|
+
"items": {
|
|
5440
|
+
"type": "string"
|
|
5441
|
+
}
|
|
5442
|
+
},
|
|
5437
5443
|
"presenterOverlayMode": {
|
|
5438
5444
|
"type": "string",
|
|
5439
5445
|
"description": "the mode of Presenter Overlay feature Apple provides",
|
|
@@ -7931,6 +7931,7 @@ export interface Event {
|
|
|
7931
7931
|
| "WINDOW"
|
|
7932
7932
|
| "SCK";
|
|
7933
7933
|
screenCaptureModeFallbackCount?: number;
|
|
7934
|
+
screenCaptureRecord?: string[];
|
|
7934
7935
|
/**
|
|
7935
7936
|
* the mode of Presenter Overlay feature Apple provides
|
|
7936
7937
|
*/
|
|
@@ -21617,6 +21618,7 @@ export interface MediaQualityEvent {
|
|
|
21617
21618
|
| "WINDOW"
|
|
21618
21619
|
| "SCK";
|
|
21619
21620
|
screenCaptureModeFallbackCount?: number;
|
|
21621
|
+
screenCaptureRecord?: string[];
|
|
21620
21622
|
/**
|
|
21621
21623
|
* the mode of Presenter Overlay feature Apple provides
|
|
21622
21624
|
*/
|
package/package.json
CHANGED