mezon-js 2.10.86 → 2.10.87

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
@@ -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.86",
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 {