mezon-js 2.10.31 → 2.10.32
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 +3 -0
- package/package.json +1 -1
- package/socket.ts +6 -0
package/dist/socket.d.ts
CHANGED
@@ -103,6 +103,9 @@ export interface UserChannelAddedEvent {
|
|
103
103
|
users: UserProfileRedis[];
|
104
104
|
status: string;
|
105
105
|
clan_id: string;
|
106
|
+
caller: UserProfileRedis;
|
107
|
+
create_time_second: number;
|
108
|
+
active: number;
|
106
109
|
}
|
107
110
|
export interface UserChannelRemovedEvent {
|
108
111
|
channel_id: string;
|
package/package.json
CHANGED
package/socket.ts
CHANGED
@@ -147,6 +147,12 @@ export interface UserChannelAddedEvent {
|
|
147
147
|
status: string;
|
148
148
|
// the clan id
|
149
149
|
clan_id: string;
|
150
|
+
//
|
151
|
+
caller: UserProfileRedis;
|
152
|
+
//
|
153
|
+
create_time_second: number;
|
154
|
+
//
|
155
|
+
active: number;
|
150
156
|
}
|
151
157
|
|
152
158
|
export interface UserChannelRemovedEvent {
|