@webex/event-dictionary-ts 1.0.1734 → 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
|
}
|
|
@@ -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
|
}
|
|
@@ -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")[];
|
|
@@ -21002,6 +21012,16 @@ export interface MediaQualityEvent {
|
|
|
21002
21012
|
frameRate: number;
|
|
21003
21013
|
additionalProperties?: false;
|
|
21004
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
|
+
}[];
|
|
21005
21025
|
additionalProperties?: false;
|
|
21006
21026
|
}[];
|
|
21007
21027
|
viewAnnouncements?: ("Default" | "Speaker" | "Stereoscopic")[];
|
package/package.json
CHANGED