livekit-client 2.3.2 → 2.4.1
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/livekit-client.e2ee.worker.js +1 -1
 - package/dist/livekit-client.e2ee.worker.js.map +1 -1
 - package/dist/livekit-client.e2ee.worker.mjs +8 -6
 - package/dist/livekit-client.e2ee.worker.mjs.map +1 -1
 - package/dist/livekit-client.esm.mjs +268 -45
 - package/dist/livekit-client.esm.mjs.map +1 -1
 - package/dist/livekit-client.umd.js +1 -1
 - package/dist/livekit-client.umd.js.map +1 -1
 - package/dist/src/api/SignalClient.d.ts +5 -2
 - package/dist/src/api/SignalClient.d.ts.map +1 -1
 - package/dist/src/connectionHelper/checks/reconnect.d.ts.map +1 -1
 - package/dist/src/e2ee/errors.d.ts +2 -1
 - package/dist/src/e2ee/errors.d.ts.map +1 -1
 - package/dist/src/e2ee/index.d.ts +1 -0
 - package/dist/src/e2ee/index.d.ts.map +1 -1
 - package/dist/src/e2ee/worker/FrameCryptor.d.ts.map +1 -1
 - package/dist/src/logger.d.ts.map +1 -1
 - package/dist/src/room/RTCEngine.d.ts +2 -1
 - package/dist/src/room/RTCEngine.d.ts.map +1 -1
 - package/dist/src/room/Room.d.ts +2 -0
 - package/dist/src/room/Room.d.ts.map +1 -1
 - package/dist/src/room/errors.d.ts +5 -0
 - package/dist/src/room/errors.d.ts.map +1 -1
 - package/dist/src/room/events.d.ts +15 -2
 - package/dist/src/room/events.d.ts.map +1 -1
 - package/dist/src/room/participant/LocalParticipant.d.ts +14 -6
 - package/dist/src/room/participant/LocalParticipant.d.ts.map +1 -1
 - package/dist/src/room/participant/Participant.d.ts +8 -0
 - package/dist/src/room/participant/Participant.d.ts.map +1 -1
 - package/dist/src/room/timers.d.ts +4 -4
 - package/dist/src/room/timers.d.ts.map +1 -1
 - package/dist/src/room/track/utils.d.ts +1 -0
 - package/dist/src/room/track/utils.d.ts.map +1 -1
 - package/dist/ts4.2/src/api/SignalClient.d.ts +5 -2
 - package/dist/ts4.2/src/e2ee/errors.d.ts +2 -1
 - package/dist/ts4.2/src/e2ee/index.d.ts +1 -0
 - package/dist/ts4.2/src/room/RTCEngine.d.ts +2 -1
 - package/dist/ts4.2/src/room/Room.d.ts +2 -0
 - package/dist/ts4.2/src/room/errors.d.ts +5 -0
 - package/dist/ts4.2/src/room/events.d.ts +15 -2
 - package/dist/ts4.2/src/room/participant/LocalParticipant.d.ts +14 -6
 - package/dist/ts4.2/src/room/participant/Participant.d.ts +8 -0
 - package/dist/ts4.2/src/room/timers.d.ts +4 -4
 - package/dist/ts4.2/src/room/track/utils.d.ts +1 -0
 - package/package.json +2 -2
 - package/src/api/SignalClient.ts +24 -2
 - package/src/connectionHelper/checks/reconnect.ts +6 -3
 - package/src/e2ee/errors.ts +8 -1
 - package/src/e2ee/index.ts +1 -0
 - package/src/e2ee/worker/FrameCryptor.ts +15 -3
 - package/src/logger.ts +4 -3
 - package/src/room/DeviceManager.ts +1 -1
 - package/src/room/RTCEngine.ts +3 -0
 - package/src/room/Room.ts +25 -3
 - package/src/room/errors.ts +11 -0
 - package/src/room/events.ts +15 -0
 - package/src/room/participant/LocalParticipant.ts +92 -10
 - package/src/room/participant/Participant.ts +23 -0
 - package/src/room/track/utils.test.ts +35 -1
 - package/src/room/track/utils.ts +22 -0
 
| 
         @@ -454,8 +454,10 @@ var CryptorErrorReason; 
     | 
|
| 
       454 
454 
     | 
    
         
             
            class CryptorError extends LivekitError {
         
     | 
| 
       455 
455 
     | 
    
         
             
              constructor(message) {
         
     | 
| 
       456 
456 
     | 
    
         
             
                let reason = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : CryptorErrorReason.InternalError;
         
     | 
| 
      
 457 
     | 
    
         
            +
                let participantIdentity = arguments.length > 2 ? arguments[2] : undefined;
         
     | 
| 
       457 
458 
     | 
    
         
             
                super(40, message);
         
     | 
| 
       458 
459 
     | 
    
         
             
                this.reason = reason;
         
     | 
| 
      
 460 
     | 
    
         
            +
                this.participantIdentity = participantIdentity;
         
     | 
| 
       459 
461 
     | 
    
         
             
              }
         
     | 
| 
       460 
462 
     | 
    
         
             
            }
         
     | 
| 
       461 
463 
     | 
    
         | 
| 
         @@ -1111,7 +1113,7 @@ class FrameCryptor extends BaseFrameCryptor { 
     | 
|
| 
       1111 
1113 
     | 
    
         
             
                });
         
     | 
