@streamoji/aitwin 0.7.0 → 0.7.2

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.d.ts CHANGED
@@ -300,6 +300,9 @@ export declare type AvatarTtsLipsyncController = {
300
300
  setLipsyncWarmupHold: (enabled: boolean, shouldHold?: () => boolean) => void;
301
301
  /** Live MediaStream of the synthesized voice for recording/mixing (null until audio is primed). */
302
302
  getVoiceStream: () => MediaStream | null;
303
+ /** Mute/unmute speaker output (capture stream stays live). */
304
+ setMuted: (muted: boolean) => void;
305
+ isMuted: () => boolean;
303
306
  setPlaybackSpeed: (rate: number) => void;
304
307
  getPlaybackSpeed: () => number;
305
308
  subscribe: (listener: () => void) => () => void;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@streamoji/aitwin",
3
- "version": "0.7.0",
3
+ "version": "0.7.2",
4
4
  "description": "AiTwin.me Player SDK",
5
5
  "type": "module",
6
6
  "main": "./dist/aitwin.cjs",