mezon-js 2.13.51 → 2.13.53
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 +1 -6
- package/package.json +1 -1
- package/socket.ts +2 -8
package/dist/socket.d.ts
CHANGED
|
@@ -116,18 +116,13 @@ export interface UserProfileRedis {
|
|
|
116
116
|
avatar: string;
|
|
117
117
|
/** Display name */
|
|
118
118
|
display_name: string;
|
|
119
|
-
/** about me */
|
|
120
|
-
about_me: string;
|
|
121
119
|
/** custom status */
|
|
122
120
|
custom_status: string;
|
|
123
|
-
/** create time */
|
|
124
|
-
create_time_second: number;
|
|
125
121
|
/** online */
|
|
126
122
|
online: boolean;
|
|
123
|
+
create_time_second: number;
|
|
127
124
|
/** clans */
|
|
128
125
|
joined_clans: number[];
|
|
129
|
-
pubkey: string;
|
|
130
|
-
mezon_id: string;
|
|
131
126
|
app_url: string;
|
|
132
127
|
is_bot: boolean;
|
|
133
128
|
}
|
package/package.json
CHANGED
package/socket.ts
CHANGED
|
@@ -195,20 +195,14 @@ export interface UserProfileRedis {
|
|
|
195
195
|
avatar: string;
|
|
196
196
|
/** Display name */
|
|
197
197
|
display_name: string;
|
|
198
|
-
/** about me */
|
|
199
|
-
about_me: string;
|
|
200
198
|
/** custom status */
|
|
201
199
|
custom_status: string;
|
|
202
|
-
/** create time */
|
|
203
|
-
create_time_second: number;
|
|
204
200
|
/** online */
|
|
205
201
|
online: boolean;
|
|
202
|
+
// create time
|
|
203
|
+
create_time_second: number;
|
|
206
204
|
/** clans */
|
|
207
205
|
joined_clans: number[];
|
|
208
|
-
// public key
|
|
209
|
-
pubkey: string;
|
|
210
|
-
// mezon id
|
|
211
|
-
mezon_id: string;
|
|
212
206
|
// app url
|
|
213
207
|
app_url: string;
|
|
214
208
|
// is bot
|