| 
       1112 
1114 
     | 
    
         
             
                readable.pipeThrough(transformStream).pipeTo(writable).catch(e => {
         
     | 
| 
       1113 
1115 
     | 
    
         
             
                  workerLogger.warn(e);
         
     | 
| 
       1114 
     | 
    
         
            -
                  this.emit(CryptorEvent.Error, e instanceof CryptorError ? e : new CryptorError(e.message));
         
     | 
| 
      
 1116 
     | 
    
         
            +
                  this.emit(CryptorEvent.Error, e instanceof CryptorError ? e : new CryptorError(e.message, undefined, this.participantIdentity));
         
     | 
| 
       1115 
1117 
     | 
    
         
             
                });
         
     | 
| 
       1116 
1118 
     | 
    
         
             
                this.trackId = trackId;
         
     | 
| 
       1117 
1119 
     | 
    
         
             
              }
         
     | 
| 
         @@ -1198,8 +1200,8 @@ class FrameCryptor extends BaseFrameCryptor { 
     | 
|
| 
       1198 
1200 
     | 
    
         
             
                      workerLogger.error(e);
         
     | 
| 
       1199 
1201 
     | 
    
         
             
                    }
         
     | 
| 
       1200 
1202 
     | 
    
         
             
                  } else {
         
     | 
| 
       1201 
     | 
    
         
            -
                    workerLogger.debug('failed to  
     | 
| 
       1202 
     | 
    
         
            -
                    this.emit(CryptorEvent.Error, new CryptorError("encryption key missing for encoding", CryptorErrorReason.MissingKey));
         
     | 
| 
      
 1203 
     | 
    
         
            +
                    workerLogger.debug('failed to encrypt, emitting error', this.logContext);
         
     | 
| 
      
 1204 
     | 
    
         
            +
                    this.emit(CryptorEvent.Error, new CryptorError("encryption key missing for encoding", CryptorErrorReason.MissingKey, this.participantIdentity));
         
     | 
| 
       1203 
1205 
     | 
    
         
             
                  }
         
     | 
| 
       1204 
1206 
     | 
    
         
             
                });
         
     | 
| 
       1205 
1207 
     | 
    
         
             
              }
         
     | 
| 
         @@ -1255,7 +1257,7 @@ class FrameCryptor extends BaseFrameCryptor { 
     | 
|
| 
       1255 
1257 
     | 
    
         
             
                  } else if (!this.keys.getKeySet(keyIndex) && this.keys.hasValidKey) {
         
     | 
| 
       1256 
1258 
     | 
    
         
             
                    // emit an error in case the key index is out of bounds but the key handler thinks we still have a valid key
         
     | 
| 
       1257 
1259 
     | 
    
         
             
                    workerLogger.warn("skipping decryption due to missing key at index ".concat(keyIndex));
         
     | 
| 
       1258 
     | 
    
         
            -
                    this.emit(CryptorEvent.Error, new CryptorError("missing key at index ".concat(keyIndex, " for participant ").concat(this.participantIdentity), CryptorErrorReason.MissingKey));
         
     | 
| 
      
 1260 
     | 
    
         
            +
                    this.emit(CryptorEvent.Error, new CryptorError("missing key at index ".concat(keyIndex, " for participant ").concat(this.participantIdentity), CryptorErrorReason.MissingKey, this.participantIdentity));
         
     | 
| 
       1259 
1261 
     | 
    
         
             
                  }
         
     | 
| 
       1260 
1262 
     | 
    
         
             
                });
         
     | 
| 
       1261 
1263 
     | 
    
         
             
              }
         
     | 
| 
         @@ -1342,10 +1344,10 @@ class FrameCryptor extends BaseFrameCryptor { 
     | 
|
| 
       1342 
1344 
     | 
    
         
             
                           * as the key has not been updated on the keyHandler instance
         
     | 
| 
       1343 
1345 
     | 
    
         
             
                           */
         
     | 
| 
       1344 
1346 
     | 
    
         
             
                          workerLogger.warn('maximum ratchet attempts exceeded');
         
     | 
| 
       1345 
     | 
    
         
            -
                          throw new CryptorError("valid key missing for participant ".concat(_this.participantIdentity), CryptorErrorReason.InvalidKey);
         
     | 
| 
      
 1347 
     | 
    
         
            +
                          throw new CryptorError("valid key missing for participant ".concat(_this.participantIdentity), CryptorErrorReason.InvalidKey, _this.participantIdentity);
         
     | 
| 
       1346 
1348 
     | 
    
         
             
                        }
         
     | 
| 
       1347 
1349 
     | 
    
         
             
                      } else {
         
     | 
| 
       1348 
     | 
    
         
            -
                        throw new CryptorError("Decryption failed: ".concat(error.message), CryptorErrorReason.InvalidKey);
         
     | 
| 
      
 1350 
     | 
    
         
            +
                        throw new CryptorError("Decryption failed: ".concat(error.message), CryptorErrorReason.InvalidKey, _this.participantIdentity);
         
     | 
| 
       1349 
1351 
     | 
    
         
             
                      }
         
     | 
| 
       1350 
1352 
     | 
    
         
             
                    }
         
     | 
| 
       1351 
1353 
     | 
    
         
             
                  }();
         
     |