@wix/legends-platform-sdk 1.0.0 → 1.1.0

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/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "1.0.0",
2
+ "version": "1.1.0",
3
3
  "name": "@wix/legends-platform-sdk",
4
4
  "license": "MIT",
5
5
  "author": {
@@ -15,7 +15,6 @@
15
15
  "access": "public"
16
16
  },
17
17
  "files": [
18
- "livekit-client.patch",
19
18
  "livekit",
20
19
  "tpa",
21
20
  "sdk",
@@ -49,7 +48,7 @@
49
48
  "hume": "^0.15.6",
50
49
  "invariant": "^2.2.4",
51
50
  "jotai": "^2.13.1",
52
- "livekit-client": "patch:livekit-client@npm:2.18.5#./livekit-client.patch",
51
+ "livekit-client": "^2.19.2",
53
52
  "react-bus": "^4.0.1",
54
53
  "react-media-recorder": "^1.7.2",
55
54
  "react-timer-hook": "^4.0.5",
@@ -104,5 +103,5 @@
104
103
  "wallaby": {
105
104
  "autoDetect": true
106
105
  },
107
- "falconPackageHash": "21d14cfb23667d47e332b0e59634816c1b1446794ca11d10711892ac"
106
+ "falconPackageHash": "523e8982c04381b16c18ed6a1ec7354b17b8586904eddc99670546e0"
108
107
  }
@@ -1,19 +0,0 @@
1
- diff --git a/dist/livekit-client.esm.mjs b/dist/livekit-client.esm.mjs
2
- index de3096ea1581bde46b9094ff182cfb7692b2997e..93205464ca94eadf13df4a97d0f91f3463af7d75 100644
3
- --- a/dist/livekit-client.esm.mjs
4
- +++ b/dist/livekit-client.esm.mjs
5
- @@ -8711,6 +8711,14 @@ function wrapPeerConnectionEvent(window, eventNameToWrap, wrapper) {
6
- }
7
- const proto = window.RTCPeerConnection.prototype;
8
- const nativeAddEventListener = proto.addEventListener;
9
- +
10
- + try {
11
- + proto.addEventListener = proto.addEventListener;
12
- + } catch (e) {
13
- + console.warn('livekit-client: skipping RTCPeerConnection event patching — addEventListener is non-writable', e);
14
- + return;
15
- + }
16
- +
17
- proto.addEventListener = function (nativeEventName, cb) {
18
- if (nativeEventName !== eventNameToWrap) {
19
- return nativeAddEventListener.apply(this, arguments);