@stream-io/video-client 1.13.0 → 1.13.1

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
+ ## [1.13.1](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-client-1.13.0...@stream-io/video-client-1.13.1) (2024-12-20)
6
+
7
+
8
+ ### Bug Fixes
9
+
10
+ * **client:** fix the initial value of deviceState in clientDetails ([#1629](https://github.com/GetStream/stream-video-js/issues/1629)) ([afefb67](https://github.com/GetStream/stream-video-js/commit/afefb67a568899e2ce500e6dad36e64b6b0e5a3d))
11
+
5
12
  ## [1.13.0](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-client-1.12.4...@stream-io/video-client-1.13.0) (2024-12-20)
6
13
 
7
14
 
@@ -3299,7 +3299,7 @@ const retryable = async (rpc, signal) => {
3299
3299
  return result;
3300
3300
  };
3301
3301
 
3302
- const version = "1.13.0";
3302
+ const version = "1.13.1";
3303
3303
  const [major, minor, patch] = version.split('.');
3304
3304
  let sdkInfo = {
3305
3305
  type: SdkType.PLAIN_JAVASCRIPT,
@@ -3310,7 +3310,7 @@ let sdkInfo = {
3310
3310
  let osInfo;
3311
3311
  let deviceInfo;
3312
3312
  let webRtcInfo;
3313
- let deviceState;
3313
+ let deviceState = { oneofKind: undefined };
3314
3314
  const setSdkInfo = (info) => {
3315
3315
  sdkInfo = info;
3316
3316
  };
@@ -12894,7 +12894,7 @@ class StreamClient {
12894
12894
  return await this.wsConnection.connect(this.defaultWSTimeout);
12895
12895
  };
12896
12896
  this.getUserAgent = () => {
12897
- const version = "1.13.0";
12897
+ const version = "1.13.1";
12898
12898
  return (this.userAgent ||
12899
12899
  `stream-video-javascript-client-${this.node ? 'node' : 'browser'}-${version}`);
12900
12900
  };