@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.js CHANGED
@@ -9249,6 +9249,7 @@ var AudioPlayer = class {
9249
9249
  }
9250
9250
  this.currentSource = null;
9251
9251
  }
9252
+ if (this.audioElement) this.audioElement.muted = true;
9252
9253
  this.isPlaying = false;
9253
9254
  this.currentMessageId = null;
9254
9255
  }
@@ -9320,6 +9321,7 @@ var AudioPlayer = class {
9320
9321
  this.currentSource = null;
9321
9322
  this.playNext();
9322
9323
  };
9324
+ if (this.audioElement) this.audioElement.muted = false;
9323
9325
  ctx.resume().catch(() => {
9324
9326
  });
9325
9327
  source.start();