mezon-js 2.12.33 → 2.12.35

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
@@ -2658,6 +2658,8 @@ export interface ApiUser {
2658
2658
  update_time?: string;
2659
2659
  //The username of the user's account.
2660
2660
  username?: string;
2661
+ // list nick name
2662
+ list_nick_names?: Array<string>;
2661
2663
  }
2662
2664
 
2663
2665
  /** */
package/dist/api.gen.d.ts CHANGED
@@ -1520,6 +1520,7 @@ export interface ApiUser {
1520
1520
  timezone?: string;
1521
1521
  update_time?: string;
1522
1522
  username?: string;
1523
+ list_nick_names?: Array<string>;
1523
1524
  }
1524
1525
  /** */
1525
1526
  export interface ApiUserActivity {
package/dist/socket.d.ts CHANGED
@@ -735,6 +735,7 @@ export interface VoiceReactionSend {
735
735
  emojis: Array<string>;
736
736
  channel_id: string;
737
737
  sender_id: string;
738
+ media_type: number;
738
739
  }
739
740
  export interface MarkAsRead {
740
741
  channel_id: string;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "mezon-js",
3
3
 
4
- "version": "2.12.33",
4
+ "version": "2.12.35",
5
5
 
6
6
  "scripts": {
7
7
  "build": "npx tsc && npx rollup -c --bundleConfigAsCjs && node build.mjs"
package/socket.ts CHANGED
@@ -1053,6 +1053,8 @@ export interface VoiceReactionSend {
1053
1053
  channel_id: string;
1054
1054
  // sender id
1055
1055
  sender_id: string;
1056
+ // media type
1057
+ media_type: number;
1056
1058
  }
1057
1059
 
1058
1060
  export interface MarkAsRead {