@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.es.js CHANGED
@@ -3336,7 +3336,7 @@ const retryable = async (rpc, signal) => {
3336
3336
  return result;
3337
3337
  };
3338
3338
 
3339
- const version = "1.11.1";
3339
+ const version = "1.11.2";
3340
3340
  const [major, minor, patch] = version.split('.');
3341
3341
  let sdkInfo = {
3342
3342
  type: SdkType.PLAIN_JAVASCRIPT,
@@ -12215,6 +12215,8 @@ class TokenManager {
12215
12215
  */
12216
12216
  this.reset = () => {
12217
12217
  this.token = undefined;
12218
+ this.tokenProvider = undefined;
12219
+ this.type = 'static';
12218
12220
  this.user = undefined;
12219
12221
  this.loadTokenPromise = null;
12220
12222
  };
@@ -12975,7 +12977,7 @@ class StreamClient {
12975
12977
  });
12976
12978
  };
12977
12979
  this.getUserAgent = () => {
12978
- const version = "1.11.1";
12980
+ const version = "1.11.2";
12979
12981
  return (this.userAgent ||
12980
12982
  `stream-video-javascript-client-${this.node ? 'node' : 'browser'}-${version}`);
12981
12983
  };