mezon-js 2.13.51 → 2.13.52
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 +0 -6
- package/package.json +1 -1
- package/socket.ts +0 -8
package/dist/socket.d.ts
CHANGED
|
@@ -116,18 +116,12 @@ 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;
|
|
127
123
|
/** clans */
|
|
128
124
|
joined_clans: number[];
|
|
129
|
-
pubkey: string;
|
|
130
|
-
mezon_id: string;
|
|
131
125
|
app_url: string;
|
|
132
126
|
is_bot: boolean;
|
|
133
127
|
}
|
package/package.json
CHANGED
package/socket.ts
CHANGED
|
@@ -195,20 +195,12 @@ 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;
|
|
206
202
|
/** clans */
|
|
207
203
|
joined_clans: number[];
|
|
208
|
-
// public key
|
|
209
|
-
pubkey: string;
|
|
210
|
-
// mezon id
|
|
211
|
-
mezon_id: string;
|
|
212
204
|
// app url
|
|
213
205
|
app_url: string;
|
|
214
206
|
// is bot
|