@webex/event-dictionary-ts 1.0.1320 → 1.0.1321
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.
|
@@ -14809,6 +14809,12 @@
|
|
|
14809
14809
|
"description": "one short every 1 minute",
|
|
14810
14810
|
"minimum": -128,
|
|
14811
14811
|
"maximum": 127
|
|
14812
|
+
},
|
|
14813
|
+
"vadRetentionOnMute": {
|
|
14814
|
+
"type": "integer",
|
|
14815
|
+
"description": "one short every 1 minute,0 indicate 90%,plus 1 indicate 0.1%",
|
|
14816
|
+
"minimum": -128,
|
|
14817
|
+
"maximum": 127
|
|
14812
14818
|
}
|
|
14813
14819
|
}
|
|
14814
14820
|
},
|
|
@@ -3775,6 +3775,12 @@
|
|
|
3775
3775
|
"description": "one short every 1 minute",
|
|
3776
3776
|
"minimum": -128,
|
|
3777
3777
|
"maximum": 127
|
|
3778
|
+
},
|
|
3779
|
+
"vadRetentionOnMute": {
|
|
3780
|
+
"type": "integer",
|
|
3781
|
+
"description": "one short every 1 minute,0 indicate 90%,plus 1 indicate 0.1%",
|
|
3782
|
+
"minimum": -128,
|
|
3783
|
+
"maximum": 127
|
|
3778
3784
|
}
|
|
3779
3785
|
}
|
|
3780
3786
|
},
|
|
@@ -6066,6 +6066,10 @@ export interface Event {
|
|
|
6066
6066
|
* one short every 1 minute
|
|
6067
6067
|
*/
|
|
6068
6068
|
aecStereoStatus?: number;
|
|
6069
|
+
/**
|
|
6070
|
+
* one short every 1 minute,0 indicate 90%,plus 1 indicate 0.1%
|
|
6071
|
+
*/
|
|
6072
|
+
vadRetentionOnMute?: number;
|
|
6069
6073
|
additionalProperties?: false;
|
|
6070
6074
|
};
|
|
6071
6075
|
/**
|
|
@@ -15036,6 +15040,10 @@ export interface MediaQualityEvent {
|
|
|
15036
15040
|
* one short every 1 minute
|
|
15037
15041
|
*/
|
|
15038
15042
|
aecStereoStatus?: number;
|
|
15043
|
+
/**
|
|
15044
|
+
* one short every 1 minute,0 indicate 90%,plus 1 indicate 0.1%
|
|
15045
|
+
*/
|
|
15046
|
+
vadRetentionOnMute?: number;
|
|
15039
15047
|
additionalProperties?: false;
|
|
15040
15048
|
};
|
|
15041
15049
|
/**
|
package/package.json
CHANGED