@stream-io/video-client 0.6.5 → 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 +14 -0
- package/dist/index.browser.es.js +10 -1
- package/dist/index.browser.es.js.map +1 -1
- package/dist/index.cjs.js +10 -1
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.es.js +10 -1
- package/dist/index.es.js.map +1 -1
- package/dist/src/StreamVideoClient.d.ts +8 -1
- package/dist/src/gen/coordinator/index.d.ts +162 -0
- package/package.json +1 -1
- package/src/StreamVideoClient.ts +15 -0
- package/src/gen/coordinator/index.ts +160 -0
package/dist/index.cjs.js
CHANGED
|
@@ -14393,7 +14393,7 @@ class StreamClient {
|
|
|
14393
14393
|
});
|
|
14394
14394
|
};
|
|
14395
14395
|
this.getUserAgent = () => {
|
|
14396
|
-
const version = "0.6.
|
|
14396
|
+
const version = "0.6.7" ;
|
|
14397
14397
|
return (this.userAgent ||
|
|
14398
14398
|
`stream-video-javascript-client-${this.node ? 'node' : 'browser'}-${version}`);
|
|
14399
14399
|
};
|
|
@@ -14651,6 +14651,15 @@ class StreamVideoClient {
|
|
|
14651
14651
|
calls: calls,
|
|
14652
14652
|
};
|
|
14653
14653
|
};
|
|
14654
|
+
/**
|
|
14655
|
+
* Retrieve the list of available call statistics reports matching a particular condition.
|
|
14656
|
+
*
|
|
14657
|
+
* @param data Filter and sort conditions for retrieving available call report summaries.
|
|
14658
|
+
* @returns List with summary of available call reports matching the condition.
|
|
14659
|
+
*/
|
|
14660
|
+
this.queryCallStats = async (data = {}) => {
|
|
14661
|
+
return this.streamClient.post(`/call/stats`, data);
|
|
14662
|
+
};
|
|
14654
14663
|
/**
|
|
14655
14664
|
* Returns a list of available data centers available for hosting calls.
|
|
14656
14665
|
*/
|