@webex/event-dictionary-ts 1.0.1602 → 1.0.1604
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.
|
@@ -17110,6 +17110,11 @@
|
|
|
17110
17110
|
"SCK"
|
|
17111
17111
|
]
|
|
17112
17112
|
},
|
|
17113
|
+
"screenCaptureModeFallbackCount": {
|
|
17114
|
+
"type": "integer",
|
|
17115
|
+
"minimum": 0,
|
|
17116
|
+
"maximum": 2147483647
|
|
17117
|
+
},
|
|
17113
17118
|
"presenterOverlayMode": {
|
|
17114
17119
|
"type": "string",
|
|
17115
17120
|
"description": "the mode of Presenter Overlay feature Apple provides",
|
|
@@ -29971,6 +29976,9 @@
|
|
|
29971
29976
|
"type": "string"
|
|
29972
29977
|
}
|
|
29973
29978
|
}
|
|
29979
|
+
},
|
|
29980
|
+
"ui_framework_info": {
|
|
29981
|
+
"type": "string"
|
|
29974
29982
|
}
|
|
29975
29983
|
}
|
|
29976
29984
|
}
|
|
@@ -5025,6 +5025,11 @@
|
|
|
5025
5025
|
"SCK"
|
|
5026
5026
|
]
|
|
5027
5027
|
},
|
|
5028
|
+
"screenCaptureModeFallbackCount": {
|
|
5029
|
+
"type": "integer",
|
|
5030
|
+
"minimum": 0,
|
|
5031
|
+
"maximum": 2147483647
|
|
5032
|
+
},
|
|
5028
5033
|
"presenterOverlayMode": {
|
|
5029
5034
|
"type": "string",
|
|
5030
5035
|
"description": "the mode of Presenter Overlay feature Apple provides",
|
|
@@ -7382,6 +7382,7 @@ export interface Event {
|
|
|
7382
7382
|
| "DIRECTX"
|
|
7383
7383
|
| "WINDOW"
|
|
7384
7384
|
| "SCK";
|
|
7385
|
+
screenCaptureModeFallbackCount?: number;
|
|
7385
7386
|
/**
|
|
7386
7387
|
* the mode of Presenter Overlay feature Apple provides
|
|
7387
7388
|
*/
|
|
@@ -12397,6 +12398,7 @@ export interface Event {
|
|
|
12397
12398
|
uri?: string;
|
|
12398
12399
|
additionalProperties?: false;
|
|
12399
12400
|
};
|
|
12401
|
+
ui_framework_info?: string;
|
|
12400
12402
|
additionalProperties?: false;
|
|
12401
12403
|
}
|
|
12402
12404
|
|
|
@@ -19289,6 +19291,7 @@ export interface MediaQualityEvent {
|
|
|
19289
19291
|
| "DIRECTX"
|
|
19290
19292
|
| "WINDOW"
|
|
19291
19293
|
| "SCK";
|
|
19294
|
+
screenCaptureModeFallbackCount?: number;
|
|
19292
19295
|
/**
|
|
19293
19296
|
* the mode of Presenter Overlay feature Apple provides
|
|
19294
19297
|
*/
|
package/package.json
CHANGED