@webex/event-dictionary-ts 1.0.1471 → 1.0.1472

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.
@@ -16648,6 +16648,42 @@
16648
16648
  "Default",
16649
16649
  "Speaker"
16650
16650
  ]
16651
+ },
16652
+ "contentSourceInputs": {
16653
+ "type": "array",
16654
+ "items": {
16655
+ "type": "object",
16656
+ "description": "Video content source type and quality",
16657
+ "additionalProperties": true,
16658
+ "required": [
16659
+ "sourceType",
16660
+ "sourceIdentifier",
16661
+ "height",
16662
+ "width",
16663
+ "frameRate"
16664
+ ],
16665
+ "properties": {
16666
+ "sourceType": {},
16667
+ "sourceIdentifier": {
16668
+ "type": "string"
16669
+ },
16670
+ "height": {
16671
+ "type": "integer",
16672
+ "minimum": -2147483648,
16673
+ "maximum": 2147483647
16674
+ },
16675
+ "width": {
16676
+ "type": "integer",
16677
+ "minimum": -2147483648,
16678
+ "maximum": 2147483647
16679
+ },
16680
+ "frameRate": {
16681
+ "type": "integer",
16682
+ "minimum": -2147483648,
16683
+ "maximum": 2147483647
16684
+ }
16685
+ }
16686
+ }
16651
16687
  }
16652
16688
  }
16653
16689
  }
@@ -4861,6 +4861,42 @@
4861
4861
  "Default",
4862
4862
  "Speaker"
4863
4863
  ]
4864
+ },
4865
+ "contentSourceInputs": {
4866
+ "type": "array",
4867
+ "items": {
4868
+ "type": "object",
4869
+ "description": "Video content source type and quality",
4870
+ "additionalProperties": true,
4871
+ "required": [
4872
+ "sourceType",
4873
+ "sourceIdentifier",
4874
+ "height",
4875
+ "width",
4876
+ "frameRate"
4877
+ ],
4878
+ "properties": {
4879
+ "sourceType": {},
4880
+ "sourceIdentifier": {
4881
+ "type": "string"
4882
+ },
4883
+ "height": {
4884
+ "type": "integer",
4885
+ "minimum": -2147483648,
4886
+ "maximum": 2147483647
4887
+ },
4888
+ "width": {
4889
+ "type": "integer",
4890
+ "minimum": -2147483648,
4891
+ "maximum": 2147483647
4892
+ },
4893
+ "frameRate": {
4894
+ "type": "integer",
4895
+ "minimum": -2147483648,
4896
+ "maximum": 2147483647
4897
+ }
4898
+ }
4899
+ }
4864
4900
  }
4865
4901
  }
4866
4902
  }
@@ -6852,6 +6852,14 @@ export interface Event {
6852
6852
  * view type of a video stream
6853
6853
  */
6854
6854
  announcedView?: "Default" | "Speaker";
6855
+ contentSourceInputs?: {
6856
+ sourceType: {};
6857
+ sourceIdentifier: string;
6858
+ height: number;
6859
+ width: number;
6860
+ frameRate: number;
6861
+ additionalProperties?: false;
6862
+ }[];
6855
6863
  additionalProperties?: false;
6856
6864
  }[];
6857
6865
  viewAnnouncements?: ("Default" | "Speaker")[];
@@ -17847,6 +17855,14 @@ export interface MediaQualityEvent {
17847
17855
  * view type of a video stream
17848
17856
  */
17849
17857
  announcedView?: "Default" | "Speaker";
17858
+ contentSourceInputs?: {
17859
+ sourceType: {};
17860
+ sourceIdentifier: string;
17861
+ height: number;
17862
+ width: number;
17863
+ frameRate: number;
17864
+ additionalProperties?: false;
17865
+ }[];
17850
17866
  additionalProperties?: false;
17851
17867
  }[];
17852
17868
  viewAnnouncements?: ("Default" | "Speaker")[];
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.1471"
31
+ "version": "1.0.1472"
32
32
  }