@stream-io/video-client 0.6.6 → 0.6.7

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.
package/CHANGELOG.md CHANGED
@@ -2,6 +2,13 @@
2
2
 
3
3
  This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).
4
4
 
5
+ ### [0.6.7](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-client-0.6.6...@stream-io/video-client-0.6.7) (2024-04-02)
6
+
7
+
8
+ ### Features
9
+
10
+ * [PBE-1611] Query call reports endpoint ([#1306](https://github.com/GetStream/stream-video-js/issues/1306)) ([0861a5d](https://github.com/GetStream/stream-video-js/commit/0861a5dd6e6e56c4ae286c44f174a319e8f308c4))
11
+
5
12
  ### [0.6.6](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-client-0.6.5...@stream-io/video-client-0.6.6) (2024-03-29)
6
13
 
7
14
 
@@ -14369,7 +14369,7 @@ class StreamClient {
14369
14369
  });
14370
14370
  };
14371
14371
  this.getUserAgent = () => {
14372
- const version = "0.6.6" ;
14372
+ const version = "0.6.7" ;
14373
14373
  return (this.userAgent ||
14374
14374
  `stream-video-javascript-client-${this.node ? 'node' : 'browser'}-${version}`);
14375
14375
  };
@@ -14627,6 +14627,15 @@ class StreamVideoClient {
14627
14627
  calls: calls,
14628
14628
  };
14629
14629
  };
14630
+ /**
14631
+ * Retrieve the list of available call statistics reports matching a particular condition.
14632
+ *
14633
+ * @param data Filter and sort conditions for retrieving available call report summaries.
14634
+ * @returns List with summary of available call reports matching the condition.
14635
+ */
14636
+ this.queryCallStats = async (data = {}) => {
14637
+ return this.streamClient.post(`/call/stats`, data);
14638
+ };
14630
14639
  /**
14631
14640
  * Returns a list of available data centers available for hosting calls.
14632
14641
  */