mezon-js 2.10.41 → 2.10.43
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 +10 -2
- package/dist/api.gen.d.ts +6 -2
- package/package.json +1 -1
package/api.gen.ts
CHANGED
@@ -838,6 +838,8 @@ export interface ApiChannelMessageHeader {
|
|
838
838
|
//
|
839
839
|
referece?: string;
|
840
840
|
//
|
841
|
+
repliers?: Array<string>;
|
842
|
+
//
|
841
843
|
sender_id?: string;
|
842
844
|
//
|
843
845
|
timestamp_seconds?: number;
|
@@ -1112,7 +1114,7 @@ export interface ApiCreateEventRequest {
|
|
1112
1114
|
//
|
1113
1115
|
address?: string;
|
1114
1116
|
//
|
1115
|
-
|
1117
|
+
channel_voice_id?: string;
|
1116
1118
|
//
|
1117
1119
|
clan_id?: string;
|
1118
1120
|
//
|
@@ -1125,6 +1127,8 @@ export interface ApiCreateEventRequest {
|
|
1125
1127
|
start_time?: string;
|
1126
1128
|
//
|
1127
1129
|
title?: string;
|
1130
|
+
//
|
1131
|
+
channel_id?: string;
|
1128
1132
|
}
|
1129
1133
|
|
1130
1134
|
/** Create a event within clan. */
|
@@ -1273,7 +1277,7 @@ export interface ApiEventManagement {
|
|
1273
1277
|
//
|
1274
1278
|
address?: string;
|
1275
1279
|
//
|
1276
|
-
|
1280
|
+
channel_voice_id?: string;
|
1277
1281
|
//
|
1278
1282
|
clan_id?: string;
|
1279
1283
|
//
|
@@ -1298,6 +1302,8 @@ export interface ApiEventManagement {
|
|
1298
1302
|
user_ids?: Array<string>;
|
1299
1303
|
//
|
1300
1304
|
create_time?: string;
|
1305
|
+
//
|
1306
|
+
channel_id?: string;
|
1301
1307
|
}
|
1302
1308
|
|
1303
1309
|
/** */
|
@@ -2023,6 +2029,8 @@ export interface ApiSdTopic {
|
|
2023
2029
|
//
|
2024
2030
|
id?: string;
|
2025
2031
|
//
|
2032
|
+
last_sent_message?: ApiChannelMessageHeader;
|
2033
|
+
//
|
2026
2034
|
message_id?: string;
|
2027
2035
|
//
|
2028
2036
|
status?: number;
|
package/dist/api.gen.d.ts
CHANGED
@@ -481,6 +481,7 @@ export interface ApiChannelMessageHeader {
|
|
481
481
|
mention?: string;
|
482
482
|
reaction?: string;
|
483
483
|
referece?: string;
|
484
|
+
repliers?: Array<string>;
|
484
485
|
sender_id?: string;
|
485
486
|
timestamp_seconds?: number;
|
486
487
|
}
|
@@ -638,13 +639,14 @@ export interface ApiCreateClanDescRequest {
|
|
638
639
|
/** Create a event within clan. */
|
639
640
|
export interface ApiCreateEventRequest {
|
640
641
|
address?: string;
|
641
|
-
|
642
|
+
channel_voice_id?: string;
|
642
643
|
clan_id?: string;
|
643
644
|
description?: string;
|
644
645
|
end_time?: string;
|
645
646
|
logo?: string;
|
646
647
|
start_time?: string;
|
647
648
|
title?: string;
|
649
|
+
channel_id?: string;
|
648
650
|
}
|
649
651
|
/** Create a event within clan. */
|
650
652
|
export interface ApiUpdateEventRequest {
|
@@ -732,7 +734,7 @@ export interface ApiEventList {
|
|
732
734
|
export interface ApiEventManagement {
|
733
735
|
active?: number;
|
734
736
|
address?: string;
|
735
|
-
|
737
|
+
channel_voice_id?: string;
|
736
738
|
clan_id?: string;
|
737
739
|
creator_id?: string;
|
738
740
|
description?: string;
|
@@ -745,6 +747,7 @@ export interface ApiEventManagement {
|
|
745
747
|
title?: string;
|
746
748
|
user_ids?: Array<string>;
|
747
749
|
create_time?: string;
|
750
|
+
channel_id?: string;
|
748
751
|
}
|
749
752
|
/** */
|
750
753
|
export interface ApiListFavoriteChannelResponse {
|
@@ -1174,6 +1177,7 @@ export interface ApiSdTopic {
|
|
1174
1177
|
create_time?: string;
|
1175
1178
|
creator_id?: string;
|
1176
1179
|
id?: string;
|
1180
|
+
last_sent_message?: ApiChannelMessageHeader;
|
1177
1181
|
message_id?: string;
|
1178
1182
|
status?: number;
|
1179
1183
|
update_time?: string;
|