@mulingai-npm/message-broker 2.10.3 → 2.10.6

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.
@@ -18,7 +18,6 @@ class MulingstreamRoomStatus {
18
18
  const channel = this.client.getChannelOrThrow();
19
19
  const payload = Buffer.from(JSON.stringify(data));
20
20
  channel.publish(EXCHANGE_NAME, '', payload);
21
- console.log(`[RoomStatus] Published status update for room ${data.roomId}: ${data.status}`);
22
21
  }
23
22
  async subscribe(queueName, onMessage) {
24
23
  const channel = this.client.getChannelOrThrow();
@@ -35,7 +35,6 @@ class MulingstreamUsageEvents {
35
35
  const channel = this.client.getChannelOrThrow();
36
36
  const payload = Buffer.from(JSON.stringify(data));
37
37
  channel.publish(EXCHANGE_NAME, '', payload);
38
- console.log(`[UsageEvents] Published ${data.event} for user ${data.userId} in room ${data.roomId}`);
39
38
  }
40
39
  /**
41
40
  * Subscribe to usage limit events.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mulingai-npm/message-broker",
3
- "version": "2.10.3",
3
+ "version": "2.10.6",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "repository": {
@@ -17,7 +17,7 @@
17
17
  "prepublishOnly": "npm run build"
18
18
  },
19
19
  "dependencies": {
20
- "@mulingai-npm/web-sockets": "^1.47.7",
20
+ "@mulingai-npm/web-sockets": "^1.48.2",
21
21
  "amqplib": "^0.10.5"
22
22
  },
23
23
  "devDependencies": {