@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
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
export interface ClientEvent {
|
|
10
10
|
canProceed: boolean;
|
|
11
11
|
state?: string;
|
|
12
|
-
mediaType?:
|
|
12
|
+
mediaType?: 'audio' | 'video' | 'share' | 'share_audio' | 'whiteboard' | 'gamestate';
|
|
13
13
|
csi?: number;
|
|
14
14
|
/**
|
|
15
15
|
* media capability for both transmit and receive
|
|
@@ -39,17 +39,17 @@ export interface ClientEvent {
|
|
|
39
39
|
};
|
|
40
40
|
};
|
|
41
41
|
mediaLines?: {
|
|
42
|
-
mediaType:
|
|
42
|
+
mediaType: 'audio' | 'video' | 'share' | 'share_audio' | 'whiteboard' | 'gamestate';
|
|
43
43
|
remoteIP?: string;
|
|
44
44
|
localIP?: string;
|
|
45
45
|
localNetworkPrefix?: string;
|
|
46
46
|
localPort?: number;
|
|
47
47
|
remotePort?: number;
|
|
48
|
-
protocol:
|
|
49
|
-
direction:
|
|
48
|
+
protocol: 'udp' | 'tcp' | 'xtls' | 'unknown';
|
|
49
|
+
direction: 'sendrecv' | 'sendonly' | 'recvonly' | 'inactive';
|
|
50
50
|
clusterName?: string;
|
|
51
|
-
status?:
|
|
52
|
-
failureReason?:
|
|
51
|
+
status?: 'succeeded' | 'in-progress' | 'failed';
|
|
52
|
+
failureReason?: 'network' | 'transport' | 'rejected' | 'timeout' | 'notstarted' | 'succeeded';
|
|
53
53
|
errorCode?: number;
|
|
54
54
|
mediaLineData?: {};
|
|
55
55
|
}[];
|
|
@@ -59,7 +59,7 @@ export interface ClientEvent {
|
|
|
59
59
|
clientMediaPreferences?: {
|
|
60
60
|
preferTranscoding: boolean;
|
|
61
61
|
};
|
|
62
|
-
pstnAudioType?:
|
|
62
|
+
pstnAudioType?: 'dial-in' | 'dial-out';
|
|
63
63
|
success?: boolean;
|
|
64
64
|
isTranscoded?: boolean;
|
|
65
65
|
isGatewayed?: boolean;
|
|
@@ -67,35 +67,35 @@ export interface ClientEvent {
|
|
|
67
67
|
/**
|
|
68
68
|
* determine how the events are processed as well as how the reports are aggregated and sliced
|
|
69
69
|
*/
|
|
70
|
-
registrationMode?:
|
|
70
|
+
registrationMode?: 'SIP' | 'Cloud' | 'CloudAware';
|
|
71
71
|
/**
|
|
72
72
|
* protocols used to help determine how the events are processed as well as how the reports are aggregated and sliced
|
|
73
73
|
*/
|
|
74
|
-
protocol?:
|
|
74
|
+
protocol?: 'SIP' | 'H323' | 'Locus' | 'WebRTC';
|
|
75
75
|
/**
|
|
76
76
|
* The underlying service provider of the call.
|
|
77
77
|
*/
|
|
78
|
-
meetingPlatform?:
|
|
78
|
+
meetingPlatform?: 'MsTeams' | 'GoogleMeet' | 'Zoom' | 'Webex';
|
|
79
79
|
labels?: string[];
|
|
80
|
-
webexServiceType?:
|
|
80
|
+
webexServiceType?: 'MC' | 'EC' | 'SC' | 'TC' | 'AA' | 'RA' | 'NBR' | 'WRF' | 'HOL';
|
|
81
81
|
/**
|
|
82
82
|
* this defines the sub service type
|
|
83
83
|
*/
|
|
84
|
-
webexSubServiceType?:
|
|
85
|
-
ivrDialogType?:
|
|
86
|
-
ivrDialogResult?:
|
|
87
|
-
callType?:
|
|
84
|
+
webexSubServiceType?: 'PMR' | 'Event' | 'Training' | 'ScheduleMeeting' | 'ScheduledMeeting' | 'Webinar' | 'others';
|
|
85
|
+
ivrDialogType?: 'MEDIA_ON_HOLD' | 'ANNOUNCEMENT' | 'TONE' | 'COLLECT_PIN' | 'PROMPT' | 'MEDIA_SERVICE_AGENT' | 'COLLECT';
|
|
86
|
+
ivrDialogResult?: 'SUCCESS' | 'FAILURE' | 'HOST_PIN_MATCH' | 'GUEST_PIN_MATCH' | 'PANELIST_PIN_MATCH' | 'NO_MATCH' | 'INVALID_PIN';
|
|
87
|
+
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';
|
|
88
88
|
eventData?: {};
|
|
89
|
-
derivedSipClientType?:
|
|
89
|
+
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';
|
|
90
90
|
/**
|
|
91
91
|
* this defines the major client types
|
|
92
92
|
*/
|
|
93
|
-
derivedClientType?:
|
|
93
|
+
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';
|
|
94
94
|
/**
|
|
95
95
|
* this defines the sub types of clients
|
|
96
96
|
*/
|
|
97
|
-
derivedSubClientType?:
|
|
98
|
-
serverRole?:
|
|
97
|
+
derivedSubClientType?: 'DESKTOP_APP' | 'DESKTOP_APP_VDI' | 'DEVICE_CURRENT' | 'DEVICE_LEGACY_2020' | 'HVDI_APP' | 'MOBILE_APP' | 'VDI_APP' | 'WEB_APP' | 'MOBILE_NETWORK' | 'HOLOGRAM_HEADSET_APP';
|
|
98
|
+
serverRole?: 'CONFERENCE' | 'TRANSCODER' | 'WHITEBOARD_INJECTOR' | 'MS_TEAMS_CONFERENCE' | 'RECORDING' | 'GATEWAY' | 'GATEWAY_CLIENT_SIDE' | 'UNKNOWN' | 'HOLOGRAM_RENDER';
|
|
99
99
|
reconnect?: boolean;
|
|
100
100
|
retryCount?: number;
|
|
101
101
|
meetSimple?: boolean;
|
|
@@ -103,15 +103,15 @@ export interface ClientEvent {
|
|
|
103
103
|
* represents media quality status report such as no media or drop out
|
|
104
104
|
*/
|
|
105
105
|
mediaStatus?: {
|
|
106
|
-
mediaType?:
|
|
106
|
+
mediaType?: 'audio' | 'video' | 'share' | 'share_audio' | 'whiteboard';
|
|
107
107
|
mediaSuccess?: boolean;
|
|
108
|
-
shareType?:
|
|
108
|
+
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';
|
|
109
109
|
isTransmitter?: boolean;
|
|
110
|
-
audioJoinType?:
|
|
110
|
+
audioJoinType?: 'phone-call-in' | 'phone-call-back' | 'voip' | 'device-call-back' | 'never-join-audio' | 'tried-but-never-join';
|
|
111
111
|
/**
|
|
112
112
|
* indicates transport type used
|
|
113
113
|
*/
|
|
114
|
-
transportType?:
|
|
114
|
+
transportType?: 'UDP' | 'TCP' | 'xTLS' | 'TLS';
|
|
115
115
|
additionalData?: {};
|
|
116
116
|
};
|
|
117
117
|
shareInstanceId?: string;
|
|
@@ -122,7 +122,7 @@ export interface ClientEvent {
|
|
|
122
122
|
audioSetupDelay?: {
|
|
123
123
|
floorReqSentReceived?: number;
|
|
124
124
|
floorRespSentReceived?: number;
|
|
125
|
-
mediaType?:
|
|
125
|
+
mediaType?: 'audio' | 'video' | 'share' | 'share_audio' | 'whiteboard';
|
|
126
126
|
txReqFloorGranted?: number;
|
|
127
127
|
txSessionCreateConfirm?: number;
|
|
128
128
|
txApeEnrollConfirm?: number;
|
|
@@ -162,7 +162,7 @@ export interface ClientEvent {
|
|
|
162
162
|
videoSetupDelay?: {
|
|
163
163
|
floorReqSentReceived?: number;
|
|
164
164
|
floorRespSentReceived?: number;
|
|
165
|
-
mediaType?:
|
|
165
|
+
mediaType?: 'audio' | 'video' | 'share' | 'share_audio' | 'whiteboard';
|
|
166
166
|
txReqFloorGranted?: number;
|
|
167
167
|
txSessionCreateConfirm?: number;
|
|
168
168
|
txApeEnrollConfirm?: number;
|
|
@@ -202,7 +202,7 @@ export interface ClientEvent {
|
|
|
202
202
|
shareSetupDelay?: {
|
|
203
203
|
floorReqSentReceived?: number;
|
|
204
204
|
floorRespSentReceived?: number;
|
|
205
|
-
mediaType?:
|
|
205
|
+
mediaType?: 'audio' | 'video' | 'share' | 'share_audio' | 'whiteboard';
|
|
206
206
|
txReqFloorGranted?: number;
|
|
207
207
|
txSessionCreateConfirm?: number;
|
|
208
208
|
txApeEnrollConfirm?: number;
|
|
@@ -242,7 +242,7 @@ export interface ClientEvent {
|
|
|
242
242
|
shareAudioSetupDelay?: {
|
|
243
243
|
floorReqSentReceived?: number;
|
|
244
244
|
floorRespSentReceived?: number;
|
|
245
|
-
mediaType?:
|
|
245
|
+
mediaType?: 'audio' | 'video' | 'share' | 'share_audio' | 'whiteboard';
|
|
246
246
|
txReqFloorGranted?: number;
|
|
247
247
|
txSessionCreateConfirm?: number;
|
|
248
248
|
txApeEnrollConfirm?: number;
|
|
@@ -282,7 +282,7 @@ export interface ClientEvent {
|
|
|
282
282
|
whiteboardSetupDelay?: {
|
|
283
283
|
floorReqSentReceived?: number;
|
|
284
284
|
floorRespSentReceived?: number;
|
|
285
|
-
mediaType?:
|
|
285
|
+
mediaType?: 'audio' | 'video' | 'share' | 'share_audio' | 'whiteboard';
|
|
286
286
|
txReqFloorGranted?: number;
|
|
287
287
|
txSessionCreateConfirm?: number;
|
|
288
288
|
txApeEnrollConfirm?: number;
|
|
@@ -318,7 +318,7 @@ export interface ClientEvent {
|
|
|
318
318
|
};
|
|
319
319
|
isFocus?: boolean;
|
|
320
320
|
processingDelay?: number;
|
|
321
|
-
shareType?:
|
|
321
|
+
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';
|
|
322
322
|
isShareBeingTakenOver?: boolean;
|
|
323
323
|
floorBeneficiaryUpdated?: boolean;
|
|
324
324
|
meetingJoinedTime?: string;
|
|
@@ -330,9 +330,9 @@ export interface ClientEvent {
|
|
|
330
330
|
useKeyTime?: number;
|
|
331
331
|
cacheKeyTime?: number;
|
|
332
332
|
}[];
|
|
333
|
-
e2eeVersion?:
|
|
333
|
+
e2eeVersion?: 'E2EEV1' | 'E2EEV2' | 'E2EEV3';
|
|
334
334
|
isConvergedArchitectureEnabled?: boolean;
|
|
335
|
-
callingServiceType?:
|
|
335
|
+
callingServiceType?: 'CUCM' | 'WEBEXCALLING' | 'BROADWORKS' | 'LOCUS';
|
|
336
336
|
inLobby?: boolean;
|
|
337
337
|
isVIPMeeting?: boolean;
|
|
338
338
|
webexAppEntrypoint?: string;
|
|
@@ -353,10 +353,10 @@ export interface ClientEvent {
|
|
|
353
353
|
* Details associated with a breakout move
|
|
354
354
|
*/
|
|
355
355
|
breakout?: {
|
|
356
|
-
moveType?:
|
|
357
|
-
trigger?:
|
|
358
|
-
startState?:
|
|
359
|
-
endState?:
|
|
356
|
+
moveType?: 'between_breakout' | 'to_breakout' | 'to_main';
|
|
357
|
+
trigger?: 'assignment_changed' | 'client_initiated' | 'session_ended' | 'session_started';
|
|
358
|
+
startState?: 'joined' | 'lobby';
|
|
359
|
+
endState?: 'joined' | 'lobby';
|
|
360
360
|
};
|
|
361
361
|
/**
|
|
362
362
|
* Latency values associated with breakout session
|
|
@@ -372,12 +372,12 @@ export interface ClientEvent {
|
|
|
372
372
|
* two-way whiteboard related info
|
|
373
373
|
*/
|
|
374
374
|
whiteboard?: {
|
|
375
|
-
action?:
|
|
376
|
-
type?:
|
|
377
|
-
capability?:
|
|
378
|
-
granted?:
|
|
375
|
+
action?: 'open' | 'create';
|
|
376
|
+
type?: 'whiteboard' | 'annotation';
|
|
377
|
+
capability?: 'one_way' | 'two_way';
|
|
378
|
+
granted?: 'one_way' | 'two_way';
|
|
379
379
|
};
|
|
380
|
-
name:
|
|
380
|
+
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';
|
|
381
381
|
/**
|
|
382
382
|
* Base type for the various identifiers used to connect the dots.
|
|
383
383
|
* In general, these should be populated whenever possible. Subtypes may make a particular key required.
|
|
@@ -453,7 +453,7 @@ export interface ClientEvent {
|
|
|
453
453
|
};
|
|
454
454
|
errors?: {
|
|
455
455
|
fatal: boolean;
|
|
456
|
-
category:
|
|
456
|
+
category: 'signaling' | 'media' | 'other' | 'expected';
|
|
457
457
|
errorDescription?: string;
|
|
458
458
|
errorCode?: number;
|
|
459
459
|
errorCodeStr?: string;
|
|
@@ -461,18 +461,18 @@ export interface ClientEvent {
|
|
|
461
461
|
errorData?: {};
|
|
462
462
|
shownToUser: boolean;
|
|
463
463
|
serviceErrorCode?: number;
|
|
464
|
-
name:
|
|
464
|
+
name: 'media-engine' | 'ice.failed' | 'locus.response' | 'locus.leave' | 'client.leave' | 'media-device' | 'media-sca' | 'other';
|
|
465
465
|
}[];
|
|
466
466
|
/**
|
|
467
467
|
* media quality error report such as no media or drop out
|
|
468
468
|
*/
|
|
469
469
|
clientMediaError?: {
|
|
470
|
-
mediaType?:
|
|
471
|
-
mediaFailureType?:
|
|
470
|
+
mediaType?: 'audio' | 'video' | 'share' | 'share_audio' | 'whiteboard';
|
|
471
|
+
mediaFailureType?: 'noMedia' | 'mediaDrop' | 'mediaEvent';
|
|
472
472
|
isDropAtStart?: boolean;
|
|
473
473
|
isJMF?: boolean;
|
|
474
|
-
txError?:
|
|
475
|
-
rxError?:
|
|
474
|
+
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';
|
|
475
|
+
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';
|
|
476
476
|
txDeviceErrorCode?: number;
|
|
477
477
|
rxDeviceErrorCode?: number;
|
|
478
478
|
sessionConnectErrorCode?: number;
|
|
@@ -483,21 +483,21 @@ export interface ClientEvent {
|
|
|
483
483
|
rxMoreError?: string;
|
|
484
484
|
totalUserWhenCBStartError?: number;
|
|
485
485
|
sessionConnectExtErrorCode?: number;
|
|
486
|
-
sessionConnectErrorType?:
|
|
486
|
+
sessionConnectErrorType?: 'unknown' | 'MCC_error' | 'MCS_error' | 'Tahoe_error';
|
|
487
487
|
txSystemErrorCode?: number;
|
|
488
488
|
rxSystemErrorCode?: number;
|
|
489
489
|
errorDetails?: {};
|
|
490
490
|
};
|
|
491
|
-
trigger?:
|
|
492
|
-
leaveReason?:
|
|
493
|
-
displayLocation?:
|
|
494
|
-
displayType?:
|
|
491
|
+
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';
|
|
492
|
+
leaveReason?: 'paired-leave' | 'one-to-one' | 'ended-by-locus';
|
|
493
|
+
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';
|
|
494
|
+
displayType?: 'scheduled';
|
|
495
495
|
dialedDomain?: string;
|
|
496
496
|
isScheduled?: boolean;
|
|
497
497
|
guestModeShare?: boolean;
|
|
498
498
|
highFpsModeShare?: boolean;
|
|
499
499
|
contentAudioShare?: boolean;
|
|
500
|
-
pairingState?:
|
|
500
|
+
pairingState?: 'paired' | 'observing' | 'challenging';
|
|
501
501
|
pairedDevice?: {
|
|
502
502
|
deviceType?: string;
|
|
503
503
|
deviceId?: string;
|
|
@@ -510,9 +510,9 @@ export interface ClientEvent {
|
|
|
510
510
|
* Information about the sender of the event
|
|
511
511
|
*/
|
|
512
512
|
oldOrigin?: {
|
|
513
|
-
name:
|
|
513
|
+
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';
|
|
514
514
|
userAgent: string;
|
|
515
|
-
buildType?:
|
|
515
|
+
buildType?: 'debug' | 'test' | 'prod' | 'tap' | 'analyzer-test';
|
|
516
516
|
/**
|
|
517
517
|
* Will be used as a label for client software status
|
|
518
518
|
*/
|
|
@@ -521,7 +521,7 @@ export interface ClientEvent {
|
|
|
521
521
|
* Identifier for a particular instance of a service, such as a particular linus
|
|
522
522
|
*/
|
|
523
523
|
instanceId?: string;
|
|
524
|
-
networkType:
|
|
524
|
+
networkType: 'wifi' | 'ethernet' | 'cellular' | 'unknown';
|
|
525
525
|
localIP?: string;
|
|
526
526
|
usingProxy?: boolean;
|
|
527
527
|
mediaEngineSoftwareVersion?: string;
|
|
@@ -531,29 +531,29 @@ export interface ClientEvent {
|
|
|
531
531
|
* Details of client environment
|
|
532
532
|
*/
|
|
533
533
|
clientInfo?: {
|
|
534
|
-
os:
|
|
534
|
+
os: 'windows' | 'mac' | 'linux' | 'ios' | 'android' | 'chrome' | 'uwp-arm64' | 'other';
|
|
535
535
|
osVersion: string;
|
|
536
536
|
localIP?: string;
|
|
537
537
|
gatewayIP?: string;
|
|
538
538
|
macAddress?: string;
|
|
539
539
|
localNetworkPrefix?: string;
|
|
540
540
|
publicNetworkPrefix?: string;
|
|
541
|
-
browserLaunchMethod?:
|
|
542
|
-
clientLaunchMethod?:
|
|
541
|
+
browserLaunchMethod?: 'activex' | 'npapi' | 'extension' | 'cwsapi' | 'java' | 'tfs' | 'webacd' | 'url-handler' | 'thinclient';
|
|
542
|
+
clientLaunchMethod?: 'url-handler' | 'universal-link' | 'voice-command' | 'notification' | 'manual' | 'teams-cross-launch';
|
|
543
543
|
browser?: string;
|
|
544
544
|
browserVersion?: string;
|
|
545
545
|
/**
|
|
546
546
|
* this defines the major client types
|
|
547
547
|
*/
|
|
548
|
-
clientType?:
|
|
548
|
+
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';
|
|
549
549
|
/**
|
|
550
550
|
* this defines the sub types of clients
|
|
551
551
|
*/
|
|
552
|
-
subClientType?:
|
|
552
|
+
subClientType?: 'DESKTOP_APP' | 'DESKTOP_APP_VDI' | 'DEVICE_CURRENT' | 'DEVICE_LEGACY_2020' | 'HVDI_APP' | 'MOBILE_APP' | 'VDI_APP' | 'WEB_APP' | 'MOBILE_NETWORK' | 'HOLOGRAM_HEADSET_APP';
|
|
553
553
|
clientVersion?: string;
|
|
554
554
|
localClientVersion?: string;
|
|
555
555
|
modelNumber?: string;
|
|
556
|
-
joinFirstUpdateLater?:
|
|
556
|
+
joinFirstUpdateLater?: 'ep-enabled' | 'sp-enabled' | 'not-enabled';
|
|
557
557
|
standbyUsed?: boolean;
|
|
558
558
|
prefetchDocShowUsed?: boolean;
|
|
559
559
|
fastJoinUsed?: boolean;
|
|
@@ -563,7 +563,7 @@ export interface ClientEvent {
|
|
|
563
563
|
machineInfo?: string;
|
|
564
564
|
parentAppName?: string;
|
|
565
565
|
parentAppInPermitList?: boolean;
|
|
566
|
-
meetingSiteType?:
|
|
566
|
+
meetingSiteType?: 'train' | 'webex-11' | 'orion';
|
|
567
567
|
CDNEnabled?: boolean;
|
|
568
568
|
clientMajorVersion?: string;
|
|
569
569
|
majorVersion?: number;
|
|
@@ -577,26 +577,26 @@ export interface ClientEvent {
|
|
|
577
577
|
description: string;
|
|
578
578
|
clockSpeedGigaHertz: number;
|
|
579
579
|
numberOfCores: number;
|
|
580
|
-
architecture:
|
|
580
|
+
architecture: 'intel32' | 'intel64' | 'amd32' | 'amd64' | 'arm32' | 'arm64' | 'unknown';
|
|
581
581
|
staticPerformance?: string;
|
|
582
582
|
};
|
|
583
|
-
shareType?:
|
|
583
|
+
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';
|
|
584
584
|
/**
|
|
585
585
|
* Video display mode currently in use
|
|
586
586
|
*/
|
|
587
|
-
videoDisplayMode?:
|
|
588
|
-
videoLayoutType?:
|
|
587
|
+
videoDisplayMode?: 'grid-view' | 'active-speaker-view';
|
|
588
|
+
videoLayoutType?: 'stack' | 'stackWithShare' | 'sideBySide' | 'sideBySideWithShare' | 'grid' | 'floatingActive' | 'floatingThumbnail' | 'floatingGrid' | 'overlay' | 'focus' | 'prominent' | 'focusWithShare' | 'prominentWithShare' | 'equal' | 'equalWithShare';
|
|
589
589
|
/**
|
|
590
590
|
* this defines the video render type of meetings
|
|
591
591
|
*/
|
|
592
|
-
videoRenderType?:
|
|
592
|
+
videoRenderType?: 'wme' | 'client_d3d' | 'client_gdi';
|
|
593
593
|
vdiInfo?: unknown;
|
|
594
594
|
is64BitsClient?: boolean;
|
|
595
595
|
webexAppVersion?: string;
|
|
596
596
|
/**
|
|
597
597
|
* this defines launch 32 bits client reason
|
|
598
598
|
*/
|
|
599
|
-
launch32BitsReason?:
|
|
599
|
+
launch32BitsReason?: 'forcewin32' | 'disablewin64' | 'platform_win32' | 'platform_arm' | 'platform_unknown' | 'version_below_41.11';
|
|
600
600
|
inMeetingUpdate?: boolean;
|
|
601
601
|
mtaVersion?: string;
|
|
602
602
|
isWarholOpening?: boolean;
|
|
@@ -604,10 +604,10 @@ export interface ClientEvent {
|
|
|
604
604
|
isHybridMedia?: boolean;
|
|
605
605
|
originData?: {};
|
|
606
606
|
};
|
|
607
|
-
reachabilityStatus?:
|
|
608
|
-
recoveredBy?:
|
|
609
|
-
joinType?:
|
|
610
|
-
audioJoinType?:
|
|
607
|
+
reachabilityStatus?: 'none' | 'all-false' | 'partial-success' | 'all-success';
|
|
608
|
+
recoveredBy?: 'retry' | 'new';
|
|
609
|
+
joinType?: 'auto' | 'no-locus-join';
|
|
610
|
+
audioJoinType?: 'phone-call-in' | 'phone-call-back' | 'voip' | 'device-call-back' | 'never-join-audio';
|
|
611
611
|
isVideoMuted?: boolean;
|
|
612
612
|
/**
|
|
613
613
|
* phrased HTTP timing
|
|
@@ -622,9 +622,9 @@ export interface ClientEvent {
|
|
|
622
622
|
verifyCert?: number;
|
|
623
623
|
refreshToken?: number;
|
|
624
624
|
};
|
|
625
|
-
icePhase?:
|
|
626
|
-
userType?:
|
|
627
|
-
updateType?:
|
|
625
|
+
icePhase?: 'JOIN_MEETING_FINAL' | 'JOIN_MEETING_RETRY' | 'IN_MEETING';
|
|
626
|
+
userType?: 'host' | 'attendee' | 'cohost' | 'panelist';
|
|
627
|
+
updateType?: 'new-user' | 'update-user' | 'return-user';
|
|
628
628
|
isRoapCallEnabled?: boolean;
|
|
629
629
|
isFirstTimeUser?: boolean;
|
|
630
630
|
responseCode?: number;
|
|
@@ -715,8 +715,8 @@ export interface ClientEvent {
|
|
|
715
715
|
* ROAP message details
|
|
716
716
|
*/
|
|
717
717
|
roap?: {
|
|
718
|
-
type?:
|
|
719
|
-
messageType?:
|
|
718
|
+
type?: 'ANSWER' | 'ERROR' | 'OFFER' | 'OFFER_REQUEST' | 'OFFER_RESPONSE' | 'OK' | 'TURN_DISCOVERY_REQUEST' | 'TURN_DISCOVERY_RESPONSE';
|
|
719
|
+
messageType?: 'ANSWER' | 'ERROR' | 'OFFER' | 'OFFER_REQUEST' | 'OFFER_RESPONSE' | 'OK' | 'TURN_DISCOVERY_REQUEST' | 'TURN_DISCOVERY_RESPONSE';
|
|
720
720
|
error?: string;
|
|
721
721
|
duration?: number;
|
|
722
722
|
};
|
|
@@ -734,7 +734,7 @@ export interface ClientEvent {
|
|
|
734
734
|
serverOrg?: string;
|
|
735
735
|
serverGroup?: string;
|
|
736
736
|
serverAlias?: string;
|
|
737
|
-
serverDeployType?:
|
|
737
|
+
serverDeployType?: 'private' | 'public';
|
|
738
738
|
startTime: string;
|
|
739
739
|
endTime?: string;
|
|
740
740
|
csi?: number[];
|
|
@@ -750,89 +750,89 @@ export interface ClientEvent {
|
|
|
750
750
|
cascadePeerOrg?: string;
|
|
751
751
|
cascadePeerGroup?: string;
|
|
752
752
|
cascadePeerAlias?: string;
|
|
753
|
-
cascadePeerServerType?:
|
|
754
|
-
cascadePeerDeployType?:
|
|
753
|
+
cascadePeerServerType?: 'CB' | 'CMS' | 'HESIOD' | 'LINUS' | 'MCC' | 'MCS' | 'MES' | 'MJS' | 'MRS' | 'MYGDONUS' | 'MZM' | 'TERMINUS' | 'TPGW' | 'TA' | 'HOMER' | 'SUPERHOMER' | 'U2C' | 'WCA' | 'MSE' | 'UNKNOWN';
|
|
754
|
+
cascadePeerDeployType?: 'private' | 'public';
|
|
755
755
|
};
|
|
756
756
|
/**
|
|
757
757
|
* Details of server environment
|
|
758
758
|
*/
|
|
759
759
|
serverInfo?: {
|
|
760
|
-
serverType:
|
|
760
|
+
serverType: 'CB' | 'CMS' | 'HESIOD' | 'LINUS' | 'MCC' | 'MCS' | 'MES' | 'MJS' | 'MRS' | 'MYGDONUS' | 'MZM' | 'TERMINUS' | 'TPGW' | 'TA' | 'HOMER' | 'SUPERHOMER' | 'U2C' | 'WCA' | 'MSE' | 'UNKNOWN';
|
|
761
761
|
serverAddress?: string;
|
|
762
762
|
};
|
|
763
763
|
/**
|
|
764
764
|
* Details of client connect session
|
|
765
765
|
*/
|
|
766
766
|
videoSession?: {
|
|
767
|
-
mediaSessionType?:
|
|
767
|
+
mediaSessionType?: 'AUDIO_CALLBACK' | 'AUDIO_VOIP' | 'DEVICE_CALLBACK' | 'DEVICE_PAIRING' | 'VIDEO';
|
|
768
768
|
isSuccess?: boolean;
|
|
769
|
-
signalingServerType?:
|
|
769
|
+
signalingServerType?: 'CB' | 'CMS' | 'HESIOD' | 'LINUS' | 'MCC' | 'MCS' | 'MES' | 'MJS' | 'MRS' | 'MYGDONUS' | 'MZM' | 'TERMINUS' | 'TPGW' | 'TA' | 'HOMER' | 'SUPERHOMER' | 'U2C' | 'WCA' | 'MSE' | 'UNKNOWN';
|
|
770
770
|
signalingServerAddress?: string;
|
|
771
|
-
mediaServerType?:
|
|
771
|
+
mediaServerType?: 'CB' | 'CMS' | 'HESIOD' | 'LINUS' | 'MCC' | 'MCS' | 'MES' | 'MJS' | 'MRS' | 'MYGDONUS' | 'MZM' | 'TERMINUS' | 'TPGW' | 'TA' | 'HOMER' | 'SUPERHOMER' | 'U2C' | 'WCA' | 'MSE' | 'UNKNOWN';
|
|
772
772
|
mediaServerAddress?: string;
|
|
773
773
|
errorDescription?: string;
|
|
774
774
|
errorCode?: number;
|
|
775
|
-
mediaErrorType?:
|
|
775
|
+
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';
|
|
776
776
|
isJoinAtStart?: boolean;
|
|
777
777
|
};
|
|
778
778
|
/**
|
|
779
779
|
* Details of client connect session
|
|
780
780
|
*/
|
|
781
781
|
audioVOIPSession?: {
|
|
782
|
-
mediaSessionType?:
|
|
782
|
+
mediaSessionType?: 'AUDIO_CALLBACK' | 'AUDIO_VOIP' | 'DEVICE_CALLBACK' | 'DEVICE_PAIRING' | 'VIDEO';
|
|
783
783
|
isSuccess?: boolean;
|
|
784
|
-
signalingServerType?:
|
|
784
|
+
signalingServerType?: 'CB' | 'CMS' | 'HESIOD' | 'LINUS' | 'MCC' | 'MCS' | 'MES' | 'MJS' | 'MRS' | 'MYGDONUS' | 'MZM' | 'TERMINUS' | 'TPGW' | 'TA' | 'HOMER' | 'SUPERHOMER' | 'U2C' | 'WCA' | 'MSE' | 'UNKNOWN';
|
|
785
785
|
signalingServerAddress?: string;
|
|
786
|
-
mediaServerType?:
|
|
786
|
+
mediaServerType?: 'CB' | 'CMS' | 'HESIOD' | 'LINUS' | 'MCC' | 'MCS' | 'MES' | 'MJS' | 'MRS' | 'MYGDONUS' | 'MZM' | 'TERMINUS' | 'TPGW' | 'TA' | 'HOMER' | 'SUPERHOMER' | 'U2C' | 'WCA' | 'MSE' | 'UNKNOWN';
|
|
787
787
|
mediaServerAddress?: string;
|
|
788
788
|
errorDescription?: string;
|
|
789
789
|
errorCode?: number;
|
|
790
|
-
mediaErrorType?:
|
|
790
|
+
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';
|
|
791
791
|
isJoinAtStart?: boolean;
|
|
792
792
|
};
|
|
793
793
|
/**
|
|
794
794
|
* Details of client connect session
|
|
795
795
|
*/
|
|
796
796
|
audioCallbackSession?: {
|
|
797
|
-
mediaSessionType?:
|
|
797
|
+
mediaSessionType?: 'AUDIO_CALLBACK' | 'AUDIO_VOIP' | 'DEVICE_CALLBACK' | 'DEVICE_PAIRING' | 'VIDEO';
|
|
798
798
|
isSuccess?: boolean;
|
|
799
|
-
signalingServerType?:
|
|
799
|
+
signalingServerType?: 'CB' | 'CMS' | 'HESIOD' | 'LINUS' | 'MCC' | 'MCS' | 'MES' | 'MJS' | 'MRS' | 'MYGDONUS' | 'MZM' | 'TERMINUS' | 'TPGW' | 'TA' | 'HOMER' | 'SUPERHOMER' | 'U2C' | 'WCA' | 'MSE' | 'UNKNOWN';
|
|
800
800
|
signalingServerAddress?: string;
|
|
801
|
-
mediaServerType?:
|
|
801
|
+
mediaServerType?: 'CB' | 'CMS' | 'HESIOD' | 'LINUS' | 'MCC' | 'MCS' | 'MES' | 'MJS' | 'MRS' | 'MYGDONUS' | 'MZM' | 'TERMINUS' | 'TPGW' | 'TA' | 'HOMER' | 'SUPERHOMER' | 'U2C' | 'WCA' | 'MSE' | 'UNKNOWN';
|
|
802
802
|
mediaServerAddress?: string;
|
|
803
803
|
errorDescription?: string;
|
|
804
804
|
errorCode?: number;
|
|
805
|
-
mediaErrorType?:
|
|
805
|
+
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';
|
|
806
806
|
isJoinAtStart?: boolean;
|
|
807
807
|
};
|
|
808
808
|
/**
|
|
809
809
|
* Details of client connect session
|
|
810
810
|
*/
|
|
811
811
|
devicePairingSession?: {
|
|
812
|
-
mediaSessionType?:
|
|
812
|
+
mediaSessionType?: 'AUDIO_CALLBACK' | 'AUDIO_VOIP' | 'DEVICE_CALLBACK' | 'DEVICE_PAIRING' | 'VIDEO';
|
|
813
813
|
isSuccess?: boolean;
|
|
814
|
-
signalingServerType?:
|
|
814
|
+
signalingServerType?: 'CB' | 'CMS' | 'HESIOD' | 'LINUS' | 'MCC' | 'MCS' | 'MES' | 'MJS' | 'MRS' | 'MYGDONUS' | 'MZM' | 'TERMINUS' | 'TPGW' | 'TA' | 'HOMER' | 'SUPERHOMER' | 'U2C' | 'WCA' | 'MSE' | 'UNKNOWN';
|
|
815
815
|
signalingServerAddress?: string;
|
|
816
|
-
mediaServerType?:
|
|
816
|
+
mediaServerType?: 'CB' | 'CMS' | 'HESIOD' | 'LINUS' | 'MCC' | 'MCS' | 'MES' | 'MJS' | 'MRS' | 'MYGDONUS' | 'MZM' | 'TERMINUS' | 'TPGW' | 'TA' | 'HOMER' | 'SUPERHOMER' | 'U2C' | 'WCA' | 'MSE' | 'UNKNOWN';
|
|
817
817
|
mediaServerAddress?: string;
|
|
818
818
|
errorDescription?: string;
|
|
819
819
|
errorCode?: number;
|
|
820
|
-
mediaErrorType?:
|
|
820
|
+
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';
|
|
821
821
|
isJoinAtStart?: boolean;
|
|
822
822
|
};
|
|
823
823
|
/**
|
|
824
824
|
* Details of client connect session
|
|
825
825
|
*/
|
|
826
826
|
deviceCallbackSession?: {
|
|
827
|
-
mediaSessionType?:
|
|
827
|
+
mediaSessionType?: 'AUDIO_CALLBACK' | 'AUDIO_VOIP' | 'DEVICE_CALLBACK' | 'DEVICE_PAIRING' | 'VIDEO';
|
|
828
828
|
isSuccess?: boolean;
|
|
829
|
-
signalingServerType?:
|
|
829
|
+
signalingServerType?: 'CB' | 'CMS' | 'HESIOD' | 'LINUS' | 'MCC' | 'MCS' | 'MES' | 'MJS' | 'MRS' | 'MYGDONUS' | 'MZM' | 'TERMINUS' | 'TPGW' | 'TA' | 'HOMER' | 'SUPERHOMER' | 'U2C' | 'WCA' | 'MSE' | 'UNKNOWN';
|
|
830
830
|
signalingServerAddress?: string;
|
|
831
|
-
mediaServerType?:
|
|
831
|
+
mediaServerType?: 'CB' | 'CMS' | 'HESIOD' | 'LINUS' | 'MCC' | 'MCS' | 'MES' | 'MJS' | 'MRS' | 'MYGDONUS' | 'MZM' | 'TERMINUS' | 'TPGW' | 'TA' | 'HOMER' | 'SUPERHOMER' | 'U2C' | 'WCA' | 'MSE' | 'UNKNOWN';
|
|
832
832
|
mediaServerAddress?: string;
|
|
833
833
|
errorDescription?: string;
|
|
834
834
|
errorCode?: number;
|
|
835
|
-
mediaErrorType?:
|
|
835
|
+
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';
|
|
836
836
|
isJoinAtStart?: boolean;
|
|
837
837
|
};
|
|
838
838
|
/**
|
|
@@ -843,13 +843,13 @@ export interface ClientEvent {
|
|
|
843
843
|
* data define for background noise removal event
|
|
844
844
|
*/
|
|
845
845
|
eventData?: {
|
|
846
|
-
crashType?:
|
|
846
|
+
crashType?: 'client' | 'other' | 'thirdparty' | 'wme' | 'mta';
|
|
847
847
|
processName?: string;
|
|
848
848
|
moduleName?: string;
|
|
849
849
|
threadInfo?: string;
|
|
850
850
|
crashFrame?: string;
|
|
851
851
|
crashStack?: string;
|
|
852
|
-
exceptionType?:
|
|
852
|
+
exceptionType?: 'unset' | 'crash' | 'freeze' | 'disappear';
|
|
853
853
|
lastAction?: string;
|
|
854
854
|
forTrace?: boolean;
|
|
855
855
|
registerInfo?: string;
|
|
@@ -873,31 +873,31 @@ export interface ClientEvent {
|
|
|
873
873
|
isBoEnabled: boolean;
|
|
874
874
|
isPreAssigned: boolean;
|
|
875
875
|
boStartedTimers: number;
|
|
876
|
-
createType:
|
|
877
|
-
enableType:
|
|
876
|
+
createType: 'pre-meeting' | 'in-meeting';
|
|
877
|
+
enableType: 'pre-meeting' | 'in-meeting';
|
|
878
878
|
};
|
|
879
|
-
breakoutSessionAction?:
|
|
880
|
-
clientAction?:
|
|
881
|
-
clientActionFrom?:
|
|
879
|
+
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';
|
|
880
|
+
clientAction?: 'changeVolume' | 'disableHardMute' | 'enableHardMute' | 'gesture' | 'joinMeetingWithPairedDevice' | 'muteAll' | 'mutePairedDevice' | 'muteSipDevice' | 'reaction' | 'requestUnmute' | 'setLanguage' | 'unifyRaiseHand' | 'unmuteAll' | 'unmutePairedDevice' | 'unmuteSipDevice';
|
|
881
|
+
clientActionFrom?: 'actionBar' | 'auto' | 'breakoutAssignDialog' | 'breakoutPopupDialog' | 'fitMenu' | 'hardMuteMoreOptionsDialog' | 'initAction' | 'mainMenu' | 'plist' | 'plistContextMenu' | 'plistToolBar' | 'videoThumbnail' | 'muteAllAction' | 'reactionPopupDialog' | 'unmuteAllAction';
|
|
882
882
|
clientActionTime?: number;
|
|
883
883
|
/**
|
|
884
884
|
* Details of client action
|
|
885
885
|
*/
|
|
886
886
|
clientActionInfo?: {
|
|
887
|
-
clientAction:
|
|
888
|
-
actionFrom?:
|
|
889
|
-
actionRole?:
|
|
887
|
+
clientAction: 'changeVolume' | 'disableHardMute' | 'enableHardMute' | 'gesture' | 'joinMeetingWithPairedDevice' | 'muteAll' | 'mutePairedDevice' | 'muteSipDevice' | 'reaction' | 'requestUnmute' | 'setLanguage' | 'unifyRaiseHand' | 'unmuteAll' | 'unmutePairedDevice' | 'unmuteSipDevice';
|
|
888
|
+
actionFrom?: 'actionBar' | 'auto' | 'breakoutAssignDialog' | 'breakoutPopupDialog' | 'fitMenu' | 'hardMuteMoreOptionsDialog' | 'initAction' | 'mainMenu' | 'plist' | 'plistContextMenu' | 'plistToolBar' | 'videoThumbnail' | 'muteAllAction' | 'reactionPopupDialog' | 'unmuteAllAction';
|
|
889
|
+
actionRole?: 'host' | 'attendee' | 'presenter' | 'cohost' | 'self';
|
|
890
890
|
duration?: number;
|
|
891
891
|
fromValue?: string;
|
|
892
892
|
toValue?: string;
|
|
893
|
-
gestureType?:
|
|
894
|
-
languageAction?:
|
|
895
|
-
fromLanguage?:
|
|
896
|
-
toLanguage?:
|
|
897
|
-
reactionType?:
|
|
898
|
-
unifyRaiseHand?:
|
|
893
|
+
gestureType?: 'clap' | 'none' | 'raiseHand' | 'thumpUp' | 'thumbDown';
|
|
894
|
+
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';
|
|
895
|
+
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';
|
|
896
|
+
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';
|
|
897
|
+
reactionType?: 'celebrate' | 'clap' | 'haha' | 'love' | 'sad' | 'smile' | 'thumbUp' | 'thumbDown' | 'wow' | 'collapse' | 'disable' | 'enable' | 'disableGestures' | 'enableGestures' | 'expand' | 'openMenu';
|
|
898
|
+
unifyRaiseHand?: 'lowerHand' | 'lowerAllHand' | 'raiseHand';
|
|
899
899
|
};
|
|
900
|
-
clientEventType?:
|
|
900
|
+
clientEventType?: 'normal-event' | 'user-action';
|
|
901
901
|
/**
|
|
902
902
|
* Audio background noise removal
|
|
903
903
|
*/
|
|
@@ -906,13 +906,13 @@ export interface ClientEvent {
|
|
|
906
906
|
* background noise removal action data
|
|
907
907
|
*/
|
|
908
908
|
actionData?: {
|
|
909
|
-
bnrActionType:
|
|
909
|
+
bnrActionType: 'turn-on-bnr' | 'turn-off-bnr';
|
|
910
910
|
};
|
|
911
911
|
/**
|
|
912
912
|
* background noise removal event data
|
|
913
913
|
*/
|
|
914
914
|
eventData?: {
|
|
915
|
-
bnrEventType:
|
|
915
|
+
bnrEventType: 'bnr-on' | 'bnr-off';
|
|
916
916
|
};
|
|
917
917
|
};
|
|
918
918
|
/**
|
|
@@ -920,7 +920,7 @@ export interface ClientEvent {
|
|
|
920
920
|
*/
|
|
921
921
|
gestureRecognition?: {
|
|
922
922
|
supportedMachine?: boolean;
|
|
923
|
-
gestureType?:
|
|
923
|
+
gestureType?: 'clap' | 'none' | 'raiseHand' | 'thumpUp' | 'thumbDown';
|
|
924
924
|
duration?: number;
|
|
925
925
|
};
|
|
926
926
|
/**
|
|
@@ -931,26 +931,26 @@ export interface ClientEvent {
|
|
|
931
931
|
* data define for background noise removal action
|
|
932
932
|
*/
|
|
933
933
|
actionData?: {
|
|
934
|
-
pmhActionType:
|
|
934
|
+
pmhActionType: 'share' | 'view-details' | 'close';
|
|
935
935
|
pmhActionResult?: string;
|
|
936
936
|
};
|
|
937
937
|
/**
|
|
938
938
|
* data define for background noise removal event
|
|
939
939
|
*/
|
|
940
940
|
eventData?: {
|
|
941
|
-
pmhEventType:
|
|
941
|
+
pmhEventType: 'used' | 'not-show-again';
|
|
942
942
|
};
|
|
943
943
|
};
|
|
944
|
-
breakoutSessionJoinType?:
|
|
945
|
-
breakoutSessionActionClickFrom?:
|
|
946
|
-
broadcastSendType?:
|
|
944
|
+
breakoutSessionJoinType?: 'any-one-can-join' | 'auto' | 'manual' | 'preassign-rest';
|
|
945
|
+
breakoutSessionActionClickFrom?: 'actionbar' | 'assign-dialog' | 'auto' | 'breakout-session-list' | 'contextmenu' | 'menu' | 'plist' | 'popup-dialog';
|
|
946
|
+
broadcastSendType?: 'all-sessions-all-participants' | 'all-sessions-all-cohost-and-presenters' | 'one-session-all-participants' | 'one-session-one-participant';
|
|
947
947
|
breakoutSessionDialogOpenTime?: number;
|
|
948
948
|
breakoutSessionDialogAssignTime?: number;
|
|
949
949
|
/**
|
|
950
950
|
* call embedded browser object result, if failed, will populate error at Error item
|
|
951
951
|
*/
|
|
952
952
|
embeddedBrowserObject?: {
|
|
953
|
-
browserType:
|
|
953
|
+
browserType: 'IE' | 'WebView2';
|
|
954
954
|
version?: string;
|
|
955
955
|
callFrom?: string;
|
|
956
956
|
};
|
|
@@ -966,7 +966,7 @@ export interface ClientEvent {
|
|
|
966
966
|
clientDownloadTime?: number;
|
|
967
967
|
clientDecompressTime?: number;
|
|
968
968
|
CDNEnabled?: boolean;
|
|
969
|
-
updateFlag?:
|
|
969
|
+
updateFlag?: 'preMeeting' | 'inMeeting' | 'postMeeting';
|
|
970
970
|
epSP?: boolean;
|
|
971
971
|
isEPUpdate?: boolean;
|
|
972
972
|
spDifferent?: number;
|
|
@@ -995,7 +995,7 @@ export interface ClientEvent {
|
|
|
995
995
|
deltaUpdateTimeStamp?: string;
|
|
996
996
|
};
|
|
997
997
|
isInstallWebView2?: boolean;
|
|
998
|
-
loginType?:
|
|
998
|
+
loginType?: 'no-login' | 'login-page' | 'reuse-ci-token' | 'reuse-site-token' | 'login-ci' | 'login-site' | 'unverified-guest';
|
|
999
999
|
loginCrossSite?: boolean;
|
|
1000
1000
|
crossBrowserLogin?: boolean;
|
|
1001
1001
|
isMultiSiteUser?: boolean;
|
|
@@ -1028,7 +1028,7 @@ export interface ClientEvent {
|
|
|
1028
1028
|
cpuBitWidth: number;
|
|
1029
1029
|
};
|
|
1030
1030
|
peripherals?: {
|
|
1031
|
-
name:
|
|
1031
|
+
name: 'camera' | 'microphone' | 'speaker';
|
|
1032
1032
|
information: string;
|
|
1033
1033
|
driver?: string;
|
|
1034
1034
|
errorCode?: string;
|
|
@@ -1039,7 +1039,7 @@ export interface ClientEvent {
|
|
|
1039
1039
|
* information object for the peripheral
|
|
1040
1040
|
*/
|
|
1041
1041
|
cameraInfo?: {
|
|
1042
|
-
name:
|
|
1042
|
+
name: 'camera' | 'microphone' | 'speaker';
|
|
1043
1043
|
information: string;
|
|
1044
1044
|
driver?: string;
|
|
1045
1045
|
errorCode?: string;
|
|
@@ -1050,7 +1050,7 @@ export interface ClientEvent {
|
|
|
1050
1050
|
* information object for the peripheral
|
|
1051
1051
|
*/
|
|
1052
1052
|
microphoneInfo?: {
|
|
1053
|
-
name:
|
|
1053
|
+
name: 'camera' | 'microphone' | 'speaker';
|
|
1054
1054
|
information: string;
|
|
1055
1055
|
driver?: string;
|
|
1056
1056
|
errorCode?: string;
|
|
@@ -1061,7 +1061,7 @@ export interface ClientEvent {
|
|
|
1061
1061
|
* information object for the peripheral
|
|
1062
1062
|
*/
|
|
1063
1063
|
speakerInfo?: {
|
|
1064
|
-
name:
|
|
1064
|
+
name: 'camera' | 'microphone' | 'speaker';
|
|
1065
1065
|
information: string;
|
|
1066
1066
|
driver?: string;
|
|
1067
1067
|
errorCode?: string;
|
|
@@ -1075,7 +1075,7 @@ export interface ClientEvent {
|
|
|
1075
1075
|
description: string;
|
|
1076
1076
|
clockSpeedGigaHertz: number;
|
|
1077
1077
|
numberOfCores: number;
|
|
1078
|
-
architecture:
|
|
1078
|
+
architecture: 'intel32' | 'intel64' | 'amd32' | 'amd64' | 'arm32' | 'arm64' | 'unknown';
|
|
1079
1079
|
staticPerformance?: string;
|
|
1080
1080
|
};
|
|
1081
1081
|
/**
|
|
@@ -1108,5 +1108,5 @@ export interface ClientEvent {
|
|
|
1108
1108
|
numScreens?: number;
|
|
1109
1109
|
configuredBitrate?: number;
|
|
1110
1110
|
};
|
|
1111
|
-
sessionType?:
|
|
1111
|
+
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';
|
|
1112
1112
|
}
|