mezon-js 2.12.30 → 2.12.32

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
@@ -970,6 +970,8 @@ export interface ApiClanEmoji {
970
970
  shortname?: string;
971
971
  //
972
972
  src?: string;
973
+ //
974
+ is_for_sale?: boolean;
973
975
  }
974
976
 
975
977
  /** */
@@ -1022,6 +1024,8 @@ export interface ApiClanSticker {
1022
1024
  source?: string;
1023
1025
  //
1024
1026
  media_type?: number;
1027
+ //
1028
+ is_for_sale?: boolean;
1025
1029
  }
1026
1030
 
1027
1031
  /** */
package/dist/api.gen.d.ts CHANGED
@@ -550,6 +550,7 @@ export interface ApiClanEmoji {
550
550
  logo?: string;
551
551
  shortname?: string;
552
552
  src?: string;
553
+ is_for_sale?: boolean;
553
554
  }
554
555
  /** */
555
556
  export interface ApiClanEmojiCreateRequest {
@@ -579,6 +580,7 @@ export interface ApiClanSticker {
579
580
  shortname?: string;
580
581
  source?: string;
581
582
  media_type?: number;
583
+ is_for_sale?: boolean;
582
584
  }
583
585
  /** */
584
586
  export interface ApiClanStickerAddRequest {
package/dist/socket.d.ts CHANGED
@@ -368,6 +368,7 @@ export interface ChannelUpdatedEvent {
368
368
  age_restricted: number;
369
369
  is_active_thread: boolean;
370
370
  active: number;
371
+ count_mess_unread: number;
371
372
  }
372
373
  export interface DeleteAccountEvent {
373
374
  user_id: string;
@@ -526,6 +527,7 @@ export interface ClanSticker {
526
527
  source?: string;
527
528
  logo?: string;
528
529
  clan_name?: string;
530
+ is_for_sale?: boolean;
529
531
  }
530
532
  export interface RoleEvent {
531
533
  role: ApiRole;
@@ -557,6 +559,7 @@ export interface ClanEmoji {
557
559
  logo?: string;
558
560
  clan_name?: string;
559
561
  clan_id?: string;
562
+ is_for_sale?: boolean;
560
563
  }
561
564
  /** */
562
565
  export interface ChannelDescription {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "mezon-js",
3
3
 
4
- "version": "2.12.30",
4
+ "version": "2.12.32",
5
5
 
6
6
  "scripts": {
7
7
  "build": "npx tsc && npx rollup -c --bundleConfigAsCjs && node build.mjs"
package/socket.ts CHANGED
@@ -547,6 +547,8 @@ export interface ChannelUpdatedEvent {
547
547
  is_active_thread: boolean;
548
548
  //
549
549
  active: number;
550
+ //
551
+ count_mess_unread: number;
550
552
  }
551
553
 
552
554
  export interface DeleteAccountEvent {
@@ -778,6 +780,8 @@ export interface ClanSticker {
778
780
  logo?: string;
779
781
  //
780
782
  clan_name?: string;
783
+ //
784
+ is_for_sale?: boolean;
781
785
  }
782
786
 
783
787
  export interface RoleEvent {
@@ -820,6 +824,8 @@ export interface ClanEmoji {
820
824
  clan_name?: string;
821
825
  //
822
826
  clan_id?: string;
827
+ //
828
+ is_for_sale?: boolean;
823
829
  }
824
830
 
825
831
  /** */