@estuary-ai/sdk 0.1.8 → 0.1.9

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.mjs CHANGED
@@ -3917,6 +3917,7 @@ var AudioPlayer = class {
3917
3917
  }
3918
3918
  this.currentSource = null;
3919
3919
  }
3920
+ if (this.audioElement) this.audioElement.muted = true;
3920
3921
  this.isPlaying = false;
3921
3922
  this.currentMessageId = null;
3922
3923
  }
@@ -3988,6 +3989,7 @@ var AudioPlayer = class {
3988
3989
  this.currentSource = null;
3989
3990
  this.playNext();
3990
3991
  };
3992
+ if (this.audioElement) this.audioElement.muted = false;
3991
3993
  ctx.resume().catch(() => {
3992
3994
  });
3993
3995
  source.start();