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.
@@ -8635,7 +8635,7 @@ var ThreadManager = /*#__PURE__*/function () {
8635
8635
 
8636
8636
  _context.next = 11;
8637
8637
  return _this.queryThreads({
8638
- limit: Math.min(limit, MAX_QUERY_THREADS_LIMIT)
8638
+ limit: Math.min(limit, MAX_QUERY_THREADS_LIMIT) || MAX_QUERY_THREADS_LIMIT
8639
8639
  });
8640
8640
 
8641
8641
  case 11:
@@ -13330,7 +13330,7 @@ var StreamChat = /*#__PURE__*/function () {
13330
13330
  }, {
13331
13331
  key: "getUserAgent",
13332
13332
  value: function getUserAgent() {
13333
- return this.userAgent || "stream-chat-javascript-client-".concat(this.node ? 'node' : 'browser', "-", "8.40.5");
13333
+ return this.userAgent || "stream-chat-javascript-client-".concat(this.node ? 'node' : 'browser', "-", "8.40.6");
13334
13334
  }
13335
13335
  }, {
13336
13336
  key: "setUserAgent",