@webex/event-dictionary-ts 1.0.1476 → 1.0.1478
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.
|
@@ -6611,6 +6611,18 @@
|
|
|
6611
6611
|
"type": "number",
|
|
6612
6612
|
"minimum": 0.0,
|
|
6613
6613
|
"maximum": 9223372036854776000.0
|
|
6614
|
+
},
|
|
6615
|
+
"audioCaptureFirstSpeechTime": {
|
|
6616
|
+
"description": "Timestamp in milliseconds of first VAD (voice activity detection) detected for capturer",
|
|
6617
|
+
"type": "number",
|
|
6618
|
+
"minimum": 0.0,
|
|
6619
|
+
"maximum": 9223372036854776000.0
|
|
6620
|
+
},
|
|
6621
|
+
"audioPlaybackFirstSpeechTime": {
|
|
6622
|
+
"description": "Timestamp in milliseconds of first WmeMediaEngineEventType_Audio_Processing_NotifyFirstSpeech. First time when VAD (voice activity detection) event is sent from WME for playback",
|
|
6623
|
+
"type": "number",
|
|
6624
|
+
"minimum": 0.0,
|
|
6625
|
+
"maximum": 9223372036854776000.0
|
|
6614
6626
|
}
|
|
6615
6627
|
}
|
|
6616
6628
|
},
|
|
@@ -7111,6 +7111,18 @@
|
|
|
7111
7111
|
"type": "number",
|
|
7112
7112
|
"minimum": 0.0,
|
|
7113
7113
|
"maximum": 9223372036854776000.0
|
|
7114
|
+
},
|
|
7115
|
+
"audioCaptureFirstSpeechTime": {
|
|
7116
|
+
"description": "Timestamp in milliseconds of first VAD (voice activity detection) detected for capturer",
|
|
7117
|
+
"type": "number",
|
|
7118
|
+
"minimum": 0.0,
|
|
7119
|
+
"maximum": 9223372036854776000.0
|
|
7120
|
+
},
|
|
7121
|
+
"audioPlaybackFirstSpeechTime": {
|
|
7122
|
+
"description": "Timestamp in milliseconds of first WmeMediaEngineEventType_Audio_Processing_NotifyFirstSpeech. First time when VAD (voice activity detection) event is sent from WME for playback",
|
|
7123
|
+
"type": "number",
|
|
7124
|
+
"minimum": 0.0,
|
|
7125
|
+
"maximum": 9223372036854776000.0
|
|
7114
7126
|
}
|
|
7115
7127
|
}
|
|
7116
7128
|
},
|
|
@@ -11786,6 +11798,9 @@
|
|
|
11786
11798
|
},
|
|
11787
11799
|
"region": {
|
|
11788
11800
|
"type": "string"
|
|
11801
|
+
},
|
|
11802
|
+
"isAnswered": {
|
|
11803
|
+
"type": "boolean"
|
|
11789
11804
|
}
|
|
11790
11805
|
}
|
|
11791
11806
|
},
|
|
@@ -3271,6 +3271,14 @@ export interface Event {
|
|
|
3271
3271
|
* WmeMediaEngineEventType_Audio_DeviceStatus_Playback_DataAvailable - first time
|
|
3272
3272
|
*/
|
|
3273
3273
|
firstPlaybackDataAvailable?: number;
|
|
3274
|
+
/**
|
|
3275
|
+
* Timestamp in milliseconds of first VAD (voice activity detection) detected for capturer
|
|
3276
|
+
*/
|
|
3277
|
+
audioCaptureFirstSpeechTime?: number;
|
|
3278
|
+
/**
|
|
3279
|
+
* Timestamp in milliseconds of first WmeMediaEngineEventType_Audio_Processing_NotifyFirstSpeech. First time when VAD (voice activity detection) event is sent from WME for playback
|
|
3280
|
+
*/
|
|
3281
|
+
audioPlaybackFirstSpeechTime?: number;
|
|
3274
3282
|
additionalProperties?: false;
|
|
3275
3283
|
};
|
|
3276
3284
|
/**
|
|
@@ -5199,6 +5207,7 @@ export interface Event {
|
|
|
5199
5207
|
confluenceCount?: number;
|
|
5200
5208
|
countryCode?: string;
|
|
5201
5209
|
region?: string;
|
|
5210
|
+
isAnswered?: boolean;
|
|
5202
5211
|
additionalProperties?: false;
|
|
5203
5212
|
}
|
|
5204
5213
|
| {
|
|
@@ -14474,6 +14483,14 @@ export interface ClientEvent {
|
|
|
14474
14483
|
* WmeMediaEngineEventType_Audio_DeviceStatus_Playback_DataAvailable - first time
|
|
14475
14484
|
*/
|
|
14476
14485
|
firstPlaybackDataAvailable?: number;
|
|
14486
|
+
/**
|
|
14487
|
+
* Timestamp in milliseconds of first VAD (voice activity detection) detected for capturer
|
|
14488
|
+
*/
|
|
14489
|
+
audioCaptureFirstSpeechTime?: number;
|
|
14490
|
+
/**
|
|
14491
|
+
* Timestamp in milliseconds of first WmeMediaEngineEventType_Audio_Processing_NotifyFirstSpeech. First time when VAD (voice activity detection) event is sent from WME for playback
|
|
14492
|
+
*/
|
|
14493
|
+
audioPlaybackFirstSpeechTime?: number;
|
|
14477
14494
|
additionalProperties?: false;
|
|
14478
14495
|
};
|
|
14479
14496
|
/**
|
package/package.json
CHANGED