stream-chat 8.44.0 → 8.45.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/browser.es.js +3 -1
- package/dist/browser.es.js.map +1 -1
- package/dist/browser.full-bundle.min.js +1 -1
- package/dist/browser.full-bundle.min.js.map +1 -1
- package/dist/browser.js +3 -1
- package/dist/browser.js.map +1 -1
- package/dist/index.es.js +3 -1
- package/dist/index.es.js.map +1 -1
- package/dist/index.js +3 -1
- package/dist/index.js.map +1 -1
- package/dist/types/client.d.ts +2 -0
- package/dist/types/client.d.ts.map +1 -1
- package/dist/types/token_manager.d.ts.map +1 -1
- package/dist/types/types.d.ts +6 -0
- package/dist/types/types.d.ts.map +1 -1
- package/package.json +1 -1
- package/src/token_manager.ts +2 -0
- package/src/types.ts +9 -1
package/dist/browser.js
CHANGED
|
@@ -6400,6 +6400,8 @@ function TokenManager(secret) {
|
|
|
6400
6400
|
|
|
6401
6401
|
_defineProperty__default['default'](this, "reset", function () {
|
|
6402
6402
|
_this.token = undefined;
|
|
6403
|
+
_this.tokenProvider = undefined;
|
|
6404
|
+
_this.type = 'static';
|
|
6403
6405
|
_this.user = undefined;
|
|
6404
6406
|
_this.loadTokenPromise = null;
|
|
6405
6407
|
});
|
|
@@ -14640,7 +14642,7 @@ var StreamChat = /*#__PURE__*/function () {
|
|
|
14640
14642
|
}, {
|
|
14641
14643
|
key: "getUserAgent",
|
|
14642
14644
|
value: function getUserAgent() {
|
|
14643
|
-
return this.userAgent || "stream-chat-javascript-client-".concat(this.node ? 'node' : 'browser', "-", "8.
|
|
14645
|
+
return this.userAgent || "stream-chat-javascript-client-".concat(this.node ? 'node' : 'browser', "-", "8.45.1");
|
|
14644
14646
|
}
|
|
14645
14647
|
}, {
|
|
14646
14648
|
key: "setUserAgent",
|