mezon-js 2.11.3 → 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
@@ -50,6 +50,7 @@ export interface NotificationInfo {
50
50
  channel_id?: string;
51
51
  clan_id?: string;
52
52
  channel?: ApiChannelDescription;
53
+ topic_id?: string;
53
54
  }
54
55
  /** A response from a channel join operation. */
55
56
  export interface Channel {
@@ -115,6 +116,8 @@ export interface UserProfileRedis {
115
116
  create_time_second: number;
116
117
  /** online */
117
118
  online: boolean;
119
+ /** clans */
120
+ joined_clans: number[];
118
121
  }
119
122
  /** UserChannelAddedEvent */
120
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.3",
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
@@ -81,6 +81,8 @@ export interface NotificationInfo {
81
81
  clan_id?: string;
82
82
  //
83
83
  channel?: ApiChannelDescription;
84
+ //
85
+ topic_id?: string;
84
86
  }
85
87
 
86
88
  /** A response from a channel join operation. */
@@ -161,6 +163,8 @@ export interface UserProfileRedis {
161
163
  create_time_second: number;
162
164
  /** online */
163
165
  online: boolean;
166
+ /** clans */
167
+ joined_clans: number[];
164
168
  }
165
169
 
166
170
  /** UserChannelAddedEvent */