@webex/event-dictionary-ts 1.0.1886 → 1.0.1887

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.
@@ -18877,6 +18877,16 @@
18877
18877
  "minimum": -9223372036854776000.0,
18878
18878
  "maximum": 9223372036854776000.0
18879
18879
  },
18880
+ "adaptedFrames": {
18881
+ "type": "integer",
18882
+ "minimum": -2147483648,
18883
+ "maximum": 2147483647
18884
+ },
18885
+ "droppedFrames": {
18886
+ "type": "integer",
18887
+ "minimum": -2147483648,
18888
+ "maximum": 2147483647
18889
+ },
18880
18890
  "sentFps": {
18881
18891
  "type": "number",
18882
18892
  "minimum": -9223372036854776000.0,
@@ -5829,6 +5829,16 @@
5829
5829
  "minimum": -9223372036854776000.0,
5830
5830
  "maximum": 9223372036854776000.0
5831
5831
  },
5832
+ "adaptedFrames": {
5833
+ "type": "integer",
5834
+ "minimum": -2147483648,
5835
+ "maximum": 2147483647
5836
+ },
5837
+ "droppedFrames": {
5838
+ "type": "integer",
5839
+ "minimum": -2147483648,
5840
+ "maximum": 2147483647
5841
+ },
5832
5842
  "sentFps": {
5833
5843
  "type": "number",
5834
5844
  "minimum": -9223372036854776000.0,
@@ -8196,6 +8196,8 @@ export interface Event {
8196
8196
  additionalProperties?: false;
8197
8197
  }[];
8198
8198
  camOutputFps?: number;
8199
+ adaptedFrames?: number;
8200
+ droppedFrames?: number;
8199
8201
  sentFps?: number;
8200
8202
  vbgOutputFps?: number;
8201
8203
  encCtrlTargetedFps?: number;
@@ -22227,6 +22229,8 @@ export interface MediaQualityEvent {
22227
22229
  additionalProperties?: false;
22228
22230
  }[];
22229
22231
  camOutputFps?: number;
22232
+ adaptedFrames?: number;
22233
+ droppedFrames?: number;
22230
22234
  sentFps?: number;
22231
22235
  vbgOutputFps?: number;
22232
22236
  encCtrlTargetedFps?: number;
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.1886"
30
+ "version": "1.0.1887"
31
31
  }