@webex/event-dictionary-ts 1.0.1504 → 1.0.1506

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.
@@ -17905,6 +17905,18 @@
17905
17905
  "minimum": -32768,
17906
17906
  "maximum": 32767
17907
17907
  },
17908
+ "xcodecDecoded3kFrames": {
17909
+ "type": "integer",
17910
+ "description": "how many frames encoded with 3kbps (from redundant packets) are decoded by Xcodec in one minute.",
17911
+ "minimum": -32768,
17912
+ "maximum": 32767
17913
+ },
17914
+ "xcodecDecoded2kFrames": {
17915
+ "type": "integer",
17916
+ "description": "how many frames encoded with 2kbps (from redundant packets) are decoded by Xcodec in one minute.",
17917
+ "minimum": -32768,
17918
+ "maximum": 32767
17919
+ },
17908
17920
  "xcodecDecoded1kFrames": {
17909
17921
  "type": "integer",
17910
17922
  "description": "how many frames encoded with 1kbps (from redundant packets) are decoded by Xcodec in one minute.",
@@ -6064,6 +6064,18 @@
6064
6064
  "minimum": -32768,
6065
6065
  "maximum": 32767
6066
6066
  },
6067
+ "xcodecDecoded3kFrames": {
6068
+ "type": "integer",
6069
+ "description": "how many frames encoded with 3kbps (from redundant packets) are decoded by Xcodec in one minute.",
6070
+ "minimum": -32768,
6071
+ "maximum": 32767
6072
+ },
6073
+ "xcodecDecoded2kFrames": {
6074
+ "type": "integer",
6075
+ "description": "how many frames encoded with 2kbps (from redundant packets) are decoded by Xcodec in one minute.",
6076
+ "minimum": -32768,
6077
+ "maximum": 32767
6078
+ },
6067
6079
  "xcodecDecoded1kFrames": {
6068
6080
  "type": "integer",
6069
6081
  "description": "how many frames encoded with 1kbps (from redundant packets) are decoded by Xcodec in one minute.",
@@ -7451,6 +7451,14 @@ export interface Event {
7451
7451
  * how many frames encoded with 6kbps (from primary packets) are decoded by Xcodec in one minute.
7452
7452
  */
7453
7453
  xcodecDecoded6kFrames?: number;
7454
+ /**
7455
+ * how many frames encoded with 3kbps (from redundant packets) are decoded by Xcodec in one minute.
7456
+ */
7457
+ xcodecDecoded3kFrames?: number;
7458
+ /**
7459
+ * how many frames encoded with 2kbps (from redundant packets) are decoded by Xcodec in one minute.
7460
+ */
7461
+ xcodecDecoded2kFrames?: number;
7454
7462
  /**
7455
7463
  * how many frames encoded with 1kbps (from redundant packets) are decoded by Xcodec in one minute.
7456
7464
  */
@@ -18579,6 +18587,14 @@ export interface MediaQualityEvent {
18579
18587
  * how many frames encoded with 6kbps (from primary packets) are decoded by Xcodec in one minute.
18580
18588
  */
18581
18589
  xcodecDecoded6kFrames?: number;
18590
+ /**
18591
+ * how many frames encoded with 3kbps (from redundant packets) are decoded by Xcodec in one minute.
18592
+ */
18593
+ xcodecDecoded3kFrames?: number;
18594
+ /**
18595
+ * how many frames encoded with 2kbps (from redundant packets) are decoded by Xcodec in one minute.
18596
+ */
18597
+ xcodecDecoded2kFrames?: number;
18582
18598
  /**
18583
18599
  * how many frames encoded with 1kbps (from redundant packets) are decoded by Xcodec in one minute.
18584
18600
  */
package/package.json CHANGED
@@ -28,5 +28,5 @@
28
28
  "access": "public",
29
29
  "registry": "https://registry.npmjs.org"
30
30
  },
31
- "version": "1.0.1504"
31
+ "version": "1.0.1506"
32
32
  }