@webex/event-dictionary-ts 1.0.1733 → 1.0.1735

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.
@@ -17949,6 +17949,50 @@
17949
17949
  }
17950
17950
  }
17951
17951
  }
17952
+ },
17953
+ "videoSourceInputs": {
17954
+ "type": "array",
17955
+ "items": {
17956
+ "type": "object",
17957
+ "description": "Video source type and quality",
17958
+ "additionalProperties": true,
17959
+ "required": [
17960
+ "sourceType",
17961
+ "sourceIdentifier",
17962
+ "height",
17963
+ "width",
17964
+ "frameRate"
17965
+ ],
17966
+ "properties": {
17967
+ "sourceType": {},
17968
+ "sourceIdentifier": {
17969
+ "type": "string"
17970
+ },
17971
+ "correlationId": {
17972
+ "type": "string"
17973
+ },
17974
+ "lastIntervalNumber": {
17975
+ "type": "number",
17976
+ "minimum": -9223372036854776000.0,
17977
+ "maximum": 9223372036854776000.0
17978
+ },
17979
+ "height": {
17980
+ "type": "integer",
17981
+ "minimum": -2147483648,
17982
+ "maximum": 2147483647
17983
+ },
17984
+ "width": {
17985
+ "type": "integer",
17986
+ "minimum": -2147483648,
17987
+ "maximum": 2147483647
17988
+ },
17989
+ "frameRate": {
17990
+ "type": "integer",
17991
+ "minimum": -2147483648,
17992
+ "maximum": 2147483647
17993
+ }
17994
+ }
17995
+ }
17952
17996
  }
17953
17997
  }
17954
17998
  }
@@ -22060,6 +22104,10 @@
22060
22104
  "mediaExtInfoV2": {
22061
22105
  "type": "object",
22062
22106
  "additionalProperties": true
22107
+ },
22108
+ "stateDescription": {
22109
+ "type": "object",
22110
+ "additionalProperties": true
22063
22111
  }
22064
22112
  }
22065
22113
  }
@@ -5408,6 +5408,50 @@
5408
5408
  }
5409
5409
  }
5410
5410
  }
5411
+ },
5412
+ "videoSourceInputs": {
5413
+ "type": "array",
5414
+ "items": {
5415
+ "type": "object",
5416
+ "description": "Video source type and quality",
5417
+ "additionalProperties": true,
5418
+ "required": [
5419
+ "sourceType",
5420
+ "sourceIdentifier",
5421
+ "height",
5422
+ "width",
5423
+ "frameRate"
5424
+ ],
5425
+ "properties": {
5426
+ "sourceType": {},
5427
+ "sourceIdentifier": {
5428
+ "type": "string"
5429
+ },
5430
+ "correlationId": {
5431
+ "type": "string"
5432
+ },
5433
+ "lastIntervalNumber": {
5434
+ "type": "number",
5435
+ "minimum": -9223372036854776000.0,
5436
+ "maximum": 9223372036854776000.0
5437
+ },
5438
+ "height": {
5439
+ "type": "integer",
5440
+ "minimum": -2147483648,
5441
+ "maximum": 2147483647
5442
+ },
5443
+ "width": {
5444
+ "type": "integer",
5445
+ "minimum": -2147483648,
5446
+ "maximum": 2147483647
5447
+ },
5448
+ "frameRate": {
5449
+ "type": "integer",
5450
+ "minimum": -2147483648,
5451
+ "maximum": 2147483647
5452
+ }
5453
+ }
5454
+ }
5411
5455
  }
5412
5456
  }
5413
5457
  }
@@ -9519,6 +9563,10 @@
9519
9563
  "mediaExtInfoV2": {
9520
9564
  "type": "object",
9521
9565
  "additionalProperties": true
9566
+ },
9567
+ "stateDescription": {
9568
+ "type": "object",
9569
+ "additionalProperties": true
9522
9570
  }
9523
9571
  }
9524
9572
  }
@@ -7700,6 +7700,16 @@ export interface Event {
7700
7700
  frameRate: number;
7701
7701
  additionalProperties?: false;
7702
7702
  }[];
7703
+ videoSourceInputs?: {
7704
+ sourceType: {};
7705
+ sourceIdentifier: string;
7706
+ correlationId?: string;
7707
+ lastIntervalNumber?: number;
7708
+ height: number;
7709
+ width: number;
7710
+ frameRate: number;
7711
+ additionalProperties?: false;
7712
+ }[];
7703
7713
  additionalProperties?: false;
7704
7714
  }[];
7705
7715
  viewAnnouncements?: ("Default" | "Speaker" | "Stereoscopic")[];
@@ -9395,6 +9405,7 @@ export interface Event {
9395
9405
  errorDescription?: string;
9396
9406
  mediaExtInfo?: string;
9397
9407
  mediaExtInfoV2?: {};
9408
+ stateDescription?: {};
9398
9409
  additionalProperties?: false;
9399
9410
  }[];
9400
9411
  additionalProperties?: false;
@@ -21001,6 +21012,16 @@ export interface MediaQualityEvent {
21001
21012
  frameRate: number;
21002
21013
  additionalProperties?: false;
21003
21014
  }[];
21015
+ videoSourceInputs?: {
21016
+ sourceType: {};
21017
+ sourceIdentifier: string;
21018
+ correlationId?: string;
21019
+ lastIntervalNumber?: number;
21020
+ height: number;
21021
+ width: number;
21022
+ frameRate: number;
21023
+ additionalProperties?: false;
21024
+ }[];
21004
21025
  additionalProperties?: false;
21005
21026
  }[];
21006
21027
  viewAnnouncements?: ("Default" | "Speaker" | "Stereoscopic")[];
@@ -22691,6 +22712,7 @@ export interface MediaQualityEvent {
22691
22712
  errorDescription?: string;
22692
22713
  mediaExtInfo?: string;
22693
22714
  mediaExtInfoV2?: {};
22715
+ stateDescription?: {};
22694
22716
  additionalProperties?: false;
22695
22717
  }[];
22696
22718
  additionalProperties?: false;
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.1733"
31
+ "version": "1.0.1735"
32
32
  }