@webex/internal-plugin-metrics 3.0.0-beta.196 → 3.0.0-beta.198
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.
- package/dist/call-diagnostic/call-diagnostic-metrics-batcher.js +5 -83
- package/dist/call-diagnostic/call-diagnostic-metrics-batcher.js.map +1 -1
- package/dist/call-diagnostic/call-diagnostic-metrics.js +76 -3
- package/dist/call-diagnostic/call-diagnostic-metrics.js.map +1 -1
- package/dist/call-diagnostic/call-diagnostic-metrics.util.js +120 -1
- package/dist/call-diagnostic/call-diagnostic-metrics.util.js.map +1 -1
- package/dist/call-diagnostic/generated-types-temp/ClientEvent.js.map +1 -1
- package/dist/call-diagnostic/generated-types-temp/Event.js.map +1 -1
- package/dist/metrics.js +1 -1
- package/dist/metrics.types.js.map +1 -1
- package/dist/new-metrics.js +64 -0
- package/dist/new-metrics.js.map +1 -1
- package/dist/types/call-diagnostic/call-diagnostic-metrics.d.ts +24 -0
- package/dist/types/call-diagnostic/call-diagnostic-metrics.util.d.ts +21 -0
- package/dist/types/call-diagnostic/generated-types-temp/ClientEvent.d.ts +135 -135
- package/dist/types/call-diagnostic/generated-types-temp/Event.d.ts +379 -379
- package/dist/types/metrics.types.d.ts +5 -0
- package/dist/types/new-metrics.d.ts +36 -0
- package/package.json +8 -8
- package/src/call-diagnostic/call-diagnostic-metrics-batcher.ts +2 -99
- package/src/call-diagnostic/call-diagnostic-metrics.ts +64 -2
- package/src/call-diagnostic/call-diagnostic-metrics.util.ts +132 -1
- package/src/call-diagnostic/generated-types-temp/ClientEvent.ts +1360 -1322
- package/src/call-diagnostic/generated-types-temp/Event.ts +3142 -3049
- package/src/metrics.types.ts +6 -0
- package/src/new-metrics.ts +52 -0
- package/test/unit/spec/call-diagnostic/call-diagnostic-metrics.ts +145 -46
- package/test/unit/spec/call-diagnostic/call-diagnostic-metrics.util.ts +262 -2
- package/test/unit/spec/new-metrics.ts +84 -22
|
@@ -10,9 +10,9 @@ export interface Event {
|
|
|
10
10
|
* Information about the sender of the event
|
|
11
11
|
*/
|
|
12
12
|
origin: {
|
|
13
|
-
name:
|
|
13
|
+
name: 'antares' | 'beech' | 'breakout' | 'cb' | 'cloudproxy' | 'edonus' | 'endpoint' | 'givr' | 'hecate' | 'hedge' | 'hesiod' | 'homer' | 'superhomer' | 'l2sip' | 'linus' | 'locus' | 'mcc' | 'mcs' | 'mercury' | 'mes' | 'mjs' | 'mmp' | 'mygdon' | 'orpheus' | 'page' | 'poros' | 'rhesos' | 'terminus' | 'tpgw' | 'ucc' | 'wdm' | 'webexivr';
|
|
14
14
|
userAgent: string;
|
|
15
|
-
buildType?:
|
|
15
|
+
buildType?: 'debug' | 'test' | 'prod' | 'tap' | 'analyzer-test';
|
|
16
16
|
/**
|
|
17
17
|
* Will be used as a label for client software status
|
|
18
18
|
*/
|
|
@@ -21,7 +21,7 @@ export interface Event {
|
|
|
21
21
|
* Identifier for a particular instance of a service, such as a particular linus
|
|
22
22
|
*/
|
|
23
23
|
instanceId?: string;
|
|
24
|
-
networkType:
|
|
24
|
+
networkType: 'wifi' | 'ethernet' | 'cellular' | 'unknown';
|
|
25
25
|
localIP?: string;
|
|
26
26
|
usingProxy?: boolean;
|
|
27
27
|
mediaEngineSoftwareVersion?: string;
|
|
@@ -31,29 +31,29 @@ export interface Event {
|
|
|
31
31
|
* Details of client environment
|
|
32
32
|
*/
|
|
33
33
|
clientInfo?: {
|
|
34
|
-
os:
|
|
34
|
+
os: 'windows' | 'mac' | 'linux' | 'ios' | 'android' | 'chrome' | 'uwp-arm64' | 'other';
|
|
35
35
|
osVersion: string;
|
|
36
36
|
localIP?: string;
|
|
37
37
|
gatewayIP?: string;
|
|
38
38
|
macAddress?: string;
|
|
39
39
|
localNetworkPrefix?: string;
|
|
40
40
|
publicNetworkPrefix?: string;
|
|
41
|
-
browserLaunchMethod?:
|
|
42
|
-
clientLaunchMethod?:
|
|
41
|
+
browserLaunchMethod?: 'activex' | 'npapi' | 'extension' | 'cwsapi' | 'java' | 'tfs' | 'webacd' | 'url-handler' | 'thinclient';
|
|
42
|
+
clientLaunchMethod?: 'url-handler' | 'universal-link' | 'voice-command' | 'notification' | 'manual' | 'teams-cross-launch';
|
|
43
43
|
browser?: string;
|
|
44
44
|
browserVersion?: string;
|
|
45
45
|
/**
|
|
46
46
|
* this defines the major client types
|
|
47
47
|
*/
|
|
48
|
-
clientType?:
|
|
48
|
+
clientType?: 'MEETING_CENTER' | 'EVENT_CENTER' | 'TRAINING_CENTER' | 'TEAMS_CLIENT' | 'TEAMS_DEVICE' | 'TEAMS_SHARE' | 'SIP' | 'RECORDING' | 'CLOUD_AWARE_SIP' | 'TEAMS_WXC_CLIENT' | 'WXC_CLIENT' | 'WXC_DEVICE' | 'WEBEX_JS_SDK' | 'VOICEA_CLIENT' | 'CISCO_SIP_GW' | 'WEBEX_SDK' | 'CPAAS_THIRD_PARTY_SDK' | 'WXC_THIRD_PARTY';
|
|
49
49
|
/**
|
|
50
50
|
* this defines the sub types of clients
|
|
51
51
|
*/
|
|
52
|
-
subClientType?:
|
|
52
|
+
subClientType?: 'DESKTOP_APP' | 'DESKTOP_APP_VDI' | 'DEVICE_CURRENT' | 'DEVICE_LEGACY_2020' | 'HVDI_APP' | 'MOBILE_APP' | 'VDI_APP' | 'WEB_APP' | 'MOBILE_NETWORK' | 'HOLOGRAM_HEADSET_APP';
|
|
53
53
|
clientVersion?: string;
|
|
54
54
|
localClientVersion?: string;
|
|
55
55
|
modelNumber?: string;
|
|
56
|
-
joinFirstUpdateLater?:
|
|
56
|
+
joinFirstUpdateLater?: 'ep-enabled' | 'sp-enabled' | 'not-enabled';
|
|
57
57
|
standbyUsed?: boolean;
|
|
58
58
|
prefetchDocShowUsed?: boolean;
|
|
59
59
|
fastJoinUsed?: boolean;
|
|
@@ -63,7 +63,7 @@ export interface Event {
|
|
|
63
63
|
machineInfo?: string;
|
|
64
64
|
parentAppName?: string;
|
|
65
65
|
parentAppInPermitList?: boolean;
|
|
66
|
-
meetingSiteType?:
|
|
66
|
+
meetingSiteType?: 'train' | 'webex-11' | 'orion';
|
|
67
67
|
CDNEnabled?: boolean;
|
|
68
68
|
clientMajorVersion?: string;
|
|
69
69
|
majorVersion?: number;
|
|
@@ -77,26 +77,26 @@ export interface Event {
|
|
|
77
77
|
description: string;
|
|
78
78
|
clockSpeedGigaHertz: number;
|
|
79
79
|
numberOfCores: number;
|
|
80
|
-
architecture:
|
|
80
|
+
architecture: 'intel32' | 'intel64' | 'amd32' | 'amd64' | 'arm32' | 'arm64' | 'unknown';
|
|
81
81
|
staticPerformance?: string;
|
|
82
82
|
};
|
|
83
|
-
shareType?:
|
|
83
|
+
shareType?: 'cb-normal-share' | 'ce-airplay-share' | 'ce-direct-share' | 'ce-gui-loopback-share' | 'ce-input-source-share' | 'ce-input-source-share-hdmi' | 'ce-input-source-share-usbc' | 'ce-jpg-share' | 'ce-miracast-share' | 'mcs-normal-share' | 'mcs-normal-audio-share' | 'mcs-hfps-share' | 'mcs-hfps-audio-share';
|
|
84
84
|
/**
|
|
85
85
|
* Video display mode currently in use
|
|
86
86
|
*/
|
|
87
|
-
videoDisplayMode?:
|
|
88
|
-
videoLayoutType?:
|
|
87
|
+
videoDisplayMode?: 'grid-view' | 'active-speaker-view';
|
|
88
|
+
videoLayoutType?: 'stack' | 'stackWithShare' | 'sideBySide' | 'sideBySideWithShare' | 'grid' | 'floatingActive' | 'floatingThumbnail' | 'floatingGrid' | 'overlay' | 'focus' | 'prominent' | 'focusWithShare' | 'prominentWithShare' | 'equal' | 'equalWithShare';
|
|
89
89
|
/**
|
|
90
90
|
* this defines the video render type of meetings
|
|
91
91
|
*/
|
|
92
|
-
videoRenderType?:
|
|
92
|
+
videoRenderType?: 'wme' | 'client_d3d' | 'client_gdi';
|
|
93
93
|
vdiInfo?: unknown;
|
|
94
94
|
is64BitsClient?: boolean;
|
|
95
95
|
webexAppVersion?: string;
|
|
96
96
|
/**
|
|
97
97
|
* this defines launch 32 bits client reason
|
|
98
98
|
*/
|
|
99
|
-
launch32BitsReason?:
|
|
99
|
+
launch32BitsReason?: 'forcewin32' | 'disablewin64' | 'platform_win32' | 'platform_arm' | 'platform_unknown' | 'version_below_41.11';
|
|
100
100
|
inMeetingUpdate?: boolean;
|
|
101
101
|
mtaVersion?: string;
|
|
102
102
|
isWarholOpening?: boolean;
|
|
@@ -115,7 +115,7 @@ export interface Event {
|
|
|
115
115
|
event: {
|
|
116
116
|
canProceed: boolean;
|
|
117
117
|
state?: string;
|
|
118
|
-
mediaType?:
|
|
118
|
+
mediaType?: 'audio' | 'video' | 'share' | 'share_audio' | 'whiteboard' | 'gamestate';
|
|
119
119
|
csi?: number;
|
|
120
120
|
/**
|
|
121
121
|
* media capability for both transmit and receive
|
|
@@ -145,17 +145,17 @@ export interface Event {
|
|
|
145
145
|
};
|
|
146
146
|
};
|
|
147
147
|
mediaLines?: {
|
|
148
|
-
mediaType:
|
|
148
|
+
mediaType: 'audio' | 'video' | 'share' | 'share_audio' | 'whiteboard' | 'gamestate';
|
|
149
149
|
remoteIP?: string;
|
|
150
150
|
localIP?: string;
|
|
151
151
|
localNetworkPrefix?: string;
|
|
152
152
|
localPort?: number;
|
|
153
153
|
remotePort?: number;
|
|
154
|
-
protocol:
|
|
155
|
-
direction:
|
|
154
|
+
protocol: 'udp' | 'tcp' | 'xtls' | 'unknown';
|
|
155
|
+
direction: 'sendrecv' | 'sendonly' | 'recvonly' | 'inactive';
|
|
156
156
|
clusterName?: string;
|
|
157
|
-
status?:
|
|
158
|
-
failureReason?:
|
|
157
|
+
status?: 'succeeded' | 'in-progress' | 'failed';
|
|
158
|
+
failureReason?: 'network' | 'transport' | 'rejected' | 'timeout' | 'notstarted' | 'succeeded';
|
|
159
159
|
errorCode?: number;
|
|
160
160
|
mediaLineData?: {};
|
|
161
161
|
}[];
|
|
@@ -165,7 +165,7 @@ export interface Event {
|
|
|
165
165
|
clientMediaPreferences?: {
|
|
166
166
|
preferTranscoding: boolean;
|
|
167
167
|
};
|
|
168
|
-
pstnAudioType?:
|
|
168
|
+
pstnAudioType?: 'dial-in' | 'dial-out';
|
|
169
169
|
success?: boolean;
|
|
170
170
|
isTranscoded?: boolean;
|
|
171
171
|
isGatewayed?: boolean;
|
|
@@ -173,35 +173,35 @@ export interface Event {
|
|
|
173
173
|
/**
|
|
174
174
|
* determine how the events are processed as well as how the reports are aggregated and sliced
|
|
175
175
|
*/
|
|
176
|
-
registrationMode?:
|
|
176
|
+
registrationMode?: 'SIP' | 'Cloud' | 'CloudAware';
|
|
177
177
|
/**
|
|
178
178
|
* protocols used to help determine how the events are processed as well as how the reports are aggregated and sliced
|
|
179
179
|
*/
|
|
180
|
-
protocol?:
|
|
180
|
+
protocol?: 'SIP' | 'H323' | 'Locus' | 'WebRTC';
|
|
181
181
|
/**
|
|
182
182
|
* The underlying service provider of the call.
|
|
183
183
|
*/
|
|
184
|
-
meetingPlatform?:
|
|
184
|
+
meetingPlatform?: 'MsTeams' | 'GoogleMeet' | 'Zoom' | 'Webex';
|
|
185
185
|
labels?: string[];
|
|
186
|
-
webexServiceType?:
|
|
186
|
+
webexServiceType?: 'MC' | 'EC' | 'SC' | 'TC' | 'AA' | 'RA' | 'NBR' | 'WRF' | 'HOL';
|
|
187
187
|
/**
|
|
188
188
|
* this defines the sub service type
|
|
189
189
|
*/
|
|
190
|
-
webexSubServiceType?:
|
|
191
|
-
ivrDialogType?:
|
|
192
|
-
ivrDialogResult?:
|
|
193
|
-
callType?:
|
|
190
|
+
webexSubServiceType?: 'PMR' | 'Event' | 'Training' | 'ScheduleMeeting' | 'ScheduledMeeting' | 'Webinar' | 'others';
|
|
191
|
+
ivrDialogType?: 'MEDIA_ON_HOLD' | 'ANNOUNCEMENT' | 'TONE' | 'COLLECT_PIN' | 'PROMPT' | 'MEDIA_SERVICE_AGENT' | 'COLLECT';
|
|
192
|
+
ivrDialogResult?: 'SUCCESS' | 'FAILURE' | 'HOST_PIN_MATCH' | 'GUEST_PIN_MATCH' | 'PANELIST_PIN_MATCH' | 'NO_MATCH' | 'INVALID_PIN';
|
|
193
|
+
callType?: 'VIDEO_DIALIN' | 'VIDEO_DIALOUT' | 'CASCADE' | 'HYBRID_CASCADE' | 'PSTN_SIP' | 'PSTN_DIALIN' | 'PSTN_DIALOUT' | 'PSTN_ONLY_DIALIN' | 'PSTN_ONLY_DIALOUT' | 'H323' | 'H323_IP' | 'SIP_ENTERPRISE' | 'SIP_MOBILE' | 'SIP_NATIONAL' | 'SIP_INTERNATIONAL' | 'SIP_EMERGENCY' | 'SIP_OPERATOR' | 'SIP_SHORTCODE' | 'SIP_TOLLFREE' | 'SIP_PREMIUM' | 'SIP_URI' | 'SIP_INBOUND' | 'UNKNOWN' | 'ZTM' | 'SIP_MEETING';
|
|
194
194
|
eventData?: {};
|
|
195
|
-
derivedSipClientType?:
|
|
195
|
+
derivedSipClientType?: 'SIP_CE_SINGLE_SCREEN' | 'SIP_CE_MULTI_SCREEN' | 'SIP_JABBER' | 'SIP_TIP_SINGLE_SCREEN' | 'SIP_TIP_THREE_SCREEN' | 'SIP_PSTN' | 'SIP_OTHER' | 'SIP_WEBEX_CASCADE' | 'SIP_NONE';
|
|
196
196
|
/**
|
|
197
197
|
* this defines the major client types
|
|
198
198
|
*/
|
|
199
|
-
derivedClientType?:
|
|
199
|
+
derivedClientType?: 'MEETING_CENTER' | 'EVENT_CENTER' | 'TRAINING_CENTER' | 'TEAMS_CLIENT' | 'TEAMS_DEVICE' | 'TEAMS_SHARE' | 'SIP' | 'RECORDING' | 'CLOUD_AWARE_SIP' | 'TEAMS_WXC_CLIENT' | 'WXC_CLIENT' | 'WXC_DEVICE' | 'WEBEX_JS_SDK' | 'VOICEA_CLIENT' | 'CISCO_SIP_GW' | 'WEBEX_SDK' | 'CPAAS_THIRD_PARTY_SDK' | 'WXC_THIRD_PARTY';
|
|
200
200
|
/**
|
|
201
201
|
* this defines the sub types of clients
|
|
202
202
|
*/
|
|
203
|
-
derivedSubClientType?:
|
|
204
|
-
serverRole?:
|
|
203
|
+
derivedSubClientType?: 'DESKTOP_APP' | 'DESKTOP_APP_VDI' | 'DEVICE_CURRENT' | 'DEVICE_LEGACY_2020' | 'HVDI_APP' | 'MOBILE_APP' | 'VDI_APP' | 'WEB_APP' | 'MOBILE_NETWORK' | 'HOLOGRAM_HEADSET_APP';
|
|
204
|
+
serverRole?: 'CONFERENCE' | 'TRANSCODER' | 'WHITEBOARD_INJECTOR' | 'MS_TEAMS_CONFERENCE' | 'RECORDING' | 'GATEWAY' | 'GATEWAY_CLIENT_SIDE' | 'UNKNOWN' | 'HOLOGRAM_RENDER';
|
|
205
205
|
reconnect?: boolean;
|
|
206
206
|
retryCount?: number;
|
|
207
207
|
meetSimple?: boolean;
|
|
@@ -209,15 +209,15 @@ export interface Event {
|
|
|
209
209
|
* represents media quality status report such as no media or drop out
|
|
210
210
|
*/
|
|
211
211
|
mediaStatus?: {
|
|
212
|
-
mediaType?:
|
|
212
|
+
mediaType?: 'audio' | 'video' | 'share' | 'share_audio' | 'whiteboard';
|
|
213
213
|
mediaSuccess?: boolean;
|
|
214
|
-
shareType?:
|
|
214
|
+
shareType?: 'cb-normal-share' | 'ce-airplay-share' | 'ce-direct-share' | 'ce-gui-loopback-share' | 'ce-input-source-share' | 'ce-input-source-share-hdmi' | 'ce-input-source-share-usbc' | 'ce-jpg-share' | 'ce-miracast-share' | 'mcs-normal-share' | 'mcs-normal-audio-share' | 'mcs-hfps-share' | 'mcs-hfps-audio-share';
|
|
215
215
|
isTransmitter?: boolean;
|
|
216
|
-
audioJoinType?:
|
|
216
|
+
audioJoinType?: 'phone-call-in' | 'phone-call-back' | 'voip' | 'device-call-back' | 'never-join-audio' | 'tried-but-never-join';
|
|
217
217
|
/**
|
|
218
218
|
* indicates transport type used
|
|
219
219
|
*/
|
|
220
|
-
transportType?:
|
|
220
|
+
transportType?: 'UDP' | 'TCP' | 'xTLS' | 'TLS';
|
|
221
221
|
additionalData?: {};
|
|
222
222
|
};
|
|
223
223
|
shareInstanceId?: string;
|
|
@@ -228,7 +228,7 @@ export interface Event {
|
|
|
228
228
|
audioSetupDelay?: {
|
|
229
229
|
floorReqSentReceived?: number;
|
|
230
230
|
floorRespSentReceived?: number;
|
|
231
|
-
mediaType?:
|
|
231
|
+
mediaType?: 'audio' | 'video' | 'share' | 'share_audio' | 'whiteboard';
|
|
232
232
|
txReqFloorGranted?: number;
|
|
233
233
|
txSessionCreateConfirm?: number;
|
|
234
234
|
txApeEnrollConfirm?: number;
|
|
@@ -268,7 +268,7 @@ export interface Event {
|
|
|
268
268
|
videoSetupDelay?: {
|
|
269
269
|
floorReqSentReceived?: number;
|
|
270
270
|
floorRespSentReceived?: number;
|
|
271
|
-
mediaType?:
|
|
271
|
+
mediaType?: 'audio' | 'video' | 'share' | 'share_audio' | 'whiteboard';
|
|
272
272
|
txReqFloorGranted?: number;
|
|
273
273
|
txSessionCreateConfirm?: number;
|
|
274
274
|
txApeEnrollConfirm?: number;
|
|
@@ -308,7 +308,7 @@ export interface Event {
|
|
|
308
308
|
shareSetupDelay?: {
|
|
309
309
|
floorReqSentReceived?: number;
|
|
310
310
|
floorRespSentReceived?: number;
|
|
311
|
-
mediaType?:
|
|
311
|
+
mediaType?: 'audio' | 'video' | 'share' | 'share_audio' | 'whiteboard';
|
|
312
312
|
txReqFloorGranted?: number;
|
|
313
313
|
txSessionCreateConfirm?: number;
|
|
314
314
|
txApeEnrollConfirm?: number;
|
|
@@ -348,7 +348,7 @@ export interface Event {
|
|
|
348
348
|
shareAudioSetupDelay?: {
|
|
349
349
|
floorReqSentReceived?: number;
|
|
350
350
|
floorRespSentReceived?: number;
|
|
351
|
-
mediaType?:
|
|
351
|
+
mediaType?: 'audio' | 'video' | 'share' | 'share_audio' | 'whiteboard';
|
|
352
352
|
txReqFloorGranted?: number;
|
|
353
353
|
txSessionCreateConfirm?: number;
|
|
354
354
|
txApeEnrollConfirm?: number;
|
|
@@ -388,7 +388,7 @@ export interface Event {
|
|
|
388
388
|
whiteboardSetupDelay?: {
|
|
389
389
|
floorReqSentReceived?: number;
|
|
390
390
|
floorRespSentReceived?: number;
|
|
391
|
-
mediaType?:
|
|
391
|
+
mediaType?: 'audio' | 'video' | 'share' | 'share_audio' | 'whiteboard';
|
|
392
392
|
txReqFloorGranted?: number;
|
|
393
393
|
txSessionCreateConfirm?: number;
|
|
394
394
|
txApeEnrollConfirm?: number;
|
|
@@ -424,7 +424,7 @@ export interface Event {
|
|
|
424
424
|
};
|
|
425
425
|
isFocus?: boolean;
|
|
426
426
|
processingDelay?: number;
|
|
427
|
-
shareType?:
|
|
427
|
+
shareType?: 'cb-normal-share' | 'ce-airplay-share' | 'ce-direct-share' | 'ce-gui-loopback-share' | 'ce-input-source-share' | 'ce-input-source-share-hdmi' | 'ce-input-source-share-usbc' | 'ce-jpg-share' | 'ce-miracast-share' | 'mcs-normal-share' | 'mcs-normal-audio-share' | 'mcs-hfps-share' | 'mcs-hfps-audio-share';
|
|
428
428
|
isShareBeingTakenOver?: boolean;
|
|
429
429
|
floorBeneficiaryUpdated?: boolean;
|
|
430
430
|
meetingJoinedTime?: string;
|
|
@@ -436,9 +436,9 @@ export interface Event {
|
|
|
436
436
|
useKeyTime?: number;
|
|
437
437
|
cacheKeyTime?: number;
|
|
438
438
|
}[];
|
|
439
|
-
e2eeVersion?:
|
|
439
|
+
e2eeVersion?: 'E2EEV1' | 'E2EEV2' | 'E2EEV3';
|
|
440
440
|
isConvergedArchitectureEnabled?: boolean;
|
|
441
|
-
callingServiceType?:
|
|
441
|
+
callingServiceType?: 'CUCM' | 'WEBEXCALLING' | 'BROADWORKS' | 'LOCUS';
|
|
442
442
|
inLobby?: boolean;
|
|
443
443
|
isVIPMeeting?: boolean;
|
|
444
444
|
webexAppEntrypoint?: string;
|
|
@@ -459,10 +459,10 @@ export interface Event {
|
|
|
459
459
|
* Details associated with a breakout move
|
|
460
460
|
*/
|
|
461
461
|
breakout?: {
|
|
462
|
-
moveType?:
|
|
463
|
-
trigger?:
|
|
464
|
-
startState?:
|
|
465
|
-
endState?:
|
|
462
|
+
moveType?: 'between_breakout' | 'to_breakout' | 'to_main';
|
|
463
|
+
trigger?: 'assignment_changed' | 'client_initiated' | 'session_ended' | 'session_started';
|
|
464
|
+
startState?: 'joined' | 'lobby';
|
|
465
|
+
endState?: 'joined' | 'lobby';
|
|
466
466
|
};
|
|
467
467
|
/**
|
|
468
468
|
* Latency values associated with breakout session
|
|
@@ -478,12 +478,12 @@ export interface Event {
|
|
|
478
478
|
* two-way whiteboard related info
|
|
479
479
|
*/
|
|
480
480
|
whiteboard?: {
|
|
481
|
-
action?:
|
|
482
|
-
type?:
|
|
483
|
-
capability?:
|
|
484
|
-
granted?:
|
|
481
|
+
action?: 'open' | 'create';
|
|
482
|
+
type?: 'whiteboard' | 'annotation';
|
|
483
|
+
capability?: 'one_way' | 'two_way';
|
|
484
|
+
granted?: 'one_way' | 'two_way';
|
|
485
485
|
};
|
|
486
|
-
name:
|
|
486
|
+
name: 'client.alert.displayed' | 'client.alert.removed' | 'client.application.validate' | 'client.audio.noise.removal' | 'client.breakout-session.join.request' | 'client.breakout-session.join.response' | 'client.breakout-session.leave' | 'client.breakout-session.move.request' | 'client.breakout-session.move.response' | 'client.call.aborted' | 'client.call.declined' | 'client.call.displayed' | 'client.call.initiated' | 'client.call.leave' | 'client.call.move-media' | 'client.call.remote-ended' | 'client.call.remote-started' | 'client.call.skip-locus-join' | 'client.conversation.request' | 'client.conversation.response' | 'client.click.pre-join' | 'client.crash' | 'client.daemon.join.begin' | 'client.daemon.job.done' | 'client.daemon.launch-meeting-process' | 'client.daemon.pending-on-existing-upgrade-job' | 'client.daemon.query-site-info' | 'client.daemon.upgrade-and-join' | 'client.daemon.wakeup-meeting-client' | 'client.device.resource-room.joined' | 'client.e2ee.join.response' | 'client.embedded-object-info' | 'client.entering-background' | 'client.entering-foreground' | 'client.exit.app' | 'client.gesture.recognition' | 'client.hologram.initiated' | 'client.hologram.stopped' | 'client.hologram.remote.initiated' | 'client.hologram.remote.stopped' | 'client.ice.end' | 'client.ice.start' | 'client.installer.start' | 'client.installer.end' | 'client.interstitial-window.launched' | 'client.ivr.join.request' | 'client.ivr.join.response' | 'client.ivr.leave.request' | 'client.ivr.leave.response' | 'client.ivr.notify.request' | 'client.ivr.notify.response' | 'client.lobby.entered' | 'client.lobby.exited' | 'client.locus.decline.request' | 'client.locus.join.request' | 'client.locus.join.response' | 'client.locus.leave.request' | 'client.locus.leave.response' | 'client.locus.media.request' | 'client.locus.media.response' | 'client.media-engine.crash' | 'client.media-engine.lost' | 'client.media-engine.local-sdp-generated' | 'client.media-engine.ready' | 'client.media-engine.remote-sdp-received' | 'client.media-status' | 'client.media.capabilities' | 'client.media.reachability' | 'client.media.reconnecting' | 'client.media.recovered' | 'client.media.render.start' | 'client.media.render.stop' | 'client.media.rx.start' | 'client.media.rx.stop' | 'client.media.share.csi.changed' | 'client.media.tx.start' | 'client.media.tx.stop' | 'client.meetinginfo.request' | 'client.meetinginfo.response' | 'client.meetingmanagersdk.ipc.run' | 'client.meeting.app-loaded' | 'client.meeting.breakout-session.action' | 'client.meeting.breakout-session.summary' | 'client.meeting.browser-plugin.started' | 'client.meeting.click.joinbutton' | 'client.meeting.closed' | 'client.meeting.disclaimer-window.accepted' | 'client.meeting.disclaimer-window.closed' | 'client.meeting.disclaimer-window.showed' | 'client.meeting.docshow.request' | 'client.meeting.docshow.response' | 'client.meeting.e2e.u2c.response' | 'client.meeting.e2e.wca.response' | 'client.meeting.e2e.key.response' | 'client.meeting.e2ee.u2c.response' | 'client.meeting.e2ee.wca.response' | 'client.meeting.e2ee.key.response' | 'client.meeting.gpc.download' | 'client.meeting.gpcparameter.request' | 'client.meeting.gpcparameter.response' | 'client.meeting.interstitial-window.closed' | 'client.meeting.interstitial-window.showed' | 'client.meeting.join.request' | 'client.meeting.key-information' | 'client.meeting.launched' | 'client.meeting.login-window.clicked' | 'client.meeting.login-window.closed' | 'client.meeting.login-window.showed' | 'client.meeting.login.response' | 'client.meeting.people-insights.check.response' | 'client.meeting.people-insights.query.response' | 'client.meeting.ping.request' | 'client.meeting.ping.response' | 'client.meeting.plugin-extension.started' | 'client.meeting.resume' | 'client.meeting.report-log' | 'client.meeting.session.connected' | 'client.meeting.start-webexapp' | 'client.meeting.start-launch' | 'client.meeting.summary' | 'client.meeting.user-action' | 'client.meeting.validated' | 'client.meeting.VDI.detect.plugin.response' | 'client.meeting.VDI.connect.plugin.response' | 'client.mercury.connection.lost' | 'client.mercury.connection.restored' | 'client.multistream.sca.rx' | 'client.multistream.sca.tx' | 'client.multistream.scr.rx' | 'client.multistream.scr.tx' | 'client.muted' | 'client.network.changed' | 'client.notification.received' | 'client.pin.collected' | 'client.pin.prompt' | 'client.post.meeting.hook' | 'client.pstnaudio.attempt.finish' | 'client.pstnaudio.attempt.skip' | 'client.pstnaudio.attempt.start' | 'client.roap-message.received' | 'client.roap-message.sent' | 'client.share.floor-accept.notification' | 'client.share.floor-grant.cancel-request' | 'client.share.floor-grant.notification' | 'client.share.floor-grant.request' | 'client.share.floor-granted.local' | 'client.share.initiated' | 'client.share.layout.displayed' | 'client.share.paused' | 'client.share.selected-app' | 'client.share.stopped' | 'client.started-after-shutdown' | 'client.started-from-crash' | 'client.stuntrace.failed' | 'client.switch.app' | 'client.unmuted' | 'client.webexapp.launched' | 'client.login.start' | 'client.login.end' | 'client.switch.environment' | 'client.warhol.downloaded' | 'client.whiteboard.loaded' | 'meeting.initiated' | 'meeting.joined' | 'page.click.pre-join' | 'page.meeting.browser-reset' | 'page.meeting.close-browser' | 'page.meeting.extension.started' | 'page.meeting.launch-thinclient' | 'page.meeting.loading' | 'page.meeting.run-plugin' | 'page.meeting.testing-plugin' | 'page.meeting.testing-plugin.finished' | 'page.meeting.tfs.start-download' | 'page.meeting.urlprotocol.detect' | 'page.meeting.waiting.user-action';
|
|
487
487
|
/**
|
|
488
488
|
* Base type for the various identifiers used to connect the dots.
|
|
489
489
|
* In general, these should be populated whenever possible. Subtypes may make a particular key required.
|
|
@@ -559,7 +559,7 @@ export interface Event {
|
|
|
559
559
|
};
|
|
560
560
|
errors?: {
|
|
561
561
|
fatal: boolean;
|
|
562
|
-
category:
|
|
562
|
+
category: 'signaling' | 'media' | 'other' | 'expected';
|
|
563
563
|
errorDescription?: string;
|
|
564
564
|
errorCode?: number;
|
|
565
565
|
errorCodeStr?: string;
|
|
@@ -567,18 +567,18 @@ export interface Event {
|
|
|
567
567
|
errorData?: {};
|
|
568
568
|
shownToUser: boolean;
|
|
569
569
|
serviceErrorCode?: number;
|
|
570
|
-
name:
|
|
570
|
+
name: 'media-engine' | 'ice.failed' | 'locus.response' | 'locus.leave' | 'client.leave' | 'media-device' | 'media-sca' | 'other';
|
|
571
571
|
}[];
|
|
572
572
|
/**
|
|
573
573
|
* media quality error report such as no media or drop out
|
|
574
574
|
*/
|
|
575
575
|
clientMediaError?: {
|
|
576
|
-
mediaType?:
|
|
577
|
-
mediaFailureType?:
|
|
576
|
+
mediaType?: 'audio' | 'video' | 'share' | 'share_audio' | 'whiteboard';
|
|
577
|
+
mediaFailureType?: 'noMedia' | 'mediaDrop' | 'mediaEvent';
|
|
578
578
|
isDropAtStart?: boolean;
|
|
579
579
|
isJMF?: boolean;
|
|
580
|
-
txError?:
|
|
581
|
-
rxError?:
|
|
580
|
+
txError?: 'NO_ERROR' | 'DEVICE_ERROR' | 'LOAD_LIBRARY_ERROR' | 'MCS_SESSION_CONNECT_ERROR' | 'CB_SESSION_CREATE_ERROR' | 'NO_FRAME_DECODE_ERROR' | 'NO_PACKET_RECV_ERROR' | 'LOW_VOLUME_ERROR' | 'INITIAL_MEMORY_ERROR' | 'MAC_VIRTUAL_AUDIO_DRV_ERROR' | 'MMP_SESSION_CONNECT_ERROR' | 'MEDIA_PROCESS_CRASH_ERROR' | 'HEARTBEAT_LOST_WITH_MEDIA_PROCESS_ERROR' | 'MEDIA_SERVER_CONNECT_ERROR' | 'LOCUS_SESSION_CONNECT_ERROR' | 'NO_PACKET_SEND_ERROR' | 'NETWORK_LOST_ERROR' | 'MEDIA_NOT_AVAILABLE';
|
|
581
|
+
rxError?: 'NO_ERROR' | 'DEVICE_ERROR' | 'LOAD_LIBRARY_ERROR' | 'MCS_SESSION_CONNECT_ERROR' | 'CB_SESSION_CREATE_ERROR' | 'NO_FRAME_DECODE_ERROR' | 'NO_PACKET_RECV_ERROR' | 'LOW_VOLUME_ERROR' | 'INITIAL_MEMORY_ERROR' | 'MAC_VIRTUAL_AUDIO_DRV_ERROR' | 'MMP_SESSION_CONNECT_ERROR' | 'MEDIA_PROCESS_CRASH_ERROR' | 'HEARTBEAT_LOST_WITH_MEDIA_PROCESS_ERROR' | 'MEDIA_SERVER_CONNECT_ERROR' | 'LOCUS_SESSION_CONNECT_ERROR' | 'NO_PACKET_SEND_ERROR' | 'NETWORK_LOST_ERROR' | 'MEDIA_NOT_AVAILABLE';
|
|
582
582
|
txDeviceErrorCode?: number;
|
|
583
583
|
rxDeviceErrorCode?: number;
|
|
584
584
|
sessionConnectErrorCode?: number;
|
|
@@ -589,21 +589,21 @@ export interface Event {
|
|
|
589
589
|
rxMoreError?: string;
|
|
590
590
|
totalUserWhenCBStartError?: number;
|
|
591
591
|
sessionConnectExtErrorCode?: number;
|
|
592
|
-
sessionConnectErrorType?:
|
|
592
|
+
sessionConnectErrorType?: 'unknown' | 'MCC_error' | 'MCS_error' | 'Tahoe_error';
|
|
593
593
|
txSystemErrorCode?: number;
|
|
594
594
|
rxSystemErrorCode?: number;
|
|
595
595
|
errorDetails?: {};
|
|
596
596
|
};
|
|
597
|
-
trigger?:
|
|
598
|
-
leaveReason?:
|
|
599
|
-
displayLocation?:
|
|
600
|
-
displayType?:
|
|
597
|
+
trigger?: 'bricklet' | 'call-history' | 'companion-join' | 'contact-profile' | 'dialpad' | 'loci-update' | 'media-engine-event' | 'meetbutton-click' | 'meetings-tab' | 'message-click' | 'mercury-event' | 'obtp' | 'onboarding-page' | 'other' | 'pairing' | 'protocol' | 'search' | 'signaling' | 'space-share' | 'timeout' | 'toast' | 'user-interaction' | 'wireless-share';
|
|
598
|
+
leaveReason?: 'paired-leave' | 'one-to-one' | 'ended-by-locus';
|
|
599
|
+
displayLocation?: 'toast' | 'room-list' | 'call-pane' | 'call-view' | 'room' | 'meeting-list' | 'meeting' | 'personal-meeting-room' | 'intents' | 'external-link' | 'automation' | 'meeting-information' | 'contact-card' | 'control-center' | 'search-result' | 'other';
|
|
600
|
+
displayType?: 'scheduled';
|
|
601
601
|
dialedDomain?: string;
|
|
602
602
|
isScheduled?: boolean;
|
|
603
603
|
guestModeShare?: boolean;
|
|
604
604
|
highFpsModeShare?: boolean;
|
|
605
605
|
contentAudioShare?: boolean;
|
|
606
|
-
pairingState?:
|
|
606
|
+
pairingState?: 'paired' | 'observing' | 'challenging';
|
|
607
607
|
pairedDevice?: {
|
|
608
608
|
deviceType?: string;
|
|
609
609
|
deviceId?: string;
|
|
@@ -616,9 +616,9 @@ export interface Event {
|
|
|
616
616
|
* Information about the sender of the event
|
|
617
617
|
*/
|
|
618
618
|
oldOrigin?: {
|
|
619
|
-
name:
|
|
619
|
+
name: 'antares' | 'beech' | 'breakout' | 'cb' | 'cloudproxy' | 'edonus' | 'endpoint' | 'givr' | 'hecate' | 'hedge' | 'hesiod' | 'homer' | 'superhomer' | 'l2sip' | 'linus' | 'locus' | 'mcc' | 'mcs' | 'mercury' | 'mes' | 'mjs' | 'mmp' | 'mygdon' | 'orpheus' | 'page' | 'poros' | 'rhesos' | 'terminus' | 'tpgw' | 'ucc' | 'wdm' | 'webexivr';
|
|
620
620
|
userAgent: string;
|
|
621
|
-
buildType?:
|
|
621
|
+
buildType?: 'debug' | 'test' | 'prod' | 'tap' | 'analyzer-test';
|
|
622
622
|
/**
|
|
623
623
|
* Will be used as a label for client software status
|
|
624
624
|
*/
|
|
@@ -627,7 +627,7 @@ export interface Event {
|
|
|
627
627
|
* Identifier for a particular instance of a service, such as a particular linus
|
|
628
628
|
*/
|
|
629
629
|
instanceId?: string;
|
|
630
|
-
networkType:
|
|
630
|
+
networkType: 'wifi' | 'ethernet' | 'cellular' | 'unknown';
|
|
631
631
|
localIP?: string;
|
|
632
632
|
usingProxy?: boolean;
|
|
633
633
|
mediaEngineSoftwareVersion?: string;
|
|
@@ -637,29 +637,29 @@ export interface Event {
|
|
|
637
637
|
* Details of client environment
|
|
638
638
|
*/
|
|
639
639
|
clientInfo?: {
|
|
640
|
-
os:
|
|
640
|
+
os: 'windows' | 'mac' | 'linux' | 'ios' | 'android' | 'chrome' | 'uwp-arm64' | 'other';
|
|
641
641
|
osVersion: string;
|
|
642
642
|
localIP?: string;
|
|
643
643
|
gatewayIP?: string;
|
|
644
644
|
macAddress?: string;
|
|
645
645
|
localNetworkPrefix?: string;
|
|
646
646
|
publicNetworkPrefix?: string;
|
|
647
|
-
browserLaunchMethod?:
|
|
648
|
-
clientLaunchMethod?:
|
|
647
|
+
browserLaunchMethod?: 'activex' | 'npapi' | 'extension' | 'cwsapi' | 'java' | 'tfs' | 'webacd' | 'url-handler' | 'thinclient';
|
|
648
|
+
clientLaunchMethod?: 'url-handler' | 'universal-link' | 'voice-command' | 'notification' | 'manual' | 'teams-cross-launch';
|
|
649
649
|
browser?: string;
|
|
650
650
|
browserVersion?: string;
|
|
651
651
|
/**
|
|
652
652
|
* this defines the major client types
|
|
653
653
|
*/
|
|
654
|
-
clientType?:
|
|
654
|
+
clientType?: 'MEETING_CENTER' | 'EVENT_CENTER' | 'TRAINING_CENTER' | 'TEAMS_CLIENT' | 'TEAMS_DEVICE' | 'TEAMS_SHARE' | 'SIP' | 'RECORDING' | 'CLOUD_AWARE_SIP' | 'TEAMS_WXC_CLIENT' | 'WXC_CLIENT' | 'WXC_DEVICE' | 'WEBEX_JS_SDK' | 'VOICEA_CLIENT' | 'CISCO_SIP_GW' | 'WEBEX_SDK' | 'CPAAS_THIRD_PARTY_SDK' | 'WXC_THIRD_PARTY';
|
|
655
655
|
/**
|
|
656
656
|
* this defines the sub types of clients
|
|
657
657
|
*/
|
|
658
|
-
subClientType?:
|
|
658
|
+
subClientType?: 'DESKTOP_APP' | 'DESKTOP_APP_VDI' | 'DEVICE_CURRENT' | 'DEVICE_LEGACY_2020' | 'HVDI_APP' | 'MOBILE_APP' | 'VDI_APP' | 'WEB_APP' | 'MOBILE_NETWORK' | 'HOLOGRAM_HEADSET_APP';
|
|
659
659
|
clientVersion?: string;
|
|
660
660
|
localClientVersion?: string;
|
|
661
661
|
modelNumber?: string;
|
|
662
|
-
joinFirstUpdateLater?:
|
|
662
|
+
joinFirstUpdateLater?: 'ep-enabled' | 'sp-enabled' | 'not-enabled';
|
|
663
663
|
standbyUsed?: boolean;
|
|
664
664
|
prefetchDocShowUsed?: boolean;
|
|
665
665
|
fastJoinUsed?: boolean;
|
|
@@ -669,7 +669,7 @@ export interface Event {
|
|
|
669
669
|
machineInfo?: string;
|
|
670
670
|
parentAppName?: string;
|
|
671
671
|
parentAppInPermitList?: boolean;
|
|
672
|
-
meetingSiteType?:
|
|
672
|
+
meetingSiteType?: 'train' | 'webex-11' | 'orion';
|
|
673
673
|
CDNEnabled?: boolean;
|
|
674
674
|
clientMajorVersion?: string;
|
|
675
675
|
majorVersion?: number;
|
|
@@ -683,26 +683,26 @@ export interface Event {
|
|
|
683
683
|
description: string;
|
|
684
684
|
clockSpeedGigaHertz: number;
|
|
685
685
|
numberOfCores: number;
|
|
686
|
-
architecture:
|
|
686
|
+
architecture: 'intel32' | 'intel64' | 'amd32' | 'amd64' | 'arm32' | 'arm64' | 'unknown';
|
|
687
687
|
staticPerformance?: string;
|
|
688
688
|
};
|
|
689
|
-
shareType?:
|
|
689
|
+
shareType?: 'cb-normal-share' | 'ce-airplay-share' | 'ce-direct-share' | 'ce-gui-loopback-share' | 'ce-input-source-share' | 'ce-input-source-share-hdmi' | 'ce-input-source-share-usbc' | 'ce-jpg-share' | 'ce-miracast-share' | 'mcs-normal-share' | 'mcs-normal-audio-share' | 'mcs-hfps-share' | 'mcs-hfps-audio-share';
|
|
690
690
|
/**
|
|
691
691
|
* Video display mode currently in use
|
|
692
692
|
*/
|
|
693
|
-
videoDisplayMode?:
|
|
694
|
-
videoLayoutType?:
|
|
693
|
+
videoDisplayMode?: 'grid-view' | 'active-speaker-view';
|
|
694
|
+
videoLayoutType?: 'stack' | 'stackWithShare' | 'sideBySide' | 'sideBySideWithShare' | 'grid' | 'floatingActive' | 'floatingThumbnail' | 'floatingGrid' | 'overlay' | 'focus' | 'prominent' | 'focusWithShare' | 'prominentWithShare' | 'equal' | 'equalWithShare';
|
|
695
695
|
/**
|
|
696
696
|
* this defines the video render type of meetings
|
|
697
697
|
*/
|
|
698
|
-
videoRenderType?:
|
|
698
|
+
videoRenderType?: 'wme' | 'client_d3d' | 'client_gdi';
|
|
699
699
|
vdiInfo?: unknown;
|
|
700
700
|
is64BitsClient?: boolean;
|
|
701
701
|
webexAppVersion?: string;
|
|
702
702
|
/**
|
|
703
703
|
* this defines launch 32 bits client reason
|
|
704
704
|
*/
|
|
705
|
-
launch32BitsReason?:
|
|
705
|
+
launch32BitsReason?: 'forcewin32' | 'disablewin64' | 'platform_win32' | 'platform_arm' | 'platform_unknown' | 'version_below_41.11';
|
|
706
706
|
inMeetingUpdate?: boolean;
|
|
707
707
|
mtaVersion?: string;
|
|
708
708
|
isWarholOpening?: boolean;
|
|
@@ -710,10 +710,10 @@ export interface Event {
|
|
|
710
710
|
isHybridMedia?: boolean;
|
|
711
711
|
originData?: {};
|
|
712
712
|
};
|
|
713
|
-
reachabilityStatus?:
|
|
714
|
-
recoveredBy?:
|
|
715
|
-
joinType?:
|
|
716
|
-
audioJoinType?:
|
|
713
|
+
reachabilityStatus?: 'none' | 'all-false' | 'partial-success' | 'all-success';
|
|
714
|
+
recoveredBy?: 'retry' | 'new';
|
|
715
|
+
joinType?: 'auto' | 'no-locus-join';
|
|
716
|
+
audioJoinType?: 'phone-call-in' | 'phone-call-back' | 'voip' | 'device-call-back' | 'never-join-audio';
|
|
717
717
|
isVideoMuted?: boolean;
|
|
718
718
|
/**
|
|
719
719
|
* phrased HTTP timing
|
|
@@ -728,9 +728,9 @@ export interface Event {
|
|
|
728
728
|
verifyCert?: number;
|
|
729
729
|
refreshToken?: number;
|
|
730
730
|
};
|
|
731
|
-
icePhase?:
|
|
732
|
-
userType?:
|
|
733
|
-
updateType?:
|
|
731
|
+
icePhase?: 'JOIN_MEETING_FINAL' | 'JOIN_MEETING_RETRY' | 'IN_MEETING';
|
|
732
|
+
userType?: 'host' | 'attendee' | 'cohost' | 'panelist';
|
|
733
|
+
updateType?: 'new-user' | 'update-user' | 'return-user';
|
|
734
734
|
isRoapCallEnabled?: boolean;
|
|
735
735
|
isFirstTimeUser?: boolean;
|
|
736
736
|
responseCode?: number;
|
|
@@ -821,8 +821,8 @@ export interface Event {
|
|
|
821
821
|
* ROAP message details
|
|
822
822
|
*/
|
|
823
823
|
roap?: {
|
|
824
|
-
type?:
|
|
825
|
-
messageType?:
|
|
824
|
+
type?: 'ANSWER' | 'ERROR' | 'OFFER' | 'OFFER_REQUEST' | 'OFFER_RESPONSE' | 'OK' | 'TURN_DISCOVERY_REQUEST' | 'TURN_DISCOVERY_RESPONSE';
|
|
825
|
+
messageType?: 'ANSWER' | 'ERROR' | 'OFFER' | 'OFFER_REQUEST' | 'OFFER_RESPONSE' | 'OK' | 'TURN_DISCOVERY_REQUEST' | 'TURN_DISCOVERY_RESPONSE';
|
|
826
826
|
error?: string;
|
|
827
827
|
duration?: number;
|
|
828
828
|
};
|
|
@@ -840,7 +840,7 @@ export interface Event {
|
|
|
840
840
|
serverOrg?: string;
|
|
841
841
|
serverGroup?: string;
|
|
842
842
|
serverAlias?: string;
|
|
843
|
-
serverDeployType?:
|
|
843
|
+
serverDeployType?: 'private' | 'public';
|
|
844
844
|
startTime: string;
|
|
845
845
|
endTime?: string;
|
|
846
846
|
csi?: number[];
|
|
@@ -856,89 +856,89 @@ export interface Event {
|
|
|
856
856
|
cascadePeerOrg?: string;
|
|
857
857
|
cascadePeerGroup?: string;
|
|
858
858
|
cascadePeerAlias?: string;
|
|
859
|
-
cascadePeerServerType?:
|
|
860
|
-
cascadePeerDeployType?:
|
|
859
|
+
cascadePeerServerType?: 'CB' | 'CMS' | 'HESIOD' | 'LINUS' | 'MCC' | 'MCS' | 'MES' | 'MJS' | 'MRS' | 'MYGDONUS' | 'MZM' | 'TERMINUS' | 'TPGW' | 'TA' | 'HOMER' | 'SUPERHOMER' | 'U2C' | 'WCA' | 'MSE' | 'UNKNOWN';
|
|
860
|
+
cascadePeerDeployType?: 'private' | 'public';
|
|
861
861
|
};
|
|
862
862
|
/**
|
|
863
863
|
* Details of server environment
|
|
864
864
|
*/
|
|
865
865
|
serverInfo?: {
|
|
866
|
-
serverType:
|
|
866
|
+
serverType: 'CB' | 'CMS' | 'HESIOD' | 'LINUS' | 'MCC' | 'MCS' | 'MES' | 'MJS' | 'MRS' | 'MYGDONUS' | 'MZM' | 'TERMINUS' | 'TPGW' | 'TA' | 'HOMER' | 'SUPERHOMER' | 'U2C' | 'WCA' | 'MSE' | 'UNKNOWN';
|
|
867
867
|
serverAddress?: string;
|
|
868
868
|
};
|
|
869
869
|
/**
|
|
870
870
|
* Details of client connect session
|
|
871
871
|
*/
|
|
872
872
|
videoSession?: {
|
|
873
|
-
mediaSessionType?:
|
|
873
|
+
mediaSessionType?: 'AUDIO_CALLBACK' | 'AUDIO_VOIP' | 'DEVICE_CALLBACK' | 'DEVICE_PAIRING' | 'VIDEO';
|
|
874
874
|
isSuccess?: boolean;
|
|
875
|
-
signalingServerType?:
|
|
875
|
+
signalingServerType?: 'CB' | 'CMS' | 'HESIOD' | 'LINUS' | 'MCC' | 'MCS' | 'MES' | 'MJS' | 'MRS' | 'MYGDONUS' | 'MZM' | 'TERMINUS' | 'TPGW' | 'TA' | 'HOMER' | 'SUPERHOMER' | 'U2C' | 'WCA' | 'MSE' | 'UNKNOWN';
|
|
876
876
|
signalingServerAddress?: string;
|
|
877
|
-
mediaServerType?:
|
|
877
|
+
mediaServerType?: 'CB' | 'CMS' | 'HESIOD' | 'LINUS' | 'MCC' | 'MCS' | 'MES' | 'MJS' | 'MRS' | 'MYGDONUS' | 'MZM' | 'TERMINUS' | 'TPGW' | 'TA' | 'HOMER' | 'SUPERHOMER' | 'U2C' | 'WCA' | 'MSE' | 'UNKNOWN';
|
|
878
878
|
mediaServerAddress?: string;
|
|
879
879
|
errorDescription?: string;
|
|
880
880
|
errorCode?: number;
|
|
881
|
-
mediaErrorType?:
|
|
881
|
+
mediaErrorType?: 'NO_ERROR' | 'DEVICE_ERROR' | 'LOAD_LIBRARY_ERROR' | 'MCS_SESSION_CONNECT_ERROR' | 'CB_SESSION_CREATE_ERROR' | 'NO_FRAME_DECODE_ERROR' | 'NO_PACKET_RECV_ERROR' | 'LOW_VOLUME_ERROR' | 'INITIAL_MEMORY_ERROR' | 'MAC_VIRTUAL_AUDIO_DRV_ERROR' | 'MMP_SESSION_CONNECT_ERROR' | 'MEDIA_PROCESS_CRASH_ERROR' | 'HEARTBEAT_LOST_WITH_MEDIA_PROCESS_ERROR' | 'MEDIA_SERVER_CONNECT_ERROR' | 'LOCUS_SESSION_CONNECT_ERROR' | 'NO_PACKET_SEND_ERROR' | 'NETWORK_LOST_ERROR' | 'MEDIA_NOT_AVAILABLE';
|
|
882
882
|
isJoinAtStart?: boolean;
|
|
883
883
|
};
|
|
884
884
|
/**
|
|
885
885
|
* Details of client connect session
|
|
886
886
|
*/
|
|
887
887
|
audioVOIPSession?: {
|
|
888
|
-
mediaSessionType?:
|
|
888
|
+
mediaSessionType?: 'AUDIO_CALLBACK' | 'AUDIO_VOIP' | 'DEVICE_CALLBACK' | 'DEVICE_PAIRING' | 'VIDEO';
|
|
889
889
|
isSuccess?: boolean;
|
|
890
|
-
signalingServerType?:
|
|
890
|
+
signalingServerType?: 'CB' | 'CMS' | 'HESIOD' | 'LINUS' | 'MCC' | 'MCS' | 'MES' | 'MJS' | 'MRS' | 'MYGDONUS' | 'MZM' | 'TERMINUS' | 'TPGW' | 'TA' | 'HOMER' | 'SUPERHOMER' | 'U2C' | 'WCA' | 'MSE' | 'UNKNOWN';
|
|
891
891
|
signalingServerAddress?: string;
|
|
892
|
-
mediaServerType?:
|
|
892
|
+
mediaServerType?: 'CB' | 'CMS' | 'HESIOD' | 'LINUS' | 'MCC' | 'MCS' | 'MES' | 'MJS' | 'MRS' | 'MYGDONUS' | 'MZM' | 'TERMINUS' | 'TPGW' | 'TA' | 'HOMER' | 'SUPERHOMER' | 'U2C' | 'WCA' | 'MSE' | 'UNKNOWN';
|
|
893
893
|
mediaServerAddress?: string;
|
|
894
894
|
errorDescription?: string;
|
|
895
895
|
errorCode?: number;
|
|
896
|
-
mediaErrorType?:
|
|
896
|
+
mediaErrorType?: 'NO_ERROR' | 'DEVICE_ERROR' | 'LOAD_LIBRARY_ERROR' | 'MCS_SESSION_CONNECT_ERROR' | 'CB_SESSION_CREATE_ERROR' | 'NO_FRAME_DECODE_ERROR' | 'NO_PACKET_RECV_ERROR' | 'LOW_VOLUME_ERROR' | 'INITIAL_MEMORY_ERROR' | 'MAC_VIRTUAL_AUDIO_DRV_ERROR' | 'MMP_SESSION_CONNECT_ERROR' | 'MEDIA_PROCESS_CRASH_ERROR' | 'HEARTBEAT_LOST_WITH_MEDIA_PROCESS_ERROR' | 'MEDIA_SERVER_CONNECT_ERROR' | 'LOCUS_SESSION_CONNECT_ERROR' | 'NO_PACKET_SEND_ERROR' | 'NETWORK_LOST_ERROR' | 'MEDIA_NOT_AVAILABLE';
|
|
897
897
|
isJoinAtStart?: boolean;
|
|
898
898
|
};
|
|
899
899
|
/**
|
|
900
900
|
* Details of client connect session
|
|
901
901
|
*/
|
|
902
902
|
audioCallbackSession?: {
|
|
903
|
-
mediaSessionType?:
|
|
903
|
+
mediaSessionType?: 'AUDIO_CALLBACK' | 'AUDIO_VOIP' | 'DEVICE_CALLBACK' | 'DEVICE_PAIRING' | 'VIDEO';
|
|
904
904
|
isSuccess?: boolean;
|
|
905
|
-
signalingServerType?:
|
|
905
|
+
signalingServerType?: 'CB' | 'CMS' | 'HESIOD' | 'LINUS' | 'MCC' | 'MCS' | 'MES' | 'MJS' | 'MRS' | 'MYGDONUS' | 'MZM' | 'TERMINUS' | 'TPGW' | 'TA' | 'HOMER' | 'SUPERHOMER' | 'U2C' | 'WCA' | 'MSE' | 'UNKNOWN';
|
|
906
906
|
signalingServerAddress?: string;
|
|
907
|
-
mediaServerType?:
|
|
907
|
+
mediaServerType?: 'CB' | 'CMS' | 'HESIOD' | 'LINUS' | 'MCC' | 'MCS' | 'MES' | 'MJS' | 'MRS' | 'MYGDONUS' | 'MZM' | 'TERMINUS' | 'TPGW' | 'TA' | 'HOMER' | 'SUPERHOMER' | 'U2C' | 'WCA' | 'MSE' | 'UNKNOWN';
|
|
908
908
|
mediaServerAddress?: string;
|
|
909
909
|
errorDescription?: string;
|
|
910
910
|
errorCode?: number;
|
|
911
|
-
mediaErrorType?:
|
|
911
|
+
mediaErrorType?: 'NO_ERROR' | 'DEVICE_ERROR' | 'LOAD_LIBRARY_ERROR' | 'MCS_SESSION_CONNECT_ERROR' | 'CB_SESSION_CREATE_ERROR' | 'NO_FRAME_DECODE_ERROR' | 'NO_PACKET_RECV_ERROR' | 'LOW_VOLUME_ERROR' | 'INITIAL_MEMORY_ERROR' | 'MAC_VIRTUAL_AUDIO_DRV_ERROR' | 'MMP_SESSION_CONNECT_ERROR' | 'MEDIA_PROCESS_CRASH_ERROR' | 'HEARTBEAT_LOST_WITH_MEDIA_PROCESS_ERROR' | 'MEDIA_SERVER_CONNECT_ERROR' | 'LOCUS_SESSION_CONNECT_ERROR' | 'NO_PACKET_SEND_ERROR' | 'NETWORK_LOST_ERROR' | 'MEDIA_NOT_AVAILABLE';
|
|
912
912
|
isJoinAtStart?: boolean;
|
|
913
913
|
};
|
|
914
914
|
/**
|
|
915
915
|
* Details of client connect session
|
|
916
916
|
*/
|
|
917
917
|
devicePairingSession?: {
|
|
918
|
-
mediaSessionType?:
|
|
918
|
+
mediaSessionType?: 'AUDIO_CALLBACK' | 'AUDIO_VOIP' | 'DEVICE_CALLBACK' | 'DEVICE_PAIRING' | 'VIDEO';
|
|
919
919
|
isSuccess?: boolean;
|
|
920
|
-
signalingServerType?:
|
|
920
|
+
signalingServerType?: 'CB' | 'CMS' | 'HESIOD' | 'LINUS' | 'MCC' | 'MCS' | 'MES' | 'MJS' | 'MRS' | 'MYGDONUS' | 'MZM' | 'TERMINUS' | 'TPGW' | 'TA' | 'HOMER' | 'SUPERHOMER' | 'U2C' | 'WCA' | 'MSE' | 'UNKNOWN';
|
|
921
921
|
signalingServerAddress?: string;
|
|
922
|
-
mediaServerType?:
|
|
922
|
+
mediaServerType?: 'CB' | 'CMS' | 'HESIOD' | 'LINUS' | 'MCC' | 'MCS' | 'MES' | 'MJS' | 'MRS' | 'MYGDONUS' | 'MZM' | 'TERMINUS' | 'TPGW' | 'TA' | 'HOMER' | 'SUPERHOMER' | 'U2C' | 'WCA' | 'MSE' | 'UNKNOWN';
|
|
923
923
|
mediaServerAddress?: string;
|
|
924
924
|
errorDescription?: string;
|
|
925
925
|
errorCode?: number;
|
|
926
|
-
mediaErrorType?:
|
|
926
|
+
mediaErrorType?: 'NO_ERROR' | 'DEVICE_ERROR' | 'LOAD_LIBRARY_ERROR' | 'MCS_SESSION_CONNECT_ERROR' | 'CB_SESSION_CREATE_ERROR' | 'NO_FRAME_DECODE_ERROR' | 'NO_PACKET_RECV_ERROR' | 'LOW_VOLUME_ERROR' | 'INITIAL_MEMORY_ERROR' | 'MAC_VIRTUAL_AUDIO_DRV_ERROR' | 'MMP_SESSION_CONNECT_ERROR' | 'MEDIA_PROCESS_CRASH_ERROR' | 'HEARTBEAT_LOST_WITH_MEDIA_PROCESS_ERROR' | 'MEDIA_SERVER_CONNECT_ERROR' | 'LOCUS_SESSION_CONNECT_ERROR' | 'NO_PACKET_SEND_ERROR' | 'NETWORK_LOST_ERROR' | 'MEDIA_NOT_AVAILABLE';
|
|
927
927
|
isJoinAtStart?: boolean;
|
|
928
928
|
};
|
|
929
929
|
/**
|
|
930
930
|
* Details of client connect session
|
|
931
931
|
*/
|
|
932
932
|
deviceCallbackSession?: {
|
|
933
|
-
mediaSessionType?:
|
|
933
|
+
mediaSessionType?: 'AUDIO_CALLBACK' | 'AUDIO_VOIP' | 'DEVICE_CALLBACK' | 'DEVICE_PAIRING' | 'VIDEO';
|
|
934
934
|
isSuccess?: boolean;
|
|
935
|
-
signalingServerType?:
|
|
935
|
+
signalingServerType?: 'CB' | 'CMS' | 'HESIOD' | 'LINUS' | 'MCC' | 'MCS' | 'MES' | 'MJS' | 'MRS' | 'MYGDONUS' | 'MZM' | 'TERMINUS' | 'TPGW' | 'TA' | 'HOMER' | 'SUPERHOMER' | 'U2C' | 'WCA' | 'MSE' | 'UNKNOWN';
|
|
936
936
|
signalingServerAddress?: string;
|
|
937
|
-
mediaServerType?:
|
|
937
|
+
mediaServerType?: 'CB' | 'CMS' | 'HESIOD' | 'LINUS' | 'MCC' | 'MCS' | 'MES' | 'MJS' | 'MRS' | 'MYGDONUS' | 'MZM' | 'TERMINUS' | 'TPGW' | 'TA' | 'HOMER' | 'SUPERHOMER' | 'U2C' | 'WCA' | 'MSE' | 'UNKNOWN';
|
|
938
938
|
mediaServerAddress?: string;
|
|
939
939
|
errorDescription?: string;
|
|
940
940
|
errorCode?: number;
|
|
941
|
-
mediaErrorType?:
|
|
941
|
+
mediaErrorType?: 'NO_ERROR' | 'DEVICE_ERROR' | 'LOAD_LIBRARY_ERROR' | 'MCS_SESSION_CONNECT_ERROR' | 'CB_SESSION_CREATE_ERROR' | 'NO_FRAME_DECODE_ERROR' | 'NO_PACKET_RECV_ERROR' | 'LOW_VOLUME_ERROR' | 'INITIAL_MEMORY_ERROR' | 'MAC_VIRTUAL_AUDIO_DRV_ERROR' | 'MMP_SESSION_CONNECT_ERROR' | 'MEDIA_PROCESS_CRASH_ERROR' | 'HEARTBEAT_LOST_WITH_MEDIA_PROCESS_ERROR' | 'MEDIA_SERVER_CONNECT_ERROR' | 'LOCUS_SESSION_CONNECT_ERROR' | 'NO_PACKET_SEND_ERROR' | 'NETWORK_LOST_ERROR' | 'MEDIA_NOT_AVAILABLE';
|
|
942
942
|
isJoinAtStart?: boolean;
|
|
943
943
|
};
|
|
944
944
|
/**
|
|
@@ -949,13 +949,13 @@ export interface Event {
|
|
|
949
949
|
* data define for background noise removal event
|
|
950
950
|
*/
|
|
951
951
|
eventData?: {
|
|
952
|
-
crashType?:
|
|
952
|
+
crashType?: 'client' | 'other' | 'thirdparty' | 'wme' | 'mta';
|
|
953
953
|
processName?: string;
|
|
954
954
|
moduleName?: string;
|
|
955
955
|
threadInfo?: string;
|
|
956
956
|
crashFrame?: string;
|
|
957
957
|
crashStack?: string;
|
|
958
|
-
exceptionType?:
|
|
958
|
+
exceptionType?: 'unset' | 'crash' | 'freeze' | 'disappear';
|
|
959
959
|
lastAction?: string;
|
|
960
960
|
forTrace?: boolean;
|
|
961
961
|
registerInfo?: string;
|
|
@@ -979,31 +979,31 @@ export interface Event {
|
|
|
979
979
|
isBoEnabled: boolean;
|
|
980
980
|
isPreAssigned: boolean;
|
|
981
981
|
boStartedTimers: number;
|
|
982
|
-
createType:
|
|
983
|
-
enableType:
|
|
982
|
+
createType: 'pre-meeting' | 'in-meeting';
|
|
983
|
+
enableType: 'pre-meeting' | 'in-meeting';
|
|
984
984
|
};
|
|
985
|
-
breakoutSessionAction?:
|
|
986
|
-
clientAction?:
|
|
987
|
-
clientActionFrom?:
|
|
985
|
+
breakoutSessionAction?: 'add' | 'assign' | 'ask-for-help' | 'breakout-session-open' | 'breakout-session-close' | 'breakout-session-mute-all' | 'breakout-session-unmute-all' | 'broadcast-open' | 'broadcast-send' | 'cancel-automatic-close' | 'create' | 'delete' | 'disable' | 'dynamic-assign' | 'dynamic-exchange' | 'end' | 'enable' | 'exchange' | 'join' | 'leave' | 'lock-all-sessions' | 'lock-this-sessions' | 'moveto' | 'mute-all' | 'mute-all-set' | 'recreate' | 'remove' | 'rename' | 'search' | 'select-all' | 'show-all-sessions' | 'start' | 'unmute-all' | 'unlock-all-sessions' | 'unlock-this-sessions' | 'allow-leave-session' | 'allow-join-session-later' | 'auto-end-sessions' | 'time-before-leave-session';
|
|
986
|
+
clientAction?: 'changeVolume' | 'disableHardMute' | 'enableHardMute' | 'gesture' | 'joinMeetingWithPairedDevice' | 'muteAll' | 'mutePairedDevice' | 'muteSipDevice' | 'reaction' | 'requestUnmute' | 'setLanguage' | 'unifyRaiseHand' | 'unmuteAll' | 'unmutePairedDevice' | 'unmuteSipDevice';
|
|
987
|
+
clientActionFrom?: 'actionBar' | 'auto' | 'breakoutAssignDialog' | 'breakoutPopupDialog' | 'fitMenu' | 'hardMuteMoreOptionsDialog' | 'initAction' | 'mainMenu' | 'plist' | 'plistContextMenu' | 'plistToolBar' | 'videoThumbnail' | 'muteAllAction' | 'reactionPopupDialog' | 'unmuteAllAction';
|
|
988
988
|
clientActionTime?: number;
|
|
989
989
|
/**
|
|
990
990
|
* Details of client action
|
|
991
991
|
*/
|
|
992
992
|
clientActionInfo?: {
|
|
993
|
-
clientAction:
|
|
994
|
-
actionFrom?:
|
|
995
|
-
actionRole?:
|
|
993
|
+
clientAction: 'changeVolume' | 'disableHardMute' | 'enableHardMute' | 'gesture' | 'joinMeetingWithPairedDevice' | 'muteAll' | 'mutePairedDevice' | 'muteSipDevice' | 'reaction' | 'requestUnmute' | 'setLanguage' | 'unifyRaiseHand' | 'unmuteAll' | 'unmutePairedDevice' | 'unmuteSipDevice';
|
|
994
|
+
actionFrom?: 'actionBar' | 'auto' | 'breakoutAssignDialog' | 'breakoutPopupDialog' | 'fitMenu' | 'hardMuteMoreOptionsDialog' | 'initAction' | 'mainMenu' | 'plist' | 'plistContextMenu' | 'plistToolBar' | 'videoThumbnail' | 'muteAllAction' | 'reactionPopupDialog' | 'unmuteAllAction';
|
|
995
|
+
actionRole?: 'host' | 'attendee' | 'presenter' | 'cohost' | 'self';
|
|
996
996
|
duration?: number;
|
|
997
997
|
fromValue?: string;
|
|
998
998
|
toValue?: string;
|
|
999
|
-
gestureType?:
|
|
1000
|
-
languageAction?:
|
|
1001
|
-
fromLanguage?:
|
|
1002
|
-
toLanguage?:
|
|
1003
|
-
reactionType?:
|
|
1004
|
-
unifyRaiseHand?:
|
|
999
|
+
gestureType?: 'clap' | 'none' | 'raiseHand' | 'thumpUp' | 'thumbDown';
|
|
1000
|
+
languageAction?: 'openLanguageDialog' | 'subscribeTransLanguage' | 'unsubscribeTransLanguage' | 'changeSpeakLanguage' | 'transcriptTurnOnWebexAssistantDialog' | 'transcriptTurnOffWebexAssistantDialog' | 'transcriptTurnOnWebexAssistantMenu' | 'transcriptTurn0ffWebexAssistantMenu' | 'transcriptViewHighlightPanel' | 'transcriptViewHighlightPanelViaCloseCaption' | 'transcriptViewHighlightPanelViaPanelOption' | 'transcriptViewHighlightPanelViaWebexAssistant' | 'transcriptEnableCloseCaptionDialog' | 'transcriptDisableCloseCaptionDialog' | 'transcriptDisableCloseCaptionDialogForActiveCCOpen' | 'transcriptDisableCloseCaptionDialogViaCCButton' | 'transcriptDisableCloseCaptionDialogViaCCDialog' | 'transcriptEnableCloseCaptionMenu' | 'transcriptDisableCloseCaptionMenu' | 'transcriptTabToCaptions' | 'transcriptTabToHighlights' | 'transcriptCreateHighlight' | 'transcriptDeleteHighlightInHighlight' | 'transcriptDeleteHighlightInCaptions' | 'transcriptChangeFontSize' | 'transcriptBackToDefaultPosition' | 'transcriptChangeModeToDark' | 'transcriptChangeModeToLight';
|
|
1001
|
+
fromLanguage?: 'lan_af' | 'lan_sq' | 'lan_am' | 'lan_ar' | 'lan_hy' | 'lan_az' | 'lan_eu' | 'lan_be' | 'lan_bn' | 'lan_bs' | 'lan_bg' | 'lan_ca' | 'lan_ceb' | 'lan_zh' | 'lan_zh-TW' | 'lan_co' | 'lan_hr' | 'lan_cs' | 'lan_da' | 'lan_nl' | 'lan_en' | 'lan_en-GB' | 'lan_eo' | 'lan_et' | 'lan_fi' | 'lan_fr' | 'lan_fr-CA' | 'lan_fy' | 'lan_gl' | 'lan_ka' | 'lan_de' | 'lan_el' | 'lan_gu' | 'lan_ht' | 'lan_ha' | 'lan_haw' | 'lan_he' | 'lan_hi' | 'lan_hmn' | 'lan_hu' | 'lan_is' | 'lan_ig' | 'lan_id' | 'lan_ga' | 'lan_it' | 'lan_ja' | 'lan_jv' | 'lan_kn' | 'lan_kk' | 'lan_km' | 'lan_rw' | 'lan_ko' | 'lan_ku' | 'lan_ky' | 'lan_lo' | 'lan_la' | 'lan_lv' | 'lan_lt' | 'lan_lb' | 'lan_mk' | 'lan_mg' | 'lan_ms' | 'lan_ml' | 'lan_mt' | 'lan_mi' | 'lan_mr' | 'lan_mn' | 'lan_my' | 'lan_ne' | 'lan_no' | 'lan_ny' | 'lan_or' | 'lan_ps' | 'lan_fa' | 'lan_pl' | 'lan_pt' | 'lan_pa' | 'lan_ro' | 'lan_ru' | 'lan_sm' | 'lan_gd' | 'lan_sr' | 'lan_st' | 'lan_sn' | 'lan_sd' | 'lan_si' | 'lan_sk' | 'lan_sl' | 'lan_so' | 'lan_es' | 'lan_es-ES' | 'lan_su' | 'lan_sw' | 'lan_sv' | 'lan_tl' | 'lan_tg' | 'lan_ta' | 'lan_tt' | 'lan_te' | 'lan_th' | 'lan_tr' | 'lan_tk' | 'lan_uk' | 'lan_ur' | 'lan_ug' | 'lan_uz' | 'lan_vi' | 'lan_cy' | 'lan_xh' | 'lan_yi' | 'lan_yo' | 'lan_zu';
|
|
1002
|
+
toLanguage?: 'lan_af' | 'lan_sq' | 'lan_am' | 'lan_ar' | 'lan_hy' | 'lan_az' | 'lan_eu' | 'lan_be' | 'lan_bn' | 'lan_bs' | 'lan_bg' | 'lan_ca' | 'lan_ceb' | 'lan_zh' | 'lan_zh-TW' | 'lan_co' | 'lan_hr' | 'lan_cs' | 'lan_da' | 'lan_nl' | 'lan_en' | 'lan_en-GB' | 'lan_eo' | 'lan_et' | 'lan_fi' | 'lan_fr' | 'lan_fr-CA' | 'lan_fy' | 'lan_gl' | 'lan_ka' | 'lan_de' | 'lan_el' | 'lan_gu' | 'lan_ht' | 'lan_ha' | 'lan_haw' | 'lan_he' | 'lan_hi' | 'lan_hmn' | 'lan_hu' | 'lan_is' | 'lan_ig' | 'lan_id' | 'lan_ga' | 'lan_it' | 'lan_ja' | 'lan_jv' | 'lan_kn' | 'lan_kk' | 'lan_km' | 'lan_rw' | 'lan_ko' | 'lan_ku' | 'lan_ky' | 'lan_lo' | 'lan_la' | 'lan_lv' | 'lan_lt' | 'lan_lb' | 'lan_mk' | 'lan_mg' | 'lan_ms' | 'lan_ml' | 'lan_mt' | 'lan_mi' | 'lan_mr' | 'lan_mn' | 'lan_my' | 'lan_ne' | 'lan_no' | 'lan_ny' | 'lan_or' | 'lan_ps' | 'lan_fa' | 'lan_pl' | 'lan_pt' | 'lan_pa' | 'lan_ro' | 'lan_ru' | 'lan_sm' | 'lan_gd' | 'lan_sr' | 'lan_st' | 'lan_sn' | 'lan_sd' | 'lan_si' | 'lan_sk' | 'lan_sl' | 'lan_so' | 'lan_es' | 'lan_es-ES' | 'lan_su' | 'lan_sw' | 'lan_sv' | 'lan_tl' | 'lan_tg' | 'lan_ta' | 'lan_tt' | 'lan_te' | 'lan_th' | 'lan_tr' | 'lan_tk' | 'lan_uk' | 'lan_ur' | 'lan_ug' | 'lan_uz' | 'lan_vi' | 'lan_cy' | 'lan_xh' | 'lan_yi' | 'lan_yo' | 'lan_zu';
|
|
1003
|
+
reactionType?: 'celebrate' | 'clap' | 'haha' | 'love' | 'sad' | 'smile' | 'thumbUp' | 'thumbDown' | 'wow' | 'collapse' | 'disable' | 'enable' | 'disableGestures' | 'enableGestures' | 'expand' | 'openMenu';
|
|
1004
|
+
unifyRaiseHand?: 'lowerHand' | 'lowerAllHand' | 'raiseHand';
|
|
1005
1005
|
};
|
|
1006
|
-
clientEventType?:
|
|
1006
|
+
clientEventType?: 'normal-event' | 'user-action';
|
|
1007
1007
|
/**
|
|
1008
1008
|
* Audio background noise removal
|
|
1009
1009
|
*/
|
|
@@ -1012,13 +1012,13 @@ export interface Event {
|
|
|
1012
1012
|
* background noise removal action data
|
|
1013
1013
|
*/
|
|
1014
1014
|
actionData?: {
|
|
1015
|
-
bnrActionType:
|
|
1015
|
+
bnrActionType: 'turn-on-bnr' | 'turn-off-bnr';
|
|
1016
1016
|
};
|
|
1017
1017
|
/**
|
|
1018
1018
|
* background noise removal event data
|
|
1019
1019
|
*/
|
|
1020
1020
|
eventData?: {
|
|
1021
|
-
bnrEventType:
|
|
1021
|
+
bnrEventType: 'bnr-on' | 'bnr-off';
|
|
1022
1022
|
};
|
|
1023
1023
|
};
|
|
1024
1024
|
/**
|
|
@@ -1026,7 +1026,7 @@ export interface Event {
|
|
|
1026
1026
|
*/
|
|
1027
1027
|
gestureRecognition?: {
|
|
1028
1028
|
supportedMachine?: boolean;
|
|
1029
|
-
gestureType?:
|
|
1029
|
+
gestureType?: 'clap' | 'none' | 'raiseHand' | 'thumpUp' | 'thumbDown';
|
|
1030
1030
|
duration?: number;
|
|
1031
1031
|
};
|
|
1032
1032
|
/**
|
|
@@ -1037,26 +1037,26 @@ export interface Event {
|
|
|
1037
1037
|
* data define for background noise removal action
|
|
1038
1038
|
*/
|
|
1039
1039
|
actionData?: {
|
|
1040
|
-
pmhActionType:
|
|
1040
|
+
pmhActionType: 'share' | 'view-details' | 'close';
|
|
1041
1041
|
pmhActionResult?: string;
|
|
1042
1042
|
};
|
|
1043
1043
|
/**
|
|
1044
1044
|
* data define for background noise removal event
|
|
1045
1045
|
*/
|
|
1046
1046
|
eventData?: {
|
|
1047
|
-
pmhEventType:
|
|
1047
|
+
pmhEventType: 'used' | 'not-show-again';
|
|
1048
1048
|
};
|
|
1049
1049
|
};
|
|
1050
|
-
breakoutSessionJoinType?:
|
|
1051
|
-
breakoutSessionActionClickFrom?:
|
|
1052
|
-
broadcastSendType?:
|
|
1050
|
+
breakoutSessionJoinType?: 'any-one-can-join' | 'auto' | 'manual' | 'preassign-rest';
|
|
1051
|
+
breakoutSessionActionClickFrom?: 'actionbar' | 'assign-dialog' | 'auto' | 'breakout-session-list' | 'contextmenu' | 'menu' | 'plist' | 'popup-dialog';
|
|
1052
|
+
broadcastSendType?: 'all-sessions-all-participants' | 'all-sessions-all-cohost-and-presenters' | 'one-session-all-participants' | 'one-session-one-participant';
|
|
1053
1053
|
breakoutSessionDialogOpenTime?: number;
|
|
1054
1054
|
breakoutSessionDialogAssignTime?: number;
|
|
1055
1055
|
/**
|
|
1056
1056
|
* call embedded browser object result, if failed, will populate error at Error item
|
|
1057
1057
|
*/
|
|
1058
1058
|
embeddedBrowserObject?: {
|
|
1059
|
-
browserType:
|
|
1059
|
+
browserType: 'IE' | 'WebView2';
|
|
1060
1060
|
version?: string;
|
|
1061
1061
|
callFrom?: string;
|
|
1062
1062
|
};
|
|
@@ -1072,7 +1072,7 @@ export interface Event {
|
|
|
1072
1072
|
clientDownloadTime?: number;
|
|
1073
1073
|
clientDecompressTime?: number;
|
|
1074
1074
|
CDNEnabled?: boolean;
|
|
1075
|
-
updateFlag?:
|
|
1075
|
+
updateFlag?: 'preMeeting' | 'inMeeting' | 'postMeeting';
|
|
1076
1076
|
epSP?: boolean;
|
|
1077
1077
|
isEPUpdate?: boolean;
|
|
1078
1078
|
spDifferent?: number;
|
|
@@ -1101,7 +1101,7 @@ export interface Event {
|
|
|
1101
1101
|
deltaUpdateTimeStamp?: string;
|
|
1102
1102
|
};
|
|
1103
1103
|
isInstallWebView2?: boolean;
|
|
1104
|
-
loginType?:
|
|
1104
|
+
loginType?: 'no-login' | 'login-page' | 'reuse-ci-token' | 'reuse-site-token' | 'login-ci' | 'login-site' | 'unverified-guest';
|
|
1105
1105
|
loginCrossSite?: boolean;
|
|
1106
1106
|
crossBrowserLogin?: boolean;
|
|
1107
1107
|
isMultiSiteUser?: boolean;
|
|
@@ -1134,7 +1134,7 @@ export interface Event {
|
|
|
1134
1134
|
cpuBitWidth: number;
|
|
1135
1135
|
};
|
|
1136
1136
|
peripherals?: {
|
|
1137
|
-
name:
|
|
1137
|
+
name: 'camera' | 'microphone' | 'speaker';
|
|
1138
1138
|
information: string;
|
|
1139
1139
|
driver?: string;
|
|
1140
1140
|
errorCode?: string;
|
|
@@ -1145,7 +1145,7 @@ export interface Event {
|
|
|
1145
1145
|
* information object for the peripheral
|
|
1146
1146
|
*/
|
|
1147
1147
|
cameraInfo?: {
|
|
1148
|
-
name:
|
|
1148
|
+
name: 'camera' | 'microphone' | 'speaker';
|
|
1149
1149
|
information: string;
|
|
1150
1150
|
driver?: string;
|
|
1151
1151
|
errorCode?: string;
|
|
@@ -1156,7 +1156,7 @@ export interface Event {
|
|
|
1156
1156
|
* information object for the peripheral
|
|
1157
1157
|
*/
|
|
1158
1158
|
microphoneInfo?: {
|
|
1159
|
-
name:
|
|
1159
|
+
name: 'camera' | 'microphone' | 'speaker';
|
|
1160
1160
|
information: string;
|
|
1161
1161
|
driver?: string;
|
|
1162
1162
|
errorCode?: string;
|
|
@@ -1167,7 +1167,7 @@ export interface Event {
|
|
|
1167
1167
|
* information object for the peripheral
|
|
1168
1168
|
*/
|
|
1169
1169
|
speakerInfo?: {
|
|
1170
|
-
name:
|
|
1170
|
+
name: 'camera' | 'microphone' | 'speaker';
|
|
1171
1171
|
information: string;
|
|
1172
1172
|
driver?: string;
|
|
1173
1173
|
errorCode?: string;
|
|
@@ -1181,7 +1181,7 @@ export interface Event {
|
|
|
1181
1181
|
description: string;
|
|
1182
1182
|
clockSpeedGigaHertz: number;
|
|
1183
1183
|
numberOfCores: number;
|
|
1184
|
-
architecture:
|
|
1184
|
+
architecture: 'intel32' | 'intel64' | 'amd32' | 'amd64' | 'arm32' | 'arm64' | 'unknown';
|
|
1185
1185
|
staticPerformance?: string;
|
|
1186
1186
|
};
|
|
1187
1187
|
/**
|
|
@@ -1214,11 +1214,11 @@ export interface Event {
|
|
|
1214
1214
|
numScreens?: number;
|
|
1215
1215
|
configuredBitrate?: number;
|
|
1216
1216
|
};
|
|
1217
|
-
sessionType?:
|
|
1217
|
+
sessionType?: 'AD_HOC' | 'ADHOC_UNIFIED_SPACE_MEETING' | 'ANSWERED_ELSEWHERE' | 'BUTLER' | 'CFNA' | 'CMR_MEETING' | 'DPC_CONTROL' | 'EVENT_CENTER_MEETING' | 'HALF_ZTM' | 'JABBER' | 'MEDIA' | 'MS_TEAMS' | 'NO_JOINS' | 'SINGLE_PARTICIPANT' | 'SIP_CALL' | 'SIP_MEETING' | 'SPACE_MEETING' | 'SPACE_SHARE' | 'SPARK_CALL' | 'SPARK_MEETING' | 'SPARK_SIP_CALL' | 'SPARK_SIP_MEETING' | 'UNIFIED_SPACE_MEETING' | 'UNKNOWN' | 'WHITEBOARD_ONLY_SHARE' | 'WIRELESS_SHARE' | 'ZTM';
|
|
1218
1218
|
} | {
|
|
1219
1219
|
canProceed: boolean;
|
|
1220
1220
|
state?: string;
|
|
1221
|
-
mediaType?:
|
|
1221
|
+
mediaType?: 'audio' | 'video' | 'share' | 'share_audio' | 'whiteboard' | 'gamestate';
|
|
1222
1222
|
csi?: number;
|
|
1223
1223
|
/**
|
|
1224
1224
|
* media capability for both transmit and receive
|
|
@@ -1248,17 +1248,17 @@ export interface Event {
|
|
|
1248
1248
|
};
|
|
1249
1249
|
};
|
|
1250
1250
|
mediaLines?: {
|
|
1251
|
-
mediaType:
|
|
1251
|
+
mediaType: 'audio' | 'video' | 'share' | 'share_audio' | 'whiteboard' | 'gamestate';
|
|
1252
1252
|
remoteIP?: string;
|
|
1253
1253
|
localIP?: string;
|
|
1254
1254
|
localNetworkPrefix?: string;
|
|
1255
1255
|
localPort?: number;
|
|
1256
1256
|
remotePort?: number;
|
|
1257
|
-
protocol:
|
|
1258
|
-
direction:
|
|
1257
|
+
protocol: 'udp' | 'tcp' | 'xtls' | 'unknown';
|
|
1258
|
+
direction: 'sendrecv' | 'sendonly' | 'recvonly' | 'inactive';
|
|
1259
1259
|
clusterName?: string;
|
|
1260
|
-
status?:
|
|
1261
|
-
failureReason?:
|
|
1260
|
+
status?: 'succeeded' | 'in-progress' | 'failed';
|
|
1261
|
+
failureReason?: 'network' | 'transport' | 'rejected' | 'timeout' | 'notstarted' | 'succeeded';
|
|
1262
1262
|
errorCode?: number;
|
|
1263
1263
|
mediaLineData?: {};
|
|
1264
1264
|
}[];
|
|
@@ -1268,7 +1268,7 @@ export interface Event {
|
|
|
1268
1268
|
clientMediaPreferences?: {
|
|
1269
1269
|
preferTranscoding: boolean;
|
|
1270
1270
|
};
|
|
1271
|
-
pstnAudioType?:
|
|
1271
|
+
pstnAudioType?: 'dial-in' | 'dial-out';
|
|
1272
1272
|
/**
|
|
1273
1273
|
* Base type for the various identifiers used to connect the dots.
|
|
1274
1274
|
* In general, these should be populated whenever possible. Subtypes may make a particular key required.
|
|
@@ -1349,35 +1349,35 @@ export interface Event {
|
|
|
1349
1349
|
/**
|
|
1350
1350
|
* determine how the events are processed as well as how the reports are aggregated and sliced
|
|
1351
1351
|
*/
|
|
1352
|
-
registrationMode?:
|
|
1352
|
+
registrationMode?: 'SIP' | 'Cloud' | 'CloudAware';
|
|
1353
1353
|
/**
|
|
1354
1354
|
* protocols used to help determine how the events are processed as well as how the reports are aggregated and sliced
|
|
1355
1355
|
*/
|
|
1356
|
-
protocol?:
|
|
1356
|
+
protocol?: 'SIP' | 'H323' | 'Locus' | 'WebRTC';
|
|
1357
1357
|
/**
|
|
1358
1358
|
* The underlying service provider of the call.
|
|
1359
1359
|
*/
|
|
1360
|
-
meetingPlatform?:
|
|
1360
|
+
meetingPlatform?: 'MsTeams' | 'GoogleMeet' | 'Zoom' | 'Webex';
|
|
1361
1361
|
labels?: string[];
|
|
1362
|
-
webexServiceType?:
|
|
1362
|
+
webexServiceType?: 'MC' | 'EC' | 'SC' | 'TC' | 'AA' | 'RA' | 'NBR' | 'WRF' | 'HOL';
|
|
1363
1363
|
/**
|
|
1364
1364
|
* this defines the sub service type
|
|
1365
1365
|
*/
|
|
1366
|
-
webexSubServiceType?:
|
|
1367
|
-
ivrDialogType?:
|
|
1368
|
-
ivrDialogResult?:
|
|
1369
|
-
callType?:
|
|
1366
|
+
webexSubServiceType?: 'PMR' | 'Event' | 'Training' | 'ScheduleMeeting' | 'ScheduledMeeting' | 'Webinar' | 'others';
|
|
1367
|
+
ivrDialogType?: 'MEDIA_ON_HOLD' | 'ANNOUNCEMENT' | 'TONE' | 'COLLECT_PIN' | 'PROMPT' | 'MEDIA_SERVICE_AGENT' | 'COLLECT';
|
|
1368
|
+
ivrDialogResult?: 'SUCCESS' | 'FAILURE' | 'HOST_PIN_MATCH' | 'GUEST_PIN_MATCH' | 'PANELIST_PIN_MATCH' | 'NO_MATCH' | 'INVALID_PIN';
|
|
1369
|
+
callType?: 'VIDEO_DIALIN' | 'VIDEO_DIALOUT' | 'CASCADE' | 'HYBRID_CASCADE' | 'PSTN_SIP' | 'PSTN_DIALIN' | 'PSTN_DIALOUT' | 'PSTN_ONLY_DIALIN' | 'PSTN_ONLY_DIALOUT' | 'H323' | 'H323_IP' | 'SIP_ENTERPRISE' | 'SIP_MOBILE' | 'SIP_NATIONAL' | 'SIP_INTERNATIONAL' | 'SIP_EMERGENCY' | 'SIP_OPERATOR' | 'SIP_SHORTCODE' | 'SIP_TOLLFREE' | 'SIP_PREMIUM' | 'SIP_URI' | 'SIP_INBOUND' | 'UNKNOWN' | 'ZTM' | 'SIP_MEETING';
|
|
1370
1370
|
eventData?: {};
|
|
1371
|
-
derivedSipClientType?:
|
|
1371
|
+
derivedSipClientType?: 'SIP_CE_SINGLE_SCREEN' | 'SIP_CE_MULTI_SCREEN' | 'SIP_JABBER' | 'SIP_TIP_SINGLE_SCREEN' | 'SIP_TIP_THREE_SCREEN' | 'SIP_PSTN' | 'SIP_OTHER' | 'SIP_WEBEX_CASCADE' | 'SIP_NONE';
|
|
1372
1372
|
/**
|
|
1373
1373
|
* this defines the major client types
|
|
1374
1374
|
*/
|
|
1375
|
-
derivedClientType?:
|
|
1375
|
+
derivedClientType?: 'MEETING_CENTER' | 'EVENT_CENTER' | 'TRAINING_CENTER' | 'TEAMS_CLIENT' | 'TEAMS_DEVICE' | 'TEAMS_SHARE' | 'SIP' | 'RECORDING' | 'CLOUD_AWARE_SIP' | 'TEAMS_WXC_CLIENT' | 'WXC_CLIENT' | 'WXC_DEVICE' | 'WEBEX_JS_SDK' | 'VOICEA_CLIENT' | 'CISCO_SIP_GW' | 'WEBEX_SDK' | 'CPAAS_THIRD_PARTY_SDK' | 'WXC_THIRD_PARTY';
|
|
1376
1376
|
/**
|
|
1377
1377
|
* this defines the sub types of clients
|
|
1378
1378
|
*/
|
|
1379
|
-
derivedSubClientType?:
|
|
1380
|
-
serverRole?:
|
|
1379
|
+
derivedSubClientType?: 'DESKTOP_APP' | 'DESKTOP_APP_VDI' | 'DEVICE_CURRENT' | 'DEVICE_LEGACY_2020' | 'HVDI_APP' | 'MOBILE_APP' | 'VDI_APP' | 'WEB_APP' | 'MOBILE_NETWORK' | 'HOLOGRAM_HEADSET_APP';
|
|
1380
|
+
serverRole?: 'CONFERENCE' | 'TRANSCODER' | 'WHITEBOARD_INJECTOR' | 'MS_TEAMS_CONFERENCE' | 'RECORDING' | 'GATEWAY' | 'GATEWAY_CLIENT_SIDE' | 'UNKNOWN' | 'HOLOGRAM_RENDER';
|
|
1381
1381
|
reconnect?: boolean;
|
|
1382
1382
|
retryCount?: number;
|
|
1383
1383
|
meetSimple?: boolean;
|
|
@@ -1385,15 +1385,15 @@ export interface Event {
|
|
|
1385
1385
|
* represents media quality status report such as no media or drop out
|
|
1386
1386
|
*/
|
|
1387
1387
|
mediaStatus?: {
|
|
1388
|
-
mediaType?:
|
|
1388
|
+
mediaType?: 'audio' | 'video' | 'share' | 'share_audio' | 'whiteboard';
|
|
1389
1389
|
mediaSuccess?: boolean;
|
|
1390
|
-
shareType?:
|
|
1390
|
+
shareType?: 'cb-normal-share' | 'ce-airplay-share' | 'ce-direct-share' | 'ce-gui-loopback-share' | 'ce-input-source-share' | 'ce-input-source-share-hdmi' | 'ce-input-source-share-usbc' | 'ce-jpg-share' | 'ce-miracast-share' | 'mcs-normal-share' | 'mcs-normal-audio-share' | 'mcs-hfps-share' | 'mcs-hfps-audio-share';
|
|
1391
1391
|
isTransmitter?: boolean;
|
|
1392
|
-
audioJoinType?:
|
|
1392
|
+
audioJoinType?: 'phone-call-in' | 'phone-call-back' | 'voip' | 'device-call-back' | 'never-join-audio' | 'tried-but-never-join';
|
|
1393
1393
|
/**
|
|
1394
1394
|
* indicates transport type used
|
|
1395
1395
|
*/
|
|
1396
|
-
transportType?:
|
|
1396
|
+
transportType?: 'UDP' | 'TCP' | 'xTLS' | 'TLS';
|
|
1397
1397
|
additionalData?: {};
|
|
1398
1398
|
};
|
|
1399
1399
|
shareInstanceId?: string;
|
|
@@ -1404,7 +1404,7 @@ export interface Event {
|
|
|
1404
1404
|
audioSetupDelay?: {
|
|
1405
1405
|
floorReqSentReceived?: number;
|
|
1406
1406
|
floorRespSentReceived?: number;
|
|
1407
|
-
mediaType?:
|
|
1407
|
+
mediaType?: 'audio' | 'video' | 'share' | 'share_audio' | 'whiteboard';
|
|
1408
1408
|
txReqFloorGranted?: number;
|
|
1409
1409
|
txSessionCreateConfirm?: number;
|
|
1410
1410
|
txApeEnrollConfirm?: number;
|
|
@@ -1444,7 +1444,7 @@ export interface Event {
|
|
|
1444
1444
|
videoSetupDelay?: {
|
|
1445
1445
|
floorReqSentReceived?: number;
|
|
1446
1446
|
floorRespSentReceived?: number;
|
|
1447
|
-
mediaType?:
|
|
1447
|
+
mediaType?: 'audio' | 'video' | 'share' | 'share_audio' | 'whiteboard';
|
|
1448
1448
|
txReqFloorGranted?: number;
|
|
1449
1449
|
txSessionCreateConfirm?: number;
|
|
1450
1450
|
txApeEnrollConfirm?: number;
|
|
@@ -1484,7 +1484,7 @@ export interface Event {
|
|
|
1484
1484
|
shareSetupDelay?: {
|
|
1485
1485
|
floorReqSentReceived?: number;
|
|
1486
1486
|
floorRespSentReceived?: number;
|
|
1487
|
-
mediaType?:
|
|
1487
|
+
mediaType?: 'audio' | 'video' | 'share' | 'share_audio' | 'whiteboard';
|
|
1488
1488
|
txReqFloorGranted?: number;
|
|
1489
1489
|
txSessionCreateConfirm?: number;
|
|
1490
1490
|
txApeEnrollConfirm?: number;
|
|
@@ -1524,7 +1524,7 @@ export interface Event {
|
|
|
1524
1524
|
shareAudioSetupDelay?: {
|
|
1525
1525
|
floorReqSentReceived?: number;
|
|
1526
1526
|
floorRespSentReceived?: number;
|
|
1527
|
-
mediaType?:
|
|
1527
|
+
mediaType?: 'audio' | 'video' | 'share' | 'share_audio' | 'whiteboard';
|
|
1528
1528
|
txReqFloorGranted?: number;
|
|
1529
1529
|
txSessionCreateConfirm?: number;
|
|
1530
1530
|
txApeEnrollConfirm?: number;
|
|
@@ -1564,7 +1564,7 @@ export interface Event {
|
|
|
1564
1564
|
whiteboardSetupDelay?: {
|
|
1565
1565
|
floorReqSentReceived?: number;
|
|
1566
1566
|
floorRespSentReceived?: number;
|
|
1567
|
-
mediaType?:
|
|
1567
|
+
mediaType?: 'audio' | 'video' | 'share' | 'share_audio' | 'whiteboard';
|
|
1568
1568
|
txReqFloorGranted?: number;
|
|
1569
1569
|
txSessionCreateConfirm?: number;
|
|
1570
1570
|
txApeEnrollConfirm?: number;
|
|
@@ -1600,7 +1600,7 @@ export interface Event {
|
|
|
1600
1600
|
};
|
|
1601
1601
|
isFocus?: boolean;
|
|
1602
1602
|
processingDelay?: number;
|
|
1603
|
-
shareType?:
|
|
1603
|
+
shareType?: 'cb-normal-share' | 'ce-airplay-share' | 'ce-direct-share' | 'ce-gui-loopback-share' | 'ce-input-source-share' | 'ce-input-source-share-hdmi' | 'ce-input-source-share-usbc' | 'ce-jpg-share' | 'ce-miracast-share' | 'mcs-normal-share' | 'mcs-normal-audio-share' | 'mcs-hfps-share' | 'mcs-hfps-audio-share';
|
|
1604
1604
|
isShareBeingTakenOver?: boolean;
|
|
1605
1605
|
floorBeneficiaryUpdated?: boolean;
|
|
1606
1606
|
meetingJoinedTime?: string;
|
|
@@ -1612,9 +1612,9 @@ export interface Event {
|
|
|
1612
1612
|
useKeyTime?: number;
|
|
1613
1613
|
cacheKeyTime?: number;
|
|
1614
1614
|
}[];
|
|
1615
|
-
e2eeVersion?:
|
|
1615
|
+
e2eeVersion?: 'E2EEV1' | 'E2EEV2' | 'E2EEV3';
|
|
1616
1616
|
isConvergedArchitectureEnabled?: boolean;
|
|
1617
|
-
callingServiceType?:
|
|
1617
|
+
callingServiceType?: 'CUCM' | 'WEBEXCALLING' | 'BROADWORKS' | 'LOCUS';
|
|
1618
1618
|
inLobby?: boolean;
|
|
1619
1619
|
isVIPMeeting?: boolean;
|
|
1620
1620
|
webexAppEntrypoint?: string;
|
|
@@ -1635,10 +1635,10 @@ export interface Event {
|
|
|
1635
1635
|
* Details associated with a breakout move
|
|
1636
1636
|
*/
|
|
1637
1637
|
breakout?: {
|
|
1638
|
-
moveType?:
|
|
1639
|
-
trigger?:
|
|
1640
|
-
startState?:
|
|
1641
|
-
endState?:
|
|
1638
|
+
moveType?: 'between_breakout' | 'to_breakout' | 'to_main';
|
|
1639
|
+
trigger?: 'assignment_changed' | 'client_initiated' | 'session_ended' | 'session_started';
|
|
1640
|
+
startState?: 'joined' | 'lobby';
|
|
1641
|
+
endState?: 'joined' | 'lobby';
|
|
1642
1642
|
};
|
|
1643
1643
|
/**
|
|
1644
1644
|
* Latency values associated with breakout session
|
|
@@ -1654,42 +1654,42 @@ export interface Event {
|
|
|
1654
1654
|
* two-way whiteboard related info
|
|
1655
1655
|
*/
|
|
1656
1656
|
whiteboard?: {
|
|
1657
|
-
action?:
|
|
1658
|
-
type?:
|
|
1659
|
-
capability?:
|
|
1660
|
-
granted?:
|
|
1657
|
+
action?: 'open' | 'create';
|
|
1658
|
+
type?: 'whiteboard' | 'annotation';
|
|
1659
|
+
capability?: 'one_way' | 'two_way';
|
|
1660
|
+
granted?: 'one_way' | 'two_way';
|
|
1661
1661
|
};
|
|
1662
1662
|
/**
|
|
1663
1663
|
* ROAP message details
|
|
1664
1664
|
*/
|
|
1665
1665
|
roap?: {
|
|
1666
|
-
type?:
|
|
1667
|
-
messageType?:
|
|
1666
|
+
type?: 'ANSWER' | 'ERROR' | 'OFFER' | 'OFFER_REQUEST' | 'OFFER_RESPONSE' | 'OK' | 'TURN_DISCOVERY_REQUEST' | 'TURN_DISCOVERY_RESPONSE';
|
|
1667
|
+
messageType?: 'ANSWER' | 'ERROR' | 'OFFER' | 'OFFER_REQUEST' | 'OFFER_RESPONSE' | 'OK' | 'TURN_DISCOVERY_REQUEST' | 'TURN_DISCOVERY_RESPONSE';
|
|
1668
1668
|
error?: string;
|
|
1669
1669
|
duration?: number;
|
|
1670
1670
|
};
|
|
1671
1671
|
remoteAgent?: string;
|
|
1672
|
-
name:
|
|
1672
|
+
name: 'breakout.breakout-session.move.initiated' | 'breakout.breakout-session.move.processed' | 'breakout.breakout-session.move.request' | 'breakout.breakout-session.move.response' | 'breakout.locus.breakout-session.move.request' | 'breakout.locus.breakout-session.move.response' | 'cascade.created' | 'cb.cmr.meeting.initiated' | 'cb.cmr.meeting.started' | 'cb.lookup.url.response' | 'cb.meeting.info.request' | 'cb.meeting.join.response' | 'cb.share.session.response' | 'givr.poros.connect' | 'givr.poros.verification' | 'givr.sip.refer.request' | 'givr.sip.refer.response' | 'ivr.dialog.begin' | 'ivr.dialog.end' | 'ivr.join.request' | 'ivr.join.response' | 'ivr.leave.request' | 'ivr.leave.response' | 'ivr.notify.request' | 'ivr.notify.response' | 'locus.breakout-session.move.request' | 'locus.breakout-session.move.response' | 'locus.call.summary' | 'locus.correlation-id.replaced' | 'locus.decline.response' | 'locus.device.state-change' | 'locus.disconnected-client' | 'locus.host.joined' | 'locus.intent.delete' | 'locus.ivr.begin' | 'locus.ivr.end' | 'locus.join.authorized' | 'locus.join.request' | 'locus.join.response' | 'locus.leave.response' | 'locus.lobby.enter' | 'locus.lobby.left' | 'locus.lobby.moved-to-meeting' | 'locus.lobby.pin-required' | 'locus.lookup.url.response' | 'locus.media.connected' | 'locus.media.muted' | 'locus.media.request' | 'locus.media.response' | 'locus.media.unmuted' | 'locus.meeting-bridge.cancel' | 'locus.meeting-bridge.initiated' | 'locus.meeting-bridge.terminated' | 'locus.meeting.ended' | 'locus.migrate' | 'locus.poros.call.connected' | 'locus.dial.status.update' | 'locus.sessionid.conferenceid.map' | 'locus.share.calliope.floor-granted.request' | 'locus.share.calliope.floor-released.request' | 'locus.share.floor-granted.local' | 'locus.share.floor-released.local' | 'locus.share.floor-steal.local' | 'locus.share.floor-granted.request' | 'mcs.cascade.join' | 'mcs.cascade.leave' | 'mcs.media.session.started' | 'mcc.meeting.created' | 'mcc.meeting.info.request' | 'mcs.meeting.info.response' | 'mcs.share.session.activated' | 'media.server.cascade.initiated' | 'media.server.leave' | 'media.server.cascade.disconnected' | 'mercury.message.sent' | 'mes.join.request' | 'orpheus.cascade.create.request' | 'orpheus.confluence.allocated' | 'orpheus.confluence.move.response' | 'orpheus.confluence.update' | 'orpheus.discovery.clusters' | 'poros.dial.status.update' | 'poros.givr.call.connect.end' | 'poros.givr.call.connect.start' | 'poros.givr.call.inquiry.request' | 'poros.givr.call.inquiry.response' | 'poros.givr.call.provision.request' | 'poros.givr.call.provision.response' | 'poros.locus.connect.request' | 'poros.locus.connect.response' | 'server.breakout-session.join.response' | 'server.breakout-session.move.request' | 'server.breakout-session.move.response' | 'server.cascade.initiated' | 'server.confluence.move.response' | 'server.lobby-media.rx.start' | 'server.lobby-media.tx.start' | 'server.media.capabilities.negotiated' | 'server.media.rx.start' | 'server.media.rx.stop' | 'server.media.tx.start' | 'server.media.tx.stop' | 'server.media.render.start' | 'server.meeting.data-prepared' | 'server.meeting.docshow.response' | 'server.meeting.gpcparameter.response' | 'server.meetinginfo.response' | 'server.meeting.initiated' | 'server.meeting.validated' | 'server.reconnect.initiated' | 'server.roap-message.received' | 'server.roap-message.sent' | 'server.share.bridge.floor-requested.failed' | 'server.share.floor-grant.request' | 'server.share.floor-granted.local' | 'server.share.floor-released.local' | 'server.share.stopped' | 'server.u2c.response' | 'server.wca.response' | 'sip.invite.response.rx' | 'sip.invite.response.tx' | 'sip.invite.rx' | 'sip.invite.tx' | 'tpgw.share.first.keyframe.recv' | 'tpgw.share.floor-granted.local' | 'notification.sent' | 'server.hologram.initiated' | 'server.hologram.stopped';
|
|
1673
1673
|
errors?: {
|
|
1674
1674
|
fatal: boolean;
|
|
1675
|
-
category:
|
|
1675
|
+
category: 'signaling' | 'media' | 'other' | 'expected';
|
|
1676
1676
|
errorDescription?: string;
|
|
1677
1677
|
errorCode?: number;
|
|
1678
1678
|
errorCodeStr?: string;
|
|
1679
1679
|
httpCode?: number;
|
|
1680
1680
|
errorData?: {};
|
|
1681
|
-
name:
|
|
1681
|
+
name: 'timeout' | 'unauthorized' | 'downstream-failure' | 'upstream-failure' | 'other';
|
|
1682
1682
|
}[];
|
|
1683
1683
|
/**
|
|
1684
1684
|
* media quality error report such as no media or drop out
|
|
1685
1685
|
*/
|
|
1686
1686
|
serviceMediaError?: {
|
|
1687
|
-
mediaType?:
|
|
1688
|
-
mediaFailureType?:
|
|
1687
|
+
mediaType?: 'audio' | 'video' | 'share' | 'share_audio' | 'whiteboard';
|
|
1688
|
+
mediaFailureType?: 'noMedia' | 'mediaDrop' | 'mediaEvent';
|
|
1689
1689
|
isDropAtStart?: boolean;
|
|
1690
1690
|
isJMF?: boolean;
|
|
1691
|
-
txError?:
|
|
1692
|
-
rxError?:
|
|
1691
|
+
txError?: 'NO_ERROR' | 'DEVICE_ERROR' | 'LOAD_LIBRARY_ERROR' | 'MCS_SESSION_CONNECT_ERROR' | 'CB_SESSION_CREATE_ERROR' | 'NO_FRAME_DECODE_ERROR' | 'NO_PACKET_RECV_ERROR' | 'LOW_VOLUME_ERROR' | 'INITIAL_MEMORY_ERROR' | 'MAC_VIRTUAL_AUDIO_DRV_ERROR' | 'MMP_SESSION_CONNECT_ERROR' | 'MEDIA_PROCESS_CRASH_ERROR' | 'HEARTBEAT_LOST_WITH_MEDIA_PROCESS_ERROR' | 'MEDIA_SERVER_CONNECT_ERROR' | 'LOCUS_SESSION_CONNECT_ERROR' | 'NO_PACKET_SEND_ERROR' | 'NETWORK_LOST_ERROR' | 'MEDIA_NOT_AVAILABLE';
|
|
1692
|
+
rxError?: 'NO_ERROR' | 'DEVICE_ERROR' | 'LOAD_LIBRARY_ERROR' | 'MCS_SESSION_CONNECT_ERROR' | 'CB_SESSION_CREATE_ERROR' | 'NO_FRAME_DECODE_ERROR' | 'NO_PACKET_RECV_ERROR' | 'LOW_VOLUME_ERROR' | 'INITIAL_MEMORY_ERROR' | 'MAC_VIRTUAL_AUDIO_DRV_ERROR' | 'MMP_SESSION_CONNECT_ERROR' | 'MEDIA_PROCESS_CRASH_ERROR' | 'HEARTBEAT_LOST_WITH_MEDIA_PROCESS_ERROR' | 'MEDIA_SERVER_CONNECT_ERROR' | 'LOCUS_SESSION_CONNECT_ERROR' | 'NO_PACKET_SEND_ERROR' | 'NETWORK_LOST_ERROR' | 'MEDIA_NOT_AVAILABLE';
|
|
1693
1693
|
txDeviceErrorCode?: number;
|
|
1694
1694
|
rxDeviceErrorCode?: number;
|
|
1695
1695
|
sessionConnectErrorCode?: number;
|
|
@@ -1700,13 +1700,13 @@ export interface Event {
|
|
|
1700
1700
|
rxMoreError?: string;
|
|
1701
1701
|
totalUserWhenCBStartError?: number;
|
|
1702
1702
|
sessionConnectExtErrorCode?: number;
|
|
1703
|
-
sessionConnectErrorType?:
|
|
1703
|
+
sessionConnectErrorType?: 'unknown' | 'MCC_error' | 'MCS_error' | 'Tahoe_error';
|
|
1704
1704
|
txSystemErrorCode?: number;
|
|
1705
1705
|
rxSystemErrorCode?: number;
|
|
1706
1706
|
errorDetails?: {};
|
|
1707
1707
|
};
|
|
1708
|
-
trigger?:
|
|
1709
|
-
sessionType?:
|
|
1708
|
+
trigger?: 'client-initiated' | 'timeout' | 'signaling' | 'other';
|
|
1709
|
+
sessionType?: 'AD_HOC' | 'ADHOC_UNIFIED_SPACE_MEETING' | 'ANSWERED_ELSEWHERE' | 'BUTLER' | 'CFNA' | 'CMR_MEETING' | 'DPC_CONTROL' | 'EVENT_CENTER_MEETING' | 'HALF_ZTM' | 'JABBER' | 'MEDIA' | 'MS_TEAMS' | 'NO_JOINS' | 'SINGLE_PARTICIPANT' | 'SIP_CALL' | 'SIP_MEETING' | 'SPACE_MEETING' | 'SPACE_SHARE' | 'SPARK_CALL' | 'SPARK_MEETING' | 'SPARK_SIP_CALL' | 'SPARK_SIP_MEETING' | 'UNIFIED_SPACE_MEETING' | 'UNKNOWN' | 'WHITEBOARD_ONLY_SHARE' | 'WIRELESS_SHARE' | 'ZTM';
|
|
1710
1710
|
device?: {
|
|
1711
1711
|
deviceType?: string;
|
|
1712
1712
|
deviceId?: string;
|
|
@@ -1715,8 +1715,8 @@ export interface Event {
|
|
|
1715
1715
|
productName?: string;
|
|
1716
1716
|
tempSipUri?: string;
|
|
1717
1717
|
};
|
|
1718
|
-
deviceState?:
|
|
1719
|
-
disconnectReason?:
|
|
1718
|
+
deviceState?: 'idle' | 'idle-observed' | 'joined' | 'joined-observing';
|
|
1719
|
+
disconnectReason?: 'answered_elsewhere' | 'busy' | 'callback_cancel' | 'callback_disconnect' | 'cascade_connect_timeout' | 'collect_dialog_failure' | 'collect_pin_dialog_failure' | 'dnd' | 'duplicate_call' | 'forbidden' | 'forced' | 'inactive' | 'intent_canceled' | 'intent_expired' | 'invalid_join_time' | 'invalid_pin' | 'leave_transfer_host' | 'lobby_expired' | 'media_moved' | 'media_released' | 'meeting_ended' | 'meeting_full' | 'meeting_locked' | 'not_acceptable' | 'not_found' | 'observed_left' | 'one_to_one_call_cleanup' | 'operation_limit_exceeded' | 'other' | 'resource_declined' | 'resource_left' | 'unknown' | 'unreachable';
|
|
1720
1720
|
/**
|
|
1721
1721
|
* Base type for the various identifiers used to connect the dots.
|
|
1722
1722
|
* In general, these should be populated whenever possible. Subtypes may make a particular key required.
|
|
@@ -1790,10 +1790,10 @@ export interface Event {
|
|
|
1790
1790
|
webexUserId?: number;
|
|
1791
1791
|
webexWebDomain?: string;
|
|
1792
1792
|
};
|
|
1793
|
-
pstnDialStatus?:
|
|
1794
|
-
messageType?:
|
|
1793
|
+
pstnDialStatus?: 'DIALING' | 'RINGING' | 'CONNECTED' | 'CONFIRMING' | 'NEGOTIATING' | 'TRANSFERRING' | 'SUCCESS' | 'FAILURE' | 'BUSY' | 'NOANSWER' | 'DECLINED' | 'CANCELLED' | 'HUNGUP' | 'BLOCKED';
|
|
1794
|
+
messageType?: 'paired-device-join' | 'locus-active' | 'incoming-call';
|
|
1795
1795
|
responseCode?: number;
|
|
1796
|
-
ivrDialogState?:
|
|
1796
|
+
ivrDialogState?: 'DIALOGUE_ACTIVE' | 'DIALOGUE_IN_PROGRESS' | 'DIALOGUE_COMPLETE' | 'DIALOGUE_ERROR';
|
|
1797
1797
|
ccpShareInstanceId?: string;
|
|
1798
1798
|
wbxShareInstanceId?: string;
|
|
1799
1799
|
isWbx2CCPShare?: boolean;
|
|
@@ -1801,8 +1801,8 @@ export interface Event {
|
|
|
1801
1801
|
* Details of media agent selected for a call
|
|
1802
1802
|
*/
|
|
1803
1803
|
mediaAgentInfo?: {
|
|
1804
|
-
reason:
|
|
1805
|
-
usedReason?:
|
|
1804
|
+
reason: 'CLOUD_INGRESS_REGION' | 'CLIENT_SOURCE_REGION' | 'CALLER_CLUSTER' | 'DESIGNATED_CLUSTER' | 'GEO_HINT' | 'LINUS_SELECT' | 'OVERRIDE_PREFERRED_CLUSTER' | 'PREFERRED_CLUSTER' | 'REACHABILITY' | 'USER_SETTING' | 'FAILOVER_CLUSTER' | 'DEFAULT_CLUSTER';
|
|
1805
|
+
usedReason?: 'CLOUD_INGRESS_REGION' | 'CLIENT_SOURCE_REGION' | 'CALLER_CLUSTER' | 'DESIGNATED_CLUSTER' | 'GEO_HINT' | 'LINUS_SELECT' | 'OVERRIDE_PREFERRED_CLUSTER' | 'PREFERRED_CLUSTER' | 'REACHABILITY' | 'USER_SETTING' | 'FAILOVER_CLUSTER' | 'DEFAULT_CLUSTER';
|
|
1806
1806
|
/**
|
|
1807
1807
|
* metadata associated with a media cluster.
|
|
1808
1808
|
*/
|
|
@@ -1810,9 +1810,9 @@ export interface Event {
|
|
|
1810
1810
|
serverOrgId: string;
|
|
1811
1811
|
serverGroupId: string;
|
|
1812
1812
|
isHybridMedia: boolean;
|
|
1813
|
-
transportTypes?: (
|
|
1813
|
+
transportTypes?: ('UDP' | 'TCP' | 'xTLS' | 'TLS')[];
|
|
1814
1814
|
latency?: number;
|
|
1815
|
-
skippedReason?:
|
|
1815
|
+
skippedReason?: 'CAPACITY' | 'CLIENT_EXCLUSION' | 'LATENCY' | 'OFFLINE' | 'UNREACHABLE';
|
|
1816
1816
|
};
|
|
1817
1817
|
/**
|
|
1818
1818
|
* metadata associated with a media cluster.
|
|
@@ -1821,19 +1821,19 @@ export interface Event {
|
|
|
1821
1821
|
serverOrgId: string;
|
|
1822
1822
|
serverGroupId: string;
|
|
1823
1823
|
isHybridMedia: boolean;
|
|
1824
|
-
transportTypes?: (
|
|
1824
|
+
transportTypes?: ('UDP' | 'TCP' | 'xTLS' | 'TLS')[];
|
|
1825
1825
|
latency?: number;
|
|
1826
|
-
skippedReason?:
|
|
1826
|
+
skippedReason?: 'CAPACITY' | 'CLIENT_EXCLUSION' | 'LATENCY' | 'OFFLINE' | 'UNREACHABLE';
|
|
1827
1827
|
};
|
|
1828
1828
|
usedMediaServerAlias?: string;
|
|
1829
|
-
usedMediaServerType?:
|
|
1829
|
+
usedMediaServerType?: 'CB' | 'CMS' | 'HESIOD' | 'LINUS' | 'MCC' | 'MCS' | 'MES' | 'MJS' | 'MRS' | 'MYGDONUS' | 'MZM' | 'TERMINUS' | 'TPGW' | 'TA' | 'HOMER' | 'SUPERHOMER' | 'U2C' | 'WCA' | 'MSE' | 'UNKNOWN';
|
|
1830
1830
|
usedMediaServiceServerAlias?: string;
|
|
1831
|
-
usedMediaServiceServerType?:
|
|
1831
|
+
usedMediaServiceServerType?: 'CB' | 'CMS' | 'HESIOD' | 'LINUS' | 'MCC' | 'MCS' | 'MES' | 'MJS' | 'MRS' | 'MYGDONUS' | 'MZM' | 'TERMINUS' | 'TPGW' | 'TA' | 'HOMER' | 'SUPERHOMER' | 'U2C' | 'WCA' | 'MSE' | 'UNKNOWN';
|
|
1832
1832
|
/**
|
|
1833
1833
|
* Details of media agent selection parameters to choose a media cluster for a call. Refer https://confluence-eng-gpk2.cisco.com/conf/pages/viewpage.action?spaceKey=CLO&title=SIP+GDM for details
|
|
1834
1834
|
*/
|
|
1835
1835
|
parameters?: {
|
|
1836
|
-
clusterScope?:
|
|
1836
|
+
clusterScope?: 'PUBLIC_ONLY' | 'PRIVATE_ONLY' | 'PUBLIC_AND_PRIVATE';
|
|
1837
1837
|
/**
|
|
1838
1838
|
* Geographical information derived from a client's IP Address
|
|
1839
1839
|
*/
|
|
@@ -1900,11 +1900,11 @@ export interface Event {
|
|
|
1900
1900
|
serverOrgId: string;
|
|
1901
1901
|
serverGroupId: string;
|
|
1902
1902
|
isHybridMedia: boolean;
|
|
1903
|
-
transportTypes?: (
|
|
1903
|
+
transportTypes?: ('UDP' | 'TCP' | 'xTLS' | 'TLS')[];
|
|
1904
1904
|
latency?: number;
|
|
1905
|
-
skippedReason?:
|
|
1905
|
+
skippedReason?: 'CAPACITY' | 'CLIENT_EXCLUSION' | 'LATENCY' | 'OFFLINE' | 'UNREACHABLE';
|
|
1906
1906
|
};
|
|
1907
|
-
meetingType?:
|
|
1907
|
+
meetingType?: 'AD_HOC' | 'ADHOC_UNIFIED_SPACE_MEETING' | 'ANSWERED_ELSEWHERE' | 'BUTLER' | 'CFNA' | 'CMR_MEETING' | 'DPC_CONTROL' | 'EVENT_CENTER_MEETING' | 'HALF_ZTM' | 'JABBER' | 'MEDIA' | 'MS_TEAMS' | 'NO_JOINS' | 'SINGLE_PARTICIPANT' | 'SIP_CALL' | 'SIP_MEETING' | 'SPACE_MEETING' | 'SPACE_SHARE' | 'SPARK_CALL' | 'SPARK_MEETING' | 'SPARK_SIP_CALL' | 'SPARK_SIP_MEETING' | 'UNIFIED_SPACE_MEETING' | 'UNKNOWN' | 'WHITEBOARD_ONLY_SHARE' | 'WIRELESS_SHARE' | 'ZTM';
|
|
1908
1908
|
numberOfClustersTried?: number;
|
|
1909
1909
|
preferredClustersLoadBalanced?: string[];
|
|
1910
1910
|
reachableCloudReachabilityClustersCount?: number;
|
|
@@ -1925,9 +1925,9 @@ export interface Event {
|
|
|
1925
1925
|
serverOrgId: string;
|
|
1926
1926
|
serverGroupId: string;
|
|
1927
1927
|
isHybridMedia: boolean;
|
|
1928
|
-
transportTypes?: (
|
|
1928
|
+
transportTypes?: ('UDP' | 'TCP' | 'xTLS' | 'TLS')[];
|
|
1929
1929
|
latency?: number;
|
|
1930
|
-
skippedReason?:
|
|
1930
|
+
skippedReason?: 'CAPACITY' | 'CLIENT_EXCLUSION' | 'LATENCY' | 'OFFLINE' | 'UNREACHABLE';
|
|
1931
1931
|
}[];
|
|
1932
1932
|
};
|
|
1933
1933
|
/**
|
|
@@ -1935,9 +1935,9 @@ export interface Event {
|
|
|
1935
1935
|
*/
|
|
1936
1936
|
mediaAgentUpdateInfo?: {
|
|
1937
1937
|
newMediaServiceServerAlias?: string;
|
|
1938
|
-
newMediaServiceServerType?:
|
|
1938
|
+
newMediaServiceServerType?: 'CB' | 'CMS' | 'HESIOD' | 'LINUS' | 'MCC' | 'MCS' | 'MES' | 'MJS' | 'MRS' | 'MYGDONUS' | 'MZM' | 'TERMINUS' | 'TPGW' | 'TA' | 'HOMER' | 'SUPERHOMER' | 'U2C' | 'WCA' | 'MSE' | 'UNKNOWN';
|
|
1939
1939
|
previousMediaServiceServerAlias?: string;
|
|
1940
|
-
previousMediaServiceServerType?:
|
|
1940
|
+
previousMediaServiceServerType?: 'CB' | 'CMS' | 'HESIOD' | 'LINUS' | 'MCC' | 'MCS' | 'MES' | 'MJS' | 'MRS' | 'MYGDONUS' | 'MZM' | 'TERMINUS' | 'TPGW' | 'TA' | 'HOMER' | 'SUPERHOMER' | 'U2C' | 'WCA' | 'MSE' | 'UNKNOWN';
|
|
1941
1941
|
};
|
|
1942
1942
|
/**
|
|
1943
1943
|
* metadata associated with a media cascade.
|
|
@@ -1954,13 +1954,13 @@ export interface Event {
|
|
|
1954
1954
|
serverOrgId: string;
|
|
1955
1955
|
serverGroupId: string;
|
|
1956
1956
|
isHybridMedia: boolean;
|
|
1957
|
-
transportTypes?: (
|
|
1957
|
+
transportTypes?: ('UDP' | 'TCP' | 'xTLS' | 'TLS')[];
|
|
1958
1958
|
latency?: number;
|
|
1959
|
-
skippedReason?:
|
|
1959
|
+
skippedReason?: 'CAPACITY' | 'CLIENT_EXCLUSION' | 'LATENCY' | 'OFFLINE' | 'UNREACHABLE';
|
|
1960
1960
|
};
|
|
1961
1961
|
isClusterReachabilityProvided?: boolean;
|
|
1962
1962
|
isClusterReachable?: boolean;
|
|
1963
|
-
serverType:
|
|
1963
|
+
serverType: 'CB' | 'CMS' | 'HESIOD' | 'LINUS' | 'MCC' | 'MCS' | 'MES' | 'MJS' | 'MRS' | 'MYGDONUS' | 'MZM' | 'TERMINUS' | 'TPGW' | 'TA' | 'HOMER' | 'SUPERHOMER' | 'U2C' | 'WCA' | 'MSE' | 'UNKNOWN';
|
|
1964
1964
|
serverAlias: string;
|
|
1965
1965
|
};
|
|
1966
1966
|
/**
|
|
@@ -1974,13 +1974,13 @@ export interface Event {
|
|
|
1974
1974
|
serverOrgId: string;
|
|
1975
1975
|
serverGroupId: string;
|
|
1976
1976
|
isHybridMedia: boolean;
|
|
1977
|
-
transportTypes?: (
|
|
1977
|
+
transportTypes?: ('UDP' | 'TCP' | 'xTLS' | 'TLS')[];
|
|
1978
1978
|
latency?: number;
|
|
1979
|
-
skippedReason?:
|
|
1979
|
+
skippedReason?: 'CAPACITY' | 'CLIENT_EXCLUSION' | 'LATENCY' | 'OFFLINE' | 'UNREACHABLE';
|
|
1980
1980
|
};
|
|
1981
1981
|
isClusterReachabilityProvided?: boolean;
|
|
1982
1982
|
isClusterReachable?: boolean;
|
|
1983
|
-
serverType:
|
|
1983
|
+
serverType: 'CB' | 'CMS' | 'HESIOD' | 'LINUS' | 'MCC' | 'MCS' | 'MES' | 'MJS' | 'MRS' | 'MYGDONUS' | 'MZM' | 'TERMINUS' | 'TPGW' | 'TA' | 'HOMER' | 'SUPERHOMER' | 'U2C' | 'WCA' | 'MSE' | 'UNKNOWN';
|
|
1984
1984
|
serverAlias: string;
|
|
1985
1985
|
};
|
|
1986
1986
|
isBridging?: boolean;
|
|
@@ -2019,7 +2019,7 @@ export interface Event {
|
|
|
2019
2019
|
isPermissionTokenPresent?: boolean;
|
|
2020
2020
|
numLocusCreateConfluenceRequest?: number;
|
|
2021
2021
|
numLocusCreateVenueRequest?: number;
|
|
2022
|
-
indentityTrustLevel?:
|
|
2022
|
+
indentityTrustLevel?: 'internal' | 'external' | 'unverified';
|
|
2023
2023
|
joinedUserCount?: number;
|
|
2024
2024
|
participantCount?: number;
|
|
2025
2025
|
confluenceCount?: number;
|
|
@@ -2028,7 +2028,7 @@ export interface Event {
|
|
|
2028
2028
|
} | {
|
|
2029
2029
|
canProceed: boolean;
|
|
2030
2030
|
state?: string;
|
|
2031
|
-
mediaType?:
|
|
2031
|
+
mediaType?: 'audio' | 'video' | 'share' | 'share_audio' | 'whiteboard' | 'gamestate';
|
|
2032
2032
|
csi?: number;
|
|
2033
2033
|
/**
|
|
2034
2034
|
* media capability for both transmit and receive
|
|
@@ -2058,17 +2058,17 @@ export interface Event {
|
|
|
2058
2058
|
};
|
|
2059
2059
|
};
|
|
2060
2060
|
mediaLines?: {
|
|
2061
|
-
mediaType:
|
|
2061
|
+
mediaType: 'audio' | 'video' | 'share' | 'share_audio' | 'whiteboard' | 'gamestate';
|
|
2062
2062
|
remoteIP?: string;
|
|
2063
2063
|
localIP?: string;
|
|
2064
2064
|
localNetworkPrefix?: string;
|
|
2065
2065
|
localPort?: number;
|
|
2066
2066
|
remotePort?: number;
|
|
2067
|
-
protocol:
|
|
2068
|
-
direction:
|
|
2067
|
+
protocol: 'udp' | 'tcp' | 'xtls' | 'unknown';
|
|
2068
|
+
direction: 'sendrecv' | 'sendonly' | 'recvonly' | 'inactive';
|
|
2069
2069
|
clusterName?: string;
|
|
2070
|
-
status?:
|
|
2071
|
-
failureReason?:
|
|
2070
|
+
status?: 'succeeded' | 'in-progress' | 'failed';
|
|
2071
|
+
failureReason?: 'network' | 'transport' | 'rejected' | 'timeout' | 'notstarted' | 'succeeded';
|
|
2072
2072
|
errorCode?: number;
|
|
2073
2073
|
mediaLineData?: {};
|
|
2074
2074
|
}[];
|
|
@@ -2078,7 +2078,7 @@ export interface Event {
|
|
|
2078
2078
|
clientMediaPreferences?: {
|
|
2079
2079
|
preferTranscoding: boolean;
|
|
2080
2080
|
};
|
|
2081
|
-
pstnAudioType?:
|
|
2081
|
+
pstnAudioType?: 'dial-in' | 'dial-out';
|
|
2082
2082
|
success?: boolean;
|
|
2083
2083
|
isTranscoded?: boolean;
|
|
2084
2084
|
isGatewayed?: boolean;
|
|
@@ -2086,35 +2086,35 @@ export interface Event {
|
|
|
2086
2086
|
/**
|
|
2087
2087
|
* determine how the events are processed as well as how the reports are aggregated and sliced
|
|
2088
2088
|
*/
|
|
2089
|
-
registrationMode?:
|
|
2089
|
+
registrationMode?: 'SIP' | 'Cloud' | 'CloudAware';
|
|
2090
2090
|
/**
|
|
2091
2091
|
* protocols used to help determine how the events are processed as well as how the reports are aggregated and sliced
|
|
2092
2092
|
*/
|
|
2093
|
-
protocol?:
|
|
2093
|
+
protocol?: 'SIP' | 'H323' | 'Locus' | 'WebRTC';
|
|
2094
2094
|
/**
|
|
2095
2095
|
* The underlying service provider of the call.
|
|
2096
2096
|
*/
|
|
2097
|
-
meetingPlatform?:
|
|
2097
|
+
meetingPlatform?: 'MsTeams' | 'GoogleMeet' | 'Zoom' | 'Webex';
|
|
2098
2098
|
labels?: string[];
|
|
2099
|
-
webexServiceType?:
|
|
2099
|
+
webexServiceType?: 'MC' | 'EC' | 'SC' | 'TC' | 'AA' | 'RA' | 'NBR' | 'WRF' | 'HOL';
|
|
2100
2100
|
/**
|
|
2101
2101
|
* this defines the sub service type
|
|
2102
2102
|
*/
|
|
2103
|
-
webexSubServiceType?:
|
|
2104
|
-
ivrDialogType?:
|
|
2105
|
-
ivrDialogResult?:
|
|
2106
|
-
callType?:
|
|
2103
|
+
webexSubServiceType?: 'PMR' | 'Event' | 'Training' | 'ScheduleMeeting' | 'ScheduledMeeting' | 'Webinar' | 'others';
|
|
2104
|
+
ivrDialogType?: 'MEDIA_ON_HOLD' | 'ANNOUNCEMENT' | 'TONE' | 'COLLECT_PIN' | 'PROMPT' | 'MEDIA_SERVICE_AGENT' | 'COLLECT';
|
|
2105
|
+
ivrDialogResult?: 'SUCCESS' | 'FAILURE' | 'HOST_PIN_MATCH' | 'GUEST_PIN_MATCH' | 'PANELIST_PIN_MATCH' | 'NO_MATCH' | 'INVALID_PIN';
|
|
2106
|
+
callType?: 'VIDEO_DIALIN' | 'VIDEO_DIALOUT' | 'CASCADE' | 'HYBRID_CASCADE' | 'PSTN_SIP' | 'PSTN_DIALIN' | 'PSTN_DIALOUT' | 'PSTN_ONLY_DIALIN' | 'PSTN_ONLY_DIALOUT' | 'H323' | 'H323_IP' | 'SIP_ENTERPRISE' | 'SIP_MOBILE' | 'SIP_NATIONAL' | 'SIP_INTERNATIONAL' | 'SIP_EMERGENCY' | 'SIP_OPERATOR' | 'SIP_SHORTCODE' | 'SIP_TOLLFREE' | 'SIP_PREMIUM' | 'SIP_URI' | 'SIP_INBOUND' | 'UNKNOWN' | 'ZTM' | 'SIP_MEETING';
|
|
2107
2107
|
eventData?: {};
|
|
2108
|
-
derivedSipClientType?:
|
|
2108
|
+
derivedSipClientType?: 'SIP_CE_SINGLE_SCREEN' | 'SIP_CE_MULTI_SCREEN' | 'SIP_JABBER' | 'SIP_TIP_SINGLE_SCREEN' | 'SIP_TIP_THREE_SCREEN' | 'SIP_PSTN' | 'SIP_OTHER' | 'SIP_WEBEX_CASCADE' | 'SIP_NONE';
|
|
2109
2109
|
/**
|
|
2110
2110
|
* this defines the major client types
|
|
2111
2111
|
*/
|
|
2112
|
-
derivedClientType?:
|
|
2112
|
+
derivedClientType?: 'MEETING_CENTER' | 'EVENT_CENTER' | 'TRAINING_CENTER' | 'TEAMS_CLIENT' | 'TEAMS_DEVICE' | 'TEAMS_SHARE' | 'SIP' | 'RECORDING' | 'CLOUD_AWARE_SIP' | 'TEAMS_WXC_CLIENT' | 'WXC_CLIENT' | 'WXC_DEVICE' | 'WEBEX_JS_SDK' | 'VOICEA_CLIENT' | 'CISCO_SIP_GW' | 'WEBEX_SDK' | 'CPAAS_THIRD_PARTY_SDK' | 'WXC_THIRD_PARTY';
|
|
2113
2113
|
/**
|
|
2114
2114
|
* this defines the sub types of clients
|
|
2115
2115
|
*/
|
|
2116
|
-
derivedSubClientType?:
|
|
2117
|
-
serverRole?:
|
|
2116
|
+
derivedSubClientType?: 'DESKTOP_APP' | 'DESKTOP_APP_VDI' | 'DEVICE_CURRENT' | 'DEVICE_LEGACY_2020' | 'HVDI_APP' | 'MOBILE_APP' | 'VDI_APP' | 'WEB_APP' | 'MOBILE_NETWORK' | 'HOLOGRAM_HEADSET_APP';
|
|
2117
|
+
serverRole?: 'CONFERENCE' | 'TRANSCODER' | 'WHITEBOARD_INJECTOR' | 'MS_TEAMS_CONFERENCE' | 'RECORDING' | 'GATEWAY' | 'GATEWAY_CLIENT_SIDE' | 'UNKNOWN' | 'HOLOGRAM_RENDER';
|
|
2118
2118
|
reconnect?: boolean;
|
|
2119
2119
|
retryCount?: number;
|
|
2120
2120
|
meetSimple?: boolean;
|
|
@@ -2122,15 +2122,15 @@ export interface Event {
|
|
|
2122
2122
|
* represents media quality status report such as no media or drop out
|
|
2123
2123
|
*/
|
|
2124
2124
|
mediaStatus?: {
|
|
2125
|
-
mediaType?:
|
|
2125
|
+
mediaType?: 'audio' | 'video' | 'share' | 'share_audio' | 'whiteboard';
|
|
2126
2126
|
mediaSuccess?: boolean;
|
|
2127
|
-
shareType?:
|
|
2127
|
+
shareType?: 'cb-normal-share' | 'ce-airplay-share' | 'ce-direct-share' | 'ce-gui-loopback-share' | 'ce-input-source-share' | 'ce-input-source-share-hdmi' | 'ce-input-source-share-usbc' | 'ce-jpg-share' | 'ce-miracast-share' | 'mcs-normal-share' | 'mcs-normal-audio-share' | 'mcs-hfps-share' | 'mcs-hfps-audio-share';
|
|
2128
2128
|
isTransmitter?: boolean;
|
|
2129
|
-
audioJoinType?:
|
|
2129
|
+
audioJoinType?: 'phone-call-in' | 'phone-call-back' | 'voip' | 'device-call-back' | 'never-join-audio' | 'tried-but-never-join';
|
|
2130
2130
|
/**
|
|
2131
2131
|
* indicates transport type used
|
|
2132
2132
|
*/
|
|
2133
|
-
transportType?:
|
|
2133
|
+
transportType?: 'UDP' | 'TCP' | 'xTLS' | 'TLS';
|
|
2134
2134
|
additionalData?: {};
|
|
2135
2135
|
};
|
|
2136
2136
|
shareInstanceId?: string;
|
|
@@ -2141,7 +2141,7 @@ export interface Event {
|
|
|
2141
2141
|
audioSetupDelay?: {
|
|
2142
2142
|
floorReqSentReceived?: number;
|
|
2143
2143
|
floorRespSentReceived?: number;
|
|
2144
|
-
mediaType?:
|
|
2144
|
+
mediaType?: 'audio' | 'video' | 'share' | 'share_audio' | 'whiteboard';
|
|
2145
2145
|
txReqFloorGranted?: number;
|
|
2146
2146
|
txSessionCreateConfirm?: number;
|
|
2147
2147
|
txApeEnrollConfirm?: number;
|
|
@@ -2181,7 +2181,7 @@ export interface Event {
|
|
|
2181
2181
|
videoSetupDelay?: {
|
|
2182
2182
|
floorReqSentReceived?: number;
|
|
2183
2183
|
floorRespSentReceived?: number;
|
|
2184
|
-
mediaType?:
|
|
2184
|
+
mediaType?: 'audio' | 'video' | 'share' | 'share_audio' | 'whiteboard';
|
|
2185
2185
|
txReqFloorGranted?: number;
|
|
2186
2186
|
txSessionCreateConfirm?: number;
|
|
2187
2187
|
txApeEnrollConfirm?: number;
|
|
@@ -2221,7 +2221,7 @@ export interface Event {
|
|
|
2221
2221
|
shareSetupDelay?: {
|
|
2222
2222
|
floorReqSentReceived?: number;
|
|
2223
2223
|
floorRespSentReceived?: number;
|
|
2224
|
-
mediaType?:
|
|
2224
|
+
mediaType?: 'audio' | 'video' | 'share' | 'share_audio' | 'whiteboard';
|
|
2225
2225
|
txReqFloorGranted?: number;
|
|
2226
2226
|
txSessionCreateConfirm?: number;
|
|
2227
2227
|
txApeEnrollConfirm?: number;
|
|
@@ -2261,7 +2261,7 @@ export interface Event {
|
|
|
2261
2261
|
shareAudioSetupDelay?: {
|
|
2262
2262
|
floorReqSentReceived?: number;
|
|
2263
2263
|
floorRespSentReceived?: number;
|
|
2264
|
-
mediaType?:
|
|
2264
|
+
mediaType?: 'audio' | 'video' | 'share' | 'share_audio' | 'whiteboard';
|
|
2265
2265
|
txReqFloorGranted?: number;
|
|
2266
2266
|
txSessionCreateConfirm?: number;
|
|
2267
2267
|
txApeEnrollConfirm?: number;
|
|
@@ -2301,7 +2301,7 @@ export interface Event {
|
|
|
2301
2301
|
whiteboardSetupDelay?: {
|
|
2302
2302
|
floorReqSentReceived?: number;
|
|
2303
2303
|
floorRespSentReceived?: number;
|
|
2304
|
-
mediaType?:
|
|
2304
|
+
mediaType?: 'audio' | 'video' | 'share' | 'share_audio' | 'whiteboard';
|
|
2305
2305
|
txReqFloorGranted?: number;
|
|
2306
2306
|
txSessionCreateConfirm?: number;
|
|
2307
2307
|
txApeEnrollConfirm?: number;
|
|
@@ -2337,7 +2337,7 @@ export interface Event {
|
|
|
2337
2337
|
};
|
|
2338
2338
|
isFocus?: boolean;
|
|
2339
2339
|
processingDelay?: number;
|
|
2340
|
-
shareType?:
|
|
2340
|
+
shareType?: 'cb-normal-share' | 'ce-airplay-share' | 'ce-direct-share' | 'ce-gui-loopback-share' | 'ce-input-source-share' | 'ce-input-source-share-hdmi' | 'ce-input-source-share-usbc' | 'ce-jpg-share' | 'ce-miracast-share' | 'mcs-normal-share' | 'mcs-normal-audio-share' | 'mcs-hfps-share' | 'mcs-hfps-audio-share';
|
|
2341
2341
|
isShareBeingTakenOver?: boolean;
|
|
2342
2342
|
floorBeneficiaryUpdated?: boolean;
|
|
2343
2343
|
meetingJoinedTime?: string;
|
|
@@ -2349,9 +2349,9 @@ export interface Event {
|
|
|
2349
2349
|
useKeyTime?: number;
|
|
2350
2350
|
cacheKeyTime?: number;
|
|
2351
2351
|
}[];
|
|
2352
|
-
e2eeVersion?:
|
|
2352
|
+
e2eeVersion?: 'E2EEV1' | 'E2EEV2' | 'E2EEV3';
|
|
2353
2353
|
isConvergedArchitectureEnabled?: boolean;
|
|
2354
|
-
callingServiceType?:
|
|
2354
|
+
callingServiceType?: 'CUCM' | 'WEBEXCALLING' | 'BROADWORKS' | 'LOCUS';
|
|
2355
2355
|
inLobby?: boolean;
|
|
2356
2356
|
isVIPMeeting?: boolean;
|
|
2357
2357
|
webexAppEntrypoint?: string;
|
|
@@ -2372,10 +2372,10 @@ export interface Event {
|
|
|
2372
2372
|
* Details associated with a breakout move
|
|
2373
2373
|
*/
|
|
2374
2374
|
breakout?: {
|
|
2375
|
-
moveType?:
|
|
2376
|
-
trigger?:
|
|
2377
|
-
startState?:
|
|
2378
|
-
endState?:
|
|
2375
|
+
moveType?: 'between_breakout' | 'to_breakout' | 'to_main';
|
|
2376
|
+
trigger?: 'assignment_changed' | 'client_initiated' | 'session_ended' | 'session_started';
|
|
2377
|
+
startState?: 'joined' | 'lobby';
|
|
2378
|
+
endState?: 'joined' | 'lobby';
|
|
2379
2379
|
};
|
|
2380
2380
|
/**
|
|
2381
2381
|
* Latency values associated with breakout session
|
|
@@ -2391,22 +2391,22 @@ export interface Event {
|
|
|
2391
2391
|
* two-way whiteboard related info
|
|
2392
2392
|
*/
|
|
2393
2393
|
whiteboard?: {
|
|
2394
|
-
action?:
|
|
2395
|
-
type?:
|
|
2396
|
-
capability?:
|
|
2397
|
-
granted?:
|
|
2394
|
+
action?: 'open' | 'create';
|
|
2395
|
+
type?: 'whiteboard' | 'annotation';
|
|
2396
|
+
capability?: 'one_way' | 'two_way';
|
|
2397
|
+
granted?: 'one_way' | 'two_way';
|
|
2398
2398
|
};
|
|
2399
2399
|
/**
|
|
2400
2400
|
* ROAP message details
|
|
2401
2401
|
*/
|
|
2402
2402
|
roap?: {
|
|
2403
|
-
type?:
|
|
2404
|
-
messageType?:
|
|
2403
|
+
type?: 'ANSWER' | 'ERROR' | 'OFFER' | 'OFFER_REQUEST' | 'OFFER_RESPONSE' | 'OK' | 'TURN_DISCOVERY_REQUEST' | 'TURN_DISCOVERY_RESPONSE';
|
|
2404
|
+
messageType?: 'ANSWER' | 'ERROR' | 'OFFER' | 'OFFER_REQUEST' | 'OFFER_RESPONSE' | 'OK' | 'TURN_DISCOVERY_REQUEST' | 'TURN_DISCOVERY_RESPONSE';
|
|
2405
2405
|
error?: string;
|
|
2406
2406
|
duration?: number;
|
|
2407
2407
|
};
|
|
2408
|
-
trigger?:
|
|
2409
|
-
name:
|
|
2408
|
+
trigger?: 'dummyTrigger1' | 'dummyTrigger2' | 'media-quality';
|
|
2409
|
+
name: 'server.mediaquality.event' | 'client.mediaquality.event';
|
|
2410
2410
|
/**
|
|
2411
2411
|
* Base type for the various identifiers used to connect the dots.
|
|
2412
2412
|
* In general, these should be populated whenever possible. Subtypes may make a particular key required.
|
|
@@ -2494,7 +2494,7 @@ export interface Event {
|
|
|
2494
2494
|
serverOrg?: string;
|
|
2495
2495
|
serverGroup?: string;
|
|
2496
2496
|
serverAlias?: string;
|
|
2497
|
-
serverDeployType?:
|
|
2497
|
+
serverDeployType?: 'private' | 'public';
|
|
2498
2498
|
startTime: string;
|
|
2499
2499
|
endTime?: string;
|
|
2500
2500
|
csi?: number[];
|
|
@@ -2510,8 +2510,8 @@ export interface Event {
|
|
|
2510
2510
|
cascadePeerOrg?: string;
|
|
2511
2511
|
cascadePeerGroup?: string;
|
|
2512
2512
|
cascadePeerAlias?: string;
|
|
2513
|
-
cascadePeerServerType?:
|
|
2514
|
-
cascadePeerDeployType?:
|
|
2513
|
+
cascadePeerServerType?: 'CB' | 'CMS' | 'HESIOD' | 'LINUS' | 'MCC' | 'MCS' | 'MES' | 'MJS' | 'MRS' | 'MYGDONUS' | 'MZM' | 'TERMINUS' | 'TPGW' | 'TA' | 'HOMER' | 'SUPERHOMER' | 'U2C' | 'WCA' | 'MSE' | 'UNKNOWN';
|
|
2514
|
+
cascadePeerDeployType?: 'private' | 'public';
|
|
2515
2515
|
};
|
|
2516
2516
|
/**
|
|
2517
2517
|
* Details of a media edge server which is in the media path but does not generate MQE directly
|
|
@@ -2554,7 +2554,7 @@ export interface Event {
|
|
|
2554
2554
|
cpuBitWidth: number;
|
|
2555
2555
|
};
|
|
2556
2556
|
peripherals?: {
|
|
2557
|
-
name:
|
|
2557
|
+
name: 'camera' | 'microphone' | 'speaker';
|
|
2558
2558
|
information: string;
|
|
2559
2559
|
driver?: string;
|
|
2560
2560
|
errorCode?: string;
|
|
@@ -2565,7 +2565,7 @@ export interface Event {
|
|
|
2565
2565
|
* information object for the peripheral
|
|
2566
2566
|
*/
|
|
2567
2567
|
cameraInfo?: {
|
|
2568
|
-
name:
|
|
2568
|
+
name: 'camera' | 'microphone' | 'speaker';
|
|
2569
2569
|
information: string;
|
|
2570
2570
|
driver?: string;
|
|
2571
2571
|
errorCode?: string;
|
|
@@ -2576,7 +2576,7 @@ export interface Event {
|
|
|
2576
2576
|
* information object for the peripheral
|
|
2577
2577
|
*/
|
|
2578
2578
|
microphoneInfo?: {
|
|
2579
|
-
name:
|
|
2579
|
+
name: 'camera' | 'microphone' | 'speaker';
|
|
2580
2580
|
information: string;
|
|
2581
2581
|
driver?: string;
|
|
2582
2582
|
errorCode?: string;
|
|
@@ -2587,7 +2587,7 @@ export interface Event {
|
|
|
2587
2587
|
* information object for the peripheral
|
|
2588
2588
|
*/
|
|
2589
2589
|
speakerInfo?: {
|
|
2590
|
-
name:
|
|
2590
|
+
name: 'camera' | 'microphone' | 'speaker';
|
|
2591
2591
|
information: string;
|
|
2592
2592
|
driver?: string;
|
|
2593
2593
|
errorCode?: string;
|
|
@@ -2601,7 +2601,7 @@ export interface Event {
|
|
|
2601
2601
|
description: string;
|
|
2602
2602
|
clockSpeedGigaHertz: number;
|
|
2603
2603
|
numberOfCores: number;
|
|
2604
|
-
architecture:
|
|
2604
|
+
architecture: 'intel32' | 'intel64' | 'amd32' | 'amd64' | 'arm32' | 'arm64' | 'unknown';
|
|
2605
2605
|
staticPerformance?: string;
|
|
2606
2606
|
};
|
|
2607
2607
|
/**
|
|
@@ -2649,7 +2649,7 @@ export interface Event {
|
|
|
2649
2649
|
mariQosEnabled: boolean;
|
|
2650
2650
|
mariLiteEnabled?: boolean;
|
|
2651
2651
|
multistreamEnabled: boolean;
|
|
2652
|
-
direction:
|
|
2652
|
+
direction: 'sendrecv' | 'sendonly' | 'recvonly' | 'inactive';
|
|
2653
2653
|
localPort?: number;
|
|
2654
2654
|
peerReflexivePort?: number;
|
|
2655
2655
|
remotePort?: number;
|
|
@@ -2682,7 +2682,7 @@ export interface Event {
|
|
|
2682
2682
|
stunBitrate: number;
|
|
2683
2683
|
dtlsPackets: number;
|
|
2684
2684
|
dtlsBitrate: number;
|
|
2685
|
-
transportType:
|
|
2685
|
+
transportType: 'UDP' | 'TCP' | 'xTLS' | 'TLS';
|
|
2686
2686
|
maxBitrate: number;
|
|
2687
2687
|
availableBitrate: number;
|
|
2688
2688
|
queueDelay: number;
|
|
@@ -2733,10 +2733,10 @@ export interface Event {
|
|
|
2733
2733
|
csrcChanges: number;
|
|
2734
2734
|
};
|
|
2735
2735
|
};
|
|
2736
|
-
backgroundNoiseReductionMode?:
|
|
2737
|
-
backgroundNoiseReductionTalkerMode?:
|
|
2738
|
-
audioTXSPCStatus?:
|
|
2739
|
-
audioTXSPCLevel?:
|
|
2736
|
+
backgroundNoiseReductionMode?: 'AUDIO_BACKGROUND_NOISE_REDUCTION_NONE' | 'AUDIO_BACKGROUND_NOISE_REDUCTION_HIGH_PERFORMANCE' | 'AUDIO_BACKGROUND_NOISE_REDUCTION_LOW_POWER' | 'AUDIO_BACKGROUND_NOISE_REDUCTION_AUTO_HIGH_PERFORMANCE' | 'AUDIO_BACKGROUND_NOISE_REDUCTION_AUTO_LOW_POWER';
|
|
2737
|
+
backgroundNoiseReductionTalkerMode?: 'AUDIO_BACKGROUND_NOISE_REDUCTION_TALKER_NONE' | 'AUDIO_BACKGROUND_NOISE_REDUCTION_CLASSIC_MODE' | 'AUDIO_BACKGROUND_NOISE_REDUCTION_SINGLE_TALKER_MODE' | 'AUDIO_BACKGROUND_NOISE_REDUCTION_MULTI_TALKER_MODE' | 'AUDIO_BACKGROUND_NOISE_REDUCTION_MUSIC_MODE';
|
|
2738
|
+
audioTXSPCStatus?: 'AUDIO_SPC_STATUS_DISABLED' | 'AUDIO_SPC_STATUS_SUSPENDED' | 'AUDIO_SPC_STATUS_ENABLED';
|
|
2739
|
+
audioTXSPCLevel?: 'AUDIO_NONE' | 'AUDIO_LOW' | 'AUDIO_MEDIUM' | 'AUDIO_NORMAL' | 'AUDIO_HIGH' | 'AUDIO_HIGHPLUS' | 'AUDIO_TOP';
|
|
2740
2740
|
/**
|
|
2741
2741
|
* audio encoder engine performance data
|
|
2742
2742
|
*/
|
|
@@ -2901,7 +2901,7 @@ export interface Event {
|
|
|
2901
2901
|
*/
|
|
2902
2902
|
agcType?: number;
|
|
2903
2903
|
};
|
|
2904
|
-
audioCaptureMethod?:
|
|
2904
|
+
audioCaptureMethod?: 'AUDIO_ANDROID_JAVA_METHOD' | 'AUDIO_ANDROID_AAUDIO_METHOD';
|
|
2905
2905
|
}[];
|
|
2906
2906
|
/**
|
|
2907
2907
|
* information about tracked audio levels
|
|
@@ -2950,7 +2950,7 @@ export interface Event {
|
|
|
2950
2950
|
mariQosEnabled: boolean;
|
|
2951
2951
|
mariLiteEnabled?: boolean;
|
|
2952
2952
|
multistreamEnabled: boolean;
|
|
2953
|
-
direction:
|
|
2953
|
+
direction: 'sendrecv' | 'sendonly' | 'recvonly' | 'inactive';
|
|
2954
2954
|
localPort?: number;
|
|
2955
2955
|
peerReflexivePort?: number;
|
|
2956
2956
|
remotePort?: number;
|
|
@@ -2983,7 +2983,7 @@ export interface Event {
|
|
|
2983
2983
|
stunBitrate: number;
|
|
2984
2984
|
dtlsPackets: number;
|
|
2985
2985
|
dtlsBitrate: number;
|
|
2986
|
-
transportType:
|
|
2986
|
+
transportType: 'UDP' | 'TCP' | 'xTLS' | 'TLS';
|
|
2987
2987
|
maxBitrate: number;
|
|
2988
2988
|
availableBitrate: number;
|
|
2989
2989
|
queueDelay: number;
|
|
@@ -3053,7 +3053,7 @@ export interface Event {
|
|
|
3053
3053
|
transmittedKeyFramesSwitchingPoint?: number;
|
|
3054
3054
|
localConfigurationChanges: number;
|
|
3055
3055
|
remoteConfigurationChanges: number;
|
|
3056
|
-
h264CodecProfile:
|
|
3056
|
+
h264CodecProfile: 'BP' | 'CHP';
|
|
3057
3057
|
isAvatar?: boolean;
|
|
3058
3058
|
/**
|
|
3059
3059
|
* video encode quality metrics
|
|
@@ -3075,8 +3075,8 @@ export interface Event {
|
|
|
3075
3075
|
isHardware?: boolean;
|
|
3076
3076
|
};
|
|
3077
3077
|
isHardwareEncoded?: boolean;
|
|
3078
|
-
backgroundAugmentationType?:
|
|
3079
|
-
backgroundAugmentationFrameworkType?:
|
|
3078
|
+
backgroundAugmentationType?: 'VIDEO_BACKGROUND_AUGMENT_NONE' | 'VIDEO_BACKGROUND_AUGMENT_BLUR' | 'VIDEO_BACKGROUND_AUGMENT_REPLACE_IMAGE' | 'VIDEO_BACKGROUND_AUGMENT_REPLACE_VIDEO' | 'VIDEO_BACKGROUND_AUGMENT_BLUR_INHOUSE' | 'VIDEO_BACKGROUND_AUGMENT_REPLACE_IMAGE_INHOUSE' | 'VIDEO_BACKGROUND_AUGMENT_REPLACE_VIDEO_INHOUSE';
|
|
3079
|
+
backgroundAugmentationFrameworkType?: 'VIDEO_VBG_FRAMEWORK_NONE' | 'VIDEO_VBG_FRAMEWORK_COREML' | 'VIDEO_VBG_FRAMEWORK_METAL' | 'VIDEO_VBG_FRAMEWORK_CBASED' | 'VIDEO_VBG_FRAMEWORK_OPENVINO' | 'VIDEO_VBG_FRAMEWORK_COREML_LADON' | 'VIDEO_VBG_FRAMEWORK_METAL_LADON' | 'VIDEO_VBG_FRAMEWORK_CBASED_LADON' | 'VIDEO_VBG_FRAMEWORK_OPENVINO_LADON';
|
|
3080
3080
|
/**
|
|
3081
3081
|
* transmit video pipeline performance metric
|
|
3082
3082
|
*/
|
|
@@ -3095,7 +3095,7 @@ export interface Event {
|
|
|
3095
3095
|
/**
|
|
3096
3096
|
* the method use to capture the screen for screen sharing
|
|
3097
3097
|
*/
|
|
3098
|
-
screenCaptureMode?:
|
|
3098
|
+
screenCaptureMode?: 'Unknown' | 'Default' | 'MAG' | 'DUP' | 'AVF' | 'CGS' | 'GDI' | 'DIRECTX' | 'WINDOW' | 'SCK';
|
|
3099
3099
|
processShareContentDetectMillis?: number;
|
|
3100
3100
|
}[];
|
|
3101
3101
|
}[];
|
|
@@ -3114,7 +3114,7 @@ export interface Event {
|
|
|
3114
3114
|
mariQosEnabled: boolean;
|
|
3115
3115
|
mariLiteEnabled?: boolean;
|
|
3116
3116
|
multistreamEnabled: boolean;
|
|
3117
|
-
direction:
|
|
3117
|
+
direction: 'sendrecv' | 'sendonly' | 'recvonly' | 'inactive';
|
|
3118
3118
|
localPort?: number;
|
|
3119
3119
|
peerReflexivePort?: number;
|
|
3120
3120
|
remotePort?: number;
|
|
@@ -3153,7 +3153,7 @@ export interface Event {
|
|
|
3153
3153
|
stunBitrate: number;
|
|
3154
3154
|
dtlsPackets: number;
|
|
3155
3155
|
dtlsBitrate: number;
|
|
3156
|
-
transportType:
|
|
3156
|
+
transportType: 'UDP' | 'TCP' | 'xTLS' | 'TLS';
|
|
3157
3157
|
maxBitrate: number;
|
|
3158
3158
|
srtpUnprotectErrors: number;
|
|
3159
3159
|
/**
|
|
@@ -3379,7 +3379,7 @@ export interface Event {
|
|
|
3379
3379
|
*/
|
|
3380
3380
|
pesqLQO?: number;
|
|
3381
3381
|
};
|
|
3382
|
-
audioPlaybackMethod?:
|
|
3382
|
+
audioPlaybackMethod?: 'AUDIO_ANDROID_JAVA_METHOD' | 'AUDIO_ANDROID_AAUDIO_METHOD';
|
|
3383
3383
|
/**
|
|
3384
3384
|
* audio received algorithm modules performance data(AGC,NR,MultiChannelPreprocess)
|
|
3385
3385
|
*/
|
|
@@ -3478,7 +3478,7 @@ export interface Event {
|
|
|
3478
3478
|
mariQosEnabled: boolean;
|
|
3479
3479
|
mariLiteEnabled?: boolean;
|
|
3480
3480
|
multistreamEnabled: boolean;
|
|
3481
|
-
direction:
|
|
3481
|
+
direction: 'sendrecv' | 'sendonly' | 'recvonly' | 'inactive';
|
|
3482
3482
|
localPort?: number;
|
|
3483
3483
|
peerReflexivePort?: number;
|
|
3484
3484
|
remotePort?: number;
|
|
@@ -3517,7 +3517,7 @@ export interface Event {
|
|
|
3517
3517
|
stunBitrate: number;
|
|
3518
3518
|
dtlsPackets: number;
|
|
3519
3519
|
dtlsBitrate: number;
|
|
3520
|
-
transportType:
|
|
3520
|
+
transportType: 'UDP' | 'TCP' | 'xTLS' | 'TLS';
|
|
3521
3521
|
maxBitrate: number;
|
|
3522
3522
|
srtpUnprotectErrors: number;
|
|
3523
3523
|
/**
|
|
@@ -3726,7 +3726,7 @@ export interface Event {
|
|
|
3726
3726
|
receivedKeyFramesForRequest?: number;
|
|
3727
3727
|
receivedKeyFramesUnknown?: number;
|
|
3728
3728
|
isActiveSpeaker?: boolean;
|
|
3729
|
-
h264CodecProfile:
|
|
3729
|
+
h264CodecProfile: 'BP' | 'CHP';
|
|
3730
3730
|
isHardwareDecoded?: boolean;
|
|
3731
3731
|
/**
|
|
3732
3732
|
* receive video pipeline performance metric
|
|
@@ -3757,7 +3757,7 @@ export interface Event {
|
|
|
3757
3757
|
mariQosEnabled: boolean;
|
|
3758
3758
|
mariLiteEnabled?: boolean;
|
|
3759
3759
|
multistreamEnabled: boolean;
|
|
3760
|
-
direction:
|
|
3760
|
+
direction: 'sendrecv' | 'sendonly' | 'recvonly' | 'inactive';
|
|
3761
3761
|
localPort?: number;
|
|
3762
3762
|
peerReflexivePort?: number;
|
|
3763
3763
|
remotePort?: number;
|
|
@@ -3790,7 +3790,7 @@ export interface Event {
|
|
|
3790
3790
|
stunBitrate: number;
|
|
3791
3791
|
dtlsPackets: number;
|
|
3792
3792
|
dtlsBitrate: number;
|
|
3793
|
-
transportType:
|
|
3793
|
+
transportType: 'UDP' | 'TCP' | 'xTLS' | 'TLS';
|
|
3794
3794
|
maxBitrate: number;
|
|
3795
3795
|
availableBitrate: number;
|
|
3796
3796
|
queueDelay: number;
|
|
@@ -3864,7 +3864,7 @@ export interface Event {
|
|
|
3864
3864
|
mariQosEnabled: boolean;
|
|
3865
3865
|
mariLiteEnabled?: boolean;
|
|
3866
3866
|
multistreamEnabled: boolean;
|
|
3867
|
-
direction:
|
|
3867
|
+
direction: 'sendrecv' | 'sendonly' | 'recvonly' | 'inactive';
|
|
3868
3868
|
localPort?: number;
|
|
3869
3869
|
peerReflexivePort?: number;
|
|
3870
3870
|
remotePort?: number;
|
|
@@ -3903,7 +3903,7 @@ export interface Event {
|
|
|
3903
3903
|
stunBitrate: number;
|
|
3904
3904
|
dtlsPackets: number;
|
|
3905
3905
|
dtlsBitrate: number;
|
|
3906
|
-
transportType:
|
|
3906
|
+
transportType: 'UDP' | 'TCP' | 'xTLS' | 'TLS';
|
|
3907
3907
|
maxBitrate: number;
|
|
3908
3908
|
srtpUnprotectErrors: number;
|
|
3909
3909
|
/**
|
|
@@ -4112,7 +4112,7 @@ export interface Event {
|
|
|
4112
4112
|
} | {
|
|
4113
4113
|
canProceed: boolean;
|
|
4114
4114
|
state?: string;
|
|
4115
|
-
mediaType?:
|
|
4115
|
+
mediaType?: 'audio' | 'video' | 'share' | 'share_audio' | 'whiteboard' | 'gamestate';
|
|
4116
4116
|
csi?: number;
|
|
4117
4117
|
/**
|
|
4118
4118
|
* media capability for both transmit and receive
|
|
@@ -4142,17 +4142,17 @@ export interface Event {
|
|
|
4142
4142
|
};
|
|
4143
4143
|
};
|
|
4144
4144
|
mediaLines?: {
|
|
4145
|
-
mediaType:
|
|
4145
|
+
mediaType: 'audio' | 'video' | 'share' | 'share_audio' | 'whiteboard' | 'gamestate';
|
|
4146
4146
|
remoteIP?: string;
|
|
4147
4147
|
localIP?: string;
|
|
4148
4148
|
localNetworkPrefix?: string;
|
|
4149
4149
|
localPort?: number;
|
|
4150
4150
|
remotePort?: number;
|
|
4151
|
-
protocol:
|
|
4152
|
-
direction:
|
|
4151
|
+
protocol: 'udp' | 'tcp' | 'xtls' | 'unknown';
|
|
4152
|
+
direction: 'sendrecv' | 'sendonly' | 'recvonly' | 'inactive';
|
|
4153
4153
|
clusterName?: string;
|
|
4154
|
-
status?:
|
|
4155
|
-
failureReason?:
|
|
4154
|
+
status?: 'succeeded' | 'in-progress' | 'failed';
|
|
4155
|
+
failureReason?: 'network' | 'transport' | 'rejected' | 'timeout' | 'notstarted' | 'succeeded';
|
|
4156
4156
|
errorCode?: number;
|
|
4157
4157
|
mediaLineData?: {};
|
|
4158
4158
|
}[];
|
|
@@ -4162,7 +4162,7 @@ export interface Event {
|
|
|
4162
4162
|
clientMediaPreferences?: {
|
|
4163
4163
|
preferTranscoding: boolean;
|
|
4164
4164
|
};
|
|
4165
|
-
pstnAudioType?:
|
|
4165
|
+
pstnAudioType?: 'dial-in' | 'dial-out';
|
|
4166
4166
|
success?: boolean;
|
|
4167
4167
|
isTranscoded?: boolean;
|
|
4168
4168
|
isGatewayed?: boolean;
|
|
@@ -4170,35 +4170,35 @@ export interface Event {
|
|
|
4170
4170
|
/**
|
|
4171
4171
|
* determine how the events are processed as well as how the reports are aggregated and sliced
|
|
4172
4172
|
*/
|
|
4173
|
-
registrationMode?:
|
|
4173
|
+
registrationMode?: 'SIP' | 'Cloud' | 'CloudAware';
|
|
4174
4174
|
/**
|
|
4175
4175
|
* protocols used to help determine how the events are processed as well as how the reports are aggregated and sliced
|
|
4176
4176
|
*/
|
|
4177
|
-
protocol?:
|
|
4177
|
+
protocol?: 'SIP' | 'H323' | 'Locus' | 'WebRTC';
|
|
4178
4178
|
/**
|
|
4179
4179
|
* The underlying service provider of the call.
|
|
4180
4180
|
*/
|
|
4181
|
-
meetingPlatform?:
|
|
4181
|
+
meetingPlatform?: 'MsTeams' | 'GoogleMeet' | 'Zoom' | 'Webex';
|
|
4182
4182
|
labels?: string[];
|
|
4183
|
-
webexServiceType?:
|
|
4183
|
+
webexServiceType?: 'MC' | 'EC' | 'SC' | 'TC' | 'AA' | 'RA' | 'NBR' | 'WRF' | 'HOL';
|
|
4184
4184
|
/**
|
|
4185
4185
|
* this defines the sub service type
|
|
4186
4186
|
*/
|
|
4187
|
-
webexSubServiceType?:
|
|
4188
|
-
ivrDialogType?:
|
|
4189
|
-
ivrDialogResult?:
|
|
4190
|
-
callType?:
|
|
4187
|
+
webexSubServiceType?: 'PMR' | 'Event' | 'Training' | 'ScheduleMeeting' | 'ScheduledMeeting' | 'Webinar' | 'others';
|
|
4188
|
+
ivrDialogType?: 'MEDIA_ON_HOLD' | 'ANNOUNCEMENT' | 'TONE' | 'COLLECT_PIN' | 'PROMPT' | 'MEDIA_SERVICE_AGENT' | 'COLLECT';
|
|
4189
|
+
ivrDialogResult?: 'SUCCESS' | 'FAILURE' | 'HOST_PIN_MATCH' | 'GUEST_PIN_MATCH' | 'PANELIST_PIN_MATCH' | 'NO_MATCH' | 'INVALID_PIN';
|
|
4190
|
+
callType?: 'VIDEO_DIALIN' | 'VIDEO_DIALOUT' | 'CASCADE' | 'HYBRID_CASCADE' | 'PSTN_SIP' | 'PSTN_DIALIN' | 'PSTN_DIALOUT' | 'PSTN_ONLY_DIALIN' | 'PSTN_ONLY_DIALOUT' | 'H323' | 'H323_IP' | 'SIP_ENTERPRISE' | 'SIP_MOBILE' | 'SIP_NATIONAL' | 'SIP_INTERNATIONAL' | 'SIP_EMERGENCY' | 'SIP_OPERATOR' | 'SIP_SHORTCODE' | 'SIP_TOLLFREE' | 'SIP_PREMIUM' | 'SIP_URI' | 'SIP_INBOUND' | 'UNKNOWN' | 'ZTM' | 'SIP_MEETING';
|
|
4191
4191
|
eventData?: {};
|
|
4192
|
-
derivedSipClientType?:
|
|
4192
|
+
derivedSipClientType?: 'SIP_CE_SINGLE_SCREEN' | 'SIP_CE_MULTI_SCREEN' | 'SIP_JABBER' | 'SIP_TIP_SINGLE_SCREEN' | 'SIP_TIP_THREE_SCREEN' | 'SIP_PSTN' | 'SIP_OTHER' | 'SIP_WEBEX_CASCADE' | 'SIP_NONE';
|
|
4193
4193
|
/**
|
|
4194
4194
|
* this defines the major client types
|
|
4195
4195
|
*/
|
|
4196
|
-
derivedClientType?:
|
|
4196
|
+
derivedClientType?: 'MEETING_CENTER' | 'EVENT_CENTER' | 'TRAINING_CENTER' | 'TEAMS_CLIENT' | 'TEAMS_DEVICE' | 'TEAMS_SHARE' | 'SIP' | 'RECORDING' | 'CLOUD_AWARE_SIP' | 'TEAMS_WXC_CLIENT' | 'WXC_CLIENT' | 'WXC_DEVICE' | 'WEBEX_JS_SDK' | 'VOICEA_CLIENT' | 'CISCO_SIP_GW' | 'WEBEX_SDK' | 'CPAAS_THIRD_PARTY_SDK' | 'WXC_THIRD_PARTY';
|
|
4197
4197
|
/**
|
|
4198
4198
|
* this defines the sub types of clients
|
|
4199
4199
|
*/
|
|
4200
|
-
derivedSubClientType?:
|
|
4201
|
-
serverRole?:
|
|
4200
|
+
derivedSubClientType?: 'DESKTOP_APP' | 'DESKTOP_APP_VDI' | 'DEVICE_CURRENT' | 'DEVICE_LEGACY_2020' | 'HVDI_APP' | 'MOBILE_APP' | 'VDI_APP' | 'WEB_APP' | 'MOBILE_NETWORK' | 'HOLOGRAM_HEADSET_APP';
|
|
4201
|
+
serverRole?: 'CONFERENCE' | 'TRANSCODER' | 'WHITEBOARD_INJECTOR' | 'MS_TEAMS_CONFERENCE' | 'RECORDING' | 'GATEWAY' | 'GATEWAY_CLIENT_SIDE' | 'UNKNOWN' | 'HOLOGRAM_RENDER';
|
|
4202
4202
|
reconnect?: boolean;
|
|
4203
4203
|
retryCount?: number;
|
|
4204
4204
|
meetSimple?: boolean;
|
|
@@ -4206,15 +4206,15 @@ export interface Event {
|
|
|
4206
4206
|
* represents media quality status report such as no media or drop out
|
|
4207
4207
|
*/
|
|
4208
4208
|
mediaStatus?: {
|
|
4209
|
-
mediaType?:
|
|
4209
|
+
mediaType?: 'audio' | 'video' | 'share' | 'share_audio' | 'whiteboard';
|
|
4210
4210
|
mediaSuccess?: boolean;
|
|
4211
|
-
shareType?:
|
|
4211
|
+
shareType?: 'cb-normal-share' | 'ce-airplay-share' | 'ce-direct-share' | 'ce-gui-loopback-share' | 'ce-input-source-share' | 'ce-input-source-share-hdmi' | 'ce-input-source-share-usbc' | 'ce-jpg-share' | 'ce-miracast-share' | 'mcs-normal-share' | 'mcs-normal-audio-share' | 'mcs-hfps-share' | 'mcs-hfps-audio-share';
|
|
4212
4212
|
isTransmitter?: boolean;
|
|
4213
|
-
audioJoinType?:
|
|
4213
|
+
audioJoinType?: 'phone-call-in' | 'phone-call-back' | 'voip' | 'device-call-back' | 'never-join-audio' | 'tried-but-never-join';
|
|
4214
4214
|
/**
|
|
4215
4215
|
* indicates transport type used
|
|
4216
4216
|
*/
|
|
4217
|
-
transportType?:
|
|
4217
|
+
transportType?: 'UDP' | 'TCP' | 'xTLS' | 'TLS';
|
|
4218
4218
|
additionalData?: {};
|
|
4219
4219
|
};
|
|
4220
4220
|
shareInstanceId?: string;
|
|
@@ -4225,7 +4225,7 @@ export interface Event {
|
|
|
4225
4225
|
audioSetupDelay?: {
|
|
4226
4226
|
floorReqSentReceived?: number;
|
|
4227
4227
|
floorRespSentReceived?: number;
|
|
4228
|
-
mediaType?:
|
|
4228
|
+
mediaType?: 'audio' | 'video' | 'share' | 'share_audio' | 'whiteboard';
|
|
4229
4229
|
txReqFloorGranted?: number;
|
|
4230
4230
|
txSessionCreateConfirm?: number;
|
|
4231
4231
|
txApeEnrollConfirm?: number;
|
|
@@ -4265,7 +4265,7 @@ export interface Event {
|
|
|
4265
4265
|
videoSetupDelay?: {
|
|
4266
4266
|
floorReqSentReceived?: number;
|
|
4267
4267
|
floorRespSentReceived?: number;
|
|
4268
|
-
mediaType?:
|
|
4268
|
+
mediaType?: 'audio' | 'video' | 'share' | 'share_audio' | 'whiteboard';
|
|
4269
4269
|
txReqFloorGranted?: number;
|
|
4270
4270
|
txSessionCreateConfirm?: number;
|
|
4271
4271
|
txApeEnrollConfirm?: number;
|
|
@@ -4305,7 +4305,7 @@ export interface Event {
|
|
|
4305
4305
|
shareSetupDelay?: {
|
|
4306
4306
|
floorReqSentReceived?: number;
|
|
4307
4307
|
floorRespSentReceived?: number;
|
|
4308
|
-
mediaType?:
|
|
4308
|
+
mediaType?: 'audio' | 'video' | 'share' | 'share_audio' | 'whiteboard';
|
|
4309
4309
|
txReqFloorGranted?: number;
|
|
4310
4310
|
txSessionCreateConfirm?: number;
|
|
4311
4311
|
txApeEnrollConfirm?: number;
|
|
@@ -4345,7 +4345,7 @@ export interface Event {
|
|
|
4345
4345
|
shareAudioSetupDelay?: {
|
|
4346
4346
|
floorReqSentReceived?: number;
|
|
4347
4347
|
floorRespSentReceived?: number;
|
|
4348
|
-
mediaType?:
|
|
4348
|
+
mediaType?: 'audio' | 'video' | 'share' | 'share_audio' | 'whiteboard';
|
|
4349
4349
|
txReqFloorGranted?: number;
|
|
4350
4350
|
txSessionCreateConfirm?: number;
|
|
4351
4351
|
txApeEnrollConfirm?: number;
|
|
@@ -4385,7 +4385,7 @@ export interface Event {
|
|
|
4385
4385
|
whiteboardSetupDelay?: {
|
|
4386
4386
|
floorReqSentReceived?: number;
|
|
4387
4387
|
floorRespSentReceived?: number;
|
|
4388
|
-
mediaType?:
|
|
4388
|
+
mediaType?: 'audio' | 'video' | 'share' | 'share_audio' | 'whiteboard';
|
|
4389
4389
|
txReqFloorGranted?: number;
|
|
4390
4390
|
txSessionCreateConfirm?: number;
|
|
4391
4391
|
txApeEnrollConfirm?: number;
|
|
@@ -4421,7 +4421,7 @@ export interface Event {
|
|
|
4421
4421
|
};
|
|
4422
4422
|
isFocus?: boolean;
|
|
4423
4423
|
processingDelay?: number;
|
|
4424
|
-
shareType?:
|
|
4424
|
+
shareType?: 'cb-normal-share' | 'ce-airplay-share' | 'ce-direct-share' | 'ce-gui-loopback-share' | 'ce-input-source-share' | 'ce-input-source-share-hdmi' | 'ce-input-source-share-usbc' | 'ce-jpg-share' | 'ce-miracast-share' | 'mcs-normal-share' | 'mcs-normal-audio-share' | 'mcs-hfps-share' | 'mcs-hfps-audio-share';
|
|
4425
4425
|
isShareBeingTakenOver?: boolean;
|
|
4426
4426
|
floorBeneficiaryUpdated?: boolean;
|
|
4427
4427
|
meetingJoinedTime?: string;
|
|
@@ -4433,9 +4433,9 @@ export interface Event {
|
|
|
4433
4433
|
useKeyTime?: number;
|
|
4434
4434
|
cacheKeyTime?: number;
|
|
4435
4435
|
}[];
|
|
4436
|
-
e2eeVersion?:
|
|
4436
|
+
e2eeVersion?: 'E2EEV1' | 'E2EEV2' | 'E2EEV3';
|
|
4437
4437
|
isConvergedArchitectureEnabled?: boolean;
|
|
4438
|
-
callingServiceType?:
|
|
4438
|
+
callingServiceType?: 'CUCM' | 'WEBEXCALLING' | 'BROADWORKS' | 'LOCUS';
|
|
4439
4439
|
inLobby?: boolean;
|
|
4440
4440
|
isVIPMeeting?: boolean;
|
|
4441
4441
|
webexAppEntrypoint?: string;
|
|
@@ -4456,10 +4456,10 @@ export interface Event {
|
|
|
4456
4456
|
* Details associated with a breakout move
|
|
4457
4457
|
*/
|
|
4458
4458
|
breakout?: {
|
|
4459
|
-
moveType?:
|
|
4460
|
-
trigger?:
|
|
4461
|
-
startState?:
|
|
4462
|
-
endState?:
|
|
4459
|
+
moveType?: 'between_breakout' | 'to_breakout' | 'to_main';
|
|
4460
|
+
trigger?: 'assignment_changed' | 'client_initiated' | 'session_ended' | 'session_started';
|
|
4461
|
+
startState?: 'joined' | 'lobby';
|
|
4462
|
+
endState?: 'joined' | 'lobby';
|
|
4463
4463
|
};
|
|
4464
4464
|
/**
|
|
4465
4465
|
* Latency values associated with breakout session
|
|
@@ -4475,21 +4475,21 @@ export interface Event {
|
|
|
4475
4475
|
* two-way whiteboard related info
|
|
4476
4476
|
*/
|
|
4477
4477
|
whiteboard?: {
|
|
4478
|
-
action?:
|
|
4479
|
-
type?:
|
|
4480
|
-
capability?:
|
|
4481
|
-
granted?:
|
|
4478
|
+
action?: 'open' | 'create';
|
|
4479
|
+
type?: 'whiteboard' | 'annotation';
|
|
4480
|
+
capability?: 'one_way' | 'two_way';
|
|
4481
|
+
granted?: 'one_way' | 'two_way';
|
|
4482
4482
|
};
|
|
4483
4483
|
/**
|
|
4484
4484
|
* ROAP message details
|
|
4485
4485
|
*/
|
|
4486
4486
|
roap?: {
|
|
4487
|
-
type?:
|
|
4488
|
-
messageType?:
|
|
4487
|
+
type?: 'ANSWER' | 'ERROR' | 'OFFER' | 'OFFER_REQUEST' | 'OFFER_RESPONSE' | 'OK' | 'TURN_DISCOVERY_REQUEST' | 'TURN_DISCOVERY_RESPONSE';
|
|
4488
|
+
messageType?: 'ANSWER' | 'ERROR' | 'OFFER' | 'OFFER_REQUEST' | 'OFFER_RESPONSE' | 'OK' | 'TURN_DISCOVERY_REQUEST' | 'TURN_DISCOVERY_RESPONSE';
|
|
4489
4489
|
error?: string;
|
|
4490
4490
|
duration?: number;
|
|
4491
4491
|
};
|
|
4492
|
-
name:
|
|
4492
|
+
name: 'client.feature.audio.noise.removal' | 'client.feature.embedded-object-info' | 'client.feature.gesture.recognition' | 'client.feature.meeting.breakout-session.action' | 'client.feature.meeting.breakout-session.summary' | 'client.feature.meeting.download.summary' | 'client.feature.meeting.people-insights.check.response' | 'client.feature.meeting.people-insights.query.response' | 'client.feature.meeting.problem-report.submit' | 'client.feature.meeting.summary' | 'client.feature.meeting.teams.launch' | 'client.feature.meeting.user-action' | 'client.feature.mta.launched' | 'client.feature.report' | 'client.feature.vdi.collect.thinclient.log';
|
|
4493
4493
|
/**
|
|
4494
4494
|
* Base type for the various identifiers used to connect the dots.
|
|
4495
4495
|
* In general, these should be populated whenever possible. Subtypes may make a particular key required.
|
|
@@ -4563,10 +4563,10 @@ export interface Event {
|
|
|
4563
4563
|
webexWebDomain?: string;
|
|
4564
4564
|
correlationId: string;
|
|
4565
4565
|
};
|
|
4566
|
-
trigger?:
|
|
4566
|
+
trigger?: 'user-interaction';
|
|
4567
4567
|
errors?: {
|
|
4568
4568
|
fatal: boolean;
|
|
4569
|
-
category:
|
|
4569
|
+
category: 'signaling' | 'media' | 'other' | 'expected';
|
|
4570
4570
|
errorDescription?: string;
|
|
4571
4571
|
errorCode?: number;
|
|
4572
4572
|
errorCodeStr?: string;
|
|
@@ -4574,17 +4574,17 @@ export interface Event {
|
|
|
4574
4574
|
errorData?: {};
|
|
4575
4575
|
shownToUser: boolean;
|
|
4576
4576
|
serviceErrorCode?: number;
|
|
4577
|
-
name:
|
|
4577
|
+
name: 'media-engine' | 'ice.failed' | 'locus.response' | 'locus.leave' | 'client.leave' | 'media-device' | 'media-sca' | 'other';
|
|
4578
4578
|
}[];
|
|
4579
|
-
pairingState?:
|
|
4580
|
-
userType?:
|
|
4581
|
-
updateType?:
|
|
4579
|
+
pairingState?: 'paired' | 'observing' | 'challenging';
|
|
4580
|
+
userType?: 'host' | 'attendee' | 'cohost' | 'panelist';
|
|
4581
|
+
updateType?: 'new-user' | 'update-user' | 'return-user';
|
|
4582
4582
|
isFirstTimeUser?: boolean;
|
|
4583
4583
|
/**
|
|
4584
4584
|
* Details of server environment
|
|
4585
4585
|
*/
|
|
4586
4586
|
serverInfo?: {
|
|
4587
|
-
serverType:
|
|
4587
|
+
serverType: 'CB' | 'CMS' | 'HESIOD' | 'LINUS' | 'MCC' | 'MCS' | 'MES' | 'MJS' | 'MRS' | 'MYGDONUS' | 'MZM' | 'TERMINUS' | 'TPGW' | 'TA' | 'HOMER' | 'SUPERHOMER' | 'U2C' | 'WCA' | 'MSE' | 'UNKNOWN';
|
|
4588
4588
|
serverAddress?: string;
|
|
4589
4589
|
};
|
|
4590
4590
|
/**
|
|
@@ -4603,8 +4603,8 @@ export interface Event {
|
|
|
4603
4603
|
isBoEnabled: boolean;
|
|
4604
4604
|
isPreAssigned: boolean;
|
|
4605
4605
|
boStartedTimers: number;
|
|
4606
|
-
createType:
|
|
4607
|
-
enableType:
|
|
4606
|
+
createType: 'pre-meeting' | 'in-meeting';
|
|
4607
|
+
enableType: 'pre-meeting' | 'in-meeting';
|
|
4608
4608
|
};
|
|
4609
4609
|
/**
|
|
4610
4610
|
* Details of meeting summary information
|
|
@@ -4649,7 +4649,7 @@ export interface Event {
|
|
|
4649
4649
|
surveyLocalClientVersion?: string;
|
|
4650
4650
|
surveyDate?: string;
|
|
4651
4651
|
};
|
|
4652
|
-
languageType?:
|
|
4652
|
+
languageType?: 'lan_af' | 'lan_sq' | 'lan_am' | 'lan_ar' | 'lan_hy' | 'lan_az' | 'lan_eu' | 'lan_be' | 'lan_bn' | 'lan_bs' | 'lan_bg' | 'lan_ca' | 'lan_ceb' | 'lan_zh' | 'lan_zh-TW' | 'lan_co' | 'lan_hr' | 'lan_cs' | 'lan_da' | 'lan_nl' | 'lan_en' | 'lan_en-GB' | 'lan_eo' | 'lan_et' | 'lan_fi' | 'lan_fr' | 'lan_fr-CA' | 'lan_fy' | 'lan_gl' | 'lan_ka' | 'lan_de' | 'lan_el' | 'lan_gu' | 'lan_ht' | 'lan_ha' | 'lan_haw' | 'lan_he' | 'lan_hi' | 'lan_hmn' | 'lan_hu' | 'lan_is' | 'lan_ig' | 'lan_id' | 'lan_ga' | 'lan_it' | 'lan_ja' | 'lan_jv' | 'lan_kn' | 'lan_kk' | 'lan_km' | 'lan_rw' | 'lan_ko' | 'lan_ku' | 'lan_ky' | 'lan_lo' | 'lan_la' | 'lan_lv' | 'lan_lt' | 'lan_lb' | 'lan_mk' | 'lan_mg' | 'lan_ms' | 'lan_ml' | 'lan_mt' | 'lan_mi' | 'lan_mr' | 'lan_mn' | 'lan_my' | 'lan_ne' | 'lan_no' | 'lan_ny' | 'lan_or' | 'lan_ps' | 'lan_fa' | 'lan_pl' | 'lan_pt' | 'lan_pa' | 'lan_ro' | 'lan_ru' | 'lan_sm' | 'lan_gd' | 'lan_sr' | 'lan_st' | 'lan_sn' | 'lan_sd' | 'lan_si' | 'lan_sk' | 'lan_sl' | 'lan_so' | 'lan_es' | 'lan_es-ES' | 'lan_su' | 'lan_sw' | 'lan_sv' | 'lan_tl' | 'lan_tg' | 'lan_ta' | 'lan_tt' | 'lan_te' | 'lan_th' | 'lan_tr' | 'lan_tk' | 'lan_uk' | 'lan_ur' | 'lan_ug' | 'lan_uz' | 'lan_vi' | 'lan_cy' | 'lan_xh' | 'lan_yi' | 'lan_yo' | 'lan_zu';
|
|
4653
4653
|
};
|
|
4654
4654
|
/**
|
|
4655
4655
|
* Audio background noise removal
|
|
@@ -4659,13 +4659,13 @@ export interface Event {
|
|
|
4659
4659
|
* background noise removal action data
|
|
4660
4660
|
*/
|
|
4661
4661
|
actionData?: {
|
|
4662
|
-
bnrActionType:
|
|
4662
|
+
bnrActionType: 'turn-on-bnr' | 'turn-off-bnr';
|
|
4663
4663
|
};
|
|
4664
4664
|
/**
|
|
4665
4665
|
* background noise removal event data
|
|
4666
4666
|
*/
|
|
4667
4667
|
eventData?: {
|
|
4668
|
-
bnrEventType:
|
|
4668
|
+
bnrEventType: 'bnr-on' | 'bnr-off';
|
|
4669
4669
|
};
|
|
4670
4670
|
};
|
|
4671
4671
|
/**
|
|
@@ -4673,7 +4673,7 @@ export interface Event {
|
|
|
4673
4673
|
*/
|
|
4674
4674
|
gestureRecognition?: {
|
|
4675
4675
|
supportedMachine?: boolean;
|
|
4676
|
-
gestureType?:
|
|
4676
|
+
gestureType?: 'clap' | 'none' | 'raiseHand' | 'thumpUp' | 'thumbDown';
|
|
4677
4677
|
duration?: number;
|
|
4678
4678
|
};
|
|
4679
4679
|
/**
|
|
@@ -4684,14 +4684,14 @@ export interface Event {
|
|
|
4684
4684
|
* data define for background noise removal action
|
|
4685
4685
|
*/
|
|
4686
4686
|
actionData?: {
|
|
4687
|
-
pmhActionType:
|
|
4687
|
+
pmhActionType: 'share' | 'view-details' | 'close';
|
|
4688
4688
|
pmhActionResult?: string;
|
|
4689
4689
|
};
|
|
4690
4690
|
/**
|
|
4691
4691
|
* data define for background noise removal event
|
|
4692
4692
|
*/
|
|
4693
4693
|
eventData?: {
|
|
4694
|
-
pmhEventType:
|
|
4694
|
+
pmhEventType: 'used' | 'not-show-again';
|
|
4695
4695
|
};
|
|
4696
4696
|
};
|
|
4697
4697
|
/**
|
|
@@ -4700,7 +4700,7 @@ export interface Event {
|
|
|
4700
4700
|
problemReportInfo?: {
|
|
4701
4701
|
logId: string;
|
|
4702
4702
|
fileSize: number;
|
|
4703
|
-
uploadStage:
|
|
4703
|
+
uploadStage: 'connect' | 'upload';
|
|
4704
4704
|
collectWMETime?: number;
|
|
4705
4705
|
collectTopicTime?: number;
|
|
4706
4706
|
collectSystemInfoTime?: number;
|
|
@@ -4717,10 +4717,10 @@ export interface Event {
|
|
|
4717
4717
|
* Details of breakout session information
|
|
4718
4718
|
*/
|
|
4719
4719
|
breakoutSessionInfo?: {
|
|
4720
|
-
breakoutSessionAction:
|
|
4721
|
-
breakoutSessionJoinType?:
|
|
4722
|
-
breakoutSessionActionClickFrom?:
|
|
4723
|
-
broadcastSendType?:
|
|
4720
|
+
breakoutSessionAction: 'add' | 'assign' | 'ask-for-help' | 'breakout-session-open' | 'breakout-session-close' | 'breakout-session-mute-all' | 'breakout-session-unmute-all' | 'broadcast-open' | 'broadcast-send' | 'cancel-automatic-close' | 'create' | 'delete' | 'disable' | 'dynamic-assign' | 'dynamic-exchange' | 'end' | 'enable' | 'exchange' | 'join' | 'leave' | 'lock-all-sessions' | 'lock-this-sessions' | 'moveto' | 'mute-all' | 'mute-all-set' | 'recreate' | 'remove' | 'rename' | 'search' | 'select-all' | 'show-all-sessions' | 'start' | 'unmute-all' | 'unlock-all-sessions' | 'unlock-this-sessions' | 'allow-leave-session' | 'allow-join-session-later' | 'auto-end-sessions' | 'time-before-leave-session';
|
|
4721
|
+
breakoutSessionJoinType?: 'any-one-can-join' | 'auto' | 'manual' | 'preassign-rest';
|
|
4722
|
+
breakoutSessionActionClickFrom?: 'actionbar' | 'assign-dialog' | 'auto' | 'breakout-session-list' | 'contextmenu' | 'menu' | 'plist' | 'popup-dialog';
|
|
4723
|
+
broadcastSendType?: 'all-sessions-all-participants' | 'all-sessions-all-cohost-and-presenters' | 'one-session-all-participants' | 'one-session-one-participant';
|
|
4724
4724
|
breakoutSessionDialogOpenTime?: number;
|
|
4725
4725
|
breakoutSessionDialogAssignTime?: number;
|
|
4726
4726
|
};
|
|
@@ -4728,7 +4728,7 @@ export interface Event {
|
|
|
4728
4728
|
* call embedded browser object result, if failed, will populate error at Error item
|
|
4729
4729
|
*/
|
|
4730
4730
|
embeddedBrowserObject?: {
|
|
4731
|
-
browserType:
|
|
4731
|
+
browserType: 'IE' | 'WebView2';
|
|
4732
4732
|
version?: string;
|
|
4733
4733
|
callFrom?: string;
|
|
4734
4734
|
};
|
|
@@ -4740,38 +4740,38 @@ export interface Event {
|
|
|
4740
4740
|
* data define for TeamsLaunchWebexMeeting event
|
|
4741
4741
|
*/
|
|
4742
4742
|
eventData?: {
|
|
4743
|
-
tlmEevntType:
|
|
4743
|
+
tlmEevntType: 'sync-preference' | 'sip-call-launch' | 'skip-interstitial' | 'ipc-ready' | 'ipc-failed';
|
|
4744
4744
|
ipcConnectTime?: number;
|
|
4745
4745
|
};
|
|
4746
4746
|
/**
|
|
4747
4747
|
* data define for TeamsLaunchWebexMeeting action
|
|
4748
4748
|
*/
|
|
4749
4749
|
actionData?: {
|
|
4750
|
-
tlmActionType:
|
|
4750
|
+
tlmActionType: 'change-audio' | 'change-video';
|
|
4751
4751
|
};
|
|
4752
4752
|
/**
|
|
4753
4753
|
* data define for TeamsLaunchWebexMeeting data from
|
|
4754
4754
|
*/
|
|
4755
4755
|
dataFrom?: {
|
|
4756
|
-
tlmFromType:
|
|
4756
|
+
tlmFromType: 'webex-meeting' | 'webex-teams';
|
|
4757
4757
|
};
|
|
4758
4758
|
};
|
|
4759
4759
|
/**
|
|
4760
4760
|
* Details of language action
|
|
4761
4761
|
*/
|
|
4762
4762
|
languageActionInfo?: {
|
|
4763
|
-
languageAction:
|
|
4764
|
-
fromLanguage?:
|
|
4765
|
-
toLanguage?:
|
|
4763
|
+
languageAction: 'openLanguageDialog' | 'subscribeTransLanguage' | 'unsubscribeTransLanguage' | 'changeSpeakLanguage' | 'transcriptTurnOnWebexAssistantDialog' | 'transcriptTurnOffWebexAssistantDialog' | 'transcriptTurnOnWebexAssistantMenu' | 'transcriptTurn0ffWebexAssistantMenu' | 'transcriptViewHighlightPanel' | 'transcriptViewHighlightPanelViaCloseCaption' | 'transcriptViewHighlightPanelViaPanelOption' | 'transcriptViewHighlightPanelViaWebexAssistant' | 'transcriptEnableCloseCaptionDialog' | 'transcriptDisableCloseCaptionDialog' | 'transcriptDisableCloseCaptionDialogForActiveCCOpen' | 'transcriptDisableCloseCaptionDialogViaCCButton' | 'transcriptDisableCloseCaptionDialogViaCCDialog' | 'transcriptEnableCloseCaptionMenu' | 'transcriptDisableCloseCaptionMenu' | 'transcriptTabToCaptions' | 'transcriptTabToHighlights' | 'transcriptCreateHighlight' | 'transcriptDeleteHighlightInHighlight' | 'transcriptDeleteHighlightInCaptions' | 'transcriptChangeFontSize' | 'transcriptBackToDefaultPosition' | 'transcriptChangeModeToDark' | 'transcriptChangeModeToLight';
|
|
4764
|
+
fromLanguage?: 'lan_af' | 'lan_sq' | 'lan_am' | 'lan_ar' | 'lan_hy' | 'lan_az' | 'lan_eu' | 'lan_be' | 'lan_bn' | 'lan_bs' | 'lan_bg' | 'lan_ca' | 'lan_ceb' | 'lan_zh' | 'lan_zh-TW' | 'lan_co' | 'lan_hr' | 'lan_cs' | 'lan_da' | 'lan_nl' | 'lan_en' | 'lan_en-GB' | 'lan_eo' | 'lan_et' | 'lan_fi' | 'lan_fr' | 'lan_fr-CA' | 'lan_fy' | 'lan_gl' | 'lan_ka' | 'lan_de' | 'lan_el' | 'lan_gu' | 'lan_ht' | 'lan_ha' | 'lan_haw' | 'lan_he' | 'lan_hi' | 'lan_hmn' | 'lan_hu' | 'lan_is' | 'lan_ig' | 'lan_id' | 'lan_ga' | 'lan_it' | 'lan_ja' | 'lan_jv' | 'lan_kn' | 'lan_kk' | 'lan_km' | 'lan_rw' | 'lan_ko' | 'lan_ku' | 'lan_ky' | 'lan_lo' | 'lan_la' | 'lan_lv' | 'lan_lt' | 'lan_lb' | 'lan_mk' | 'lan_mg' | 'lan_ms' | 'lan_ml' | 'lan_mt' | 'lan_mi' | 'lan_mr' | 'lan_mn' | 'lan_my' | 'lan_ne' | 'lan_no' | 'lan_ny' | 'lan_or' | 'lan_ps' | 'lan_fa' | 'lan_pl' | 'lan_pt' | 'lan_pa' | 'lan_ro' | 'lan_ru' | 'lan_sm' | 'lan_gd' | 'lan_sr' | 'lan_st' | 'lan_sn' | 'lan_sd' | 'lan_si' | 'lan_sk' | 'lan_sl' | 'lan_so' | 'lan_es' | 'lan_es-ES' | 'lan_su' | 'lan_sw' | 'lan_sv' | 'lan_tl' | 'lan_tg' | 'lan_ta' | 'lan_tt' | 'lan_te' | 'lan_th' | 'lan_tr' | 'lan_tk' | 'lan_uk' | 'lan_ur' | 'lan_ug' | 'lan_uz' | 'lan_vi' | 'lan_cy' | 'lan_xh' | 'lan_yi' | 'lan_yo' | 'lan_zu';
|
|
4765
|
+
toLanguage?: 'lan_af' | 'lan_sq' | 'lan_am' | 'lan_ar' | 'lan_hy' | 'lan_az' | 'lan_eu' | 'lan_be' | 'lan_bn' | 'lan_bs' | 'lan_bg' | 'lan_ca' | 'lan_ceb' | 'lan_zh' | 'lan_zh-TW' | 'lan_co' | 'lan_hr' | 'lan_cs' | 'lan_da' | 'lan_nl' | 'lan_en' | 'lan_en-GB' | 'lan_eo' | 'lan_et' | 'lan_fi' | 'lan_fr' | 'lan_fr-CA' | 'lan_fy' | 'lan_gl' | 'lan_ka' | 'lan_de' | 'lan_el' | 'lan_gu' | 'lan_ht' | 'lan_ha' | 'lan_haw' | 'lan_he' | 'lan_hi' | 'lan_hmn' | 'lan_hu' | 'lan_is' | 'lan_ig' | 'lan_id' | 'lan_ga' | 'lan_it' | 'lan_ja' | 'lan_jv' | 'lan_kn' | 'lan_kk' | 'lan_km' | 'lan_rw' | 'lan_ko' | 'lan_ku' | 'lan_ky' | 'lan_lo' | 'lan_la' | 'lan_lv' | 'lan_lt' | 'lan_lb' | 'lan_mk' | 'lan_mg' | 'lan_ms' | 'lan_ml' | 'lan_mt' | 'lan_mi' | 'lan_mr' | 'lan_mn' | 'lan_my' | 'lan_ne' | 'lan_no' | 'lan_ny' | 'lan_or' | 'lan_ps' | 'lan_fa' | 'lan_pl' | 'lan_pt' | 'lan_pa' | 'lan_ro' | 'lan_ru' | 'lan_sm' | 'lan_gd' | 'lan_sr' | 'lan_st' | 'lan_sn' | 'lan_sd' | 'lan_si' | 'lan_sk' | 'lan_sl' | 'lan_so' | 'lan_es' | 'lan_es-ES' | 'lan_su' | 'lan_sw' | 'lan_sv' | 'lan_tl' | 'lan_tg' | 'lan_ta' | 'lan_tt' | 'lan_te' | 'lan_th' | 'lan_tr' | 'lan_tk' | 'lan_uk' | 'lan_ur' | 'lan_ug' | 'lan_uz' | 'lan_vi' | 'lan_cy' | 'lan_xh' | 'lan_yi' | 'lan_yo' | 'lan_zu';
|
|
4766
4766
|
};
|
|
4767
4767
|
/**
|
|
4768
4768
|
* Details of video action
|
|
4769
4769
|
*/
|
|
4770
4770
|
videoActionInfo?: {
|
|
4771
|
-
videoAction:
|
|
4772
|
-
fromLayoutType?:
|
|
4773
|
-
toLayoutType?:
|
|
4774
|
-
zoomLayoutType?:
|
|
4771
|
+
videoAction: 'switchLayout' | 'switchPage' | 'switchActiveUser' | 'zoomIn' | 'zoomOut' | 'pinVideoToStage' | 'unpinVideoToStage' | 'syncMyStageForAll' | 'desyncMyStageForAll' | 'showParticipantWithoutVideo' | 'hideParticipantWithoutVideo' | 'showActiveVideoInStage' | 'hideActiveVideoInStage' | 'showActiveVideoWithShareContent' | 'hideActiveVideoWithShareContent' | 'showVideoOnTP' | 'showVideoOnComputer' | 'EnterFullScreen' | 'ExitFullScreen' | 'EnterFullScreenWithShare' | 'ExitFullScreenWithShare' | 'hideFilmStrip' | 'showFilmStrip';
|
|
4772
|
+
fromLayoutType?: 'stack' | 'stackWithShare' | 'sideBySide' | 'sideBySideWithShare' | 'grid' | 'floatingActive' | 'floatingThumbnail' | 'floatingGrid' | 'overlay' | 'focus' | 'prominent' | 'focusWithShare' | 'prominentWithShare' | 'equal' | 'equalWithShare';
|
|
4773
|
+
toLayoutType?: 'stack' | 'stackWithShare' | 'sideBySide' | 'sideBySideWithShare' | 'grid' | 'floatingActive' | 'floatingThumbnail' | 'floatingGrid' | 'overlay' | 'focus' | 'prominent' | 'focusWithShare' | 'prominentWithShare' | 'equal' | 'equalWithShare';
|
|
4774
|
+
zoomLayoutType?: 'stack' | 'stackWithShare' | 'sideBySide' | 'sideBySideWithShare' | 'grid' | 'floatingActive' | 'floatingThumbnail' | 'floatingGrid' | 'overlay' | 'focus' | 'prominent' | 'focusWithShare' | 'prominentWithShare' | 'equal' | 'equalWithShare';
|
|
4775
4775
|
duration?: number;
|
|
4776
4776
|
myVideoCSI?: number;
|
|
4777
4777
|
myNodeID?: number;
|
|
@@ -4812,7 +4812,7 @@ export interface Event {
|
|
|
4812
4812
|
clientDownloadTime?: number;
|
|
4813
4813
|
clientDecompressTime?: number;
|
|
4814
4814
|
CDNEnabled?: boolean;
|
|
4815
|
-
updateFlag?:
|
|
4815
|
+
updateFlag?: 'preMeeting' | 'inMeeting' | 'postMeeting';
|
|
4816
4816
|
epSP?: boolean;
|
|
4817
4817
|
isEPUpdate?: boolean;
|
|
4818
4818
|
spDifferent?: number;
|
|
@@ -4845,7 +4845,7 @@ export interface Event {
|
|
|
4845
4845
|
* Information about the receiver of the event
|
|
4846
4846
|
*/
|
|
4847
4847
|
destination?: {
|
|
4848
|
-
nodeType:
|
|
4848
|
+
nodeType: 'antares' | 'beech' | 'breakout' | 'cb' | 'cloudproxy' | 'edonus' | 'endpoint' | 'givr' | 'hecate' | 'hedge' | 'hesiod' | 'homer' | 'superhomer' | 'l2sip' | 'linus' | 'locus' | 'mcc' | 'mcs' | 'mercury' | 'mes' | 'mjs' | 'mmp' | 'mygdon' | 'orpheus' | 'page' | 'poros' | 'rhesos' | 'terminus' | 'tpgw' | 'ucc' | 'wdm' | 'webexivr';
|
|
4849
4849
|
uri?: string;
|
|
4850
4850
|
};
|
|
4851
4851
|
}
|