@webex/event-dictionary-ts 1.0.2211 → 1.0.2213

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.
@@ -4024,6 +4024,12 @@
4024
4024
  "packageSuffix": {
4025
4025
  "type": "string"
4026
4026
  },
4027
+ "packageArch": {
4028
+ "type": "string"
4029
+ },
4030
+ "launchId": {
4031
+ "type": "string"
4032
+ },
4027
4033
  "packageCount": {
4028
4034
  "type": "integer"
4029
4035
  },
@@ -578,6 +578,12 @@
578
578
  "packageSuffix": {
579
579
  "type": "string"
580
580
  },
581
+ "packageArch": {
582
+ "type": "string"
583
+ },
584
+ "launchId": {
585
+ "type": "string"
586
+ },
581
587
  "packageCount": {
582
588
  "type": "integer"
583
589
  },
@@ -4658,6 +4664,12 @@
4658
4664
  "packageSuffix": {
4659
4665
  "type": "string"
4660
4666
  },
4667
+ "packageArch": {
4668
+ "type": "string"
4669
+ },
4670
+ "launchId": {
4671
+ "type": "string"
4672
+ },
4661
4673
  "packageCount": {
4662
4674
  "type": "integer"
4663
4675
  },
@@ -20644,6 +20656,26 @@
20644
20656
  "type": "number",
20645
20657
  "minimum": -9223372036854776000.0,
20646
20658
  "maximum": 9223372036854776000.0
20659
+ },
20660
+ "maxStrobeLevel": {
20661
+ "type": "number",
20662
+ "minimum": -9223372036854776000.0,
20663
+ "maximum": 9223372036854776000.0
20664
+ },
20665
+ "videoStrobePattern": {
20666
+ "type": "string",
20667
+ "enum": [
20668
+ "VIDEO_STROBE_PATTERN_NONE",
20669
+ "VIDEO_STROBE_PATTERN_LOCAL",
20670
+ "VIDEO_STROBE_PATTERN_GLOBAL",
20671
+ "VIDEO_STROBE_PATTERN_BAND",
20672
+ "VIDEO_STROBE_PATTERN_MIXED"
20673
+ ]
20674
+ },
20675
+ "maxAntiStrobeProcessMillis": {
20676
+ "type": "number",
20677
+ "minimum": -9223372036854776000.0,
20678
+ "maximum": 9223372036854776000.0
20647
20679
  }
20648
20680
  }
20649
20681
  },
@@ -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
  },
@@ -341,6 +341,8 @@ export interface Event {
341
341
  */
342
342
  installerInfo?: {
343
343
  packageSuffix?: string;
344
+ packageArch?: string;
345
+ launchId?: string;
344
346
  packageCount?: number;
345
347
  totalSize?: number;
346
348
  additionalProperties?: never;
@@ -2154,6 +2156,8 @@ export interface Event {
2154
2156
  */
2155
2157
  installerInfo?: {
2156
2158
  packageSuffix?: string;
2159
+ packageArch?: string;
2160
+ launchId?: string;
2157
2161
  packageCount?: number;
2158
2162
  totalSize?: number;
2159
2163
  additionalProperties?: never;
@@ -9148,6 +9152,14 @@ export interface Event {
9148
9152
  maxFrameQp?: number;
9149
9153
  avgFrameQp?: number;
9150
9154
  maxNoiseLevel?: number;
9155
+ maxStrobeLevel?: number;
9156
+ videoStrobePattern?:
9157
+ | "VIDEO_STROBE_PATTERN_NONE"
9158
+ | "VIDEO_STROBE_PATTERN_LOCAL"
9159
+ | "VIDEO_STROBE_PATTERN_GLOBAL"
9160
+ | "VIDEO_STROBE_PATTERN_BAND"
9161
+ | "VIDEO_STROBE_PATTERN_MIXED";
9162
+ maxAntiStrobeProcessMillis?: number;
9151
9163
  additionalProperties?: never;
9152
9164
  };
9153
9165
  /**
@@ -18780,6 +18792,8 @@ export interface ClientEvent {
18780
18792
  */
18781
18793
  installerInfo?: {
18782
18794
  packageSuffix?: string;
18795
+ packageArch?: string;
18796
+ launchId?: string;
18783
18797
  packageCount?: number;
18784
18798
  totalSize?: number;
18785
18799
  additionalProperties?: never;
@@ -25451,6 +25465,14 @@ export interface MediaQualityEvent {
25451
25465
  maxFrameQp?: number;
25452
25466
  avgFrameQp?: number;
25453
25467
  maxNoiseLevel?: number;
25468
+ maxStrobeLevel?: number;
25469
+ videoStrobePattern?:
25470
+ | "VIDEO_STROBE_PATTERN_NONE"
25471
+ | "VIDEO_STROBE_PATTERN_LOCAL"
25472
+ | "VIDEO_STROBE_PATTERN_GLOBAL"
25473
+ | "VIDEO_STROBE_PATTERN_BAND"
25474
+ | "VIDEO_STROBE_PATTERN_MIXED";
25475
+ maxAntiStrobeProcessMillis?: number;
25454
25476
  additionalProperties?: never;
25455
25477
  };
25456
25478
  /**
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.2211"
35
+ "version": "1.0.2213"
36
36
  }