stream-chat 8.40.5 → 8.40.6

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.js CHANGED
@@ -8666,7 +8666,7 @@ var ThreadManager = /*#__PURE__*/function () {
8666
8666
 
8667
8667
  _context.next = 11;
8668
8668
  return _this.queryThreads({
8669
- limit: Math.min(limit, MAX_QUERY_THREADS_LIMIT)
8669
+ limit: Math.min(limit, MAX_QUERY_THREADS_LIMIT) || MAX_QUERY_THREADS_LIMIT
8670
8670
  });
8671
8671
 
8672
8672
  case 11:
@@ -13361,7 +13361,7 @@ var StreamChat = /*#__PURE__*/function () {
13361
13361
  }, {
13362
13362
  key: "getUserAgent",
13363
13363
  value: function getUserAgent() {
13364
- return this.userAgent || "stream-chat-javascript-client-".concat(this.node ? 'node' : 'browser', "-", "8.40.5");
13364
+ return this.userAgent || "stream-chat-javascript-client-".concat(this.node ? 'node' : 'browser', "-", "8.40.6");
13365
13365
  }
13366
13366
  }, {
13367
13367
  key: "setUserAgent",