mezon-js 2.13.56 → 2.13.57

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
@@ -106,6 +106,7 @@ export interface BannedUserEvent {
106
106
  banner_id: string;
107
107
  channel_id: string;
108
108
  clan_id: string;
109
+ ban_time: number;
109
110
  }
110
111
  export interface UserProfileRedis {
111
112
  /** User IDs to follow. */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mezon-js",
3
- "version": "2.13.56",
3
+ "version": "2.13.57",
4
4
  "scripts": {
5
5
  "build": "npx tsc && npx rollup -c --bundleConfigAsCjs && node build.mjs"
6
6
  },
package/socket.ts CHANGED
@@ -184,6 +184,7 @@ export interface BannedUserEvent {
184
184
  banner_id: string;
185
185
  channel_id: string;
186
186
  clan_id: string;
187
+ ban_time: number
187
188
  }
188
189
 
189
190
  export interface UserProfileRedis {