sceyt-call 1.3.2 → 1.3.4

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/README.md CHANGED
@@ -297,8 +297,6 @@ call.disableRemoteParticipantAudio('user1');
297
297
 
298
298
  // Restore audio permission (allow them to unmute)
299
299
  call.enableRemoteParticipantAudio('user1');
300
- // or equivalently:
301
- call.unmuteRemoteParticipant('user1');
302
300
 
303
301
  // Mute all participants at once
304
302
  call.muteAllRemoteParticipants();
package/index.d.ts CHANGED
@@ -834,7 +834,6 @@ export declare class Call extends TypedEventEmitter<CallEventMap> {
834
834
  enableRemoteParticipantAudio(id: string, errorCallback?: (result: CallClientResult<boolean>) => void): CallClientResult<boolean>;
835
835
  enableCallAudio(errorCallback?: (result: CallClientResult<boolean>) => void): CallClientResult<boolean>;
836
836
  disableCallAudio(errorCallback?: (result: CallClientResult<boolean>) => void): CallClientResult<boolean>;
837
- unmuteRemoteParticipant(id: string, errorCallback?: (result: CallClientResult<boolean>) => void): CallClientResult<boolean>;
838
837
  disableRemoteParticipantVideo(id: string, errorCallback?: (result: CallClientResult<boolean>) => void): CallClientResult<boolean>;
839
838
  videoOffRemoteParticipant(id: string, errorCallback?: (result: CallClientResult<boolean>) => void): CallClientResult<boolean>;
840
839
  disableCallVideo(errorCallback?: (result: CallClientResult<boolean>) => void): CallClientResult<boolean>;