mezon-js 2.12.51 → 2.12.52

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
@@ -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.52",
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 {