@webex/event-dictionary-ts 1.0.2097 → 1.0.2099
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.
|
@@ -19952,7 +19952,26 @@
|
|
|
19952
19952
|
"frameRate"
|
|
19953
19953
|
],
|
|
19954
19954
|
"properties": {
|
|
19955
|
-
"sourceType": {
|
|
19955
|
+
"sourceType": {
|
|
19956
|
+
"type": "string",
|
|
19957
|
+
"description": "Video source type for outgoing video sessions",
|
|
19958
|
+
"enum": [
|
|
19959
|
+
"HDMI",
|
|
19960
|
+
"SDI",
|
|
19961
|
+
"InternCamera",
|
|
19962
|
+
"VGA",
|
|
19963
|
+
"USBC",
|
|
19964
|
+
"USBCamera",
|
|
19965
|
+
"VideoOverEthernet",
|
|
19966
|
+
"AirPlay",
|
|
19967
|
+
"Miracast",
|
|
19968
|
+
"DirectShare",
|
|
19969
|
+
"JpgPresentation",
|
|
19970
|
+
"JpgVideoMutePoster",
|
|
19971
|
+
"JpgRemoteAccess",
|
|
19972
|
+
"Other"
|
|
19973
|
+
]
|
|
19974
|
+
},
|
|
19956
19975
|
"sourceIdentifier": {
|
|
19957
19976
|
"type": "string"
|
|
19958
19977
|
},
|
|
@@ -25441,6 +25460,15 @@
|
|
|
25441
25460
|
"type": "string"
|
|
25442
25461
|
}
|
|
25443
25462
|
}
|
|
25463
|
+
},
|
|
25464
|
+
"userType": {
|
|
25465
|
+
"type": "string",
|
|
25466
|
+
"enum": [
|
|
25467
|
+
"host",
|
|
25468
|
+
"attendee",
|
|
25469
|
+
"cohost",
|
|
25470
|
+
"panelist"
|
|
25471
|
+
]
|
|
25444
25472
|
}
|
|
25445
25473
|
}
|
|
25446
25474
|
},
|
|
@@ -6372,7 +6372,26 @@
|
|
|
6372
6372
|
"frameRate"
|
|
6373
6373
|
],
|
|
6374
6374
|
"properties": {
|
|
6375
|
-
"sourceType": {
|
|
6375
|
+
"sourceType": {
|
|
6376
|
+
"type": "string",
|
|
6377
|
+
"description": "Video source type for outgoing video sessions",
|
|
6378
|
+
"enum": [
|
|
6379
|
+
"HDMI",
|
|
6380
|
+
"SDI",
|
|
6381
|
+
"InternCamera",
|
|
6382
|
+
"VGA",
|
|
6383
|
+
"USBC",
|
|
6384
|
+
"USBCamera",
|
|
6385
|
+
"VideoOverEthernet",
|
|
6386
|
+
"AirPlay",
|
|
6387
|
+
"Miracast",
|
|
6388
|
+
"DirectShare",
|
|
6389
|
+
"JpgPresentation",
|
|
6390
|
+
"JpgVideoMutePoster",
|
|
6391
|
+
"JpgRemoteAccess",
|
|
6392
|
+
"Other"
|
|
6393
|
+
]
|
|
6394
|
+
},
|
|
6376
6395
|
"sourceIdentifier": {
|
|
6377
6396
|
"type": "string"
|
|
6378
6397
|
},
|
|
@@ -11861,6 +11880,15 @@
|
|
|
11861
11880
|
"type": "string"
|
|
11862
11881
|
}
|
|
11863
11882
|
}
|
|
11883
|
+
},
|
|
11884
|
+
"userType": {
|
|
11885
|
+
"type": "string",
|
|
11886
|
+
"enum": [
|
|
11887
|
+
"host",
|
|
11888
|
+
"attendee",
|
|
11889
|
+
"cohost",
|
|
11890
|
+
"panelist"
|
|
11891
|
+
]
|
|
11864
11892
|
}
|
|
11865
11893
|
}
|
|
11866
11894
|
}
|
|
@@ -8696,7 +8696,24 @@ export interface Event {
|
|
|
8696
8696
|
additionalProperties?: false;
|
|
8697
8697
|
}[];
|
|
8698
8698
|
videoSourceInputs?: {
|
|
8699
|
-
|
|
8699
|
+
/**
|
|
8700
|
+
* Video source type for outgoing video sessions
|
|
8701
|
+
*/
|
|
8702
|
+
sourceType:
|
|
8703
|
+
| "HDMI"
|
|
8704
|
+
| "SDI"
|
|
8705
|
+
| "InternCamera"
|
|
8706
|
+
| "VGA"
|
|
8707
|
+
| "USBC"
|
|
8708
|
+
| "USBCamera"
|
|
8709
|
+
| "VideoOverEthernet"
|
|
8710
|
+
| "AirPlay"
|
|
8711
|
+
| "Miracast"
|
|
8712
|
+
| "DirectShare"
|
|
8713
|
+
| "JpgPresentation"
|
|
8714
|
+
| "JpgVideoMutePoster"
|
|
8715
|
+
| "JpgRemoteAccess"
|
|
8716
|
+
| "Other";
|
|
8700
8717
|
sourceIdentifier: string;
|
|
8701
8718
|
correlationId?: string;
|
|
8702
8719
|
lastIntervalNumber?: number;
|
|
@@ -11136,6 +11153,7 @@ export interface Event {
|
|
|
11136
11153
|
tempSipUri?: string;
|
|
11137
11154
|
additionalProperties?: false;
|
|
11138
11155
|
};
|
|
11156
|
+
userType?: "host" | "attendee" | "cohost" | "panelist";
|
|
11139
11157
|
additionalProperties?: false;
|
|
11140
11158
|
}
|
|
11141
11159
|
| {
|
|
@@ -24109,7 +24127,24 @@ export interface MediaQualityEvent {
|
|
|
24109
24127
|
additionalProperties?: false;
|
|
24110
24128
|
}[];
|
|
24111
24129
|
videoSourceInputs?: {
|
|
24112
|
-
|
|
24130
|
+
/**
|
|
24131
|
+
* Video source type for outgoing video sessions
|
|
24132
|
+
*/
|
|
24133
|
+
sourceType:
|
|
24134
|
+
| "HDMI"
|
|
24135
|
+
| "SDI"
|
|
24136
|
+
| "InternCamera"
|
|
24137
|
+
| "VGA"
|
|
24138
|
+
| "USBC"
|
|
24139
|
+
| "USBCamera"
|
|
24140
|
+
| "VideoOverEthernet"
|
|
24141
|
+
| "AirPlay"
|
|
24142
|
+
| "Miracast"
|
|
24143
|
+
| "DirectShare"
|
|
24144
|
+
| "JpgPresentation"
|
|
24145
|
+
| "JpgVideoMutePoster"
|
|
24146
|
+
| "JpgRemoteAccess"
|
|
24147
|
+
| "Other";
|
|
24113
24148
|
sourceIdentifier: string;
|
|
24114
24149
|
correlationId?: string;
|
|
24115
24150
|
lastIntervalNumber?: number;
|
|
@@ -26549,5 +26584,6 @@ export interface MediaQualityEvent {
|
|
|
26549
26584
|
tempSipUri?: string;
|
|
26550
26585
|
additionalProperties?: false;
|
|
26551
26586
|
};
|
|
26587
|
+
userType?: "host" | "attendee" | "cohost" | "panelist";
|
|
26552
26588
|
additionalProperties?: false;
|
|
26553
26589
|
}
|
package/package.json
CHANGED