@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/dist/index.es.js CHANGED
@@ -3300,7 +3300,7 @@ const retryable = async (rpc, signal) => {
3300
3300
  return result;
3301
3301
  };
3302
3302
 
3303
- const version = "1.13.0";
3303
+ const version = "1.13.1";
3304
3304
  const [major, minor, patch] = version.split('.');
3305
3305
  let sdkInfo = {
3306
3306
  type: SdkType.PLAIN_JAVASCRIPT,
@@ -3311,7 +3311,7 @@ let sdkInfo = {
3311
3311
  let osInfo;
3312
3312
  let deviceInfo;
3313
3313
  let webRtcInfo;
3314
- let deviceState;
3314
+ let deviceState = { oneofKind: undefined };
3315
3315
  const setSdkInfo = (info) => {
3316
3316
  sdkInfo = info;
3317
3317
  };
@@ -12893,7 +12893,7 @@ class StreamClient {
12893
12893
  return await this.wsConnection.connect(this.defaultWSTimeout);
12894
12894
  };
12895
12895
  this.getUserAgent = () => {
12896
- const version = "1.13.0";
12896
+ const version = "1.13.1";
12897
12897
  return (this.userAgent ||
12898
12898
  `stream-video-javascript-client-${this.node ? 'node' : 'browser'}-${version}`);
12899
12899
  };