mezon-js 2.13.25 → 2.13.26

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/dist/socket.d.ts CHANGED
@@ -104,6 +104,7 @@ export interface BannedUserEvent {
104
104
  user_ids: Array<string>;
105
105
  action: number;
106
106
  banner_id: string;
107
+ channel_id: string;
107
108
  }
108
109
  export interface UserProfileRedis {
109
110
  /** User IDs to follow. */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mezon-js",
3
- "version": "2.13.25",
3
+ "version": "2.13.26",
4
4
  "scripts": {
5
5
  "build": "npx tsc && npx rollup -c --bundleConfigAsCjs && node build.mjs"
6
6
  },
package/socket.ts CHANGED
@@ -182,6 +182,7 @@ export interface BannedUserEvent {
182
182
  user_ids: Array<string>;
183
183
  action: number;
184
184
  banner_id: string;
185
+ channel_id: string;
185
186
  }
186
187
 
187
188
  export interface UserProfileRedis {