mezon-js 2.11.4 → 2.11.5

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
@@ -116,6 +116,8 @@ export interface UserProfileRedis {
116
116
  create_time_second: number;
117
117
  /** online */
118
118
  online: boolean;
119
+ /** clans */
120
+ joined_clans: number[];
119
121
  }
120
122
  /** UserChannelAddedEvent */
121
123
  export interface UserChannelAddedEvent {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "mezon-js",
3
3
 
4
- "version": "2.11.4",
4
+ "version": "2.11.5",
5
5
 
6
6
  "scripts": {
7
7
  "build": "npx tsc && npx rollup -c --bundleConfigAsCjs && node build.mjs"
package/socket.ts CHANGED
@@ -163,6 +163,8 @@ export interface UserProfileRedis {
163
163
  create_time_second: number;
164
164
  /** online */
165
165
  online: boolean;
166
+ /** clans */
167
+ joined_clans: number[];
166
168
  }
167
169
 
168
170
  /** UserChannelAddedEvent */