mezon-js 2.10.42 → 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 +6 -2
- package/dist/api.gen.d.ts +4 -2
- package/package.json +1 -1
package/api.gen.ts
CHANGED
@@ -1114,7 +1114,7 @@ export interface ApiCreateEventRequest {
|
|
1114
1114
|
//
|
1115
1115
|
address?: string;
|
1116
1116
|
//
|
1117
|
-
|
1117
|
+
channel_voice_id?: string;
|
1118
1118
|
//
|
1119
1119
|
clan_id?: string;
|
1120
1120
|
//
|
@@ -1127,6 +1127,8 @@ export interface ApiCreateEventRequest {
|
|
1127
1127
|
start_time?: string;
|
1128
1128
|
//
|
1129
1129
|
title?: string;
|
1130
|
+
//
|
1131
|
+
channel_id?: string;
|
1130
1132
|
}
|
1131
1133
|
|
1132
1134
|
/** Create a event within clan. */
|
@@ -1275,7 +1277,7 @@ export interface ApiEventManagement {
|
|
1275
1277
|
//
|
1276
1278
|
address?: string;
|
1277
1279
|
//
|
1278
|
-
|
1280
|
+
channel_voice_id?: string;
|
1279
1281
|
//
|
1280
1282
|
clan_id?: string;
|
1281
1283
|
//
|
@@ -1300,6 +1302,8 @@ export interface ApiEventManagement {
|
|
1300
1302
|
user_ids?: Array<string>;
|
1301
1303
|
//
|
1302
1304
|
create_time?: string;
|
1305
|
+
//
|
1306
|
+
channel_id?: string;
|
1303
1307
|
}
|
1304
1308
|
|
1305
1309
|
/** */
|
package/dist/api.gen.d.ts
CHANGED
@@ -639,13 +639,14 @@ export interface ApiCreateClanDescRequest {
|
|
639
639
|
/** Create a event within clan. */
|
640
640
|
export interface ApiCreateEventRequest {
|
641
641
|
address?: string;
|
642
|
-
|
642
|
+
channel_voice_id?: string;
|
643
643
|
clan_id?: string;
|
644
644
|
description?: string;
|
645
645
|
end_time?: string;
|
646
646
|
logo?: string;
|
647
647
|
start_time?: string;
|
648
648
|
title?: string;
|
649
|
+
channel_id?: string;
|
649
650
|
}
|
650
651
|
/** Create a event within clan. */
|
651
652
|
export interface ApiUpdateEventRequest {
|
@@ -733,7 +734,7 @@ export interface ApiEventList {
|
|
733
734
|
export interface ApiEventManagement {
|
734
735
|
active?: number;
|
735
736
|
address?: string;
|
736
|
-
|
737
|
+
channel_voice_id?: string;
|
737
738
|
clan_id?: string;
|
738
739
|
creator_id?: string;
|
739
740
|
description?: string;
|
@@ -746,6 +747,7 @@ export interface ApiEventManagement {
|
|
746
747
|
title?: string;
|
747
748
|
user_ids?: Array<string>;
|
748
749
|
create_time?: string;
|
750
|
+
channel_id?: string;
|
749
751
|
}
|
750
752
|
/** */
|
751
753
|
export interface ApiListFavoriteChannelResponse {
|