@webex/event-dictionary-ts 1.0.1521 → 1.0.1523
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.
|
@@ -11864,6 +11864,9 @@
|
|
|
11864
11864
|
"timeShotAgeSeconds": {
|
|
11865
11865
|
"type": "number",
|
|
11866
11866
|
"multipleOf": 0.1
|
|
11867
|
+
},
|
|
11868
|
+
"trigger": {
|
|
11869
|
+
"type": "string"
|
|
11867
11870
|
}
|
|
11868
11871
|
}
|
|
11869
11872
|
},
|
|
@@ -15917,6 +15920,12 @@
|
|
|
15917
15920
|
"minimum": -32768,
|
|
15918
15921
|
"maximum": 32767
|
|
15919
15922
|
},
|
|
15923
|
+
"captureZeroRatio": {
|
|
15924
|
+
"type": "integer",
|
|
15925
|
+
"description": "one unsigned char every 1 minute, 10 means capture zero data ratio is 10%",
|
|
15926
|
+
"minimum": -32768,
|
|
15927
|
+
"maximum": 32767
|
|
15928
|
+
},
|
|
15920
15929
|
"speechLength": {
|
|
15921
15930
|
"type": "integer",
|
|
15922
15931
|
"minimum": 0,
|
|
@@ -3947,6 +3947,12 @@
|
|
|
3947
3947
|
"minimum": -32768,
|
|
3948
3948
|
"maximum": 32767
|
|
3949
3949
|
},
|
|
3950
|
+
"captureZeroRatio": {
|
|
3951
|
+
"type": "integer",
|
|
3952
|
+
"description": "one unsigned char every 1 minute, 10 means capture zero data ratio is 10%",
|
|
3953
|
+
"minimum": -32768,
|
|
3954
|
+
"maximum": 32767
|
|
3955
|
+
},
|
|
3950
3956
|
"speechLength": {
|
|
3951
3957
|
"type": "integer",
|
|
3952
3958
|
"minimum": 0,
|
|
@@ -5289,6 +5289,7 @@ export interface Event {
|
|
|
5289
5289
|
anycastEntryPoint?: string;
|
|
5290
5290
|
clientPublicNetworkPrefix?: string;
|
|
5291
5291
|
timeShotAgeSeconds?: number;
|
|
5292
|
+
trigger?: string;
|
|
5292
5293
|
additionalProperties?: false;
|
|
5293
5294
|
};
|
|
5294
5295
|
isMeetingStartedByCCPUser?: boolean;
|
|
@@ -6672,6 +6673,10 @@ export interface Event {
|
|
|
6672
6673
|
* one unsigned char every 1 minute, 0 for 0dB, plus 1 for -0.5dB
|
|
6673
6674
|
*/
|
|
6674
6675
|
avrRMS?: number;
|
|
6676
|
+
/**
|
|
6677
|
+
* one unsigned char every 1 minute, 10 means capture zero data ratio is 10%
|
|
6678
|
+
*/
|
|
6679
|
+
captureZeroRatio?: number;
|
|
6675
6680
|
/**
|
|
6676
6681
|
* one unsigned char every 1 minute, 0 for 0s, plus 4 for +1s
|
|
6677
6682
|
*/
|
|
@@ -17910,6 +17915,10 @@ export interface MediaQualityEvent {
|
|
|
17910
17915
|
* one unsigned char every 1 minute, 0 for 0dB, plus 1 for -0.5dB
|
|
17911
17916
|
*/
|
|
17912
17917
|
avrRMS?: number;
|
|
17918
|
+
/**
|
|
17919
|
+
* one unsigned char every 1 minute, 10 means capture zero data ratio is 10%
|
|
17920
|
+
*/
|
|
17921
|
+
captureZeroRatio?: number;
|
|
17913
17922
|
/**
|
|
17914
17923
|
* one unsigned char every 1 minute, 0 for 0s, plus 4 for +1s
|
|
17915
17924
|
*/
|
package/package.json
CHANGED