@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/dist/index.es.js CHANGED
@@ -14373,7 +14373,7 @@ class StreamClient {
14373
14373
  });
14374
14374
  };
14375
14375
  this.getUserAgent = () => {
14376
- const version = "0.6.6" ;
14376
+ const version = "0.6.7" ;
14377
14377
  return (this.userAgent ||
14378
14378
  `stream-video-javascript-client-${this.node ? 'node' : 'browser'}-${version}`);
14379
14379
  };
@@ -14631,6 +14631,15 @@ class StreamVideoClient {
14631
14631
  calls: calls,
14632
14632
  };
14633
14633
  };
14634
+ /**
14635
+ * Retrieve the list of available call statistics reports matching a particular condition.
14636
+ *
14637
+ * @param data Filter and sort conditions for retrieving available call report summaries.
14638
+ * @returns List with summary of available call reports matching the condition.
14639
+ */
14640
+ this.queryCallStats = async (data = {}) => {
14641
+ return this.streamClient.post(`/call/stats`, data);
14642
+ };
14634
14643
  /**
14635
14644
  * Returns a list of available data centers available for hosting calls.
14636
14645
  */