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 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 {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mezon-js",
3
- "version": "2.13.5",
3
+ "version": "2.13.6",
4
4
  "scripts": {
5
5
  "build": "npx tsc && npx rollup -c --bundleConfigAsCjs && node build.mjs"
6
6
  },