mezon-js 2.10.85 → 2.10.87

Sign up to get free protection for your applications and to get access to all the features.
package/api.gen.ts CHANGED
@@ -2098,13 +2098,13 @@ export interface ApiSearchMessageDocument {
2098
2098
  //
2099
2099
  display_name?: string;
2100
2100
  //
2101
- mention?: string;
2101
+ mentions?: string;
2102
2102
  //The message ID.
2103
2103
  message_id?: string;
2104
2104
  //
2105
- reaction?: string;
2105
+ reactions?: string;
2106
2106
  //
2107
- reference?: string;
2107
+ references?: string;
2108
2108
  //The user ID of sender.
2109
2109
  sender_id?: string;
2110
2110
  //
package/dist/api.gen.d.ts CHANGED
@@ -1211,10 +1211,10 @@ export interface ApiSearchMessageDocument {
1211
1211
  content?: string;
1212
1212
  create_time?: string;
1213
1213
  display_name?: string;
1214
- mention?: string;
1214
+ mentions?: string;
1215
1215
  message_id?: string;
1216
- reaction?: string;
1217
- reference?: string;
1216
+ reactions?: string;
1217
+ references?: string;
1218
1218
  sender_id?: string;
1219
1219
  update_time?: string;
1220
1220
  username?: string;
package/dist/socket.d.ts CHANGED
@@ -130,6 +130,7 @@ export interface UserChannelRemovedEvent {
130
130
  channel_id: string;
131
131
  user_ids: string[];
132
132
  channel_type: number;
133
+ clan_id: string;
133
134
  }
134
135
  export interface UserClanRemovedEvent {
135
136
  clan_id: string;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "mezon-js",
3
3
 
4
- "version": "2.10.85",
4
+ "version": "2.10.87",
5
5
 
6
6
  "scripts": {
7
7
  "build": "npx tsc && npx rollup -c --bundleConfigAsCjs && node build.mjs"
package/socket.ts CHANGED
@@ -188,6 +188,8 @@ export interface UserChannelRemovedEvent {
188
188
  user_ids: string[];
189
189
  // the channel type
190
190
  channel_type: number;
191
+ // the clan id
192
+ clan_id: string;
191
193
  }
192
194
 
193
195
  export interface UserClanRemovedEvent {