mezon-js 2.8.48 → 2.8.49

Sign up to get free protection for your applications and to get access to all the features.
package/dist/socket.d.ts CHANGED
@@ -91,6 +91,7 @@ export interface AddUsers {
91
91
  export interface UserChannelRemovedEvent {
92
92
  channel_id: string;
93
93
  user_ids: string[];
94
+ channel_type: number;
94
95
  }
95
96
  export interface UserClanRemovedEvent {
96
97
  clan_id: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mezon-js",
3
- "version": "2.8.48",
3
+ "version": "2.8.49",
4
4
  "scripts": {
5
5
  "build": "npx tsc && npx rollup -c --bundleConfigAsCjs && node build.mjs"
6
6
  },
package/socket.ts CHANGED
@@ -123,6 +123,8 @@ export interface UserChannelRemovedEvent {
123
123
  channel_id: string;
124
124
  // the user_id
125
125
  user_ids: string[];
126
+ // the channel type
127
+ channel_type: number
126
128
  }
127
129
 
128
130
  export interface UserClanRemovedEvent {