mezon-js 2.13.34 → 2.13.36

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/api.gen.ts CHANGED
@@ -30,12 +30,10 @@ export interface ChannelUserListChannelUser {
30
30
  export interface ApiBannedUser {
31
31
  //
32
32
  ban_time?: number;
33
- //
34
- banned_avatar?: string;
35
33
  //The banned user.
36
34
  banned_id?: string;
37
35
  //
38
- banned_name?: string;
36
+ banner_id?: string;
39
37
  //
40
38
  channel_id?: string;
41
39
  //
package/dist/api.gen.d.ts CHANGED
@@ -13,9 +13,8 @@ export interface ChannelUserListChannelUser {
13
13
  /** */
14
14
  export interface ApiBannedUser {
15
15
  ban_time?: number;
16
- banned_avatar?: string;
17
16
  banned_id?: string;
18
- banned_name?: string;
17
+ banner_id?: string;
19
18
  channel_id?: string;
20
19
  reason?: string;
21
20
  }
package/dist/socket.d.ts CHANGED
@@ -105,6 +105,7 @@ export interface BannedUserEvent {
105
105
  action: number;
106
106
  banner_id: string;
107
107
  channel_id: string;
108
+ clan_id: string;
108
109
  }
109
110
  export interface UserProfileRedis {
110
111
  /** User IDs to follow. */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mezon-js",
3
- "version": "2.13.34",
3
+ "version": "2.13.36",
4
4
  "scripts": {
5
5
  "build": "npx tsc && npx rollup -c --bundleConfigAsCjs && node build.mjs"
6
6
  },
package/socket.ts CHANGED
@@ -183,6 +183,7 @@ export interface BannedUserEvent {
183
183
  action: number;
184
184
  banner_id: string;
185
185
  channel_id: string;
186
+ clan_id: string;
186
187
  }
187
188
 
188
189
  export interface UserProfileRedis {