stream-chat 9.35.0 → 9.35.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.
@@ -7524,7 +7524,7 @@ var _MessageComposer = class _MessageComposer extends WithSubscriptions {
7524
7524
  }
7525
7525
  get hasSendableData() {
7526
7526
  if (this.client.offlineDb) {
7527
- return !this.compositionIsEmpty;
7527
+ return !this.textComposer.textIsEmpty || !!this.attachmentManager.attachments.length || !!this.pollId || !!this.locationComposer.validLocation;
7528
7528
  }
7529
7529
  return !!(!this.attachmentManager.uploadsInProgressCount && (!this.textComposer.textIsEmpty || this.attachmentManager.successfulUploadsCount > 0) || this.pollId || !!this.locationComposer.validLocation);
7530
7530
  }
@@ -15113,7 +15113,7 @@ var StreamChat = class _StreamChat {
15113
15113
  if (this.userAgent) {
15114
15114
  return this.userAgent;
15115
15115
  }
15116
- const version = "9.35.0";
15116
+ const version = "9.35.1";
15117
15117
  const clientBundle = "node-cjs";
15118
15118
  let userAgentString = "";
15119
15119
  if (this.sdkIdentifier) {