livekit-client 2.13.7 → 2.13.8

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.
@@ -11331,7 +11331,7 @@ function getOSVersion(ua) {
11331
11331
  return ua.includes('mac os') ? getMatch(/\(.+?(\d+_\d+(:?_\d+)?)/, ua, 1).replace(/_/g, '.') : undefined;
11332
11332
  }
11333
11333
 
11334
- var version$1 = "2.13.7";
11334
+ var version$1 = "2.13.8";
11335
11335
 
11336
11336
  const version = version$1;
11337
11337
  const protocolVersion = 16;
@@ -12951,7 +12951,8 @@ class E2EEManager extends eventsExports.EventEmitter {
12951
12951
  writableStream: writable,
12952
12952
  trackId: trackId,
12953
12953
  codec,
12954
- participantIdentity: participantIdentity
12954
+ participantIdentity: participantIdentity,
12955
+ isReuse: E2EE_FLAG in receiver
12955
12956
  }
12956
12957
  };
12957
12958
  this.worker.postMessage(msg, [readable, writable]);
@@ -12994,7 +12995,8 @@ class E2EEManager extends eventsExports.EventEmitter {
12994
12995
  writableStream: senderStreams.writable,
12995
12996
  codec,
12996
12997
  trackId,
12997
- participantIdentity: this.room.localParticipant.identity
12998
+ participantIdentity: this.room.localParticipant.identity,
12999
+ isReuse: false
12998
13000
  }
12999
13001
  };
13000
13002
  this.worker.postMessage(msg, [senderStreams.readable, senderStreams.writable]);