@stream-io/video-client 1.11.1 → 1.11.2

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.cjs.js CHANGED
@@ -3356,7 +3356,7 @@ const retryable = async (rpc, signal) => {
3356
3356
  return result;
3357
3357
  };
3358
3358
 
3359
- const version = "1.11.1";
3359
+ const version = "1.11.2";
3360
3360
  const [major, minor, patch] = version.split('.');
3361
3361
  let sdkInfo = {
3362
3362
  type: SdkType.PLAIN_JAVASCRIPT,
@@ -12235,6 +12235,8 @@ class TokenManager {
12235
12235
  */
12236
12236
  this.reset = () => {
12237
12237
  this.token = undefined;
12238
+ this.tokenProvider = undefined;
12239
+ this.type = 'static';
12238
12240
  this.user = undefined;
12239
12241
  this.loadTokenPromise = null;
12240
12242
  };
@@ -12995,7 +12997,7 @@ class StreamClient {
12995
12997
  });
12996
12998
  };
12997
12999
  this.getUserAgent = () => {
12998
- const version = "1.11.1";
13000
+ const version = "1.11.2";
12999
13001
  return (this.userAgent ||
13000
13002
  `stream-video-javascript-client-${this.node ? 'node' : 'browser'}-${version}`);
13001
13003
  };