livekit-client 2.3.2 → 2.4.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (60) hide show
  1. package/dist/livekit-client.e2ee.worker.js +1 -1
  2. package/dist/livekit-client.e2ee.worker.js.map +1 -1
  3. package/dist/livekit-client.e2ee.worker.mjs +8 -6
  4. package/dist/livekit-client.e2ee.worker.mjs.map +1 -1
  5. package/dist/livekit-client.esm.mjs +268 -45
  6. package/dist/livekit-client.esm.mjs.map +1 -1
  7. package/dist/livekit-client.umd.js +1 -1
  8. package/dist/livekit-client.umd.js.map +1 -1
  9. package/dist/src/api/SignalClient.d.ts +5 -2
  10. package/dist/src/api/SignalClient.d.ts.map +1 -1
  11. package/dist/src/connectionHelper/checks/reconnect.d.ts.map +1 -1
  12. package/dist/src/e2ee/errors.d.ts +2 -1
  13. package/dist/src/e2ee/errors.d.ts.map +1 -1
  14. package/dist/src/e2ee/index.d.ts +1 -0
  15. package/dist/src/e2ee/index.d.ts.map +1 -1
  16. package/dist/src/e2ee/worker/FrameCryptor.d.ts.map +1 -1
  17. package/dist/src/logger.d.ts.map +1 -1
  18. package/dist/src/room/RTCEngine.d.ts +2 -1
  19. package/dist/src/room/RTCEngine.d.ts.map +1 -1
  20. package/dist/src/room/Room.d.ts +2 -0
  21. package/dist/src/room/Room.d.ts.map +1 -1
  22. package/dist/src/room/errors.d.ts +5 -0
  23. package/dist/src/room/errors.d.ts.map +1 -1
  24. package/dist/src/room/events.d.ts +15 -2
  25. package/dist/src/room/events.d.ts.map +1 -1
  26. package/dist/src/room/participant/LocalParticipant.d.ts +14 -6
  27. package/dist/src/room/participant/LocalParticipant.d.ts.map +1 -1
  28. package/dist/src/room/participant/Participant.d.ts +8 -0
  29. package/dist/src/room/participant/Participant.d.ts.map +1 -1
  30. package/dist/src/room/timers.d.ts +4 -4
  31. package/dist/src/room/timers.d.ts.map +1 -1
  32. package/dist/src/room/track/utils.d.ts +1 -0
  33. package/dist/src/room/track/utils.d.ts.map +1 -1
  34. package/dist/ts4.2/src/api/SignalClient.d.ts +5 -2
  35. package/dist/ts4.2/src/e2ee/errors.d.ts +2 -1
  36. package/dist/ts4.2/src/e2ee/index.d.ts +1 -0
  37. package/dist/ts4.2/src/room/RTCEngine.d.ts +2 -1
  38. package/dist/ts4.2/src/room/Room.d.ts +2 -0
  39. package/dist/ts4.2/src/room/errors.d.ts +5 -0
  40. package/dist/ts4.2/src/room/events.d.ts +15 -2
  41. package/dist/ts4.2/src/room/participant/LocalParticipant.d.ts +14 -6
  42. package/dist/ts4.2/src/room/participant/Participant.d.ts +8 -0
  43. package/dist/ts4.2/src/room/timers.d.ts +4 -4
  44. package/dist/ts4.2/src/room/track/utils.d.ts +1 -0
  45. package/package.json +2 -2
  46. package/src/api/SignalClient.ts +24 -2
  47. package/src/connectionHelper/checks/reconnect.ts +6 -3
  48. package/src/e2ee/errors.ts +8 -1
  49. package/src/e2ee/index.ts +1 -0
  50. package/src/e2ee/worker/FrameCryptor.ts +15 -3
  51. package/src/logger.ts +4 -3
  52. package/src/room/DeviceManager.ts +1 -1
  53. package/src/room/RTCEngine.ts +3 -0
  54. package/src/room/Room.ts +25 -3
  55. package/src/room/errors.ts +11 -0
  56. package/src/room/events.ts +15 -0
  57. package/src/room/participant/LocalParticipant.ts +92 -10
  58. package/src/room/participant/Participant.ts +23 -0
  59. package/src/room/track/utils.test.ts +35 -1
  60. 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 decrypt, emitting error', this.logContext);
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
  }();