stream-chat 9.10.1 → 9.11.0

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/esm/index.js CHANGED
@@ -4642,6 +4642,9 @@ var AttachmentManager = class {
4642
4642
  if (isFileReference(fileLike) && fileLike.thumb_url) {
4643
4643
  localAttachment.thumb_url = fileLike.thumb_url;
4644
4644
  }
4645
+ if (isFileReference(fileLike) && fileLike.duration) {
4646
+ localAttachment.duration = fileLike.duration;
4647
+ }
4645
4648
  return localAttachment;
4646
4649
  };
4647
4650
  this.ensureLocalUploadAttachment = async (attachment) => {
@@ -16524,7 +16527,7 @@ var StreamChat = class _StreamChat {
16524
16527
  if (this.userAgent) {
16525
16528
  return this.userAgent;
16526
16529
  }
16527
- const version = "9.10.1";
16530
+ const version = "9.11.0";
16528
16531
  const clientBundle = "browser-esm";
16529
16532
  let userAgentString = "";
16530
16533
  if (this.sdkIdentifier) {