mezon-js 2.13.63 → 2.13.64

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 CHANGED
@@ -478,6 +478,7 @@ export interface ClanUpdatedEvent {
478
478
  welcome_channel_id: string;
479
479
  onboarding_banner: string;
480
480
  about: string;
481
+ prevent_anonymous: boolean;
481
482
  }
482
483
  export interface ClanProfileUpdatedEvent {
483
484
  user_id: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mezon-js",
3
- "version": "2.13.63",
3
+ "version": "2.13.64",
4
4
  "scripts": {
5
5
  "build": "npx tsc && npx rollup -c --bundleConfigAsCjs && node build.mjs"
6
6
  },
package/socket.ts CHANGED
@@ -770,6 +770,8 @@ export interface ClanUpdatedEvent {
770
770
  onboarding_banner: string;
771
771
  // about
772
772
  about: string;
773
+ // prevent anonymous
774
+ prevent_anonymous: boolean;
773
775
  }
774
776
 
775
777
  export interface ClanProfileUpdatedEvent {