@webex/internal-plugin-metrics 3.0.0-beta.19 → 3.0.0-beta.190
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 +134 -0
- package/dist/call-diagnostic/call-diagnostic-metrics-batcher.js.map +1 -0
- package/dist/call-diagnostic/call-diagnostic-metrics-latencies.js +451 -0
- package/dist/call-diagnostic/call-diagnostic-metrics-latencies.js.map +1 -0
- package/dist/call-diagnostic/call-diagnostic-metrics.js +511 -0
- package/dist/call-diagnostic/call-diagnostic-metrics.js.map +1 -0
- package/dist/call-diagnostic/call-diagnostic-metrics.util.js +106 -0
- package/dist/call-diagnostic/call-diagnostic-metrics.util.js.map +1 -0
- package/dist/call-diagnostic/config.js +461 -0
- package/dist/call-diagnostic/config.js.map +1 -0
- package/dist/call-diagnostic/generated-types-temp/ClientEvent.js +7 -0
- package/dist/call-diagnostic/generated-types-temp/ClientEvent.js.map +1 -0
- package/dist/call-diagnostic/generated-types-temp/Event.js +7 -0
- package/dist/call-diagnostic/generated-types-temp/Event.js.map +1 -0
- package/dist/call-diagnostic/generated-types-temp/MediaQualityEvent.js +7 -0
- package/dist/call-diagnostic/generated-types-temp/MediaQualityEvent.js.map +1 -0
- package/dist/config.js +20 -1
- package/dist/config.js.map +1 -1
- package/dist/index.js +25 -1
- package/dist/index.js.map +1 -1
- package/dist/metrics.js +30 -30
- package/dist/metrics.js.map +1 -1
- package/dist/metrics.types.js +7 -0
- package/dist/metrics.types.js.map +1 -0
- package/dist/new-metrics.js +185 -0
- package/dist/new-metrics.js.map +1 -0
- package/dist/types/batcher.d.ts +2 -0
- package/dist/types/call-diagnostic/call-diagnostic-metrics-batcher.d.ts +2 -0
- package/dist/types/call-diagnostic/call-diagnostic-metrics-latencies.d.ts +189 -0
- package/dist/types/call-diagnostic/call-diagnostic-metrics.d.ts +324 -0
- package/dist/types/call-diagnostic/call-diagnostic-metrics.util.d.ts +31 -0
- package/dist/types/call-diagnostic/config.d.ts +57 -0
- package/dist/types/call-diagnostic/generated-types-temp/ClientEvent.d.ts +1112 -0
- package/dist/types/call-diagnostic/generated-types-temp/Event.d.ts +4851 -0
- package/dist/types/call-diagnostic/generated-types-temp/MediaQualityEvent.d.ts +2121 -0
- package/dist/types/client-metrics-batcher.d.ts +2 -0
- package/dist/types/config.d.ts +35 -0
- package/dist/types/index.d.ts +11 -0
- package/dist/types/metrics.d.ts +3 -0
- package/dist/types/metrics.types.d.ts +87 -0
- package/dist/types/new-metrics.d.ts +83 -0
- package/package.json +12 -8
- package/src/call-diagnostic/call-diagnostic-metrics-batcher.ts +148 -0
- package/src/call-diagnostic/call-diagnostic-metrics-latencies.ts +408 -0
- package/src/call-diagnostic/call-diagnostic-metrics.ts +528 -0
- package/src/call-diagnostic/call-diagnostic-metrics.util.ts +102 -0
- package/src/call-diagnostic/config.ts +455 -0
- package/src/call-diagnostic/generated-types-temp/ClientEvent.ts +2357 -0
- package/src/call-diagnostic/generated-types-temp/Event.ts +7669 -0
- package/src/call-diagnostic/generated-types-temp/MediaQualityEvent.ts +2321 -0
- package/src/config.js +19 -0
- package/src/index.ts +39 -0
- package/src/metrics.js +25 -27
- package/src/metrics.types.ts +131 -0
- package/src/new-metrics.ts +170 -0
- package/test/unit/spec/call-diagnostic/call-diagnostic-metrics-batcher.ts +243 -0
- package/test/unit/spec/call-diagnostic/call-diagnostic-metrics-latencies.ts +474 -0
- package/test/unit/spec/call-diagnostic/call-diagnostic-metrics.ts +722 -0
- package/test/unit/spec/call-diagnostic/call-diagnostic-metrics.util.ts +76 -0
- package/test/unit/spec/metrics.js +65 -97
- package/test/unit/spec/new-metrics.ts +91 -0
- package/tsconfig.json +6 -0
- package/dist/call-diagnostic-events-batcher.js +0 -60
- package/dist/call-diagnostic-events-batcher.js.map +0 -1
- package/src/call-diagnostic-events-batcher.js +0 -62
- package/src/index.js +0 -17
- package/test/unit/spec/call-diagnostic-events-batcher.js +0 -195
|
@@ -0,0 +1,2357 @@
|
|
|
1
|
+
/* eslint-disable */
|
|
2
|
+
/**
|
|
3
|
+
* This file was automatically generated by json-schema-to-typescript.
|
|
4
|
+
* DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file,
|
|
5
|
+
* and run json-schema-to-typescript to regenerate this file.
|
|
6
|
+
*/
|
|
7
|
+
|
|
8
|
+
/**
|
|
9
|
+
* Events from clients
|
|
10
|
+
*/
|
|
11
|
+
export interface ClientEvent {
|
|
12
|
+
canProceed: boolean;
|
|
13
|
+
state?: string;
|
|
14
|
+
mediaType?: "audio" | "video" | "share" | "share_audio" | "whiteboard" | "gamestate";
|
|
15
|
+
csi?: number;
|
|
16
|
+
/**
|
|
17
|
+
* media capability for both transmit and receive
|
|
18
|
+
*/
|
|
19
|
+
mediaCapabilities?: {
|
|
20
|
+
/**
|
|
21
|
+
* explicit indication of media capabilities. true=supported
|
|
22
|
+
*/
|
|
23
|
+
tx: {
|
|
24
|
+
audio: boolean;
|
|
25
|
+
video: boolean;
|
|
26
|
+
share: boolean;
|
|
27
|
+
share_audio: boolean;
|
|
28
|
+
whiteboard: boolean;
|
|
29
|
+
gamestate?: boolean;
|
|
30
|
+
};
|
|
31
|
+
/**
|
|
32
|
+
* explicit indication of media capabilities. true=supported
|
|
33
|
+
*/
|
|
34
|
+
rx: {
|
|
35
|
+
audio: boolean;
|
|
36
|
+
video: boolean;
|
|
37
|
+
share: boolean;
|
|
38
|
+
share_audio: boolean;
|
|
39
|
+
whiteboard: boolean;
|
|
40
|
+
gamestate?: boolean;
|
|
41
|
+
};
|
|
42
|
+
};
|
|
43
|
+
mediaLines?: {
|
|
44
|
+
mediaType: "audio" | "video" | "share" | "share_audio" | "whiteboard" | "gamestate";
|
|
45
|
+
remoteIP?: string;
|
|
46
|
+
localIP?: string;
|
|
47
|
+
localNetworkPrefix?: string;
|
|
48
|
+
localPort?: number;
|
|
49
|
+
remotePort?: number;
|
|
50
|
+
protocol: "udp" | "tcp" | "xtls" | "unknown";
|
|
51
|
+
direction: "sendrecv" | "sendonly" | "recvonly" | "inactive";
|
|
52
|
+
clusterName?: string;
|
|
53
|
+
status?: "succeeded" | "in-progress" | "failed";
|
|
54
|
+
failureReason?: "network" | "transport" | "rejected" | "timeout" | "notstarted" | "succeeded";
|
|
55
|
+
errorCode?: number;
|
|
56
|
+
mediaLineData?: {};
|
|
57
|
+
}[];
|
|
58
|
+
/**
|
|
59
|
+
* allows client to specify media preferences
|
|
60
|
+
*/
|
|
61
|
+
clientMediaPreferences?: {
|
|
62
|
+
preferTranscoding: boolean;
|
|
63
|
+
};
|
|
64
|
+
pstnAudioType?: "dial-in" | "dial-out";
|
|
65
|
+
success?: boolean;
|
|
66
|
+
isTranscoded?: boolean;
|
|
67
|
+
isGatewayed?: boolean;
|
|
68
|
+
isComposed?: boolean;
|
|
69
|
+
/**
|
|
70
|
+
* determine how the events are processed as well as how the reports are aggregated and sliced
|
|
71
|
+
*/
|
|
72
|
+
registrationMode?: "SIP" | "Cloud" | "CloudAware";
|
|
73
|
+
/**
|
|
74
|
+
* protocols used to help determine how the events are processed as well as how the reports are aggregated and sliced
|
|
75
|
+
*/
|
|
76
|
+
protocol?: "SIP" | "H323" | "Locus" | "WebRTC";
|
|
77
|
+
/**
|
|
78
|
+
* The underlying service provider of the call.
|
|
79
|
+
*/
|
|
80
|
+
meetingPlatform?: "MsTeams" | "GoogleMeet" | "Zoom" | "Webex";
|
|
81
|
+
labels?: string[];
|
|
82
|
+
webexServiceType?: "MC" | "EC" | "SC" | "TC" | "AA" | "RA" | "NBR" | "WRF" | "HOL";
|
|
83
|
+
/**
|
|
84
|
+
* this defines the sub service type
|
|
85
|
+
*/
|
|
86
|
+
webexSubServiceType?: "PMR" | "Event" | "Training" | "ScheduleMeeting" | "ScheduledMeeting" | "Webinar" | "others";
|
|
87
|
+
ivrDialogType?:
|
|
88
|
+
| "MEDIA_ON_HOLD"
|
|
89
|
+
| "ANNOUNCEMENT"
|
|
90
|
+
| "TONE"
|
|
91
|
+
| "COLLECT_PIN"
|
|
92
|
+
| "PROMPT"
|
|
93
|
+
| "MEDIA_SERVICE_AGENT"
|
|
94
|
+
| "COLLECT";
|
|
95
|
+
ivrDialogResult?:
|
|
96
|
+
| "SUCCESS"
|
|
97
|
+
| "FAILURE"
|
|
98
|
+
| "HOST_PIN_MATCH"
|
|
99
|
+
| "GUEST_PIN_MATCH"
|
|
100
|
+
| "PANELIST_PIN_MATCH"
|
|
101
|
+
| "NO_MATCH"
|
|
102
|
+
| "INVALID_PIN";
|
|
103
|
+
callType?:
|
|
104
|
+
| "VIDEO_DIALIN"
|
|
105
|
+
| "VIDEO_DIALOUT"
|
|
106
|
+
| "CASCADE"
|
|
107
|
+
| "HYBRID_CASCADE"
|
|
108
|
+
| "PSTN_SIP"
|
|
109
|
+
| "PSTN_DIALIN"
|
|
110
|
+
| "PSTN_DIALOUT"
|
|
111
|
+
| "PSTN_ONLY_DIALIN"
|
|
112
|
+
| "PSTN_ONLY_DIALOUT"
|
|
113
|
+
| "H323"
|
|
114
|
+
| "H323_IP"
|
|
115
|
+
| "SIP_ENTERPRISE"
|
|
116
|
+
| "SIP_MOBILE"
|
|
117
|
+
| "SIP_NATIONAL"
|
|
118
|
+
| "SIP_INTERNATIONAL"
|
|
119
|
+
| "SIP_EMERGENCY"
|
|
120
|
+
| "SIP_OPERATOR"
|
|
121
|
+
| "SIP_SHORTCODE"
|
|
122
|
+
| "SIP_TOLLFREE"
|
|
123
|
+
| "SIP_PREMIUM"
|
|
124
|
+
| "SIP_URI"
|
|
125
|
+
| "SIP_INBOUND"
|
|
126
|
+
| "UNKNOWN"
|
|
127
|
+
| "ZTM"
|
|
128
|
+
| "SIP_MEETING";
|
|
129
|
+
eventData?: {};
|
|
130
|
+
derivedSipClientType?:
|
|
131
|
+
| "SIP_CE_SINGLE_SCREEN"
|
|
132
|
+
| "SIP_CE_MULTI_SCREEN"
|
|
133
|
+
| "SIP_JABBER"
|
|
134
|
+
| "SIP_TIP_SINGLE_SCREEN"
|
|
135
|
+
| "SIP_TIP_THREE_SCREEN"
|
|
136
|
+
| "SIP_PSTN"
|
|
137
|
+
| "SIP_OTHER"
|
|
138
|
+
| "SIP_WEBEX_CASCADE"
|
|
139
|
+
| "SIP_NONE";
|
|
140
|
+
/**
|
|
141
|
+
* this defines the major client types
|
|
142
|
+
*/
|
|
143
|
+
derivedClientType?:
|
|
144
|
+
| "MEETING_CENTER"
|
|
145
|
+
| "EVENT_CENTER"
|
|
146
|
+
| "TRAINING_CENTER"
|
|
147
|
+
| "TEAMS_CLIENT"
|
|
148
|
+
| "TEAMS_DEVICE"
|
|
149
|
+
| "TEAMS_SHARE"
|
|
150
|
+
| "SIP"
|
|
151
|
+
| "RECORDING"
|
|
152
|
+
| "CLOUD_AWARE_SIP"
|
|
153
|
+
| "TEAMS_WXC_CLIENT"
|
|
154
|
+
| "WXC_CLIENT"
|
|
155
|
+
| "WXC_DEVICE"
|
|
156
|
+
| "WEBEX_JS_SDK"
|
|
157
|
+
| "VOICEA_CLIENT"
|
|
158
|
+
| "CISCO_SIP_GW"
|
|
159
|
+
| "WEBEX_SDK"
|
|
160
|
+
| "CPAAS_THIRD_PARTY_SDK"
|
|
161
|
+
| "WXC_THIRD_PARTY";
|
|
162
|
+
/**
|
|
163
|
+
* this defines the sub types of clients
|
|
164
|
+
*/
|
|
165
|
+
derivedSubClientType?:
|
|
166
|
+
| "DESKTOP_APP"
|
|
167
|
+
| "DESKTOP_APP_VDI"
|
|
168
|
+
| "DEVICE_CURRENT"
|
|
169
|
+
| "DEVICE_LEGACY_2020"
|
|
170
|
+
| "HVDI_APP"
|
|
171
|
+
| "MOBILE_APP"
|
|
172
|
+
| "VDI_APP"
|
|
173
|
+
| "WEB_APP"
|
|
174
|
+
| "MOBILE_NETWORK"
|
|
175
|
+
| "HOLOGRAM_HEADSET_APP";
|
|
176
|
+
serverRole?:
|
|
177
|
+
| "CONFERENCE"
|
|
178
|
+
| "TRANSCODER"
|
|
179
|
+
| "WHITEBOARD_INJECTOR"
|
|
180
|
+
| "MS_TEAMS_CONFERENCE"
|
|
181
|
+
| "RECORDING"
|
|
182
|
+
| "GATEWAY"
|
|
183
|
+
| "GATEWAY_CLIENT_SIDE"
|
|
184
|
+
| "UNKNOWN"
|
|
185
|
+
| "HOLOGRAM_RENDER";
|
|
186
|
+
reconnect?: boolean;
|
|
187
|
+
retryCount?: number;
|
|
188
|
+
meetSimple?: boolean;
|
|
189
|
+
/**
|
|
190
|
+
* represents media quality status report such as no media or drop out
|
|
191
|
+
*/
|
|
192
|
+
mediaStatus?: {
|
|
193
|
+
mediaType?: "audio" | "video" | "share" | "share_audio" | "whiteboard";
|
|
194
|
+
mediaSuccess?: boolean;
|
|
195
|
+
shareType?:
|
|
196
|
+
| "cb-normal-share"
|
|
197
|
+
| "ce-airplay-share"
|
|
198
|
+
| "ce-direct-share"
|
|
199
|
+
| "ce-gui-loopback-share"
|
|
200
|
+
| "ce-input-source-share"
|
|
201
|
+
| "ce-input-source-share-hdmi"
|
|
202
|
+
| "ce-input-source-share-usbc"
|
|
203
|
+
| "ce-jpg-share"
|
|
204
|
+
| "ce-miracast-share"
|
|
205
|
+
| "mcs-normal-share"
|
|
206
|
+
| "mcs-normal-audio-share"
|
|
207
|
+
| "mcs-hfps-share"
|
|
208
|
+
| "mcs-hfps-audio-share";
|
|
209
|
+
isTransmitter?: boolean;
|
|
210
|
+
audioJoinType?:
|
|
211
|
+
| "phone-call-in"
|
|
212
|
+
| "phone-call-back"
|
|
213
|
+
| "voip"
|
|
214
|
+
| "device-call-back"
|
|
215
|
+
| "never-join-audio"
|
|
216
|
+
| "tried-but-never-join";
|
|
217
|
+
/**
|
|
218
|
+
* indicates transport type used
|
|
219
|
+
*/
|
|
220
|
+
transportType?: "UDP" | "TCP" | "xTLS" | "TLS";
|
|
221
|
+
additionalData?: {};
|
|
222
|
+
};
|
|
223
|
+
shareInstanceId?: string;
|
|
224
|
+
hologramStreamId?: string;
|
|
225
|
+
/**
|
|
226
|
+
* represents all of the properities that could cause delay during media setup process.
|
|
227
|
+
*/
|
|
228
|
+
audioSetupDelay?: {
|
|
229
|
+
floorReqSentReceived?: number;
|
|
230
|
+
floorRespSentReceived?: number;
|
|
231
|
+
mediaType?: "audio" | "video" | "share" | "share_audio" | "whiteboard";
|
|
232
|
+
txReqFloorGranted?: number;
|
|
233
|
+
txSessionCreateConfirm?: number;
|
|
234
|
+
txApeEnrollConfirm?: number;
|
|
235
|
+
txUIDelay?: number;
|
|
236
|
+
txScreenCaptureDelay?: number;
|
|
237
|
+
txScreenCaptureDelayReasonCode?: number;
|
|
238
|
+
txShareStartOverallDelay?: number;
|
|
239
|
+
rx1stPacket2RenderDelay?: number;
|
|
240
|
+
rxGranted2RenderDelay?: number;
|
|
241
|
+
rxFailFrameNumB4Success?: number;
|
|
242
|
+
e2eFirstFrameDelay?: number;
|
|
243
|
+
CBSessionRespToLocusFloorGrantDelay?: number;
|
|
244
|
+
CBShareReceiveToServerShareTransmitDelay?: number;
|
|
245
|
+
CBShareReceiveToTPGWFirstKeyFrameDelay?: number;
|
|
246
|
+
TPGWFirstKeyFrameToServerShareTransmitDelay?: number;
|
|
247
|
+
MCSSessionActivateToLocusFloorGrantDelay?: number;
|
|
248
|
+
ServerShareInitiateToLocusFloorGrantDelay?: number;
|
|
249
|
+
LocusFloorGrantToCBSessionStartDelay?: number;
|
|
250
|
+
ServerShareReceiveToTPGWFirstKeyFrameDelay?: number;
|
|
251
|
+
LocusFloorGrantToTPGWFloorGrantDelay?: number;
|
|
252
|
+
LocusFloorGrantToReceiverNotificationDelay?: number;
|
|
253
|
+
CBShareSessionRespDelay?: number;
|
|
254
|
+
LocusShareFloorGrantRespDelay?: number;
|
|
255
|
+
ServerShareFloorGrantRespDelay?: number;
|
|
256
|
+
joinRespRxStart?: number;
|
|
257
|
+
joinRespTxStart?: number;
|
|
258
|
+
maxRemoteLossRate?: number;
|
|
259
|
+
media2SignalDelay?: number;
|
|
260
|
+
warholDownloadTime?: number;
|
|
261
|
+
contentDownloadTime?: number;
|
|
262
|
+
boardCreationTime?: number;
|
|
263
|
+
totalBoardServiceRespDelay?: number;
|
|
264
|
+
};
|
|
265
|
+
/**
|
|
266
|
+
* represents all of the properities that could cause delay during media setup process.
|
|
267
|
+
*/
|
|
268
|
+
videoSetupDelay?: {
|
|
269
|
+
floorReqSentReceived?: number;
|
|
270
|
+
floorRespSentReceived?: number;
|
|
271
|
+
mediaType?: "audio" | "video" | "share" | "share_audio" | "whiteboard";
|
|
272
|
+
txReqFloorGranted?: number;
|
|
273
|
+
txSessionCreateConfirm?: number;
|
|
274
|
+
txApeEnrollConfirm?: number;
|
|
275
|
+
txUIDelay?: number;
|
|
276
|
+
txScreenCaptureDelay?: number;
|
|
277
|
+
txScreenCaptureDelayReasonCode?: number;
|
|
278
|
+
txShareStartOverallDelay?: number;
|
|
279
|
+
rx1stPacket2RenderDelay?: number;
|
|
280
|
+
rxGranted2RenderDelay?: number;
|
|
281
|
+
rxFailFrameNumB4Success?: number;
|
|
282
|
+
e2eFirstFrameDelay?: number;
|
|
283
|
+
CBSessionRespToLocusFloorGrantDelay?: number;
|
|
284
|
+
CBShareReceiveToServerShareTransmitDelay?: number;
|
|
285
|
+
CBShareReceiveToTPGWFirstKeyFrameDelay?: number;
|
|
286
|
+
TPGWFirstKeyFrameToServerShareTransmitDelay?: number;
|
|
287
|
+
MCSSessionActivateToLocusFloorGrantDelay?: number;
|
|
288
|
+
ServerShareInitiateToLocusFloorGrantDelay?: number;
|
|
289
|
+
LocusFloorGrantToCBSessionStartDelay?: number;
|
|
290
|
+
ServerShareReceiveToTPGWFirstKeyFrameDelay?: number;
|
|
291
|
+
LocusFloorGrantToTPGWFloorGrantDelay?: number;
|
|
292
|
+
LocusFloorGrantToReceiverNotificationDelay?: number;
|
|
293
|
+
CBShareSessionRespDelay?: number;
|
|
294
|
+
LocusShareFloorGrantRespDelay?: number;
|
|
295
|
+
ServerShareFloorGrantRespDelay?: number;
|
|
296
|
+
joinRespRxStart?: number;
|
|
297
|
+
joinRespTxStart?: number;
|
|
298
|
+
maxRemoteLossRate?: number;
|
|
299
|
+
media2SignalDelay?: number;
|
|
300
|
+
warholDownloadTime?: number;
|
|
301
|
+
contentDownloadTime?: number;
|
|
302
|
+
boardCreationTime?: number;
|
|
303
|
+
totalBoardServiceRespDelay?: number;
|
|
304
|
+
};
|
|
305
|
+
/**
|
|
306
|
+
* represents all of the properities that could cause delay during media setup process.
|
|
307
|
+
*/
|
|
308
|
+
shareSetupDelay?: {
|
|
309
|
+
floorReqSentReceived?: number;
|
|
310
|
+
floorRespSentReceived?: number;
|
|
311
|
+
mediaType?: "audio" | "video" | "share" | "share_audio" | "whiteboard";
|
|
312
|
+
txReqFloorGranted?: number;
|
|
313
|
+
txSessionCreateConfirm?: number;
|
|
314
|
+
txApeEnrollConfirm?: number;
|
|
315
|
+
txUIDelay?: number;
|
|
316
|
+
txScreenCaptureDelay?: number;
|
|
317
|
+
txScreenCaptureDelayReasonCode?: number;
|
|
318
|
+
txShareStartOverallDelay?: number;
|
|
319
|
+
rx1stPacket2RenderDelay?: number;
|
|
320
|
+
rxGranted2RenderDelay?: number;
|
|
321
|
+
rxFailFrameNumB4Success?: number;
|
|
322
|
+
e2eFirstFrameDelay?: number;
|
|
323
|
+
CBSessionRespToLocusFloorGrantDelay?: number;
|
|
324
|
+
CBShareReceiveToServerShareTransmitDelay?: number;
|
|
325
|
+
CBShareReceiveToTPGWFirstKeyFrameDelay?: number;
|
|
326
|
+
TPGWFirstKeyFrameToServerShareTransmitDelay?: number;
|
|
327
|
+
MCSSessionActivateToLocusFloorGrantDelay?: number;
|
|
328
|
+
ServerShareInitiateToLocusFloorGrantDelay?: number;
|
|
329
|
+
LocusFloorGrantToCBSessionStartDelay?: number;
|
|
330
|
+
ServerShareReceiveToTPGWFirstKeyFrameDelay?: number;
|
|
331
|
+
LocusFloorGrantToTPGWFloorGrantDelay?: number;
|
|
332
|
+
LocusFloorGrantToReceiverNotificationDelay?: number;
|
|
333
|
+
CBShareSessionRespDelay?: number;
|
|
334
|
+
LocusShareFloorGrantRespDelay?: number;
|
|
335
|
+
ServerShareFloorGrantRespDelay?: number;
|
|
336
|
+
joinRespRxStart?: number;
|
|
337
|
+
joinRespTxStart?: number;
|
|
338
|
+
maxRemoteLossRate?: number;
|
|
339
|
+
media2SignalDelay?: number;
|
|
340
|
+
warholDownloadTime?: number;
|
|
341
|
+
contentDownloadTime?: number;
|
|
342
|
+
boardCreationTime?: number;
|
|
343
|
+
totalBoardServiceRespDelay?: number;
|
|
344
|
+
};
|
|
345
|
+
/**
|
|
346
|
+
* represents all of the properities that could cause delay during media setup process.
|
|
347
|
+
*/
|
|
348
|
+
shareAudioSetupDelay?: {
|
|
349
|
+
floorReqSentReceived?: number;
|
|
350
|
+
floorRespSentReceived?: number;
|
|
351
|
+
mediaType?: "audio" | "video" | "share" | "share_audio" | "whiteboard";
|
|
352
|
+
txReqFloorGranted?: number;
|
|
353
|
+
txSessionCreateConfirm?: number;
|
|
354
|
+
txApeEnrollConfirm?: number;
|
|
355
|
+
txUIDelay?: number;
|
|
356
|
+
txScreenCaptureDelay?: number;
|
|
357
|
+
txScreenCaptureDelayReasonCode?: number;
|
|
358
|
+
txShareStartOverallDelay?: number;
|
|
359
|
+
rx1stPacket2RenderDelay?: number;
|
|
360
|
+
rxGranted2RenderDelay?: number;
|
|
361
|
+
rxFailFrameNumB4Success?: number;
|
|
362
|
+
e2eFirstFrameDelay?: number;
|
|
363
|
+
CBSessionRespToLocusFloorGrantDelay?: number;
|
|
364
|
+
CBShareReceiveToServerShareTransmitDelay?: number;
|
|
365
|
+
CBShareReceiveToTPGWFirstKeyFrameDelay?: number;
|
|
366
|
+
TPGWFirstKeyFrameToServerShareTransmitDelay?: number;
|
|
367
|
+
MCSSessionActivateToLocusFloorGrantDelay?: number;
|
|
368
|
+
ServerShareInitiateToLocusFloorGrantDelay?: number;
|
|
369
|
+
LocusFloorGrantToCBSessionStartDelay?: number;
|
|
370
|
+
ServerShareReceiveToTPGWFirstKeyFrameDelay?: number;
|
|
371
|
+
LocusFloorGrantToTPGWFloorGrantDelay?: number;
|
|
372
|
+
LocusFloorGrantToReceiverNotificationDelay?: number;
|
|
373
|
+
CBShareSessionRespDelay?: number;
|
|
374
|
+
LocusShareFloorGrantRespDelay?: number;
|
|
375
|
+
ServerShareFloorGrantRespDelay?: number;
|
|
376
|
+
joinRespRxStart?: number;
|
|
377
|
+
joinRespTxStart?: number;
|
|
378
|
+
maxRemoteLossRate?: number;
|
|
379
|
+
media2SignalDelay?: number;
|
|
380
|
+
warholDownloadTime?: number;
|
|
381
|
+
contentDownloadTime?: number;
|
|
382
|
+
boardCreationTime?: number;
|
|
383
|
+
totalBoardServiceRespDelay?: number;
|
|
384
|
+
};
|
|
385
|
+
/**
|
|
386
|
+
* represents all of the properities that could cause delay during media setup process.
|
|
387
|
+
*/
|
|
388
|
+
whiteboardSetupDelay?: {
|
|
389
|
+
floorReqSentReceived?: number;
|
|
390
|
+
floorRespSentReceived?: number;
|
|
391
|
+
mediaType?: "audio" | "video" | "share" | "share_audio" | "whiteboard";
|
|
392
|
+
txReqFloorGranted?: number;
|
|
393
|
+
txSessionCreateConfirm?: number;
|
|
394
|
+
txApeEnrollConfirm?: number;
|
|
395
|
+
txUIDelay?: number;
|
|
396
|
+
txScreenCaptureDelay?: number;
|
|
397
|
+
txScreenCaptureDelayReasonCode?: number;
|
|
398
|
+
txShareStartOverallDelay?: number;
|
|
399
|
+
rx1stPacket2RenderDelay?: number;
|
|
400
|
+
rxGranted2RenderDelay?: number;
|
|
401
|
+
rxFailFrameNumB4Success?: number;
|
|
402
|
+
e2eFirstFrameDelay?: number;
|
|
403
|
+
CBSessionRespToLocusFloorGrantDelay?: number;
|
|
404
|
+
CBShareReceiveToServerShareTransmitDelay?: number;
|
|
405
|
+
CBShareReceiveToTPGWFirstKeyFrameDelay?: number;
|
|
406
|
+
TPGWFirstKeyFrameToServerShareTransmitDelay?: number;
|
|
407
|
+
MCSSessionActivateToLocusFloorGrantDelay?: number;
|
|
408
|
+
ServerShareInitiateToLocusFloorGrantDelay?: number;
|
|
409
|
+
LocusFloorGrantToCBSessionStartDelay?: number;
|
|
410
|
+
ServerShareReceiveToTPGWFirstKeyFrameDelay?: number;
|
|
411
|
+
LocusFloorGrantToTPGWFloorGrantDelay?: number;
|
|
412
|
+
LocusFloorGrantToReceiverNotificationDelay?: number;
|
|
413
|
+
CBShareSessionRespDelay?: number;
|
|
414
|
+
LocusShareFloorGrantRespDelay?: number;
|
|
415
|
+
ServerShareFloorGrantRespDelay?: number;
|
|
416
|
+
joinRespRxStart?: number;
|
|
417
|
+
joinRespTxStart?: number;
|
|
418
|
+
maxRemoteLossRate?: number;
|
|
419
|
+
media2SignalDelay?: number;
|
|
420
|
+
warholDownloadTime?: number;
|
|
421
|
+
contentDownloadTime?: number;
|
|
422
|
+
boardCreationTime?: number;
|
|
423
|
+
totalBoardServiceRespDelay?: number;
|
|
424
|
+
};
|
|
425
|
+
isFocus?: boolean;
|
|
426
|
+
processingDelay?: number;
|
|
427
|
+
shareType?:
|
|
428
|
+
| "cb-normal-share"
|
|
429
|
+
| "ce-airplay-share"
|
|
430
|
+
| "ce-direct-share"
|
|
431
|
+
| "ce-gui-loopback-share"
|
|
432
|
+
| "ce-input-source-share"
|
|
433
|
+
| "ce-input-source-share-hdmi"
|
|
434
|
+
| "ce-input-source-share-usbc"
|
|
435
|
+
| "ce-jpg-share"
|
|
436
|
+
| "ce-miracast-share"
|
|
437
|
+
| "mcs-normal-share"
|
|
438
|
+
| "mcs-normal-audio-share"
|
|
439
|
+
| "mcs-hfps-share"
|
|
440
|
+
| "mcs-hfps-audio-share";
|
|
441
|
+
isShareBeingTakenOver?: boolean;
|
|
442
|
+
floorBeneficiaryUpdated?: boolean;
|
|
443
|
+
meetingJoinedTime?: string;
|
|
444
|
+
meetingScheduledTime?: string;
|
|
445
|
+
e2eeKeyEpoch?: number;
|
|
446
|
+
e2eeDecompressRatio?: number;
|
|
447
|
+
keyResponses?: {
|
|
448
|
+
gotKeyTime?: number;
|
|
449
|
+
useKeyTime?: number;
|
|
450
|
+
cacheKeyTime?: number;
|
|
451
|
+
}[];
|
|
452
|
+
e2eeVersion?: "E2EEV1" | "E2EEV2" | "E2EEV3";
|
|
453
|
+
isConvergedArchitectureEnabled?: boolean;
|
|
454
|
+
callingServiceType?: "CUCM" | "WEBEXCALLING" | "BROADWORKS" | "LOCUS";
|
|
455
|
+
inLobby?: boolean;
|
|
456
|
+
isVIPMeeting?: boolean;
|
|
457
|
+
webexAppEntrypoint?: string;
|
|
458
|
+
firstParticipant?: boolean;
|
|
459
|
+
isImmersiveShare?: boolean;
|
|
460
|
+
/**
|
|
461
|
+
* Request/Response Time for Internal Services
|
|
462
|
+
*/
|
|
463
|
+
registeredTimestamps?: {
|
|
464
|
+
locusCreateConfluenceRequestTime?: string;
|
|
465
|
+
locusCreateConfluenceResponseTime?: string;
|
|
466
|
+
locusCreateVenueRequestTime?: string;
|
|
467
|
+
locusCreateVenueResponseTime?: string;
|
|
468
|
+
};
|
|
469
|
+
skipInterstitialWindow?: boolean;
|
|
470
|
+
callDurationSecs?: number;
|
|
471
|
+
/**
|
|
472
|
+
* Details associated with a breakout move
|
|
473
|
+
*/
|
|
474
|
+
breakout?: {
|
|
475
|
+
moveType?: "between_breakout" | "to_breakout" | "to_main";
|
|
476
|
+
trigger?: "assignment_changed" | "client_initiated" | "session_ended" | "session_started";
|
|
477
|
+
startState?: "joined" | "lobby";
|
|
478
|
+
endState?: "joined" | "lobby";
|
|
479
|
+
};
|
|
480
|
+
/**
|
|
481
|
+
* Latency values associated with breakout session
|
|
482
|
+
*/
|
|
483
|
+
breakoutLatency?: {
|
|
484
|
+
boBreakoutMoveProcessed?: number;
|
|
485
|
+
boBreakoutMoveResp?: number;
|
|
486
|
+
boLocusBreakoutMoveResp?: number;
|
|
487
|
+
locusBreakoutMoveResp?: number;
|
|
488
|
+
orpheusConfluenceMoveReqResp?: number;
|
|
489
|
+
};
|
|
490
|
+
/**
|
|
491
|
+
* two-way whiteboard related info
|
|
492
|
+
*/
|
|
493
|
+
whiteboard?: {
|
|
494
|
+
action?: "open" | "create";
|
|
495
|
+
type?: "whiteboard" | "annotation";
|
|
496
|
+
capability?: "one_way" | "two_way";
|
|
497
|
+
granted?: "one_way" | "two_way";
|
|
498
|
+
};
|
|
499
|
+
name:
|
|
500
|
+
| "client.alert.displayed"
|
|
501
|
+
| "client.alert.removed"
|
|
502
|
+
| "client.application.validate"
|
|
503
|
+
| "client.audio.noise.removal"
|
|
504
|
+
| "client.breakout-session.join.request"
|
|
505
|
+
| "client.breakout-session.join.response"
|
|
506
|
+
| "client.breakout-session.leave"
|
|
507
|
+
| "client.breakout-session.move.request"
|
|
508
|
+
| "client.breakout-session.move.response"
|
|
509
|
+
| "client.call.aborted"
|
|
510
|
+
| "client.call.declined"
|
|
511
|
+
| "client.call.displayed"
|
|
512
|
+
| "client.call.initiated"
|
|
513
|
+
| "client.call.leave"
|
|
514
|
+
| "client.call.move-media"
|
|
515
|
+
| "client.call.remote-ended"
|
|
516
|
+
| "client.call.remote-started"
|
|
517
|
+
| "client.call.skip-locus-join"
|
|
518
|
+
| "client.conversation.request"
|
|
519
|
+
| "client.conversation.response"
|
|
520
|
+
| "client.click.pre-join"
|
|
521
|
+
| "client.crash"
|
|
522
|
+
| "client.daemon.join.begin"
|
|
523
|
+
| "client.daemon.job.done"
|
|
524
|
+
| "client.daemon.launch-meeting-process"
|
|
525
|
+
| "client.daemon.pending-on-existing-upgrade-job"
|
|
526
|
+
| "client.daemon.query-site-info"
|
|
527
|
+
| "client.daemon.upgrade-and-join"
|
|
528
|
+
| "client.daemon.wakeup-meeting-client"
|
|
529
|
+
| "client.device.resource-room.joined"
|
|
530
|
+
| "client.e2ee.join.response"
|
|
531
|
+
| "client.embedded-object-info"
|
|
532
|
+
| "client.entering-background"
|
|
533
|
+
| "client.entering-foreground"
|
|
534
|
+
| "client.gesture.recognition"
|
|
535
|
+
| "client.hologram.initiated"
|
|
536
|
+
| "client.hologram.stopped"
|
|
537
|
+
| "client.hologram.remote.initiated"
|
|
538
|
+
| "client.hologram.remote.stopped"
|
|
539
|
+
| "client.ice.end"
|
|
540
|
+
| "client.ice.start"
|
|
541
|
+
| "client.installer.start"
|
|
542
|
+
| "client.installer.end"
|
|
543
|
+
| "client.interstitial-window.launched"
|
|
544
|
+
| "client.ivr.join.request"
|
|
545
|
+
| "client.ivr.join.response"
|
|
546
|
+
| "client.ivr.leave.request"
|
|
547
|
+
| "client.ivr.leave.response"
|
|
548
|
+
| "client.ivr.notify.request"
|
|
549
|
+
| "client.ivr.notify.response"
|
|
550
|
+
| "client.lobby.entered"
|
|
551
|
+
| "client.lobby.exited"
|
|
552
|
+
| "client.locus.decline.request"
|
|
553
|
+
| "client.locus.join.request"
|
|
554
|
+
| "client.locus.join.response"
|
|
555
|
+
| "client.locus.leave.request"
|
|
556
|
+
| "client.locus.leave.response"
|
|
557
|
+
| "client.locus.media.request"
|
|
558
|
+
| "client.locus.media.response"
|
|
559
|
+
| "client.media-engine.crash"
|
|
560
|
+
| "client.media-engine.lost"
|
|
561
|
+
| "client.media-engine.local-sdp-generated"
|
|
562
|
+
| "client.media-engine.ready"
|
|
563
|
+
| "client.media-engine.remote-sdp-received"
|
|
564
|
+
| "client.media-status"
|
|
565
|
+
| "client.media.capabilities"
|
|
566
|
+
| "client.media.reachability"
|
|
567
|
+
| "client.media.reconnecting"
|
|
568
|
+
| "client.media.recovered"
|
|
569
|
+
| "client.media.render.start"
|
|
570
|
+
| "client.media.render.stop"
|
|
571
|
+
| "client.media.rx.start"
|
|
572
|
+
| "client.media.rx.stop"
|
|
573
|
+
| "client.media.share.csi.changed"
|
|
574
|
+
| "client.media.tx.start"
|
|
575
|
+
| "client.media.tx.stop"
|
|
576
|
+
| "client.meetinginfo.request"
|
|
577
|
+
| "client.meetinginfo.response"
|
|
578
|
+
| "client.meetingmanagersdk.ipc.run"
|
|
579
|
+
| "client.meeting.app-loaded"
|
|
580
|
+
| "client.meeting.breakout-session.action"
|
|
581
|
+
| "client.meeting.breakout-session.summary"
|
|
582
|
+
| "client.meeting.browser-plugin.started"
|
|
583
|
+
| "client.meeting.click.joinbutton"
|
|
584
|
+
| "client.meeting.closed"
|
|
585
|
+
| "client.meeting.disclaimer-window.accepted"
|
|
586
|
+
| "client.meeting.disclaimer-window.closed"
|
|
587
|
+
| "client.meeting.disclaimer-window.showed"
|
|
588
|
+
| "client.meeting.docshow.request"
|
|
589
|
+
| "client.meeting.docshow.response"
|
|
590
|
+
| "client.meeting.e2e.u2c.response"
|
|
591
|
+
| "client.meeting.e2e.wca.response"
|
|
592
|
+
| "client.meeting.e2e.key.response"
|
|
593
|
+
| "client.meeting.e2ee.u2c.response"
|
|
594
|
+
| "client.meeting.e2ee.wca.response"
|
|
595
|
+
| "client.meeting.e2ee.key.response"
|
|
596
|
+
| "client.meeting.gpc.download"
|
|
597
|
+
| "client.meeting.gpcparameter.request"
|
|
598
|
+
| "client.meeting.gpcparameter.response"
|
|
599
|
+
| "client.meeting.interstitial-window.closed"
|
|
600
|
+
| "client.meeting.interstitial-window.showed"
|
|
601
|
+
| "client.meeting.join.request"
|
|
602
|
+
| "client.meeting.key-information"
|
|
603
|
+
| "client.meeting.launched"
|
|
604
|
+
| "client.meeting.login-window.clicked"
|
|
605
|
+
| "client.meeting.login-window.closed"
|
|
606
|
+
| "client.meeting.login-window.showed"
|
|
607
|
+
| "client.meeting.login.response"
|
|
608
|
+
| "client.meeting.people-insights.check.response"
|
|
609
|
+
| "client.meeting.people-insights.query.response"
|
|
610
|
+
| "client.meeting.ping.request"
|
|
611
|
+
| "client.meeting.ping.response"
|
|
612
|
+
| "client.meeting.plugin-extension.started"
|
|
613
|
+
| "client.meeting.resume"
|
|
614
|
+
| "client.meeting.report-log"
|
|
615
|
+
| "client.meeting.session.connected"
|
|
616
|
+
| "client.meeting.start-webexapp"
|
|
617
|
+
| "client.meeting.start-launch"
|
|
618
|
+
| "client.meeting.summary"
|
|
619
|
+
| "client.meeting.user-action"
|
|
620
|
+
| "client.meeting.validated"
|
|
621
|
+
| "client.meeting.VDI.detect.plugin.response"
|
|
622
|
+
| "client.meeting.VDI.connect.plugin.response"
|
|
623
|
+
| "client.mercury.connection.lost"
|
|
624
|
+
| "client.mercury.connection.restored"
|
|
625
|
+
| "client.multistream.sca.rx"
|
|
626
|
+
| "client.multistream.sca.tx"
|
|
627
|
+
| "client.multistream.scr.rx"
|
|
628
|
+
| "client.multistream.scr.tx"
|
|
629
|
+
| "client.muted"
|
|
630
|
+
| "client.network.changed"
|
|
631
|
+
| "client.notification.received"
|
|
632
|
+
| "client.pin.collected"
|
|
633
|
+
| "client.pin.prompt"
|
|
634
|
+
| "client.post.meeting.hook"
|
|
635
|
+
| "client.pstnaudio.attempt.finish"
|
|
636
|
+
| "client.pstnaudio.attempt.skip"
|
|
637
|
+
| "client.pstnaudio.attempt.start"
|
|
638
|
+
| "client.roap-message.received"
|
|
639
|
+
| "client.roap-message.sent"
|
|
640
|
+
| "client.share.floor-accept.notification"
|
|
641
|
+
| "client.share.floor-grant.cancel-request"
|
|
642
|
+
| "client.share.floor-grant.notification"
|
|
643
|
+
| "client.share.floor-grant.request"
|
|
644
|
+
| "client.share.floor-granted.local"
|
|
645
|
+
| "client.share.initiated"
|
|
646
|
+
| "client.share.layout.displayed"
|
|
647
|
+
| "client.share.paused"
|
|
648
|
+
| "client.share.selected-app"
|
|
649
|
+
| "client.share.stopped"
|
|
650
|
+
| "client.started-after-shutdown"
|
|
651
|
+
| "client.started-from-crash"
|
|
652
|
+
| "client.stuntrace.failed"
|
|
653
|
+
| "client.switch.app"
|
|
654
|
+
| "client.unmuted"
|
|
655
|
+
| "client.webexapp.launched"
|
|
656
|
+
| "client.login.start"
|
|
657
|
+
| "client.login.end"
|
|
658
|
+
| "client.switch.environment"
|
|
659
|
+
| "client.warhol.downloaded"
|
|
660
|
+
| "client.whiteboard.loaded"
|
|
661
|
+
| "meeting.initiated"
|
|
662
|
+
| "meeting.joined"
|
|
663
|
+
| "page.click.pre-join"
|
|
664
|
+
| "page.meeting.browser-reset"
|
|
665
|
+
| "page.meeting.close-browser"
|
|
666
|
+
| "page.meeting.extension.started"
|
|
667
|
+
| "page.meeting.launch-thinclient"
|
|
668
|
+
| "page.meeting.loading"
|
|
669
|
+
| "page.meeting.run-plugin"
|
|
670
|
+
| "page.meeting.testing-plugin"
|
|
671
|
+
| "page.meeting.testing-plugin.finished"
|
|
672
|
+
| "page.meeting.tfs.start-download"
|
|
673
|
+
| "page.meeting.urlprotocol.detect"
|
|
674
|
+
| "page.meeting.waiting.user-action";
|
|
675
|
+
/**
|
|
676
|
+
* Base type for the various identifiers used to connect the dots.
|
|
677
|
+
* In general, these should be populated whenever possible. Subtypes may make a particular key required.
|
|
678
|
+
*
|
|
679
|
+
*/
|
|
680
|
+
identifiers: {
|
|
681
|
+
attendeeId?: string;
|
|
682
|
+
breakoutGroupId?: string;
|
|
683
|
+
breakoutMoveId?: string;
|
|
684
|
+
breakoutSessionId?: string;
|
|
685
|
+
confluenceId?: string;
|
|
686
|
+
/**
|
|
687
|
+
* Set of identifiers dedicated to CPaaS clients
|
|
688
|
+
* In general, these should be populated whenever possible. Subtypes may make a particular key required.
|
|
689
|
+
*
|
|
690
|
+
*/
|
|
691
|
+
cpaasIdentifiers?: {
|
|
692
|
+
imiTenantId: string;
|
|
693
|
+
devClientId: string;
|
|
694
|
+
imiServiceId: string;
|
|
695
|
+
imiAppId: string;
|
|
696
|
+
sessionId: string;
|
|
697
|
+
sessionInstanceId: string;
|
|
698
|
+
};
|
|
699
|
+
csdmDeviceUrl?: string;
|
|
700
|
+
destinationBreakoutSessionId?: string;
|
|
701
|
+
destinationLocusSessionId?: string;
|
|
702
|
+
destinationLocusUrl?: string;
|
|
703
|
+
destinationVenueId?: string;
|
|
704
|
+
deviceId?: string;
|
|
705
|
+
ivrCallId?: string;
|
|
706
|
+
ivrDialogId?: string;
|
|
707
|
+
ivrId?: string;
|
|
708
|
+
locusId?: string;
|
|
709
|
+
locusSessionId?: string;
|
|
710
|
+
locusStartTime?: string;
|
|
711
|
+
locusUrl?: string;
|
|
712
|
+
mediaAgentAlias?: string;
|
|
713
|
+
mediaAgentGroupId?: string;
|
|
714
|
+
meetClusterName?: string;
|
|
715
|
+
meetingLookupUrl?: string;
|
|
716
|
+
meetingOrgId?: string;
|
|
717
|
+
msteamsTenantGuid?: string;
|
|
718
|
+
msteamsConferenceId?: string;
|
|
719
|
+
oauth2ClientId?: string;
|
|
720
|
+
orgId?: string;
|
|
721
|
+
roomId?: string;
|
|
722
|
+
sipCallId?: string;
|
|
723
|
+
sipSessionId?: {
|
|
724
|
+
local?: string;
|
|
725
|
+
remote?: string;
|
|
726
|
+
};
|
|
727
|
+
sipUri?: string;
|
|
728
|
+
subConfId?: string;
|
|
729
|
+
tenantId?: string;
|
|
730
|
+
trackingId?: string;
|
|
731
|
+
userId?: string;
|
|
732
|
+
venueId?: string;
|
|
733
|
+
venueUrl?: string;
|
|
734
|
+
whiteboardUrl?: string;
|
|
735
|
+
webexConferenceId?: number;
|
|
736
|
+
webexClusterName?: string;
|
|
737
|
+
webexConferenceIdStr?: string;
|
|
738
|
+
webexDataCenter?: string;
|
|
739
|
+
webexGuestId?: number;
|
|
740
|
+
webexMeetingId?: number;
|
|
741
|
+
webexNodeId?: number;
|
|
742
|
+
webexSiteId?: number;
|
|
743
|
+
webexSiteName?: string;
|
|
744
|
+
webexUserId?: number;
|
|
745
|
+
webexWebDomain?: string;
|
|
746
|
+
correlationId: string;
|
|
747
|
+
};
|
|
748
|
+
errors?: {
|
|
749
|
+
fatal: boolean;
|
|
750
|
+
category: "signaling" | "media" | "other" | "expected";
|
|
751
|
+
errorDescription?: string;
|
|
752
|
+
errorCode?: number;
|
|
753
|
+
errorCodeStr?: string;
|
|
754
|
+
httpCode?: number;
|
|
755
|
+
errorData?: {};
|
|
756
|
+
shownToUser: boolean;
|
|
757
|
+
serviceErrorCode?: number;
|
|
758
|
+
name:
|
|
759
|
+
| "media-engine"
|
|
760
|
+
| "ice.failed"
|
|
761
|
+
| "locus.response"
|
|
762
|
+
| "locus.leave"
|
|
763
|
+
| "client.leave"
|
|
764
|
+
| "media-device"
|
|
765
|
+
| "media-sca"
|
|
766
|
+
| "other";
|
|
767
|
+
}[];
|
|
768
|
+
/**
|
|
769
|
+
* media quality error report such as no media or drop out
|
|
770
|
+
*/
|
|
771
|
+
clientMediaError?: {
|
|
772
|
+
mediaType?: "audio" | "video" | "share" | "share_audio" | "whiteboard";
|
|
773
|
+
mediaFailureType?: "noMedia" | "mediaDrop" | "mediaEvent";
|
|
774
|
+
isDropAtStart?: boolean;
|
|
775
|
+
isJMF?: boolean;
|
|
776
|
+
txError?:
|
|
777
|
+
| "NO_ERROR"
|
|
778
|
+
| "DEVICE_ERROR"
|
|
779
|
+
| "LOAD_LIBRARY_ERROR"
|
|
780
|
+
| "MCS_SESSION_CONNECT_ERROR"
|
|
781
|
+
| "CB_SESSION_CREATE_ERROR"
|
|
782
|
+
| "NO_FRAME_DECODE_ERROR"
|
|
783
|
+
| "NO_PACKET_RECV_ERROR"
|
|
784
|
+
| "LOW_VOLUME_ERROR"
|
|
785
|
+
| "INITIAL_MEMORY_ERROR"
|
|
786
|
+
| "MAC_VIRTUAL_AUDIO_DRV_ERROR"
|
|
787
|
+
| "MMP_SESSION_CONNECT_ERROR"
|
|
788
|
+
| "MEDIA_PROCESS_CRASH_ERROR"
|
|
789
|
+
| "HEARTBEAT_LOST_WITH_MEDIA_PROCESS_ERROR"
|
|
790
|
+
| "MEDIA_SERVER_CONNECT_ERROR"
|
|
791
|
+
| "LOCUS_SESSION_CONNECT_ERROR"
|
|
792
|
+
| "NO_PACKET_SEND_ERROR"
|
|
793
|
+
| "NETWORK_LOST_ERROR"
|
|
794
|
+
| "MEDIA_NOT_AVAILABLE";
|
|
795
|
+
rxError?:
|
|
796
|
+
| "NO_ERROR"
|
|
797
|
+
| "DEVICE_ERROR"
|
|
798
|
+
| "LOAD_LIBRARY_ERROR"
|
|
799
|
+
| "MCS_SESSION_CONNECT_ERROR"
|
|
800
|
+
| "CB_SESSION_CREATE_ERROR"
|
|
801
|
+
| "NO_FRAME_DECODE_ERROR"
|
|
802
|
+
| "NO_PACKET_RECV_ERROR"
|
|
803
|
+
| "LOW_VOLUME_ERROR"
|
|
804
|
+
| "INITIAL_MEMORY_ERROR"
|
|
805
|
+
| "MAC_VIRTUAL_AUDIO_DRV_ERROR"
|
|
806
|
+
| "MMP_SESSION_CONNECT_ERROR"
|
|
807
|
+
| "MEDIA_PROCESS_CRASH_ERROR"
|
|
808
|
+
| "HEARTBEAT_LOST_WITH_MEDIA_PROCESS_ERROR"
|
|
809
|
+
| "MEDIA_SERVER_CONNECT_ERROR"
|
|
810
|
+
| "LOCUS_SESSION_CONNECT_ERROR"
|
|
811
|
+
| "NO_PACKET_SEND_ERROR"
|
|
812
|
+
| "NETWORK_LOST_ERROR"
|
|
813
|
+
| "MEDIA_NOT_AVAILABLE";
|
|
814
|
+
txDeviceErrorCode?: number;
|
|
815
|
+
rxDeviceErrorCode?: number;
|
|
816
|
+
sessionConnectErrorCode?: number;
|
|
817
|
+
firstDropTime?: string;
|
|
818
|
+
totalDropCount?: number;
|
|
819
|
+
failureDuration?: number;
|
|
820
|
+
txMoreError?: string;
|
|
821
|
+
rxMoreError?: string;
|
|
822
|
+
totalUserWhenCBStartError?: number;
|
|
823
|
+
sessionConnectExtErrorCode?: number;
|
|
824
|
+
sessionConnectErrorType?: "unknown" | "MCC_error" | "MCS_error" | "Tahoe_error";
|
|
825
|
+
txSystemErrorCode?: number;
|
|
826
|
+
rxSystemErrorCode?: number;
|
|
827
|
+
errorDetails?: {};
|
|
828
|
+
};
|
|
829
|
+
trigger?:
|
|
830
|
+
| "bricklet"
|
|
831
|
+
| "call-history"
|
|
832
|
+
| "companion-join"
|
|
833
|
+
| "contact-profile"
|
|
834
|
+
| "dialpad"
|
|
835
|
+
| "loci-update"
|
|
836
|
+
| "media-engine-event"
|
|
837
|
+
| "meetbutton-click"
|
|
838
|
+
| "meetings-tab"
|
|
839
|
+
| "message-click"
|
|
840
|
+
| "mercury-event"
|
|
841
|
+
| "obtp"
|
|
842
|
+
| "onboarding-page"
|
|
843
|
+
| "other"
|
|
844
|
+
| "pairing"
|
|
845
|
+
| "protocol"
|
|
846
|
+
| "search"
|
|
847
|
+
| "signaling"
|
|
848
|
+
| "space-share"
|
|
849
|
+
| "timeout"
|
|
850
|
+
| "toast"
|
|
851
|
+
| "user-interaction"
|
|
852
|
+
| "wireless-share";
|
|
853
|
+
leaveReason?: "paired-leave" | "one-to-one" | "ended-by-locus";
|
|
854
|
+
displayLocation?:
|
|
855
|
+
| "toast"
|
|
856
|
+
| "room-list"
|
|
857
|
+
| "call-pane"
|
|
858
|
+
| "call-view"
|
|
859
|
+
| "room"
|
|
860
|
+
| "meeting-list"
|
|
861
|
+
| "meeting"
|
|
862
|
+
| "personal-meeting-room"
|
|
863
|
+
| "intents"
|
|
864
|
+
| "external-link"
|
|
865
|
+
| "automation"
|
|
866
|
+
| "meeting-information"
|
|
867
|
+
| "contact-card"
|
|
868
|
+
| "control-center"
|
|
869
|
+
| "search-result"
|
|
870
|
+
| "other";
|
|
871
|
+
displayType?: "scheduled";
|
|
872
|
+
dialedDomain?: string;
|
|
873
|
+
isScheduled?: boolean;
|
|
874
|
+
guestModeShare?: boolean;
|
|
875
|
+
highFpsModeShare?: boolean;
|
|
876
|
+
contentAudioShare?: boolean;
|
|
877
|
+
pairingState?: "paired" | "observing" | "challenging";
|
|
878
|
+
pairedDevice?: {
|
|
879
|
+
deviceType?: string;
|
|
880
|
+
deviceId?: string;
|
|
881
|
+
deviceURL?: string;
|
|
882
|
+
modelNumber?: string;
|
|
883
|
+
productName?: string;
|
|
884
|
+
tempSipUri?: string;
|
|
885
|
+
};
|
|
886
|
+
/**
|
|
887
|
+
* Information about the sender of the event
|
|
888
|
+
*/
|
|
889
|
+
oldOrigin?: {
|
|
890
|
+
name:
|
|
891
|
+
| "antares"
|
|
892
|
+
| "beech"
|
|
893
|
+
| "breakout"
|
|
894
|
+
| "cb"
|
|
895
|
+
| "cloudproxy"
|
|
896
|
+
| "edonus"
|
|
897
|
+
| "endpoint"
|
|
898
|
+
| "givr"
|
|
899
|
+
| "hecate"
|
|
900
|
+
| "hedge"
|
|
901
|
+
| "hesiod"
|
|
902
|
+
| "homer"
|
|
903
|
+
| "superhomer"
|
|
904
|
+
| "l2sip"
|
|
905
|
+
| "linus"
|
|
906
|
+
| "locus"
|
|
907
|
+
| "mcc"
|
|
908
|
+
| "mcs"
|
|
909
|
+
| "mercury"
|
|
910
|
+
| "mes"
|
|
911
|
+
| "mjs"
|
|
912
|
+
| "mmp"
|
|
913
|
+
| "mygdon"
|
|
914
|
+
| "orpheus"
|
|
915
|
+
| "page"
|
|
916
|
+
| "poros"
|
|
917
|
+
| "rhesos"
|
|
918
|
+
| "terminus"
|
|
919
|
+
| "tpgw"
|
|
920
|
+
| "ucc"
|
|
921
|
+
| "wdm"
|
|
922
|
+
| "webexivr";
|
|
923
|
+
userAgent: string;
|
|
924
|
+
buildType?: "debug" | "test" | "prod" | "tap" | "analyzer-test";
|
|
925
|
+
/**
|
|
926
|
+
* Will be used as a label for client software status
|
|
927
|
+
*/
|
|
928
|
+
upgradeChannel?: string;
|
|
929
|
+
/**
|
|
930
|
+
* Identifier for a particular instance of a service, such as a particular linus
|
|
931
|
+
*/
|
|
932
|
+
instanceId?: string;
|
|
933
|
+
networkType: "wifi" | "ethernet" | "cellular" | "unknown";
|
|
934
|
+
localIP?: string;
|
|
935
|
+
usingProxy?: boolean;
|
|
936
|
+
mediaEngineSoftwareVersion?: string;
|
|
937
|
+
environment?: string;
|
|
938
|
+
newEnvironment?: string;
|
|
939
|
+
/**
|
|
940
|
+
* Details of client environment
|
|
941
|
+
*/
|
|
942
|
+
clientInfo?: {
|
|
943
|
+
os: "windows" | "mac" | "linux" | "ios" | "android" | "chrome" | "uwp-arm64" | "other";
|
|
944
|
+
osVersion: string;
|
|
945
|
+
localIP?: string;
|
|
946
|
+
gatewayIP?: string;
|
|
947
|
+
macAddress?: string;
|
|
948
|
+
localNetworkPrefix?: string;
|
|
949
|
+
publicNetworkPrefix?: string;
|
|
950
|
+
browserLaunchMethod?:
|
|
951
|
+
| "activex"
|
|
952
|
+
| "npapi"
|
|
953
|
+
| "extension"
|
|
954
|
+
| "cwsapi"
|
|
955
|
+
| "java"
|
|
956
|
+
| "tfs"
|
|
957
|
+
| "webacd"
|
|
958
|
+
| "url-handler"
|
|
959
|
+
| "thinclient";
|
|
960
|
+
clientLaunchMethod?:
|
|
961
|
+
| "url-handler"
|
|
962
|
+
| "universal-link"
|
|
963
|
+
| "voice-command"
|
|
964
|
+
| "notification"
|
|
965
|
+
| "manual"
|
|
966
|
+
| "teams-cross-launch";
|
|
967
|
+
browser?: string;
|
|
968
|
+
browserVersion?: string;
|
|
969
|
+
/**
|
|
970
|
+
* this defines the major client types
|
|
971
|
+
*/
|
|
972
|
+
clientType?:
|
|
973
|
+
| "MEETING_CENTER"
|
|
974
|
+
| "EVENT_CENTER"
|
|
975
|
+
| "TRAINING_CENTER"
|
|
976
|
+
| "TEAMS_CLIENT"
|
|
977
|
+
| "TEAMS_DEVICE"
|
|
978
|
+
| "TEAMS_SHARE"
|
|
979
|
+
| "SIP"
|
|
980
|
+
| "RECORDING"
|
|
981
|
+
| "CLOUD_AWARE_SIP"
|
|
982
|
+
| "TEAMS_WXC_CLIENT"
|
|
983
|
+
| "WXC_CLIENT"
|
|
984
|
+
| "WXC_DEVICE"
|
|
985
|
+
| "WEBEX_JS_SDK"
|
|
986
|
+
| "VOICEA_CLIENT"
|
|
987
|
+
| "CISCO_SIP_GW"
|
|
988
|
+
| "WEBEX_SDK"
|
|
989
|
+
| "CPAAS_THIRD_PARTY_SDK"
|
|
990
|
+
| "WXC_THIRD_PARTY";
|
|
991
|
+
/**
|
|
992
|
+
* this defines the sub types of clients
|
|
993
|
+
*/
|
|
994
|
+
subClientType?:
|
|
995
|
+
| "DESKTOP_APP"
|
|
996
|
+
| "DESKTOP_APP_VDI"
|
|
997
|
+
| "DEVICE_CURRENT"
|
|
998
|
+
| "DEVICE_LEGACY_2020"
|
|
999
|
+
| "HVDI_APP"
|
|
1000
|
+
| "MOBILE_APP"
|
|
1001
|
+
| "VDI_APP"
|
|
1002
|
+
| "WEB_APP"
|
|
1003
|
+
| "MOBILE_NETWORK"
|
|
1004
|
+
| "HOLOGRAM_HEADSET_APP";
|
|
1005
|
+
clientVersion?: string;
|
|
1006
|
+
localClientVersion?: string;
|
|
1007
|
+
modelNumber?: string;
|
|
1008
|
+
joinFirstUpdateLater?: "ep-enabled" | "sp-enabled" | "not-enabled";
|
|
1009
|
+
standbyUsed?: boolean;
|
|
1010
|
+
prefetchDocShowUsed?: boolean;
|
|
1011
|
+
fastJoinUsed?: boolean;
|
|
1012
|
+
clientDownloadSize?: number;
|
|
1013
|
+
clientDownloadFileCount?: number;
|
|
1014
|
+
nodeId?: number;
|
|
1015
|
+
machineInfo?: string;
|
|
1016
|
+
parentAppName?: string;
|
|
1017
|
+
parentAppInPermitList?: boolean;
|
|
1018
|
+
meetingSiteType?: "train" | "webex-11" | "orion";
|
|
1019
|
+
CDNEnabled?: boolean;
|
|
1020
|
+
clientMajorVersion?: string;
|
|
1021
|
+
majorVersion?: number;
|
|
1022
|
+
minorVersion?: number;
|
|
1023
|
+
revision?: number;
|
|
1024
|
+
isValidClientVersion?: boolean;
|
|
1025
|
+
/**
|
|
1026
|
+
* This object defines the fields related to the CPU being used by the emitter of the event
|
|
1027
|
+
*/
|
|
1028
|
+
cpuInfo?: {
|
|
1029
|
+
description: string;
|
|
1030
|
+
clockSpeedGigaHertz: number;
|
|
1031
|
+
numberOfCores: number;
|
|
1032
|
+
architecture: "intel32" | "intel64" | "amd32" | "amd64" | "arm32" | "arm64" | "unknown";
|
|
1033
|
+
staticPerformance?: string;
|
|
1034
|
+
};
|
|
1035
|
+
shareType?:
|
|
1036
|
+
| "cb-normal-share"
|
|
1037
|
+
| "ce-airplay-share"
|
|
1038
|
+
| "ce-direct-share"
|
|
1039
|
+
| "ce-gui-loopback-share"
|
|
1040
|
+
| "ce-input-source-share"
|
|
1041
|
+
| "ce-input-source-share-hdmi"
|
|
1042
|
+
| "ce-input-source-share-usbc"
|
|
1043
|
+
| "ce-jpg-share"
|
|
1044
|
+
| "ce-miracast-share"
|
|
1045
|
+
| "mcs-normal-share"
|
|
1046
|
+
| "mcs-normal-audio-share"
|
|
1047
|
+
| "mcs-hfps-share"
|
|
1048
|
+
| "mcs-hfps-audio-share";
|
|
1049
|
+
/**
|
|
1050
|
+
* Video display mode currently in use
|
|
1051
|
+
*/
|
|
1052
|
+
videoDisplayMode?: "grid-view" | "active-speaker-view";
|
|
1053
|
+
videoLayoutType?:
|
|
1054
|
+
| "stack"
|
|
1055
|
+
| "stackWithShare"
|
|
1056
|
+
| "sideBySide"
|
|
1057
|
+
| "sideBySideWithShare"
|
|
1058
|
+
| "grid"
|
|
1059
|
+
| "floatingActive"
|
|
1060
|
+
| "floatingThumbnail"
|
|
1061
|
+
| "floatingGrid"
|
|
1062
|
+
| "overlay"
|
|
1063
|
+
| "focus"
|
|
1064
|
+
| "prominent"
|
|
1065
|
+
| "focusWithShare"
|
|
1066
|
+
| "prominentWithShare"
|
|
1067
|
+
| "equal"
|
|
1068
|
+
| "equalWithShare";
|
|
1069
|
+
/**
|
|
1070
|
+
* this defines the video render type of meetings
|
|
1071
|
+
*/
|
|
1072
|
+
videoRenderType?: "wme" | "client_d3d" | "client_gdi";
|
|
1073
|
+
vdiInfo?: unknown;
|
|
1074
|
+
is64BitsClient?: boolean;
|
|
1075
|
+
webexAppVersion?: string;
|
|
1076
|
+
/**
|
|
1077
|
+
* this defines launch 32 bits client reason
|
|
1078
|
+
*/
|
|
1079
|
+
launch32BitsReason?:
|
|
1080
|
+
| "forcewin32"
|
|
1081
|
+
| "disablewin64"
|
|
1082
|
+
| "platform_win32"
|
|
1083
|
+
| "platform_arm"
|
|
1084
|
+
| "platform_unknown"
|
|
1085
|
+
| "version_below_41.11";
|
|
1086
|
+
inMeetingUpdate?: boolean;
|
|
1087
|
+
mtaVersion?: string;
|
|
1088
|
+
isWarholOpening?: boolean;
|
|
1089
|
+
};
|
|
1090
|
+
isHybridMedia?: boolean;
|
|
1091
|
+
originData?: {};
|
|
1092
|
+
};
|
|
1093
|
+
reachabilityStatus?: "none" | "all-false" | "partial-success" | "all-success";
|
|
1094
|
+
recoveredBy?: "retry" | "new";
|
|
1095
|
+
joinType?: "auto" | "no-locus-join";
|
|
1096
|
+
audioJoinType?: "phone-call-in" | "phone-call-back" | "voip" | "device-call-back" | "never-join-audio";
|
|
1097
|
+
isVideoMuted?: boolean;
|
|
1098
|
+
/**
|
|
1099
|
+
* phrased HTTP timing
|
|
1100
|
+
*/
|
|
1101
|
+
joinHttpTiming?: {
|
|
1102
|
+
connect?: number;
|
|
1103
|
+
dnsLookup?: number;
|
|
1104
|
+
sendRequest?: number;
|
|
1105
|
+
compressRequest?: number;
|
|
1106
|
+
receiveResponse?: number;
|
|
1107
|
+
extractJson?: number;
|
|
1108
|
+
verifyCert?: number;
|
|
1109
|
+
refreshToken?: number;
|
|
1110
|
+
};
|
|
1111
|
+
icePhase?: "JOIN_MEETING_FINAL" | "JOIN_MEETING_RETRY" | "IN_MEETING";
|
|
1112
|
+
userType?: "host" | "attendee" | "cohost" | "panelist";
|
|
1113
|
+
updateType?: "new-user" | "update-user" | "return-user";
|
|
1114
|
+
isRoapCallEnabled?: boolean;
|
|
1115
|
+
isFirstTimeUser?: boolean;
|
|
1116
|
+
responseCode?: number;
|
|
1117
|
+
/**
|
|
1118
|
+
* Join Meeting Time
|
|
1119
|
+
*/
|
|
1120
|
+
joinTimes?: {
|
|
1121
|
+
totalJmt?: number;
|
|
1122
|
+
pageJmt?: number;
|
|
1123
|
+
pluginJmt?: number;
|
|
1124
|
+
clientJmt?: number;
|
|
1125
|
+
cbJmt?: number;
|
|
1126
|
+
clickToInterstitial?: number;
|
|
1127
|
+
interstitialToJoinOK?: number;
|
|
1128
|
+
getPCParametersTime?: number;
|
|
1129
|
+
getGPCParametersTime?: number;
|
|
1130
|
+
getDocShowTime?: number;
|
|
1131
|
+
guestTokenRetrievalTime?: number;
|
|
1132
|
+
showInterstitialTime?: number;
|
|
1133
|
+
clientDownloadTime?: number;
|
|
1134
|
+
clientDecompressTime?: number;
|
|
1135
|
+
GLAJmt?: number;
|
|
1136
|
+
pingJmt?: number;
|
|
1137
|
+
joinConfJmt?: number;
|
|
1138
|
+
announceJmt?: number;
|
|
1139
|
+
launchAppJmt?: number;
|
|
1140
|
+
networkLatency?: number;
|
|
1141
|
+
meetingInfoReqResp?: number;
|
|
1142
|
+
joinReqResp?: number;
|
|
1143
|
+
callInitJoinReq?: number;
|
|
1144
|
+
JMTDetail?: string;
|
|
1145
|
+
localSDPGenRemoteSDPRecv?: number;
|
|
1146
|
+
locusJoinReqResp?: number;
|
|
1147
|
+
joinReqSentReceived?: number;
|
|
1148
|
+
joinRespSentReceived?: number;
|
|
1149
|
+
locusBreakoutSessionMoveReqResp?: number;
|
|
1150
|
+
ICESetupTime?: number;
|
|
1151
|
+
callInitMediaEngineReady?: number;
|
|
1152
|
+
getU2CTime?: number;
|
|
1153
|
+
getWCATime?: number;
|
|
1154
|
+
gotKeyTime?: number;
|
|
1155
|
+
useKeyTime?: number;
|
|
1156
|
+
cacheKeyTime?: number;
|
|
1157
|
+
detectVDITime?: number;
|
|
1158
|
+
connectVDITime?: number;
|
|
1159
|
+
mmpPreConnected?: boolean;
|
|
1160
|
+
audioMCCJMT?: number;
|
|
1161
|
+
audioMCSJMT?: number;
|
|
1162
|
+
audioCBJMT?: number;
|
|
1163
|
+
audioTAJMT?: number;
|
|
1164
|
+
audioPstnJMT?: number;
|
|
1165
|
+
clientPstnDialOutJMT?: number;
|
|
1166
|
+
pstnDialInReferL2SIPJoinReq?: number;
|
|
1167
|
+
pstnDialInReferL2SIPRoapOk?: number;
|
|
1168
|
+
videoMCCJMT?: number;
|
|
1169
|
+
videoMCSJMT?: number;
|
|
1170
|
+
videoCBJMT?: number;
|
|
1171
|
+
videoJMT?: number;
|
|
1172
|
+
WDMRegistrationTime?: number;
|
|
1173
|
+
audioVOIPJMT?: number;
|
|
1174
|
+
audioCallbackJMT?: number;
|
|
1175
|
+
deviceCallbackJMT?: number;
|
|
1176
|
+
deviceParingJMT?: number;
|
|
1177
|
+
exchangeCITokenJMT?: number;
|
|
1178
|
+
registerWDMDeviceJMT?: number;
|
|
1179
|
+
interstitialToMediaOKJMT?: number;
|
|
1180
|
+
clickToMediaOKJMT?: number;
|
|
1181
|
+
stayLobbyTime?: number;
|
|
1182
|
+
totalMediaJMT?: number;
|
|
1183
|
+
loginTime?: number;
|
|
1184
|
+
loggedToInterstitial?: number;
|
|
1185
|
+
audioICESetupTime?: number;
|
|
1186
|
+
videoICESetupTime?: number;
|
|
1187
|
+
shareICESetupTime?: number;
|
|
1188
|
+
initializeCameraTime?: number;
|
|
1189
|
+
installerJmt?: number;
|
|
1190
|
+
getAppMetadataTime?: number;
|
|
1191
|
+
downloadMsiTime?: number;
|
|
1192
|
+
installAppTime?: number;
|
|
1193
|
+
downloadTime?: number;
|
|
1194
|
+
decompressTime?: number;
|
|
1195
|
+
roapOfferRespTime?: number;
|
|
1196
|
+
roapAnswerTime?: number;
|
|
1197
|
+
roapOkTime?: number;
|
|
1198
|
+
roapOfferReqToOkTime?: number;
|
|
1199
|
+
};
|
|
1200
|
+
/**
|
|
1201
|
+
* ROAP message details
|
|
1202
|
+
*/
|
|
1203
|
+
roap?: {
|
|
1204
|
+
type?:
|
|
1205
|
+
| "ANSWER"
|
|
1206
|
+
| "ERROR"
|
|
1207
|
+
| "OFFER"
|
|
1208
|
+
| "OFFER_REQUEST"
|
|
1209
|
+
| "OFFER_RESPONSE"
|
|
1210
|
+
| "OK"
|
|
1211
|
+
| "TURN_DISCOVERY_REQUEST"
|
|
1212
|
+
| "TURN_DISCOVERY_RESPONSE";
|
|
1213
|
+
messageType?:
|
|
1214
|
+
| "ANSWER"
|
|
1215
|
+
| "ERROR"
|
|
1216
|
+
| "OFFER"
|
|
1217
|
+
| "OFFER_REQUEST"
|
|
1218
|
+
| "OFFER_RESPONSE"
|
|
1219
|
+
| "OK"
|
|
1220
|
+
| "TURN_DISCOVERY_REQUEST"
|
|
1221
|
+
| "TURN_DISCOVERY_RESPONSE";
|
|
1222
|
+
error?: string;
|
|
1223
|
+
duration?: number;
|
|
1224
|
+
};
|
|
1225
|
+
/**
|
|
1226
|
+
* metadata associated with emitter of the event. This data is included only in the first emitted for a given call and does not need to be repeated with each event.
|
|
1227
|
+
*/
|
|
1228
|
+
mediaMetadata?: {
|
|
1229
|
+
mediaEngineSoftwareType: string;
|
|
1230
|
+
mediaEngineSoftwareVersion: string;
|
|
1231
|
+
applicationSoftwareType: string;
|
|
1232
|
+
applicationSoftwareVersion: string;
|
|
1233
|
+
hardwareType?: string;
|
|
1234
|
+
clientRegion?: string;
|
|
1235
|
+
serverRegion?: string;
|
|
1236
|
+
serverOrg?: string;
|
|
1237
|
+
serverGroup?: string;
|
|
1238
|
+
serverAlias?: string;
|
|
1239
|
+
serverDeployType?: "private" | "public";
|
|
1240
|
+
startTime: string;
|
|
1241
|
+
endTime?: string;
|
|
1242
|
+
csi?: number[];
|
|
1243
|
+
isCascade?: boolean;
|
|
1244
|
+
isHybridMedia?: boolean;
|
|
1245
|
+
videoMeshClusterName?: string;
|
|
1246
|
+
videoMeshServerName?: string;
|
|
1247
|
+
isTIP?: boolean;
|
|
1248
|
+
isMARI?: boolean;
|
|
1249
|
+
has264Checksum?: boolean;
|
|
1250
|
+
intervalPeriod?: number;
|
|
1251
|
+
cascadePeerRegion?: string;
|
|
1252
|
+
cascadePeerOrg?: string;
|
|
1253
|
+
cascadePeerGroup?: string;
|
|
1254
|
+
cascadePeerAlias?: string;
|
|
1255
|
+
cascadePeerServerType?:
|
|
1256
|
+
| "CB"
|
|
1257
|
+
| "CMS"
|
|
1258
|
+
| "HESIOD"
|
|
1259
|
+
| "LINUS"
|
|
1260
|
+
| "MCC"
|
|
1261
|
+
| "MCS"
|
|
1262
|
+
| "MES"
|
|
1263
|
+
| "MJS"
|
|
1264
|
+
| "MRS"
|
|
1265
|
+
| "MYGDONUS"
|
|
1266
|
+
| "MZM"
|
|
1267
|
+
| "TERMINUS"
|
|
1268
|
+
| "TPGW"
|
|
1269
|
+
| "TA"
|
|
1270
|
+
| "HOMER"
|
|
1271
|
+
| "SUPERHOMER"
|
|
1272
|
+
| "U2C"
|
|
1273
|
+
| "WCA"
|
|
1274
|
+
| "MSE"
|
|
1275
|
+
| "UNKNOWN";
|
|
1276
|
+
cascadePeerDeployType?: "private" | "public";
|
|
1277
|
+
};
|
|
1278
|
+
/**
|
|
1279
|
+
* Details of server environment
|
|
1280
|
+
*/
|
|
1281
|
+
serverInfo?: {
|
|
1282
|
+
serverType:
|
|
1283
|
+
| "CB"
|
|
1284
|
+
| "CMS"
|
|
1285
|
+
| "HESIOD"
|
|
1286
|
+
| "LINUS"
|
|
1287
|
+
| "MCC"
|
|
1288
|
+
| "MCS"
|
|
1289
|
+
| "MES"
|
|
1290
|
+
| "MJS"
|
|
1291
|
+
| "MRS"
|
|
1292
|
+
| "MYGDONUS"
|
|
1293
|
+
| "MZM"
|
|
1294
|
+
| "TERMINUS"
|
|
1295
|
+
| "TPGW"
|
|
1296
|
+
| "TA"
|
|
1297
|
+
| "HOMER"
|
|
1298
|
+
| "SUPERHOMER"
|
|
1299
|
+
| "U2C"
|
|
1300
|
+
| "WCA"
|
|
1301
|
+
| "MSE"
|
|
1302
|
+
| "UNKNOWN";
|
|
1303
|
+
serverAddress?: string;
|
|
1304
|
+
};
|
|
1305
|
+
/**
|
|
1306
|
+
* Details of client connect session
|
|
1307
|
+
*/
|
|
1308
|
+
videoSession?: {
|
|
1309
|
+
mediaSessionType?: "AUDIO_CALLBACK" | "AUDIO_VOIP" | "DEVICE_CALLBACK" | "DEVICE_PAIRING" | "VIDEO";
|
|
1310
|
+
isSuccess?: boolean;
|
|
1311
|
+
signalingServerType?:
|
|
1312
|
+
| "CB"
|
|
1313
|
+
| "CMS"
|
|
1314
|
+
| "HESIOD"
|
|
1315
|
+
| "LINUS"
|
|
1316
|
+
| "MCC"
|
|
1317
|
+
| "MCS"
|
|
1318
|
+
| "MES"
|
|
1319
|
+
| "MJS"
|
|
1320
|
+
| "MRS"
|
|
1321
|
+
| "MYGDONUS"
|
|
1322
|
+
| "MZM"
|
|
1323
|
+
| "TERMINUS"
|
|
1324
|
+
| "TPGW"
|
|
1325
|
+
| "TA"
|
|
1326
|
+
| "HOMER"
|
|
1327
|
+
| "SUPERHOMER"
|
|
1328
|
+
| "U2C"
|
|
1329
|
+
| "WCA"
|
|
1330
|
+
| "MSE"
|
|
1331
|
+
| "UNKNOWN";
|
|
1332
|
+
signalingServerAddress?: string;
|
|
1333
|
+
mediaServerType?:
|
|
1334
|
+
| "CB"
|
|
1335
|
+
| "CMS"
|
|
1336
|
+
| "HESIOD"
|
|
1337
|
+
| "LINUS"
|
|
1338
|
+
| "MCC"
|
|
1339
|
+
| "MCS"
|
|
1340
|
+
| "MES"
|
|
1341
|
+
| "MJS"
|
|
1342
|
+
| "MRS"
|
|
1343
|
+
| "MYGDONUS"
|
|
1344
|
+
| "MZM"
|
|
1345
|
+
| "TERMINUS"
|
|
1346
|
+
| "TPGW"
|
|
1347
|
+
| "TA"
|
|
1348
|
+
| "HOMER"
|
|
1349
|
+
| "SUPERHOMER"
|
|
1350
|
+
| "U2C"
|
|
1351
|
+
| "WCA"
|
|
1352
|
+
| "MSE"
|
|
1353
|
+
| "UNKNOWN";
|
|
1354
|
+
mediaServerAddress?: string;
|
|
1355
|
+
errorDescription?: string;
|
|
1356
|
+
errorCode?: number;
|
|
1357
|
+
mediaErrorType?:
|
|
1358
|
+
| "NO_ERROR"
|
|
1359
|
+
| "DEVICE_ERROR"
|
|
1360
|
+
| "LOAD_LIBRARY_ERROR"
|
|
1361
|
+
| "MCS_SESSION_CONNECT_ERROR"
|
|
1362
|
+
| "CB_SESSION_CREATE_ERROR"
|
|
1363
|
+
| "NO_FRAME_DECODE_ERROR"
|
|
1364
|
+
| "NO_PACKET_RECV_ERROR"
|
|
1365
|
+
| "LOW_VOLUME_ERROR"
|
|
1366
|
+
| "INITIAL_MEMORY_ERROR"
|
|
1367
|
+
| "MAC_VIRTUAL_AUDIO_DRV_ERROR"
|
|
1368
|
+
| "MMP_SESSION_CONNECT_ERROR"
|
|
1369
|
+
| "MEDIA_PROCESS_CRASH_ERROR"
|
|
1370
|
+
| "HEARTBEAT_LOST_WITH_MEDIA_PROCESS_ERROR"
|
|
1371
|
+
| "MEDIA_SERVER_CONNECT_ERROR"
|
|
1372
|
+
| "LOCUS_SESSION_CONNECT_ERROR"
|
|
1373
|
+
| "NO_PACKET_SEND_ERROR"
|
|
1374
|
+
| "NETWORK_LOST_ERROR"
|
|
1375
|
+
| "MEDIA_NOT_AVAILABLE";
|
|
1376
|
+
isJoinAtStart?: boolean;
|
|
1377
|
+
};
|
|
1378
|
+
/**
|
|
1379
|
+
* Details of client connect session
|
|
1380
|
+
*/
|
|
1381
|
+
audioVOIPSession?: {
|
|
1382
|
+
mediaSessionType?: "AUDIO_CALLBACK" | "AUDIO_VOIP" | "DEVICE_CALLBACK" | "DEVICE_PAIRING" | "VIDEO";
|
|
1383
|
+
isSuccess?: boolean;
|
|
1384
|
+
signalingServerType?:
|
|
1385
|
+
| "CB"
|
|
1386
|
+
| "CMS"
|
|
1387
|
+
| "HESIOD"
|
|
1388
|
+
| "LINUS"
|
|
1389
|
+
| "MCC"
|
|
1390
|
+
| "MCS"
|
|
1391
|
+
| "MES"
|
|
1392
|
+
| "MJS"
|
|
1393
|
+
| "MRS"
|
|
1394
|
+
| "MYGDONUS"
|
|
1395
|
+
| "MZM"
|
|
1396
|
+
| "TERMINUS"
|
|
1397
|
+
| "TPGW"
|
|
1398
|
+
| "TA"
|
|
1399
|
+
| "HOMER"
|
|
1400
|
+
| "SUPERHOMER"
|
|
1401
|
+
| "U2C"
|
|
1402
|
+
| "WCA"
|
|
1403
|
+
| "MSE"
|
|
1404
|
+
| "UNKNOWN";
|
|
1405
|
+
signalingServerAddress?: string;
|
|
1406
|
+
mediaServerType?:
|
|
1407
|
+
| "CB"
|
|
1408
|
+
| "CMS"
|
|
1409
|
+
| "HESIOD"
|
|
1410
|
+
| "LINUS"
|
|
1411
|
+
| "MCC"
|
|
1412
|
+
| "MCS"
|
|
1413
|
+
| "MES"
|
|
1414
|
+
| "MJS"
|
|
1415
|
+
| "MRS"
|
|
1416
|
+
| "MYGDONUS"
|
|
1417
|
+
| "MZM"
|
|
1418
|
+
| "TERMINUS"
|
|
1419
|
+
| "TPGW"
|
|
1420
|
+
| "TA"
|
|
1421
|
+
| "HOMER"
|
|
1422
|
+
| "SUPERHOMER"
|
|
1423
|
+
| "U2C"
|
|
1424
|
+
| "WCA"
|
|
1425
|
+
| "MSE"
|
|
1426
|
+
| "UNKNOWN";
|
|
1427
|
+
mediaServerAddress?: string;
|
|
1428
|
+
errorDescription?: string;
|
|
1429
|
+
errorCode?: number;
|
|
1430
|
+
mediaErrorType?:
|
|
1431
|
+
| "NO_ERROR"
|
|
1432
|
+
| "DEVICE_ERROR"
|
|
1433
|
+
| "LOAD_LIBRARY_ERROR"
|
|
1434
|
+
| "MCS_SESSION_CONNECT_ERROR"
|
|
1435
|
+
| "CB_SESSION_CREATE_ERROR"
|
|
1436
|
+
| "NO_FRAME_DECODE_ERROR"
|
|
1437
|
+
| "NO_PACKET_RECV_ERROR"
|
|
1438
|
+
| "LOW_VOLUME_ERROR"
|
|
1439
|
+
| "INITIAL_MEMORY_ERROR"
|
|
1440
|
+
| "MAC_VIRTUAL_AUDIO_DRV_ERROR"
|
|
1441
|
+
| "MMP_SESSION_CONNECT_ERROR"
|
|
1442
|
+
| "MEDIA_PROCESS_CRASH_ERROR"
|
|
1443
|
+
| "HEARTBEAT_LOST_WITH_MEDIA_PROCESS_ERROR"
|
|
1444
|
+
| "MEDIA_SERVER_CONNECT_ERROR"
|
|
1445
|
+
| "LOCUS_SESSION_CONNECT_ERROR"
|
|
1446
|
+
| "NO_PACKET_SEND_ERROR"
|
|
1447
|
+
| "NETWORK_LOST_ERROR"
|
|
1448
|
+
| "MEDIA_NOT_AVAILABLE";
|
|
1449
|
+
isJoinAtStart?: boolean;
|
|
1450
|
+
};
|
|
1451
|
+
/**
|
|
1452
|
+
* Details of client connect session
|
|
1453
|
+
*/
|
|
1454
|
+
audioCallbackSession?: {
|
|
1455
|
+
mediaSessionType?: "AUDIO_CALLBACK" | "AUDIO_VOIP" | "DEVICE_CALLBACK" | "DEVICE_PAIRING" | "VIDEO";
|
|
1456
|
+
isSuccess?: boolean;
|
|
1457
|
+
signalingServerType?:
|
|
1458
|
+
| "CB"
|
|
1459
|
+
| "CMS"
|
|
1460
|
+
| "HESIOD"
|
|
1461
|
+
| "LINUS"
|
|
1462
|
+
| "MCC"
|
|
1463
|
+
| "MCS"
|
|
1464
|
+
| "MES"
|
|
1465
|
+
| "MJS"
|
|
1466
|
+
| "MRS"
|
|
1467
|
+
| "MYGDONUS"
|
|
1468
|
+
| "MZM"
|
|
1469
|
+
| "TERMINUS"
|
|
1470
|
+
| "TPGW"
|
|
1471
|
+
| "TA"
|
|
1472
|
+
| "HOMER"
|
|
1473
|
+
| "SUPERHOMER"
|
|
1474
|
+
| "U2C"
|
|
1475
|
+
| "WCA"
|
|
1476
|
+
| "MSE"
|
|
1477
|
+
| "UNKNOWN";
|
|
1478
|
+
signalingServerAddress?: string;
|
|
1479
|
+
mediaServerType?:
|
|
1480
|
+
| "CB"
|
|
1481
|
+
| "CMS"
|
|
1482
|
+
| "HESIOD"
|
|
1483
|
+
| "LINUS"
|
|
1484
|
+
| "MCC"
|
|
1485
|
+
| "MCS"
|
|
1486
|
+
| "MES"
|
|
1487
|
+
| "MJS"
|
|
1488
|
+
| "MRS"
|
|
1489
|
+
| "MYGDONUS"
|
|
1490
|
+
| "MZM"
|
|
1491
|
+
| "TERMINUS"
|
|
1492
|
+
| "TPGW"
|
|
1493
|
+
| "TA"
|
|
1494
|
+
| "HOMER"
|
|
1495
|
+
| "SUPERHOMER"
|
|
1496
|
+
| "U2C"
|
|
1497
|
+
| "WCA"
|
|
1498
|
+
| "MSE"
|
|
1499
|
+
| "UNKNOWN";
|
|
1500
|
+
mediaServerAddress?: string;
|
|
1501
|
+
errorDescription?: string;
|
|
1502
|
+
errorCode?: number;
|
|
1503
|
+
mediaErrorType?:
|
|
1504
|
+
| "NO_ERROR"
|
|
1505
|
+
| "DEVICE_ERROR"
|
|
1506
|
+
| "LOAD_LIBRARY_ERROR"
|
|
1507
|
+
| "MCS_SESSION_CONNECT_ERROR"
|
|
1508
|
+
| "CB_SESSION_CREATE_ERROR"
|
|
1509
|
+
| "NO_FRAME_DECODE_ERROR"
|
|
1510
|
+
| "NO_PACKET_RECV_ERROR"
|
|
1511
|
+
| "LOW_VOLUME_ERROR"
|
|
1512
|
+
| "INITIAL_MEMORY_ERROR"
|
|
1513
|
+
| "MAC_VIRTUAL_AUDIO_DRV_ERROR"
|
|
1514
|
+
| "MMP_SESSION_CONNECT_ERROR"
|
|
1515
|
+
| "MEDIA_PROCESS_CRASH_ERROR"
|
|
1516
|
+
| "HEARTBEAT_LOST_WITH_MEDIA_PROCESS_ERROR"
|
|
1517
|
+
| "MEDIA_SERVER_CONNECT_ERROR"
|
|
1518
|
+
| "LOCUS_SESSION_CONNECT_ERROR"
|
|
1519
|
+
| "NO_PACKET_SEND_ERROR"
|
|
1520
|
+
| "NETWORK_LOST_ERROR"
|
|
1521
|
+
| "MEDIA_NOT_AVAILABLE";
|
|
1522
|
+
isJoinAtStart?: boolean;
|
|
1523
|
+
};
|
|
1524
|
+
/**
|
|
1525
|
+
* Details of client connect session
|
|
1526
|
+
*/
|
|
1527
|
+
devicePairingSession?: {
|
|
1528
|
+
mediaSessionType?: "AUDIO_CALLBACK" | "AUDIO_VOIP" | "DEVICE_CALLBACK" | "DEVICE_PAIRING" | "VIDEO";
|
|
1529
|
+
isSuccess?: boolean;
|
|
1530
|
+
signalingServerType?:
|
|
1531
|
+
| "CB"
|
|
1532
|
+
| "CMS"
|
|
1533
|
+
| "HESIOD"
|
|
1534
|
+
| "LINUS"
|
|
1535
|
+
| "MCC"
|
|
1536
|
+
| "MCS"
|
|
1537
|
+
| "MES"
|
|
1538
|
+
| "MJS"
|
|
1539
|
+
| "MRS"
|
|
1540
|
+
| "MYGDONUS"
|
|
1541
|
+
| "MZM"
|
|
1542
|
+
| "TERMINUS"
|
|
1543
|
+
| "TPGW"
|
|
1544
|
+
| "TA"
|
|
1545
|
+
| "HOMER"
|
|
1546
|
+
| "SUPERHOMER"
|
|
1547
|
+
| "U2C"
|
|
1548
|
+
| "WCA"
|
|
1549
|
+
| "MSE"
|
|
1550
|
+
| "UNKNOWN";
|
|
1551
|
+
signalingServerAddress?: string;
|
|
1552
|
+
mediaServerType?:
|
|
1553
|
+
| "CB"
|
|
1554
|
+
| "CMS"
|
|
1555
|
+
| "HESIOD"
|
|
1556
|
+
| "LINUS"
|
|
1557
|
+
| "MCC"
|
|
1558
|
+
| "MCS"
|
|
1559
|
+
| "MES"
|
|
1560
|
+
| "MJS"
|
|
1561
|
+
| "MRS"
|
|
1562
|
+
| "MYGDONUS"
|
|
1563
|
+
| "MZM"
|
|
1564
|
+
| "TERMINUS"
|
|
1565
|
+
| "TPGW"
|
|
1566
|
+
| "TA"
|
|
1567
|
+
| "HOMER"
|
|
1568
|
+
| "SUPERHOMER"
|
|
1569
|
+
| "U2C"
|
|
1570
|
+
| "WCA"
|
|
1571
|
+
| "MSE"
|
|
1572
|
+
| "UNKNOWN";
|
|
1573
|
+
mediaServerAddress?: string;
|
|
1574
|
+
errorDescription?: string;
|
|
1575
|
+
errorCode?: number;
|
|
1576
|
+
mediaErrorType?:
|
|
1577
|
+
| "NO_ERROR"
|
|
1578
|
+
| "DEVICE_ERROR"
|
|
1579
|
+
| "LOAD_LIBRARY_ERROR"
|
|
1580
|
+
| "MCS_SESSION_CONNECT_ERROR"
|
|
1581
|
+
| "CB_SESSION_CREATE_ERROR"
|
|
1582
|
+
| "NO_FRAME_DECODE_ERROR"
|
|
1583
|
+
| "NO_PACKET_RECV_ERROR"
|
|
1584
|
+
| "LOW_VOLUME_ERROR"
|
|
1585
|
+
| "INITIAL_MEMORY_ERROR"
|
|
1586
|
+
| "MAC_VIRTUAL_AUDIO_DRV_ERROR"
|
|
1587
|
+
| "MMP_SESSION_CONNECT_ERROR"
|
|
1588
|
+
| "MEDIA_PROCESS_CRASH_ERROR"
|
|
1589
|
+
| "HEARTBEAT_LOST_WITH_MEDIA_PROCESS_ERROR"
|
|
1590
|
+
| "MEDIA_SERVER_CONNECT_ERROR"
|
|
1591
|
+
| "LOCUS_SESSION_CONNECT_ERROR"
|
|
1592
|
+
| "NO_PACKET_SEND_ERROR"
|
|
1593
|
+
| "NETWORK_LOST_ERROR"
|
|
1594
|
+
| "MEDIA_NOT_AVAILABLE";
|
|
1595
|
+
isJoinAtStart?: boolean;
|
|
1596
|
+
};
|
|
1597
|
+
/**
|
|
1598
|
+
* Details of client connect session
|
|
1599
|
+
*/
|
|
1600
|
+
deviceCallbackSession?: {
|
|
1601
|
+
mediaSessionType?: "AUDIO_CALLBACK" | "AUDIO_VOIP" | "DEVICE_CALLBACK" | "DEVICE_PAIRING" | "VIDEO";
|
|
1602
|
+
isSuccess?: boolean;
|
|
1603
|
+
signalingServerType?:
|
|
1604
|
+
| "CB"
|
|
1605
|
+
| "CMS"
|
|
1606
|
+
| "HESIOD"
|
|
1607
|
+
| "LINUS"
|
|
1608
|
+
| "MCC"
|
|
1609
|
+
| "MCS"
|
|
1610
|
+
| "MES"
|
|
1611
|
+
| "MJS"
|
|
1612
|
+
| "MRS"
|
|
1613
|
+
| "MYGDONUS"
|
|
1614
|
+
| "MZM"
|
|
1615
|
+
| "TERMINUS"
|
|
1616
|
+
| "TPGW"
|
|
1617
|
+
| "TA"
|
|
1618
|
+
| "HOMER"
|
|
1619
|
+
| "SUPERHOMER"
|
|
1620
|
+
| "U2C"
|
|
1621
|
+
| "WCA"
|
|
1622
|
+
| "MSE"
|
|
1623
|
+
| "UNKNOWN";
|
|
1624
|
+
signalingServerAddress?: string;
|
|
1625
|
+
mediaServerType?:
|
|
1626
|
+
| "CB"
|
|
1627
|
+
| "CMS"
|
|
1628
|
+
| "HESIOD"
|
|
1629
|
+
| "LINUS"
|
|
1630
|
+
| "MCC"
|
|
1631
|
+
| "MCS"
|
|
1632
|
+
| "MES"
|
|
1633
|
+
| "MJS"
|
|
1634
|
+
| "MRS"
|
|
1635
|
+
| "MYGDONUS"
|
|
1636
|
+
| "MZM"
|
|
1637
|
+
| "TERMINUS"
|
|
1638
|
+
| "TPGW"
|
|
1639
|
+
| "TA"
|
|
1640
|
+
| "HOMER"
|
|
1641
|
+
| "SUPERHOMER"
|
|
1642
|
+
| "U2C"
|
|
1643
|
+
| "WCA"
|
|
1644
|
+
| "MSE"
|
|
1645
|
+
| "UNKNOWN";
|
|
1646
|
+
mediaServerAddress?: string;
|
|
1647
|
+
errorDescription?: string;
|
|
1648
|
+
errorCode?: number;
|
|
1649
|
+
mediaErrorType?:
|
|
1650
|
+
| "NO_ERROR"
|
|
1651
|
+
| "DEVICE_ERROR"
|
|
1652
|
+
| "LOAD_LIBRARY_ERROR"
|
|
1653
|
+
| "MCS_SESSION_CONNECT_ERROR"
|
|
1654
|
+
| "CB_SESSION_CREATE_ERROR"
|
|
1655
|
+
| "NO_FRAME_DECODE_ERROR"
|
|
1656
|
+
| "NO_PACKET_RECV_ERROR"
|
|
1657
|
+
| "LOW_VOLUME_ERROR"
|
|
1658
|
+
| "INITIAL_MEMORY_ERROR"
|
|
1659
|
+
| "MAC_VIRTUAL_AUDIO_DRV_ERROR"
|
|
1660
|
+
| "MMP_SESSION_CONNECT_ERROR"
|
|
1661
|
+
| "MEDIA_PROCESS_CRASH_ERROR"
|
|
1662
|
+
| "HEARTBEAT_LOST_WITH_MEDIA_PROCESS_ERROR"
|
|
1663
|
+
| "MEDIA_SERVER_CONNECT_ERROR"
|
|
1664
|
+
| "LOCUS_SESSION_CONNECT_ERROR"
|
|
1665
|
+
| "NO_PACKET_SEND_ERROR"
|
|
1666
|
+
| "NETWORK_LOST_ERROR"
|
|
1667
|
+
| "MEDIA_NOT_AVAILABLE";
|
|
1668
|
+
isJoinAtStart?: boolean;
|
|
1669
|
+
};
|
|
1670
|
+
/**
|
|
1671
|
+
* report when client crash
|
|
1672
|
+
*/
|
|
1673
|
+
crashReport?: {
|
|
1674
|
+
/**
|
|
1675
|
+
* data define for background noise removal event
|
|
1676
|
+
*/
|
|
1677
|
+
eventData?: {
|
|
1678
|
+
crashType?: "client" | "other" | "thirdparty" | "wme" | "mta";
|
|
1679
|
+
processName?: string;
|
|
1680
|
+
moduleName?: string;
|
|
1681
|
+
threadInfo?: string;
|
|
1682
|
+
crashFrame?: string;
|
|
1683
|
+
crashStack?: string;
|
|
1684
|
+
exceptionType?: "unset" | "crash" | "freeze" | "disappear";
|
|
1685
|
+
lastAction?: string;
|
|
1686
|
+
forTrace?: boolean;
|
|
1687
|
+
registerInfo?: string;
|
|
1688
|
+
extData?: string;
|
|
1689
|
+
};
|
|
1690
|
+
};
|
|
1691
|
+
clientCrashCallStack?: string;
|
|
1692
|
+
/**
|
|
1693
|
+
* Details of breakout session information, sent after end of breakout session
|
|
1694
|
+
*/
|
|
1695
|
+
breakoutSessionSummaryInfo?: {
|
|
1696
|
+
duration: number;
|
|
1697
|
+
subConferenceCount: number;
|
|
1698
|
+
totalAttendeeCount: number;
|
|
1699
|
+
participantCount: number;
|
|
1700
|
+
assignedparticipantCount: number;
|
|
1701
|
+
cohostCount: number;
|
|
1702
|
+
averageAttendeeCountPerSubConference: number;
|
|
1703
|
+
totalHostJoinedCount: number;
|
|
1704
|
+
isBoStarted: boolean;
|
|
1705
|
+
isBoEnabled: boolean;
|
|
1706
|
+
isPreAssigned: boolean;
|
|
1707
|
+
boStartedTimers: number;
|
|
1708
|
+
createType: "pre-meeting" | "in-meeting";
|
|
1709
|
+
enableType: "pre-meeting" | "in-meeting";
|
|
1710
|
+
};
|
|
1711
|
+
breakoutSessionAction?:
|
|
1712
|
+
| "add"
|
|
1713
|
+
| "assign"
|
|
1714
|
+
| "ask-for-help"
|
|
1715
|
+
| "breakout-session-open"
|
|
1716
|
+
| "breakout-session-close"
|
|
1717
|
+
| "breakout-session-mute-all"
|
|
1718
|
+
| "breakout-session-unmute-all"
|
|
1719
|
+
| "broadcast-open"
|
|
1720
|
+
| "broadcast-send"
|
|
1721
|
+
| "cancel-automatic-close"
|
|
1722
|
+
| "create"
|
|
1723
|
+
| "delete"
|
|
1724
|
+
| "disable"
|
|
1725
|
+
| "dynamic-assign"
|
|
1726
|
+
| "dynamic-exchange"
|
|
1727
|
+
| "end"
|
|
1728
|
+
| "enable"
|
|
1729
|
+
| "exchange"
|
|
1730
|
+
| "join"
|
|
1731
|
+
| "leave"
|
|
1732
|
+
| "lock-all-sessions"
|
|
1733
|
+
| "lock-this-sessions"
|
|
1734
|
+
| "moveto"
|
|
1735
|
+
| "mute-all"
|
|
1736
|
+
| "mute-all-set"
|
|
1737
|
+
| "recreate"
|
|
1738
|
+
| "remove"
|
|
1739
|
+
| "rename"
|
|
1740
|
+
| "search"
|
|
1741
|
+
| "select-all"
|
|
1742
|
+
| "show-all-sessions"
|
|
1743
|
+
| "start"
|
|
1744
|
+
| "unmute-all"
|
|
1745
|
+
| "unlock-all-sessions"
|
|
1746
|
+
| "unlock-this-sessions"
|
|
1747
|
+
| "allow-leave-session"
|
|
1748
|
+
| "allow-join-session-later"
|
|
1749
|
+
| "auto-end-sessions"
|
|
1750
|
+
| "time-before-leave-session";
|
|
1751
|
+
clientAction?:
|
|
1752
|
+
| "changeVolume"
|
|
1753
|
+
| "disableHardMute"
|
|
1754
|
+
| "enableHardMute"
|
|
1755
|
+
| "gesture"
|
|
1756
|
+
| "joinMeetingWithPairedDevice"
|
|
1757
|
+
| "muteAll"
|
|
1758
|
+
| "mutePairedDevice"
|
|
1759
|
+
| "muteSipDevice"
|
|
1760
|
+
| "reaction"
|
|
1761
|
+
| "requestUnmute"
|
|
1762
|
+
| "setLanguage"
|
|
1763
|
+
| "unifyRaiseHand"
|
|
1764
|
+
| "unmuteAll"
|
|
1765
|
+
| "unmutePairedDevice"
|
|
1766
|
+
| "unmuteSipDevice";
|
|
1767
|
+
clientActionFrom?:
|
|
1768
|
+
| "actionBar"
|
|
1769
|
+
| "auto"
|
|
1770
|
+
| "breakoutAssignDialog"
|
|
1771
|
+
| "breakoutPopupDialog"
|
|
1772
|
+
| "fitMenu"
|
|
1773
|
+
| "hardMuteMoreOptionsDialog"
|
|
1774
|
+
| "initAction"
|
|
1775
|
+
| "mainMenu"
|
|
1776
|
+
| "plist"
|
|
1777
|
+
| "plistContextMenu"
|
|
1778
|
+
| "plistToolBar"
|
|
1779
|
+
| "videoThumbnail"
|
|
1780
|
+
| "muteAllAction"
|
|
1781
|
+
| "reactionPopupDialog"
|
|
1782
|
+
| "unmuteAllAction";
|
|
1783
|
+
clientActionTime?: number;
|
|
1784
|
+
/**
|
|
1785
|
+
* Details of client action
|
|
1786
|
+
*/
|
|
1787
|
+
clientActionInfo?: {
|
|
1788
|
+
clientAction:
|
|
1789
|
+
| "changeVolume"
|
|
1790
|
+
| "disableHardMute"
|
|
1791
|
+
| "enableHardMute"
|
|
1792
|
+
| "gesture"
|
|
1793
|
+
| "joinMeetingWithPairedDevice"
|
|
1794
|
+
| "muteAll"
|
|
1795
|
+
| "mutePairedDevice"
|
|
1796
|
+
| "muteSipDevice"
|
|
1797
|
+
| "reaction"
|
|
1798
|
+
| "requestUnmute"
|
|
1799
|
+
| "setLanguage"
|
|
1800
|
+
| "unifyRaiseHand"
|
|
1801
|
+
| "unmuteAll"
|
|
1802
|
+
| "unmutePairedDevice"
|
|
1803
|
+
| "unmuteSipDevice";
|
|
1804
|
+
actionFrom?:
|
|
1805
|
+
| "actionBar"
|
|
1806
|
+
| "auto"
|
|
1807
|
+
| "breakoutAssignDialog"
|
|
1808
|
+
| "breakoutPopupDialog"
|
|
1809
|
+
| "fitMenu"
|
|
1810
|
+
| "hardMuteMoreOptionsDialog"
|
|
1811
|
+
| "initAction"
|
|
1812
|
+
| "mainMenu"
|
|
1813
|
+
| "plist"
|
|
1814
|
+
| "plistContextMenu"
|
|
1815
|
+
| "plistToolBar"
|
|
1816
|
+
| "videoThumbnail"
|
|
1817
|
+
| "muteAllAction"
|
|
1818
|
+
| "reactionPopupDialog"
|
|
1819
|
+
| "unmuteAllAction";
|
|
1820
|
+
actionRole?: "host" | "attendee" | "presenter" | "cohost" | "self";
|
|
1821
|
+
duration?: number;
|
|
1822
|
+
fromValue?: string;
|
|
1823
|
+
toValue?: string;
|
|
1824
|
+
gestureType?: "clap" | "none" | "raiseHand" | "thumpUp" | "thumbDown";
|
|
1825
|
+
languageAction?:
|
|
1826
|
+
| "openLanguageDialog"
|
|
1827
|
+
| "subscribeTransLanguage"
|
|
1828
|
+
| "unsubscribeTransLanguage"
|
|
1829
|
+
| "changeSpeakLanguage"
|
|
1830
|
+
| "transcriptTurnOnWebexAssistantDialog"
|
|
1831
|
+
| "transcriptTurnOffWebexAssistantDialog"
|
|
1832
|
+
| "transcriptTurnOnWebexAssistantMenu"
|
|
1833
|
+
| "transcriptTurn0ffWebexAssistantMenu"
|
|
1834
|
+
| "transcriptViewHighlightPanel"
|
|
1835
|
+
| "transcriptViewHighlightPanelViaCloseCaption"
|
|
1836
|
+
| "transcriptViewHighlightPanelViaPanelOption"
|
|
1837
|
+
| "transcriptViewHighlightPanelViaWebexAssistant"
|
|
1838
|
+
| "transcriptEnableCloseCaptionDialog"
|
|
1839
|
+
| "transcriptDisableCloseCaptionDialog"
|
|
1840
|
+
| "transcriptDisableCloseCaptionDialogForActiveCCOpen"
|
|
1841
|
+
| "transcriptDisableCloseCaptionDialogViaCCButton"
|
|
1842
|
+
| "transcriptDisableCloseCaptionDialogViaCCDialog"
|
|
1843
|
+
| "transcriptEnableCloseCaptionMenu"
|
|
1844
|
+
| "transcriptDisableCloseCaptionMenu"
|
|
1845
|
+
| "transcriptTabToCaptions"
|
|
1846
|
+
| "transcriptTabToHighlights"
|
|
1847
|
+
| "transcriptCreateHighlight"
|
|
1848
|
+
| "transcriptDeleteHighlightInHighlight"
|
|
1849
|
+
| "transcriptDeleteHighlightInCaptions"
|
|
1850
|
+
| "transcriptChangeFontSize"
|
|
1851
|
+
| "transcriptBackToDefaultPosition"
|
|
1852
|
+
| "transcriptChangeModeToDark"
|
|
1853
|
+
| "transcriptChangeModeToLight";
|
|
1854
|
+
fromLanguage?:
|
|
1855
|
+
| "lan_af"
|
|
1856
|
+
| "lan_sq"
|
|
1857
|
+
| "lan_am"
|
|
1858
|
+
| "lan_ar"
|
|
1859
|
+
| "lan_hy"
|
|
1860
|
+
| "lan_az"
|
|
1861
|
+
| "lan_eu"
|
|
1862
|
+
| "lan_be"
|
|
1863
|
+
| "lan_bn"
|
|
1864
|
+
| "lan_bs"
|
|
1865
|
+
| "lan_bg"
|
|
1866
|
+
| "lan_ca"
|
|
1867
|
+
| "lan_ceb"
|
|
1868
|
+
| "lan_zh"
|
|
1869
|
+
| "lan_zh-TW"
|
|
1870
|
+
| "lan_co"
|
|
1871
|
+
| "lan_hr"
|
|
1872
|
+
| "lan_cs"
|
|
1873
|
+
| "lan_da"
|
|
1874
|
+
| "lan_nl"
|
|
1875
|
+
| "lan_en"
|
|
1876
|
+
| "lan_en-GB"
|
|
1877
|
+
| "lan_eo"
|
|
1878
|
+
| "lan_et"
|
|
1879
|
+
| "lan_fi"
|
|
1880
|
+
| "lan_fr"
|
|
1881
|
+
| "lan_fr-CA"
|
|
1882
|
+
| "lan_fy"
|
|
1883
|
+
| "lan_gl"
|
|
1884
|
+
| "lan_ka"
|
|
1885
|
+
| "lan_de"
|
|
1886
|
+
| "lan_el"
|
|
1887
|
+
| "lan_gu"
|
|
1888
|
+
| "lan_ht"
|
|
1889
|
+
| "lan_ha"
|
|
1890
|
+
| "lan_haw"
|
|
1891
|
+
| "lan_he"
|
|
1892
|
+
| "lan_hi"
|
|
1893
|
+
| "lan_hmn"
|
|
1894
|
+
| "lan_hu"
|
|
1895
|
+
| "lan_is"
|
|
1896
|
+
| "lan_ig"
|
|
1897
|
+
| "lan_id"
|
|
1898
|
+
| "lan_ga"
|
|
1899
|
+
| "lan_it"
|
|
1900
|
+
| "lan_ja"
|
|
1901
|
+
| "lan_jv"
|
|
1902
|
+
| "lan_kn"
|
|
1903
|
+
| "lan_kk"
|
|
1904
|
+
| "lan_km"
|
|
1905
|
+
| "lan_rw"
|
|
1906
|
+
| "lan_ko"
|
|
1907
|
+
| "lan_ku"
|
|
1908
|
+
| "lan_ky"
|
|
1909
|
+
| "lan_lo"
|
|
1910
|
+
| "lan_la"
|
|
1911
|
+
| "lan_lv"
|
|
1912
|
+
| "lan_lt"
|
|
1913
|
+
| "lan_lb"
|
|
1914
|
+
| "lan_mk"
|
|
1915
|
+
| "lan_mg"
|
|
1916
|
+
| "lan_ms"
|
|
1917
|
+
| "lan_ml"
|
|
1918
|
+
| "lan_mt"
|
|
1919
|
+
| "lan_mi"
|
|
1920
|
+
| "lan_mr"
|
|
1921
|
+
| "lan_mn"
|
|
1922
|
+
| "lan_my"
|
|
1923
|
+
| "lan_ne"
|
|
1924
|
+
| "lan_no"
|
|
1925
|
+
| "lan_ny"
|
|
1926
|
+
| "lan_or"
|
|
1927
|
+
| "lan_ps"
|
|
1928
|
+
| "lan_fa"
|
|
1929
|
+
| "lan_pl"
|
|
1930
|
+
| "lan_pt"
|
|
1931
|
+
| "lan_pa"
|
|
1932
|
+
| "lan_ro"
|
|
1933
|
+
| "lan_ru"
|
|
1934
|
+
| "lan_sm"
|
|
1935
|
+
| "lan_gd"
|
|
1936
|
+
| "lan_sr"
|
|
1937
|
+
| "lan_st"
|
|
1938
|
+
| "lan_sn"
|
|
1939
|
+
| "lan_sd"
|
|
1940
|
+
| "lan_si"
|
|
1941
|
+
| "lan_sk"
|
|
1942
|
+
| "lan_sl"
|
|
1943
|
+
| "lan_so"
|
|
1944
|
+
| "lan_es"
|
|
1945
|
+
| "lan_es-ES"
|
|
1946
|
+
| "lan_su"
|
|
1947
|
+
| "lan_sw"
|
|
1948
|
+
| "lan_sv"
|
|
1949
|
+
| "lan_tl"
|
|
1950
|
+
| "lan_tg"
|
|
1951
|
+
| "lan_ta"
|
|
1952
|
+
| "lan_tt"
|
|
1953
|
+
| "lan_te"
|
|
1954
|
+
| "lan_th"
|
|
1955
|
+
| "lan_tr"
|
|
1956
|
+
| "lan_tk"
|
|
1957
|
+
| "lan_uk"
|
|
1958
|
+
| "lan_ur"
|
|
1959
|
+
| "lan_ug"
|
|
1960
|
+
| "lan_uz"
|
|
1961
|
+
| "lan_vi"
|
|
1962
|
+
| "lan_cy"
|
|
1963
|
+
| "lan_xh"
|
|
1964
|
+
| "lan_yi"
|
|
1965
|
+
| "lan_yo"
|
|
1966
|
+
| "lan_zu";
|
|
1967
|
+
toLanguage?:
|
|
1968
|
+
| "lan_af"
|
|
1969
|
+
| "lan_sq"
|
|
1970
|
+
| "lan_am"
|
|
1971
|
+
| "lan_ar"
|
|
1972
|
+
| "lan_hy"
|
|
1973
|
+
| "lan_az"
|
|
1974
|
+
| "lan_eu"
|
|
1975
|
+
| "lan_be"
|
|
1976
|
+
| "lan_bn"
|
|
1977
|
+
| "lan_bs"
|
|
1978
|
+
| "lan_bg"
|
|
1979
|
+
| "lan_ca"
|
|
1980
|
+
| "lan_ceb"
|
|
1981
|
+
| "lan_zh"
|
|
1982
|
+
| "lan_zh-TW"
|
|
1983
|
+
| "lan_co"
|
|
1984
|
+
| "lan_hr"
|
|
1985
|
+
| "lan_cs"
|
|
1986
|
+
| "lan_da"
|
|
1987
|
+
| "lan_nl"
|
|
1988
|
+
| "lan_en"
|
|
1989
|
+
| "lan_en-GB"
|
|
1990
|
+
| "lan_eo"
|
|
1991
|
+
| "lan_et"
|
|
1992
|
+
| "lan_fi"
|
|
1993
|
+
| "lan_fr"
|
|
1994
|
+
| "lan_fr-CA"
|
|
1995
|
+
| "lan_fy"
|
|
1996
|
+
| "lan_gl"
|
|
1997
|
+
| "lan_ka"
|
|
1998
|
+
| "lan_de"
|
|
1999
|
+
| "lan_el"
|
|
2000
|
+
| "lan_gu"
|
|
2001
|
+
| "lan_ht"
|
|
2002
|
+
| "lan_ha"
|
|
2003
|
+
| "lan_haw"
|
|
2004
|
+
| "lan_he"
|
|
2005
|
+
| "lan_hi"
|
|
2006
|
+
| "lan_hmn"
|
|
2007
|
+
| "lan_hu"
|
|
2008
|
+
| "lan_is"
|
|
2009
|
+
| "lan_ig"
|
|
2010
|
+
| "lan_id"
|
|
2011
|
+
| "lan_ga"
|
|
2012
|
+
| "lan_it"
|
|
2013
|
+
| "lan_ja"
|
|
2014
|
+
| "lan_jv"
|
|
2015
|
+
| "lan_kn"
|
|
2016
|
+
| "lan_kk"
|
|
2017
|
+
| "lan_km"
|
|
2018
|
+
| "lan_rw"
|
|
2019
|
+
| "lan_ko"
|
|
2020
|
+
| "lan_ku"
|
|
2021
|
+
| "lan_ky"
|
|
2022
|
+
| "lan_lo"
|
|
2023
|
+
| "lan_la"
|
|
2024
|
+
| "lan_lv"
|
|
2025
|
+
| "lan_lt"
|
|
2026
|
+
| "lan_lb"
|
|
2027
|
+
| "lan_mk"
|
|
2028
|
+
| "lan_mg"
|
|
2029
|
+
| "lan_ms"
|
|
2030
|
+
| "lan_ml"
|
|
2031
|
+
| "lan_mt"
|
|
2032
|
+
| "lan_mi"
|
|
2033
|
+
| "lan_mr"
|
|
2034
|
+
| "lan_mn"
|
|
2035
|
+
| "lan_my"
|
|
2036
|
+
| "lan_ne"
|
|
2037
|
+
| "lan_no"
|
|
2038
|
+
| "lan_ny"
|
|
2039
|
+
| "lan_or"
|
|
2040
|
+
| "lan_ps"
|
|
2041
|
+
| "lan_fa"
|
|
2042
|
+
| "lan_pl"
|
|
2043
|
+
| "lan_pt"
|
|
2044
|
+
| "lan_pa"
|
|
2045
|
+
| "lan_ro"
|
|
2046
|
+
| "lan_ru"
|
|
2047
|
+
| "lan_sm"
|
|
2048
|
+
| "lan_gd"
|
|
2049
|
+
| "lan_sr"
|
|
2050
|
+
| "lan_st"
|
|
2051
|
+
| "lan_sn"
|
|
2052
|
+
| "lan_sd"
|
|
2053
|
+
| "lan_si"
|
|
2054
|
+
| "lan_sk"
|
|
2055
|
+
| "lan_sl"
|
|
2056
|
+
| "lan_so"
|
|
2057
|
+
| "lan_es"
|
|
2058
|
+
| "lan_es-ES"
|
|
2059
|
+
| "lan_su"
|
|
2060
|
+
| "lan_sw"
|
|
2061
|
+
| "lan_sv"
|
|
2062
|
+
| "lan_tl"
|
|
2063
|
+
| "lan_tg"
|
|
2064
|
+
| "lan_ta"
|
|
2065
|
+
| "lan_tt"
|
|
2066
|
+
| "lan_te"
|
|
2067
|
+
| "lan_th"
|
|
2068
|
+
| "lan_tr"
|
|
2069
|
+
| "lan_tk"
|
|
2070
|
+
| "lan_uk"
|
|
2071
|
+
| "lan_ur"
|
|
2072
|
+
| "lan_ug"
|
|
2073
|
+
| "lan_uz"
|
|
2074
|
+
| "lan_vi"
|
|
2075
|
+
| "lan_cy"
|
|
2076
|
+
| "lan_xh"
|
|
2077
|
+
| "lan_yi"
|
|
2078
|
+
| "lan_yo"
|
|
2079
|
+
| "lan_zu";
|
|
2080
|
+
reactionType?:
|
|
2081
|
+
| "celebrate"
|
|
2082
|
+
| "clap"
|
|
2083
|
+
| "haha"
|
|
2084
|
+
| "love"
|
|
2085
|
+
| "sad"
|
|
2086
|
+
| "smile"
|
|
2087
|
+
| "thumbUp"
|
|
2088
|
+
| "thumbDown"
|
|
2089
|
+
| "wow"
|
|
2090
|
+
| "collapse"
|
|
2091
|
+
| "disable"
|
|
2092
|
+
| "enable"
|
|
2093
|
+
| "disableGestures"
|
|
2094
|
+
| "enableGestures"
|
|
2095
|
+
| "expand"
|
|
2096
|
+
| "openMenu";
|
|
2097
|
+
unifyRaiseHand?: "lowerHand" | "lowerAllHand" | "raiseHand";
|
|
2098
|
+
};
|
|
2099
|
+
clientEventType?: "normal-event" | "user-action";
|
|
2100
|
+
/**
|
|
2101
|
+
* Audio background noise removal
|
|
2102
|
+
*/
|
|
2103
|
+
audioNoiseRemoval?: {
|
|
2104
|
+
/**
|
|
2105
|
+
* background noise removal action data
|
|
2106
|
+
*/
|
|
2107
|
+
actionData?: {
|
|
2108
|
+
bnrActionType: "turn-on-bnr" | "turn-off-bnr";
|
|
2109
|
+
};
|
|
2110
|
+
/**
|
|
2111
|
+
* background noise removal event data
|
|
2112
|
+
*/
|
|
2113
|
+
eventData?: {
|
|
2114
|
+
bnrEventType: "bnr-on" | "bnr-off";
|
|
2115
|
+
};
|
|
2116
|
+
};
|
|
2117
|
+
/**
|
|
2118
|
+
* Details of client action
|
|
2119
|
+
*/
|
|
2120
|
+
gestureRecognition?: {
|
|
2121
|
+
supportedMachine?: boolean;
|
|
2122
|
+
gestureType?: "clap" | "none" | "raiseHand" | "thumpUp" | "thumbDown";
|
|
2123
|
+
duration?: number;
|
|
2124
|
+
};
|
|
2125
|
+
/**
|
|
2126
|
+
* post meeting hook report
|
|
2127
|
+
*/
|
|
2128
|
+
postMeetingHook?: {
|
|
2129
|
+
/**
|
|
2130
|
+
* data define for background noise removal action
|
|
2131
|
+
*/
|
|
2132
|
+
actionData?: {
|
|
2133
|
+
pmhActionType: "share" | "view-details" | "close";
|
|
2134
|
+
pmhActionResult?: string;
|
|
2135
|
+
};
|
|
2136
|
+
/**
|
|
2137
|
+
* data define for background noise removal event
|
|
2138
|
+
*/
|
|
2139
|
+
eventData?: {
|
|
2140
|
+
pmhEventType: "used" | "not-show-again";
|
|
2141
|
+
};
|
|
2142
|
+
};
|
|
2143
|
+
breakoutSessionJoinType?: "any-one-can-join" | "auto" | "manual" | "preassign-rest";
|
|
2144
|
+
breakoutSessionActionClickFrom?:
|
|
2145
|
+
| "actionbar"
|
|
2146
|
+
| "assign-dialog"
|
|
2147
|
+
| "auto"
|
|
2148
|
+
| "breakout-session-list"
|
|
2149
|
+
| "contextmenu"
|
|
2150
|
+
| "menu"
|
|
2151
|
+
| "plist"
|
|
2152
|
+
| "popup-dialog";
|
|
2153
|
+
broadcastSendType?:
|
|
2154
|
+
| "all-sessions-all-participants"
|
|
2155
|
+
| "all-sessions-all-cohost-and-presenters"
|
|
2156
|
+
| "one-session-all-participants"
|
|
2157
|
+
| "one-session-one-participant";
|
|
2158
|
+
breakoutSessionDialogOpenTime?: number;
|
|
2159
|
+
breakoutSessionDialogAssignTime?: number;
|
|
2160
|
+
/**
|
|
2161
|
+
* call embedded browser object result, if failed, will populate error at Error item
|
|
2162
|
+
*/
|
|
2163
|
+
embeddedBrowserObject?: {
|
|
2164
|
+
browserType: "IE" | "WebView2";
|
|
2165
|
+
version?: string;
|
|
2166
|
+
callFrom?: string;
|
|
2167
|
+
};
|
|
2168
|
+
/**
|
|
2169
|
+
* data define for download detail data
|
|
2170
|
+
*/
|
|
2171
|
+
downloadInfo?: {
|
|
2172
|
+
percentCompleted?: number;
|
|
2173
|
+
packageName?: string;
|
|
2174
|
+
timestamp?: string;
|
|
2175
|
+
clientDownloadFileCount?: number;
|
|
2176
|
+
clientDownloadSize?: number;
|
|
2177
|
+
clientDownloadTime?: number;
|
|
2178
|
+
clientDecompressTime?: number;
|
|
2179
|
+
CDNEnabled?: boolean;
|
|
2180
|
+
updateFlag?: "preMeeting" | "inMeeting" | "postMeeting";
|
|
2181
|
+
epSP?: boolean;
|
|
2182
|
+
isEPUpdate?: boolean;
|
|
2183
|
+
spDifferent?: number;
|
|
2184
|
+
spVersionDelta?: number;
|
|
2185
|
+
deltaUpdate?: boolean;
|
|
2186
|
+
deltaListDownloadTime?: number;
|
|
2187
|
+
deltaPackageDownloadTime?: number;
|
|
2188
|
+
deltaCachePackageCopyTime?: number;
|
|
2189
|
+
deltaApplyTime?: number;
|
|
2190
|
+
deltaPackageUncompressTime?: number;
|
|
2191
|
+
deltaDuration?: number;
|
|
2192
|
+
deltaVersion?: string;
|
|
2193
|
+
deltaDownloadFullPackage?: boolean;
|
|
2194
|
+
deltaFileSize?: number;
|
|
2195
|
+
deltaUpdateEnabled?: boolean;
|
|
2196
|
+
deltaFullpackageDownloadEnabled?: boolean;
|
|
2197
|
+
deltaUpdateErrorType?: string;
|
|
2198
|
+
deltaUpdateSuccess?: string;
|
|
2199
|
+
deltaFullpackageDownloadVersion?: string;
|
|
2200
|
+
deltaFullpackageDownloadSuccess?: string;
|
|
2201
|
+
deltaUpdateCorrelationId?: string;
|
|
2202
|
+
deltaFullpackageDownloadCorrelationId?: string;
|
|
2203
|
+
deltaTargetVersion?: string;
|
|
2204
|
+
deltaLocalFullPackageVersions?: string;
|
|
2205
|
+
deltaUpdateFailReason?: string;
|
|
2206
|
+
deltaUpdateTimeStamp?: string;
|
|
2207
|
+
};
|
|
2208
|
+
isInstallWebView2?: boolean;
|
|
2209
|
+
loginType?:
|
|
2210
|
+
| "no-login"
|
|
2211
|
+
| "login-page"
|
|
2212
|
+
| "reuse-ci-token"
|
|
2213
|
+
| "reuse-site-token"
|
|
2214
|
+
| "login-ci"
|
|
2215
|
+
| "login-site"
|
|
2216
|
+
| "unverified-guest";
|
|
2217
|
+
loginCrossSite?: boolean;
|
|
2218
|
+
crossBrowserLogin?: boolean;
|
|
2219
|
+
isMultiSiteUser?: boolean;
|
|
2220
|
+
/**
|
|
2221
|
+
* The metadata associated with the emitter of the event. This data is separate from the source metadata and must be emitted with every event.
|
|
2222
|
+
*/
|
|
2223
|
+
mediaQualityMetadata?: {
|
|
2224
|
+
peerReflexiveIP?: string;
|
|
2225
|
+
maskedPeerReflexiveIP?: string;
|
|
2226
|
+
remoteMediaIP?: string;
|
|
2227
|
+
maskedRemoteMediaIP?: string;
|
|
2228
|
+
staticPerformanceLevel?: number;
|
|
2229
|
+
processAverageCPU?: number;
|
|
2230
|
+
processMaximumCPU?: number;
|
|
2231
|
+
systemAverageCPU?: number;
|
|
2232
|
+
systemMaximumCPU?: number;
|
|
2233
|
+
systemAverageGPU?: number;
|
|
2234
|
+
systemMaximumGPU?: number;
|
|
2235
|
+
/**
|
|
2236
|
+
* this object defines the memory related fields that are tracked in media quality events and reports
|
|
2237
|
+
*/
|
|
2238
|
+
memoryUsage?: {
|
|
2239
|
+
processAverageMemoryUsage: number;
|
|
2240
|
+
processMaximumMemoryUsage: number;
|
|
2241
|
+
systemAverageMemoryUsage: number;
|
|
2242
|
+
systemMaximumMemoryUsage: number;
|
|
2243
|
+
processMaximumMemoryBytes: number;
|
|
2244
|
+
mainProcessMaximumMemoryBytes: number;
|
|
2245
|
+
osBitWidth: number;
|
|
2246
|
+
cpuBitWidth: number;
|
|
2247
|
+
};
|
|
2248
|
+
peripherals?: {
|
|
2249
|
+
name: "camera" | "microphone" | "speaker";
|
|
2250
|
+
information: string;
|
|
2251
|
+
driver?: string;
|
|
2252
|
+
errorCode?: string;
|
|
2253
|
+
connectionType?: unknown;
|
|
2254
|
+
bluetoothMode?: unknown;
|
|
2255
|
+
}[];
|
|
2256
|
+
/**
|
|
2257
|
+
* information object for the peripheral
|
|
2258
|
+
*/
|
|
2259
|
+
cameraInfo?: {
|
|
2260
|
+
name: "camera" | "microphone" | "speaker";
|
|
2261
|
+
information: string;
|
|
2262
|
+
driver?: string;
|
|
2263
|
+
errorCode?: string;
|
|
2264
|
+
connectionType?: unknown;
|
|
2265
|
+
bluetoothMode?: unknown;
|
|
2266
|
+
};
|
|
2267
|
+
/**
|
|
2268
|
+
* information object for the peripheral
|
|
2269
|
+
*/
|
|
2270
|
+
microphoneInfo?: {
|
|
2271
|
+
name: "camera" | "microphone" | "speaker";
|
|
2272
|
+
information: string;
|
|
2273
|
+
driver?: string;
|
|
2274
|
+
errorCode?: string;
|
|
2275
|
+
connectionType?: unknown;
|
|
2276
|
+
bluetoothMode?: unknown;
|
|
2277
|
+
};
|
|
2278
|
+
/**
|
|
2279
|
+
* information object for the peripheral
|
|
2280
|
+
*/
|
|
2281
|
+
speakerInfo?: {
|
|
2282
|
+
name: "camera" | "microphone" | "speaker";
|
|
2283
|
+
information: string;
|
|
2284
|
+
driver?: string;
|
|
2285
|
+
errorCode?: string;
|
|
2286
|
+
connectionType?: unknown;
|
|
2287
|
+
bluetoothMode?: unknown;
|
|
2288
|
+
};
|
|
2289
|
+
/**
|
|
2290
|
+
* This object defines the fields related to the CPU being used by the emitter of the event
|
|
2291
|
+
*/
|
|
2292
|
+
cpuInfo?: {
|
|
2293
|
+
description: string;
|
|
2294
|
+
clockSpeedGigaHertz: number;
|
|
2295
|
+
numberOfCores: number;
|
|
2296
|
+
architecture: "intel32" | "intel64" | "amd32" | "amd64" | "arm32" | "arm64" | "unknown";
|
|
2297
|
+
staticPerformance?: string;
|
|
2298
|
+
};
|
|
2299
|
+
/**
|
|
2300
|
+
* Thread level cpu performance insights
|
|
2301
|
+
*/
|
|
2302
|
+
cpuDataDetail?: {
|
|
2303
|
+
processesData?: unknown[];
|
|
2304
|
+
coresCpuData?: unknown[];
|
|
2305
|
+
coreVariance?: number;
|
|
2306
|
+
};
|
|
2307
|
+
/**
|
|
2308
|
+
* This object defines the fields related to the GPU being used by the emitter of the event
|
|
2309
|
+
*/
|
|
2310
|
+
defaultGpuInfo?: {
|
|
2311
|
+
description: string;
|
|
2312
|
+
memoryMegaBytes: number;
|
|
2313
|
+
};
|
|
2314
|
+
otherGpuInfo?: {
|
|
2315
|
+
description: string;
|
|
2316
|
+
memoryMegaBytes: number;
|
|
2317
|
+
}[];
|
|
2318
|
+
dpcRecord?: string[];
|
|
2319
|
+
mediaLabels?: string[];
|
|
2320
|
+
screenResolution?: number;
|
|
2321
|
+
appWindowSize?: number;
|
|
2322
|
+
appWindowHeight?: number;
|
|
2323
|
+
appWindowWidth?: number;
|
|
2324
|
+
meetingUserCount?: number;
|
|
2325
|
+
videoUserCount?: number;
|
|
2326
|
+
numScreens?: number;
|
|
2327
|
+
configuredBitrate?: number;
|
|
2328
|
+
};
|
|
2329
|
+
sessionType?:
|
|
2330
|
+
| "AD_HOC"
|
|
2331
|
+
| "ADHOC_UNIFIED_SPACE_MEETING"
|
|
2332
|
+
| "ANSWERED_ELSEWHERE"
|
|
2333
|
+
| "BUTLER"
|
|
2334
|
+
| "CFNA"
|
|
2335
|
+
| "CMR_MEETING"
|
|
2336
|
+
| "DPC_CONTROL"
|
|
2337
|
+
| "EVENT_CENTER_MEETING"
|
|
2338
|
+
| "HALF_ZTM"
|
|
2339
|
+
| "JABBER"
|
|
2340
|
+
| "MEDIA"
|
|
2341
|
+
| "MS_TEAMS"
|
|
2342
|
+
| "NO_JOINS"
|
|
2343
|
+
| "SINGLE_PARTICIPANT"
|
|
2344
|
+
| "SIP_CALL"
|
|
2345
|
+
| "SIP_MEETING"
|
|
2346
|
+
| "SPACE_MEETING"
|
|
2347
|
+
| "SPACE_SHARE"
|
|
2348
|
+
| "SPARK_CALL"
|
|
2349
|
+
| "SPARK_MEETING"
|
|
2350
|
+
| "SPARK_SIP_CALL"
|
|
2351
|
+
| "SPARK_SIP_MEETING"
|
|
2352
|
+
| "UNIFIED_SPACE_MEETING"
|
|
2353
|
+
| "UNKNOWN"
|
|
2354
|
+
| "WHITEBOARD_ONLY_SHARE"
|
|
2355
|
+
| "WIRELESS_SHARE"
|
|
2356
|
+
| "ZTM";
|
|
2357
|
+
}
|