@webex/event-dictionary-ts 1.0.1805 → 1.0.1806

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.
@@ -17239,6 +17239,12 @@
17239
17239
  "minimum": -32768,
17240
17240
  "maximum": 32767
17241
17241
  },
17242
+ "volumeDropTimes": {
17243
+ "type": "integer",
17244
+ "description": "one unsigned char every 1 minute, 10 means volume drop times is 10",
17245
+ "minimum": -32768,
17246
+ "maximum": 32767
17247
+ },
17242
17248
  "speechLength": {
17243
17249
  "type": "integer",
17244
17250
  "minimum": 0,
@@ -4391,6 +4391,12 @@
4391
4391
  "minimum": -32768,
4392
4392
  "maximum": 32767
4393
4393
  },
4394
+ "volumeDropTimes": {
4395
+ "type": "integer",
4396
+ "description": "one unsigned char every 1 minute, 10 means volume drop times is 10",
4397
+ "minimum": -32768,
4398
+ "maximum": 32767
4399
+ },
4394
4400
  "speechLength": {
4395
4401
  "type": "integer",
4396
4402
  "minimum": 0,
@@ -7534,6 +7534,10 @@ export interface Event {
7534
7534
  * one unsigned char every 1 minute, 10 means capture zero data ratio is 10%
7535
7535
  */
7536
7536
  captureZeroRatio?: number;
7537
+ /**
7538
+ * one unsigned char every 1 minute, 10 means volume drop times is 10
7539
+ */
7540
+ volumeDropTimes?: number;
7537
7541
  /**
7538
7542
  * one unsigned char every 1 minute, 0 for 0s, plus 4 for +1s
7539
7543
  */
@@ -21263,6 +21267,10 @@ export interface MediaQualityEvent {
21263
21267
  * one unsigned char every 1 minute, 10 means capture zero data ratio is 10%
21264
21268
  */
21265
21269
  captureZeroRatio?: number;
21270
+ /**
21271
+ * one unsigned char every 1 minute, 10 means volume drop times is 10
21272
+ */
21273
+ volumeDropTimes?: number;
21266
21274
  /**
21267
21275
  * one unsigned char every 1 minute, 0 for 0s, plus 4 for +1s
21268
21276
  */
package/package.json CHANGED
@@ -27,5 +27,5 @@
27
27
  "access": "public",
28
28
  "registry": "https://registry.npmjs.org"
29
29
  },
30
- "version": "1.0.1805"
30
+ "version": "1.0.1806"
31
31
  }