mezon-js 2.13.5 → 2.13.6
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/api.gen.ts +8 -0
- package/dist/api.gen.d.ts +4 -0
- package/package.json +1 -1
package/api.gen.ts
CHANGED
@@ -455,6 +455,14 @@ export interface ApiAllUsersAddChannelResponse {
|
|
455
455
|
limit?: number;
|
456
456
|
//
|
457
457
|
user_ids?: Array<string>;
|
458
|
+
//
|
459
|
+
usernames?: Array<string>;
|
460
|
+
//
|
461
|
+
display_names?: Array<string>;
|
462
|
+
//
|
463
|
+
avatars?: Array<string>;
|
464
|
+
//
|
465
|
+
onlines?: Array<boolean>;
|
458
466
|
}
|
459
467
|
|
460
468
|
/** */
|
package/dist/api.gen.d.ts
CHANGED
@@ -262,6 +262,10 @@ export interface ApiAllUsersAddChannelResponse {
|
|
262
262
|
channel_id?: string;
|
263
263
|
limit?: number;
|
264
264
|
user_ids?: Array<string>;
|
265
|
+
usernames?: Array<string>;
|
266
|
+
display_names?: Array<string>;
|
267
|
+
avatars?: Array<string>;
|
268
|
+
onlines?: Array<boolean>;
|
265
269
|
}
|
266
270
|
/** */
|
267
271
|
export interface ApiAllUserClans {
|