@newgameplusinc/odyssey-audio-video-sdk-dev 1.0.45 → 1.0.46

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.
@@ -104,6 +104,11 @@ class MediasoupManager {
104
104
  async produce(track, appData) {
105
105
  if (!this.sendTransport)
106
106
  throw new Error("Send transport not initialized");
107
+ console.log(`🔍 [MediaSoup] Attempting to produce ${track.kind} track, transport state:`, {
108
+ id: this.sendTransport.id,
109
+ closed: this.sendTransport.closed,
110
+ connectionState: this.sendTransport.connectionState,
111
+ });
107
112
  // Check if transport is closed or failed
108
113
  if (this.sendTransport.closed) {
109
114
  throw new Error("Send transport is closed");
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@newgameplusinc/odyssey-audio-video-sdk-dev",
3
- "version": "1.0.45",
3
+ "version": "1.0.46",
4
4
  "description": "Odyssey Spatial Audio & Video SDK using MediaSoup for real-time communication",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",