@webex/event-dictionary-ts 1.0.2210 → 1.0.2212

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.
@@ -8469,6 +8469,19 @@
8469
8469
  "manual"
8470
8470
  ]
8471
8471
  },
8472
+ "userActivation": {
8473
+ "type": "object",
8474
+ "description": "User activation state reported from the browser's navigator.userActivation API",
8475
+ "additionalProperties": true,
8476
+ "properties": {
8477
+ "hasBeenActive": {
8478
+ "type": "boolean"
8479
+ },
8480
+ "isActive": {
8481
+ "type": "boolean"
8482
+ }
8483
+ }
8484
+ },
8472
8485
  "privacyAndSecurityPermission": {
8473
8486
  "type": "object",
8474
8487
  "description": "Map of device types to their permission status and reason when permission is not granted",
@@ -9103,6 +9103,19 @@
9103
9103
  "manual"
9104
9104
  ]
9105
9105
  },
9106
+ "userActivation": {
9107
+ "type": "object",
9108
+ "description": "User activation state reported from the browser's navigator.userActivation API",
9109
+ "additionalProperties": true,
9110
+ "properties": {
9111
+ "hasBeenActive": {
9112
+ "type": "boolean"
9113
+ },
9114
+ "isActive": {
9115
+ "type": "boolean"
9116
+ }
9117
+ }
9118
+ },
9106
9119
  "privacyAndSecurityPermission": {
9107
9120
  "type": "object",
9108
9121
  "description": "Map of device types to their permission status and reason when permission is not granted",
@@ -20631,6 +20644,26 @@
20631
20644
  "type": "number",
20632
20645
  "minimum": -9223372036854776000.0,
20633
20646
  "maximum": 9223372036854776000.0
20647
+ },
20648
+ "maxStrobeLevel": {
20649
+ "type": "number",
20650
+ "minimum": -9223372036854776000.0,
20651
+ "maximum": 9223372036854776000.0
20652
+ },
20653
+ "videoStrobePattern": {
20654
+ "type": "string",
20655
+ "enum": [
20656
+ "VIDEO_STROBE_PATTERN_NONE",
20657
+ "VIDEO_STROBE_PATTERN_LOCAL",
20658
+ "VIDEO_STROBE_PATTERN_GLOBAL",
20659
+ "VIDEO_STROBE_PATTERN_BAND",
20660
+ "VIDEO_STROBE_PATTERN_MIXED"
20661
+ ]
20662
+ },
20663
+ "maxAntiStrobeProcessMillis": {
20664
+ "type": "number",
20665
+ "minimum": -9223372036854776000.0,
20666
+ "maximum": 9223372036854776000.0
20634
20667
  }
20635
20668
  }
20636
20669
  },
@@ -6314,6 +6314,26 @@
6314
6314
  "type": "number",
6315
6315
  "minimum": -9223372036854776000.0,
6316
6316
  "maximum": 9223372036854776000.0
6317
+ },
6318
+ "maxStrobeLevel": {
6319
+ "type": "number",
6320
+ "minimum": -9223372036854776000.0,
6321
+ "maximum": 9223372036854776000.0
6322
+ },
6323
+ "videoStrobePattern": {
6324
+ "type": "string",
6325
+ "enum": [
6326
+ "VIDEO_STROBE_PATTERN_NONE",
6327
+ "VIDEO_STROBE_PATTERN_LOCAL",
6328
+ "VIDEO_STROBE_PATTERN_GLOBAL",
6329
+ "VIDEO_STROBE_PATTERN_BAND",
6330
+ "VIDEO_STROBE_PATTERN_MIXED"
6331
+ ]
6332
+ },
6333
+ "maxAntiStrobeProcessMillis": {
6334
+ "type": "number",
6335
+ "minimum": -9223372036854776000.0,
6336
+ "maximum": 9223372036854776000.0
6317
6337
  }
6318
6338
  }
6319
6339
  },
@@ -4399,6 +4399,14 @@ export interface Event {
4399
4399
  dialogType?: DialogType;
4400
4400
  isAutomatedUser?: boolean;
4401
4401
  telemetryOptOut?: "automatic" | "manual";
4402
+ /**
4403
+ * User activation state reported from the browser's navigator.userActivation API
4404
+ */
4405
+ userActivation?: {
4406
+ hasBeenActive?: boolean;
4407
+ isActive?: boolean;
4408
+ additionalProperties?: never;
4409
+ };
4402
4410
  /**
4403
4411
  * Map of device types to their permission status and reason when permission is not granted
4404
4412
  */
@@ -9140,6 +9148,14 @@ export interface Event {
9140
9148
  maxFrameQp?: number;
9141
9149
  avgFrameQp?: number;
9142
9150
  maxNoiseLevel?: number;
9151
+ maxStrobeLevel?: number;
9152
+ videoStrobePattern?:
9153
+ | "VIDEO_STROBE_PATTERN_NONE"
9154
+ | "VIDEO_STROBE_PATTERN_LOCAL"
9155
+ | "VIDEO_STROBE_PATTERN_GLOBAL"
9156
+ | "VIDEO_STROBE_PATTERN_BAND"
9157
+ | "VIDEO_STROBE_PATTERN_MIXED";
9158
+ maxAntiStrobeProcessMillis?: number;
9143
9159
  additionalProperties?: never;
9144
9160
  };
9145
9161
  /**
@@ -21017,6 +21033,14 @@ export interface ClientEvent {
21017
21033
  dialogType?: DialogType;
21018
21034
  isAutomatedUser?: boolean;
21019
21035
  telemetryOptOut?: "automatic" | "manual";
21036
+ /**
21037
+ * User activation state reported from the browser's navigator.userActivation API
21038
+ */
21039
+ userActivation?: {
21040
+ hasBeenActive?: boolean;
21041
+ isActive?: boolean;
21042
+ additionalProperties?: never;
21043
+ };
21020
21044
  /**
21021
21045
  * Map of device types to their permission status and reason when permission is not granted
21022
21046
  */
@@ -25435,6 +25459,14 @@ export interface MediaQualityEvent {
25435
25459
  maxFrameQp?: number;
25436
25460
  avgFrameQp?: number;
25437
25461
  maxNoiseLevel?: number;
25462
+ maxStrobeLevel?: number;
25463
+ videoStrobePattern?:
25464
+ | "VIDEO_STROBE_PATTERN_NONE"
25465
+ | "VIDEO_STROBE_PATTERN_LOCAL"
25466
+ | "VIDEO_STROBE_PATTERN_GLOBAL"
25467
+ | "VIDEO_STROBE_PATTERN_BAND"
25468
+ | "VIDEO_STROBE_PATTERN_MIXED";
25469
+ maxAntiStrobeProcessMillis?: number;
25438
25470
  additionalProperties?: never;
25439
25471
  };
25440
25472
  /**
package/package.json CHANGED
@@ -32,5 +32,5 @@
32
32
  "access": "public",
33
33
  "registry": "https://registry.npmjs.org"
34
34
  },
35
- "version": "1.0.2210"
35
+ "version": "1.0.2212"
36
36
  }