@webex/event-dictionary-ts 1.0.1447 → 1.0.1448
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.
|
@@ -16198,6 +16198,29 @@
|
|
|
16198
16198
|
"minimum": 0,
|
|
16199
16199
|
"maximum": 127
|
|
16200
16200
|
},
|
|
16201
|
+
"shareContentDetectedToApplyDelayMax": {
|
|
16202
|
+
"type": "integer",
|
|
16203
|
+
"minimum": 0,
|
|
16204
|
+
"maximum": 2147483647
|
|
16205
|
+
},
|
|
16206
|
+
"shareContentDetectedType": {
|
|
16207
|
+
"type": "string",
|
|
16208
|
+
"description": "content type of sharing session",
|
|
16209
|
+
"enum": [
|
|
16210
|
+
"video",
|
|
16211
|
+
"text"
|
|
16212
|
+
]
|
|
16213
|
+
},
|
|
16214
|
+
"shareContentDetectedMethod": {
|
|
16215
|
+
"type": "string",
|
|
16216
|
+
"description": "method used to detect the content type of sharing session",
|
|
16217
|
+
"enum": [
|
|
16218
|
+
"ai",
|
|
16219
|
+
"vp",
|
|
16220
|
+
"preferred",
|
|
16221
|
+
"others"
|
|
16222
|
+
]
|
|
16223
|
+
},
|
|
16201
16224
|
"floorType": {
|
|
16202
16225
|
"type": "object",
|
|
16203
16226
|
"description": "Details associated with a share floor type",
|
|
@@ -4701,6 +4701,29 @@
|
|
|
4701
4701
|
"minimum": 0,
|
|
4702
4702
|
"maximum": 127
|
|
4703
4703
|
},
|
|
4704
|
+
"shareContentDetectedToApplyDelayMax": {
|
|
4705
|
+
"type": "integer",
|
|
4706
|
+
"minimum": 0,
|
|
4707
|
+
"maximum": 2147483647
|
|
4708
|
+
},
|
|
4709
|
+
"shareContentDetectedType": {
|
|
4710
|
+
"type": "string",
|
|
4711
|
+
"description": "content type of sharing session",
|
|
4712
|
+
"enum": [
|
|
4713
|
+
"video",
|
|
4714
|
+
"text"
|
|
4715
|
+
]
|
|
4716
|
+
},
|
|
4717
|
+
"shareContentDetectedMethod": {
|
|
4718
|
+
"type": "string",
|
|
4719
|
+
"description": "method used to detect the content type of sharing session",
|
|
4720
|
+
"enum": [
|
|
4721
|
+
"ai",
|
|
4722
|
+
"vp",
|
|
4723
|
+
"preferred",
|
|
4724
|
+
"others"
|
|
4725
|
+
]
|
|
4726
|
+
},
|
|
4704
4727
|
"floorType": {
|
|
4705
4728
|
"type": "object",
|
|
4706
4729
|
"description": "Details associated with a share floor type",
|
|
@@ -6583,6 +6583,15 @@ export interface Event {
|
|
|
6583
6583
|
*/
|
|
6584
6584
|
presenterOverlayMode?: "Disabled" | "Small" | "Large";
|
|
6585
6585
|
processShareContentDetectMillis?: number;
|
|
6586
|
+
shareContentDetectedToApplyDelayMax?: number;
|
|
6587
|
+
/**
|
|
6588
|
+
* content type of sharing session
|
|
6589
|
+
*/
|
|
6590
|
+
shareContentDetectedType?: "video" | "text";
|
|
6591
|
+
/**
|
|
6592
|
+
* method used to detect the content type of sharing session
|
|
6593
|
+
*/
|
|
6594
|
+
shareContentDetectedMethod?: "ai" | "vp" | "preferred" | "others";
|
|
6586
6595
|
/**
|
|
6587
6596
|
* Details associated with a share floor type
|
|
6588
6597
|
*/
|
|
@@ -17156,6 +17165,15 @@ export interface MediaQualityEvent {
|
|
|
17156
17165
|
*/
|
|
17157
17166
|
presenterOverlayMode?: "Disabled" | "Small" | "Large";
|
|
17158
17167
|
processShareContentDetectMillis?: number;
|
|
17168
|
+
shareContentDetectedToApplyDelayMax?: number;
|
|
17169
|
+
/**
|
|
17170
|
+
* content type of sharing session
|
|
17171
|
+
*/
|
|
17172
|
+
shareContentDetectedType?: "video" | "text";
|
|
17173
|
+
/**
|
|
17174
|
+
* method used to detect the content type of sharing session
|
|
17175
|
+
*/
|
|
17176
|
+
shareContentDetectedMethod?: "ai" | "vp" | "preferred" | "others";
|
|
17159
17177
|
/**
|
|
17160
17178
|
* Details associated with a share floor type
|
|
17161
17179
|
*/
|
package/package.json
CHANGED