@webex/event-dictionary-ts 1.0.1447 → 1.0.1449

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.
@@ -2253,6 +2253,7 @@
2253
2253
  "client.login.start",
2254
2254
  "client.login.end",
2255
2255
  "client.switch.environment",
2256
+ "client.waiting.user-action",
2256
2257
  "client.warhol.downloaded",
2257
2258
  "client.webapp-download.start",
2258
2259
  "client.webapp-download.in-progress",
@@ -2729,6 +2729,7 @@
2729
2729
  "client.login.start",
2730
2730
  "client.login.end",
2731
2731
  "client.switch.environment",
2732
+ "client.waiting.user-action",
2732
2733
  "client.warhol.downloaded",
2733
2734
  "client.webapp-download.start",
2734
2735
  "client.webapp-download.in-progress",
@@ -16198,6 +16199,29 @@
16198
16199
  "minimum": 0,
16199
16200
  "maximum": 127
16200
16201
  },
16202
+ "shareContentDetectedToApplyDelayMax": {
16203
+ "type": "integer",
16204
+ "minimum": 0,
16205
+ "maximum": 2147483647
16206
+ },
16207
+ "shareContentDetectedType": {
16208
+ "type": "string",
16209
+ "description": "content type of sharing session",
16210
+ "enum": [
16211
+ "video",
16212
+ "text"
16213
+ ]
16214
+ },
16215
+ "shareContentDetectedMethod": {
16216
+ "type": "string",
16217
+ "description": "method used to detect the content type of sharing session",
16218
+ "enum": [
16219
+ "ai",
16220
+ "vp",
16221
+ "preferred",
16222
+ "others"
16223
+ ]
16224
+ },
16201
16225
  "floorType": {
16202
16226
  "type": "object",
16203
16227
  "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",
@@ -1069,6 +1069,7 @@ export interface Event {
1069
1069
  | "client.login.start"
1070
1070
  | "client.login.end"
1071
1071
  | "client.switch.environment"
1072
+ | "client.waiting.user-action"
1072
1073
  | "client.warhol.downloaded"
1073
1074
  | "client.webapp-download.start"
1074
1075
  | "client.webapp-download.in-progress"
@@ -6583,6 +6584,15 @@ export interface Event {
6583
6584
  */
6584
6585
  presenterOverlayMode?: "Disabled" | "Small" | "Large";
6585
6586
  processShareContentDetectMillis?: number;
6587
+ shareContentDetectedToApplyDelayMax?: number;
6588
+ /**
6589
+ * content type of sharing session
6590
+ */
6591
+ shareContentDetectedType?: "video" | "text";
6592
+ /**
6593
+ * method used to detect the content type of sharing session
6594
+ */
6595
+ shareContentDetectedMethod?: "ai" | "vp" | "preferred" | "others";
6586
6596
  /**
6587
6597
  * Details associated with a share floor type
6588
6598
  */
@@ -11798,6 +11808,7 @@ export interface ClientEvent {
11798
11808
  | "client.login.start"
11799
11809
  | "client.login.end"
11800
11810
  | "client.switch.environment"
11811
+ | "client.waiting.user-action"
11801
11812
  | "client.warhol.downloaded"
11802
11813
  | "client.webapp-download.start"
11803
11814
  | "client.webapp-download.in-progress"
@@ -17156,6 +17167,15 @@ export interface MediaQualityEvent {
17156
17167
  */
17157
17168
  presenterOverlayMode?: "Disabled" | "Small" | "Large";
17158
17169
  processShareContentDetectMillis?: number;
17170
+ shareContentDetectedToApplyDelayMax?: number;
17171
+ /**
17172
+ * content type of sharing session
17173
+ */
17174
+ shareContentDetectedType?: "video" | "text";
17175
+ /**
17176
+ * method used to detect the content type of sharing session
17177
+ */
17178
+ shareContentDetectedMethod?: "ai" | "vp" | "preferred" | "others";
17159
17179
  /**
17160
17180
  * Details associated with a share floor type
17161
17181
  */
package/package.json CHANGED
@@ -28,5 +28,5 @@
28
28
  "access": "public",
29
29
  "registry": "https://registry.npmjs.org"
30
30
  },
31
- "version": "1.0.1447"
31
+ "version": "1.0.1449"
32
32
  }