mezon-js 2.12.31 → 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 +4 -0
- package/dist/api.gen.d.ts +2 -0
- package/dist/socket.d.ts +2 -0
- package/package.json +1 -1
- package/socket.ts +4 -0
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
@@ -527,6 +527,7 @@ export interface ClanSticker {
|
|
527
527
|
source?: string;
|
528
528
|
logo?: string;
|
529
529
|
clan_name?: string;
|
530
|
+
is_for_sale?: boolean;
|
530
531
|
}
|
531
532
|
export interface RoleEvent {
|
532
533
|
role: ApiRole;
|
@@ -558,6 +559,7 @@ export interface ClanEmoji {
|
|
558
559
|
logo?: string;
|
559
560
|
clan_name?: string;
|
560
561
|
clan_id?: string;
|
562
|
+
is_for_sale?: boolean;
|
561
563
|
}
|
562
564
|
/** */
|
563
565
|
export interface ChannelDescription {
|
package/package.json
CHANGED
package/socket.ts
CHANGED
@@ -780,6 +780,8 @@ export interface ClanSticker {
|
|
780
780
|
logo?: string;
|
781
781
|
//
|
782
782
|
clan_name?: string;
|
783
|
+
//
|
784
|
+
is_for_sale?: boolean;
|
783
785
|
}
|
784
786
|
|
785
787
|
export interface RoleEvent {
|
@@ -822,6 +824,8 @@ export interface ClanEmoji {
|
|
822
824
|
clan_name?: string;
|
823
825
|
//
|
824
826
|
clan_id?: string;
|
827
|
+
//
|
828
|
+
is_for_sale?: boolean;
|
825
829
|
}
|
826
830
|
|
827
831
|
/** */
|