mezon-js 2.12.51 → 2.12.53

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
@@ -176,6 +176,10 @@ export interface MezonUpdateClanDescBody {
176
176
  is_community?: boolean;
177
177
  // community banner
178
178
  community_banner?: string;
179
+ // description
180
+ description?: string;
181
+ // about
182
+ about?: string;
179
183
  }
180
184
 
181
185
  /** */
package/dist/api.gen.d.ts CHANGED
@@ -101,6 +101,8 @@ export interface MezonUpdateClanDescBody {
101
101
  onboarding_banner?: string;
102
102
  is_community?: boolean;
103
103
  community_banner?: string;
104
+ description?: string;
105
+ about?: string;
104
106
  }
105
107
  /** */
106
108
  export interface MezonUpdateClanDescProfileBody {
package/dist/socket.d.ts CHANGED
@@ -398,6 +398,8 @@ export interface ChannelUpdatedEvent {
398
398
  is_active_thread: boolean;
399
399
  active: number;
400
400
  count_mess_unread: number;
401
+ role_ids?: Array<string>;
402
+ user_ids?: Array<string>;
401
403
  }
402
404
  export interface DeleteAccountEvent {
403
405
  user_id: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mezon-js",
3
- "version": "2.12.51",
3
+ "version": "2.12.53",
4
4
  "scripts": {
5
5
  "build": "npx tsc && npx rollup -c --bundleConfigAsCjs && node build.mjs"
6
6
  },
package/socket.ts CHANGED
@@ -624,6 +624,10 @@ export interface ChannelUpdatedEvent {
624
624
  active: number;
625
625
  //
626
626
  count_mess_unread: number;
627
+ //
628
+ role_ids?: Array<string>;
629
+ //The users to add.
630
+ user_ids?: Array<string>;
627
631
  }
628
632
 
629
633
  export interface DeleteAccountEvent {