mezon-js 2.13.5 → 2.13.7

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
  /** */
@@ -978,6 +986,10 @@ export interface ApiClanDesc {
978
986
  about?: string;
979
987
  // short url for community
980
988
  short_url?: string;
989
+ // prevent anonymous
990
+ prevent_anonymous?: boolean;
991
+ // has unread message
992
+ has_unread_message?: boolean;
981
993
  }
982
994
 
983
995
  /** */
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 {
@@ -554,6 +558,8 @@ export interface ApiClanDesc {
554
558
  description?: string;
555
559
  about?: string;
556
560
  short_url?: string;
561
+ prevent_anonymous?: boolean;
562
+ has_unread_message?: boolean;
557
563
  }
558
564
  /** */
559
565
  export interface ApiClanDescList {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mezon-js",
3
- "version": "2.13.5",
3
+ "version": "2.13.7",
4
4
  "scripts": {
5
5
  "build": "npx tsc && npx rollup -c --bundleConfigAsCjs && node build.mjs"
6
6
  },