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