mezon-js-protobuf 1.8.43 → 1.8.45
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/api.ts +173 -630
- package/dist/mezon-js-protobuf/api/api.d.ts +53 -251
- package/dist/mezon-js-protobuf/rtapi/realtime.d.ts +573 -495
- package/dist/mezon-js-protobuf.cjs.js +138 -2
- package/dist/mezon-js-protobuf.esm.mjs +138 -2
- package/package.json +1 -1
- package/rtapi/realtime.ts +48 -0
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import _m0 from "protobufjs/minimal";
|
|
2
|
-
import { AllUsersAddChannelRequest, AllUsersAddChannelResponse, CategoryDesc, CategoryDescList, ChannelAttachmentList, ChannelDescList, ChannelDescription as ChannelDescription1, ChannelMessage, ChannelMessageHeader, ChannelMessageList, ChannelSettingListRequest, ChannelSettingListResponse, ChannelUserList, ClanDescList, ClanUserList, CreateEventRequest, DefaultNotificationCategory, EmojiListedResponse, EmojiRecentList, EventList, FriendList, GiveCoffeeEvent, HashtagDmList, HashtagDmListRequest, ListChannelAppsRequest, ListChannelAppsResponse, ListChannelAttachmentRequest, ListChannelDescsRequest, ListChannelDetailRequest, ListChannelMessagesRequest, ListChannelUsersRequest, ListClanDescRequest, ListClanUsersRequest, ListClanWebhookRequest, ListClanWebhookResponse, ListEventsRequest, ListFavoriteChannelRequest, ListFavoriteChannelResponse, ListFriendsRequest, ListNotificationsRequest, ListPermissionOfUsersRequest, ListPermissionsRequest, ListRoleUsersRequest, ListThreadRequest, ListUserActivity, MessageAttachment, MessageMention, MessageReaction, MessageRef, Notification, NotificationChannel, NotificationChannelCategorySettingList, NotificationClan, NotificationList, NotificationSetting, NotificationUserChannel, NotifiReactMessage, PermissionList, PermissionRoleChannelListEventRequest, PermissionRoleChannelListEventResponse, PermissionUpdate, Role, RoleList, RoleListEventRequest, RoleListEventResponse, RoleUserList, Rpc, SearchThreadRequest, StickerListedResponse, StreamingChannelUserList, TokenSentEvent, UserActivity, UserPermissionInChannelListRequest, UserPermissionInChannelListResponse, VoiceChannelUserList, Webhook, WebhookListRequest, WebhookListResponse } from "../api/api";
|
|
2
|
+
import { AllUsersAddChannelRequest, AllUsersAddChannelResponse, CategoryDesc, CategoryDescList, ChannelAttachmentList, ChannelDescList, ChannelDescription as ChannelDescription1, ChannelMessage, ChannelMessageHeader, ChannelMessageList, ChannelSettingListRequest, ChannelSettingListResponse, ChannelUserList, ClanDescList, ClanUserList, CreateEventRequest, DefaultNotificationCategory, EmojiListedResponse, EmojiRecentList, EventList, FriendList, GiveCoffeeEvent, HashtagDmList, HashtagDmListRequest, ListChannelAppsRequest, ListChannelAppsResponse, ListChannelAttachmentRequest, ListChannelDescsRequest, ListChannelDetailRequest, ListChannelMessagesRequest, ListChannelUsersRequest, ListClanDescRequest, ListClanUnreadMsgIndicatorRequest, ListClanUnreadMsgIndicatorResponse, ListClanUsersRequest, ListClanWebhookRequest, ListClanWebhookResponse, ListEventsRequest, ListFavoriteChannelRequest, ListFavoriteChannelResponse, ListFriendsRequest, ListNotificationsRequest, ListPermissionOfUsersRequest, ListPermissionsRequest, ListRoleUsersRequest, ListThreadRequest, ListUserActivity, MessageAttachment, MessageMention, MessageReaction, MessageRef, Notification, NotificationChannel, NotificationChannelCategorySettingList, NotificationClan, NotificationList, NotificationSetting, NotificationUserChannel, NotifiReactMessage, PermissionList, PermissionRoleChannelListEventRequest, PermissionRoleChannelListEventResponse, PermissionUpdate, Role, RoleList, RoleListEventRequest, RoleListEventResponse, RoleUserList, Rpc, SearchThreadRequest, StickerListedResponse, StreamingChannelUserList, TokenSentEvent, UserActivity, UserPermissionInChannelListRequest, UserPermissionInChannelListResponse, VoiceChannelUserList, Webhook, WebhookListRequest, WebhookListResponse } from "../api/api";
|
|
3
3
|
export declare const protobufPackage = "mezon.realtime";
|
|
4
4
|
/** The realtime protocol for Mezon server. */
|
|
5
5
|
/** An envelope for a realtime message. */
|
|
@@ -1265,6 +1265,8 @@ export interface ListDataSocket {
|
|
|
1265
1265
|
list_category_req: CategoryDesc | undefined;
|
|
1266
1266
|
category_list: CategoryDescList | undefined;
|
|
1267
1267
|
stream_user_list: StreamingChannelUserList | undefined;
|
|
1268
|
+
list_unread_msg_indicator_req: ListClanUnreadMsgIndicatorRequest | undefined;
|
|
1269
|
+
unread_msg_indicator: ListClanUnreadMsgIndicatorResponse | undefined;
|
|
1268
1270
|
}
|
|
1269
1271
|
export interface MeetParticipantEvent {
|
|
1270
1272
|
username: string;
|
|
@@ -3227,6 +3229,12 @@ export declare const Envelope: {
|
|
|
3227
3229
|
participant?: string | undefined;
|
|
3228
3230
|
}[] | undefined;
|
|
3229
3231
|
} | undefined;
|
|
3232
|
+
list_unread_msg_indicator_req?: {
|
|
3233
|
+
clan_id?: string | undefined;
|
|
3234
|
+
} | undefined;
|
|
3235
|
+
unread_msg_indicator?: {
|
|
3236
|
+
has_unread_message?: boolean | undefined;
|
|
3237
|
+
} | undefined;
|
|
3230
3238
|
} | undefined;
|
|
3231
3239
|
quick_menu_event?: {
|
|
3232
3240
|
menu_name?: string | undefined;
|
|
@@ -7443,6 +7451,12 @@ export declare const Envelope: {
|
|
|
7443
7451
|
participant?: string | undefined;
|
|
7444
7452
|
}[] | undefined;
|
|
7445
7453
|
} | undefined;
|
|
7454
|
+
list_unread_msg_indicator_req?: {
|
|
7455
|
+
clan_id?: string | undefined;
|
|
7456
|
+
} | undefined;
|
|
7457
|
+
unread_msg_indicator?: {
|
|
7458
|
+
has_unread_message?: boolean | undefined;
|
|
7459
|
+
} | undefined;
|
|
7446
7460
|
} & {
|
|
7447
7461
|
api_name?: string | undefined;
|
|
7448
7462
|
list_clan_req?: ({
|
|
@@ -10960,7 +10974,17 @@ export declare const Envelope: {
|
|
|
10960
10974
|
participant?: string | undefined;
|
|
10961
10975
|
}[]>]: never; }) | undefined;
|
|
10962
10976
|
} & { [K_376 in Exclude<keyof I["list_data_socket"]["stream_user_list"], "streaming_channel_users">]: never; }) | undefined;
|
|
10963
|
-
|
|
10977
|
+
list_unread_msg_indicator_req?: ({
|
|
10978
|
+
clan_id?: string | undefined;
|
|
10979
|
+
} & {
|
|
10980
|
+
clan_id?: string | undefined;
|
|
10981
|
+
} & { [K_377 in Exclude<keyof I["list_data_socket"]["list_unread_msg_indicator_req"], "clan_id">]: never; }) | undefined;
|
|
10982
|
+
unread_msg_indicator?: ({
|
|
10983
|
+
has_unread_message?: boolean | undefined;
|
|
10984
|
+
} & {
|
|
10985
|
+
has_unread_message?: boolean | undefined;
|
|
10986
|
+
} & { [K_378 in Exclude<keyof I["list_data_socket"]["unread_msg_indicator"], "has_unread_message">]: never; }) | undefined;
|
|
10987
|
+
} & { [K_379 in Exclude<keyof I["list_data_socket"], keyof ListDataSocket>]: never; }) | undefined;
|
|
10964
10988
|
quick_menu_event?: ({
|
|
10965
10989
|
menu_name?: string | undefined;
|
|
10966
10990
|
message?: {
|
|
@@ -11081,7 +11105,7 @@ export declare const Envelope: {
|
|
|
11081
11105
|
create_time?: Date | undefined;
|
|
11082
11106
|
s?: number | undefined;
|
|
11083
11107
|
e?: number | undefined;
|
|
11084
|
-
} & { [
|
|
11108
|
+
} & { [K_380 in Exclude<keyof I["quick_menu_event"]["message"]["mentions"][number], keyof MessageMention>]: never; })[] & { [K_381 in Exclude<keyof I["quick_menu_event"]["message"]["mentions"], keyof {
|
|
11085
11109
|
id?: string | undefined;
|
|
11086
11110
|
user_id?: string | undefined;
|
|
11087
11111
|
username?: string | undefined;
|
|
@@ -11115,7 +11139,7 @@ export declare const Envelope: {
|
|
|
11115
11139
|
width?: number | undefined;
|
|
11116
11140
|
height?: number | undefined;
|
|
11117
11141
|
thumbnail?: string | undefined;
|
|
11118
|
-
} & { [
|
|
11142
|
+
} & { [K_382 in Exclude<keyof I["quick_menu_event"]["message"]["attachments"][number], keyof MessageAttachment>]: never; })[] & { [K_383 in Exclude<keyof I["quick_menu_event"]["message"]["attachments"], keyof {
|
|
11119
11143
|
filename?: string | undefined;
|
|
11120
11144
|
size?: number | undefined;
|
|
11121
11145
|
url?: string | undefined;
|
|
@@ -11157,7 +11181,7 @@ export declare const Envelope: {
|
|
|
11157
11181
|
mesages_sender_avatar?: string | undefined;
|
|
11158
11182
|
message_sender_clan_nick?: string | undefined;
|
|
11159
11183
|
message_sender_display_name?: string | undefined;
|
|
11160
|
-
} & { [
|
|
11184
|
+
} & { [K_384 in Exclude<keyof I["quick_menu_event"]["message"]["references"][number], keyof MessageRef>]: never; })[] & { [K_385 in Exclude<keyof I["quick_menu_event"]["message"]["references"], keyof {
|
|
11161
11185
|
message_id?: string | undefined;
|
|
11162
11186
|
message_ref_id?: string | undefined;
|
|
11163
11187
|
content?: string | undefined;
|
|
@@ -11176,13 +11200,13 @@ export declare const Envelope: {
|
|
|
11176
11200
|
is_public?: boolean | undefined;
|
|
11177
11201
|
code?: number | undefined;
|
|
11178
11202
|
topic_id?: string | undefined;
|
|
11179
|
-
} & { [
|
|
11180
|
-
} & { [
|
|
11203
|
+
} & { [K_386 in Exclude<keyof I["quick_menu_event"]["message"], keyof ChannelMessageSend>]: never; }) | undefined;
|
|
11204
|
+
} & { [K_387 in Exclude<keyof I["quick_menu_event"], keyof QuickMenuDataEvent>]: never; }) | undefined;
|
|
11181
11205
|
un_block_friend?: ({
|
|
11182
11206
|
user_id?: string | undefined;
|
|
11183
11207
|
} & {
|
|
11184
11208
|
user_id?: string | undefined;
|
|
11185
|
-
} & { [
|
|
11209
|
+
} & { [K_388 in Exclude<keyof I["un_block_friend"], "user_id">]: never; }) | undefined;
|
|
11186
11210
|
meet_participant_event?: ({
|
|
11187
11211
|
username?: string | undefined;
|
|
11188
11212
|
room_name?: string | undefined;
|
|
@@ -11195,7 +11219,7 @@ export declare const Envelope: {
|
|
|
11195
11219
|
channel_id?: string | undefined;
|
|
11196
11220
|
clan_id?: string | undefined;
|
|
11197
11221
|
action?: number | undefined;
|
|
11198
|
-
} & { [
|
|
11222
|
+
} & { [K_389 in Exclude<keyof I["meet_participant_event"], keyof MeetParticipantEvent>]: never; }) | undefined;
|
|
11199
11223
|
transfer_ownership_event?: ({
|
|
11200
11224
|
clan_id?: string | undefined;
|
|
11201
11225
|
prev_owner?: string | undefined;
|
|
@@ -11204,7 +11228,7 @@ export declare const Envelope: {
|
|
|
11204
11228
|
clan_id?: string | undefined;
|
|
11205
11229
|
prev_owner?: string | undefined;
|
|
11206
11230
|
curr_owner?: string | undefined;
|
|
11207
|
-
} & { [
|
|
11231
|
+
} & { [K_390 in Exclude<keyof I["transfer_ownership_event"], keyof TransferOwnershipEvent>]: never; }) | undefined;
|
|
11208
11232
|
add_friend?: ({
|
|
11209
11233
|
user_id?: string | undefined;
|
|
11210
11234
|
username?: string | undefined;
|
|
@@ -11215,8 +11239,8 @@ export declare const Envelope: {
|
|
|
11215
11239
|
username?: string | undefined;
|
|
11216
11240
|
display_name?: string | undefined;
|
|
11217
11241
|
avatar?: string | undefined;
|
|
11218
|
-
} & { [
|
|
11219
|
-
} & { [
|
|
11242
|
+
} & { [K_391 in Exclude<keyof I["add_friend"], keyof AddFriend>]: never; }) | undefined;
|
|
11243
|
+
} & { [K_392 in Exclude<keyof I, keyof Envelope>]: never; }>(base?: I | undefined): Envelope;
|
|
11220
11244
|
fromPartial<I_1 extends {
|
|
11221
11245
|
cid?: string | undefined;
|
|
11222
11246
|
channel?: {
|
|
@@ -13161,6 +13185,12 @@ export declare const Envelope: {
|
|
|
13161
13185
|
participant?: string | undefined;
|
|
13162
13186
|
}[] | undefined;
|
|
13163
13187
|
} | undefined;
|
|
13188
|
+
list_unread_msg_indicator_req?: {
|
|
13189
|
+
clan_id?: string | undefined;
|
|
13190
|
+
} | undefined;
|
|
13191
|
+
unread_msg_indicator?: {
|
|
13192
|
+
has_unread_message?: boolean | undefined;
|
|
13193
|
+
} | undefined;
|
|
13164
13194
|
} | undefined;
|
|
13165
13195
|
quick_menu_event?: {
|
|
13166
13196
|
menu_name?: string | undefined;
|
|
@@ -13280,7 +13310,7 @@ export declare const Envelope: {
|
|
|
13280
13310
|
status?: string | undefined;
|
|
13281
13311
|
is_mobile?: boolean | undefined;
|
|
13282
13312
|
user_status?: string | undefined;
|
|
13283
|
-
} & { [
|
|
13313
|
+
} & { [K_393 in Exclude<keyof I_1["channel"]["presences"][number], keyof UserPresence>]: never; })[] & { [K_394 in Exclude<keyof I_1["channel"]["presences"], keyof {
|
|
13284
13314
|
user_id?: string | undefined;
|
|
13285
13315
|
session_id?: string | undefined;
|
|
13286
13316
|
username?: string | undefined;
|
|
@@ -13305,16 +13335,16 @@ export declare const Envelope: {
|
|
|
13305
13335
|
status?: string | undefined;
|
|
13306
13336
|
is_mobile?: boolean | undefined;
|
|
13307
13337
|
user_status?: string | undefined;
|
|
13308
|
-
} & { [
|
|
13338
|
+
} & { [K_395 in Exclude<keyof I_1["channel"]["self"], keyof UserPresence>]: never; }) | undefined;
|
|
13309
13339
|
chanel_label?: string | undefined;
|
|
13310
13340
|
clan_logo?: string | undefined;
|
|
13311
13341
|
category_name?: string | undefined;
|
|
13312
|
-
} & { [
|
|
13342
|
+
} & { [K_396 in Exclude<keyof I_1["channel"], keyof Channel>]: never; }) | undefined;
|
|
13313
13343
|
clan_join?: ({
|
|
13314
13344
|
clan_id?: string | undefined;
|
|
13315
13345
|
} & {
|
|
13316
13346
|
clan_id?: string | undefined;
|
|
13317
|
-
} & { [
|
|
13347
|
+
} & { [K_397 in Exclude<keyof I_1["clan_join"], "clan_id">]: never; }) | undefined;
|
|
13318
13348
|
channel_join?: ({
|
|
13319
13349
|
clan_id?: string | undefined;
|
|
13320
13350
|
channel_id?: string | undefined;
|
|
@@ -13325,7 +13355,7 @@ export declare const Envelope: {
|
|
|
13325
13355
|
channel_id?: string | undefined;
|
|
13326
13356
|
channel_type?: number | undefined;
|
|
13327
13357
|
is_public?: boolean | undefined;
|
|
13328
|
-
} & { [
|
|
13358
|
+
} & { [K_398 in Exclude<keyof I_1["channel_join"], keyof ChannelJoin>]: never; }) | undefined;
|
|
13329
13359
|
channel_leave?: ({
|
|
13330
13360
|
clan_id?: string | undefined;
|
|
13331
13361
|
channel_id?: string | undefined;
|
|
@@ -13336,7 +13366,7 @@ export declare const Envelope: {
|
|
|
13336
13366
|
channel_id?: string | undefined;
|
|
13337
13367
|
channel_type?: number | undefined;
|
|
13338
13368
|
is_public?: boolean | undefined;
|
|
13339
|
-
} & { [
|
|
13369
|
+
} & { [K_399 in Exclude<keyof I_1["channel_leave"], keyof ChannelLeave>]: never; }) | undefined;
|
|
13340
13370
|
channel_message?: ({
|
|
13341
13371
|
clan_id?: string | undefined;
|
|
13342
13372
|
channel_id?: string | undefined;
|
|
@@ -13393,7 +13423,7 @@ export declare const Envelope: {
|
|
|
13393
13423
|
hide_editted?: boolean | undefined;
|
|
13394
13424
|
is_public?: boolean | undefined;
|
|
13395
13425
|
topic_id?: string | undefined;
|
|
13396
|
-
} & { [
|
|
13426
|
+
} & { [K_400 in Exclude<keyof I_1["channel_message"], keyof ChannelMessage>]: never; }) | undefined;
|
|
13397
13427
|
channel_message_ack?: ({
|
|
13398
13428
|
channel_id?: string | undefined;
|
|
13399
13429
|
message_id?: string | undefined;
|
|
@@ -13414,7 +13444,7 @@ export declare const Envelope: {
|
|
|
13414
13444
|
persistent?: boolean | undefined;
|
|
13415
13445
|
clan_logo?: string | undefined;
|
|
13416
13446
|
category_name?: string | undefined;
|
|
13417
|
-
} & { [
|
|
13447
|
+
} & { [K_401 in Exclude<keyof I_1["channel_message_ack"], keyof ChannelMessageAck>]: never; }) | undefined;
|
|
13418
13448
|
channel_message_send?: ({
|
|
13419
13449
|
clan_id?: string | undefined;
|
|
13420
13450
|
channel_id?: string | undefined;
|
|
@@ -13488,7 +13518,7 @@ export declare const Envelope: {
|
|
|
13488
13518
|
create_time?: Date | undefined;
|
|
13489
13519
|
s?: number | undefined;
|
|
13490
13520
|
e?: number | undefined;
|
|
13491
|
-
} & { [
|
|
13521
|
+
} & { [K_402 in Exclude<keyof I_1["channel_message_send"]["mentions"][number], keyof MessageMention>]: never; })[] & { [K_403 in Exclude<keyof I_1["channel_message_send"]["mentions"], keyof {
|
|
13492
13522
|
id?: string | undefined;
|
|
13493
13523
|
user_id?: string | undefined;
|
|
13494
13524
|
username?: string | undefined;
|
|
@@ -13522,7 +13552,7 @@ export declare const Envelope: {
|
|
|
13522
13552
|
width?: number | undefined;
|
|
13523
13553
|
height?: number | undefined;
|
|
13524
13554
|
thumbnail?: string | undefined;
|
|
13525
|
-
} & { [
|
|
13555
|
+
} & { [K_404 in Exclude<keyof I_1["channel_message_send"]["attachments"][number], keyof MessageAttachment>]: never; })[] & { [K_405 in Exclude<keyof I_1["channel_message_send"]["attachments"], keyof {
|
|
13526
13556
|
filename?: string | undefined;
|
|
13527
13557
|
size?: number | undefined;
|
|
13528
13558
|
url?: string | undefined;
|
|
@@ -13564,7 +13594,7 @@ export declare const Envelope: {
|
|
|
13564
13594
|
mesages_sender_avatar?: string | undefined;
|
|
13565
13595
|
message_sender_clan_nick?: string | undefined;
|
|
13566
13596
|
message_sender_display_name?: string | undefined;
|
|
13567
|
-
} & { [
|
|
13597
|
+
} & { [K_406 in Exclude<keyof I_1["channel_message_send"]["references"][number], keyof MessageRef>]: never; })[] & { [K_407 in Exclude<keyof I_1["channel_message_send"]["references"], keyof {
|
|
13568
13598
|
message_id?: string | undefined;
|
|
13569
13599
|
message_ref_id?: string | undefined;
|
|
13570
13600
|
content?: string | undefined;
|
|
@@ -13583,7 +13613,7 @@ export declare const Envelope: {
|
|
|
13583
13613
|
is_public?: boolean | undefined;
|
|
13584
13614
|
code?: number | undefined;
|
|
13585
13615
|
topic_id?: string | undefined;
|
|
13586
|
-
} & { [
|
|
13616
|
+
} & { [K_408 in Exclude<keyof I_1["channel_message_send"], keyof ChannelMessageSend>]: never; }) | undefined;
|
|
13587
13617
|
channel_message_update?: ({
|
|
13588
13618
|
clan_id?: string | undefined;
|
|
13589
13619
|
channel_id?: string | undefined;
|
|
@@ -13646,7 +13676,7 @@ export declare const Envelope: {
|
|
|
13646
13676
|
create_time?: Date | undefined;
|
|
13647
13677
|
s?: number | undefined;
|
|
13648
13678
|
e?: number | undefined;
|
|
13649
|
-
} & { [
|
|
13679
|
+
} & { [K_409 in Exclude<keyof I_1["channel_message_update"]["mentions"][number], keyof MessageMention>]: never; })[] & { [K_410 in Exclude<keyof I_1["channel_message_update"]["mentions"], keyof {
|
|
13650
13680
|
id?: string | undefined;
|
|
13651
13681
|
user_id?: string | undefined;
|
|
13652
13682
|
username?: string | undefined;
|
|
@@ -13680,7 +13710,7 @@ export declare const Envelope: {
|
|
|
13680
13710
|
width?: number | undefined;
|
|
13681
13711
|
height?: number | undefined;
|
|
13682
13712
|
thumbnail?: string | undefined;
|
|
13683
|
-
} & { [
|
|
13713
|
+
} & { [K_411 in Exclude<keyof I_1["channel_message_update"]["attachments"][number], keyof MessageAttachment>]: never; })[] & { [K_412 in Exclude<keyof I_1["channel_message_update"]["attachments"], keyof {
|
|
13684
13714
|
filename?: string | undefined;
|
|
13685
13715
|
size?: number | undefined;
|
|
13686
13716
|
url?: string | undefined;
|
|
@@ -13695,7 +13725,7 @@ export declare const Envelope: {
|
|
|
13695
13725
|
topic_id?: string | undefined;
|
|
13696
13726
|
is_update_msg_topic?: boolean | undefined;
|
|
13697
13727
|
old_mentions?: string | undefined;
|
|
13698
|
-
} & { [
|
|
13728
|
+
} & { [K_413 in Exclude<keyof I_1["channel_message_update"], keyof ChannelMessageUpdate>]: never; }) | undefined;
|
|
13699
13729
|
channel_message_remove?: ({
|
|
13700
13730
|
clan_id?: string | undefined;
|
|
13701
13731
|
channel_id?: string | undefined;
|
|
@@ -13716,7 +13746,7 @@ export declare const Envelope: {
|
|
|
13716
13746
|
topic_id?: string | undefined;
|
|
13717
13747
|
mentions?: string | undefined;
|
|
13718
13748
|
references?: string | undefined;
|
|
13719
|
-
} & { [
|
|
13749
|
+
} & { [K_414 in Exclude<keyof I_1["channel_message_remove"], keyof ChannelMessageRemove>]: never; }) | undefined;
|
|
13720
13750
|
channel_presence_event?: ({
|
|
13721
13751
|
channel_id?: string | undefined;
|
|
13722
13752
|
joins?: {
|
|
@@ -13766,7 +13796,7 @@ export declare const Envelope: {
|
|
|
13766
13796
|
status?: string | undefined;
|
|
13767
13797
|
is_mobile?: boolean | undefined;
|
|
13768
13798
|
user_status?: string | undefined;
|
|
13769
|
-
} & { [
|
|
13799
|
+
} & { [K_415 in Exclude<keyof I_1["channel_presence_event"]["joins"][number], keyof UserPresence>]: never; })[] & { [K_416 in Exclude<keyof I_1["channel_presence_event"]["joins"], keyof {
|
|
13770
13800
|
user_id?: string | undefined;
|
|
13771
13801
|
session_id?: string | undefined;
|
|
13772
13802
|
username?: string | undefined;
|
|
@@ -13799,7 +13829,7 @@ export declare const Envelope: {
|
|
|
13799
13829
|
status?: string | undefined;
|
|
13800
13830
|
is_mobile?: boolean | undefined;
|
|
13801
13831
|
user_status?: string | undefined;
|
|
13802
|
-
} & { [
|
|
13832
|
+
} & { [K_417 in Exclude<keyof I_1["channel_presence_event"]["leaves"][number], keyof UserPresence>]: never; })[] & { [K_418 in Exclude<keyof I_1["channel_presence_event"]["leaves"], keyof {
|
|
13803
13833
|
user_id?: string | undefined;
|
|
13804
13834
|
session_id?: string | undefined;
|
|
13805
13835
|
username?: string | undefined;
|
|
@@ -13811,7 +13841,7 @@ export declare const Envelope: {
|
|
|
13811
13841
|
clan_logo?: string | undefined;
|
|
13812
13842
|
category_name?: string | undefined;
|
|
13813
13843
|
mode?: number | undefined;
|
|
13814
|
-
} & { [
|
|
13844
|
+
} & { [K_419 in Exclude<keyof I_1["channel_presence_event"], keyof ChannelPresenceEvent>]: never; }) | undefined;
|
|
13815
13845
|
error?: ({
|
|
13816
13846
|
code?: number | undefined;
|
|
13817
13847
|
message?: string | undefined;
|
|
@@ -13825,8 +13855,8 @@ export declare const Envelope: {
|
|
|
13825
13855
|
[x: string]: string | undefined;
|
|
13826
13856
|
} & {
|
|
13827
13857
|
[x: string]: string | undefined;
|
|
13828
|
-
} & { [
|
|
13829
|
-
} & { [
|
|
13858
|
+
} & { [K_420 in Exclude<keyof I_1["error"]["context"], string | number>]: never; }) | undefined;
|
|
13859
|
+
} & { [K_421 in Exclude<keyof I_1["error"], keyof Error>]: never; }) | undefined;
|
|
13830
13860
|
notifications?: ({
|
|
13831
13861
|
notifications?: {
|
|
13832
13862
|
id?: string | undefined;
|
|
@@ -14105,8 +14135,8 @@ export declare const Envelope: {
|
|
|
14105
14135
|
creator_id?: string | undefined;
|
|
14106
14136
|
channel_label?: string | undefined;
|
|
14107
14137
|
channel_private?: number | undefined;
|
|
14108
|
-
avatars?: (string[] & string[] & { [
|
|
14109
|
-
user_ids?: (string[] & string[] & { [
|
|
14138
|
+
avatars?: (string[] & string[] & { [K_422 in Exclude<keyof I_1["notifications"]["notifications"][number]["channel"]["avatars"], keyof string[]>]: never; }) | undefined;
|
|
14139
|
+
user_ids?: (string[] & string[] & { [K_423 in Exclude<keyof I_1["notifications"]["notifications"][number]["channel"]["user_ids"], keyof string[]>]: never; }) | undefined;
|
|
14110
14140
|
last_sent_message?: ({
|
|
14111
14141
|
id?: string | undefined;
|
|
14112
14142
|
timestamp_seconds?: number | undefined;
|
|
@@ -14126,8 +14156,8 @@ export declare const Envelope: {
|
|
|
14126
14156
|
reference?: string | undefined;
|
|
14127
14157
|
mention?: string | undefined;
|
|
14128
14158
|
reaction?: string | undefined;
|
|
14129
|
-
repliers?: (string[] & string[] & { [
|
|
14130
|
-
} & { [
|
|
14159
|
+
repliers?: (string[] & string[] & { [K_424 in Exclude<keyof I_1["notifications"]["notifications"][number]["channel"]["last_sent_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
14160
|
+
} & { [K_425 in Exclude<keyof I_1["notifications"]["notifications"][number]["channel"]["last_sent_message"], keyof ChannelMessageHeader>]: never; }) | undefined;
|
|
14131
14161
|
last_seen_message?: ({
|
|
14132
14162
|
id?: string | undefined;
|
|
14133
14163
|
timestamp_seconds?: number | undefined;
|
|
@@ -14147,18 +14177,18 @@ export declare const Envelope: {
|
|
|
14147
14177
|
reference?: string | undefined;
|
|
14148
14178
|
mention?: string | undefined;
|
|
14149
14179
|
reaction?: string | undefined;
|
|
14150
|
-
repliers?: (string[] & string[] & { [
|
|
14151
|
-
} & { [
|
|
14152
|
-
onlines?: (boolean[] & boolean[] & { [
|
|
14180
|
+
repliers?: (string[] & string[] & { [K_426 in Exclude<keyof I_1["notifications"]["notifications"][number]["channel"]["last_seen_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
14181
|
+
} & { [K_427 in Exclude<keyof I_1["notifications"]["notifications"][number]["channel"]["last_seen_message"], keyof ChannelMessageHeader>]: never; }) | undefined;
|
|
14182
|
+
onlines?: (boolean[] & boolean[] & { [K_428 in Exclude<keyof I_1["notifications"]["notifications"][number]["channel"]["onlines"], keyof boolean[]>]: never; }) | undefined;
|
|
14153
14183
|
meeting_code?: string | undefined;
|
|
14154
14184
|
count_mess_unread?: number | undefined;
|
|
14155
14185
|
active?: number | undefined;
|
|
14156
14186
|
last_pin_message?: string | undefined;
|
|
14157
|
-
usernames?: (string[] & string[] & { [
|
|
14187
|
+
usernames?: (string[] & string[] & { [K_429 in Exclude<keyof I_1["notifications"]["notifications"][number]["channel"]["usernames"], keyof string[]>]: never; }) | undefined;
|
|
14158
14188
|
creator_name?: string | undefined;
|
|
14159
14189
|
create_time_seconds?: number | undefined;
|
|
14160
14190
|
update_time_seconds?: number | undefined;
|
|
14161
|
-
display_names?: (string[] & string[] & { [
|
|
14191
|
+
display_names?: (string[] & string[] & { [K_430 in Exclude<keyof I_1["notifications"]["notifications"][number]["channel"]["display_names"], keyof string[]>]: never; }) | undefined;
|
|
14162
14192
|
channel_avatar?: string | undefined;
|
|
14163
14193
|
clan_name?: string | undefined;
|
|
14164
14194
|
app_id?: string | undefined;
|
|
@@ -14167,10 +14197,10 @@ export declare const Envelope: {
|
|
|
14167
14197
|
topic?: string | undefined;
|
|
14168
14198
|
e2ee?: number | undefined;
|
|
14169
14199
|
member_count?: number | undefined;
|
|
14170
|
-
} & { [
|
|
14200
|
+
} & { [K_431 in Exclude<keyof I_1["notifications"]["notifications"][number]["channel"], keyof ChannelDescription1>]: never; }) | undefined;
|
|
14171
14201
|
topic_id?: string | undefined;
|
|
14172
14202
|
category?: number | undefined;
|
|
14173
|
-
} & { [
|
|
14203
|
+
} & { [K_432 in Exclude<keyof I_1["notifications"]["notifications"][number], keyof Notification>]: never; })[] & { [K_433 in Exclude<keyof I_1["notifications"]["notifications"], keyof {
|
|
14174
14204
|
id?: string | undefined;
|
|
14175
14205
|
subject?: string | undefined;
|
|
14176
14206
|
content?: string | undefined;
|
|
@@ -14238,7 +14268,7 @@ export declare const Envelope: {
|
|
|
14238
14268
|
topic_id?: string | undefined;
|
|
14239
14269
|
category?: number | undefined;
|
|
14240
14270
|
}[]>]: never; }) | undefined;
|
|
14241
|
-
} & { [
|
|
14271
|
+
} & { [K_434 in Exclude<keyof I_1["notifications"], "notifications">]: never; }) | undefined;
|
|
14242
14272
|
rpc?: ({
|
|
14243
14273
|
id?: string | undefined;
|
|
14244
14274
|
payload?: string | undefined;
|
|
@@ -14247,7 +14277,7 @@ export declare const Envelope: {
|
|
|
14247
14277
|
id?: string | undefined;
|
|
14248
14278
|
payload?: string | undefined;
|
|
14249
14279
|
http_key?: string | undefined;
|
|
14250
|
-
} & { [
|
|
14280
|
+
} & { [K_435 in Exclude<keyof I_1["rpc"], keyof Rpc>]: never; }) | undefined;
|
|
14251
14281
|
status?: ({
|
|
14252
14282
|
presences?: {
|
|
14253
14283
|
user_id?: string | undefined;
|
|
@@ -14283,7 +14313,7 @@ export declare const Envelope: {
|
|
|
14283
14313
|
status?: string | undefined;
|
|
14284
14314
|
is_mobile?: boolean | undefined;
|
|
14285
14315
|
user_status?: string | undefined;
|
|
14286
|
-
} & { [
|
|
14316
|
+
} & { [K_436 in Exclude<keyof I_1["status"]["presences"][number], keyof UserPresence>]: never; })[] & { [K_437 in Exclude<keyof I_1["status"]["presences"], keyof {
|
|
14287
14317
|
user_id?: string | undefined;
|
|
14288
14318
|
session_id?: string | undefined;
|
|
14289
14319
|
username?: string | undefined;
|
|
@@ -14292,14 +14322,14 @@ export declare const Envelope: {
|
|
|
14292
14322
|
is_mobile?: boolean | undefined;
|
|
14293
14323
|
user_status?: string | undefined;
|
|
14294
14324
|
}[]>]: never; }) | undefined;
|
|
14295
|
-
} & { [
|
|
14325
|
+
} & { [K_438 in Exclude<keyof I_1["status"], "presences">]: never; }) | undefined;
|
|
14296
14326
|
status_follow?: ({
|
|
14297
14327
|
user_ids?: string[] | undefined;
|
|
14298
14328
|
usernames?: string[] | undefined;
|
|
14299
14329
|
} & {
|
|
14300
|
-
user_ids?: (string[] & string[] & { [
|
|
14301
|
-
usernames?: (string[] & string[] & { [
|
|
14302
|
-
} & { [
|
|
14330
|
+
user_ids?: (string[] & string[] & { [K_439 in Exclude<keyof I_1["status_follow"]["user_ids"], keyof string[]>]: never; }) | undefined;
|
|
14331
|
+
usernames?: (string[] & string[] & { [K_440 in Exclude<keyof I_1["status_follow"]["usernames"], keyof string[]>]: never; }) | undefined;
|
|
14332
|
+
} & { [K_441 in Exclude<keyof I_1["status_follow"], keyof StatusFollow>]: never; }) | undefined;
|
|
14303
14333
|
status_presence_event?: ({
|
|
14304
14334
|
joins?: {
|
|
14305
14335
|
user_id?: string | undefined;
|
|
@@ -14344,7 +14374,7 @@ export declare const Envelope: {
|
|
|
14344
14374
|
status?: string | undefined;
|
|
14345
14375
|
is_mobile?: boolean | undefined;
|
|
14346
14376
|
user_status?: string | undefined;
|
|
14347
|
-
} & { [
|
|
14377
|
+
} & { [K_442 in Exclude<keyof I_1["status_presence_event"]["joins"][number], keyof UserPresence>]: never; })[] & { [K_443 in Exclude<keyof I_1["status_presence_event"]["joins"], keyof {
|
|
14348
14378
|
user_id?: string | undefined;
|
|
14349
14379
|
session_id?: string | undefined;
|
|
14350
14380
|
username?: string | undefined;
|
|
@@ -14377,7 +14407,7 @@ export declare const Envelope: {
|
|
|
14377
14407
|
status?: string | undefined;
|
|
14378
14408
|
is_mobile?: boolean | undefined;
|
|
14379
14409
|
user_status?: string | undefined;
|
|
14380
|
-
} & { [
|
|
14410
|
+
} & { [K_444 in Exclude<keyof I_1["status_presence_event"]["leaves"][number], keyof UserPresence>]: never; })[] & { [K_445 in Exclude<keyof I_1["status_presence_event"]["leaves"], keyof {
|
|
14381
14411
|
user_id?: string | undefined;
|
|
14382
14412
|
session_id?: string | undefined;
|
|
14383
14413
|
username?: string | undefined;
|
|
@@ -14386,17 +14416,17 @@ export declare const Envelope: {
|
|
|
14386
14416
|
is_mobile?: boolean | undefined;
|
|
14387
14417
|
user_status?: string | undefined;
|
|
14388
14418
|
}[]>]: never; }) | undefined;
|
|
14389
|
-
} & { [
|
|
14419
|
+
} & { [K_446 in Exclude<keyof I_1["status_presence_event"], keyof StatusPresenceEvent>]: never; }) | undefined;
|
|
14390
14420
|
status_unfollow?: ({
|
|
14391
14421
|
user_ids?: string[] | undefined;
|
|
14392
14422
|
} & {
|
|
14393
|
-
user_ids?: (string[] & string[] & { [
|
|
14394
|
-
} & { [
|
|
14423
|
+
user_ids?: (string[] & string[] & { [K_447 in Exclude<keyof I_1["status_unfollow"]["user_ids"], keyof string[]>]: never; }) | undefined;
|
|
14424
|
+
} & { [K_448 in Exclude<keyof I_1["status_unfollow"], "user_ids">]: never; }) | undefined;
|
|
14395
14425
|
status_update?: ({
|
|
14396
14426
|
status?: string | undefined;
|
|
14397
14427
|
} & {
|
|
14398
14428
|
status?: string | undefined;
|
|
14399
|
-
} & { [
|
|
14429
|
+
} & { [K_449 in Exclude<keyof I_1["status_update"], "status">]: never; }) | undefined;
|
|
14400
14430
|
stream_data?: ({
|
|
14401
14431
|
stream?: {
|
|
14402
14432
|
mode?: number | undefined;
|
|
@@ -14426,7 +14456,7 @@ export declare const Envelope: {
|
|
|
14426
14456
|
channel_id?: string | undefined;
|
|
14427
14457
|
clan_id?: string | undefined;
|
|
14428
14458
|
label?: string | undefined;
|
|
14429
|
-
} & { [
|
|
14459
|
+
} & { [K_450 in Exclude<keyof I_1["stream_data"]["stream"], keyof Stream>]: never; }) | undefined;
|
|
14430
14460
|
sender?: ({
|
|
14431
14461
|
user_id?: string | undefined;
|
|
14432
14462
|
session_id?: string | undefined;
|
|
@@ -14443,10 +14473,10 @@ export declare const Envelope: {
|
|
|
14443
14473
|
status?: string | undefined;
|
|
14444
14474
|
is_mobile?: boolean | undefined;
|
|
14445
14475
|
user_status?: string | undefined;
|
|
14446
|
-
} & { [
|
|
14476
|
+
} & { [K_451 in Exclude<keyof I_1["stream_data"]["sender"], keyof UserPresence>]: never; }) | undefined;
|
|
14447
14477
|
data?: string | undefined;
|
|
14448
14478
|
reliable?: boolean | undefined;
|
|
14449
|
-
} & { [
|
|
14479
|
+
} & { [K_452 in Exclude<keyof I_1["stream_data"], keyof StreamData>]: never; }) | undefined;
|
|
14450
14480
|
stream_presence_event?: ({
|
|
14451
14481
|
stream?: {
|
|
14452
14482
|
mode?: number | undefined;
|
|
@@ -14483,7 +14513,7 @@ export declare const Envelope: {
|
|
|
14483
14513
|
channel_id?: string | undefined;
|
|
14484
14514
|
clan_id?: string | undefined;
|
|
14485
14515
|
label?: string | undefined;
|
|
14486
|
-
} & { [
|
|
14516
|
+
} & { [K_453 in Exclude<keyof I_1["stream_presence_event"]["stream"], keyof Stream>]: never; }) | undefined;
|
|
14487
14517
|
joins?: ({
|
|
14488
14518
|
user_id?: string | undefined;
|
|
14489
14519
|
session_id?: string | undefined;
|
|
@@ -14508,7 +14538,7 @@ export declare const Envelope: {
|
|
|
14508
14538
|
status?: string | undefined;
|
|
14509
14539
|
is_mobile?: boolean | undefined;
|
|
14510
14540
|
user_status?: string | undefined;
|
|
14511
|
-
} & { [
|
|
14541
|
+
} & { [K_454 in Exclude<keyof I_1["stream_presence_event"]["joins"][number], keyof UserPresence>]: never; })[] & { [K_455 in Exclude<keyof I_1["stream_presence_event"]["joins"], keyof {
|
|
14512
14542
|
user_id?: string | undefined;
|
|
14513
14543
|
session_id?: string | undefined;
|
|
14514
14544
|
username?: string | undefined;
|
|
@@ -14541,7 +14571,7 @@ export declare const Envelope: {
|
|
|
14541
14571
|
status?: string | undefined;
|
|
14542
14572
|
is_mobile?: boolean | undefined;
|
|
14543
14573
|
user_status?: string | undefined;
|
|
14544
|
-
} & { [
|
|
14574
|
+
} & { [K_456 in Exclude<keyof I_1["stream_presence_event"]["leaves"][number], keyof UserPresence>]: never; })[] & { [K_457 in Exclude<keyof I_1["stream_presence_event"]["leaves"], keyof {
|
|
14545
14575
|
user_id?: string | undefined;
|
|
14546
14576
|
session_id?: string | undefined;
|
|
14547
14577
|
username?: string | undefined;
|
|
@@ -14550,9 +14580,9 @@ export declare const Envelope: {
|
|
|
14550
14580
|
is_mobile?: boolean | undefined;
|
|
14551
14581
|
user_status?: string | undefined;
|
|
14552
14582
|
}[]>]: never; }) | undefined;
|
|
14553
|
-
} & { [
|
|
14554
|
-
ping?: ({} & {} & { [
|
|
14555
|
-
pong?: ({} & {} & { [
|
|
14583
|
+
} & { [K_458 in Exclude<keyof I_1["stream_presence_event"], keyof StreamPresenceEvent>]: never; }) | undefined;
|
|
14584
|
+
ping?: ({} & {} & { [K_459 in Exclude<keyof I_1["ping"], never>]: never; }) | undefined;
|
|
14585
|
+
pong?: ({} & {} & { [K_460 in Exclude<keyof I_1["pong"], never>]: never; }) | undefined;
|
|
14556
14586
|
message_typing_event?: ({
|
|
14557
14587
|
clan_id?: string | undefined;
|
|
14558
14588
|
channel_id?: string | undefined;
|
|
@@ -14571,7 +14601,7 @@ export declare const Envelope: {
|
|
|
14571
14601
|
sender_username?: string | undefined;
|
|
14572
14602
|
sender_display_name?: string | undefined;
|
|
14573
14603
|
topic_id?: string | undefined;
|
|
14574
|
-
} & { [
|
|
14604
|
+
} & { [K_461 in Exclude<keyof I_1["message_typing_event"], keyof MessageTypingEvent>]: never; }) | undefined;
|
|
14575
14605
|
last_seen_message_event?: ({
|
|
14576
14606
|
clan_id?: string | undefined;
|
|
14577
14607
|
channel_id?: string | undefined;
|
|
@@ -14586,7 +14616,7 @@ export declare const Envelope: {
|
|
|
14586
14616
|
mode?: number | undefined;
|
|
14587
14617
|
timestamp_seconds?: number | undefined;
|
|
14588
14618
|
badge_count?: number | undefined;
|
|
14589
|
-
} & { [
|
|
14619
|
+
} & { [K_462 in Exclude<keyof I_1["last_seen_message_event"], keyof LastSeenMessageEvent>]: never; }) | undefined;
|
|
14590
14620
|
message_reaction_event?: ({
|
|
14591
14621
|
id?: string | undefined;
|
|
14592
14622
|
emoji_id?: string | undefined;
|
|
@@ -14621,7 +14651,7 @@ export declare const Envelope: {
|
|
|
14621
14651
|
is_public?: boolean | undefined;
|
|
14622
14652
|
topic_id?: string | undefined;
|
|
14623
14653
|
emoji_recent_id?: string | undefined;
|
|
14624
|
-
} & { [
|
|
14654
|
+
} & { [K_463 in Exclude<keyof I_1["message_reaction_event"], keyof MessageReaction>]: never; }) | undefined;
|
|
14625
14655
|
voice_joined_event?: ({
|
|
14626
14656
|
clan_id?: string | undefined;
|
|
14627
14657
|
clan_name?: string | undefined;
|
|
@@ -14640,7 +14670,7 @@ export declare const Envelope: {
|
|
|
14640
14670
|
voice_channel_label?: string | undefined;
|
|
14641
14671
|
voice_channel_id?: string | undefined;
|
|
14642
14672
|
last_screenshot?: string | undefined;
|
|
14643
|
-
} & { [
|
|
14673
|
+
} & { [K_464 in Exclude<keyof I_1["voice_joined_event"], keyof VoiceJoinedEvent>]: never; }) | undefined;
|
|
14644
14674
|
voice_leaved_event?: ({
|
|
14645
14675
|
id?: string | undefined;
|
|
14646
14676
|
clan_id?: string | undefined;
|
|
@@ -14651,7 +14681,7 @@ export declare const Envelope: {
|
|
|
14651
14681
|
clan_id?: string | undefined;
|
|
14652
14682
|
voice_channel_id?: string | undefined;
|
|
14653
14683
|
voice_user_id?: string | undefined;
|
|
14654
|
-
} & { [
|
|
14684
|
+
} & { [K_465 in Exclude<keyof I_1["voice_leaved_event"], keyof VoiceLeavedEvent>]: never; }) | undefined;
|
|
14655
14685
|
voice_started_event?: ({
|
|
14656
14686
|
id?: string | undefined;
|
|
14657
14687
|
clan_id?: string | undefined;
|
|
@@ -14660,7 +14690,7 @@ export declare const Envelope: {
|
|
|
14660
14690
|
id?: string | undefined;
|
|
14661
14691
|
clan_id?: string | undefined;
|
|
14662
14692
|
voice_channel_id?: string | undefined;
|
|
14663
|
-
} & { [
|
|
14693
|
+
} & { [K_466 in Exclude<keyof I_1["voice_started_event"], keyof VoiceStartedEvent>]: never; }) | undefined;
|
|
14664
14694
|
voice_ended_event?: ({
|
|
14665
14695
|
id?: string | undefined;
|
|
14666
14696
|
clan_id?: string | undefined;
|
|
@@ -14669,7 +14699,7 @@ export declare const Envelope: {
|
|
|
14669
14699
|
id?: string | undefined;
|
|
14670
14700
|
clan_id?: string | undefined;
|
|
14671
14701
|
voice_channel_id?: string | undefined;
|
|
14672
|
-
} & { [
|
|
14702
|
+
} & { [K_467 in Exclude<keyof I_1["voice_ended_event"], keyof VoiceEndedEvent>]: never; }) | undefined;
|
|
14673
14703
|
channel_created_event?: ({
|
|
14674
14704
|
clan_id?: string | undefined;
|
|
14675
14705
|
category_id?: string | undefined;
|
|
@@ -14694,7 +14724,7 @@ export declare const Envelope: {
|
|
|
14694
14724
|
status?: number | undefined;
|
|
14695
14725
|
app_id?: string | undefined;
|
|
14696
14726
|
clan_name?: string | undefined;
|
|
14697
|
-
} & { [
|
|
14727
|
+
} & { [K_468 in Exclude<keyof I_1["channel_created_event"], keyof ChannelCreatedEvent>]: never; }) | undefined;
|
|
14698
14728
|
channel_deleted_event?: ({
|
|
14699
14729
|
clan_id?: string | undefined;
|
|
14700
14730
|
category_id?: string | undefined;
|
|
@@ -14707,7 +14737,7 @@ export declare const Envelope: {
|
|
|
14707
14737
|
parent_id?: string | undefined;
|
|
14708
14738
|
channel_id?: string | undefined;
|
|
14709
14739
|
deletor?: string | undefined;
|
|
14710
|
-
} & { [
|
|
14740
|
+
} & { [K_469 in Exclude<keyof I_1["channel_deleted_event"], keyof ChannelDeletedEvent>]: never; }) | undefined;
|
|
14711
14741
|
channel_updated_event?: ({
|
|
14712
14742
|
clan_id?: string | undefined;
|
|
14713
14743
|
category_id?: string | undefined;
|
|
@@ -14746,9 +14776,9 @@ export declare const Envelope: {
|
|
|
14746
14776
|
age_restricted?: number | undefined;
|
|
14747
14777
|
active?: number | undefined;
|
|
14748
14778
|
count_mess_unread?: number | undefined;
|
|
14749
|
-
user_ids?: (string[] & string[] & { [
|
|
14750
|
-
role_ids?: (string[] & string[] & { [
|
|
14751
|
-
} & { [
|
|
14779
|
+
user_ids?: (string[] & string[] & { [K_470 in Exclude<keyof I_1["channel_updated_event"]["user_ids"], keyof string[]>]: never; }) | undefined;
|
|
14780
|
+
role_ids?: (string[] & string[] & { [K_471 in Exclude<keyof I_1["channel_updated_event"]["role_ids"], keyof string[]>]: never; }) | undefined;
|
|
14781
|
+
} & { [K_472 in Exclude<keyof I_1["channel_updated_event"], keyof ChannelUpdatedEvent>]: never; }) | undefined;
|
|
14752
14782
|
last_pin_message_event?: ({
|
|
14753
14783
|
clan_id?: string | undefined;
|
|
14754
14784
|
channel_id?: string | undefined;
|
|
@@ -14779,7 +14809,7 @@ export declare const Envelope: {
|
|
|
14779
14809
|
message_content?: string | undefined;
|
|
14780
14810
|
message_attachment?: string | undefined;
|
|
14781
14811
|
message_created_time?: string | undefined;
|
|
14782
|
-
} & { [
|
|
14812
|
+
} & { [K_473 in Exclude<keyof I_1["last_pin_message_event"], keyof LastPinMessageEvent>]: never; }) | undefined;
|
|
14783
14813
|
custom_status_event?: ({
|
|
14784
14814
|
clan_id?: string | undefined;
|
|
14785
14815
|
user_id?: string | undefined;
|
|
@@ -14794,7 +14824,7 @@ export declare const Envelope: {
|
|
|
14794
14824
|
status?: string | undefined;
|
|
14795
14825
|
time_reset?: number | undefined;
|
|
14796
14826
|
no_clear?: boolean | undefined;
|
|
14797
|
-
} & { [
|
|
14827
|
+
} & { [K_474 in Exclude<keyof I_1["custom_status_event"], keyof CustomStatusEvent>]: never; }) | undefined;
|
|
14798
14828
|
user_channel_added_event?: ({
|
|
14799
14829
|
channel_desc?: {
|
|
14800
14830
|
clan_id?: string | undefined;
|
|
@@ -14964,8 +14994,8 @@ export declare const Envelope: {
|
|
|
14964
14994
|
creator_id?: string | undefined;
|
|
14965
14995
|
channel_label?: string | undefined;
|
|
14966
14996
|
channel_private?: number | undefined;
|
|
14967
|
-
avatars?: (string[] & string[] & { [
|
|
14968
|
-
user_ids?: (string[] & string[] & { [
|
|
14997
|
+
avatars?: (string[] & string[] & { [K_475 in Exclude<keyof I_1["user_channel_added_event"]["channel_desc"]["avatars"], keyof string[]>]: never; }) | undefined;
|
|
14998
|
+
user_ids?: (string[] & string[] & { [K_476 in Exclude<keyof I_1["user_channel_added_event"]["channel_desc"]["user_ids"], keyof string[]>]: never; }) | undefined;
|
|
14969
14999
|
last_sent_message?: ({
|
|
14970
15000
|
id?: string | undefined;
|
|
14971
15001
|
timestamp_seconds?: number | undefined;
|
|
@@ -14985,8 +15015,8 @@ export declare const Envelope: {
|
|
|
14985
15015
|
reference?: string | undefined;
|
|
14986
15016
|
mention?: string | undefined;
|
|
14987
15017
|
reaction?: string | undefined;
|
|
14988
|
-
repliers?: (string[] & string[] & { [
|
|
14989
|
-
} & { [
|
|
15018
|
+
repliers?: (string[] & string[] & { [K_477 in Exclude<keyof I_1["user_channel_added_event"]["channel_desc"]["last_sent_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
15019
|
+
} & { [K_478 in Exclude<keyof I_1["user_channel_added_event"]["channel_desc"]["last_sent_message"], keyof ChannelMessageHeader>]: never; }) | undefined;
|
|
14990
15020
|
last_seen_message?: ({
|
|
14991
15021
|
id?: string | undefined;
|
|
14992
15022
|
timestamp_seconds?: number | undefined;
|
|
@@ -15006,18 +15036,18 @@ export declare const Envelope: {
|
|
|
15006
15036
|
reference?: string | undefined;
|
|
15007
15037
|
mention?: string | undefined;
|
|
15008
15038
|
reaction?: string | undefined;
|
|
15009
|
-
repliers?: (string[] & string[] & { [
|
|
15010
|
-
} & { [
|
|
15011
|
-
onlines?: (boolean[] & boolean[] & { [
|
|
15039
|
+
repliers?: (string[] & string[] & { [K_479 in Exclude<keyof I_1["user_channel_added_event"]["channel_desc"]["last_seen_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
15040
|
+
} & { [K_480 in Exclude<keyof I_1["user_channel_added_event"]["channel_desc"]["last_seen_message"], keyof ChannelMessageHeader>]: never; }) | undefined;
|
|
15041
|
+
onlines?: (boolean[] & boolean[] & { [K_481 in Exclude<keyof I_1["user_channel_added_event"]["channel_desc"]["onlines"], keyof boolean[]>]: never; }) | undefined;
|
|
15012
15042
|
meeting_code?: string | undefined;
|
|
15013
15043
|
count_mess_unread?: number | undefined;
|
|
15014
15044
|
active?: number | undefined;
|
|
15015
15045
|
last_pin_message?: string | undefined;
|
|
15016
|
-
usernames?: (string[] & string[] & { [
|
|
15046
|
+
usernames?: (string[] & string[] & { [K_482 in Exclude<keyof I_1["user_channel_added_event"]["channel_desc"]["usernames"], keyof string[]>]: never; }) | undefined;
|
|
15017
15047
|
creator_name?: string | undefined;
|
|
15018
15048
|
create_time_seconds?: number | undefined;
|
|
15019
15049
|
update_time_seconds?: number | undefined;
|
|
15020
|
-
display_names?: (string[] & string[] & { [
|
|
15050
|
+
display_names?: (string[] & string[] & { [K_483 in Exclude<keyof I_1["user_channel_added_event"]["channel_desc"]["display_names"], keyof string[]>]: never; }) | undefined;
|
|
15021
15051
|
channel_avatar?: string | undefined;
|
|
15022
15052
|
clan_name?: string | undefined;
|
|
15023
15053
|
app_id?: string | undefined;
|
|
@@ -15026,7 +15056,7 @@ export declare const Envelope: {
|
|
|
15026
15056
|
topic?: string | undefined;
|
|
15027
15057
|
e2ee?: number | undefined;
|
|
15028
15058
|
member_count?: number | undefined;
|
|
15029
|
-
} & { [
|
|
15059
|
+
} & { [K_484 in Exclude<keyof I_1["user_channel_added_event"]["channel_desc"], keyof ChannelDescription1>]: never; }) | undefined;
|
|
15030
15060
|
users?: ({
|
|
15031
15061
|
user_id?: string | undefined;
|
|
15032
15062
|
username?: string | undefined;
|
|
@@ -15094,21 +15124,21 @@ export declare const Envelope: {
|
|
|
15094
15124
|
device_id?: string | undefined;
|
|
15095
15125
|
token_id?: string | undefined;
|
|
15096
15126
|
platform?: string | undefined;
|
|
15097
|
-
} & { [
|
|
15127
|
+
} & { [K_485 in Exclude<keyof I_1["user_channel_added_event"]["users"][number]["fcm_tokens"][number], keyof FCMTokens>]: never; })[] & { [K_486 in Exclude<keyof I_1["user_channel_added_event"]["users"][number]["fcm_tokens"], keyof {
|
|
15098
15128
|
device_id?: string | undefined;
|
|
15099
15129
|
token_id?: string | undefined;
|
|
15100
15130
|
platform?: string | undefined;
|
|
15101
15131
|
}[]>]: never; }) | undefined;
|
|
15102
15132
|
online?: boolean | undefined;
|
|
15103
15133
|
is_disabled?: boolean | undefined;
|
|
15104
|
-
joined_clans?: (string[] & string[] & { [
|
|
15134
|
+
joined_clans?: (string[] & string[] & { [K_487 in Exclude<keyof I_1["user_channel_added_event"]["users"][number]["joined_clans"], keyof string[]>]: never; }) | undefined;
|
|
15105
15135
|
pubkey?: string | undefined;
|
|
15106
15136
|
mezon_id?: string | undefined;
|
|
15107
15137
|
app_token?: string | undefined;
|
|
15108
15138
|
app_url?: string | undefined;
|
|
15109
15139
|
is_bot?: boolean | undefined;
|
|
15110
15140
|
voip_token?: string | undefined;
|
|
15111
|
-
} & { [
|
|
15141
|
+
} & { [K_488 in Exclude<keyof I_1["user_channel_added_event"]["users"][number], keyof UserProfileRedis>]: never; })[] & { [K_489 in Exclude<keyof I_1["user_channel_added_event"]["users"], keyof {
|
|
15112
15142
|
user_id?: string | undefined;
|
|
15113
15143
|
username?: string | undefined;
|
|
15114
15144
|
avatar?: string | undefined;
|
|
@@ -15178,24 +15208,24 @@ export declare const Envelope: {
|
|
|
15178
15208
|
device_id?: string | undefined;
|
|
15179
15209
|
token_id?: string | undefined;
|
|
15180
15210
|
platform?: string | undefined;
|
|
15181
|
-
} & { [
|
|
15211
|
+
} & { [K_490 in Exclude<keyof I_1["user_channel_added_event"]["caller"]["fcm_tokens"][number], keyof FCMTokens>]: never; })[] & { [K_491 in Exclude<keyof I_1["user_channel_added_event"]["caller"]["fcm_tokens"], keyof {
|
|
15182
15212
|
device_id?: string | undefined;
|
|
15183
15213
|
token_id?: string | undefined;
|
|
15184
15214
|
platform?: string | undefined;
|
|
15185
15215
|
}[]>]: never; }) | undefined;
|
|
15186
15216
|
online?: boolean | undefined;
|
|
15187
15217
|
is_disabled?: boolean | undefined;
|
|
15188
|
-
joined_clans?: (string[] & string[] & { [
|
|
15218
|
+
joined_clans?: (string[] & string[] & { [K_492 in Exclude<keyof I_1["user_channel_added_event"]["caller"]["joined_clans"], keyof string[]>]: never; }) | undefined;
|
|
15189
15219
|
pubkey?: string | undefined;
|
|
15190
15220
|
mezon_id?: string | undefined;
|
|
15191
15221
|
app_token?: string | undefined;
|
|
15192
15222
|
app_url?: string | undefined;
|
|
15193
15223
|
is_bot?: boolean | undefined;
|
|
15194
15224
|
voip_token?: string | undefined;
|
|
15195
|
-
} & { [
|
|
15225
|
+
} & { [K_493 in Exclude<keyof I_1["user_channel_added_event"]["caller"], keyof UserProfileRedis>]: never; }) | undefined;
|
|
15196
15226
|
create_time_second?: number | undefined;
|
|
15197
15227
|
active?: number | undefined;
|
|
15198
|
-
} & { [
|
|
15228
|
+
} & { [K_494 in Exclude<keyof I_1["user_channel_added_event"], keyof UserChannelAdded>]: never; }) | undefined;
|
|
15199
15229
|
user_channel_removed_event?: ({
|
|
15200
15230
|
channel_id?: string | undefined;
|
|
15201
15231
|
user_ids?: string[] | undefined;
|
|
@@ -15204,18 +15234,18 @@ export declare const Envelope: {
|
|
|
15204
15234
|
badge_counts?: number[] | undefined;
|
|
15205
15235
|
} & {
|
|
15206
15236
|
channel_id?: string | undefined;
|
|
15207
|
-
user_ids?: (string[] & string[] & { [
|
|
15237
|
+
user_ids?: (string[] & string[] & { [K_495 in Exclude<keyof I_1["user_channel_removed_event"]["user_ids"], keyof string[]>]: never; }) | undefined;
|
|
15208
15238
|
channel_type?: number | undefined;
|
|
15209
15239
|
clan_id?: string | undefined;
|
|
15210
|
-
badge_counts?: (number[] & number[] & { [
|
|
15211
|
-
} & { [
|
|
15240
|
+
badge_counts?: (number[] & number[] & { [K_496 in Exclude<keyof I_1["user_channel_removed_event"]["badge_counts"], keyof number[]>]: never; }) | undefined;
|
|
15241
|
+
} & { [K_497 in Exclude<keyof I_1["user_channel_removed_event"], keyof UserChannelRemoved>]: never; }) | undefined;
|
|
15212
15242
|
user_clan_removed_event?: ({
|
|
15213
15243
|
clan_id?: string | undefined;
|
|
15214
15244
|
user_ids?: string[] | undefined;
|
|
15215
15245
|
} & {
|
|
15216
15246
|
clan_id?: string | undefined;
|
|
15217
|
-
user_ids?: (string[] & string[] & { [
|
|
15218
|
-
} & { [
|
|
15247
|
+
user_ids?: (string[] & string[] & { [K_498 in Exclude<keyof I_1["user_clan_removed_event"]["user_ids"], keyof string[]>]: never; }) | undefined;
|
|
15248
|
+
} & { [K_499 in Exclude<keyof I_1["user_clan_removed_event"], keyof UserClanRemoved>]: never; }) | undefined;
|
|
15219
15249
|
clan_updated_event?: ({
|
|
15220
15250
|
clan_id?: string | undefined;
|
|
15221
15251
|
clan_name?: string | undefined;
|
|
@@ -15242,7 +15272,7 @@ export declare const Envelope: {
|
|
|
15242
15272
|
is_community?: boolean | undefined;
|
|
15243
15273
|
about?: string | undefined;
|
|
15244
15274
|
description?: string | undefined;
|
|
15245
|
-
} & { [
|
|
15275
|
+
} & { [K_500 in Exclude<keyof I_1["clan_updated_event"], keyof ClanUpdatedEvent>]: never; }) | undefined;
|
|
15246
15276
|
clan_profile_updated_event?: ({
|
|
15247
15277
|
user_id?: string | undefined;
|
|
15248
15278
|
clan_nick?: string | undefined;
|
|
@@ -15253,7 +15283,7 @@ export declare const Envelope: {
|
|
|
15253
15283
|
clan_nick?: string | undefined;
|
|
15254
15284
|
clan_avatar?: string | undefined;
|
|
15255
15285
|
clan_id?: string | undefined;
|
|
15256
|
-
} & { [
|
|
15286
|
+
} & { [K_501 in Exclude<keyof I_1["clan_profile_updated_event"], keyof ClanProfileUpdatedEvent>]: never; }) | undefined;
|
|
15257
15287
|
check_name_existed_event?: ({
|
|
15258
15288
|
name?: string | undefined;
|
|
15259
15289
|
condition_id?: string | undefined;
|
|
@@ -15264,7 +15294,7 @@ export declare const Envelope: {
|
|
|
15264
15294
|
condition_id?: string | undefined;
|
|
15265
15295
|
exist?: boolean | undefined;
|
|
15266
15296
|
type?: number | undefined;
|
|
15267
|
-
} & { [
|
|
15297
|
+
} & { [K_502 in Exclude<keyof I_1["check_name_existed_event"], keyof CheckNameExistedEvent>]: never; }) | undefined;
|
|
15268
15298
|
user_profile_updated_event?: ({
|
|
15269
15299
|
user_id?: string | undefined;
|
|
15270
15300
|
display_name?: string | undefined;
|
|
@@ -15281,7 +15311,7 @@ export declare const Envelope: {
|
|
|
15281
15311
|
channel_id?: string | undefined;
|
|
15282
15312
|
clan_id?: string | undefined;
|
|
15283
15313
|
encrypt_private_key?: string | undefined;
|
|
15284
|
-
} & { [
|
|
15314
|
+
} & { [K_503 in Exclude<keyof I_1["user_profile_updated_event"], keyof UserProfileUpdatedEvent>]: never; }) | undefined;
|
|
15285
15315
|
add_clan_user_event?: ({
|
|
15286
15316
|
clan_id?: string | undefined;
|
|
15287
15317
|
user?: {
|
|
@@ -15355,23 +15385,23 @@ export declare const Envelope: {
|
|
|
15355
15385
|
device_id?: string | undefined;
|
|
15356
15386
|
token_id?: string | undefined;
|
|
15357
15387
|
platform?: string | undefined;
|
|
15358
|
-
} & { [
|
|
15388
|
+
} & { [K_504 in Exclude<keyof I_1["add_clan_user_event"]["user"]["fcm_tokens"][number], keyof FCMTokens>]: never; })[] & { [K_505 in Exclude<keyof I_1["add_clan_user_event"]["user"]["fcm_tokens"], keyof {
|
|
15359
15389
|
device_id?: string | undefined;
|
|
15360
15390
|
token_id?: string | undefined;
|
|
15361
15391
|
platform?: string | undefined;
|
|
15362
15392
|
}[]>]: never; }) | undefined;
|
|
15363
15393
|
online?: boolean | undefined;
|
|
15364
15394
|
is_disabled?: boolean | undefined;
|
|
15365
|
-
joined_clans?: (string[] & string[] & { [
|
|
15395
|
+
joined_clans?: (string[] & string[] & { [K_506 in Exclude<keyof I_1["add_clan_user_event"]["user"]["joined_clans"], keyof string[]>]: never; }) | undefined;
|
|
15366
15396
|
pubkey?: string | undefined;
|
|
15367
15397
|
mezon_id?: string | undefined;
|
|
15368
15398
|
app_token?: string | undefined;
|
|
15369
15399
|
app_url?: string | undefined;
|
|
15370
15400
|
is_bot?: boolean | undefined;
|
|
15371
15401
|
voip_token?: string | undefined;
|
|
15372
|
-
} & { [
|
|
15402
|
+
} & { [K_507 in Exclude<keyof I_1["add_clan_user_event"]["user"], keyof UserProfileRedis>]: never; }) | undefined;
|
|
15373
15403
|
invitor?: string | undefined;
|
|
15374
|
-
} & { [
|
|
15404
|
+
} & { [K_508 in Exclude<keyof I_1["add_clan_user_event"], keyof AddClanUserEvent>]: never; }) | undefined;
|
|
15375
15405
|
clan_event_created?: ({
|
|
15376
15406
|
title?: string | undefined;
|
|
15377
15407
|
logo?: string | undefined;
|
|
@@ -15425,8 +15455,8 @@ export declare const Envelope: {
|
|
|
15425
15455
|
external_link?: string | undefined;
|
|
15426
15456
|
creator_id?: string | undefined;
|
|
15427
15457
|
event_id?: string | undefined;
|
|
15428
|
-
} & { [
|
|
15429
|
-
} & { [
|
|
15458
|
+
} & { [K_509 in Exclude<keyof I_1["clan_event_created"]["meet_room"], keyof import("../api/api").GenerateMezonMeetResponse>]: never; }) | undefined;
|
|
15459
|
+
} & { [K_510 in Exclude<keyof I_1["clan_event_created"], keyof CreateEventRequest>]: never; }) | undefined;
|
|
15430
15460
|
role_assign_event?: ({
|
|
15431
15461
|
ClanId?: string | undefined;
|
|
15432
15462
|
role_id?: string | undefined;
|
|
@@ -15435,16 +15465,16 @@ export declare const Envelope: {
|
|
|
15435
15465
|
} & {
|
|
15436
15466
|
ClanId?: string | undefined;
|
|
15437
15467
|
role_id?: string | undefined;
|
|
15438
|
-
user_ids_assigned?: (string[] & string[] & { [
|
|
15439
|
-
user_ids_removed?: (string[] & string[] & { [
|
|
15440
|
-
} & { [
|
|
15468
|
+
user_ids_assigned?: (string[] & string[] & { [K_511 in Exclude<keyof I_1["role_assign_event"]["user_ids_assigned"], keyof string[]>]: never; }) | undefined;
|
|
15469
|
+
user_ids_removed?: (string[] & string[] & { [K_512 in Exclude<keyof I_1["role_assign_event"]["user_ids_removed"], keyof string[]>]: never; }) | undefined;
|
|
15470
|
+
} & { [K_513 in Exclude<keyof I_1["role_assign_event"], keyof RoleAssignedEvent>]: never; }) | undefined;
|
|
15441
15471
|
clan_deleted_event?: ({
|
|
15442
15472
|
clan_id?: string | undefined;
|
|
15443
15473
|
deletor?: string | undefined;
|
|
15444
15474
|
} & {
|
|
15445
15475
|
clan_id?: string | undefined;
|
|
15446
15476
|
deletor?: string | undefined;
|
|
15447
|
-
} & { [
|
|
15477
|
+
} & { [K_514 in Exclude<keyof I_1["clan_deleted_event"], keyof ClanDeletedEvent>]: never; }) | undefined;
|
|
15448
15478
|
give_coffee_event?: ({
|
|
15449
15479
|
sender_id?: string | undefined;
|
|
15450
15480
|
receiver_id?: string | undefined;
|
|
@@ -15459,7 +15489,7 @@ export declare const Envelope: {
|
|
|
15459
15489
|
message_ref_id?: string | undefined;
|
|
15460
15490
|
channel_id?: string | undefined;
|
|
15461
15491
|
clan_id?: string | undefined;
|
|
15462
|
-
} & { [
|
|
15492
|
+
} & { [K_515 in Exclude<keyof I_1["give_coffee_event"], keyof GiveCoffeeEvent>]: never; }) | undefined;
|
|
15463
15493
|
sticker_create_event?: ({
|
|
15464
15494
|
clan_id?: string | undefined;
|
|
15465
15495
|
source?: string | undefined;
|
|
@@ -15478,7 +15508,7 @@ export declare const Envelope: {
|
|
|
15478
15508
|
sticker_id?: string | undefined;
|
|
15479
15509
|
logo?: string | undefined;
|
|
15480
15510
|
clan_name?: string | undefined;
|
|
15481
|
-
} & { [
|
|
15511
|
+
} & { [K_516 in Exclude<keyof I_1["sticker_create_event"], keyof StickerCreateEvent>]: never; }) | undefined;
|
|
15482
15512
|
sticker_update_event?: ({
|
|
15483
15513
|
shortname?: string | undefined;
|
|
15484
15514
|
sticker_id?: string | undefined;
|
|
@@ -15487,14 +15517,14 @@ export declare const Envelope: {
|
|
|
15487
15517
|
shortname?: string | undefined;
|
|
15488
15518
|
sticker_id?: string | undefined;
|
|
15489
15519
|
user_id?: string | undefined;
|
|
15490
|
-
} & { [
|
|
15520
|
+
} & { [K_517 in Exclude<keyof I_1["sticker_update_event"], keyof StickerUpdateEvent>]: never; }) | undefined;
|
|
15491
15521
|
sticker_delete_event?: ({
|
|
15492
15522
|
sticker_id?: string | undefined;
|
|
15493
15523
|
user_id?: string | undefined;
|
|
15494
15524
|
} & {
|
|
15495
15525
|
sticker_id?: string | undefined;
|
|
15496
15526
|
user_id?: string | undefined;
|
|
15497
|
-
} & { [
|
|
15527
|
+
} & { [K_518 in Exclude<keyof I_1["sticker_delete_event"], keyof StickerDeleteEvent>]: never; }) | undefined;
|
|
15498
15528
|
role_event?: ({
|
|
15499
15529
|
role?: {
|
|
15500
15530
|
id?: string | undefined;
|
|
@@ -15632,7 +15662,7 @@ export declare const Envelope: {
|
|
|
15632
15662
|
lang_tag?: string | undefined;
|
|
15633
15663
|
location?: string | undefined;
|
|
15634
15664
|
online?: boolean | undefined;
|
|
15635
|
-
} & { [
|
|
15665
|
+
} & { [K_519 in Exclude<keyof I_1["role_event"]["role"]["role_user_list"]["role_users"][number], keyof import("../api/api").RoleUserList_RoleUser>]: never; })[] & { [K_520 in Exclude<keyof I_1["role_event"]["role"]["role_user_list"]["role_users"], keyof {
|
|
15636
15666
|
id?: string | undefined;
|
|
15637
15667
|
username?: string | undefined;
|
|
15638
15668
|
display_name?: string | undefined;
|
|
@@ -15642,7 +15672,7 @@ export declare const Envelope: {
|
|
|
15642
15672
|
online?: boolean | undefined;
|
|
15643
15673
|
}[]>]: never; }) | undefined;
|
|
15644
15674
|
cursor?: string | undefined;
|
|
15645
|
-
} & { [
|
|
15675
|
+
} & { [K_521 in Exclude<keyof I_1["role_event"]["role"]["role_user_list"], keyof RoleUserList>]: never; }) | undefined;
|
|
15646
15676
|
permission_list?: ({
|
|
15647
15677
|
permissions?: {
|
|
15648
15678
|
id?: string | undefined;
|
|
@@ -15679,7 +15709,7 @@ export declare const Envelope: {
|
|
|
15679
15709
|
active?: number | undefined;
|
|
15680
15710
|
scope?: number | undefined;
|
|
15681
15711
|
level?: number | undefined;
|
|
15682
|
-
} & { [
|
|
15712
|
+
} & { [K_522 in Exclude<keyof I_1["role_event"]["role"]["permission_list"]["permissions"][number], keyof import("../api/api").Permission>]: never; })[] & { [K_523 in Exclude<keyof I_1["role_event"]["role"]["permission_list"]["permissions"], keyof {
|
|
15683
15713
|
id?: string | undefined;
|
|
15684
15714
|
title?: string | undefined;
|
|
15685
15715
|
slug?: string | undefined;
|
|
@@ -15689,19 +15719,19 @@ export declare const Envelope: {
|
|
|
15689
15719
|
level?: number | undefined;
|
|
15690
15720
|
}[]>]: never; }) | undefined;
|
|
15691
15721
|
max_level_permission?: number | undefined;
|
|
15692
|
-
} & { [
|
|
15722
|
+
} & { [K_524 in Exclude<keyof I_1["role_event"]["role"]["permission_list"], keyof PermissionList>]: never; }) | undefined;
|
|
15693
15723
|
role_channel_active?: number | undefined;
|
|
15694
|
-
channel_ids?: (string[] & string[] & { [
|
|
15724
|
+
channel_ids?: (string[] & string[] & { [K_525 in Exclude<keyof I_1["role_event"]["role"]["channel_ids"], keyof string[]>]: never; }) | undefined;
|
|
15695
15725
|
max_level_permission?: number | undefined;
|
|
15696
15726
|
order_role?: number | undefined;
|
|
15697
|
-
} & { [
|
|
15727
|
+
} & { [K_526 in Exclude<keyof I_1["role_event"]["role"], keyof Role>]: never; }) | undefined;
|
|
15698
15728
|
status?: number | undefined;
|
|
15699
15729
|
user_id?: string | undefined;
|
|
15700
|
-
user_add_ids?: (string[] & string[] & { [
|
|
15701
|
-
user_remove_ids?: (string[] & string[] & { [
|
|
15702
|
-
active_permission_ids?: (string[] & string[] & { [
|
|
15703
|
-
remove_permission_ids?: (string[] & string[] & { [
|
|
15704
|
-
} & { [
|
|
15730
|
+
user_add_ids?: (string[] & string[] & { [K_527 in Exclude<keyof I_1["role_event"]["user_add_ids"], keyof string[]>]: never; }) | undefined;
|
|
15731
|
+
user_remove_ids?: (string[] & string[] & { [K_528 in Exclude<keyof I_1["role_event"]["user_remove_ids"], keyof string[]>]: never; }) | undefined;
|
|
15732
|
+
active_permission_ids?: (string[] & string[] & { [K_529 in Exclude<keyof I_1["role_event"]["active_permission_ids"], keyof string[]>]: never; }) | undefined;
|
|
15733
|
+
remove_permission_ids?: (string[] & string[] & { [K_530 in Exclude<keyof I_1["role_event"]["remove_permission_ids"], keyof string[]>]: never; }) | undefined;
|
|
15734
|
+
} & { [K_531 in Exclude<keyof I_1["role_event"], keyof RoleEvent>]: never; }) | undefined;
|
|
15705
15735
|
event_emoji?: ({
|
|
15706
15736
|
id?: string | undefined;
|
|
15707
15737
|
clan_id?: string | undefined;
|
|
@@ -15724,7 +15754,7 @@ export declare const Envelope: {
|
|
|
15724
15754
|
logo?: string | undefined;
|
|
15725
15755
|
clan_name?: string | undefined;
|
|
15726
15756
|
is_for_sale?: boolean | undefined;
|
|
15727
|
-
} & { [
|
|
15757
|
+
} & { [K_532 in Exclude<keyof I_1["event_emoji"], keyof EventEmoji>]: never; }) | undefined;
|
|
15728
15758
|
streaming_joined_event?: ({
|
|
15729
15759
|
clan_id?: string | undefined;
|
|
15730
15760
|
clan_name?: string | undefined;
|
|
@@ -15741,7 +15771,7 @@ export declare const Envelope: {
|
|
|
15741
15771
|
user_id?: string | undefined;
|
|
15742
15772
|
streaming_channel_label?: string | undefined;
|
|
15743
15773
|
streaming_channel_id?: string | undefined;
|
|
15744
|
-
} & { [
|
|
15774
|
+
} & { [K_533 in Exclude<keyof I_1["streaming_joined_event"], keyof StreamingJoinedEvent>]: never; }) | undefined;
|
|
15745
15775
|
streaming_leaved_event?: ({
|
|
15746
15776
|
id?: string | undefined;
|
|
15747
15777
|
clan_id?: string | undefined;
|
|
@@ -15752,7 +15782,7 @@ export declare const Envelope: {
|
|
|
15752
15782
|
clan_id?: string | undefined;
|
|
15753
15783
|
streaming_channel_id?: string | undefined;
|
|
15754
15784
|
streaming_user_id?: string | undefined;
|
|
15755
|
-
} & { [
|
|
15785
|
+
} & { [K_534 in Exclude<keyof I_1["streaming_leaved_event"], keyof StreamingLeavedEvent>]: never; }) | undefined;
|
|
15756
15786
|
streaming_started_event?: ({
|
|
15757
15787
|
clan_id?: string | undefined;
|
|
15758
15788
|
channel_id?: string | undefined;
|
|
@@ -15763,14 +15793,14 @@ export declare const Envelope: {
|
|
|
15763
15793
|
channel_id?: string | undefined;
|
|
15764
15794
|
streaming_url?: string | undefined;
|
|
15765
15795
|
is_streaming?: boolean | undefined;
|
|
15766
|
-
} & { [
|
|
15796
|
+
} & { [K_535 in Exclude<keyof I_1["streaming_started_event"], keyof StreamingStartedEvent>]: never; }) | undefined;
|
|
15767
15797
|
streaming_ended_event?: ({
|
|
15768
15798
|
clan_id?: string | undefined;
|
|
15769
15799
|
channel_id?: string | undefined;
|
|
15770
15800
|
} & {
|
|
15771
15801
|
clan_id?: string | undefined;
|
|
15772
15802
|
channel_id?: string | undefined;
|
|
15773
|
-
} & { [
|
|
15803
|
+
} & { [K_536 in Exclude<keyof I_1["streaming_ended_event"], keyof StreamingEndedEvent>]: never; }) | undefined;
|
|
15774
15804
|
permission_set_event?: ({
|
|
15775
15805
|
caller?: string | undefined;
|
|
15776
15806
|
role_id?: string | undefined;
|
|
@@ -15798,12 +15828,12 @@ export declare const Envelope: {
|
|
|
15798
15828
|
permission_id?: string | undefined;
|
|
15799
15829
|
slug?: string | undefined;
|
|
15800
15830
|
type?: number | undefined;
|
|
15801
|
-
} & { [
|
|
15831
|
+
} & { [K_537 in Exclude<keyof I_1["permission_set_event"]["permission_updates"][number], keyof PermissionUpdate>]: never; })[] & { [K_538 in Exclude<keyof I_1["permission_set_event"]["permission_updates"], keyof {
|
|
15802
15832
|
permission_id?: string | undefined;
|
|
15803
15833
|
slug?: string | undefined;
|
|
15804
15834
|
type?: number | undefined;
|
|
15805
15835
|
}[]>]: never; }) | undefined;
|
|
15806
|
-
} & { [
|
|
15836
|
+
} & { [K_539 in Exclude<keyof I_1["permission_set_event"], keyof PermissionSetEvent>]: never; }) | undefined;
|
|
15807
15837
|
permission_changed_event?: ({
|
|
15808
15838
|
user_id?: string | undefined;
|
|
15809
15839
|
channel_id?: string | undefined;
|
|
@@ -15837,7 +15867,7 @@ export declare const Envelope: {
|
|
|
15837
15867
|
permission_id?: string | undefined;
|
|
15838
15868
|
slug?: string | undefined;
|
|
15839
15869
|
type?: number | undefined;
|
|
15840
|
-
} & { [
|
|
15870
|
+
} & { [K_540 in Exclude<keyof I_1["permission_changed_event"]["add_permissions"][number], keyof PermissionUpdate>]: never; })[] & { [K_541 in Exclude<keyof I_1["permission_changed_event"]["add_permissions"], keyof {
|
|
15841
15871
|
permission_id?: string | undefined;
|
|
15842
15872
|
slug?: string | undefined;
|
|
15843
15873
|
type?: number | undefined;
|
|
@@ -15854,7 +15884,7 @@ export declare const Envelope: {
|
|
|
15854
15884
|
permission_id?: string | undefined;
|
|
15855
15885
|
slug?: string | undefined;
|
|
15856
15886
|
type?: number | undefined;
|
|
15857
|
-
} & { [
|
|
15887
|
+
} & { [K_542 in Exclude<keyof I_1["permission_changed_event"]["remove_permissions"][number], keyof PermissionUpdate>]: never; })[] & { [K_543 in Exclude<keyof I_1["permission_changed_event"]["remove_permissions"], keyof {
|
|
15858
15888
|
permission_id?: string | undefined;
|
|
15859
15889
|
slug?: string | undefined;
|
|
15860
15890
|
type?: number | undefined;
|
|
@@ -15871,12 +15901,12 @@ export declare const Envelope: {
|
|
|
15871
15901
|
permission_id?: string | undefined;
|
|
15872
15902
|
slug?: string | undefined;
|
|
15873
15903
|
type?: number | undefined;
|
|
15874
|
-
} & { [
|
|
15904
|
+
} & { [K_544 in Exclude<keyof I_1["permission_changed_event"]["default_permissions"][number], keyof PermissionUpdate>]: never; })[] & { [K_545 in Exclude<keyof I_1["permission_changed_event"]["default_permissions"], keyof {
|
|
15875
15905
|
permission_id?: string | undefined;
|
|
15876
15906
|
slug?: string | undefined;
|
|
15877
15907
|
type?: number | undefined;
|
|
15878
15908
|
}[]>]: never; }) | undefined;
|
|
15879
|
-
} & { [
|
|
15909
|
+
} & { [K_546 in Exclude<keyof I_1["permission_changed_event"], keyof PermissionChangedEvent>]: never; }) | undefined;
|
|
15880
15910
|
token_sent_event?: ({
|
|
15881
15911
|
sender_id?: string | undefined;
|
|
15882
15912
|
sender_name?: string | undefined;
|
|
@@ -15893,7 +15923,7 @@ export declare const Envelope: {
|
|
|
15893
15923
|
note?: string | undefined;
|
|
15894
15924
|
extra_attribute?: string | undefined;
|
|
15895
15925
|
transaction_id?: string | undefined;
|
|
15896
|
-
} & { [
|
|
15926
|
+
} & { [K_547 in Exclude<keyof I_1["token_sent_event"], keyof TokenSentEvent>]: never; }) | undefined;
|
|
15897
15927
|
message_button_clicked?: ({
|
|
15898
15928
|
message_id?: string | undefined;
|
|
15899
15929
|
channel_id?: string | undefined;
|
|
@@ -15908,7 +15938,7 @@ export declare const Envelope: {
|
|
|
15908
15938
|
sender_id?: string | undefined;
|
|
15909
15939
|
user_id?: string | undefined;
|
|
15910
15940
|
extra_data?: string | undefined;
|
|
15911
|
-
} & { [
|
|
15941
|
+
} & { [K_548 in Exclude<keyof I_1["message_button_clicked"], keyof MessageButtonClicked>]: never; }) | undefined;
|
|
15912
15942
|
unmute_event?: ({
|
|
15913
15943
|
channel_id?: string | undefined;
|
|
15914
15944
|
category_id?: string | undefined;
|
|
@@ -15917,7 +15947,7 @@ export declare const Envelope: {
|
|
|
15917
15947
|
channel_id?: string | undefined;
|
|
15918
15948
|
category_id?: string | undefined;
|
|
15919
15949
|
clan_id?: string | undefined;
|
|
15920
|
-
} & { [
|
|
15950
|
+
} & { [K_549 in Exclude<keyof I_1["unmute_event"], keyof UnmuteEvent>]: never; }) | undefined;
|
|
15921
15951
|
webrtc_signaling_fwd?: ({
|
|
15922
15952
|
receiver_id?: string | undefined;
|
|
15923
15953
|
data_type?: number | undefined;
|
|
@@ -15930,7 +15960,7 @@ export declare const Envelope: {
|
|
|
15930
15960
|
json_data?: string | undefined;
|
|
15931
15961
|
channel_id?: string | undefined;
|
|
15932
15962
|
caller_id?: string | undefined;
|
|
15933
|
-
} & { [
|
|
15963
|
+
} & { [K_550 in Exclude<keyof I_1["webrtc_signaling_fwd"], keyof WebrtcSignalingFwd>]: never; }) | undefined;
|
|
15934
15964
|
list_activity?: ({
|
|
15935
15965
|
acts?: {
|
|
15936
15966
|
user_id?: string | undefined;
|
|
@@ -15970,7 +16000,7 @@ export declare const Envelope: {
|
|
|
15970
16000
|
end_time?: Date | undefined;
|
|
15971
16001
|
application_id?: string | undefined;
|
|
15972
16002
|
status?: number | undefined;
|
|
15973
|
-
} & { [
|
|
16003
|
+
} & { [K_551 in Exclude<keyof I_1["list_activity"]["acts"][number], keyof UserActivity>]: never; })[] & { [K_552 in Exclude<keyof I_1["list_activity"]["acts"], keyof {
|
|
15974
16004
|
user_id?: string | undefined;
|
|
15975
16005
|
activity_name?: string | undefined;
|
|
15976
16006
|
activity_type?: number | undefined;
|
|
@@ -15980,7 +16010,7 @@ export declare const Envelope: {
|
|
|
15980
16010
|
application_id?: string | undefined;
|
|
15981
16011
|
status?: number | undefined;
|
|
15982
16012
|
}[]>]: never; }) | undefined;
|
|
15983
|
-
} & { [
|
|
16013
|
+
} & { [K_553 in Exclude<keyof I_1["list_activity"], "acts">]: never; }) | undefined;
|
|
15984
16014
|
dropdown_box_selected?: ({
|
|
15985
16015
|
message_id?: string | undefined;
|
|
15986
16016
|
channel_id?: string | undefined;
|
|
@@ -15994,8 +16024,8 @@ export declare const Envelope: {
|
|
|
15994
16024
|
selectbox_id?: string | undefined;
|
|
15995
16025
|
sender_id?: string | undefined;
|
|
15996
16026
|
user_id?: string | undefined;
|
|
15997
|
-
values?: (string[] & string[] & { [
|
|
15998
|
-
} & { [
|
|
16027
|
+
values?: (string[] & string[] & { [K_554 in Exclude<keyof I_1["dropdown_box_selected"]["values"], keyof string[]>]: never; }) | undefined;
|
|
16028
|
+
} & { [K_555 in Exclude<keyof I_1["dropdown_box_selected"], keyof DropdownBoxSelected>]: never; }) | undefined;
|
|
15999
16029
|
incoming_call_push?: ({
|
|
16000
16030
|
receiver_id?: string | undefined;
|
|
16001
16031
|
json_data?: string | undefined;
|
|
@@ -16006,7 +16036,7 @@ export declare const Envelope: {
|
|
|
16006
16036
|
json_data?: string | undefined;
|
|
16007
16037
|
channel_id?: string | undefined;
|
|
16008
16038
|
caller_id?: string | undefined;
|
|
16009
|
-
} & { [
|
|
16039
|
+
} & { [K_556 in Exclude<keyof I_1["incoming_call_push"], keyof IncomingCallPush>]: never; }) | undefined;
|
|
16010
16040
|
sd_topic_event?: ({
|
|
16011
16041
|
id?: string | undefined;
|
|
16012
16042
|
clan_id?: string | undefined;
|
|
@@ -16078,8 +16108,8 @@ export declare const Envelope: {
|
|
|
16078
16108
|
reference?: string | undefined;
|
|
16079
16109
|
mention?: string | undefined;
|
|
16080
16110
|
reaction?: string | undefined;
|
|
16081
|
-
repliers?: (string[] & string[] & { [
|
|
16082
|
-
} & { [
|
|
16111
|
+
repliers?: (string[] & string[] & { [K_557 in Exclude<keyof I_1["sd_topic_event"]["last_sent_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
16112
|
+
} & { [K_558 in Exclude<keyof I_1["sd_topic_event"]["last_sent_message"], keyof ChannelMessageHeader>]: never; }) | undefined;
|
|
16083
16113
|
message?: ({
|
|
16084
16114
|
clan_id?: string | undefined;
|
|
16085
16115
|
channel_id?: string | undefined;
|
|
@@ -16136,9 +16166,9 @@ export declare const Envelope: {
|
|
|
16136
16166
|
hide_editted?: boolean | undefined;
|
|
16137
16167
|
is_public?: boolean | undefined;
|
|
16138
16168
|
topic_id?: string | undefined;
|
|
16139
|
-
} & { [
|
|
16140
|
-
} & { [
|
|
16141
|
-
follow_event?: ({} & {} & { [
|
|
16169
|
+
} & { [K_559 in Exclude<keyof I_1["sd_topic_event"]["message"], keyof ChannelMessage>]: never; }) | undefined;
|
|
16170
|
+
} & { [K_560 in Exclude<keyof I_1["sd_topic_event"], keyof SdTopicEvent>]: never; }) | undefined;
|
|
16171
|
+
follow_event?: ({} & {} & { [K_561 in Exclude<keyof I_1["follow_event"], never>]: never; }) | undefined;
|
|
16142
16172
|
channel_app_event?: ({
|
|
16143
16173
|
user_id?: string | undefined;
|
|
16144
16174
|
username?: string | undefined;
|
|
@@ -16151,19 +16181,19 @@ export declare const Envelope: {
|
|
|
16151
16181
|
clan_id?: string | undefined;
|
|
16152
16182
|
channel_id?: string | undefined;
|
|
16153
16183
|
action?: number | undefined;
|
|
16154
|
-
} & { [
|
|
16184
|
+
} & { [K_562 in Exclude<keyof I_1["channel_app_event"], keyof ChannelAppEvent>]: never; }) | undefined;
|
|
16155
16185
|
user_status_event?: ({
|
|
16156
16186
|
user_id?: string | undefined;
|
|
16157
16187
|
custom_status?: string | undefined;
|
|
16158
16188
|
} & {
|
|
16159
16189
|
user_id?: string | undefined;
|
|
16160
16190
|
custom_status?: string | undefined;
|
|
16161
|
-
} & { [
|
|
16191
|
+
} & { [K_563 in Exclude<keyof I_1["user_status_event"], keyof UserStatusEvent>]: never; }) | undefined;
|
|
16162
16192
|
remove_friend?: ({
|
|
16163
16193
|
user_id?: string | undefined;
|
|
16164
16194
|
} & {
|
|
16165
16195
|
user_id?: string | undefined;
|
|
16166
|
-
} & { [
|
|
16196
|
+
} & { [K_564 in Exclude<keyof I_1["remove_friend"], "user_id">]: never; }) | undefined;
|
|
16167
16197
|
webhook_event?: ({
|
|
16168
16198
|
id?: string | undefined;
|
|
16169
16199
|
webhook_name?: string | undefined;
|
|
@@ -16188,7 +16218,7 @@ export declare const Envelope: {
|
|
|
16188
16218
|
avatar?: string | undefined;
|
|
16189
16219
|
status?: number | undefined;
|
|
16190
16220
|
clan_id?: string | undefined;
|
|
16191
|
-
} & { [
|
|
16221
|
+
} & { [K_565 in Exclude<keyof I_1["webhook_event"], keyof Webhook>]: never; }) | undefined;
|
|
16192
16222
|
noti_user_channel?: ({
|
|
16193
16223
|
id?: string | undefined;
|
|
16194
16224
|
notification_setting_type?: number | undefined;
|
|
@@ -16201,7 +16231,7 @@ export declare const Envelope: {
|
|
|
16201
16231
|
time_mute?: Date | undefined;
|
|
16202
16232
|
active?: number | undefined;
|
|
16203
16233
|
channel_id?: string | undefined;
|
|
16204
|
-
} & { [
|
|
16234
|
+
} & { [K_566 in Exclude<keyof I_1["noti_user_channel"], keyof NotificationUserChannel>]: never; }) | undefined;
|
|
16205
16235
|
join_channel_app_data?: ({
|
|
16206
16236
|
user_id?: string | undefined;
|
|
16207
16237
|
username?: string | undefined;
|
|
@@ -16210,7 +16240,7 @@ export declare const Envelope: {
|
|
|
16210
16240
|
user_id?: string | undefined;
|
|
16211
16241
|
username?: string | undefined;
|
|
16212
16242
|
hash?: string | undefined;
|
|
16213
|
-
} & { [
|
|
16243
|
+
} & { [K_567 in Exclude<keyof I_1["join_channel_app_data"], keyof JoinChannelAppData>]: never; }) | undefined;
|
|
16214
16244
|
canvas_event?: ({
|
|
16215
16245
|
id?: string | undefined;
|
|
16216
16246
|
title?: string | undefined;
|
|
@@ -16229,7 +16259,7 @@ export declare const Envelope: {
|
|
|
16229
16259
|
is_default?: boolean | undefined;
|
|
16230
16260
|
channel_id?: string | undefined;
|
|
16231
16261
|
status?: number | undefined;
|
|
16232
|
-
} & { [
|
|
16262
|
+
} & { [K_568 in Exclude<keyof I_1["canvas_event"], keyof ChannelCanvas>]: never; }) | undefined;
|
|
16233
16263
|
unpin_message_event?: ({
|
|
16234
16264
|
id?: string | undefined;
|
|
16235
16265
|
message_id?: string | undefined;
|
|
@@ -16240,7 +16270,7 @@ export declare const Envelope: {
|
|
|
16240
16270
|
message_id?: string | undefined;
|
|
16241
16271
|
channel_id?: string | undefined;
|
|
16242
16272
|
clan_id?: string | undefined;
|
|
16243
|
-
} & { [
|
|
16273
|
+
} & { [K_569 in Exclude<keyof I_1["unpin_message_event"], keyof UnpinMessageEvent>]: never; }) | undefined;
|
|
16244
16274
|
category_event?: ({
|
|
16245
16275
|
creator_id?: string | undefined;
|
|
16246
16276
|
clan_id?: string | undefined;
|
|
@@ -16253,7 +16283,7 @@ export declare const Envelope: {
|
|
|
16253
16283
|
category_name?: string | undefined;
|
|
16254
16284
|
id?: string | undefined;
|
|
16255
16285
|
status?: number | undefined;
|
|
16256
|
-
} & { [
|
|
16286
|
+
} & { [K_570 in Exclude<keyof I_1["category_event"], keyof CategoryEvent>]: never; }) | undefined;
|
|
16257
16287
|
handle_participant_meet_state_event?: ({
|
|
16258
16288
|
clan_id?: string | undefined;
|
|
16259
16289
|
channel_id?: string | undefined;
|
|
@@ -16266,12 +16296,12 @@ export declare const Envelope: {
|
|
|
16266
16296
|
display_name?: string | undefined;
|
|
16267
16297
|
state?: number | undefined;
|
|
16268
16298
|
room_name?: string | undefined;
|
|
16269
|
-
} & { [
|
|
16299
|
+
} & { [K_571 in Exclude<keyof I_1["handle_participant_meet_state_event"], keyof HandleParticipantMeetStateEvent>]: never; }) | undefined;
|
|
16270
16300
|
delete_account_event?: ({
|
|
16271
16301
|
user_id?: string | undefined;
|
|
16272
16302
|
} & {
|
|
16273
16303
|
user_id?: string | undefined;
|
|
16274
|
-
} & { [
|
|
16304
|
+
} & { [K_572 in Exclude<keyof I_1["delete_account_event"], "user_id">]: never; }) | undefined;
|
|
16275
16305
|
ephemeral_message_send?: ({
|
|
16276
16306
|
message?: {
|
|
16277
16307
|
clan_id?: string | undefined;
|
|
@@ -16391,7 +16421,7 @@ export declare const Envelope: {
|
|
|
16391
16421
|
create_time?: Date | undefined;
|
|
16392
16422
|
s?: number | undefined;
|
|
16393
16423
|
e?: number | undefined;
|
|
16394
|
-
} & { [
|
|
16424
|
+
} & { [K_573 in Exclude<keyof I_1["ephemeral_message_send"]["message"]["mentions"][number], keyof MessageMention>]: never; })[] & { [K_574 in Exclude<keyof I_1["ephemeral_message_send"]["message"]["mentions"], keyof {
|
|
16395
16425
|
id?: string | undefined;
|
|
16396
16426
|
user_id?: string | undefined;
|
|
16397
16427
|
username?: string | undefined;
|
|
@@ -16425,7 +16455,7 @@ export declare const Envelope: {
|
|
|
16425
16455
|
width?: number | undefined;
|
|
16426
16456
|
height?: number | undefined;
|
|
16427
16457
|
thumbnail?: string | undefined;
|
|
16428
|
-
} & { [
|
|
16458
|
+
} & { [K_575 in Exclude<keyof I_1["ephemeral_message_send"]["message"]["attachments"][number], keyof MessageAttachment>]: never; })[] & { [K_576 in Exclude<keyof I_1["ephemeral_message_send"]["message"]["attachments"], keyof {
|
|
16429
16459
|
filename?: string | undefined;
|
|
16430
16460
|
size?: number | undefined;
|
|
16431
16461
|
url?: string | undefined;
|
|
@@ -16467,7 +16497,7 @@ export declare const Envelope: {
|
|
|
16467
16497
|
mesages_sender_avatar?: string | undefined;
|
|
16468
16498
|
message_sender_clan_nick?: string | undefined;
|
|
16469
16499
|
message_sender_display_name?: string | undefined;
|
|
16470
|
-
} & { [
|
|
16500
|
+
} & { [K_577 in Exclude<keyof I_1["ephemeral_message_send"]["message"]["references"][number], keyof MessageRef>]: never; })[] & { [K_578 in Exclude<keyof I_1["ephemeral_message_send"]["message"]["references"], keyof {
|
|
16471
16501
|
message_id?: string | undefined;
|
|
16472
16502
|
message_ref_id?: string | undefined;
|
|
16473
16503
|
content?: string | undefined;
|
|
@@ -16486,25 +16516,25 @@ export declare const Envelope: {
|
|
|
16486
16516
|
is_public?: boolean | undefined;
|
|
16487
16517
|
code?: number | undefined;
|
|
16488
16518
|
topic_id?: string | undefined;
|
|
16489
|
-
} & { [
|
|
16519
|
+
} & { [K_579 in Exclude<keyof I_1["ephemeral_message_send"]["message"], keyof ChannelMessageSend>]: never; }) | undefined;
|
|
16490
16520
|
receiver_id?: string | undefined;
|
|
16491
|
-
} & { [
|
|
16521
|
+
} & { [K_580 in Exclude<keyof I_1["ephemeral_message_send"], keyof EphemeralMessageSend>]: never; }) | undefined;
|
|
16492
16522
|
block_friend?: ({
|
|
16493
16523
|
user_id?: string | undefined;
|
|
16494
16524
|
} & {
|
|
16495
16525
|
user_id?: string | undefined;
|
|
16496
|
-
} & { [
|
|
16526
|
+
} & { [K_581 in Exclude<keyof I_1["block_friend"], "user_id">]: never; }) | undefined;
|
|
16497
16527
|
voice_reaction_send?: ({
|
|
16498
16528
|
emojis?: string[] | undefined;
|
|
16499
16529
|
channel_id?: string | undefined;
|
|
16500
16530
|
sender_id?: string | undefined;
|
|
16501
16531
|
media_type?: number | undefined;
|
|
16502
16532
|
} & {
|
|
16503
|
-
emojis?: (string[] & string[] & { [
|
|
16533
|
+
emojis?: (string[] & string[] & { [K_582 in Exclude<keyof I_1["voice_reaction_send"]["emojis"], keyof string[]>]: never; }) | undefined;
|
|
16504
16534
|
channel_id?: string | undefined;
|
|
16505
16535
|
sender_id?: string | undefined;
|
|
16506
16536
|
media_type?: number | undefined;
|
|
16507
|
-
} & { [
|
|
16537
|
+
} & { [K_583 in Exclude<keyof I_1["voice_reaction_send"], keyof VoiceReactionSend>]: never; }) | undefined;
|
|
16508
16538
|
mark_as_read?: ({
|
|
16509
16539
|
channel_id?: string | undefined;
|
|
16510
16540
|
category_id?: string | undefined;
|
|
@@ -16513,7 +16543,7 @@ export declare const Envelope: {
|
|
|
16513
16543
|
channel_id?: string | undefined;
|
|
16514
16544
|
category_id?: string | undefined;
|
|
16515
16545
|
clan_id?: string | undefined;
|
|
16516
|
-
} & { [
|
|
16546
|
+
} & { [K_584 in Exclude<keyof I_1["mark_as_read"], keyof MarkAsRead>]: never; }) | undefined;
|
|
16517
16547
|
list_data_socket?: ({
|
|
16518
16548
|
api_name?: string | undefined;
|
|
16519
16549
|
list_clan_req?: {
|
|
@@ -17377,6 +17407,12 @@ export declare const Envelope: {
|
|
|
17377
17407
|
participant?: string | undefined;
|
|
17378
17408
|
}[] | undefined;
|
|
17379
17409
|
} | undefined;
|
|
17410
|
+
list_unread_msg_indicator_req?: {
|
|
17411
|
+
clan_id?: string | undefined;
|
|
17412
|
+
} | undefined;
|
|
17413
|
+
unread_msg_indicator?: {
|
|
17414
|
+
has_unread_message?: boolean | undefined;
|
|
17415
|
+
} | undefined;
|
|
17380
17416
|
} & {
|
|
17381
17417
|
api_name?: string | undefined;
|
|
17382
17418
|
list_clan_req?: ({
|
|
@@ -17387,7 +17423,7 @@ export declare const Envelope: {
|
|
|
17387
17423
|
limit?: number | undefined;
|
|
17388
17424
|
state?: number | undefined;
|
|
17389
17425
|
cursor?: string | undefined;
|
|
17390
|
-
} & { [
|
|
17426
|
+
} & { [K_585 in Exclude<keyof I_1["list_data_socket"]["list_clan_req"], keyof ListClanDescRequest>]: never; }) | undefined;
|
|
17391
17427
|
clan_desc_list?: ({
|
|
17392
17428
|
clandesc?: {
|
|
17393
17429
|
creator_id?: string | undefined;
|
|
@@ -17467,7 +17503,7 @@ export declare const Envelope: {
|
|
|
17467
17503
|
short_url?: string | undefined;
|
|
17468
17504
|
prevent_anonymous?: boolean | undefined;
|
|
17469
17505
|
has_unread_message?: boolean | undefined;
|
|
17470
|
-
} & { [
|
|
17506
|
+
} & { [K_586 in Exclude<keyof I_1["list_data_socket"]["clan_desc_list"]["clandesc"][number], keyof import("../api/api").ClanDesc>]: never; })[] & { [K_587 in Exclude<keyof I_1["list_data_socket"]["clan_desc_list"]["clandesc"], keyof {
|
|
17471
17507
|
creator_id?: string | undefined;
|
|
17472
17508
|
clan_name?: string | undefined;
|
|
17473
17509
|
logo?: string | undefined;
|
|
@@ -17487,7 +17523,7 @@ export declare const Envelope: {
|
|
|
17487
17523
|
prevent_anonymous?: boolean | undefined;
|
|
17488
17524
|
has_unread_message?: boolean | undefined;
|
|
17489
17525
|
}[]>]: never; }) | undefined;
|
|
17490
|
-
} & { [
|
|
17526
|
+
} & { [K_588 in Exclude<keyof I_1["list_data_socket"]["clan_desc_list"], "clandesc">]: never; }) | undefined;
|
|
17491
17527
|
list_thread_req?: ({
|
|
17492
17528
|
limit?: number | undefined;
|
|
17493
17529
|
state?: number | undefined;
|
|
@@ -17502,7 +17538,7 @@ export declare const Envelope: {
|
|
|
17502
17538
|
channel_id?: string | undefined;
|
|
17503
17539
|
thread_id?: string | undefined;
|
|
17504
17540
|
page?: number | undefined;
|
|
17505
|
-
} & { [
|
|
17541
|
+
} & { [K_589 in Exclude<keyof I_1["list_data_socket"]["list_thread_req"], keyof ListThreadRequest>]: never; }) | undefined;
|
|
17506
17542
|
channel_desc_list?: ({
|
|
17507
17543
|
channeldesc?: {
|
|
17508
17544
|
clan_id?: string | undefined;
|
|
@@ -17676,8 +17712,8 @@ export declare const Envelope: {
|
|
|
17676
17712
|
creator_id?: string | undefined;
|
|
17677
17713
|
channel_label?: string | undefined;
|
|
17678
17714
|
channel_private?: number | undefined;
|
|
17679
|
-
avatars?: (string[] & string[] & { [
|
|
17680
|
-
user_ids?: (string[] & string[] & { [
|
|
17715
|
+
avatars?: (string[] & string[] & { [K_590 in Exclude<keyof I_1["list_data_socket"]["channel_desc_list"]["channeldesc"][number]["avatars"], keyof string[]>]: never; }) | undefined;
|
|
17716
|
+
user_ids?: (string[] & string[] & { [K_591 in Exclude<keyof I_1["list_data_socket"]["channel_desc_list"]["channeldesc"][number]["user_ids"], keyof string[]>]: never; }) | undefined;
|
|
17681
17717
|
last_sent_message?: ({
|
|
17682
17718
|
id?: string | undefined;
|
|
17683
17719
|
timestamp_seconds?: number | undefined;
|
|
@@ -17697,8 +17733,8 @@ export declare const Envelope: {
|
|
|
17697
17733
|
reference?: string | undefined;
|
|
17698
17734
|
mention?: string | undefined;
|
|
17699
17735
|
reaction?: string | undefined;
|
|
17700
|
-
repliers?: (string[] & string[] & { [
|
|
17701
|
-
} & { [
|
|
17736
|
+
repliers?: (string[] & string[] & { [K_592 in Exclude<keyof I_1["list_data_socket"]["channel_desc_list"]["channeldesc"][number]["last_sent_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
17737
|
+
} & { [K_593 in Exclude<keyof I_1["list_data_socket"]["channel_desc_list"]["channeldesc"][number]["last_sent_message"], keyof ChannelMessageHeader>]: never; }) | undefined;
|
|
17702
17738
|
last_seen_message?: ({
|
|
17703
17739
|
id?: string | undefined;
|
|
17704
17740
|
timestamp_seconds?: number | undefined;
|
|
@@ -17718,18 +17754,18 @@ export declare const Envelope: {
|
|
|
17718
17754
|
reference?: string | undefined;
|
|
17719
17755
|
mention?: string | undefined;
|
|
17720
17756
|
reaction?: string | undefined;
|
|
17721
|
-
repliers?: (string[] & string[] & { [
|
|
17722
|
-
} & { [
|
|
17723
|
-
onlines?: (boolean[] & boolean[] & { [
|
|
17757
|
+
repliers?: (string[] & string[] & { [K_594 in Exclude<keyof I_1["list_data_socket"]["channel_desc_list"]["channeldesc"][number]["last_seen_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
17758
|
+
} & { [K_595 in Exclude<keyof I_1["list_data_socket"]["channel_desc_list"]["channeldesc"][number]["last_seen_message"], keyof ChannelMessageHeader>]: never; }) | undefined;
|
|
17759
|
+
onlines?: (boolean[] & boolean[] & { [K_596 in Exclude<keyof I_1["list_data_socket"]["channel_desc_list"]["channeldesc"][number]["onlines"], keyof boolean[]>]: never; }) | undefined;
|
|
17724
17760
|
meeting_code?: string | undefined;
|
|
17725
17761
|
count_mess_unread?: number | undefined;
|
|
17726
17762
|
active?: number | undefined;
|
|
17727
17763
|
last_pin_message?: string | undefined;
|
|
17728
|
-
usernames?: (string[] & string[] & { [
|
|
17764
|
+
usernames?: (string[] & string[] & { [K_597 in Exclude<keyof I_1["list_data_socket"]["channel_desc_list"]["channeldesc"][number]["usernames"], keyof string[]>]: never; }) | undefined;
|
|
17729
17765
|
creator_name?: string | undefined;
|
|
17730
17766
|
create_time_seconds?: number | undefined;
|
|
17731
17767
|
update_time_seconds?: number | undefined;
|
|
17732
|
-
display_names?: (string[] & string[] & { [
|
|
17768
|
+
display_names?: (string[] & string[] & { [K_598 in Exclude<keyof I_1["list_data_socket"]["channel_desc_list"]["channeldesc"][number]["display_names"], keyof string[]>]: never; }) | undefined;
|
|
17733
17769
|
channel_avatar?: string | undefined;
|
|
17734
17770
|
clan_name?: string | undefined;
|
|
17735
17771
|
app_id?: string | undefined;
|
|
@@ -17738,7 +17774,7 @@ export declare const Envelope: {
|
|
|
17738
17774
|
topic?: string | undefined;
|
|
17739
17775
|
e2ee?: number | undefined;
|
|
17740
17776
|
member_count?: number | undefined;
|
|
17741
|
-
} & { [
|
|
17777
|
+
} & { [K_599 in Exclude<keyof I_1["list_data_socket"]["channel_desc_list"]["channeldesc"][number], keyof ChannelDescription1>]: never; })[] & { [K_600 in Exclude<keyof I_1["list_data_socket"]["channel_desc_list"]["channeldesc"], keyof {
|
|
17742
17778
|
clan_id?: string | undefined;
|
|
17743
17779
|
parent_id?: string | undefined;
|
|
17744
17780
|
channel_id?: string | undefined;
|
|
@@ -17795,14 +17831,14 @@ export declare const Envelope: {
|
|
|
17795
17831
|
prev_cursor?: string | undefined;
|
|
17796
17832
|
cacheable_cursor?: string | undefined;
|
|
17797
17833
|
page?: number | undefined;
|
|
17798
|
-
} & { [
|
|
17834
|
+
} & { [K_601 in Exclude<keyof I_1["list_data_socket"]["channel_desc_list"], keyof ChannelDescList>]: never; }) | undefined;
|
|
17799
17835
|
list_channel_users_uc_req?: ({
|
|
17800
17836
|
channel_id?: string | undefined;
|
|
17801
17837
|
limit?: number | undefined;
|
|
17802
17838
|
} & {
|
|
17803
17839
|
channel_id?: string | undefined;
|
|
17804
17840
|
limit?: number | undefined;
|
|
17805
|
-
} & { [
|
|
17841
|
+
} & { [K_602 in Exclude<keyof I_1["list_data_socket"]["list_channel_users_uc_req"], keyof AllUsersAddChannelRequest>]: never; }) | undefined;
|
|
17806
17842
|
channel_users_uc_list?: ({
|
|
17807
17843
|
channel_id?: string | undefined;
|
|
17808
17844
|
user_ids?: string[] | undefined;
|
|
@@ -17813,18 +17849,18 @@ export declare const Envelope: {
|
|
|
17813
17849
|
onlines?: boolean[] | undefined;
|
|
17814
17850
|
} & {
|
|
17815
17851
|
channel_id?: string | undefined;
|
|
17816
|
-
user_ids?: (string[] & string[] & { [
|
|
17852
|
+
user_ids?: (string[] & string[] & { [K_603 in Exclude<keyof I_1["list_data_socket"]["channel_users_uc_list"]["user_ids"], keyof string[]>]: never; }) | undefined;
|
|
17817
17853
|
limit?: number | undefined;
|
|
17818
|
-
usernames?: (string[] & string[] & { [
|
|
17819
|
-
display_names?: (string[] & string[] & { [
|
|
17820
|
-
avatars?: (string[] & string[] & { [
|
|
17821
|
-
onlines?: (boolean[] & boolean[] & { [
|
|
17822
|
-
} & { [
|
|
17854
|
+
usernames?: (string[] & string[] & { [K_604 in Exclude<keyof I_1["list_data_socket"]["channel_users_uc_list"]["usernames"], keyof string[]>]: never; }) | undefined;
|
|
17855
|
+
display_names?: (string[] & string[] & { [K_605 in Exclude<keyof I_1["list_data_socket"]["channel_users_uc_list"]["display_names"], keyof string[]>]: never; }) | undefined;
|
|
17856
|
+
avatars?: (string[] & string[] & { [K_606 in Exclude<keyof I_1["list_data_socket"]["channel_users_uc_list"]["avatars"], keyof string[]>]: never; }) | undefined;
|
|
17857
|
+
onlines?: (boolean[] & boolean[] & { [K_607 in Exclude<keyof I_1["list_data_socket"]["channel_users_uc_list"]["onlines"], keyof boolean[]>]: never; }) | undefined;
|
|
17858
|
+
} & { [K_608 in Exclude<keyof I_1["list_data_socket"]["channel_users_uc_list"], keyof AllUsersAddChannelResponse>]: never; }) | undefined;
|
|
17823
17859
|
list_channel_detail_req?: ({
|
|
17824
17860
|
channel_id?: string | undefined;
|
|
17825
17861
|
} & {
|
|
17826
17862
|
channel_id?: string | undefined;
|
|
17827
|
-
} & { [
|
|
17863
|
+
} & { [K_609 in Exclude<keyof I_1["list_data_socket"]["list_channel_detail_req"], "channel_id">]: never; }) | undefined;
|
|
17828
17864
|
channel_desc?: ({
|
|
17829
17865
|
clan_id?: string | undefined;
|
|
17830
17866
|
parent_id?: string | undefined;
|
|
@@ -17887,8 +17923,8 @@ export declare const Envelope: {
|
|
|
17887
17923
|
creator_id?: string | undefined;
|
|
17888
17924
|
channel_label?: string | undefined;
|
|
17889
17925
|
channel_private?: number | undefined;
|
|
17890
|
-
avatars?: (string[] & string[] & { [
|
|
17891
|
-
user_ids?: (string[] & string[] & { [
|
|
17926
|
+
avatars?: (string[] & string[] & { [K_610 in Exclude<keyof I_1["list_data_socket"]["channel_desc"]["avatars"], keyof string[]>]: never; }) | undefined;
|
|
17927
|
+
user_ids?: (string[] & string[] & { [K_611 in Exclude<keyof I_1["list_data_socket"]["channel_desc"]["user_ids"], keyof string[]>]: never; }) | undefined;
|
|
17892
17928
|
last_sent_message?: ({
|
|
17893
17929
|
id?: string | undefined;
|
|
17894
17930
|
timestamp_seconds?: number | undefined;
|
|
@@ -17908,8 +17944,8 @@ export declare const Envelope: {
|
|
|
17908
17944
|
reference?: string | undefined;
|
|
17909
17945
|
mention?: string | undefined;
|
|
17910
17946
|
reaction?: string | undefined;
|
|
17911
|
-
repliers?: (string[] & string[] & { [
|
|
17912
|
-
} & { [
|
|
17947
|
+
repliers?: (string[] & string[] & { [K_612 in Exclude<keyof I_1["list_data_socket"]["channel_desc"]["last_sent_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
17948
|
+
} & { [K_613 in Exclude<keyof I_1["list_data_socket"]["channel_desc"]["last_sent_message"], keyof ChannelMessageHeader>]: never; }) | undefined;
|
|
17913
17949
|
last_seen_message?: ({
|
|
17914
17950
|
id?: string | undefined;
|
|
17915
17951
|
timestamp_seconds?: number | undefined;
|
|
@@ -17929,18 +17965,18 @@ export declare const Envelope: {
|
|
|
17929
17965
|
reference?: string | undefined;
|
|
17930
17966
|
mention?: string | undefined;
|
|
17931
17967
|
reaction?: string | undefined;
|
|
17932
|
-
repliers?: (string[] & string[] & { [
|
|
17933
|
-
} & { [
|
|
17934
|
-
onlines?: (boolean[] & boolean[] & { [
|
|
17968
|
+
repliers?: (string[] & string[] & { [K_614 in Exclude<keyof I_1["list_data_socket"]["channel_desc"]["last_seen_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
17969
|
+
} & { [K_615 in Exclude<keyof I_1["list_data_socket"]["channel_desc"]["last_seen_message"], keyof ChannelMessageHeader>]: never; }) | undefined;
|
|
17970
|
+
onlines?: (boolean[] & boolean[] & { [K_616 in Exclude<keyof I_1["list_data_socket"]["channel_desc"]["onlines"], keyof boolean[]>]: never; }) | undefined;
|
|
17935
17971
|
meeting_code?: string | undefined;
|
|
17936
17972
|
count_mess_unread?: number | undefined;
|
|
17937
17973
|
active?: number | undefined;
|
|
17938
17974
|
last_pin_message?: string | undefined;
|
|
17939
|
-
usernames?: (string[] & string[] & { [
|
|
17975
|
+
usernames?: (string[] & string[] & { [K_617 in Exclude<keyof I_1["list_data_socket"]["channel_desc"]["usernames"], keyof string[]>]: never; }) | undefined;
|
|
17940
17976
|
creator_name?: string | undefined;
|
|
17941
17977
|
create_time_seconds?: number | undefined;
|
|
17942
17978
|
update_time_seconds?: number | undefined;
|
|
17943
|
-
display_names?: (string[] & string[] & { [
|
|
17979
|
+
display_names?: (string[] & string[] & { [K_618 in Exclude<keyof I_1["list_data_socket"]["channel_desc"]["display_names"], keyof string[]>]: never; }) | undefined;
|
|
17944
17980
|
channel_avatar?: string | undefined;
|
|
17945
17981
|
clan_name?: string | undefined;
|
|
17946
17982
|
app_id?: string | undefined;
|
|
@@ -17949,7 +17985,7 @@ export declare const Envelope: {
|
|
|
17949
17985
|
topic?: string | undefined;
|
|
17950
17986
|
e2ee?: number | undefined;
|
|
17951
17987
|
member_count?: number | undefined;
|
|
17952
|
-
} & { [
|
|
17988
|
+
} & { [K_619 in Exclude<keyof I_1["list_data_socket"]["channel_desc"], keyof ChannelDescription1>]: never; }) | undefined;
|
|
17953
17989
|
list_channel_req?: ({
|
|
17954
17990
|
limit?: number | undefined;
|
|
17955
17991
|
state?: number | undefined;
|
|
@@ -17964,7 +18000,7 @@ export declare const Envelope: {
|
|
|
17964
18000
|
clan_id?: string | undefined;
|
|
17965
18001
|
channel_type?: number | undefined;
|
|
17966
18002
|
is_mobile?: boolean | undefined;
|
|
17967
|
-
} & { [
|
|
18003
|
+
} & { [K_620 in Exclude<keyof I_1["list_data_socket"]["list_channel_req"], keyof ListChannelDescsRequest>]: never; }) | undefined;
|
|
17968
18004
|
list_channel_message_req?: ({
|
|
17969
18005
|
clan_id?: string | undefined;
|
|
17970
18006
|
channel_id?: string | undefined;
|
|
@@ -17979,7 +18015,7 @@ export declare const Envelope: {
|
|
|
17979
18015
|
limit?: number | undefined;
|
|
17980
18016
|
direction?: number | undefined;
|
|
17981
18017
|
topic_id?: string | undefined;
|
|
17982
|
-
} & { [
|
|
18018
|
+
} & { [K_621 in Exclude<keyof I_1["list_data_socket"]["list_channel_message_req"], keyof ListChannelMessagesRequest>]: never; }) | undefined;
|
|
17983
18019
|
channel_message_list?: ({
|
|
17984
18020
|
messages?: {
|
|
17985
18021
|
clan_id?: string | undefined;
|
|
@@ -18117,7 +18153,7 @@ export declare const Envelope: {
|
|
|
18117
18153
|
hide_editted?: boolean | undefined;
|
|
18118
18154
|
is_public?: boolean | undefined;
|
|
18119
18155
|
topic_id?: string | undefined;
|
|
18120
|
-
} & { [
|
|
18156
|
+
} & { [K_622 in Exclude<keyof I_1["list_data_socket"]["channel_message_list"]["messages"][number], keyof ChannelMessage>]: never; })[] & { [K_623 in Exclude<keyof I_1["list_data_socket"]["channel_message_list"]["messages"], keyof {
|
|
18121
18157
|
clan_id?: string | undefined;
|
|
18122
18158
|
channel_id?: string | undefined;
|
|
18123
18159
|
message_id?: string | undefined;
|
|
@@ -18165,8 +18201,8 @@ export declare const Envelope: {
|
|
|
18165
18201
|
reference?: string | undefined;
|
|
18166
18202
|
mention?: string | undefined;
|
|
18167
18203
|
reaction?: string | undefined;
|
|
18168
|
-
repliers?: (string[] & string[] & { [
|
|
18169
|
-
} & { [
|
|
18204
|
+
repliers?: (string[] & string[] & { [K_624 in Exclude<keyof I_1["list_data_socket"]["channel_message_list"]["last_seen_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
18205
|
+
} & { [K_625 in Exclude<keyof I_1["list_data_socket"]["channel_message_list"]["last_seen_message"], keyof ChannelMessageHeader>]: never; }) | undefined;
|
|
18170
18206
|
last_sent_message?: ({
|
|
18171
18207
|
id?: string | undefined;
|
|
18172
18208
|
timestamp_seconds?: number | undefined;
|
|
@@ -18186,9 +18222,9 @@ export declare const Envelope: {
|
|
|
18186
18222
|
reference?: string | undefined;
|
|
18187
18223
|
mention?: string | undefined;
|
|
18188
18224
|
reaction?: string | undefined;
|
|
18189
|
-
repliers?: (string[] & string[] & { [
|
|
18190
|
-
} & { [
|
|
18191
|
-
} & { [
|
|
18225
|
+
repliers?: (string[] & string[] & { [K_626 in Exclude<keyof I_1["list_data_socket"]["channel_message_list"]["last_sent_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
18226
|
+
} & { [K_627 in Exclude<keyof I_1["list_data_socket"]["channel_message_list"]["last_sent_message"], keyof ChannelMessageHeader>]: never; }) | undefined;
|
|
18227
|
+
} & { [K_628 in Exclude<keyof I_1["list_data_socket"]["channel_message_list"], keyof ChannelMessageList>]: never; }) | undefined;
|
|
18192
18228
|
list_channel_users_req?: ({
|
|
18193
18229
|
clan_id?: string | undefined;
|
|
18194
18230
|
channel_id?: string | undefined;
|
|
@@ -18203,7 +18239,7 @@ export declare const Envelope: {
|
|
|
18203
18239
|
limit?: number | undefined;
|
|
18204
18240
|
state?: number | undefined;
|
|
18205
18241
|
cursor?: string | undefined;
|
|
18206
|
-
} & { [
|
|
18242
|
+
} & { [K_629 in Exclude<keyof I_1["list_data_socket"]["list_channel_users_req"], keyof ListChannelUsersRequest>]: never; }) | undefined;
|
|
18207
18243
|
voice_user_list?: ({
|
|
18208
18244
|
voice_channel_users?: {
|
|
18209
18245
|
id?: string | undefined;
|
|
@@ -18227,13 +18263,13 @@ export declare const Envelope: {
|
|
|
18227
18263
|
user_id?: string | undefined;
|
|
18228
18264
|
channel_id?: string | undefined;
|
|
18229
18265
|
participant?: string | undefined;
|
|
18230
|
-
} & { [
|
|
18266
|
+
} & { [K_630 in Exclude<keyof I_1["list_data_socket"]["voice_user_list"]["voice_channel_users"][number], keyof import("../api/api").VoiceChannelUser>]: never; })[] & { [K_631 in Exclude<keyof I_1["list_data_socket"]["voice_user_list"]["voice_channel_users"], keyof {
|
|
18231
18267
|
id?: string | undefined;
|
|
18232
18268
|
user_id?: string | undefined;
|
|
18233
18269
|
channel_id?: string | undefined;
|
|
18234
18270
|
participant?: string | undefined;
|
|
18235
18271
|
}[]>]: never; }) | undefined;
|
|
18236
|
-
} & { [
|
|
18272
|
+
} & { [K_632 in Exclude<keyof I_1["list_data_socket"]["voice_user_list"], "voice_channel_users">]: never; }) | undefined;
|
|
18237
18273
|
channel_user_list?: ({
|
|
18238
18274
|
channel_users?: {
|
|
18239
18275
|
user_id?: string | undefined;
|
|
@@ -18268,14 +18304,14 @@ export declare const Envelope: {
|
|
|
18268
18304
|
added_by?: string | undefined;
|
|
18269
18305
|
} & {
|
|
18270
18306
|
user_id?: string | undefined;
|
|
18271
|
-
role_id?: (string[] & string[] & { [
|
|
18307
|
+
role_id?: (string[] & string[] & { [K_633 in Exclude<keyof I_1["list_data_socket"]["channel_user_list"]["channel_users"][number]["role_id"], keyof string[]>]: never; }) | undefined;
|
|
18272
18308
|
id?: string | undefined;
|
|
18273
18309
|
thread_id?: string | undefined;
|
|
18274
18310
|
clan_nick?: string | undefined;
|
|
18275
18311
|
clan_avatar?: string | undefined;
|
|
18276
18312
|
clan_id?: string | undefined;
|
|
18277
18313
|
added_by?: string | undefined;
|
|
18278
|
-
} & { [
|
|
18314
|
+
} & { [K_634 in Exclude<keyof I_1["list_data_socket"]["channel_user_list"]["channel_users"][number], keyof import("../api/api").ChannelUserList_ChannelUser>]: never; })[] & { [K_635 in Exclude<keyof I_1["list_data_socket"]["channel_user_list"]["channel_users"], keyof {
|
|
18279
18315
|
user_id?: string | undefined;
|
|
18280
18316
|
role_id?: string[] | undefined;
|
|
18281
18317
|
id?: string | undefined;
|
|
@@ -18287,7 +18323,7 @@ export declare const Envelope: {
|
|
|
18287
18323
|
}[]>]: never; }) | undefined;
|
|
18288
18324
|
cursor?: string | undefined;
|
|
18289
18325
|
channel_id?: string | undefined;
|
|
18290
|
-
} & { [
|
|
18326
|
+
} & { [K_636 in Exclude<keyof I_1["list_data_socket"]["channel_user_list"], keyof ChannelUserList>]: never; }) | undefined;
|
|
18291
18327
|
list_channel_attachment_req?: ({
|
|
18292
18328
|
clan_id?: string | undefined;
|
|
18293
18329
|
channel_id?: string | undefined;
|
|
@@ -18306,7 +18342,7 @@ export declare const Envelope: {
|
|
|
18306
18342
|
before?: number | undefined;
|
|
18307
18343
|
after?: number | undefined;
|
|
18308
18344
|
around?: number | undefined;
|
|
18309
|
-
} & { [
|
|
18345
|
+
} & { [K_637 in Exclude<keyof I_1["list_data_socket"]["list_channel_attachment_req"], keyof ListChannelAttachmentRequest>]: never; }) | undefined;
|
|
18310
18346
|
channel_attachment_list?: ({
|
|
18311
18347
|
attachments?: {
|
|
18312
18348
|
id?: string | undefined;
|
|
@@ -18354,7 +18390,7 @@ export declare const Envelope: {
|
|
|
18354
18390
|
message_id?: string | undefined;
|
|
18355
18391
|
width?: number | undefined;
|
|
18356
18392
|
height?: number | undefined;
|
|
18357
|
-
} & { [
|
|
18393
|
+
} & { [K_638 in Exclude<keyof I_1["list_data_socket"]["channel_attachment_list"]["attachments"][number], keyof import("../api/api").ChannelAttachment>]: never; })[] & { [K_639 in Exclude<keyof I_1["list_data_socket"]["channel_attachment_list"]["attachments"], keyof {
|
|
18358
18394
|
id?: string | undefined;
|
|
18359
18395
|
filename?: string | undefined;
|
|
18360
18396
|
filetype?: string | undefined;
|
|
@@ -18366,14 +18402,14 @@ export declare const Envelope: {
|
|
|
18366
18402
|
width?: number | undefined;
|
|
18367
18403
|
height?: number | undefined;
|
|
18368
18404
|
}[]>]: never; }) | undefined;
|
|
18369
|
-
} & { [
|
|
18405
|
+
} & { [K_640 in Exclude<keyof I_1["list_data_socket"]["channel_attachment_list"], "attachments">]: never; }) | undefined;
|
|
18370
18406
|
hashtag_dm_req?: ({
|
|
18371
18407
|
user_id?: string[] | undefined;
|
|
18372
18408
|
limit?: number | undefined;
|
|
18373
18409
|
} & {
|
|
18374
|
-
user_id?: (string[] & string[] & { [
|
|
18410
|
+
user_id?: (string[] & string[] & { [K_641 in Exclude<keyof I_1["list_data_socket"]["hashtag_dm_req"]["user_id"], keyof string[]>]: never; }) | undefined;
|
|
18375
18411
|
limit?: number | undefined;
|
|
18376
|
-
} & { [
|
|
18412
|
+
} & { [K_642 in Exclude<keyof I_1["list_data_socket"]["hashtag_dm_req"], keyof HashtagDmListRequest>]: never; }) | undefined;
|
|
18377
18413
|
hashtag_dm_list?: ({
|
|
18378
18414
|
hashtag_dm?: {
|
|
18379
18415
|
channel_id?: string | undefined;
|
|
@@ -18413,7 +18449,7 @@ export declare const Envelope: {
|
|
|
18413
18449
|
type?: number | undefined;
|
|
18414
18450
|
channel_private?: number | undefined;
|
|
18415
18451
|
parent_id?: string | undefined;
|
|
18416
|
-
} & { [
|
|
18452
|
+
} & { [K_643 in Exclude<keyof I_1["list_data_socket"]["hashtag_dm_list"]["hashtag_dm"][number], keyof import("../api/api").HashtagDm>]: never; })[] & { [K_644 in Exclude<keyof I_1["list_data_socket"]["hashtag_dm_list"]["hashtag_dm"], keyof {
|
|
18417
18453
|
channel_id?: string | undefined;
|
|
18418
18454
|
channel_label?: string | undefined;
|
|
18419
18455
|
clan_id?: string | undefined;
|
|
@@ -18423,7 +18459,7 @@ export declare const Envelope: {
|
|
|
18423
18459
|
channel_private?: number | undefined;
|
|
18424
18460
|
parent_id?: string | undefined;
|
|
18425
18461
|
}[]>]: never; }) | undefined;
|
|
18426
|
-
} & { [
|
|
18462
|
+
} & { [K_645 in Exclude<keyof I_1["list_data_socket"]["hashtag_dm_list"], "hashtag_dm">]: never; }) | undefined;
|
|
18427
18463
|
channel_setting_req?: ({
|
|
18428
18464
|
clan_id?: string | undefined;
|
|
18429
18465
|
parent_id?: string | undefined;
|
|
@@ -18446,7 +18482,7 @@ export declare const Envelope: {
|
|
|
18446
18482
|
limit?: number | undefined;
|
|
18447
18483
|
page?: number | undefined;
|
|
18448
18484
|
channel_label?: string | undefined;
|
|
18449
|
-
} & { [
|
|
18485
|
+
} & { [K_646 in Exclude<keyof I_1["list_data_socket"]["channel_setting_req"], keyof ChannelSettingListRequest>]: never; }) | undefined;
|
|
18450
18486
|
channel_setting_list?: ({
|
|
18451
18487
|
clan_id?: string | undefined;
|
|
18452
18488
|
channel_count?: number | undefined;
|
|
@@ -18535,7 +18571,7 @@ export declare const Envelope: {
|
|
|
18535
18571
|
channel_private?: number | undefined;
|
|
18536
18572
|
channel_type?: number | undefined;
|
|
18537
18573
|
active?: number | undefined;
|
|
18538
|
-
user_ids?: (string[] & string[] & { [
|
|
18574
|
+
user_ids?: (string[] & string[] & { [K_647 in Exclude<keyof I_1["list_data_socket"]["channel_setting_list"]["channel_setting_list"][number]["user_ids"], keyof string[]>]: never; }) | undefined;
|
|
18539
18575
|
message_count?: number | undefined;
|
|
18540
18576
|
last_sent_message?: ({
|
|
18541
18577
|
id?: string | undefined;
|
|
@@ -18556,9 +18592,9 @@ export declare const Envelope: {
|
|
|
18556
18592
|
reference?: string | undefined;
|
|
18557
18593
|
mention?: string | undefined;
|
|
18558
18594
|
reaction?: string | undefined;
|
|
18559
|
-
repliers?: (string[] & string[] & { [
|
|
18560
|
-
} & { [
|
|
18561
|
-
} & { [
|
|
18595
|
+
repliers?: (string[] & string[] & { [K_648 in Exclude<keyof I_1["list_data_socket"]["channel_setting_list"]["channel_setting_list"][number]["last_sent_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
18596
|
+
} & { [K_649 in Exclude<keyof I_1["list_data_socket"]["channel_setting_list"]["channel_setting_list"][number]["last_sent_message"], keyof ChannelMessageHeader>]: never; }) | undefined;
|
|
18597
|
+
} & { [K_650 in Exclude<keyof I_1["list_data_socket"]["channel_setting_list"]["channel_setting_list"][number], keyof import("../api/api").ChannelSettingItem>]: never; })[] & { [K_651 in Exclude<keyof I_1["list_data_socket"]["channel_setting_list"]["channel_setting_list"], keyof {
|
|
18562
18598
|
id?: string | undefined;
|
|
18563
18599
|
creator_id?: string | undefined;
|
|
18564
18600
|
parent_id?: string | undefined;
|
|
@@ -18582,17 +18618,17 @@ export declare const Envelope: {
|
|
|
18582
18618
|
repliers?: string[] | undefined;
|
|
18583
18619
|
} | undefined;
|
|
18584
18620
|
}[]>]: never; }) | undefined;
|
|
18585
|
-
} & { [
|
|
18621
|
+
} & { [K_652 in Exclude<keyof I_1["list_data_socket"]["channel_setting_list"], keyof ChannelSettingListResponse>]: never; }) | undefined;
|
|
18586
18622
|
favorite_channel_req?: ({
|
|
18587
18623
|
clan_id?: string | undefined;
|
|
18588
18624
|
} & {
|
|
18589
18625
|
clan_id?: string | undefined;
|
|
18590
|
-
} & { [
|
|
18626
|
+
} & { [K_653 in Exclude<keyof I_1["list_data_socket"]["favorite_channel_req"], "clan_id">]: never; }) | undefined;
|
|
18591
18627
|
favorite_channel_list?: ({
|
|
18592
18628
|
channel_ids?: string[] | undefined;
|
|
18593
18629
|
} & {
|
|
18594
|
-
channel_ids?: (string[] & string[] & { [
|
|
18595
|
-
} & { [
|
|
18630
|
+
channel_ids?: (string[] & string[] & { [K_654 in Exclude<keyof I_1["list_data_socket"]["favorite_channel_list"]["channel_ids"], keyof string[]>]: never; }) | undefined;
|
|
18631
|
+
} & { [K_655 in Exclude<keyof I_1["list_data_socket"]["favorite_channel_list"], "channel_ids">]: never; }) | undefined;
|
|
18596
18632
|
search_thread_req?: ({
|
|
18597
18633
|
clan_id?: string | undefined;
|
|
18598
18634
|
channel_id?: string | undefined;
|
|
@@ -18601,12 +18637,12 @@ export declare const Envelope: {
|
|
|
18601
18637
|
clan_id?: string | undefined;
|
|
18602
18638
|
channel_id?: string | undefined;
|
|
18603
18639
|
label?: string | undefined;
|
|
18604
|
-
} & { [
|
|
18640
|
+
} & { [K_656 in Exclude<keyof I_1["list_data_socket"]["search_thread_req"], keyof SearchThreadRequest>]: never; }) | undefined;
|
|
18605
18641
|
notification_channel?: ({
|
|
18606
18642
|
channel_id?: string | undefined;
|
|
18607
18643
|
} & {
|
|
18608
18644
|
channel_id?: string | undefined;
|
|
18609
|
-
} & { [
|
|
18645
|
+
} & { [K_657 in Exclude<keyof I_1["list_data_socket"]["notification_channel"], "channel_id">]: never; }) | undefined;
|
|
18610
18646
|
notificaion_user_channel?: ({
|
|
18611
18647
|
id?: string | undefined;
|
|
18612
18648
|
notification_setting_type?: number | undefined;
|
|
@@ -18619,24 +18655,24 @@ export declare const Envelope: {
|
|
|
18619
18655
|
time_mute?: Date | undefined;
|
|
18620
18656
|
active?: number | undefined;
|
|
18621
18657
|
channel_id?: string | undefined;
|
|
18622
|
-
} & { [
|
|
18658
|
+
} & { [K_658 in Exclude<keyof I_1["list_data_socket"]["notificaion_user_channel"], keyof NotificationUserChannel>]: never; }) | undefined;
|
|
18623
18659
|
notification_category?: ({
|
|
18624
18660
|
category_id?: string | undefined;
|
|
18625
18661
|
} & {
|
|
18626
18662
|
category_id?: string | undefined;
|
|
18627
|
-
} & { [
|
|
18663
|
+
} & { [K_659 in Exclude<keyof I_1["list_data_socket"]["notification_category"], "category_id">]: never; }) | undefined;
|
|
18628
18664
|
notification_clan?: ({
|
|
18629
18665
|
clan_id?: string | undefined;
|
|
18630
18666
|
} & {
|
|
18631
18667
|
clan_id?: string | undefined;
|
|
18632
|
-
} & { [
|
|
18668
|
+
} & { [K_660 in Exclude<keyof I_1["list_data_socket"]["notification_clan"], "clan_id">]: never; }) | undefined;
|
|
18633
18669
|
notification_setting?: ({
|
|
18634
18670
|
id?: string | undefined;
|
|
18635
18671
|
notification_setting_type?: number | undefined;
|
|
18636
18672
|
} & {
|
|
18637
18673
|
id?: string | undefined;
|
|
18638
18674
|
notification_setting_type?: number | undefined;
|
|
18639
|
-
} & { [
|
|
18675
|
+
} & { [K_661 in Exclude<keyof I_1["list_data_socket"]["notification_setting"], keyof NotificationSetting>]: never; }) | undefined;
|
|
18640
18676
|
notification_message?: ({
|
|
18641
18677
|
id?: string | undefined;
|
|
18642
18678
|
user_id?: string | undefined;
|
|
@@ -18645,7 +18681,7 @@ export declare const Envelope: {
|
|
|
18645
18681
|
id?: string | undefined;
|
|
18646
18682
|
user_id?: string | undefined;
|
|
18647
18683
|
channel_id?: string | undefined;
|
|
18648
|
-
} & { [
|
|
18684
|
+
} & { [K_662 in Exclude<keyof I_1["list_data_socket"]["notification_message"], keyof NotifiReactMessage>]: never; }) | undefined;
|
|
18649
18685
|
noti_channel_cat_setting_list?: ({
|
|
18650
18686
|
notification_channel_category_settings_list?: {
|
|
18651
18687
|
id?: string | undefined;
|
|
@@ -18673,14 +18709,14 @@ export declare const Envelope: {
|
|
|
18673
18709
|
notification_setting_type?: number | undefined;
|
|
18674
18710
|
channel_category_title?: string | undefined;
|
|
18675
18711
|
action?: number | undefined;
|
|
18676
|
-
} & { [
|
|
18712
|
+
} & { [K_663 in Exclude<keyof I_1["list_data_socket"]["noti_channel_cat_setting_list"]["notification_channel_category_settings_list"][number], keyof import("../api/api").NotificationChannelCategorySetting>]: never; })[] & { [K_664 in Exclude<keyof I_1["list_data_socket"]["noti_channel_cat_setting_list"]["notification_channel_category_settings_list"], keyof {
|
|
18677
18713
|
id?: string | undefined;
|
|
18678
18714
|
channel_category_label?: string | undefined;
|
|
18679
18715
|
notification_setting_type?: number | undefined;
|
|
18680
18716
|
channel_category_title?: string | undefined;
|
|
18681
18717
|
action?: number | undefined;
|
|
18682
18718
|
}[]>]: never; }) | undefined;
|
|
18683
|
-
} & { [
|
|
18719
|
+
} & { [K_665 in Exclude<keyof I_1["list_data_socket"]["noti_channel_cat_setting_list"], "notification_channel_category_settings_list">]: never; }) | undefined;
|
|
18684
18720
|
list_notification_req?: ({
|
|
18685
18721
|
limit?: number | undefined;
|
|
18686
18722
|
clan_id?: string | undefined;
|
|
@@ -18693,7 +18729,7 @@ export declare const Envelope: {
|
|
|
18693
18729
|
notification_id?: string | undefined;
|
|
18694
18730
|
category?: number | undefined;
|
|
18695
18731
|
direction?: number | undefined;
|
|
18696
|
-
} & { [
|
|
18732
|
+
} & { [K_666 in Exclude<keyof I_1["list_data_socket"]["list_notification_req"], keyof ListNotificationsRequest>]: never; }) | undefined;
|
|
18697
18733
|
notification_list?: ({
|
|
18698
18734
|
notifications?: {
|
|
18699
18735
|
id?: string | undefined;
|
|
@@ -18973,8 +19009,8 @@ export declare const Envelope: {
|
|
|
18973
19009
|
creator_id?: string | undefined;
|
|
18974
19010
|
channel_label?: string | undefined;
|
|
18975
19011
|
channel_private?: number | undefined;
|
|
18976
|
-
avatars?: (string[] & string[] & { [
|
|
18977
|
-
user_ids?: (string[] & string[] & { [
|
|
19012
|
+
avatars?: (string[] & string[] & { [K_667 in Exclude<keyof I_1["list_data_socket"]["notification_list"]["notifications"][number]["channel"]["avatars"], keyof string[]>]: never; }) | undefined;
|
|
19013
|
+
user_ids?: (string[] & string[] & { [K_668 in Exclude<keyof I_1["list_data_socket"]["notification_list"]["notifications"][number]["channel"]["user_ids"], keyof string[]>]: never; }) | undefined;
|
|
18978
19014
|
last_sent_message?: ({
|
|
18979
19015
|
id?: string | undefined;
|
|
18980
19016
|
timestamp_seconds?: number | undefined;
|
|
@@ -18994,8 +19030,8 @@ export declare const Envelope: {
|
|
|
18994
19030
|
reference?: string | undefined;
|
|
18995
19031
|
mention?: string | undefined;
|
|
18996
19032
|
reaction?: string | undefined;
|
|
18997
|
-
repliers?: (string[] & string[] & { [
|
|
18998
|
-
} & { [
|
|
19033
|
+
repliers?: (string[] & string[] & { [K_669 in Exclude<keyof I_1["list_data_socket"]["notification_list"]["notifications"][number]["channel"]["last_sent_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
19034
|
+
} & { [K_670 in Exclude<keyof I_1["list_data_socket"]["notification_list"]["notifications"][number]["channel"]["last_sent_message"], keyof ChannelMessageHeader>]: never; }) | undefined;
|
|
18999
19035
|
last_seen_message?: ({
|
|
19000
19036
|
id?: string | undefined;
|
|
19001
19037
|
timestamp_seconds?: number | undefined;
|
|
@@ -19015,18 +19051,18 @@ export declare const Envelope: {
|
|
|
19015
19051
|
reference?: string | undefined;
|
|
19016
19052
|
mention?: string | undefined;
|
|
19017
19053
|
reaction?: string | undefined;
|
|
19018
|
-
repliers?: (string[] & string[] & { [
|
|
19019
|
-
} & { [
|
|
19020
|
-
onlines?: (boolean[] & boolean[] & { [
|
|
19054
|
+
repliers?: (string[] & string[] & { [K_671 in Exclude<keyof I_1["list_data_socket"]["notification_list"]["notifications"][number]["channel"]["last_seen_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
19055
|
+
} & { [K_672 in Exclude<keyof I_1["list_data_socket"]["notification_list"]["notifications"][number]["channel"]["last_seen_message"], keyof ChannelMessageHeader>]: never; }) | undefined;
|
|
19056
|
+
onlines?: (boolean[] & boolean[] & { [K_673 in Exclude<keyof I_1["list_data_socket"]["notification_list"]["notifications"][number]["channel"]["onlines"], keyof boolean[]>]: never; }) | undefined;
|
|
19021
19057
|
meeting_code?: string | undefined;
|
|
19022
19058
|
count_mess_unread?: number | undefined;
|
|
19023
19059
|
active?: number | undefined;
|
|
19024
19060
|
last_pin_message?: string | undefined;
|
|
19025
|
-
usernames?: (string[] & string[] & { [
|
|
19061
|
+
usernames?: (string[] & string[] & { [K_674 in Exclude<keyof I_1["list_data_socket"]["notification_list"]["notifications"][number]["channel"]["usernames"], keyof string[]>]: never; }) | undefined;
|
|
19026
19062
|
creator_name?: string | undefined;
|
|
19027
19063
|
create_time_seconds?: number | undefined;
|
|
19028
19064
|
update_time_seconds?: number | undefined;
|
|
19029
|
-
display_names?: (string[] & string[] & { [
|
|
19065
|
+
display_names?: (string[] & string[] & { [K_675 in Exclude<keyof I_1["list_data_socket"]["notification_list"]["notifications"][number]["channel"]["display_names"], keyof string[]>]: never; }) | undefined;
|
|
19030
19066
|
channel_avatar?: string | undefined;
|
|
19031
19067
|
clan_name?: string | undefined;
|
|
19032
19068
|
app_id?: string | undefined;
|
|
@@ -19035,10 +19071,10 @@ export declare const Envelope: {
|
|
|
19035
19071
|
topic?: string | undefined;
|
|
19036
19072
|
e2ee?: number | undefined;
|
|
19037
19073
|
member_count?: number | undefined;
|
|
19038
|
-
} & { [
|
|
19074
|
+
} & { [K_676 in Exclude<keyof I_1["list_data_socket"]["notification_list"]["notifications"][number]["channel"], keyof ChannelDescription1>]: never; }) | undefined;
|
|
19039
19075
|
topic_id?: string | undefined;
|
|
19040
19076
|
category?: number | undefined;
|
|
19041
|
-
} & { [
|
|
19077
|
+
} & { [K_677 in Exclude<keyof I_1["list_data_socket"]["notification_list"]["notifications"][number], keyof Notification>]: never; })[] & { [K_678 in Exclude<keyof I_1["list_data_socket"]["notification_list"]["notifications"], keyof {
|
|
19042
19078
|
id?: string | undefined;
|
|
19043
19079
|
subject?: string | undefined;
|
|
19044
19080
|
content?: string | undefined;
|
|
@@ -19107,7 +19143,7 @@ export declare const Envelope: {
|
|
|
19107
19143
|
category?: number | undefined;
|
|
19108
19144
|
}[]>]: never; }) | undefined;
|
|
19109
19145
|
cacheable_cursor?: string | undefined;
|
|
19110
|
-
} & { [
|
|
19146
|
+
} & { [K_679 in Exclude<keyof I_1["list_data_socket"]["notification_list"], keyof NotificationList>]: never; }) | undefined;
|
|
19111
19147
|
sticker_list?: ({
|
|
19112
19148
|
stickers?: {
|
|
19113
19149
|
id?: string | undefined;
|
|
@@ -19159,7 +19195,7 @@ export declare const Envelope: {
|
|
|
19159
19195
|
clan_name?: string | undefined;
|
|
19160
19196
|
media_type?: number | undefined;
|
|
19161
19197
|
is_for_sale?: boolean | undefined;
|
|
19162
|
-
} & { [
|
|
19198
|
+
} & { [K_680 in Exclude<keyof I_1["list_data_socket"]["sticker_list"]["stickers"][number], keyof import("../api/api").ClanSticker>]: never; })[] & { [K_681 in Exclude<keyof I_1["list_data_socket"]["sticker_list"]["stickers"], keyof {
|
|
19163
19199
|
id?: string | undefined;
|
|
19164
19200
|
source?: string | undefined;
|
|
19165
19201
|
shortname?: string | undefined;
|
|
@@ -19172,7 +19208,7 @@ export declare const Envelope: {
|
|
|
19172
19208
|
media_type?: number | undefined;
|
|
19173
19209
|
is_for_sale?: boolean | undefined;
|
|
19174
19210
|
}[]>]: never; }) | undefined;
|
|
19175
|
-
} & { [
|
|
19211
|
+
} & { [K_682 in Exclude<keyof I_1["list_data_socket"]["sticker_list"], "stickers">]: never; }) | undefined;
|
|
19176
19212
|
emoji_recent_list?: ({
|
|
19177
19213
|
emoji_recents?: {
|
|
19178
19214
|
emoji_recents_id?: string | undefined;
|
|
@@ -19192,17 +19228,17 @@ export declare const Envelope: {
|
|
|
19192
19228
|
emoji_recents_id?: string | undefined;
|
|
19193
19229
|
emoji_id?: string | undefined;
|
|
19194
19230
|
update_time?: Date | undefined;
|
|
19195
|
-
} & { [
|
|
19231
|
+
} & { [K_683 in Exclude<keyof I_1["list_data_socket"]["emoji_recent_list"]["emoji_recents"][number], keyof import("../api/api").EmojiRecent>]: never; })[] & { [K_684 in Exclude<keyof I_1["list_data_socket"]["emoji_recent_list"]["emoji_recents"], keyof {
|
|
19196
19232
|
emoji_recents_id?: string | undefined;
|
|
19197
19233
|
emoji_id?: string | undefined;
|
|
19198
19234
|
update_time?: Date | undefined;
|
|
19199
19235
|
}[]>]: never; }) | undefined;
|
|
19200
|
-
} & { [
|
|
19236
|
+
} & { [K_685 in Exclude<keyof I_1["list_data_socket"]["emoji_recent_list"], "emoji_recents">]: never; }) | undefined;
|
|
19201
19237
|
clan_webhook_req?: ({
|
|
19202
19238
|
clan_id?: string | undefined;
|
|
19203
19239
|
} & {
|
|
19204
19240
|
clan_id?: string | undefined;
|
|
19205
|
-
} & { [
|
|
19241
|
+
} & { [K_686 in Exclude<keyof I_1["list_data_socket"]["clan_webhook_req"], "clan_id">]: never; }) | undefined;
|
|
19206
19242
|
clan_webhook_list?: ({
|
|
19207
19243
|
list_clan_webhooks?: {
|
|
19208
19244
|
id?: string | undefined;
|
|
@@ -19246,7 +19282,7 @@ export declare const Envelope: {
|
|
|
19246
19282
|
avatar?: string | undefined;
|
|
19247
19283
|
create_time?: string | undefined;
|
|
19248
19284
|
update_time?: string | undefined;
|
|
19249
|
-
} & { [
|
|
19285
|
+
} & { [K_687 in Exclude<keyof I_1["list_data_socket"]["clan_webhook_list"]["list_clan_webhooks"][number], keyof import("../api/api").ClanWebhook>]: never; })[] & { [K_688 in Exclude<keyof I_1["list_data_socket"]["clan_webhook_list"]["list_clan_webhooks"], keyof {
|
|
19250
19286
|
id?: string | undefined;
|
|
19251
19287
|
webhook_name?: string | undefined;
|
|
19252
19288
|
clan_id?: string | undefined;
|
|
@@ -19257,14 +19293,14 @@ export declare const Envelope: {
|
|
|
19257
19293
|
create_time?: string | undefined;
|
|
19258
19294
|
update_time?: string | undefined;
|
|
19259
19295
|
}[]>]: never; }) | undefined;
|
|
19260
|
-
} & { [
|
|
19296
|
+
} & { [K_689 in Exclude<keyof I_1["list_data_socket"]["clan_webhook_list"], "list_clan_webhooks">]: never; }) | undefined;
|
|
19261
19297
|
webhook_list_req?: ({
|
|
19262
19298
|
channel_id?: string | undefined;
|
|
19263
19299
|
clan_id?: string | undefined;
|
|
19264
19300
|
} & {
|
|
19265
19301
|
channel_id?: string | undefined;
|
|
19266
19302
|
clan_id?: string | undefined;
|
|
19267
|
-
} & { [
|
|
19303
|
+
} & { [K_690 in Exclude<keyof I_1["list_data_socket"]["webhook_list_req"], keyof WebhookListRequest>]: never; }) | undefined;
|
|
19268
19304
|
webhook_list?: ({
|
|
19269
19305
|
webhooks?: {
|
|
19270
19306
|
id?: string | undefined;
|
|
@@ -19316,7 +19352,7 @@ export declare const Envelope: {
|
|
|
19316
19352
|
avatar?: string | undefined;
|
|
19317
19353
|
status?: number | undefined;
|
|
19318
19354
|
clan_id?: string | undefined;
|
|
19319
|
-
} & { [
|
|
19355
|
+
} & { [K_691 in Exclude<keyof I_1["list_data_socket"]["webhook_list"]["webhooks"][number], keyof Webhook>]: never; })[] & { [K_692 in Exclude<keyof I_1["list_data_socket"]["webhook_list"]["webhooks"], keyof {
|
|
19320
19356
|
id?: string | undefined;
|
|
19321
19357
|
webhook_name?: string | undefined;
|
|
19322
19358
|
channel_id?: string | undefined;
|
|
@@ -19329,12 +19365,12 @@ export declare const Envelope: {
|
|
|
19329
19365
|
status?: number | undefined;
|
|
19330
19366
|
clan_id?: string | undefined;
|
|
19331
19367
|
}[]>]: never; }) | undefined;
|
|
19332
|
-
} & { [
|
|
19368
|
+
} & { [K_693 in Exclude<keyof I_1["list_data_socket"]["webhook_list"], "webhooks">]: never; }) | undefined;
|
|
19333
19369
|
permission_list_req?: ({
|
|
19334
19370
|
role_id?: string | undefined;
|
|
19335
19371
|
} & {
|
|
19336
19372
|
role_id?: string | undefined;
|
|
19337
|
-
} & { [
|
|
19373
|
+
} & { [K_694 in Exclude<keyof I_1["list_data_socket"]["permission_list_req"], "role_id">]: never; }) | undefined;
|
|
19338
19374
|
permission_list?: ({
|
|
19339
19375
|
permissions?: {
|
|
19340
19376
|
id?: string | undefined;
|
|
@@ -19371,7 +19407,7 @@ export declare const Envelope: {
|
|
|
19371
19407
|
active?: number | undefined;
|
|
19372
19408
|
scope?: number | undefined;
|
|
19373
19409
|
level?: number | undefined;
|
|
19374
|
-
} & { [
|
|
19410
|
+
} & { [K_695 in Exclude<keyof I_1["list_data_socket"]["permission_list"]["permissions"][number], keyof import("../api/api").Permission>]: never; })[] & { [K_696 in Exclude<keyof I_1["list_data_socket"]["permission_list"]["permissions"], keyof {
|
|
19375
19411
|
id?: string | undefined;
|
|
19376
19412
|
title?: string | undefined;
|
|
19377
19413
|
slug?: string | undefined;
|
|
@@ -19381,7 +19417,7 @@ export declare const Envelope: {
|
|
|
19381
19417
|
level?: number | undefined;
|
|
19382
19418
|
}[]>]: never; }) | undefined;
|
|
19383
19419
|
max_level_permission?: number | undefined;
|
|
19384
|
-
} & { [
|
|
19420
|
+
} & { [K_697 in Exclude<keyof I_1["list_data_socket"]["permission_list"], keyof PermissionList>]: never; }) | undefined;
|
|
19385
19421
|
role_user_req?: ({
|
|
19386
19422
|
role_id?: string | undefined;
|
|
19387
19423
|
limit?: number | undefined;
|
|
@@ -19390,7 +19426,7 @@ export declare const Envelope: {
|
|
|
19390
19426
|
role_id?: string | undefined;
|
|
19391
19427
|
limit?: number | undefined;
|
|
19392
19428
|
cursor?: string | undefined;
|
|
19393
|
-
} & { [
|
|
19429
|
+
} & { [K_698 in Exclude<keyof I_1["list_data_socket"]["role_user_req"], keyof ListRoleUsersRequest>]: never; }) | undefined;
|
|
19394
19430
|
role_user_list?: ({
|
|
19395
19431
|
role_users?: {
|
|
19396
19432
|
id?: string | undefined;
|
|
@@ -19427,7 +19463,7 @@ export declare const Envelope: {
|
|
|
19427
19463
|
lang_tag?: string | undefined;
|
|
19428
19464
|
location?: string | undefined;
|
|
19429
19465
|
online?: boolean | undefined;
|
|
19430
|
-
} & { [
|
|
19466
|
+
} & { [K_699 in Exclude<keyof I_1["list_data_socket"]["role_user_list"]["role_users"][number], keyof import("../api/api").RoleUserList_RoleUser>]: never; })[] & { [K_700 in Exclude<keyof I_1["list_data_socket"]["role_user_list"]["role_users"], keyof {
|
|
19431
19467
|
id?: string | undefined;
|
|
19432
19468
|
username?: string | undefined;
|
|
19433
19469
|
display_name?: string | undefined;
|
|
@@ -19437,14 +19473,14 @@ export declare const Envelope: {
|
|
|
19437
19473
|
online?: boolean | undefined;
|
|
19438
19474
|
}[]>]: never; }) | undefined;
|
|
19439
19475
|
cursor?: string | undefined;
|
|
19440
|
-
} & { [
|
|
19476
|
+
} & { [K_701 in Exclude<keyof I_1["list_data_socket"]["role_user_list"], keyof RoleUserList>]: never; }) | undefined;
|
|
19441
19477
|
permission_user_req?: ({
|
|
19442
19478
|
clan_id?: string | undefined;
|
|
19443
19479
|
channel_id?: string | undefined;
|
|
19444
19480
|
} & {
|
|
19445
19481
|
clan_id?: string | undefined;
|
|
19446
19482
|
channel_id?: string | undefined;
|
|
19447
|
-
} & { [
|
|
19483
|
+
} & { [K_702 in Exclude<keyof I_1["list_data_socket"]["permission_user_req"], keyof ListPermissionOfUsersRequest>]: never; }) | undefined;
|
|
19448
19484
|
role_list?: ({
|
|
19449
19485
|
roles?: {
|
|
19450
19486
|
id?: string | undefined;
|
|
@@ -19619,7 +19655,7 @@ export declare const Envelope: {
|
|
|
19619
19655
|
lang_tag?: string | undefined;
|
|
19620
19656
|
location?: string | undefined;
|
|
19621
19657
|
online?: boolean | undefined;
|
|
19622
|
-
} & { [
|
|
19658
|
+
} & { [K_703 in Exclude<keyof I_1["list_data_socket"]["role_list"]["roles"][number]["role_user_list"]["role_users"][number], keyof import("../api/api").RoleUserList_RoleUser>]: never; })[] & { [K_704 in Exclude<keyof I_1["list_data_socket"]["role_list"]["roles"][number]["role_user_list"]["role_users"], keyof {
|
|
19623
19659
|
id?: string | undefined;
|
|
19624
19660
|
username?: string | undefined;
|
|
19625
19661
|
display_name?: string | undefined;
|
|
@@ -19629,7 +19665,7 @@ export declare const Envelope: {
|
|
|
19629
19665
|
online?: boolean | undefined;
|
|
19630
19666
|
}[]>]: never; }) | undefined;
|
|
19631
19667
|
cursor?: string | undefined;
|
|
19632
|
-
} & { [
|
|
19668
|
+
} & { [K_705 in Exclude<keyof I_1["list_data_socket"]["role_list"]["roles"][number]["role_user_list"], keyof RoleUserList>]: never; }) | undefined;
|
|
19633
19669
|
permission_list?: ({
|
|
19634
19670
|
permissions?: {
|
|
19635
19671
|
id?: string | undefined;
|
|
@@ -19666,7 +19702,7 @@ export declare const Envelope: {
|
|
|
19666
19702
|
active?: number | undefined;
|
|
19667
19703
|
scope?: number | undefined;
|
|
19668
19704
|
level?: number | undefined;
|
|
19669
|
-
} & { [
|
|
19705
|
+
} & { [K_706 in Exclude<keyof I_1["list_data_socket"]["role_list"]["roles"][number]["permission_list"]["permissions"][number], keyof import("../api/api").Permission>]: never; })[] & { [K_707 in Exclude<keyof I_1["list_data_socket"]["role_list"]["roles"][number]["permission_list"]["permissions"], keyof {
|
|
19670
19706
|
id?: string | undefined;
|
|
19671
19707
|
title?: string | undefined;
|
|
19672
19708
|
slug?: string | undefined;
|
|
@@ -19676,12 +19712,12 @@ export declare const Envelope: {
|
|
|
19676
19712
|
level?: number | undefined;
|
|
19677
19713
|
}[]>]: never; }) | undefined;
|
|
19678
19714
|
max_level_permission?: number | undefined;
|
|
19679
|
-
} & { [
|
|
19715
|
+
} & { [K_708 in Exclude<keyof I_1["list_data_socket"]["role_list"]["roles"][number]["permission_list"], keyof PermissionList>]: never; }) | undefined;
|
|
19680
19716
|
role_channel_active?: number | undefined;
|
|
19681
|
-
channel_ids?: (string[] & string[] & { [
|
|
19717
|
+
channel_ids?: (string[] & string[] & { [K_709 in Exclude<keyof I_1["list_data_socket"]["role_list"]["roles"][number]["channel_ids"], keyof string[]>]: never; }) | undefined;
|
|
19682
19718
|
max_level_permission?: number | undefined;
|
|
19683
19719
|
order_role?: number | undefined;
|
|
19684
|
-
} & { [
|
|
19720
|
+
} & { [K_710 in Exclude<keyof I_1["list_data_socket"]["role_list"]["roles"][number], keyof Role>]: never; })[] & { [K_711 in Exclude<keyof I_1["list_data_socket"]["role_list"]["roles"], keyof {
|
|
19685
19721
|
id?: string | undefined;
|
|
19686
19722
|
title?: string | undefined;
|
|
19687
19723
|
color?: string | undefined;
|
|
@@ -19725,7 +19761,7 @@ export declare const Envelope: {
|
|
|
19725
19761
|
next_cursor?: string | undefined;
|
|
19726
19762
|
prev_cursor?: string | undefined;
|
|
19727
19763
|
cacheable_cursor?: string | undefined;
|
|
19728
|
-
} & { [
|
|
19764
|
+
} & { [K_712 in Exclude<keyof I_1["list_data_socket"]["role_list"], keyof RoleList>]: never; }) | undefined;
|
|
19729
19765
|
role_list_event_req?: ({
|
|
19730
19766
|
clan_id?: string | undefined;
|
|
19731
19767
|
limit?: number | undefined;
|
|
@@ -19736,7 +19772,7 @@ export declare const Envelope: {
|
|
|
19736
19772
|
limit?: number | undefined;
|
|
19737
19773
|
state?: number | undefined;
|
|
19738
19774
|
cursor?: string | undefined;
|
|
19739
|
-
} & { [
|
|
19775
|
+
} & { [K_713 in Exclude<keyof I_1["list_data_socket"]["role_list_event_req"], keyof RoleListEventRequest>]: never; }) | undefined;
|
|
19740
19776
|
role_event_list?: ({
|
|
19741
19777
|
limit?: number | undefined;
|
|
19742
19778
|
state?: number | undefined;
|
|
@@ -19967,7 +20003,7 @@ export declare const Envelope: {
|
|
|
19967
20003
|
lang_tag?: string | undefined;
|
|
19968
20004
|
location?: string | undefined;
|
|
19969
20005
|
online?: boolean | undefined;
|
|
19970
|
-
} & { [
|
|
20006
|
+
} & { [K_714 in Exclude<keyof I_1["list_data_socket"]["role_event_list"]["roles"]["roles"][number]["role_user_list"]["role_users"][number], keyof import("../api/api").RoleUserList_RoleUser>]: never; })[] & { [K_715 in Exclude<keyof I_1["list_data_socket"]["role_event_list"]["roles"]["roles"][number]["role_user_list"]["role_users"], keyof {
|
|
19971
20007
|
id?: string | undefined;
|
|
19972
20008
|
username?: string | undefined;
|
|
19973
20009
|
display_name?: string | undefined;
|
|
@@ -19977,7 +20013,7 @@ export declare const Envelope: {
|
|
|
19977
20013
|
online?: boolean | undefined;
|
|
19978
20014
|
}[]>]: never; }) | undefined;
|
|
19979
20015
|
cursor?: string | undefined;
|
|
19980
|
-
} & { [
|
|
20016
|
+
} & { [K_716 in Exclude<keyof I_1["list_data_socket"]["role_event_list"]["roles"]["roles"][number]["role_user_list"], keyof RoleUserList>]: never; }) | undefined;
|
|
19981
20017
|
permission_list?: ({
|
|
19982
20018
|
permissions?: {
|
|
19983
20019
|
id?: string | undefined;
|
|
@@ -20014,7 +20050,7 @@ export declare const Envelope: {
|
|
|
20014
20050
|
active?: number | undefined;
|
|
20015
20051
|
scope?: number | undefined;
|
|
20016
20052
|
level?: number | undefined;
|
|
20017
|
-
} & { [
|
|
20053
|
+
} & { [K_717 in Exclude<keyof I_1["list_data_socket"]["role_event_list"]["roles"]["roles"][number]["permission_list"]["permissions"][number], keyof import("../api/api").Permission>]: never; })[] & { [K_718 in Exclude<keyof I_1["list_data_socket"]["role_event_list"]["roles"]["roles"][number]["permission_list"]["permissions"], keyof {
|
|
20018
20054
|
id?: string | undefined;
|
|
20019
20055
|
title?: string | undefined;
|
|
20020
20056
|
slug?: string | undefined;
|
|
@@ -20024,12 +20060,12 @@ export declare const Envelope: {
|
|
|
20024
20060
|
level?: number | undefined;
|
|
20025
20061
|
}[]>]: never; }) | undefined;
|
|
20026
20062
|
max_level_permission?: number | undefined;
|
|
20027
|
-
} & { [
|
|
20063
|
+
} & { [K_719 in Exclude<keyof I_1["list_data_socket"]["role_event_list"]["roles"]["roles"][number]["permission_list"], keyof PermissionList>]: never; }) | undefined;
|
|
20028
20064
|
role_channel_active?: number | undefined;
|
|
20029
|
-
channel_ids?: (string[] & string[] & { [
|
|
20065
|
+
channel_ids?: (string[] & string[] & { [K_720 in Exclude<keyof I_1["list_data_socket"]["role_event_list"]["roles"]["roles"][number]["channel_ids"], keyof string[]>]: never; }) | undefined;
|
|
20030
20066
|
max_level_permission?: number | undefined;
|
|
20031
20067
|
order_role?: number | undefined;
|
|
20032
|
-
} & { [
|
|
20068
|
+
} & { [K_721 in Exclude<keyof I_1["list_data_socket"]["role_event_list"]["roles"]["roles"][number], keyof Role>]: never; })[] & { [K_722 in Exclude<keyof I_1["list_data_socket"]["role_event_list"]["roles"]["roles"], keyof {
|
|
20033
20069
|
id?: string | undefined;
|
|
20034
20070
|
title?: string | undefined;
|
|
20035
20071
|
color?: string | undefined;
|
|
@@ -20073,15 +20109,15 @@ export declare const Envelope: {
|
|
|
20073
20109
|
next_cursor?: string | undefined;
|
|
20074
20110
|
prev_cursor?: string | undefined;
|
|
20075
20111
|
cacheable_cursor?: string | undefined;
|
|
20076
|
-
} & { [
|
|
20077
|
-
} & { [
|
|
20112
|
+
} & { [K_723 in Exclude<keyof I_1["list_data_socket"]["role_event_list"]["roles"], keyof RoleList>]: never; }) | undefined;
|
|
20113
|
+
} & { [K_724 in Exclude<keyof I_1["list_data_socket"]["role_event_list"], keyof RoleListEventResponse>]: never; }) | undefined;
|
|
20078
20114
|
user_permission_req?: ({
|
|
20079
20115
|
clan_id?: string | undefined;
|
|
20080
20116
|
channel_id?: string | undefined;
|
|
20081
20117
|
} & {
|
|
20082
20118
|
clan_id?: string | undefined;
|
|
20083
20119
|
channel_id?: string | undefined;
|
|
20084
|
-
} & { [
|
|
20120
|
+
} & { [K_725 in Exclude<keyof I_1["list_data_socket"]["user_permission_req"], keyof UserPermissionInChannelListRequest>]: never; }) | undefined;
|
|
20085
20121
|
user_permission_list?: ({
|
|
20086
20122
|
clan_id?: string | undefined;
|
|
20087
20123
|
channel_id?: string | undefined;
|
|
@@ -20136,7 +20172,7 @@ export declare const Envelope: {
|
|
|
20136
20172
|
active?: number | undefined;
|
|
20137
20173
|
scope?: number | undefined;
|
|
20138
20174
|
level?: number | undefined;
|
|
20139
|
-
} & { [
|
|
20175
|
+
} & { [K_726 in Exclude<keyof I_1["list_data_socket"]["user_permission_list"]["permissions"]["permissions"][number], keyof import("../api/api").Permission>]: never; })[] & { [K_727 in Exclude<keyof I_1["list_data_socket"]["user_permission_list"]["permissions"]["permissions"], keyof {
|
|
20140
20176
|
id?: string | undefined;
|
|
20141
20177
|
title?: string | undefined;
|
|
20142
20178
|
slug?: string | undefined;
|
|
@@ -20146,8 +20182,8 @@ export declare const Envelope: {
|
|
|
20146
20182
|
level?: number | undefined;
|
|
20147
20183
|
}[]>]: never; }) | undefined;
|
|
20148
20184
|
max_level_permission?: number | undefined;
|
|
20149
|
-
} & { [
|
|
20150
|
-
} & { [
|
|
20185
|
+
} & { [K_728 in Exclude<keyof I_1["list_data_socket"]["user_permission_list"]["permissions"], keyof PermissionList>]: never; }) | undefined;
|
|
20186
|
+
} & { [K_729 in Exclude<keyof I_1["list_data_socket"]["user_permission_list"], keyof UserPermissionInChannelListResponse>]: never; }) | undefined;
|
|
20151
20187
|
permission_role_req?: ({
|
|
20152
20188
|
role_id?: string | undefined;
|
|
20153
20189
|
channel_id?: string | undefined;
|
|
@@ -20156,7 +20192,7 @@ export declare const Envelope: {
|
|
|
20156
20192
|
role_id?: string | undefined;
|
|
20157
20193
|
channel_id?: string | undefined;
|
|
20158
20194
|
user_id?: string | undefined;
|
|
20159
|
-
} & { [
|
|
20195
|
+
} & { [K_730 in Exclude<keyof I_1["list_data_socket"]["permission_role_req"], keyof PermissionRoleChannelListEventRequest>]: never; }) | undefined;
|
|
20160
20196
|
permission_role_list?: ({
|
|
20161
20197
|
role_id?: string | undefined;
|
|
20162
20198
|
channel_id?: string | undefined;
|
|
@@ -20178,11 +20214,11 @@ export declare const Envelope: {
|
|
|
20178
20214
|
} & {
|
|
20179
20215
|
permission_id?: string | undefined;
|
|
20180
20216
|
active?: boolean | undefined;
|
|
20181
|
-
} & { [
|
|
20217
|
+
} & { [K_731 in Exclude<keyof I_1["list_data_socket"]["permission_role_list"]["permission_role_channel"][number], keyof import("../api/api").PermissionRoleChannel>]: never; })[] & { [K_732 in Exclude<keyof I_1["list_data_socket"]["permission_role_list"]["permission_role_channel"], keyof {
|
|
20182
20218
|
permission_id?: string | undefined;
|
|
20183
20219
|
active?: boolean | undefined;
|
|
20184
20220
|
}[]>]: never; }) | undefined;
|
|
20185
|
-
} & { [
|
|
20221
|
+
} & { [K_733 in Exclude<keyof I_1["list_data_socket"]["permission_role_list"], keyof PermissionRoleChannelListEventResponse>]: never; }) | undefined;
|
|
20186
20222
|
emoji_list?: ({
|
|
20187
20223
|
emoji_list?: {
|
|
20188
20224
|
id?: string | undefined;
|
|
@@ -20226,7 +20262,7 @@ export declare const Envelope: {
|
|
|
20226
20262
|
logo?: string | undefined;
|
|
20227
20263
|
clan_name?: string | undefined;
|
|
20228
20264
|
is_for_sale?: boolean | undefined;
|
|
20229
|
-
} & { [
|
|
20265
|
+
} & { [K_734 in Exclude<keyof I_1["list_data_socket"]["emoji_list"]["emoji_list"][number], keyof import("../api/api").ClanEmoji>]: never; })[] & { [K_735 in Exclude<keyof I_1["list_data_socket"]["emoji_list"]["emoji_list"], keyof {
|
|
20230
20266
|
id?: string | undefined;
|
|
20231
20267
|
src?: string | undefined;
|
|
20232
20268
|
shortname?: string | undefined;
|
|
@@ -20237,7 +20273,7 @@ export declare const Envelope: {
|
|
|
20237
20273
|
clan_name?: string | undefined;
|
|
20238
20274
|
is_for_sale?: boolean | undefined;
|
|
20239
20275
|
}[]>]: never; }) | undefined;
|
|
20240
|
-
} & { [
|
|
20276
|
+
} & { [K_736 in Exclude<keyof I_1["list_data_socket"]["emoji_list"], "emoji_list">]: never; }) | undefined;
|
|
20241
20277
|
list_friend_req?: ({
|
|
20242
20278
|
limit?: number | undefined;
|
|
20243
20279
|
state?: number | undefined;
|
|
@@ -20246,7 +20282,7 @@ export declare const Envelope: {
|
|
|
20246
20282
|
limit?: number | undefined;
|
|
20247
20283
|
state?: number | undefined;
|
|
20248
20284
|
cursor?: string | undefined;
|
|
20249
|
-
} & { [
|
|
20285
|
+
} & { [K_737 in Exclude<keyof I_1["list_data_socket"]["list_friend_req"], keyof ListFriendsRequest>]: never; }) | undefined;
|
|
20250
20286
|
friend_list?: ({
|
|
20251
20287
|
friends?: {
|
|
20252
20288
|
user?: {
|
|
@@ -20370,13 +20406,13 @@ export declare const Envelope: {
|
|
|
20370
20406
|
is_mobile?: boolean | undefined;
|
|
20371
20407
|
dob?: Date | undefined;
|
|
20372
20408
|
mezon_id?: string | undefined;
|
|
20373
|
-
list_nick_names?: (string[] & string[] & { [
|
|
20409
|
+
list_nick_names?: (string[] & string[] & { [K_738 in Exclude<keyof I_1["list_data_socket"]["friend_list"]["friends"][number]["user"]["list_nick_names"], keyof string[]>]: never; }) | undefined;
|
|
20374
20410
|
status?: string | undefined;
|
|
20375
|
-
} & { [
|
|
20411
|
+
} & { [K_739 in Exclude<keyof I_1["list_data_socket"]["friend_list"]["friends"][number]["user"], keyof import("../api/api").User>]: never; }) | undefined;
|
|
20376
20412
|
state?: number | undefined;
|
|
20377
20413
|
update_time?: Date | undefined;
|
|
20378
20414
|
source_id?: string | undefined;
|
|
20379
|
-
} & { [
|
|
20415
|
+
} & { [K_740 in Exclude<keyof I_1["list_data_socket"]["friend_list"]["friends"][number], keyof import("../api/api").Friend>]: never; })[] & { [K_741 in Exclude<keyof I_1["list_data_socket"]["friend_list"]["friends"], keyof {
|
|
20380
20416
|
user?: {
|
|
20381
20417
|
id?: string | undefined;
|
|
20382
20418
|
username?: string | undefined;
|
|
@@ -20404,12 +20440,12 @@ export declare const Envelope: {
|
|
|
20404
20440
|
source_id?: string | undefined;
|
|
20405
20441
|
}[]>]: never; }) | undefined;
|
|
20406
20442
|
cursor?: string | undefined;
|
|
20407
|
-
} & { [
|
|
20443
|
+
} & { [K_742 in Exclude<keyof I_1["list_data_socket"]["friend_list"], keyof FriendList>]: never; }) | undefined;
|
|
20408
20444
|
list_apps_req?: ({
|
|
20409
20445
|
clan_id?: string | undefined;
|
|
20410
20446
|
} & {
|
|
20411
20447
|
clan_id?: string | undefined;
|
|
20412
|
-
} & { [
|
|
20448
|
+
} & { [K_743 in Exclude<keyof I_1["list_data_socket"]["list_apps_req"], "clan_id">]: never; }) | undefined;
|
|
20413
20449
|
channel_apps_list?: ({
|
|
20414
20450
|
channel_apps?: {
|
|
20415
20451
|
id?: string | undefined;
|
|
@@ -20437,14 +20473,14 @@ export declare const Envelope: {
|
|
|
20437
20473
|
channel_id?: string | undefined;
|
|
20438
20474
|
app_id?: string | undefined;
|
|
20439
20475
|
app_url?: string | undefined;
|
|
20440
|
-
} & { [
|
|
20476
|
+
} & { [K_744 in Exclude<keyof I_1["list_data_socket"]["channel_apps_list"]["channel_apps"][number], keyof import("../api/api").ChannelAppResponse>]: never; })[] & { [K_745 in Exclude<keyof I_1["list_data_socket"]["channel_apps_list"]["channel_apps"], keyof {
|
|
20441
20477
|
id?: string | undefined;
|
|
20442
20478
|
clan_id?: string | undefined;
|
|
20443
20479
|
channel_id?: string | undefined;
|
|
20444
20480
|
app_id?: string | undefined;
|
|
20445
20481
|
app_url?: string | undefined;
|
|
20446
20482
|
}[]>]: never; }) | undefined;
|
|
20447
|
-
} & { [
|
|
20483
|
+
} & { [K_746 in Exclude<keyof I_1["list_data_socket"]["channel_apps_list"], "channel_apps">]: never; }) | undefined;
|
|
20448
20484
|
user_activity_list?: ({
|
|
20449
20485
|
activities?: {
|
|
20450
20486
|
user_id?: string | undefined;
|
|
@@ -20484,7 +20520,7 @@ export declare const Envelope: {
|
|
|
20484
20520
|
end_time?: Date | undefined;
|
|
20485
20521
|
application_id?: string | undefined;
|
|
20486
20522
|
status?: number | undefined;
|
|
20487
|
-
} & { [
|
|
20523
|
+
} & { [K_747 in Exclude<keyof I_1["list_data_socket"]["user_activity_list"]["activities"][number], keyof UserActivity>]: never; })[] & { [K_748 in Exclude<keyof I_1["list_data_socket"]["user_activity_list"]["activities"], keyof {
|
|
20488
20524
|
user_id?: string | undefined;
|
|
20489
20525
|
activity_name?: string | undefined;
|
|
20490
20526
|
activity_type?: number | undefined;
|
|
@@ -20494,12 +20530,12 @@ export declare const Envelope: {
|
|
|
20494
20530
|
application_id?: string | undefined;
|
|
20495
20531
|
status?: number | undefined;
|
|
20496
20532
|
}[]>]: never; }) | undefined;
|
|
20497
|
-
} & { [
|
|
20533
|
+
} & { [K_749 in Exclude<keyof I_1["list_data_socket"]["user_activity_list"], "activities">]: never; }) | undefined;
|
|
20498
20534
|
list_clan_user_req?: ({
|
|
20499
20535
|
clan_id?: string | undefined;
|
|
20500
20536
|
} & {
|
|
20501
20537
|
clan_id?: string | undefined;
|
|
20502
|
-
} & { [
|
|
20538
|
+
} & { [K_750 in Exclude<keyof I_1["list_data_socket"]["list_clan_user_req"], "clan_id">]: never; }) | undefined;
|
|
20503
20539
|
clan_user_list?: ({
|
|
20504
20540
|
clan_users?: {
|
|
20505
20541
|
user?: {
|
|
@@ -20627,14 +20663,14 @@ export declare const Envelope: {
|
|
|
20627
20663
|
is_mobile?: boolean | undefined;
|
|
20628
20664
|
dob?: Date | undefined;
|
|
20629
20665
|
mezon_id?: string | undefined;
|
|
20630
|
-
list_nick_names?: (string[] & string[] & { [
|
|
20666
|
+
list_nick_names?: (string[] & string[] & { [K_751 in Exclude<keyof I_1["list_data_socket"]["clan_user_list"]["clan_users"][number]["user"]["list_nick_names"], keyof string[]>]: never; }) | undefined;
|
|
20631
20667
|
status?: string | undefined;
|
|
20632
|
-
} & { [
|
|
20633
|
-
role_id?: (string[] & string[] & { [
|
|
20668
|
+
} & { [K_752 in Exclude<keyof I_1["list_data_socket"]["clan_user_list"]["clan_users"][number]["user"], keyof import("../api/api").User>]: never; }) | undefined;
|
|
20669
|
+
role_id?: (string[] & string[] & { [K_753 in Exclude<keyof I_1["list_data_socket"]["clan_user_list"]["clan_users"][number]["role_id"], keyof string[]>]: never; }) | undefined;
|
|
20634
20670
|
clan_nick?: string | undefined;
|
|
20635
20671
|
clan_avatar?: string | undefined;
|
|
20636
20672
|
clan_id?: string | undefined;
|
|
20637
|
-
} & { [
|
|
20673
|
+
} & { [K_754 in Exclude<keyof I_1["list_data_socket"]["clan_user_list"]["clan_users"][number], keyof import("../api/api").ClanUserList_ClanUser>]: never; })[] & { [K_755 in Exclude<keyof I_1["list_data_socket"]["clan_user_list"]["clan_users"], keyof {
|
|
20638
20674
|
user?: {
|
|
20639
20675
|
id?: string | undefined;
|
|
20640
20676
|
username?: string | undefined;
|
|
@@ -20664,12 +20700,12 @@ export declare const Envelope: {
|
|
|
20664
20700
|
}[]>]: never; }) | undefined;
|
|
20665
20701
|
cursor?: string | undefined;
|
|
20666
20702
|
clan_id?: string | undefined;
|
|
20667
|
-
} & { [
|
|
20703
|
+
} & { [K_756 in Exclude<keyof I_1["list_data_socket"]["clan_user_list"], keyof ClanUserList>]: never; }) | undefined;
|
|
20668
20704
|
list_event_req?: ({
|
|
20669
20705
|
clan_id?: string | undefined;
|
|
20670
20706
|
} & {
|
|
20671
20707
|
clan_id?: string | undefined;
|
|
20672
|
-
} & { [
|
|
20708
|
+
} & { [K_757 in Exclude<keyof I_1["list_data_socket"]["list_event_req"], "clan_id">]: never; }) | undefined;
|
|
20673
20709
|
event_list?: ({
|
|
20674
20710
|
events?: {
|
|
20675
20711
|
id?: string | undefined;
|
|
@@ -20767,7 +20803,7 @@ export declare const Envelope: {
|
|
|
20767
20803
|
address?: string | undefined;
|
|
20768
20804
|
start_time?: Date | undefined;
|
|
20769
20805
|
end_time?: Date | undefined;
|
|
20770
|
-
user_ids?: (string[] & string[] & { [
|
|
20806
|
+
user_ids?: (string[] & string[] & { [K_758 in Exclude<keyof I_1["list_data_socket"]["event_list"]["events"][number]["user_ids"], keyof string[]>]: never; }) | undefined;
|
|
20771
20807
|
create_time?: Date | undefined;
|
|
20772
20808
|
max_permission?: number | undefined;
|
|
20773
20809
|
channel_id?: string | undefined;
|
|
@@ -20786,8 +20822,8 @@ export declare const Envelope: {
|
|
|
20786
20822
|
external_link?: string | undefined;
|
|
20787
20823
|
creator_id?: string | undefined;
|
|
20788
20824
|
event_id?: string | undefined;
|
|
20789
|
-
} & { [
|
|
20790
|
-
} & { [
|
|
20825
|
+
} & { [K_759 in Exclude<keyof I_1["list_data_socket"]["event_list"]["events"][number]["meet_room"], keyof import("../api/api").GenerateMezonMeetResponse>]: never; }) | undefined;
|
|
20826
|
+
} & { [K_760 in Exclude<keyof I_1["list_data_socket"]["event_list"]["events"][number], keyof import("../api/api").EventManagement>]: never; })[] & { [K_761 in Exclude<keyof I_1["list_data_socket"]["event_list"]["events"], keyof {
|
|
20791
20827
|
id?: string | undefined;
|
|
20792
20828
|
title?: string | undefined;
|
|
20793
20829
|
logo?: string | undefined;
|
|
@@ -20815,7 +20851,7 @@ export declare const Envelope: {
|
|
|
20815
20851
|
event_id?: string | undefined;
|
|
20816
20852
|
} | undefined;
|
|
20817
20853
|
}[]>]: never; }) | undefined;
|
|
20818
|
-
} & { [
|
|
20854
|
+
} & { [K_762 in Exclude<keyof I_1["list_data_socket"]["event_list"], "events">]: never; }) | undefined;
|
|
20819
20855
|
list_category_req?: ({
|
|
20820
20856
|
creator_id?: string | undefined;
|
|
20821
20857
|
clan_id?: string | undefined;
|
|
@@ -20828,7 +20864,7 @@ export declare const Envelope: {
|
|
|
20828
20864
|
category_name?: string | undefined;
|
|
20829
20865
|
category_id?: string | undefined;
|
|
20830
20866
|
category_order?: number | undefined;
|
|
20831
|
-
} & { [
|
|
20867
|
+
} & { [K_763 in Exclude<keyof I_1["list_data_socket"]["list_category_req"], keyof CategoryDesc>]: never; }) | undefined;
|
|
20832
20868
|
category_list?: ({
|
|
20833
20869
|
categorydesc?: {
|
|
20834
20870
|
creator_id?: string | undefined;
|
|
@@ -20856,14 +20892,14 @@ export declare const Envelope: {
|
|
|
20856
20892
|
category_name?: string | undefined;
|
|
20857
20893
|
category_id?: string | undefined;
|
|
20858
20894
|
category_order?: number | undefined;
|
|
20859
|
-
} & { [
|
|
20895
|
+
} & { [K_764 in Exclude<keyof I_1["list_data_socket"]["category_list"]["categorydesc"][number], keyof CategoryDesc>]: never; })[] & { [K_765 in Exclude<keyof I_1["list_data_socket"]["category_list"]["categorydesc"], keyof {
|
|
20860
20896
|
creator_id?: string | undefined;
|
|
20861
20897
|
clan_id?: string | undefined;
|
|
20862
20898
|
category_name?: string | undefined;
|
|
20863
20899
|
category_id?: string | undefined;
|
|
20864
20900
|
category_order?: number | undefined;
|
|
20865
20901
|
}[]>]: never; }) | undefined;
|
|
20866
|
-
} & { [
|
|
20902
|
+
} & { [K_766 in Exclude<keyof I_1["list_data_socket"]["category_list"], "categorydesc">]: never; }) | undefined;
|
|
20867
20903
|
stream_user_list?: ({
|
|
20868
20904
|
streaming_channel_users?: {
|
|
20869
20905
|
id?: string | undefined;
|
|
@@ -20887,14 +20923,24 @@ export declare const Envelope: {
|
|
|
20887
20923
|
user_id?: string | undefined;
|
|
20888
20924
|
channel_id?: string | undefined;
|
|
20889
20925
|
participant?: string | undefined;
|
|
20890
|
-
} & { [
|
|
20926
|
+
} & { [K_767 in Exclude<keyof I_1["list_data_socket"]["stream_user_list"]["streaming_channel_users"][number], keyof import("../api/api").StreamingChannelUser>]: never; })[] & { [K_768 in Exclude<keyof I_1["list_data_socket"]["stream_user_list"]["streaming_channel_users"], keyof {
|
|
20891
20927
|
id?: string | undefined;
|
|
20892
20928
|
user_id?: string | undefined;
|
|
20893
20929
|
channel_id?: string | undefined;
|
|
20894
20930
|
participant?: string | undefined;
|
|
20895
20931
|
}[]>]: never; }) | undefined;
|
|
20896
|
-
} & { [
|
|
20897
|
-
|
|
20932
|
+
} & { [K_769 in Exclude<keyof I_1["list_data_socket"]["stream_user_list"], "streaming_channel_users">]: never; }) | undefined;
|
|
20933
|
+
list_unread_msg_indicator_req?: ({
|
|
20934
|
+
clan_id?: string | undefined;
|
|
20935
|
+
} & {
|
|
20936
|
+
clan_id?: string | undefined;
|
|
20937
|
+
} & { [K_770 in Exclude<keyof I_1["list_data_socket"]["list_unread_msg_indicator_req"], "clan_id">]: never; }) | undefined;
|
|
20938
|
+
unread_msg_indicator?: ({
|
|
20939
|
+
has_unread_message?: boolean | undefined;
|
|
20940
|
+
} & {
|
|
20941
|
+
has_unread_message?: boolean | undefined;
|
|
20942
|
+
} & { [K_771 in Exclude<keyof I_1["list_data_socket"]["unread_msg_indicator"], "has_unread_message">]: never; }) | undefined;
|
|
20943
|
+
} & { [K_772 in Exclude<keyof I_1["list_data_socket"], keyof ListDataSocket>]: never; }) | undefined;
|
|
20898
20944
|
quick_menu_event?: ({
|
|
20899
20945
|
menu_name?: string | undefined;
|
|
20900
20946
|
message?: {
|
|
@@ -21015,7 +21061,7 @@ export declare const Envelope: {
|
|
|
21015
21061
|
create_time?: Date | undefined;
|
|
21016
21062
|
s?: number | undefined;
|
|
21017
21063
|
e?: number | undefined;
|
|
21018
|
-
} & { [
|
|
21064
|
+
} & { [K_773 in Exclude<keyof I_1["quick_menu_event"]["message"]["mentions"][number], keyof MessageMention>]: never; })[] & { [K_774 in Exclude<keyof I_1["quick_menu_event"]["message"]["mentions"], keyof {
|
|
21019
21065
|
id?: string | undefined;
|
|
21020
21066
|
user_id?: string | undefined;
|
|
21021
21067
|
username?: string | undefined;
|
|
@@ -21049,7 +21095,7 @@ export declare const Envelope: {
|
|
|
21049
21095
|
width?: number | undefined;
|
|
21050
21096
|
height?: number | undefined;
|
|
21051
21097
|
thumbnail?: string | undefined;
|
|
21052
|
-
} & { [
|
|
21098
|
+
} & { [K_775 in Exclude<keyof I_1["quick_menu_event"]["message"]["attachments"][number], keyof MessageAttachment>]: never; })[] & { [K_776 in Exclude<keyof I_1["quick_menu_event"]["message"]["attachments"], keyof {
|
|
21053
21099
|
filename?: string | undefined;
|
|
21054
21100
|
size?: number | undefined;
|
|
21055
21101
|
url?: string | undefined;
|
|
@@ -21091,7 +21137,7 @@ export declare const Envelope: {
|
|
|
21091
21137
|
mesages_sender_avatar?: string | undefined;
|
|
21092
21138
|
message_sender_clan_nick?: string | undefined;
|
|
21093
21139
|
message_sender_display_name?: string | undefined;
|
|
21094
|
-
} & { [
|
|
21140
|
+
} & { [K_777 in Exclude<keyof I_1["quick_menu_event"]["message"]["references"][number], keyof MessageRef>]: never; })[] & { [K_778 in Exclude<keyof I_1["quick_menu_event"]["message"]["references"], keyof {
|
|
21095
21141
|
message_id?: string | undefined;
|
|
21096
21142
|
message_ref_id?: string | undefined;
|
|
21097
21143
|
content?: string | undefined;
|
|
@@ -21110,13 +21156,13 @@ export declare const Envelope: {
|
|
|
21110
21156
|
is_public?: boolean | undefined;
|
|
21111
21157
|
code?: number | undefined;
|
|
21112
21158
|
topic_id?: string | undefined;
|
|
21113
|
-
} & { [
|
|
21114
|
-
} & { [
|
|
21159
|
+
} & { [K_779 in Exclude<keyof I_1["quick_menu_event"]["message"], keyof ChannelMessageSend>]: never; }) | undefined;
|
|
21160
|
+
} & { [K_780 in Exclude<keyof I_1["quick_menu_event"], keyof QuickMenuDataEvent>]: never; }) | undefined;
|
|
21115
21161
|
un_block_friend?: ({
|
|
21116
21162
|
user_id?: string | undefined;
|
|
21117
21163
|
} & {
|
|
21118
21164
|
user_id?: string | undefined;
|
|
21119
|
-
} & { [
|
|
21165
|
+
} & { [K_781 in Exclude<keyof I_1["un_block_friend"], "user_id">]: never; }) | undefined;
|
|
21120
21166
|
meet_participant_event?: ({
|
|
21121
21167
|
username?: string | undefined;
|
|
21122
21168
|
room_name?: string | undefined;
|
|
@@ -21129,7 +21175,7 @@ export declare const Envelope: {
|
|
|
21129
21175
|
channel_id?: string | undefined;
|
|
21130
21176
|
clan_id?: string | undefined;
|
|
21131
21177
|
action?: number | undefined;
|
|
21132
|
-
} & { [
|
|
21178
|
+
} & { [K_782 in Exclude<keyof I_1["meet_participant_event"], keyof MeetParticipantEvent>]: never; }) | undefined;
|
|
21133
21179
|
transfer_ownership_event?: ({
|
|
21134
21180
|
clan_id?: string | undefined;
|
|
21135
21181
|
prev_owner?: string | undefined;
|
|
@@ -21138,7 +21184,7 @@ export declare const Envelope: {
|
|
|
21138
21184
|
clan_id?: string | undefined;
|
|
21139
21185
|
prev_owner?: string | undefined;
|
|
21140
21186
|
curr_owner?: string | undefined;
|
|
21141
|
-
} & { [
|
|
21187
|
+
} & { [K_783 in Exclude<keyof I_1["transfer_ownership_event"], keyof TransferOwnershipEvent>]: never; }) | undefined;
|
|
21142
21188
|
add_friend?: ({
|
|
21143
21189
|
user_id?: string | undefined;
|
|
21144
21190
|
username?: string | undefined;
|
|
@@ -21149,8 +21195,8 @@ export declare const Envelope: {
|
|
|
21149
21195
|
username?: string | undefined;
|
|
21150
21196
|
display_name?: string | undefined;
|
|
21151
21197
|
avatar?: string | undefined;
|
|
21152
|
-
} & { [
|
|
21153
|
-
} & { [
|
|
21198
|
+
} & { [K_784 in Exclude<keyof I_1["add_friend"], keyof AddFriend>]: never; }) | undefined;
|
|
21199
|
+
} & { [K_785 in Exclude<keyof I_1, keyof Envelope>]: never; }>(object: I_1): Envelope;
|
|
21154
21200
|
};
|
|
21155
21201
|
export declare const FollowEvent: {
|
|
21156
21202
|
encode(_: FollowEvent, writer?: _m0.Writer): _m0.Writer;
|
|
@@ -29572,6 +29618,12 @@ export declare const ListDataSocket: {
|
|
|
29572
29618
|
participant?: string | undefined;
|
|
29573
29619
|
}[] | undefined;
|
|
29574
29620
|
} | undefined;
|
|
29621
|
+
list_unread_msg_indicator_req?: {
|
|
29622
|
+
clan_id?: string | undefined;
|
|
29623
|
+
} | undefined;
|
|
29624
|
+
unread_msg_indicator?: {
|
|
29625
|
+
has_unread_message?: boolean | undefined;
|
|
29626
|
+
} | undefined;
|
|
29575
29627
|
} & {
|
|
29576
29628
|
api_name?: string | undefined;
|
|
29577
29629
|
list_clan_req?: ({
|
|
@@ -33089,7 +33141,17 @@ export declare const ListDataSocket: {
|
|
|
33089
33141
|
participant?: string | undefined;
|
|
33090
33142
|
}[]>]: never; }) | undefined;
|
|
33091
33143
|
} & { [K_184 in Exclude<keyof I["stream_user_list"], "streaming_channel_users">]: never; }) | undefined;
|
|
33092
|
-
|
|
33144
|
+
list_unread_msg_indicator_req?: ({
|
|
33145
|
+
clan_id?: string | undefined;
|
|
33146
|
+
} & {
|
|
33147
|
+
clan_id?: string | undefined;
|
|
33148
|
+
} & { [K_185 in Exclude<keyof I["list_unread_msg_indicator_req"], "clan_id">]: never; }) | undefined;
|
|
33149
|
+
unread_msg_indicator?: ({
|
|
33150
|
+
has_unread_message?: boolean | undefined;
|
|
33151
|
+
} & {
|
|
33152
|
+
has_unread_message?: boolean | undefined;
|
|
33153
|
+
} & { [K_186 in Exclude<keyof I["unread_msg_indicator"], "has_unread_message">]: never; }) | undefined;
|
|
33154
|
+
} & { [K_187 in Exclude<keyof I, keyof ListDataSocket>]: never; }>(base?: I | undefined): ListDataSocket;
|
|
33093
33155
|
fromPartial<I_1 extends {
|
|
33094
33156
|
api_name?: string | undefined;
|
|
33095
33157
|
list_clan_req?: {
|
|
@@ -33953,6 +34015,12 @@ export declare const ListDataSocket: {
|
|
|
33953
34015
|
participant?: string | undefined;
|
|
33954
34016
|
}[] | undefined;
|
|
33955
34017
|
} | undefined;
|
|
34018
|
+
list_unread_msg_indicator_req?: {
|
|
34019
|
+
clan_id?: string | undefined;
|
|
34020
|
+
} | undefined;
|
|
34021
|
+
unread_msg_indicator?: {
|
|
34022
|
+
has_unread_message?: boolean | undefined;
|
|
34023
|
+
} | undefined;
|
|
33956
34024
|
} & {
|
|
33957
34025
|
api_name?: string | undefined;
|
|
33958
34026
|
list_clan_req?: ({
|
|
@@ -33963,7 +34031,7 @@ export declare const ListDataSocket: {
|
|
|
33963
34031
|
limit?: number | undefined;
|
|
33964
34032
|
state?: number | undefined;
|
|
33965
34033
|
cursor?: string | undefined;
|
|
33966
|
-
} & { [
|
|
34034
|
+
} & { [K_188 in Exclude<keyof I_1["list_clan_req"], keyof ListClanDescRequest>]: never; }) | undefined;
|
|
33967
34035
|
clan_desc_list?: ({
|
|
33968
34036
|
clandesc?: {
|
|
33969
34037
|
creator_id?: string | undefined;
|
|
@@ -34043,7 +34111,7 @@ export declare const ListDataSocket: {
|
|
|
34043
34111
|
short_url?: string | undefined;
|
|
34044
34112
|
prevent_anonymous?: boolean | undefined;
|
|
34045
34113
|
has_unread_message?: boolean | undefined;
|
|
34046
|
-
} & { [
|
|
34114
|
+
} & { [K_189 in Exclude<keyof I_1["clan_desc_list"]["clandesc"][number], keyof import("../api/api").ClanDesc>]: never; })[] & { [K_190 in Exclude<keyof I_1["clan_desc_list"]["clandesc"], keyof {
|
|
34047
34115
|
creator_id?: string | undefined;
|
|
34048
34116
|
clan_name?: string | undefined;
|
|
34049
34117
|
logo?: string | undefined;
|
|
@@ -34063,7 +34131,7 @@ export declare const ListDataSocket: {
|
|
|
34063
34131
|
prevent_anonymous?: boolean | undefined;
|
|
34064
34132
|
has_unread_message?: boolean | undefined;
|
|
34065
34133
|
}[]>]: never; }) | undefined;
|
|
34066
|
-
} & { [
|
|
34134
|
+
} & { [K_191 in Exclude<keyof I_1["clan_desc_list"], "clandesc">]: never; }) | undefined;
|
|
34067
34135
|
list_thread_req?: ({
|
|
34068
34136
|
limit?: number | undefined;
|
|
34069
34137
|
state?: number | undefined;
|
|
@@ -34078,7 +34146,7 @@ export declare const ListDataSocket: {
|
|
|
34078
34146
|
channel_id?: string | undefined;
|
|
34079
34147
|
thread_id?: string | undefined;
|
|
34080
34148
|
page?: number | undefined;
|
|
34081
|
-
} & { [
|
|
34149
|
+
} & { [K_192 in Exclude<keyof I_1["list_thread_req"], keyof ListThreadRequest>]: never; }) | undefined;
|
|
34082
34150
|
channel_desc_list?: ({
|
|
34083
34151
|
channeldesc?: {
|
|
34084
34152
|
clan_id?: string | undefined;
|
|
@@ -34252,8 +34320,8 @@ export declare const ListDataSocket: {
|
|
|
34252
34320
|
creator_id?: string | undefined;
|
|
34253
34321
|
channel_label?: string | undefined;
|
|
34254
34322
|
channel_private?: number | undefined;
|
|
34255
|
-
avatars?: (string[] & string[] & { [
|
|
34256
|
-
user_ids?: (string[] & string[] & { [
|
|
34323
|
+
avatars?: (string[] & string[] & { [K_193 in Exclude<keyof I_1["channel_desc_list"]["channeldesc"][number]["avatars"], keyof string[]>]: never; }) | undefined;
|
|
34324
|
+
user_ids?: (string[] & string[] & { [K_194 in Exclude<keyof I_1["channel_desc_list"]["channeldesc"][number]["user_ids"], keyof string[]>]: never; }) | undefined;
|
|
34257
34325
|
last_sent_message?: ({
|
|
34258
34326
|
id?: string | undefined;
|
|
34259
34327
|
timestamp_seconds?: number | undefined;
|
|
@@ -34273,8 +34341,8 @@ export declare const ListDataSocket: {
|
|
|
34273
34341
|
reference?: string | undefined;
|
|
34274
34342
|
mention?: string | undefined;
|
|
34275
34343
|
reaction?: string | undefined;
|
|
34276
|
-
repliers?: (string[] & string[] & { [
|
|
34277
|
-
} & { [
|
|
34344
|
+
repliers?: (string[] & string[] & { [K_195 in Exclude<keyof I_1["channel_desc_list"]["channeldesc"][number]["last_sent_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
34345
|
+
} & { [K_196 in Exclude<keyof I_1["channel_desc_list"]["channeldesc"][number]["last_sent_message"], keyof ChannelMessageHeader>]: never; }) | undefined;
|
|
34278
34346
|
last_seen_message?: ({
|
|
34279
34347
|
id?: string | undefined;
|
|
34280
34348
|
timestamp_seconds?: number | undefined;
|
|
@@ -34294,18 +34362,18 @@ export declare const ListDataSocket: {
|
|
|
34294
34362
|
reference?: string | undefined;
|
|
34295
34363
|
mention?: string | undefined;
|
|
34296
34364
|
reaction?: string | undefined;
|
|
34297
|
-
repliers?: (string[] & string[] & { [
|
|
34298
|
-
} & { [
|
|
34299
|
-
onlines?: (boolean[] & boolean[] & { [
|
|
34365
|
+
repliers?: (string[] & string[] & { [K_197 in Exclude<keyof I_1["channel_desc_list"]["channeldesc"][number]["last_seen_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
34366
|
+
} & { [K_198 in Exclude<keyof I_1["channel_desc_list"]["channeldesc"][number]["last_seen_message"], keyof ChannelMessageHeader>]: never; }) | undefined;
|
|
34367
|
+
onlines?: (boolean[] & boolean[] & { [K_199 in Exclude<keyof I_1["channel_desc_list"]["channeldesc"][number]["onlines"], keyof boolean[]>]: never; }) | undefined;
|
|
34300
34368
|
meeting_code?: string | undefined;
|
|
34301
34369
|
count_mess_unread?: number | undefined;
|
|
34302
34370
|
active?: number | undefined;
|
|
34303
34371
|
last_pin_message?: string | undefined;
|
|
34304
|
-
usernames?: (string[] & string[] & { [
|
|
34372
|
+
usernames?: (string[] & string[] & { [K_200 in Exclude<keyof I_1["channel_desc_list"]["channeldesc"][number]["usernames"], keyof string[]>]: never; }) | undefined;
|
|
34305
34373
|
creator_name?: string | undefined;
|
|
34306
34374
|
create_time_seconds?: number | undefined;
|
|
34307
34375
|
update_time_seconds?: number | undefined;
|
|
34308
|
-
display_names?: (string[] & string[] & { [
|
|
34376
|
+
display_names?: (string[] & string[] & { [K_201 in Exclude<keyof I_1["channel_desc_list"]["channeldesc"][number]["display_names"], keyof string[]>]: never; }) | undefined;
|
|
34309
34377
|
channel_avatar?: string | undefined;
|
|
34310
34378
|
clan_name?: string | undefined;
|
|
34311
34379
|
app_id?: string | undefined;
|
|
@@ -34314,7 +34382,7 @@ export declare const ListDataSocket: {
|
|
|
34314
34382
|
topic?: string | undefined;
|
|
34315
34383
|
e2ee?: number | undefined;
|
|
34316
34384
|
member_count?: number | undefined;
|
|
34317
|
-
} & { [
|
|
34385
|
+
} & { [K_202 in Exclude<keyof I_1["channel_desc_list"]["channeldesc"][number], keyof ChannelDescription1>]: never; })[] & { [K_203 in Exclude<keyof I_1["channel_desc_list"]["channeldesc"], keyof {
|
|
34318
34386
|
clan_id?: string | undefined;
|
|
34319
34387
|
parent_id?: string | undefined;
|
|
34320
34388
|
channel_id?: string | undefined;
|
|
@@ -34371,14 +34439,14 @@ export declare const ListDataSocket: {
|
|
|
34371
34439
|
prev_cursor?: string | undefined;
|
|
34372
34440
|
cacheable_cursor?: string | undefined;
|
|
34373
34441
|
page?: number | undefined;
|
|
34374
|
-
} & { [
|
|
34442
|
+
} & { [K_204 in Exclude<keyof I_1["channel_desc_list"], keyof ChannelDescList>]: never; }) | undefined;
|
|
34375
34443
|
list_channel_users_uc_req?: ({
|
|
34376
34444
|
channel_id?: string | undefined;
|
|
34377
34445
|
limit?: number | undefined;
|
|
34378
34446
|
} & {
|
|
34379
34447
|
channel_id?: string | undefined;
|
|
34380
34448
|
limit?: number | undefined;
|
|
34381
|
-
} & { [
|
|
34449
|
+
} & { [K_205 in Exclude<keyof I_1["list_channel_users_uc_req"], keyof AllUsersAddChannelRequest>]: never; }) | undefined;
|
|
34382
34450
|
channel_users_uc_list?: ({
|
|
34383
34451
|
channel_id?: string | undefined;
|
|
34384
34452
|
user_ids?: string[] | undefined;
|
|
@@ -34389,18 +34457,18 @@ export declare const ListDataSocket: {
|
|
|
34389
34457
|
onlines?: boolean[] | undefined;
|
|
34390
34458
|
} & {
|
|
34391
34459
|
channel_id?: string | undefined;
|
|
34392
|
-
user_ids?: (string[] & string[] & { [
|
|
34460
|
+
user_ids?: (string[] & string[] & { [K_206 in Exclude<keyof I_1["channel_users_uc_list"]["user_ids"], keyof string[]>]: never; }) | undefined;
|
|
34393
34461
|
limit?: number | undefined;
|
|
34394
|
-
usernames?: (string[] & string[] & { [
|
|
34395
|
-
display_names?: (string[] & string[] & { [
|
|
34396
|
-
avatars?: (string[] & string[] & { [
|
|
34397
|
-
onlines?: (boolean[] & boolean[] & { [
|
|
34398
|
-
} & { [
|
|
34462
|
+
usernames?: (string[] & string[] & { [K_207 in Exclude<keyof I_1["channel_users_uc_list"]["usernames"], keyof string[]>]: never; }) | undefined;
|
|
34463
|
+
display_names?: (string[] & string[] & { [K_208 in Exclude<keyof I_1["channel_users_uc_list"]["display_names"], keyof string[]>]: never; }) | undefined;
|
|
34464
|
+
avatars?: (string[] & string[] & { [K_209 in Exclude<keyof I_1["channel_users_uc_list"]["avatars"], keyof string[]>]: never; }) | undefined;
|
|
34465
|
+
onlines?: (boolean[] & boolean[] & { [K_210 in Exclude<keyof I_1["channel_users_uc_list"]["onlines"], keyof boolean[]>]: never; }) | undefined;
|
|
34466
|
+
} & { [K_211 in Exclude<keyof I_1["channel_users_uc_list"], keyof AllUsersAddChannelResponse>]: never; }) | undefined;
|
|
34399
34467
|
list_channel_detail_req?: ({
|
|
34400
34468
|
channel_id?: string | undefined;
|
|
34401
34469
|
} & {
|
|
34402
34470
|
channel_id?: string | undefined;
|
|
34403
|
-
} & { [
|
|
34471
|
+
} & { [K_212 in Exclude<keyof I_1["list_channel_detail_req"], "channel_id">]: never; }) | undefined;
|
|
34404
34472
|
channel_desc?: ({
|
|
34405
34473
|
clan_id?: string | undefined;
|
|
34406
34474
|
parent_id?: string | undefined;
|
|
@@ -34463,8 +34531,8 @@ export declare const ListDataSocket: {
|
|
|
34463
34531
|
creator_id?: string | undefined;
|
|
34464
34532
|
channel_label?: string | undefined;
|
|
34465
34533
|
channel_private?: number | undefined;
|
|
34466
|
-
avatars?: (string[] & string[] & { [
|
|
34467
|
-
user_ids?: (string[] & string[] & { [
|
|
34534
|
+
avatars?: (string[] & string[] & { [K_213 in Exclude<keyof I_1["channel_desc"]["avatars"], keyof string[]>]: never; }) | undefined;
|
|
34535
|
+
user_ids?: (string[] & string[] & { [K_214 in Exclude<keyof I_1["channel_desc"]["user_ids"], keyof string[]>]: never; }) | undefined;
|
|
34468
34536
|
last_sent_message?: ({
|
|
34469
34537
|
id?: string | undefined;
|
|
34470
34538
|
timestamp_seconds?: number | undefined;
|
|
@@ -34484,8 +34552,8 @@ export declare const ListDataSocket: {
|
|
|
34484
34552
|
reference?: string | undefined;
|
|
34485
34553
|
mention?: string | undefined;
|
|
34486
34554
|
reaction?: string | undefined;
|
|
34487
|
-
repliers?: (string[] & string[] & { [
|
|
34488
|
-
} & { [
|
|
34555
|
+
repliers?: (string[] & string[] & { [K_215 in Exclude<keyof I_1["channel_desc"]["last_sent_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
34556
|
+
} & { [K_216 in Exclude<keyof I_1["channel_desc"]["last_sent_message"], keyof ChannelMessageHeader>]: never; }) | undefined;
|
|
34489
34557
|
last_seen_message?: ({
|
|
34490
34558
|
id?: string | undefined;
|
|
34491
34559
|
timestamp_seconds?: number | undefined;
|
|
@@ -34505,18 +34573,18 @@ export declare const ListDataSocket: {
|
|
|
34505
34573
|
reference?: string | undefined;
|
|
34506
34574
|
mention?: string | undefined;
|
|
34507
34575
|
reaction?: string | undefined;
|
|
34508
|
-
repliers?: (string[] & string[] & { [
|
|
34509
|
-
} & { [
|
|
34510
|
-
onlines?: (boolean[] & boolean[] & { [
|
|
34576
|
+
repliers?: (string[] & string[] & { [K_217 in Exclude<keyof I_1["channel_desc"]["last_seen_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
34577
|
+
} & { [K_218 in Exclude<keyof I_1["channel_desc"]["last_seen_message"], keyof ChannelMessageHeader>]: never; }) | undefined;
|
|
34578
|
+
onlines?: (boolean[] & boolean[] & { [K_219 in Exclude<keyof I_1["channel_desc"]["onlines"], keyof boolean[]>]: never; }) | undefined;
|
|
34511
34579
|
meeting_code?: string | undefined;
|
|
34512
34580
|
count_mess_unread?: number | undefined;
|
|
34513
34581
|
active?: number | undefined;
|
|
34514
34582
|
last_pin_message?: string | undefined;
|
|
34515
|
-
usernames?: (string[] & string[] & { [
|
|
34583
|
+
usernames?: (string[] & string[] & { [K_220 in Exclude<keyof I_1["channel_desc"]["usernames"], keyof string[]>]: never; }) | undefined;
|
|
34516
34584
|
creator_name?: string | undefined;
|
|
34517
34585
|
create_time_seconds?: number | undefined;
|
|
34518
34586
|
update_time_seconds?: number | undefined;
|
|
34519
|
-
display_names?: (string[] & string[] & { [
|
|
34587
|
+
display_names?: (string[] & string[] & { [K_221 in Exclude<keyof I_1["channel_desc"]["display_names"], keyof string[]>]: never; }) | undefined;
|
|
34520
34588
|
channel_avatar?: string | undefined;
|
|
34521
34589
|
clan_name?: string | undefined;
|
|
34522
34590
|
app_id?: string | undefined;
|
|
@@ -34525,7 +34593,7 @@ export declare const ListDataSocket: {
|
|
|
34525
34593
|
topic?: string | undefined;
|
|
34526
34594
|
e2ee?: number | undefined;
|
|
34527
34595
|
member_count?: number | undefined;
|
|
34528
|
-
} & { [
|
|
34596
|
+
} & { [K_222 in Exclude<keyof I_1["channel_desc"], keyof ChannelDescription1>]: never; }) | undefined;
|
|
34529
34597
|
list_channel_req?: ({
|
|
34530
34598
|
limit?: number | undefined;
|
|
34531
34599
|
state?: number | undefined;
|
|
@@ -34540,7 +34608,7 @@ export declare const ListDataSocket: {
|
|
|
34540
34608
|
clan_id?: string | undefined;
|
|
34541
34609
|
channel_type?: number | undefined;
|
|
34542
34610
|
is_mobile?: boolean | undefined;
|
|
34543
|
-
} & { [
|
|
34611
|
+
} & { [K_223 in Exclude<keyof I_1["list_channel_req"], keyof ListChannelDescsRequest>]: never; }) | undefined;
|
|
34544
34612
|
list_channel_message_req?: ({
|
|
34545
34613
|
clan_id?: string | undefined;
|
|
34546
34614
|
channel_id?: string | undefined;
|
|
@@ -34555,7 +34623,7 @@ export declare const ListDataSocket: {
|
|
|
34555
34623
|
limit?: number | undefined;
|
|
34556
34624
|
direction?: number | undefined;
|
|
34557
34625
|
topic_id?: string | undefined;
|
|
34558
|
-
} & { [
|
|
34626
|
+
} & { [K_224 in Exclude<keyof I_1["list_channel_message_req"], keyof ListChannelMessagesRequest>]: never; }) | undefined;
|
|
34559
34627
|
channel_message_list?: ({
|
|
34560
34628
|
messages?: {
|
|
34561
34629
|
clan_id?: string | undefined;
|
|
@@ -34693,7 +34761,7 @@ export declare const ListDataSocket: {
|
|
|
34693
34761
|
hide_editted?: boolean | undefined;
|
|
34694
34762
|
is_public?: boolean | undefined;
|
|
34695
34763
|
topic_id?: string | undefined;
|
|
34696
|
-
} & { [
|
|
34764
|
+
} & { [K_225 in Exclude<keyof I_1["channel_message_list"]["messages"][number], keyof ChannelMessage>]: never; })[] & { [K_226 in Exclude<keyof I_1["channel_message_list"]["messages"], keyof {
|
|
34697
34765
|
clan_id?: string | undefined;
|
|
34698
34766
|
channel_id?: string | undefined;
|
|
34699
34767
|
message_id?: string | undefined;
|
|
@@ -34741,8 +34809,8 @@ export declare const ListDataSocket: {
|
|
|
34741
34809
|
reference?: string | undefined;
|
|
34742
34810
|
mention?: string | undefined;
|
|
34743
34811
|
reaction?: string | undefined;
|
|
34744
|
-
repliers?: (string[] & string[] & { [
|
|
34745
|
-
} & { [
|
|
34812
|
+
repliers?: (string[] & string[] & { [K_227 in Exclude<keyof I_1["channel_message_list"]["last_seen_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
34813
|
+
} & { [K_228 in Exclude<keyof I_1["channel_message_list"]["last_seen_message"], keyof ChannelMessageHeader>]: never; }) | undefined;
|
|
34746
34814
|
last_sent_message?: ({
|
|
34747
34815
|
id?: string | undefined;
|
|
34748
34816
|
timestamp_seconds?: number | undefined;
|
|
@@ -34762,9 +34830,9 @@ export declare const ListDataSocket: {
|
|
|
34762
34830
|
reference?: string | undefined;
|
|
34763
34831
|
mention?: string | undefined;
|
|
34764
34832
|
reaction?: string | undefined;
|
|
34765
|
-
repliers?: (string[] & string[] & { [
|
|
34766
|
-
} & { [
|
|
34767
|
-
} & { [
|
|
34833
|
+
repliers?: (string[] & string[] & { [K_229 in Exclude<keyof I_1["channel_message_list"]["last_sent_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
34834
|
+
} & { [K_230 in Exclude<keyof I_1["channel_message_list"]["last_sent_message"], keyof ChannelMessageHeader>]: never; }) | undefined;
|
|
34835
|
+
} & { [K_231 in Exclude<keyof I_1["channel_message_list"], keyof ChannelMessageList>]: never; }) | undefined;
|
|
34768
34836
|
list_channel_users_req?: ({
|
|
34769
34837
|
clan_id?: string | undefined;
|
|
34770
34838
|
channel_id?: string | undefined;
|
|
@@ -34779,7 +34847,7 @@ export declare const ListDataSocket: {
|
|
|
34779
34847
|
limit?: number | undefined;
|
|
34780
34848
|
state?: number | undefined;
|
|
34781
34849
|
cursor?: string | undefined;
|
|
34782
|
-
} & { [
|
|
34850
|
+
} & { [K_232 in Exclude<keyof I_1["list_channel_users_req"], keyof ListChannelUsersRequest>]: never; }) | undefined;
|
|
34783
34851
|
voice_user_list?: ({
|
|
34784
34852
|
voice_channel_users?: {
|
|
34785
34853
|
id?: string | undefined;
|
|
@@ -34803,13 +34871,13 @@ export declare const ListDataSocket: {
|
|
|
34803
34871
|
user_id?: string | undefined;
|
|
34804
34872
|
channel_id?: string | undefined;
|
|
34805
34873
|
participant?: string | undefined;
|
|
34806
|
-
} & { [
|
|
34874
|
+
} & { [K_233 in Exclude<keyof I_1["voice_user_list"]["voice_channel_users"][number], keyof import("../api/api").VoiceChannelUser>]: never; })[] & { [K_234 in Exclude<keyof I_1["voice_user_list"]["voice_channel_users"], keyof {
|
|
34807
34875
|
id?: string | undefined;
|
|
34808
34876
|
user_id?: string | undefined;
|
|
34809
34877
|
channel_id?: string | undefined;
|
|
34810
34878
|
participant?: string | undefined;
|
|
34811
34879
|
}[]>]: never; }) | undefined;
|
|
34812
|
-
} & { [
|
|
34880
|
+
} & { [K_235 in Exclude<keyof I_1["voice_user_list"], "voice_channel_users">]: never; }) | undefined;
|
|
34813
34881
|
channel_user_list?: ({
|
|
34814
34882
|
channel_users?: {
|
|
34815
34883
|
user_id?: string | undefined;
|
|
@@ -34844,14 +34912,14 @@ export declare const ListDataSocket: {
|
|
|
34844
34912
|
added_by?: string | undefined;
|
|
34845
34913
|
} & {
|
|
34846
34914
|
user_id?: string | undefined;
|
|
34847
|
-
role_id?: (string[] & string[] & { [
|
|
34915
|
+
role_id?: (string[] & string[] & { [K_236 in Exclude<keyof I_1["channel_user_list"]["channel_users"][number]["role_id"], keyof string[]>]: never; }) | undefined;
|
|
34848
34916
|
id?: string | undefined;
|
|
34849
34917
|
thread_id?: string | undefined;
|
|
34850
34918
|
clan_nick?: string | undefined;
|
|
34851
34919
|
clan_avatar?: string | undefined;
|
|
34852
34920
|
clan_id?: string | undefined;
|
|
34853
34921
|
added_by?: string | undefined;
|
|
34854
|
-
} & { [
|
|
34922
|
+
} & { [K_237 in Exclude<keyof I_1["channel_user_list"]["channel_users"][number], keyof import("../api/api").ChannelUserList_ChannelUser>]: never; })[] & { [K_238 in Exclude<keyof I_1["channel_user_list"]["channel_users"], keyof {
|
|
34855
34923
|
user_id?: string | undefined;
|
|
34856
34924
|
role_id?: string[] | undefined;
|
|
34857
34925
|
id?: string | undefined;
|
|
@@ -34863,7 +34931,7 @@ export declare const ListDataSocket: {
|
|
|
34863
34931
|
}[]>]: never; }) | undefined;
|
|
34864
34932
|
cursor?: string | undefined;
|
|
34865
34933
|
channel_id?: string | undefined;
|
|
34866
|
-
} & { [
|
|
34934
|
+
} & { [K_239 in Exclude<keyof I_1["channel_user_list"], keyof ChannelUserList>]: never; }) | undefined;
|
|
34867
34935
|
list_channel_attachment_req?: ({
|
|
34868
34936
|
clan_id?: string | undefined;
|
|
34869
34937
|
channel_id?: string | undefined;
|
|
@@ -34882,7 +34950,7 @@ export declare const ListDataSocket: {
|
|
|
34882
34950
|
before?: number | undefined;
|
|
34883
34951
|
after?: number | undefined;
|
|
34884
34952
|
around?: number | undefined;
|
|
34885
|
-
} & { [
|
|
34953
|
+
} & { [K_240 in Exclude<keyof I_1["list_channel_attachment_req"], keyof ListChannelAttachmentRequest>]: never; }) | undefined;
|
|
34886
34954
|
channel_attachment_list?: ({
|
|
34887
34955
|
attachments?: {
|
|
34888
34956
|
id?: string | undefined;
|
|
@@ -34930,7 +34998,7 @@ export declare const ListDataSocket: {
|
|
|
34930
34998
|
message_id?: string | undefined;
|
|
34931
34999
|
width?: number | undefined;
|
|
34932
35000
|
height?: number | undefined;
|
|
34933
|
-
} & { [
|
|
35001
|
+
} & { [K_241 in Exclude<keyof I_1["channel_attachment_list"]["attachments"][number], keyof import("../api/api").ChannelAttachment>]: never; })[] & { [K_242 in Exclude<keyof I_1["channel_attachment_list"]["attachments"], keyof {
|
|
34934
35002
|
id?: string | undefined;
|
|
34935
35003
|
filename?: string | undefined;
|
|
34936
35004
|
filetype?: string | undefined;
|
|
@@ -34942,14 +35010,14 @@ export declare const ListDataSocket: {
|
|
|
34942
35010
|
width?: number | undefined;
|
|
34943
35011
|
height?: number | undefined;
|
|
34944
35012
|
}[]>]: never; }) | undefined;
|
|
34945
|
-
} & { [
|
|
35013
|
+
} & { [K_243 in Exclude<keyof I_1["channel_attachment_list"], "attachments">]: never; }) | undefined;
|
|
34946
35014
|
hashtag_dm_req?: ({
|
|
34947
35015
|
user_id?: string[] | undefined;
|
|
34948
35016
|
limit?: number | undefined;
|
|
34949
35017
|
} & {
|
|
34950
|
-
user_id?: (string[] & string[] & { [
|
|
35018
|
+
user_id?: (string[] & string[] & { [K_244 in Exclude<keyof I_1["hashtag_dm_req"]["user_id"], keyof string[]>]: never; }) | undefined;
|
|
34951
35019
|
limit?: number | undefined;
|
|
34952
|
-
} & { [
|
|
35020
|
+
} & { [K_245 in Exclude<keyof I_1["hashtag_dm_req"], keyof HashtagDmListRequest>]: never; }) | undefined;
|
|
34953
35021
|
hashtag_dm_list?: ({
|
|
34954
35022
|
hashtag_dm?: {
|
|
34955
35023
|
channel_id?: string | undefined;
|
|
@@ -34989,7 +35057,7 @@ export declare const ListDataSocket: {
|
|
|
34989
35057
|
type?: number | undefined;
|
|
34990
35058
|
channel_private?: number | undefined;
|
|
34991
35059
|
parent_id?: string | undefined;
|
|
34992
|
-
} & { [
|
|
35060
|
+
} & { [K_246 in Exclude<keyof I_1["hashtag_dm_list"]["hashtag_dm"][number], keyof import("../api/api").HashtagDm>]: never; })[] & { [K_247 in Exclude<keyof I_1["hashtag_dm_list"]["hashtag_dm"], keyof {
|
|
34993
35061
|
channel_id?: string | undefined;
|
|
34994
35062
|
channel_label?: string | undefined;
|
|
34995
35063
|
clan_id?: string | undefined;
|
|
@@ -34999,7 +35067,7 @@ export declare const ListDataSocket: {
|
|
|
34999
35067
|
channel_private?: number | undefined;
|
|
35000
35068
|
parent_id?: string | undefined;
|
|
35001
35069
|
}[]>]: never; }) | undefined;
|
|
35002
|
-
} & { [
|
|
35070
|
+
} & { [K_248 in Exclude<keyof I_1["hashtag_dm_list"], "hashtag_dm">]: never; }) | undefined;
|
|
35003
35071
|
channel_setting_req?: ({
|
|
35004
35072
|
clan_id?: string | undefined;
|
|
35005
35073
|
parent_id?: string | undefined;
|
|
@@ -35022,7 +35090,7 @@ export declare const ListDataSocket: {
|
|
|
35022
35090
|
limit?: number | undefined;
|
|
35023
35091
|
page?: number | undefined;
|
|
35024
35092
|
channel_label?: string | undefined;
|
|
35025
|
-
} & { [
|
|
35093
|
+
} & { [K_249 in Exclude<keyof I_1["channel_setting_req"], keyof ChannelSettingListRequest>]: never; }) | undefined;
|
|
35026
35094
|
channel_setting_list?: ({
|
|
35027
35095
|
clan_id?: string | undefined;
|
|
35028
35096
|
channel_count?: number | undefined;
|
|
@@ -35111,7 +35179,7 @@ export declare const ListDataSocket: {
|
|
|
35111
35179
|
channel_private?: number | undefined;
|
|
35112
35180
|
channel_type?: number | undefined;
|
|
35113
35181
|
active?: number | undefined;
|
|
35114
|
-
user_ids?: (string[] & string[] & { [
|
|
35182
|
+
user_ids?: (string[] & string[] & { [K_250 in Exclude<keyof I_1["channel_setting_list"]["channel_setting_list"][number]["user_ids"], keyof string[]>]: never; }) | undefined;
|
|
35115
35183
|
message_count?: number | undefined;
|
|
35116
35184
|
last_sent_message?: ({
|
|
35117
35185
|
id?: string | undefined;
|
|
@@ -35132,9 +35200,9 @@ export declare const ListDataSocket: {
|
|
|
35132
35200
|
reference?: string | undefined;
|
|
35133
35201
|
mention?: string | undefined;
|
|
35134
35202
|
reaction?: string | undefined;
|
|
35135
|
-
repliers?: (string[] & string[] & { [
|
|
35136
|
-
} & { [
|
|
35137
|
-
} & { [
|
|
35203
|
+
repliers?: (string[] & string[] & { [K_251 in Exclude<keyof I_1["channel_setting_list"]["channel_setting_list"][number]["last_sent_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
35204
|
+
} & { [K_252 in Exclude<keyof I_1["channel_setting_list"]["channel_setting_list"][number]["last_sent_message"], keyof ChannelMessageHeader>]: never; }) | undefined;
|
|
35205
|
+
} & { [K_253 in Exclude<keyof I_1["channel_setting_list"]["channel_setting_list"][number], keyof import("../api/api").ChannelSettingItem>]: never; })[] & { [K_254 in Exclude<keyof I_1["channel_setting_list"]["channel_setting_list"], keyof {
|
|
35138
35206
|
id?: string | undefined;
|
|
35139
35207
|
creator_id?: string | undefined;
|
|
35140
35208
|
parent_id?: string | undefined;
|
|
@@ -35158,17 +35226,17 @@ export declare const ListDataSocket: {
|
|
|
35158
35226
|
repliers?: string[] | undefined;
|
|
35159
35227
|
} | undefined;
|
|
35160
35228
|
}[]>]: never; }) | undefined;
|
|
35161
|
-
} & { [
|
|
35229
|
+
} & { [K_255 in Exclude<keyof I_1["channel_setting_list"], keyof ChannelSettingListResponse>]: never; }) | undefined;
|
|
35162
35230
|
favorite_channel_req?: ({
|
|
35163
35231
|
clan_id?: string | undefined;
|
|
35164
35232
|
} & {
|
|
35165
35233
|
clan_id?: string | undefined;
|
|
35166
|
-
} & { [
|
|
35234
|
+
} & { [K_256 in Exclude<keyof I_1["favorite_channel_req"], "clan_id">]: never; }) | undefined;
|
|
35167
35235
|
favorite_channel_list?: ({
|
|
35168
35236
|
channel_ids?: string[] | undefined;
|
|
35169
35237
|
} & {
|
|
35170
|
-
channel_ids?: (string[] & string[] & { [
|
|
35171
|
-
} & { [
|
|
35238
|
+
channel_ids?: (string[] & string[] & { [K_257 in Exclude<keyof I_1["favorite_channel_list"]["channel_ids"], keyof string[]>]: never; }) | undefined;
|
|
35239
|
+
} & { [K_258 in Exclude<keyof I_1["favorite_channel_list"], "channel_ids">]: never; }) | undefined;
|
|
35172
35240
|
search_thread_req?: ({
|
|
35173
35241
|
clan_id?: string | undefined;
|
|
35174
35242
|
channel_id?: string | undefined;
|
|
@@ -35177,12 +35245,12 @@ export declare const ListDataSocket: {
|
|
|
35177
35245
|
clan_id?: string | undefined;
|
|
35178
35246
|
channel_id?: string | undefined;
|
|
35179
35247
|
label?: string | undefined;
|
|
35180
|
-
} & { [
|
|
35248
|
+
} & { [K_259 in Exclude<keyof I_1["search_thread_req"], keyof SearchThreadRequest>]: never; }) | undefined;
|
|
35181
35249
|
notification_channel?: ({
|
|
35182
35250
|
channel_id?: string | undefined;
|
|
35183
35251
|
} & {
|
|
35184
35252
|
channel_id?: string | undefined;
|
|
35185
|
-
} & { [
|
|
35253
|
+
} & { [K_260 in Exclude<keyof I_1["notification_channel"], "channel_id">]: never; }) | undefined;
|
|
35186
35254
|
notificaion_user_channel?: ({
|
|
35187
35255
|
id?: string | undefined;
|
|
35188
35256
|
notification_setting_type?: number | undefined;
|
|
@@ -35195,24 +35263,24 @@ export declare const ListDataSocket: {
|
|
|
35195
35263
|
time_mute?: Date | undefined;
|
|
35196
35264
|
active?: number | undefined;
|
|
35197
35265
|
channel_id?: string | undefined;
|
|
35198
|
-
} & { [
|
|
35266
|
+
} & { [K_261 in Exclude<keyof I_1["notificaion_user_channel"], keyof NotificationUserChannel>]: never; }) | undefined;
|
|
35199
35267
|
notification_category?: ({
|
|
35200
35268
|
category_id?: string | undefined;
|
|
35201
35269
|
} & {
|
|
35202
35270
|
category_id?: string | undefined;
|
|
35203
|
-
} & { [
|
|
35271
|
+
} & { [K_262 in Exclude<keyof I_1["notification_category"], "category_id">]: never; }) | undefined;
|
|
35204
35272
|
notification_clan?: ({
|
|
35205
35273
|
clan_id?: string | undefined;
|
|
35206
35274
|
} & {
|
|
35207
35275
|
clan_id?: string | undefined;
|
|
35208
|
-
} & { [
|
|
35276
|
+
} & { [K_263 in Exclude<keyof I_1["notification_clan"], "clan_id">]: never; }) | undefined;
|
|
35209
35277
|
notification_setting?: ({
|
|
35210
35278
|
id?: string | undefined;
|
|
35211
35279
|
notification_setting_type?: number | undefined;
|
|
35212
35280
|
} & {
|
|
35213
35281
|
id?: string | undefined;
|
|
35214
35282
|
notification_setting_type?: number | undefined;
|
|
35215
|
-
} & { [
|
|
35283
|
+
} & { [K_264 in Exclude<keyof I_1["notification_setting"], keyof NotificationSetting>]: never; }) | undefined;
|
|
35216
35284
|
notification_message?: ({
|
|
35217
35285
|
id?: string | undefined;
|
|
35218
35286
|
user_id?: string | undefined;
|
|
@@ -35221,7 +35289,7 @@ export declare const ListDataSocket: {
|
|
|
35221
35289
|
id?: string | undefined;
|
|
35222
35290
|
user_id?: string | undefined;
|
|
35223
35291
|
channel_id?: string | undefined;
|
|
35224
|
-
} & { [
|
|
35292
|
+
} & { [K_265 in Exclude<keyof I_1["notification_message"], keyof NotifiReactMessage>]: never; }) | undefined;
|
|
35225
35293
|
noti_channel_cat_setting_list?: ({
|
|
35226
35294
|
notification_channel_category_settings_list?: {
|
|
35227
35295
|
id?: string | undefined;
|
|
@@ -35249,14 +35317,14 @@ export declare const ListDataSocket: {
|
|
|
35249
35317
|
notification_setting_type?: number | undefined;
|
|
35250
35318
|
channel_category_title?: string | undefined;
|
|
35251
35319
|
action?: number | undefined;
|
|
35252
|
-
} & { [
|
|
35320
|
+
} & { [K_266 in Exclude<keyof I_1["noti_channel_cat_setting_list"]["notification_channel_category_settings_list"][number], keyof import("../api/api").NotificationChannelCategorySetting>]: never; })[] & { [K_267 in Exclude<keyof I_1["noti_channel_cat_setting_list"]["notification_channel_category_settings_list"], keyof {
|
|
35253
35321
|
id?: string | undefined;
|
|
35254
35322
|
channel_category_label?: string | undefined;
|
|
35255
35323
|
notification_setting_type?: number | undefined;
|
|
35256
35324
|
channel_category_title?: string | undefined;
|
|
35257
35325
|
action?: number | undefined;
|
|
35258
35326
|
}[]>]: never; }) | undefined;
|
|
35259
|
-
} & { [
|
|
35327
|
+
} & { [K_268 in Exclude<keyof I_1["noti_channel_cat_setting_list"], "notification_channel_category_settings_list">]: never; }) | undefined;
|
|
35260
35328
|
list_notification_req?: ({
|
|
35261
35329
|
limit?: number | undefined;
|
|
35262
35330
|
clan_id?: string | undefined;
|
|
@@ -35269,7 +35337,7 @@ export declare const ListDataSocket: {
|
|
|
35269
35337
|
notification_id?: string | undefined;
|
|
35270
35338
|
category?: number | undefined;
|
|
35271
35339
|
direction?: number | undefined;
|
|
35272
|
-
} & { [
|
|
35340
|
+
} & { [K_269 in Exclude<keyof I_1["list_notification_req"], keyof ListNotificationsRequest>]: never; }) | undefined;
|
|
35273
35341
|
notification_list?: ({
|
|
35274
35342
|
notifications?: {
|
|
35275
35343
|
id?: string | undefined;
|
|
@@ -35549,8 +35617,8 @@ export declare const ListDataSocket: {
|
|
|
35549
35617
|
creator_id?: string | undefined;
|
|
35550
35618
|
channel_label?: string | undefined;
|
|
35551
35619
|
channel_private?: number | undefined;
|
|
35552
|
-
avatars?: (string[] & string[] & { [
|
|
35553
|
-
user_ids?: (string[] & string[] & { [
|
|
35620
|
+
avatars?: (string[] & string[] & { [K_270 in Exclude<keyof I_1["notification_list"]["notifications"][number]["channel"]["avatars"], keyof string[]>]: never; }) | undefined;
|
|
35621
|
+
user_ids?: (string[] & string[] & { [K_271 in Exclude<keyof I_1["notification_list"]["notifications"][number]["channel"]["user_ids"], keyof string[]>]: never; }) | undefined;
|
|
35554
35622
|
last_sent_message?: ({
|
|
35555
35623
|
id?: string | undefined;
|
|
35556
35624
|
timestamp_seconds?: number | undefined;
|
|
@@ -35570,8 +35638,8 @@ export declare const ListDataSocket: {
|
|
|
35570
35638
|
reference?: string | undefined;
|
|
35571
35639
|
mention?: string | undefined;
|
|
35572
35640
|
reaction?: string | undefined;
|
|
35573
|
-
repliers?: (string[] & string[] & { [
|
|
35574
|
-
} & { [
|
|
35641
|
+
repliers?: (string[] & string[] & { [K_272 in Exclude<keyof I_1["notification_list"]["notifications"][number]["channel"]["last_sent_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
35642
|
+
} & { [K_273 in Exclude<keyof I_1["notification_list"]["notifications"][number]["channel"]["last_sent_message"], keyof ChannelMessageHeader>]: never; }) | undefined;
|
|
35575
35643
|
last_seen_message?: ({
|
|
35576
35644
|
id?: string | undefined;
|
|
35577
35645
|
timestamp_seconds?: number | undefined;
|
|
@@ -35591,18 +35659,18 @@ export declare const ListDataSocket: {
|
|
|
35591
35659
|
reference?: string | undefined;
|
|
35592
35660
|
mention?: string | undefined;
|
|
35593
35661
|
reaction?: string | undefined;
|
|
35594
|
-
repliers?: (string[] & string[] & { [
|
|
35595
|
-
} & { [
|
|
35596
|
-
onlines?: (boolean[] & boolean[] & { [
|
|
35662
|
+
repliers?: (string[] & string[] & { [K_274 in Exclude<keyof I_1["notification_list"]["notifications"][number]["channel"]["last_seen_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
35663
|
+
} & { [K_275 in Exclude<keyof I_1["notification_list"]["notifications"][number]["channel"]["last_seen_message"], keyof ChannelMessageHeader>]: never; }) | undefined;
|
|
35664
|
+
onlines?: (boolean[] & boolean[] & { [K_276 in Exclude<keyof I_1["notification_list"]["notifications"][number]["channel"]["onlines"], keyof boolean[]>]: never; }) | undefined;
|
|
35597
35665
|
meeting_code?: string | undefined;
|
|
35598
35666
|
count_mess_unread?: number | undefined;
|
|
35599
35667
|
active?: number | undefined;
|
|
35600
35668
|
last_pin_message?: string | undefined;
|
|
35601
|
-
usernames?: (string[] & string[] & { [
|
|
35669
|
+
usernames?: (string[] & string[] & { [K_277 in Exclude<keyof I_1["notification_list"]["notifications"][number]["channel"]["usernames"], keyof string[]>]: never; }) | undefined;
|
|
35602
35670
|
creator_name?: string | undefined;
|
|
35603
35671
|
create_time_seconds?: number | undefined;
|
|
35604
35672
|
update_time_seconds?: number | undefined;
|
|
35605
|
-
display_names?: (string[] & string[] & { [
|
|
35673
|
+
display_names?: (string[] & string[] & { [K_278 in Exclude<keyof I_1["notification_list"]["notifications"][number]["channel"]["display_names"], keyof string[]>]: never; }) | undefined;
|
|
35606
35674
|
channel_avatar?: string | undefined;
|
|
35607
35675
|
clan_name?: string | undefined;
|
|
35608
35676
|
app_id?: string | undefined;
|
|
@@ -35611,10 +35679,10 @@ export declare const ListDataSocket: {
|
|
|
35611
35679
|
topic?: string | undefined;
|
|
35612
35680
|
e2ee?: number | undefined;
|
|
35613
35681
|
member_count?: number | undefined;
|
|
35614
|
-
} & { [
|
|
35682
|
+
} & { [K_279 in Exclude<keyof I_1["notification_list"]["notifications"][number]["channel"], keyof ChannelDescription1>]: never; }) | undefined;
|
|
35615
35683
|
topic_id?: string | undefined;
|
|
35616
35684
|
category?: number | undefined;
|
|
35617
|
-
} & { [
|
|
35685
|
+
} & { [K_280 in Exclude<keyof I_1["notification_list"]["notifications"][number], keyof Notification>]: never; })[] & { [K_281 in Exclude<keyof I_1["notification_list"]["notifications"], keyof {
|
|
35618
35686
|
id?: string | undefined;
|
|
35619
35687
|
subject?: string | undefined;
|
|
35620
35688
|
content?: string | undefined;
|
|
@@ -35683,7 +35751,7 @@ export declare const ListDataSocket: {
|
|
|
35683
35751
|
category?: number | undefined;
|
|
35684
35752
|
}[]>]: never; }) | undefined;
|
|
35685
35753
|
cacheable_cursor?: string | undefined;
|
|
35686
|
-
} & { [
|
|
35754
|
+
} & { [K_282 in Exclude<keyof I_1["notification_list"], keyof NotificationList>]: never; }) | undefined;
|
|
35687
35755
|
sticker_list?: ({
|
|
35688
35756
|
stickers?: {
|
|
35689
35757
|
id?: string | undefined;
|
|
@@ -35735,7 +35803,7 @@ export declare const ListDataSocket: {
|
|
|
35735
35803
|
clan_name?: string | undefined;
|
|
35736
35804
|
media_type?: number | undefined;
|
|
35737
35805
|
is_for_sale?: boolean | undefined;
|
|
35738
|
-
} & { [
|
|
35806
|
+
} & { [K_283 in Exclude<keyof I_1["sticker_list"]["stickers"][number], keyof import("../api/api").ClanSticker>]: never; })[] & { [K_284 in Exclude<keyof I_1["sticker_list"]["stickers"], keyof {
|
|
35739
35807
|
id?: string | undefined;
|
|
35740
35808
|
source?: string | undefined;
|
|
35741
35809
|
shortname?: string | undefined;
|
|
@@ -35748,7 +35816,7 @@ export declare const ListDataSocket: {
|
|
|
35748
35816
|
media_type?: number | undefined;
|
|
35749
35817
|
is_for_sale?: boolean | undefined;
|
|
35750
35818
|
}[]>]: never; }) | undefined;
|
|
35751
|
-
} & { [
|
|
35819
|
+
} & { [K_285 in Exclude<keyof I_1["sticker_list"], "stickers">]: never; }) | undefined;
|
|
35752
35820
|
emoji_recent_list?: ({
|
|
35753
35821
|
emoji_recents?: {
|
|
35754
35822
|
emoji_recents_id?: string | undefined;
|
|
@@ -35768,17 +35836,17 @@ export declare const ListDataSocket: {
|
|
|
35768
35836
|
emoji_recents_id?: string | undefined;
|
|
35769
35837
|
emoji_id?: string | undefined;
|
|
35770
35838
|
update_time?: Date | undefined;
|
|
35771
|
-
} & { [
|
|
35839
|
+
} & { [K_286 in Exclude<keyof I_1["emoji_recent_list"]["emoji_recents"][number], keyof import("../api/api").EmojiRecent>]: never; })[] & { [K_287 in Exclude<keyof I_1["emoji_recent_list"]["emoji_recents"], keyof {
|
|
35772
35840
|
emoji_recents_id?: string | undefined;
|
|
35773
35841
|
emoji_id?: string | undefined;
|
|
35774
35842
|
update_time?: Date | undefined;
|
|
35775
35843
|
}[]>]: never; }) | undefined;
|
|
35776
|
-
} & { [
|
|
35844
|
+
} & { [K_288 in Exclude<keyof I_1["emoji_recent_list"], "emoji_recents">]: never; }) | undefined;
|
|
35777
35845
|
clan_webhook_req?: ({
|
|
35778
35846
|
clan_id?: string | undefined;
|
|
35779
35847
|
} & {
|
|
35780
35848
|
clan_id?: string | undefined;
|
|
35781
|
-
} & { [
|
|
35849
|
+
} & { [K_289 in Exclude<keyof I_1["clan_webhook_req"], "clan_id">]: never; }) | undefined;
|
|
35782
35850
|
clan_webhook_list?: ({
|
|
35783
35851
|
list_clan_webhooks?: {
|
|
35784
35852
|
id?: string | undefined;
|
|
@@ -35822,7 +35890,7 @@ export declare const ListDataSocket: {
|
|
|
35822
35890
|
avatar?: string | undefined;
|
|
35823
35891
|
create_time?: string | undefined;
|
|
35824
35892
|
update_time?: string | undefined;
|
|
35825
|
-
} & { [
|
|
35893
|
+
} & { [K_290 in Exclude<keyof I_1["clan_webhook_list"]["list_clan_webhooks"][number], keyof import("../api/api").ClanWebhook>]: never; })[] & { [K_291 in Exclude<keyof I_1["clan_webhook_list"]["list_clan_webhooks"], keyof {
|
|
35826
35894
|
id?: string | undefined;
|
|
35827
35895
|
webhook_name?: string | undefined;
|
|
35828
35896
|
clan_id?: string | undefined;
|
|
@@ -35833,14 +35901,14 @@ export declare const ListDataSocket: {
|
|
|
35833
35901
|
create_time?: string | undefined;
|
|
35834
35902
|
update_time?: string | undefined;
|
|
35835
35903
|
}[]>]: never; }) | undefined;
|
|
35836
|
-
} & { [
|
|
35904
|
+
} & { [K_292 in Exclude<keyof I_1["clan_webhook_list"], "list_clan_webhooks">]: never; }) | undefined;
|
|
35837
35905
|
webhook_list_req?: ({
|
|
35838
35906
|
channel_id?: string | undefined;
|
|
35839
35907
|
clan_id?: string | undefined;
|
|
35840
35908
|
} & {
|
|
35841
35909
|
channel_id?: string | undefined;
|
|
35842
35910
|
clan_id?: string | undefined;
|
|
35843
|
-
} & { [
|
|
35911
|
+
} & { [K_293 in Exclude<keyof I_1["webhook_list_req"], keyof WebhookListRequest>]: never; }) | undefined;
|
|
35844
35912
|
webhook_list?: ({
|
|
35845
35913
|
webhooks?: {
|
|
35846
35914
|
id?: string | undefined;
|
|
@@ -35892,7 +35960,7 @@ export declare const ListDataSocket: {
|
|
|
35892
35960
|
avatar?: string | undefined;
|
|
35893
35961
|
status?: number | undefined;
|
|
35894
35962
|
clan_id?: string | undefined;
|
|
35895
|
-
} & { [
|
|
35963
|
+
} & { [K_294 in Exclude<keyof I_1["webhook_list"]["webhooks"][number], keyof Webhook>]: never; })[] & { [K_295 in Exclude<keyof I_1["webhook_list"]["webhooks"], keyof {
|
|
35896
35964
|
id?: string | undefined;
|
|
35897
35965
|
webhook_name?: string | undefined;
|
|
35898
35966
|
channel_id?: string | undefined;
|
|
@@ -35905,12 +35973,12 @@ export declare const ListDataSocket: {
|
|
|
35905
35973
|
status?: number | undefined;
|
|
35906
35974
|
clan_id?: string | undefined;
|
|
35907
35975
|
}[]>]: never; }) | undefined;
|
|
35908
|
-
} & { [
|
|
35976
|
+
} & { [K_296 in Exclude<keyof I_1["webhook_list"], "webhooks">]: never; }) | undefined;
|
|
35909
35977
|
permission_list_req?: ({
|
|
35910
35978
|
role_id?: string | undefined;
|
|
35911
35979
|
} & {
|
|
35912
35980
|
role_id?: string | undefined;
|
|
35913
|
-
} & { [
|
|
35981
|
+
} & { [K_297 in Exclude<keyof I_1["permission_list_req"], "role_id">]: never; }) | undefined;
|
|
35914
35982
|
permission_list?: ({
|
|
35915
35983
|
permissions?: {
|
|
35916
35984
|
id?: string | undefined;
|
|
@@ -35947,7 +36015,7 @@ export declare const ListDataSocket: {
|
|
|
35947
36015
|
active?: number | undefined;
|
|
35948
36016
|
scope?: number | undefined;
|
|
35949
36017
|
level?: number | undefined;
|
|
35950
|
-
} & { [
|
|
36018
|
+
} & { [K_298 in Exclude<keyof I_1["permission_list"]["permissions"][number], keyof import("../api/api").Permission>]: never; })[] & { [K_299 in Exclude<keyof I_1["permission_list"]["permissions"], keyof {
|
|
35951
36019
|
id?: string | undefined;
|
|
35952
36020
|
title?: string | undefined;
|
|
35953
36021
|
slug?: string | undefined;
|
|
@@ -35957,7 +36025,7 @@ export declare const ListDataSocket: {
|
|
|
35957
36025
|
level?: number | undefined;
|
|
35958
36026
|
}[]>]: never; }) | undefined;
|
|
35959
36027
|
max_level_permission?: number | undefined;
|
|
35960
|
-
} & { [
|
|
36028
|
+
} & { [K_300 in Exclude<keyof I_1["permission_list"], keyof PermissionList>]: never; }) | undefined;
|
|
35961
36029
|
role_user_req?: ({
|
|
35962
36030
|
role_id?: string | undefined;
|
|
35963
36031
|
limit?: number | undefined;
|
|
@@ -35966,7 +36034,7 @@ export declare const ListDataSocket: {
|
|
|
35966
36034
|
role_id?: string | undefined;
|
|
35967
36035
|
limit?: number | undefined;
|
|
35968
36036
|
cursor?: string | undefined;
|
|
35969
|
-
} & { [
|
|
36037
|
+
} & { [K_301 in Exclude<keyof I_1["role_user_req"], keyof ListRoleUsersRequest>]: never; }) | undefined;
|
|
35970
36038
|
role_user_list?: ({
|
|
35971
36039
|
role_users?: {
|
|
35972
36040
|
id?: string | undefined;
|
|
@@ -36003,7 +36071,7 @@ export declare const ListDataSocket: {
|
|
|
36003
36071
|
lang_tag?: string | undefined;
|
|
36004
36072
|
location?: string | undefined;
|
|
36005
36073
|
online?: boolean | undefined;
|
|
36006
|
-
} & { [
|
|
36074
|
+
} & { [K_302 in Exclude<keyof I_1["role_user_list"]["role_users"][number], keyof import("../api/api").RoleUserList_RoleUser>]: never; })[] & { [K_303 in Exclude<keyof I_1["role_user_list"]["role_users"], keyof {
|
|
36007
36075
|
id?: string | undefined;
|
|
36008
36076
|
username?: string | undefined;
|
|
36009
36077
|
display_name?: string | undefined;
|
|
@@ -36013,14 +36081,14 @@ export declare const ListDataSocket: {
|
|
|
36013
36081
|
online?: boolean | undefined;
|
|
36014
36082
|
}[]>]: never; }) | undefined;
|
|
36015
36083
|
cursor?: string | undefined;
|
|
36016
|
-
} & { [
|
|
36084
|
+
} & { [K_304 in Exclude<keyof I_1["role_user_list"], keyof RoleUserList>]: never; }) | undefined;
|
|
36017
36085
|
permission_user_req?: ({
|
|
36018
36086
|
clan_id?: string | undefined;
|
|
36019
36087
|
channel_id?: string | undefined;
|
|
36020
36088
|
} & {
|
|
36021
36089
|
clan_id?: string | undefined;
|
|
36022
36090
|
channel_id?: string | undefined;
|
|
36023
|
-
} & { [
|
|
36091
|
+
} & { [K_305 in Exclude<keyof I_1["permission_user_req"], keyof ListPermissionOfUsersRequest>]: never; }) | undefined;
|
|
36024
36092
|
role_list?: ({
|
|
36025
36093
|
roles?: {
|
|
36026
36094
|
id?: string | undefined;
|
|
@@ -36195,7 +36263,7 @@ export declare const ListDataSocket: {
|
|
|
36195
36263
|
lang_tag?: string | undefined;
|
|
36196
36264
|
location?: string | undefined;
|
|
36197
36265
|
online?: boolean | undefined;
|
|
36198
|
-
} & { [
|
|
36266
|
+
} & { [K_306 in Exclude<keyof I_1["role_list"]["roles"][number]["role_user_list"]["role_users"][number], keyof import("../api/api").RoleUserList_RoleUser>]: never; })[] & { [K_307 in Exclude<keyof I_1["role_list"]["roles"][number]["role_user_list"]["role_users"], keyof {
|
|
36199
36267
|
id?: string | undefined;
|
|
36200
36268
|
username?: string | undefined;
|
|
36201
36269
|
display_name?: string | undefined;
|
|
@@ -36205,7 +36273,7 @@ export declare const ListDataSocket: {
|
|
|
36205
36273
|
online?: boolean | undefined;
|
|
36206
36274
|
}[]>]: never; }) | undefined;
|
|
36207
36275
|
cursor?: string | undefined;
|
|
36208
|
-
} & { [
|
|
36276
|
+
} & { [K_308 in Exclude<keyof I_1["role_list"]["roles"][number]["role_user_list"], keyof RoleUserList>]: never; }) | undefined;
|
|
36209
36277
|
permission_list?: ({
|
|
36210
36278
|
permissions?: {
|
|
36211
36279
|
id?: string | undefined;
|
|
@@ -36242,7 +36310,7 @@ export declare const ListDataSocket: {
|
|
|
36242
36310
|
active?: number | undefined;
|
|
36243
36311
|
scope?: number | undefined;
|
|
36244
36312
|
level?: number | undefined;
|
|
36245
|
-
} & { [
|
|
36313
|
+
} & { [K_309 in Exclude<keyof I_1["role_list"]["roles"][number]["permission_list"]["permissions"][number], keyof import("../api/api").Permission>]: never; })[] & { [K_310 in Exclude<keyof I_1["role_list"]["roles"][number]["permission_list"]["permissions"], keyof {
|
|
36246
36314
|
id?: string | undefined;
|
|
36247
36315
|
title?: string | undefined;
|
|
36248
36316
|
slug?: string | undefined;
|
|
@@ -36252,12 +36320,12 @@ export declare const ListDataSocket: {
|
|
|
36252
36320
|
level?: number | undefined;
|
|
36253
36321
|
}[]>]: never; }) | undefined;
|
|
36254
36322
|
max_level_permission?: number | undefined;
|
|
36255
|
-
} & { [
|
|
36323
|
+
} & { [K_311 in Exclude<keyof I_1["role_list"]["roles"][number]["permission_list"], keyof PermissionList>]: never; }) | undefined;
|
|
36256
36324
|
role_channel_active?: number | undefined;
|
|
36257
|
-
channel_ids?: (string[] & string[] & { [
|
|
36325
|
+
channel_ids?: (string[] & string[] & { [K_312 in Exclude<keyof I_1["role_list"]["roles"][number]["channel_ids"], keyof string[]>]: never; }) | undefined;
|
|
36258
36326
|
max_level_permission?: number | undefined;
|
|
36259
36327
|
order_role?: number | undefined;
|
|
36260
|
-
} & { [
|
|
36328
|
+
} & { [K_313 in Exclude<keyof I_1["role_list"]["roles"][number], keyof Role>]: never; })[] & { [K_314 in Exclude<keyof I_1["role_list"]["roles"], keyof {
|
|
36261
36329
|
id?: string | undefined;
|
|
36262
36330
|
title?: string | undefined;
|
|
36263
36331
|
color?: string | undefined;
|
|
@@ -36301,7 +36369,7 @@ export declare const ListDataSocket: {
|
|
|
36301
36369
|
next_cursor?: string | undefined;
|
|
36302
36370
|
prev_cursor?: string | undefined;
|
|
36303
36371
|
cacheable_cursor?: string | undefined;
|
|
36304
|
-
} & { [
|
|
36372
|
+
} & { [K_315 in Exclude<keyof I_1["role_list"], keyof RoleList>]: never; }) | undefined;
|
|
36305
36373
|
role_list_event_req?: ({
|
|
36306
36374
|
clan_id?: string | undefined;
|
|
36307
36375
|
limit?: number | undefined;
|
|
@@ -36312,7 +36380,7 @@ export declare const ListDataSocket: {
|
|
|
36312
36380
|
limit?: number | undefined;
|
|
36313
36381
|
state?: number | undefined;
|
|
36314
36382
|
cursor?: string | undefined;
|
|
36315
|
-
} & { [
|
|
36383
|
+
} & { [K_316 in Exclude<keyof I_1["role_list_event_req"], keyof RoleListEventRequest>]: never; }) | undefined;
|
|
36316
36384
|
role_event_list?: ({
|
|
36317
36385
|
limit?: number | undefined;
|
|
36318
36386
|
state?: number | undefined;
|
|
@@ -36543,7 +36611,7 @@ export declare const ListDataSocket: {
|
|
|
36543
36611
|
lang_tag?: string | undefined;
|
|
36544
36612
|
location?: string | undefined;
|
|
36545
36613
|
online?: boolean | undefined;
|
|
36546
|
-
} & { [
|
|
36614
|
+
} & { [K_317 in Exclude<keyof I_1["role_event_list"]["roles"]["roles"][number]["role_user_list"]["role_users"][number], keyof import("../api/api").RoleUserList_RoleUser>]: never; })[] & { [K_318 in Exclude<keyof I_1["role_event_list"]["roles"]["roles"][number]["role_user_list"]["role_users"], keyof {
|
|
36547
36615
|
id?: string | undefined;
|
|
36548
36616
|
username?: string | undefined;
|
|
36549
36617
|
display_name?: string | undefined;
|
|
@@ -36553,7 +36621,7 @@ export declare const ListDataSocket: {
|
|
|
36553
36621
|
online?: boolean | undefined;
|
|
36554
36622
|
}[]>]: never; }) | undefined;
|
|
36555
36623
|
cursor?: string | undefined;
|
|
36556
|
-
} & { [
|
|
36624
|
+
} & { [K_319 in Exclude<keyof I_1["role_event_list"]["roles"]["roles"][number]["role_user_list"], keyof RoleUserList>]: never; }) | undefined;
|
|
36557
36625
|
permission_list?: ({
|
|
36558
36626
|
permissions?: {
|
|
36559
36627
|
id?: string | undefined;
|
|
@@ -36590,7 +36658,7 @@ export declare const ListDataSocket: {
|
|
|
36590
36658
|
active?: number | undefined;
|
|
36591
36659
|
scope?: number | undefined;
|
|
36592
36660
|
level?: number | undefined;
|
|
36593
|
-
} & { [
|
|
36661
|
+
} & { [K_320 in Exclude<keyof I_1["role_event_list"]["roles"]["roles"][number]["permission_list"]["permissions"][number], keyof import("../api/api").Permission>]: never; })[] & { [K_321 in Exclude<keyof I_1["role_event_list"]["roles"]["roles"][number]["permission_list"]["permissions"], keyof {
|
|
36594
36662
|
id?: string | undefined;
|
|
36595
36663
|
title?: string | undefined;
|
|
36596
36664
|
slug?: string | undefined;
|
|
@@ -36600,12 +36668,12 @@ export declare const ListDataSocket: {
|
|
|
36600
36668
|
level?: number | undefined;
|
|
36601
36669
|
}[]>]: never; }) | undefined;
|
|
36602
36670
|
max_level_permission?: number | undefined;
|
|
36603
|
-
} & { [
|
|
36671
|
+
} & { [K_322 in Exclude<keyof I_1["role_event_list"]["roles"]["roles"][number]["permission_list"], keyof PermissionList>]: never; }) | undefined;
|
|
36604
36672
|
role_channel_active?: number | undefined;
|
|
36605
|
-
channel_ids?: (string[] & string[] & { [
|
|
36673
|
+
channel_ids?: (string[] & string[] & { [K_323 in Exclude<keyof I_1["role_event_list"]["roles"]["roles"][number]["channel_ids"], keyof string[]>]: never; }) | undefined;
|
|
36606
36674
|
max_level_permission?: number | undefined;
|
|
36607
36675
|
order_role?: number | undefined;
|
|
36608
|
-
} & { [
|
|
36676
|
+
} & { [K_324 in Exclude<keyof I_1["role_event_list"]["roles"]["roles"][number], keyof Role>]: never; })[] & { [K_325 in Exclude<keyof I_1["role_event_list"]["roles"]["roles"], keyof {
|
|
36609
36677
|
id?: string | undefined;
|
|
36610
36678
|
title?: string | undefined;
|
|
36611
36679
|
color?: string | undefined;
|
|
@@ -36649,15 +36717,15 @@ export declare const ListDataSocket: {
|
|
|
36649
36717
|
next_cursor?: string | undefined;
|
|
36650
36718
|
prev_cursor?: string | undefined;
|
|
36651
36719
|
cacheable_cursor?: string | undefined;
|
|
36652
|
-
} & { [
|
|
36653
|
-
} & { [
|
|
36720
|
+
} & { [K_326 in Exclude<keyof I_1["role_event_list"]["roles"], keyof RoleList>]: never; }) | undefined;
|
|
36721
|
+
} & { [K_327 in Exclude<keyof I_1["role_event_list"], keyof RoleListEventResponse>]: never; }) | undefined;
|
|
36654
36722
|
user_permission_req?: ({
|
|
36655
36723
|
clan_id?: string | undefined;
|
|
36656
36724
|
channel_id?: string | undefined;
|
|
36657
36725
|
} & {
|
|
36658
36726
|
clan_id?: string | undefined;
|
|
36659
36727
|
channel_id?: string | undefined;
|
|
36660
|
-
} & { [
|
|
36728
|
+
} & { [K_328 in Exclude<keyof I_1["user_permission_req"], keyof UserPermissionInChannelListRequest>]: never; }) | undefined;
|
|
36661
36729
|
user_permission_list?: ({
|
|
36662
36730
|
clan_id?: string | undefined;
|
|
36663
36731
|
channel_id?: string | undefined;
|
|
@@ -36712,7 +36780,7 @@ export declare const ListDataSocket: {
|
|
|
36712
36780
|
active?: number | undefined;
|
|
36713
36781
|
scope?: number | undefined;
|
|
36714
36782
|
level?: number | undefined;
|
|
36715
|
-
} & { [
|
|
36783
|
+
} & { [K_329 in Exclude<keyof I_1["user_permission_list"]["permissions"]["permissions"][number], keyof import("../api/api").Permission>]: never; })[] & { [K_330 in Exclude<keyof I_1["user_permission_list"]["permissions"]["permissions"], keyof {
|
|
36716
36784
|
id?: string | undefined;
|
|
36717
36785
|
title?: string | undefined;
|
|
36718
36786
|
slug?: string | undefined;
|
|
@@ -36722,8 +36790,8 @@ export declare const ListDataSocket: {
|
|
|
36722
36790
|
level?: number | undefined;
|
|
36723
36791
|
}[]>]: never; }) | undefined;
|
|
36724
36792
|
max_level_permission?: number | undefined;
|
|
36725
|
-
} & { [
|
|
36726
|
-
} & { [
|
|
36793
|
+
} & { [K_331 in Exclude<keyof I_1["user_permission_list"]["permissions"], keyof PermissionList>]: never; }) | undefined;
|
|
36794
|
+
} & { [K_332 in Exclude<keyof I_1["user_permission_list"], keyof UserPermissionInChannelListResponse>]: never; }) | undefined;
|
|
36727
36795
|
permission_role_req?: ({
|
|
36728
36796
|
role_id?: string | undefined;
|
|
36729
36797
|
channel_id?: string | undefined;
|
|
@@ -36732,7 +36800,7 @@ export declare const ListDataSocket: {
|
|
|
36732
36800
|
role_id?: string | undefined;
|
|
36733
36801
|
channel_id?: string | undefined;
|
|
36734
36802
|
user_id?: string | undefined;
|
|
36735
|
-
} & { [
|
|
36803
|
+
} & { [K_333 in Exclude<keyof I_1["permission_role_req"], keyof PermissionRoleChannelListEventRequest>]: never; }) | undefined;
|
|
36736
36804
|
permission_role_list?: ({
|
|
36737
36805
|
role_id?: string | undefined;
|
|
36738
36806
|
channel_id?: string | undefined;
|
|
@@ -36754,11 +36822,11 @@ export declare const ListDataSocket: {
|
|
|
36754
36822
|
} & {
|
|
36755
36823
|
permission_id?: string | undefined;
|
|
36756
36824
|
active?: boolean | undefined;
|
|
36757
|
-
} & { [
|
|
36825
|
+
} & { [K_334 in Exclude<keyof I_1["permission_role_list"]["permission_role_channel"][number], keyof import("../api/api").PermissionRoleChannel>]: never; })[] & { [K_335 in Exclude<keyof I_1["permission_role_list"]["permission_role_channel"], keyof {
|
|
36758
36826
|
permission_id?: string | undefined;
|
|
36759
36827
|
active?: boolean | undefined;
|
|
36760
36828
|
}[]>]: never; }) | undefined;
|
|
36761
|
-
} & { [
|
|
36829
|
+
} & { [K_336 in Exclude<keyof I_1["permission_role_list"], keyof PermissionRoleChannelListEventResponse>]: never; }) | undefined;
|
|
36762
36830
|
emoji_list?: ({
|
|
36763
36831
|
emoji_list?: {
|
|
36764
36832
|
id?: string | undefined;
|
|
@@ -36802,7 +36870,7 @@ export declare const ListDataSocket: {
|
|
|
36802
36870
|
logo?: string | undefined;
|
|
36803
36871
|
clan_name?: string | undefined;
|
|
36804
36872
|
is_for_sale?: boolean | undefined;
|
|
36805
|
-
} & { [
|
|
36873
|
+
} & { [K_337 in Exclude<keyof I_1["emoji_list"]["emoji_list"][number], keyof import("../api/api").ClanEmoji>]: never; })[] & { [K_338 in Exclude<keyof I_1["emoji_list"]["emoji_list"], keyof {
|
|
36806
36874
|
id?: string | undefined;
|
|
36807
36875
|
src?: string | undefined;
|
|
36808
36876
|
shortname?: string | undefined;
|
|
@@ -36813,7 +36881,7 @@ export declare const ListDataSocket: {
|
|
|
36813
36881
|
clan_name?: string | undefined;
|
|
36814
36882
|
is_for_sale?: boolean | undefined;
|
|
36815
36883
|
}[]>]: never; }) | undefined;
|
|
36816
|
-
} & { [
|
|
36884
|
+
} & { [K_339 in Exclude<keyof I_1["emoji_list"], "emoji_list">]: never; }) | undefined;
|
|
36817
36885
|
list_friend_req?: ({
|
|
36818
36886
|
limit?: number | undefined;
|
|
36819
36887
|
state?: number | undefined;
|
|
@@ -36822,7 +36890,7 @@ export declare const ListDataSocket: {
|
|
|
36822
36890
|
limit?: number | undefined;
|
|
36823
36891
|
state?: number | undefined;
|
|
36824
36892
|
cursor?: string | undefined;
|
|
36825
|
-
} & { [
|
|
36893
|
+
} & { [K_340 in Exclude<keyof I_1["list_friend_req"], keyof ListFriendsRequest>]: never; }) | undefined;
|
|
36826
36894
|
friend_list?: ({
|
|
36827
36895
|
friends?: {
|
|
36828
36896
|
user?: {
|
|
@@ -36946,13 +37014,13 @@ export declare const ListDataSocket: {
|
|
|
36946
37014
|
is_mobile?: boolean | undefined;
|
|
36947
37015
|
dob?: Date | undefined;
|
|
36948
37016
|
mezon_id?: string | undefined;
|
|
36949
|
-
list_nick_names?: (string[] & string[] & { [
|
|
37017
|
+
list_nick_names?: (string[] & string[] & { [K_341 in Exclude<keyof I_1["friend_list"]["friends"][number]["user"]["list_nick_names"], keyof string[]>]: never; }) | undefined;
|
|
36950
37018
|
status?: string | undefined;
|
|
36951
|
-
} & { [
|
|
37019
|
+
} & { [K_342 in Exclude<keyof I_1["friend_list"]["friends"][number]["user"], keyof import("../api/api").User>]: never; }) | undefined;
|
|
36952
37020
|
state?: number | undefined;
|
|
36953
37021
|
update_time?: Date | undefined;
|
|
36954
37022
|
source_id?: string | undefined;
|
|
36955
|
-
} & { [
|
|
37023
|
+
} & { [K_343 in Exclude<keyof I_1["friend_list"]["friends"][number], keyof import("../api/api").Friend>]: never; })[] & { [K_344 in Exclude<keyof I_1["friend_list"]["friends"], keyof {
|
|
36956
37024
|
user?: {
|
|
36957
37025
|
id?: string | undefined;
|
|
36958
37026
|
username?: string | undefined;
|
|
@@ -36980,12 +37048,12 @@ export declare const ListDataSocket: {
|
|
|
36980
37048
|
source_id?: string | undefined;
|
|
36981
37049
|
}[]>]: never; }) | undefined;
|
|
36982
37050
|
cursor?: string | undefined;
|
|
36983
|
-
} & { [
|
|
37051
|
+
} & { [K_345 in Exclude<keyof I_1["friend_list"], keyof FriendList>]: never; }) | undefined;
|
|
36984
37052
|
list_apps_req?: ({
|
|
36985
37053
|
clan_id?: string | undefined;
|
|
36986
37054
|
} & {
|
|
36987
37055
|
clan_id?: string | undefined;
|
|
36988
|
-
} & { [
|
|
37056
|
+
} & { [K_346 in Exclude<keyof I_1["list_apps_req"], "clan_id">]: never; }) | undefined;
|
|
36989
37057
|
channel_apps_list?: ({
|
|
36990
37058
|
channel_apps?: {
|
|
36991
37059
|
id?: string | undefined;
|
|
@@ -37013,14 +37081,14 @@ export declare const ListDataSocket: {
|
|
|
37013
37081
|
channel_id?: string | undefined;
|
|
37014
37082
|
app_id?: string | undefined;
|
|
37015
37083
|
app_url?: string | undefined;
|
|
37016
|
-
} & { [
|
|
37084
|
+
} & { [K_347 in Exclude<keyof I_1["channel_apps_list"]["channel_apps"][number], keyof import("../api/api").ChannelAppResponse>]: never; })[] & { [K_348 in Exclude<keyof I_1["channel_apps_list"]["channel_apps"], keyof {
|
|
37017
37085
|
id?: string | undefined;
|
|
37018
37086
|
clan_id?: string | undefined;
|
|
37019
37087
|
channel_id?: string | undefined;
|
|
37020
37088
|
app_id?: string | undefined;
|
|
37021
37089
|
app_url?: string | undefined;
|
|
37022
37090
|
}[]>]: never; }) | undefined;
|
|
37023
|
-
} & { [
|
|
37091
|
+
} & { [K_349 in Exclude<keyof I_1["channel_apps_list"], "channel_apps">]: never; }) | undefined;
|
|
37024
37092
|
user_activity_list?: ({
|
|
37025
37093
|
activities?: {
|
|
37026
37094
|
user_id?: string | undefined;
|
|
@@ -37060,7 +37128,7 @@ export declare const ListDataSocket: {
|
|
|
37060
37128
|
end_time?: Date | undefined;
|
|
37061
37129
|
application_id?: string | undefined;
|
|
37062
37130
|
status?: number | undefined;
|
|
37063
|
-
} & { [
|
|
37131
|
+
} & { [K_350 in Exclude<keyof I_1["user_activity_list"]["activities"][number], keyof UserActivity>]: never; })[] & { [K_351 in Exclude<keyof I_1["user_activity_list"]["activities"], keyof {
|
|
37064
37132
|
user_id?: string | undefined;
|
|
37065
37133
|
activity_name?: string | undefined;
|
|
37066
37134
|
activity_type?: number | undefined;
|
|
@@ -37070,12 +37138,12 @@ export declare const ListDataSocket: {
|
|
|
37070
37138
|
application_id?: string | undefined;
|
|
37071
37139
|
status?: number | undefined;
|
|
37072
37140
|
}[]>]: never; }) | undefined;
|
|
37073
|
-
} & { [
|
|
37141
|
+
} & { [K_352 in Exclude<keyof I_1["user_activity_list"], "activities">]: never; }) | undefined;
|
|
37074
37142
|
list_clan_user_req?: ({
|
|
37075
37143
|
clan_id?: string | undefined;
|
|
37076
37144
|
} & {
|
|
37077
37145
|
clan_id?: string | undefined;
|
|
37078
|
-
} & { [
|
|
37146
|
+
} & { [K_353 in Exclude<keyof I_1["list_clan_user_req"], "clan_id">]: never; }) | undefined;
|
|
37079
37147
|
clan_user_list?: ({
|
|
37080
37148
|
clan_users?: {
|
|
37081
37149
|
user?: {
|
|
@@ -37203,14 +37271,14 @@ export declare const ListDataSocket: {
|
|
|
37203
37271
|
is_mobile?: boolean | undefined;
|
|
37204
37272
|
dob?: Date | undefined;
|
|
37205
37273
|
mezon_id?: string | undefined;
|
|
37206
|
-
list_nick_names?: (string[] & string[] & { [
|
|
37274
|
+
list_nick_names?: (string[] & string[] & { [K_354 in Exclude<keyof I_1["clan_user_list"]["clan_users"][number]["user"]["list_nick_names"], keyof string[]>]: never; }) | undefined;
|
|
37207
37275
|
status?: string | undefined;
|
|
37208
|
-
} & { [
|
|
37209
|
-
role_id?: (string[] & string[] & { [
|
|
37276
|
+
} & { [K_355 in Exclude<keyof I_1["clan_user_list"]["clan_users"][number]["user"], keyof import("../api/api").User>]: never; }) | undefined;
|
|
37277
|
+
role_id?: (string[] & string[] & { [K_356 in Exclude<keyof I_1["clan_user_list"]["clan_users"][number]["role_id"], keyof string[]>]: never; }) | undefined;
|
|
37210
37278
|
clan_nick?: string | undefined;
|
|
37211
37279
|
clan_avatar?: string | undefined;
|
|
37212
37280
|
clan_id?: string | undefined;
|
|
37213
|
-
} & { [
|
|
37281
|
+
} & { [K_357 in Exclude<keyof I_1["clan_user_list"]["clan_users"][number], keyof import("../api/api").ClanUserList_ClanUser>]: never; })[] & { [K_358 in Exclude<keyof I_1["clan_user_list"]["clan_users"], keyof {
|
|
37214
37282
|
user?: {
|
|
37215
37283
|
id?: string | undefined;
|
|
37216
37284
|
username?: string | undefined;
|
|
@@ -37240,12 +37308,12 @@ export declare const ListDataSocket: {
|
|
|
37240
37308
|
}[]>]: never; }) | undefined;
|
|
37241
37309
|
cursor?: string | undefined;
|
|
37242
37310
|
clan_id?: string | undefined;
|
|
37243
|
-
} & { [
|
|
37311
|
+
} & { [K_359 in Exclude<keyof I_1["clan_user_list"], keyof ClanUserList>]: never; }) | undefined;
|
|
37244
37312
|
list_event_req?: ({
|
|
37245
37313
|
clan_id?: string | undefined;
|
|
37246
37314
|
} & {
|
|
37247
37315
|
clan_id?: string | undefined;
|
|
37248
|
-
} & { [
|
|
37316
|
+
} & { [K_360 in Exclude<keyof I_1["list_event_req"], "clan_id">]: never; }) | undefined;
|
|
37249
37317
|
event_list?: ({
|
|
37250
37318
|
events?: {
|
|
37251
37319
|
id?: string | undefined;
|
|
@@ -37343,7 +37411,7 @@ export declare const ListDataSocket: {
|
|
|
37343
37411
|
address?: string | undefined;
|
|
37344
37412
|
start_time?: Date | undefined;
|
|
37345
37413
|
end_time?: Date | undefined;
|
|
37346
|
-
user_ids?: (string[] & string[] & { [
|
|
37414
|
+
user_ids?: (string[] & string[] & { [K_361 in Exclude<keyof I_1["event_list"]["events"][number]["user_ids"], keyof string[]>]: never; }) | undefined;
|
|
37347
37415
|
create_time?: Date | undefined;
|
|
37348
37416
|
max_permission?: number | undefined;
|
|
37349
37417
|
channel_id?: string | undefined;
|
|
@@ -37362,8 +37430,8 @@ export declare const ListDataSocket: {
|
|
|
37362
37430
|
external_link?: string | undefined;
|
|
37363
37431
|
creator_id?: string | undefined;
|
|
37364
37432
|
event_id?: string | undefined;
|
|
37365
|
-
} & { [
|
|
37366
|
-
} & { [
|
|
37433
|
+
} & { [K_362 in Exclude<keyof I_1["event_list"]["events"][number]["meet_room"], keyof import("../api/api").GenerateMezonMeetResponse>]: never; }) | undefined;
|
|
37434
|
+
} & { [K_363 in Exclude<keyof I_1["event_list"]["events"][number], keyof import("../api/api").EventManagement>]: never; })[] & { [K_364 in Exclude<keyof I_1["event_list"]["events"], keyof {
|
|
37367
37435
|
id?: string | undefined;
|
|
37368
37436
|
title?: string | undefined;
|
|
37369
37437
|
logo?: string | undefined;
|
|
@@ -37391,7 +37459,7 @@ export declare const ListDataSocket: {
|
|
|
37391
37459
|
event_id?: string | undefined;
|
|
37392
37460
|
} | undefined;
|
|
37393
37461
|
}[]>]: never; }) | undefined;
|
|
37394
|
-
} & { [
|
|
37462
|
+
} & { [K_365 in Exclude<keyof I_1["event_list"], "events">]: never; }) | undefined;
|
|
37395
37463
|
list_category_req?: ({
|
|
37396
37464
|
creator_id?: string | undefined;
|
|
37397
37465
|
clan_id?: string | undefined;
|
|
@@ -37404,7 +37472,7 @@ export declare const ListDataSocket: {
|
|
|
37404
37472
|
category_name?: string | undefined;
|
|
37405
37473
|
category_id?: string | undefined;
|
|
37406
37474
|
category_order?: number | undefined;
|
|
37407
|
-
} & { [
|
|
37475
|
+
} & { [K_366 in Exclude<keyof I_1["list_category_req"], keyof CategoryDesc>]: never; }) | undefined;
|
|
37408
37476
|
category_list?: ({
|
|
37409
37477
|
categorydesc?: {
|
|
37410
37478
|
creator_id?: string | undefined;
|
|
@@ -37432,14 +37500,14 @@ export declare const ListDataSocket: {
|
|
|
37432
37500
|
category_name?: string | undefined;
|
|
37433
37501
|
category_id?: string | undefined;
|
|
37434
37502
|
category_order?: number | undefined;
|
|
37435
|
-
} & { [
|
|
37503
|
+
} & { [K_367 in Exclude<keyof I_1["category_list"]["categorydesc"][number], keyof CategoryDesc>]: never; })[] & { [K_368 in Exclude<keyof I_1["category_list"]["categorydesc"], keyof {
|
|
37436
37504
|
creator_id?: string | undefined;
|
|
37437
37505
|
clan_id?: string | undefined;
|
|
37438
37506
|
category_name?: string | undefined;
|
|
37439
37507
|
category_id?: string | undefined;
|
|
37440
37508
|
category_order?: number | undefined;
|
|
37441
37509
|
}[]>]: never; }) | undefined;
|
|
37442
|
-
} & { [
|
|
37510
|
+
} & { [K_369 in Exclude<keyof I_1["category_list"], "categorydesc">]: never; }) | undefined;
|
|
37443
37511
|
stream_user_list?: ({
|
|
37444
37512
|
streaming_channel_users?: {
|
|
37445
37513
|
id?: string | undefined;
|
|
@@ -37463,14 +37531,24 @@ export declare const ListDataSocket: {
|
|
|
37463
37531
|
user_id?: string | undefined;
|
|
37464
37532
|
channel_id?: string | undefined;
|
|
37465
37533
|
participant?: string | undefined;
|
|
37466
|
-
} & { [
|
|
37534
|
+
} & { [K_370 in Exclude<keyof I_1["stream_user_list"]["streaming_channel_users"][number], keyof import("../api/api").StreamingChannelUser>]: never; })[] & { [K_371 in Exclude<keyof I_1["stream_user_list"]["streaming_channel_users"], keyof {
|
|
37467
37535
|
id?: string | undefined;
|
|
37468
37536
|
user_id?: string | undefined;
|
|
37469
37537
|
channel_id?: string | undefined;
|
|
37470
37538
|
participant?: string | undefined;
|
|
37471
37539
|
}[]>]: never; }) | undefined;
|
|
37472
|
-
} & { [
|
|
37473
|
-
|
|
37540
|
+
} & { [K_372 in Exclude<keyof I_1["stream_user_list"], "streaming_channel_users">]: never; }) | undefined;
|
|
37541
|
+
list_unread_msg_indicator_req?: ({
|
|
37542
|
+
clan_id?: string | undefined;
|
|
37543
|
+
} & {
|
|
37544
|
+
clan_id?: string | undefined;
|
|
37545
|
+
} & { [K_373 in Exclude<keyof I_1["list_unread_msg_indicator_req"], "clan_id">]: never; }) | undefined;
|
|
37546
|
+
unread_msg_indicator?: ({
|
|
37547
|
+
has_unread_message?: boolean | undefined;
|
|
37548
|
+
} & {
|
|
37549
|
+
has_unread_message?: boolean | undefined;
|
|
37550
|
+
} & { [K_374 in Exclude<keyof I_1["unread_msg_indicator"], "has_unread_message">]: never; }) | undefined;
|
|
37551
|
+
} & { [K_375 in Exclude<keyof I_1, keyof ListDataSocket>]: never; }>(object: I_1): ListDataSocket;
|
|
37474
37552
|
};
|
|
37475
37553
|
export declare const MeetParticipantEvent: {
|
|
37476
37554
|
encode(message: MeetParticipantEvent, writer?: _m0.Writer): _m0.Writer;
|