@reactoo/watchtogether-sdk-js 2.6.63 → 2.6.64
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
package/src/modules/wt-room.js
CHANGED
|
@@ -770,6 +770,7 @@ class RoomSession {
|
|
|
770
770
|
role: decodeJanusDisplay(handle.userId)?.role,
|
|
771
771
|
stream: null,
|
|
772
772
|
streamMap: structuredClone(handle.webrtcStuff?.streamMap),
|
|
773
|
+
talkIntercomChannels: structuredClone(this._talkIntercomChannels),
|
|
773
774
|
source: null,
|
|
774
775
|
track: null,
|
|
775
776
|
adding: false,
|
|
@@ -1503,6 +1504,7 @@ class RoomSession {
|
|
|
1503
1504
|
role: decodeJanusDisplay(handle.userId)?.role,
|
|
1504
1505
|
stream: config.stream,
|
|
1505
1506
|
streamMap: structuredClone(config.streamMap),
|
|
1507
|
+
talkIntercomChannels: structuredClone(this._talkIntercomChannels),
|
|
1506
1508
|
track: null,
|
|
1507
1509
|
source: null,
|
|
1508
1510
|
constructId: this.constructId,
|
|
@@ -1527,6 +1529,7 @@ class RoomSession {
|
|
|
1527
1529
|
role: decodeJanusDisplay(handle.userId)?.role,
|
|
1528
1530
|
stream: config.stream,
|
|
1529
1531
|
streamMap: structuredClone(config.streamMap),
|
|
1532
|
+
talkIntercomChannels: structuredClone(this._talkIntercomChannels),
|
|
1530
1533
|
track: null,
|
|
1531
1534
|
source: null,
|
|
1532
1535
|
constructId: this.constructId,
|
|
@@ -1594,6 +1597,7 @@ class RoomSession {
|
|
|
1594
1597
|
role: decodeJanusDisplay(handle.userId)?.role,
|
|
1595
1598
|
stream: config.stream,
|
|
1596
1599
|
streamMap: structuredClone(config.streamMap),
|
|
1600
|
+
talkIntercomChannels: structuredClone(this._talkIntercomChannels),
|
|
1597
1601
|
source,
|
|
1598
1602
|
track: ev.track,
|
|
1599
1603
|
adding: false,
|
|
@@ -1617,6 +1621,7 @@ class RoomSession {
|
|
|
1617
1621
|
role: decodeJanusDisplay(handle.userId)?.role,
|
|
1618
1622
|
stream: config.stream,
|
|
1619
1623
|
streamMap: structuredClone(config.streamMap),
|
|
1624
|
+
talkIntercomChannels: structuredClone(this._talkIntercomChannels),
|
|
1620
1625
|
source,
|
|
1621
1626
|
track: event.track,
|
|
1622
1627
|
constructId: this.constructId,
|
|
@@ -1650,6 +1655,7 @@ class RoomSession {
|
|
|
1650
1655
|
role: decodeJanusDisplay(handle.userId)?.role,
|
|
1651
1656
|
stream: config.stream,
|
|
1652
1657
|
streamMap: structuredClone(config.streamMap),
|
|
1658
|
+
talkIntercomChannels: structuredClone(this._talkIntercomChannels),
|
|
1653
1659
|
source,
|
|
1654
1660
|
track: ev.target,
|
|
1655
1661
|
adding: false,
|