@stream-io/video-client 0.6.9 → 0.6.10

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.10](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-client-0.6.9...@stream-io/video-client-0.6.10) (2024-04-05)
6
+
7
+
8
+ ### Features
9
+
10
+ * revert add submit feedback method to Call ([#1307](https://github.com/GetStream/stream-video-js/issues/1307)) ([#1308](https://github.com/GetStream/stream-video-js/issues/1308)) ([df9a74d](https://github.com/GetStream/stream-video-js/commit/df9a74dddf0287812b723d134d92941ac939bb9f))
11
+
5
12
  ### [0.6.9](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-client-0.6.8...@stream-io/video-client-0.6.9) (2024-04-05)
6
13
 
7
14
 
@@ -12609,19 +12609,6 @@ class Call {
12609
12609
  const endpoint = `${this.streamClientBasePath}/stats/${callSessionID}`;
12610
12610
  return this.streamClient.get(endpoint);
12611
12611
  };
12612
- /**
12613
- * Submit feedback on call experience
12614
- *
12615
- * @returns
12616
- */
12617
- this.submitFeedback = async (feedback) => {
12618
- const callSessionId = this.state.session?.id;
12619
- if (!callSessionId) {
12620
- return;
12621
- }
12622
- const endpoint = `${this.streamClientBasePath}/feedback/${callSessionId}`;
12623
- return this.streamClient.post(endpoint, feedback);
12624
- };
12625
12612
  /**
12626
12613
  * Sends a custom event to all call participants.
12627
12614
  *
@@ -14490,7 +14477,7 @@ class StreamClient {
14490
14477
  });
14491
14478
  };
14492
14479
  this.getUserAgent = () => {
14493
- const version = "0.6.9" ;
14480
+ const version = "0.6.10" ;
14494
14481
  return (this.userAgent ||
14495
14482
  `stream-video-javascript-client-${this.node ? 'node' : 'browser'}-${version}`);
14496
14483
  };