mezon-js 2.11.9 → 2.11.10

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
@@ -387,6 +387,7 @@ export interface ClanUpdatedEvent {
387
387
  status: number;
388
388
  is_onboarding: boolean;
389
389
  welcome_channel_id: string;
390
+ onboarding_banner: string;
390
391
  }
391
392
  export interface ClanProfileUpdatedEvent {
392
393
  user_id: string;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "mezon-js",
3
3
 
4
- "version": "2.11.9",
4
+ "version": "2.11.10",
5
5
 
6
6
  "scripts": {
7
7
  "build": "npx tsc && npx rollup -c --bundleConfigAsCjs && node build.mjs"
package/socket.ts CHANGED
@@ -592,6 +592,8 @@ export interface ClanUpdatedEvent {
592
592
  is_onboarding: boolean;
593
593
  // welcome channel id
594
594
  welcome_channel_id: string;
595
+ // onboarding_banner.
596
+ onboarding_banner: string;
595
597
  }
596
598
 
597
599
  export interface ClanProfileUpdatedEvent {