mezon-js-protobuf 1.8.76 → 1.8.77
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 +131 -9
- package/dist/mezon-js-protobuf/api/api.d.ts +53 -15
- package/dist/mezon-js-protobuf/rtapi/realtime.d.ts +621 -543
- package/dist/mezon-js-protobuf.cjs.js +142 -10
- package/dist/mezon-js-protobuf.esm.mjs +142 -10
- package/package.json +1 -1
- package/rtapi/realtime.ts +54 -9
|
@@ -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, 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";
|
|
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, ListClanBadgeCountRequest, ListClanBadgeCountResponse, 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. */
|
|
@@ -1301,6 +1301,8 @@ export interface ListDataSocket {
|
|
|
1301
1301
|
stream_user_list: StreamingChannelUserList | undefined;
|
|
1302
1302
|
list_unread_msg_indicator_req: ListClanUnreadMsgIndicatorRequest | undefined;
|
|
1303
1303
|
unread_msg_indicator: ListClanUnreadMsgIndicatorResponse | undefined;
|
|
1304
|
+
list_clan_badge_count_req: ListClanBadgeCountRequest | undefined;
|
|
1305
|
+
clan_badge_count: ListClanBadgeCountResponse | undefined;
|
|
1304
1306
|
}
|
|
1305
1307
|
export interface MeetParticipantEvent {
|
|
1306
1308
|
username: string;
|
|
@@ -1326,7 +1328,7 @@ export interface FcmDataPayload {
|
|
|
1326
1328
|
command_type: number;
|
|
1327
1329
|
receiver_id: string;
|
|
1328
1330
|
title: string;
|
|
1329
|
-
body:
|
|
1331
|
+
body: Uint8Array;
|
|
1330
1332
|
user_role_ids: string[];
|
|
1331
1333
|
user_sent_ids: string[];
|
|
1332
1334
|
priority: number;
|
|
@@ -1543,7 +1545,7 @@ export declare const Envelope: {
|
|
|
1543
1545
|
notifications?: {
|
|
1544
1546
|
id?: string | undefined;
|
|
1545
1547
|
subject?: string | undefined;
|
|
1546
|
-
content?:
|
|
1548
|
+
content?: Uint8Array | undefined;
|
|
1547
1549
|
code?: number | undefined;
|
|
1548
1550
|
sender_id?: string | undefined;
|
|
1549
1551
|
create_time?: Date | undefined;
|
|
@@ -2798,7 +2800,7 @@ export declare const Envelope: {
|
|
|
2798
2800
|
notifications?: {
|
|
2799
2801
|
id?: string | undefined;
|
|
2800
2802
|
subject?: string | undefined;
|
|
2801
|
-
content?:
|
|
2803
|
+
content?: Uint8Array | undefined;
|
|
2802
2804
|
code?: number | undefined;
|
|
2803
2805
|
sender_id?: string | undefined;
|
|
2804
2806
|
create_time?: Date | undefined;
|
|
@@ -3262,6 +3264,12 @@ export declare const Envelope: {
|
|
|
3262
3264
|
unread_msg_indicator?: {
|
|
3263
3265
|
has_unread_message?: boolean | undefined;
|
|
3264
3266
|
} | undefined;
|
|
3267
|
+
list_clan_badge_count_req?: {
|
|
3268
|
+
clan_id?: string | undefined;
|
|
3269
|
+
} | undefined;
|
|
3270
|
+
clan_badge_count?: {
|
|
3271
|
+
badge_count?: number | undefined;
|
|
3272
|
+
} | undefined;
|
|
3265
3273
|
} | undefined;
|
|
3266
3274
|
quick_menu_event?: {
|
|
3267
3275
|
menu_name?: string | undefined;
|
|
@@ -3953,7 +3961,7 @@ export declare const Envelope: {
|
|
|
3953
3961
|
notifications?: {
|
|
3954
3962
|
id?: string | undefined;
|
|
3955
3963
|
subject?: string | undefined;
|
|
3956
|
-
content?:
|
|
3964
|
+
content?: Uint8Array | undefined;
|
|
3957
3965
|
code?: number | undefined;
|
|
3958
3966
|
sender_id?: string | undefined;
|
|
3959
3967
|
create_time?: Date | undefined;
|
|
@@ -4020,7 +4028,7 @@ export declare const Envelope: {
|
|
|
4020
4028
|
notifications?: ({
|
|
4021
4029
|
id?: string | undefined;
|
|
4022
4030
|
subject?: string | undefined;
|
|
4023
|
-
content?:
|
|
4031
|
+
content?: Uint8Array | undefined;
|
|
4024
4032
|
code?: number | undefined;
|
|
4025
4033
|
sender_id?: string | undefined;
|
|
4026
4034
|
create_time?: Date | undefined;
|
|
@@ -4085,7 +4093,7 @@ export declare const Envelope: {
|
|
|
4085
4093
|
}[] & ({
|
|
4086
4094
|
id?: string | undefined;
|
|
4087
4095
|
subject?: string | undefined;
|
|
4088
|
-
content?:
|
|
4096
|
+
content?: Uint8Array | undefined;
|
|
4089
4097
|
code?: number | undefined;
|
|
4090
4098
|
sender_id?: string | undefined;
|
|
4091
4099
|
create_time?: Date | undefined;
|
|
@@ -4150,7 +4158,7 @@ export declare const Envelope: {
|
|
|
4150
4158
|
} & {
|
|
4151
4159
|
id?: string | undefined;
|
|
4152
4160
|
subject?: string | undefined;
|
|
4153
|
-
content?:
|
|
4161
|
+
content?: Uint8Array | undefined;
|
|
4154
4162
|
code?: number | undefined;
|
|
4155
4163
|
sender_id?: string | undefined;
|
|
4156
4164
|
create_time?: Date | undefined;
|
|
@@ -4283,7 +4291,7 @@ export declare const Envelope: {
|
|
|
4283
4291
|
} & { [K_37 in Exclude<keyof I["notifications"]["notifications"][number], keyof Notification>]: never; })[] & { [K_38 in Exclude<keyof I["notifications"]["notifications"], keyof {
|
|
4284
4292
|
id?: string | undefined;
|
|
4285
4293
|
subject?: string | undefined;
|
|
4286
|
-
content?:
|
|
4294
|
+
content?: Uint8Array | undefined;
|
|
4287
4295
|
code?: number | undefined;
|
|
4288
4296
|
sender_id?: string | undefined;
|
|
4289
4297
|
create_time?: Date | undefined;
|
|
@@ -6948,7 +6956,7 @@ export declare const Envelope: {
|
|
|
6948
6956
|
notifications?: {
|
|
6949
6957
|
id?: string | undefined;
|
|
6950
6958
|
subject?: string | undefined;
|
|
6951
|
-
content?:
|
|
6959
|
+
content?: Uint8Array | undefined;
|
|
6952
6960
|
code?: number | undefined;
|
|
6953
6961
|
sender_id?: string | undefined;
|
|
6954
6962
|
create_time?: Date | undefined;
|
|
@@ -7412,6 +7420,12 @@ export declare const Envelope: {
|
|
|
7412
7420
|
unread_msg_indicator?: {
|
|
7413
7421
|
has_unread_message?: boolean | undefined;
|
|
7414
7422
|
} | undefined;
|
|
7423
|
+
list_clan_badge_count_req?: {
|
|
7424
|
+
clan_id?: string | undefined;
|
|
7425
|
+
} | undefined;
|
|
7426
|
+
clan_badge_count?: {
|
|
7427
|
+
badge_count?: number | undefined;
|
|
7428
|
+
} | undefined;
|
|
7415
7429
|
} & {
|
|
7416
7430
|
api_name?: string | undefined;
|
|
7417
7431
|
list_clan_req?: ({
|
|
@@ -8705,7 +8719,7 @@ export declare const Envelope: {
|
|
|
8705
8719
|
notifications?: {
|
|
8706
8720
|
id?: string | undefined;
|
|
8707
8721
|
subject?: string | undefined;
|
|
8708
|
-
content?:
|
|
8722
|
+
content?: Uint8Array | undefined;
|
|
8709
8723
|
code?: number | undefined;
|
|
8710
8724
|
sender_id?: string | undefined;
|
|
8711
8725
|
create_time?: Date | undefined;
|
|
@@ -8773,7 +8787,7 @@ export declare const Envelope: {
|
|
|
8773
8787
|
notifications?: ({
|
|
8774
8788
|
id?: string | undefined;
|
|
8775
8789
|
subject?: string | undefined;
|
|
8776
|
-
content?:
|
|
8790
|
+
content?: Uint8Array | undefined;
|
|
8777
8791
|
code?: number | undefined;
|
|
8778
8792
|
sender_id?: string | undefined;
|
|
8779
8793
|
create_time?: Date | undefined;
|
|
@@ -8838,7 +8852,7 @@ export declare const Envelope: {
|
|
|
8838
8852
|
}[] & ({
|
|
8839
8853
|
id?: string | undefined;
|
|
8840
8854
|
subject?: string | undefined;
|
|
8841
|
-
content?:
|
|
8855
|
+
content?: Uint8Array | undefined;
|
|
8842
8856
|
code?: number | undefined;
|
|
8843
8857
|
sender_id?: string | undefined;
|
|
8844
8858
|
create_time?: Date | undefined;
|
|
@@ -8903,7 +8917,7 @@ export declare const Envelope: {
|
|
|
8903
8917
|
} & {
|
|
8904
8918
|
id?: string | undefined;
|
|
8905
8919
|
subject?: string | undefined;
|
|
8906
|
-
content?:
|
|
8920
|
+
content?: Uint8Array | undefined;
|
|
8907
8921
|
code?: number | undefined;
|
|
8908
8922
|
sender_id?: string | undefined;
|
|
8909
8923
|
create_time?: Date | undefined;
|
|
@@ -9036,7 +9050,7 @@ export declare const Envelope: {
|
|
|
9036
9050
|
} & { [K_270 in Exclude<keyof I["list_data_socket"]["notification_list"]["notifications"][number], keyof Notification>]: never; })[] & { [K_271 in Exclude<keyof I["list_data_socket"]["notification_list"]["notifications"], keyof {
|
|
9037
9051
|
id?: string | undefined;
|
|
9038
9052
|
subject?: string | undefined;
|
|
9039
|
-
content?:
|
|
9053
|
+
content?: Uint8Array | undefined;
|
|
9040
9054
|
code?: number | undefined;
|
|
9041
9055
|
sender_id?: string | undefined;
|
|
9042
9056
|
create_time?: Date | undefined;
|
|
@@ -10897,7 +10911,17 @@ export declare const Envelope: {
|
|
|
10897
10911
|
} & {
|
|
10898
10912
|
has_unread_message?: boolean | undefined;
|
|
10899
10913
|
} & { [K_364 in Exclude<keyof I["list_data_socket"]["unread_msg_indicator"], "has_unread_message">]: never; }) | undefined;
|
|
10900
|
-
|
|
10914
|
+
list_clan_badge_count_req?: ({
|
|
10915
|
+
clan_id?: string | undefined;
|
|
10916
|
+
} & {
|
|
10917
|
+
clan_id?: string | undefined;
|
|
10918
|
+
} & { [K_365 in Exclude<keyof I["list_data_socket"]["list_clan_badge_count_req"], "clan_id">]: never; }) | undefined;
|
|
10919
|
+
clan_badge_count?: ({
|
|
10920
|
+
badge_count?: number | undefined;
|
|
10921
|
+
} & {
|
|
10922
|
+
badge_count?: number | undefined;
|
|
10923
|
+
} & { [K_366 in Exclude<keyof I["list_data_socket"]["clan_badge_count"], "badge_count">]: never; }) | undefined;
|
|
10924
|
+
} & { [K_367 in Exclude<keyof I["list_data_socket"], keyof ListDataSocket>]: never; }) | undefined;
|
|
10901
10925
|
quick_menu_event?: ({
|
|
10902
10926
|
menu_name?: string | undefined;
|
|
10903
10927
|
message?: {
|
|
@@ -11022,7 +11046,7 @@ export declare const Envelope: {
|
|
|
11022
11046
|
create_time?: Date | undefined;
|
|
11023
11047
|
s?: number | undefined;
|
|
11024
11048
|
e?: number | undefined;
|
|
11025
|
-
} & { [
|
|
11049
|
+
} & { [K_368 in Exclude<keyof I["quick_menu_event"]["message"]["mentions"][number], keyof MessageMention>]: never; })[] & { [K_369 in Exclude<keyof I["quick_menu_event"]["message"]["mentions"], keyof {
|
|
11026
11050
|
id?: string | undefined;
|
|
11027
11051
|
user_id?: string | undefined;
|
|
11028
11052
|
username?: string | undefined;
|
|
@@ -11059,7 +11083,7 @@ export declare const Envelope: {
|
|
|
11059
11083
|
height?: number | undefined;
|
|
11060
11084
|
thumbnail?: string | undefined;
|
|
11061
11085
|
duration?: number | undefined;
|
|
11062
|
-
} & { [
|
|
11086
|
+
} & { [K_370 in Exclude<keyof I["quick_menu_event"]["message"]["attachments"][number], keyof MessageAttachment>]: never; })[] & { [K_371 in Exclude<keyof I["quick_menu_event"]["message"]["attachments"], keyof {
|
|
11063
11087
|
filename?: string | undefined;
|
|
11064
11088
|
size?: number | undefined;
|
|
11065
11089
|
url?: string | undefined;
|
|
@@ -11102,7 +11126,7 @@ export declare const Envelope: {
|
|
|
11102
11126
|
mesages_sender_avatar?: string | undefined;
|
|
11103
11127
|
message_sender_clan_nick?: string | undefined;
|
|
11104
11128
|
message_sender_display_name?: string | undefined;
|
|
11105
|
-
} & { [
|
|
11129
|
+
} & { [K_372 in Exclude<keyof I["quick_menu_event"]["message"]["references"][number], keyof MessageRef>]: never; })[] & { [K_373 in Exclude<keyof I["quick_menu_event"]["message"]["references"], keyof {
|
|
11106
11130
|
message_id?: string | undefined;
|
|
11107
11131
|
message_ref_id?: string | undefined;
|
|
11108
11132
|
content?: string | undefined;
|
|
@@ -11122,8 +11146,8 @@ export declare const Envelope: {
|
|
|
11122
11146
|
code?: number | undefined;
|
|
11123
11147
|
topic_id?: string | undefined;
|
|
11124
11148
|
id?: string | undefined;
|
|
11125
|
-
} & { [
|
|
11126
|
-
} & { [
|
|
11149
|
+
} & { [K_374 in Exclude<keyof I["quick_menu_event"]["message"], keyof ChannelMessageSend>]: never; }) | undefined;
|
|
11150
|
+
} & { [K_375 in Exclude<keyof I["quick_menu_event"], keyof QuickMenuDataEvent>]: never; }) | undefined;
|
|
11127
11151
|
un_block_friend?: ({
|
|
11128
11152
|
user_id?: string | undefined;
|
|
11129
11153
|
username?: string | undefined;
|
|
@@ -11138,7 +11162,7 @@ export declare const Envelope: {
|
|
|
11138
11162
|
display_name?: string | undefined;
|
|
11139
11163
|
status?: string | undefined;
|
|
11140
11164
|
user_status?: string | undefined;
|
|
11141
|
-
} & { [
|
|
11165
|
+
} & { [K_376 in Exclude<keyof I["un_block_friend"], keyof UnblockFriend>]: never; }) | undefined;
|
|
11142
11166
|
meet_participant_event?: ({
|
|
11143
11167
|
username?: string | undefined;
|
|
11144
11168
|
room_name?: string | undefined;
|
|
@@ -11151,7 +11175,7 @@ export declare const Envelope: {
|
|
|
11151
11175
|
channel_id?: string | undefined;
|
|
11152
11176
|
clan_id?: string | undefined;
|
|
11153
11177
|
action?: number | undefined;
|
|
11154
|
-
} & { [
|
|
11178
|
+
} & { [K_377 in Exclude<keyof I["meet_participant_event"], keyof MeetParticipantEvent>]: never; }) | undefined;
|
|
11155
11179
|
transfer_ownership_event?: ({
|
|
11156
11180
|
clan_id?: string | undefined;
|
|
11157
11181
|
prev_owner?: string | undefined;
|
|
@@ -11160,7 +11184,7 @@ export declare const Envelope: {
|
|
|
11160
11184
|
clan_id?: string | undefined;
|
|
11161
11185
|
prev_owner?: string | undefined;
|
|
11162
11186
|
curr_owner?: string | undefined;
|
|
11163
|
-
} & { [
|
|
11187
|
+
} & { [K_378 in Exclude<keyof I["transfer_ownership_event"], keyof TransferOwnershipEvent>]: never; }) | undefined;
|
|
11164
11188
|
add_friend?: ({
|
|
11165
11189
|
user_id?: string | undefined;
|
|
11166
11190
|
username?: string | undefined;
|
|
@@ -11171,7 +11195,7 @@ export declare const Envelope: {
|
|
|
11171
11195
|
username?: string | undefined;
|
|
11172
11196
|
display_name?: string | undefined;
|
|
11173
11197
|
avatar?: string | undefined;
|
|
11174
|
-
} & { [
|
|
11198
|
+
} & { [K_379 in Exclude<keyof I["add_friend"], keyof AddFriend>]: never; }) | undefined;
|
|
11175
11199
|
ban_user_event?: ({
|
|
11176
11200
|
user_ids?: string[] | undefined;
|
|
11177
11201
|
action?: number | undefined;
|
|
@@ -11180,35 +11204,35 @@ export declare const Envelope: {
|
|
|
11180
11204
|
clan_id?: string | undefined;
|
|
11181
11205
|
ban_time?: number | undefined;
|
|
11182
11206
|
} & {
|
|
11183
|
-
user_ids?: (string[] & string[] & { [
|
|
11207
|
+
user_ids?: (string[] & string[] & { [K_380 in Exclude<keyof I["ban_user_event"]["user_ids"], keyof string[]>]: never; }) | undefined;
|
|
11184
11208
|
action?: number | undefined;
|
|
11185
11209
|
banner_id?: string | undefined;
|
|
11186
11210
|
channel_id?: string | undefined;
|
|
11187
11211
|
clan_id?: string | undefined;
|
|
11188
11212
|
ban_time?: number | undefined;
|
|
11189
|
-
} & { [
|
|
11213
|
+
} & { [K_381 in Exclude<keyof I["ban_user_event"], keyof BannedUserEvent>]: never; }) | undefined;
|
|
11190
11214
|
active_archived_thread?: ({
|
|
11191
11215
|
clan_id?: string | undefined;
|
|
11192
11216
|
channel_id?: string | undefined;
|
|
11193
11217
|
} & {
|
|
11194
11218
|
clan_id?: string | undefined;
|
|
11195
11219
|
channel_id?: string | undefined;
|
|
11196
|
-
} & { [
|
|
11220
|
+
} & { [K_382 in Exclude<keyof I["active_archived_thread"], keyof ActiveArchivedThread>]: never; }) | undefined;
|
|
11197
11221
|
allow_anonymous_event?: ({
|
|
11198
11222
|
clan_id?: string | undefined;
|
|
11199
11223
|
allow?: boolean | undefined;
|
|
11200
11224
|
} & {
|
|
11201
11225
|
clan_id?: string | undefined;
|
|
11202
11226
|
allow?: boolean | undefined;
|
|
11203
|
-
} & { [
|
|
11227
|
+
} & { [K_383 in Exclude<keyof I["allow_anonymous_event"], keyof AllowAnonymousEvent>]: never; }) | undefined;
|
|
11204
11228
|
update_localcache_event?: ({
|
|
11205
11229
|
user_ids?: string[] | undefined;
|
|
11206
11230
|
channel_ids?: string[] | undefined;
|
|
11207
11231
|
} & {
|
|
11208
|
-
user_ids?: (string[] & string[] & { [
|
|
11209
|
-
channel_ids?: (string[] & string[] & { [
|
|
11210
|
-
} & { [
|
|
11211
|
-
} & { [
|
|
11232
|
+
user_ids?: (string[] & string[] & { [K_384 in Exclude<keyof I["update_localcache_event"]["user_ids"], keyof string[]>]: never; }) | undefined;
|
|
11233
|
+
channel_ids?: (string[] & string[] & { [K_385 in Exclude<keyof I["update_localcache_event"]["channel_ids"], keyof string[]>]: never; }) | undefined;
|
|
11234
|
+
} & { [K_386 in Exclude<keyof I["update_localcache_event"], keyof UpdateLocalCacheEvent>]: never; }) | undefined;
|
|
11235
|
+
} & { [K_387 in Exclude<keyof I, keyof Envelope>]: never; }>(base?: I | undefined): Envelope;
|
|
11212
11236
|
fromPartial<I_1 extends {
|
|
11213
11237
|
cid?: string | undefined;
|
|
11214
11238
|
channel?: {
|
|
@@ -11409,7 +11433,7 @@ export declare const Envelope: {
|
|
|
11409
11433
|
notifications?: {
|
|
11410
11434
|
id?: string | undefined;
|
|
11411
11435
|
subject?: string | undefined;
|
|
11412
|
-
content?:
|
|
11436
|
+
content?: Uint8Array | undefined;
|
|
11413
11437
|
code?: number | undefined;
|
|
11414
11438
|
sender_id?: string | undefined;
|
|
11415
11439
|
create_time?: Date | undefined;
|
|
@@ -12664,7 +12688,7 @@ export declare const Envelope: {
|
|
|
12664
12688
|
notifications?: {
|
|
12665
12689
|
id?: string | undefined;
|
|
12666
12690
|
subject?: string | undefined;
|
|
12667
|
-
content?:
|
|
12691
|
+
content?: Uint8Array | undefined;
|
|
12668
12692
|
code?: number | undefined;
|
|
12669
12693
|
sender_id?: string | undefined;
|
|
12670
12694
|
create_time?: Date | undefined;
|
|
@@ -13128,6 +13152,12 @@ export declare const Envelope: {
|
|
|
13128
13152
|
unread_msg_indicator?: {
|
|
13129
13153
|
has_unread_message?: boolean | undefined;
|
|
13130
13154
|
} | undefined;
|
|
13155
|
+
list_clan_badge_count_req?: {
|
|
13156
|
+
clan_id?: string | undefined;
|
|
13157
|
+
} | undefined;
|
|
13158
|
+
clan_badge_count?: {
|
|
13159
|
+
badge_count?: number | undefined;
|
|
13160
|
+
} | undefined;
|
|
13131
13161
|
} | undefined;
|
|
13132
13162
|
quick_menu_event?: {
|
|
13133
13163
|
menu_name?: string | undefined;
|
|
@@ -13269,7 +13299,7 @@ export declare const Envelope: {
|
|
|
13269
13299
|
status?: string | undefined;
|
|
13270
13300
|
is_mobile?: boolean | undefined;
|
|
13271
13301
|
user_status?: string | undefined;
|
|
13272
|
-
} & { [
|
|
13302
|
+
} & { [K_388 in Exclude<keyof I_1["channel"]["presences"][number], keyof UserPresence>]: never; })[] & { [K_389 in Exclude<keyof I_1["channel"]["presences"], keyof {
|
|
13273
13303
|
user_id?: string | undefined;
|
|
13274
13304
|
session_id?: string | undefined;
|
|
13275
13305
|
username?: string | undefined;
|
|
@@ -13291,16 +13321,16 @@ export declare const Envelope: {
|
|
|
13291
13321
|
status?: string | undefined;
|
|
13292
13322
|
is_mobile?: boolean | undefined;
|
|
13293
13323
|
user_status?: string | undefined;
|
|
13294
|
-
} & { [
|
|
13324
|
+
} & { [K_390 in Exclude<keyof I_1["channel"]["self"], keyof UserPresence>]: never; }) | undefined;
|
|
13295
13325
|
chanel_label?: string | undefined;
|
|
13296
13326
|
clan_logo?: string | undefined;
|
|
13297
13327
|
category_name?: string | undefined;
|
|
13298
|
-
} & { [
|
|
13328
|
+
} & { [K_391 in Exclude<keyof I_1["channel"], keyof Channel>]: never; }) | undefined;
|
|
13299
13329
|
clan_join?: ({
|
|
13300
13330
|
clan_id?: string | undefined;
|
|
13301
13331
|
} & {
|
|
13302
13332
|
clan_id?: string | undefined;
|
|
13303
|
-
} & { [
|
|
13333
|
+
} & { [K_392 in Exclude<keyof I_1["clan_join"], "clan_id">]: never; }) | undefined;
|
|
13304
13334
|
channel_join?: ({
|
|
13305
13335
|
clan_id?: string | undefined;
|
|
13306
13336
|
channel_id?: string | undefined;
|
|
@@ -13311,7 +13341,7 @@ export declare const Envelope: {
|
|
|
13311
13341
|
channel_id?: string | undefined;
|
|
13312
13342
|
channel_type?: number | undefined;
|
|
13313
13343
|
is_public?: boolean | undefined;
|
|
13314
|
-
} & { [
|
|
13344
|
+
} & { [K_393 in Exclude<keyof I_1["channel_join"], keyof ChannelJoin>]: never; }) | undefined;
|
|
13315
13345
|
channel_leave?: ({
|
|
13316
13346
|
clan_id?: string | undefined;
|
|
13317
13347
|
channel_id?: string | undefined;
|
|
@@ -13322,7 +13352,7 @@ export declare const Envelope: {
|
|
|
13322
13352
|
channel_id?: string | undefined;
|
|
13323
13353
|
channel_type?: number | undefined;
|
|
13324
13354
|
is_public?: boolean | undefined;
|
|
13325
|
-
} & { [
|
|
13355
|
+
} & { [K_394 in Exclude<keyof I_1["channel_leave"], keyof ChannelLeave>]: never; }) | undefined;
|
|
13326
13356
|
channel_message?: ({
|
|
13327
13357
|
clan_id?: string | undefined;
|
|
13328
13358
|
channel_id?: string | undefined;
|
|
@@ -13379,7 +13409,7 @@ export declare const Envelope: {
|
|
|
13379
13409
|
hide_editted?: boolean | undefined;
|
|
13380
13410
|
is_public?: boolean | undefined;
|
|
13381
13411
|
topic_id?: string | undefined;
|
|
13382
|
-
} & { [
|
|
13412
|
+
} & { [K_395 in Exclude<keyof I_1["channel_message"], keyof ChannelMessage>]: never; }) | undefined;
|
|
13383
13413
|
channel_message_ack?: ({
|
|
13384
13414
|
channel_id?: string | undefined;
|
|
13385
13415
|
message_id?: string | undefined;
|
|
@@ -13400,7 +13430,7 @@ export declare const Envelope: {
|
|
|
13400
13430
|
persistent?: boolean | undefined;
|
|
13401
13431
|
clan_logo?: string | undefined;
|
|
13402
13432
|
category_name?: string | undefined;
|
|
13403
|
-
} & { [
|
|
13433
|
+
} & { [K_396 in Exclude<keyof I_1["channel_message_ack"], keyof ChannelMessageAck>]: never; }) | undefined;
|
|
13404
13434
|
channel_message_send?: ({
|
|
13405
13435
|
clan_id?: string | undefined;
|
|
13406
13436
|
channel_id?: string | undefined;
|
|
@@ -13476,7 +13506,7 @@ export declare const Envelope: {
|
|
|
13476
13506
|
create_time?: Date | undefined;
|
|
13477
13507
|
s?: number | undefined;
|
|
13478
13508
|
e?: number | undefined;
|
|
13479
|
-
} & { [
|
|
13509
|
+
} & { [K_397 in Exclude<keyof I_1["channel_message_send"]["mentions"][number], keyof MessageMention>]: never; })[] & { [K_398 in Exclude<keyof I_1["channel_message_send"]["mentions"], keyof {
|
|
13480
13510
|
id?: string | undefined;
|
|
13481
13511
|
user_id?: string | undefined;
|
|
13482
13512
|
username?: string | undefined;
|
|
@@ -13513,7 +13543,7 @@ export declare const Envelope: {
|
|
|
13513
13543
|
height?: number | undefined;
|
|
13514
13544
|
thumbnail?: string | undefined;
|
|
13515
13545
|
duration?: number | undefined;
|
|
13516
|
-
} & { [
|
|
13546
|
+
} & { [K_399 in Exclude<keyof I_1["channel_message_send"]["attachments"][number], keyof MessageAttachment>]: never; })[] & { [K_400 in Exclude<keyof I_1["channel_message_send"]["attachments"], keyof {
|
|
13517
13547
|
filename?: string | undefined;
|
|
13518
13548
|
size?: number | undefined;
|
|
13519
13549
|
url?: string | undefined;
|
|
@@ -13556,7 +13586,7 @@ export declare const Envelope: {
|
|
|
13556
13586
|
mesages_sender_avatar?: string | undefined;
|
|
13557
13587
|
message_sender_clan_nick?: string | undefined;
|
|
13558
13588
|
message_sender_display_name?: string | undefined;
|
|
13559
|
-
} & { [
|
|
13589
|
+
} & { [K_401 in Exclude<keyof I_1["channel_message_send"]["references"][number], keyof MessageRef>]: never; })[] & { [K_402 in Exclude<keyof I_1["channel_message_send"]["references"], keyof {
|
|
13560
13590
|
message_id?: string | undefined;
|
|
13561
13591
|
message_ref_id?: string | undefined;
|
|
13562
13592
|
content?: string | undefined;
|
|
@@ -13576,7 +13606,7 @@ export declare const Envelope: {
|
|
|
13576
13606
|
code?: number | undefined;
|
|
13577
13607
|
topic_id?: string | undefined;
|
|
13578
13608
|
id?: string | undefined;
|
|
13579
|
-
} & { [
|
|
13609
|
+
} & { [K_403 in Exclude<keyof I_1["channel_message_send"], keyof ChannelMessageSend>]: never; }) | undefined;
|
|
13580
13610
|
channel_message_update?: ({
|
|
13581
13611
|
clan_id?: string | undefined;
|
|
13582
13612
|
channel_id?: string | undefined;
|
|
@@ -13640,7 +13670,7 @@ export declare const Envelope: {
|
|
|
13640
13670
|
create_time?: Date | undefined;
|
|
13641
13671
|
s?: number | undefined;
|
|
13642
13672
|
e?: number | undefined;
|
|
13643
|
-
} & { [
|
|
13673
|
+
} & { [K_404 in Exclude<keyof I_1["channel_message_update"]["mentions"][number], keyof MessageMention>]: never; })[] & { [K_405 in Exclude<keyof I_1["channel_message_update"]["mentions"], keyof {
|
|
13644
13674
|
id?: string | undefined;
|
|
13645
13675
|
user_id?: string | undefined;
|
|
13646
13676
|
username?: string | undefined;
|
|
@@ -13677,7 +13707,7 @@ export declare const Envelope: {
|
|
|
13677
13707
|
height?: number | undefined;
|
|
13678
13708
|
thumbnail?: string | undefined;
|
|
13679
13709
|
duration?: number | undefined;
|
|
13680
|
-
} & { [
|
|
13710
|
+
} & { [K_406 in Exclude<keyof I_1["channel_message_update"]["attachments"][number], keyof MessageAttachment>]: never; })[] & { [K_407 in Exclude<keyof I_1["channel_message_update"]["attachments"], keyof {
|
|
13681
13711
|
filename?: string | undefined;
|
|
13682
13712
|
size?: number | undefined;
|
|
13683
13713
|
url?: string | undefined;
|
|
@@ -13693,7 +13723,7 @@ export declare const Envelope: {
|
|
|
13693
13723
|
topic_id?: string | undefined;
|
|
13694
13724
|
is_update_msg_topic?: boolean | undefined;
|
|
13695
13725
|
old_mentions?: string | undefined;
|
|
13696
|
-
} & { [
|
|
13726
|
+
} & { [K_408 in Exclude<keyof I_1["channel_message_update"], keyof ChannelMessageUpdate>]: never; }) | undefined;
|
|
13697
13727
|
channel_message_remove?: ({
|
|
13698
13728
|
clan_id?: string | undefined;
|
|
13699
13729
|
channel_id?: string | undefined;
|
|
@@ -13714,7 +13744,7 @@ export declare const Envelope: {
|
|
|
13714
13744
|
topic_id?: string | undefined;
|
|
13715
13745
|
mentions?: Uint8Array | undefined;
|
|
13716
13746
|
references?: Uint8Array | undefined;
|
|
13717
|
-
} & { [
|
|
13747
|
+
} & { [K_409 in Exclude<keyof I_1["channel_message_remove"], keyof ChannelMessageRemove>]: never; }) | undefined;
|
|
13718
13748
|
channel_presence_event?: ({
|
|
13719
13749
|
channel_id?: string | undefined;
|
|
13720
13750
|
joins?: {
|
|
@@ -13759,7 +13789,7 @@ export declare const Envelope: {
|
|
|
13759
13789
|
status?: string | undefined;
|
|
13760
13790
|
is_mobile?: boolean | undefined;
|
|
13761
13791
|
user_status?: string | undefined;
|
|
13762
|
-
} & { [
|
|
13792
|
+
} & { [K_410 in Exclude<keyof I_1["channel_presence_event"]["joins"][number], keyof UserPresence>]: never; })[] & { [K_411 in Exclude<keyof I_1["channel_presence_event"]["joins"], keyof {
|
|
13763
13793
|
user_id?: string | undefined;
|
|
13764
13794
|
session_id?: string | undefined;
|
|
13765
13795
|
username?: string | undefined;
|
|
@@ -13788,7 +13818,7 @@ export declare const Envelope: {
|
|
|
13788
13818
|
status?: string | undefined;
|
|
13789
13819
|
is_mobile?: boolean | undefined;
|
|
13790
13820
|
user_status?: string | undefined;
|
|
13791
|
-
} & { [
|
|
13821
|
+
} & { [K_412 in Exclude<keyof I_1["channel_presence_event"]["leaves"][number], keyof UserPresence>]: never; })[] & { [K_413 in Exclude<keyof I_1["channel_presence_event"]["leaves"], keyof {
|
|
13792
13822
|
user_id?: string | undefined;
|
|
13793
13823
|
session_id?: string | undefined;
|
|
13794
13824
|
username?: string | undefined;
|
|
@@ -13799,7 +13829,7 @@ export declare const Envelope: {
|
|
|
13799
13829
|
clan_logo?: string | undefined;
|
|
13800
13830
|
category_name?: string | undefined;
|
|
13801
13831
|
mode?: number | undefined;
|
|
13802
|
-
} & { [
|
|
13832
|
+
} & { [K_414 in Exclude<keyof I_1["channel_presence_event"], keyof ChannelPresenceEvent>]: never; }) | undefined;
|
|
13803
13833
|
error?: ({
|
|
13804
13834
|
code?: number | undefined;
|
|
13805
13835
|
message?: string | undefined;
|
|
@@ -13813,13 +13843,13 @@ export declare const Envelope: {
|
|
|
13813
13843
|
[x: string]: string | undefined;
|
|
13814
13844
|
} & {
|
|
13815
13845
|
[x: string]: string | undefined;
|
|
13816
|
-
} & { [
|
|
13817
|
-
} & { [
|
|
13846
|
+
} & { [K_415 in Exclude<keyof I_1["error"]["context"], string | number>]: never; }) | undefined;
|
|
13847
|
+
} & { [K_416 in Exclude<keyof I_1["error"], keyof Error>]: never; }) | undefined;
|
|
13818
13848
|
notifications?: ({
|
|
13819
13849
|
notifications?: {
|
|
13820
13850
|
id?: string | undefined;
|
|
13821
13851
|
subject?: string | undefined;
|
|
13822
|
-
content?:
|
|
13852
|
+
content?: Uint8Array | undefined;
|
|
13823
13853
|
code?: number | undefined;
|
|
13824
13854
|
sender_id?: string | undefined;
|
|
13825
13855
|
create_time?: Date | undefined;
|
|
@@ -13886,7 +13916,7 @@ export declare const Envelope: {
|
|
|
13886
13916
|
notifications?: ({
|
|
13887
13917
|
id?: string | undefined;
|
|
13888
13918
|
subject?: string | undefined;
|
|
13889
|
-
content?:
|
|
13919
|
+
content?: Uint8Array | undefined;
|
|
13890
13920
|
code?: number | undefined;
|
|
13891
13921
|
sender_id?: string | undefined;
|
|
13892
13922
|
create_time?: Date | undefined;
|
|
@@ -13951,7 +13981,7 @@ export declare const Envelope: {
|
|
|
13951
13981
|
}[] & ({
|
|
13952
13982
|
id?: string | undefined;
|
|
13953
13983
|
subject?: string | undefined;
|
|
13954
|
-
content?:
|
|
13984
|
+
content?: Uint8Array | undefined;
|
|
13955
13985
|
code?: number | undefined;
|
|
13956
13986
|
sender_id?: string | undefined;
|
|
13957
13987
|
create_time?: Date | undefined;
|
|
@@ -14016,7 +14046,7 @@ export declare const Envelope: {
|
|
|
14016
14046
|
} & {
|
|
14017
14047
|
id?: string | undefined;
|
|
14018
14048
|
subject?: string | undefined;
|
|
14019
|
-
content?:
|
|
14049
|
+
content?: Uint8Array | undefined;
|
|
14020
14050
|
code?: number | undefined;
|
|
14021
14051
|
sender_id?: string | undefined;
|
|
14022
14052
|
create_time?: Date | undefined;
|
|
@@ -14085,8 +14115,8 @@ export declare const Envelope: {
|
|
|
14085
14115
|
creator_id?: string | undefined;
|
|
14086
14116
|
channel_label?: string | undefined;
|
|
14087
14117
|
channel_private?: number | undefined;
|
|
14088
|
-
avatars?: (string[] & string[] & { [
|
|
14089
|
-
user_ids?: (string[] & string[] & { [
|
|
14118
|
+
avatars?: (string[] & string[] & { [K_417 in Exclude<keyof I_1["notifications"]["notifications"][number]["channel"]["avatars"], keyof string[]>]: never; }) | undefined;
|
|
14119
|
+
user_ids?: (string[] & string[] & { [K_418 in Exclude<keyof I_1["notifications"]["notifications"][number]["channel"]["user_ids"], keyof string[]>]: never; }) | undefined;
|
|
14090
14120
|
last_sent_message?: ({
|
|
14091
14121
|
id?: string | undefined;
|
|
14092
14122
|
timestamp_seconds?: number | undefined;
|
|
@@ -14105,7 +14135,7 @@ export declare const Envelope: {
|
|
|
14105
14135
|
reference?: Uint8Array | undefined;
|
|
14106
14136
|
mention?: Uint8Array | undefined;
|
|
14107
14137
|
reaction?: Uint8Array | undefined;
|
|
14108
|
-
} & { [
|
|
14138
|
+
} & { [K_419 in Exclude<keyof I_1["notifications"]["notifications"][number]["channel"]["last_sent_message"], keyof ChannelMessageHeader>]: never; }) | undefined;
|
|
14109
14139
|
last_seen_message?: ({
|
|
14110
14140
|
id?: string | undefined;
|
|
14111
14141
|
timestamp_seconds?: number | undefined;
|
|
@@ -14124,17 +14154,17 @@ export declare const Envelope: {
|
|
|
14124
14154
|
reference?: Uint8Array | undefined;
|
|
14125
14155
|
mention?: Uint8Array | undefined;
|
|
14126
14156
|
reaction?: Uint8Array | undefined;
|
|
14127
|
-
} & { [
|
|
14128
|
-
onlines?: (boolean[] & boolean[] & { [
|
|
14157
|
+
} & { [K_420 in Exclude<keyof I_1["notifications"]["notifications"][number]["channel"]["last_seen_message"], keyof ChannelMessageHeader>]: never; }) | undefined;
|
|
14158
|
+
onlines?: (boolean[] & boolean[] & { [K_421 in Exclude<keyof I_1["notifications"]["notifications"][number]["channel"]["onlines"], keyof boolean[]>]: never; }) | undefined;
|
|
14129
14159
|
meeting_code?: string | undefined;
|
|
14130
14160
|
count_mess_unread?: number | undefined;
|
|
14131
14161
|
active?: number | undefined;
|
|
14132
14162
|
last_pin_message?: string | undefined;
|
|
14133
|
-
usernames?: (string[] & string[] & { [
|
|
14163
|
+
usernames?: (string[] & string[] & { [K_422 in Exclude<keyof I_1["notifications"]["notifications"][number]["channel"]["usernames"], keyof string[]>]: never; }) | undefined;
|
|
14134
14164
|
creator_name?: string | undefined;
|
|
14135
14165
|
create_time_seconds?: number | undefined;
|
|
14136
14166
|
update_time_seconds?: number | undefined;
|
|
14137
|
-
display_names?: (string[] & string[] & { [
|
|
14167
|
+
display_names?: (string[] & string[] & { [K_423 in Exclude<keyof I_1["notifications"]["notifications"][number]["channel"]["display_names"], keyof string[]>]: never; }) | undefined;
|
|
14138
14168
|
channel_avatar?: string | undefined;
|
|
14139
14169
|
clan_name?: string | undefined;
|
|
14140
14170
|
app_id?: string | undefined;
|
|
@@ -14143,13 +14173,13 @@ export declare const Envelope: {
|
|
|
14143
14173
|
topic?: string | undefined;
|
|
14144
14174
|
e2ee?: number | undefined;
|
|
14145
14175
|
member_count?: number | undefined;
|
|
14146
|
-
} & { [
|
|
14176
|
+
} & { [K_424 in Exclude<keyof I_1["notifications"]["notifications"][number]["channel"], keyof ChannelDescription1>]: never; }) | undefined;
|
|
14147
14177
|
topic_id?: string | undefined;
|
|
14148
14178
|
category?: number | undefined;
|
|
14149
|
-
} & { [
|
|
14179
|
+
} & { [K_425 in Exclude<keyof I_1["notifications"]["notifications"][number], keyof Notification>]: never; })[] & { [K_426 in Exclude<keyof I_1["notifications"]["notifications"], keyof {
|
|
14150
14180
|
id?: string | undefined;
|
|
14151
14181
|
subject?: string | undefined;
|
|
14152
|
-
content?:
|
|
14182
|
+
content?: Uint8Array | undefined;
|
|
14153
14183
|
code?: number | undefined;
|
|
14154
14184
|
sender_id?: string | undefined;
|
|
14155
14185
|
create_time?: Date | undefined;
|
|
@@ -14212,7 +14242,7 @@ export declare const Envelope: {
|
|
|
14212
14242
|
topic_id?: string | undefined;
|
|
14213
14243
|
category?: number | undefined;
|
|
14214
14244
|
}[]>]: never; }) | undefined;
|
|
14215
|
-
} & { [
|
|
14245
|
+
} & { [K_427 in Exclude<keyof I_1["notifications"], "notifications">]: never; }) | undefined;
|
|
14216
14246
|
rpc?: ({
|
|
14217
14247
|
id?: string | undefined;
|
|
14218
14248
|
payload?: string | undefined;
|
|
@@ -14221,7 +14251,7 @@ export declare const Envelope: {
|
|
|
14221
14251
|
id?: string | undefined;
|
|
14222
14252
|
payload?: string | undefined;
|
|
14223
14253
|
http_key?: string | undefined;
|
|
14224
|
-
} & { [
|
|
14254
|
+
} & { [K_428 in Exclude<keyof I_1["rpc"], keyof Rpc>]: never; }) | undefined;
|
|
14225
14255
|
status?: ({
|
|
14226
14256
|
presences?: {
|
|
14227
14257
|
user_id?: string | undefined;
|
|
@@ -14253,7 +14283,7 @@ export declare const Envelope: {
|
|
|
14253
14283
|
status?: string | undefined;
|
|
14254
14284
|
is_mobile?: boolean | undefined;
|
|
14255
14285
|
user_status?: string | undefined;
|
|
14256
|
-
} & { [
|
|
14286
|
+
} & { [K_429 in Exclude<keyof I_1["status"]["presences"][number], keyof UserPresence>]: never; })[] & { [K_430 in Exclude<keyof I_1["status"]["presences"], keyof {
|
|
14257
14287
|
user_id?: string | undefined;
|
|
14258
14288
|
session_id?: string | undefined;
|
|
14259
14289
|
username?: string | undefined;
|
|
@@ -14261,14 +14291,14 @@ export declare const Envelope: {
|
|
|
14261
14291
|
is_mobile?: boolean | undefined;
|
|
14262
14292
|
user_status?: string | undefined;
|
|
14263
14293
|
}[]>]: never; }) | undefined;
|
|
14264
|
-
} & { [
|
|
14294
|
+
} & { [K_431 in Exclude<keyof I_1["status"], "presences">]: never; }) | undefined;
|
|
14265
14295
|
status_follow?: ({
|
|
14266
14296
|
user_ids?: string[] | undefined;
|
|
14267
14297
|
usernames?: string[] | undefined;
|
|
14268
14298
|
} & {
|
|
14269
|
-
user_ids?: (string[] & string[] & { [
|
|
14270
|
-
usernames?: (string[] & string[] & { [
|
|
14271
|
-
} & { [
|
|
14299
|
+
user_ids?: (string[] & string[] & { [K_432 in Exclude<keyof I_1["status_follow"]["user_ids"], keyof string[]>]: never; }) | undefined;
|
|
14300
|
+
usernames?: (string[] & string[] & { [K_433 in Exclude<keyof I_1["status_follow"]["usernames"], keyof string[]>]: never; }) | undefined;
|
|
14301
|
+
} & { [K_434 in Exclude<keyof I_1["status_follow"], keyof StatusFollow>]: never; }) | undefined;
|
|
14272
14302
|
status_presence_event?: ({
|
|
14273
14303
|
joins?: {
|
|
14274
14304
|
user_id?: string | undefined;
|
|
@@ -14308,7 +14338,7 @@ export declare const Envelope: {
|
|
|
14308
14338
|
status?: string | undefined;
|
|
14309
14339
|
is_mobile?: boolean | undefined;
|
|
14310
14340
|
user_status?: string | undefined;
|
|
14311
|
-
} & { [
|
|
14341
|
+
} & { [K_435 in Exclude<keyof I_1["status_presence_event"]["joins"][number], keyof UserPresence>]: never; })[] & { [K_436 in Exclude<keyof I_1["status_presence_event"]["joins"], keyof {
|
|
14312
14342
|
user_id?: string | undefined;
|
|
14313
14343
|
session_id?: string | undefined;
|
|
14314
14344
|
username?: string | undefined;
|
|
@@ -14337,7 +14367,7 @@ export declare const Envelope: {
|
|
|
14337
14367
|
status?: string | undefined;
|
|
14338
14368
|
is_mobile?: boolean | undefined;
|
|
14339
14369
|
user_status?: string | undefined;
|
|
14340
|
-
} & { [
|
|
14370
|
+
} & { [K_437 in Exclude<keyof I_1["status_presence_event"]["leaves"][number], keyof UserPresence>]: never; })[] & { [K_438 in Exclude<keyof I_1["status_presence_event"]["leaves"], keyof {
|
|
14341
14371
|
user_id?: string | undefined;
|
|
14342
14372
|
session_id?: string | undefined;
|
|
14343
14373
|
username?: string | undefined;
|
|
@@ -14345,17 +14375,17 @@ export declare const Envelope: {
|
|
|
14345
14375
|
is_mobile?: boolean | undefined;
|
|
14346
14376
|
user_status?: string | undefined;
|
|
14347
14377
|
}[]>]: never; }) | undefined;
|
|
14348
|
-
} & { [
|
|
14378
|
+
} & { [K_439 in Exclude<keyof I_1["status_presence_event"], keyof StatusPresenceEvent>]: never; }) | undefined;
|
|
14349
14379
|
status_unfollow?: ({
|
|
14350
14380
|
user_ids?: string[] | undefined;
|
|
14351
14381
|
} & {
|
|
14352
|
-
user_ids?: (string[] & string[] & { [
|
|
14353
|
-
} & { [
|
|
14382
|
+
user_ids?: (string[] & string[] & { [K_440 in Exclude<keyof I_1["status_unfollow"]["user_ids"], keyof string[]>]: never; }) | undefined;
|
|
14383
|
+
} & { [K_441 in Exclude<keyof I_1["status_unfollow"], "user_ids">]: never; }) | undefined;
|
|
14354
14384
|
status_update?: ({
|
|
14355
14385
|
status?: string | undefined;
|
|
14356
14386
|
} & {
|
|
14357
14387
|
status?: string | undefined;
|
|
14358
|
-
} & { [
|
|
14388
|
+
} & { [K_442 in Exclude<keyof I_1["status_update"], "status">]: never; }) | undefined;
|
|
14359
14389
|
stream_data?: ({
|
|
14360
14390
|
stream?: {
|
|
14361
14391
|
mode?: number | undefined;
|
|
@@ -14384,7 +14414,7 @@ export declare const Envelope: {
|
|
|
14384
14414
|
channel_id?: string | undefined;
|
|
14385
14415
|
clan_id?: string | undefined;
|
|
14386
14416
|
label?: string | undefined;
|
|
14387
|
-
} & { [
|
|
14417
|
+
} & { [K_443 in Exclude<keyof I_1["stream_data"]["stream"], keyof Stream>]: never; }) | undefined;
|
|
14388
14418
|
sender?: ({
|
|
14389
14419
|
user_id?: string | undefined;
|
|
14390
14420
|
session_id?: string | undefined;
|
|
@@ -14399,10 +14429,10 @@ export declare const Envelope: {
|
|
|
14399
14429
|
status?: string | undefined;
|
|
14400
14430
|
is_mobile?: boolean | undefined;
|
|
14401
14431
|
user_status?: string | undefined;
|
|
14402
|
-
} & { [
|
|
14432
|
+
} & { [K_444 in Exclude<keyof I_1["stream_data"]["sender"], keyof UserPresence>]: never; }) | undefined;
|
|
14403
14433
|
data?: string | undefined;
|
|
14404
14434
|
reliable?: boolean | undefined;
|
|
14405
|
-
} & { [
|
|
14435
|
+
} & { [K_445 in Exclude<keyof I_1["stream_data"], keyof StreamData>]: never; }) | undefined;
|
|
14406
14436
|
stream_presence_event?: ({
|
|
14407
14437
|
stream?: {
|
|
14408
14438
|
mode?: number | undefined;
|
|
@@ -14437,7 +14467,7 @@ export declare const Envelope: {
|
|
|
14437
14467
|
channel_id?: string | undefined;
|
|
14438
14468
|
clan_id?: string | undefined;
|
|
14439
14469
|
label?: string | undefined;
|
|
14440
|
-
} & { [
|
|
14470
|
+
} & { [K_446 in Exclude<keyof I_1["stream_presence_event"]["stream"], keyof Stream>]: never; }) | undefined;
|
|
14441
14471
|
joins?: ({
|
|
14442
14472
|
user_id?: string | undefined;
|
|
14443
14473
|
session_id?: string | undefined;
|
|
@@ -14459,7 +14489,7 @@ export declare const Envelope: {
|
|
|
14459
14489
|
status?: string | undefined;
|
|
14460
14490
|
is_mobile?: boolean | undefined;
|
|
14461
14491
|
user_status?: string | undefined;
|
|
14462
|
-
} & { [
|
|
14492
|
+
} & { [K_447 in Exclude<keyof I_1["stream_presence_event"]["joins"][number], keyof UserPresence>]: never; })[] & { [K_448 in Exclude<keyof I_1["stream_presence_event"]["joins"], keyof {
|
|
14463
14493
|
user_id?: string | undefined;
|
|
14464
14494
|
session_id?: string | undefined;
|
|
14465
14495
|
username?: string | undefined;
|
|
@@ -14488,7 +14518,7 @@ export declare const Envelope: {
|
|
|
14488
14518
|
status?: string | undefined;
|
|
14489
14519
|
is_mobile?: boolean | undefined;
|
|
14490
14520
|
user_status?: string | undefined;
|
|
14491
|
-
} & { [
|
|
14521
|
+
} & { [K_449 in Exclude<keyof I_1["stream_presence_event"]["leaves"][number], keyof UserPresence>]: never; })[] & { [K_450 in Exclude<keyof I_1["stream_presence_event"]["leaves"], keyof {
|
|
14492
14522
|
user_id?: string | undefined;
|
|
14493
14523
|
session_id?: string | undefined;
|
|
14494
14524
|
username?: string | undefined;
|
|
@@ -14496,9 +14526,9 @@ export declare const Envelope: {
|
|
|
14496
14526
|
is_mobile?: boolean | undefined;
|
|
14497
14527
|
user_status?: string | undefined;
|
|
14498
14528
|
}[]>]: never; }) | undefined;
|
|
14499
|
-
} & { [
|
|
14500
|
-
ping?: ({} & {} & { [
|
|
14501
|
-
pong?: ({} & {} & { [
|
|
14529
|
+
} & { [K_451 in Exclude<keyof I_1["stream_presence_event"], keyof StreamPresenceEvent>]: never; }) | undefined;
|
|
14530
|
+
ping?: ({} & {} & { [K_452 in Exclude<keyof I_1["ping"], never>]: never; }) | undefined;
|
|
14531
|
+
pong?: ({} & {} & { [K_453 in Exclude<keyof I_1["pong"], never>]: never; }) | undefined;
|
|
14502
14532
|
message_typing_event?: ({
|
|
14503
14533
|
clan_id?: string | undefined;
|
|
14504
14534
|
channel_id?: string | undefined;
|
|
@@ -14517,7 +14547,7 @@ export declare const Envelope: {
|
|
|
14517
14547
|
sender_username?: string | undefined;
|
|
14518
14548
|
sender_display_name?: string | undefined;
|
|
14519
14549
|
topic_id?: string | undefined;
|
|
14520
|
-
} & { [
|
|
14550
|
+
} & { [K_454 in Exclude<keyof I_1["message_typing_event"], keyof MessageTypingEvent>]: never; }) | undefined;
|
|
14521
14551
|
last_seen_message_event?: ({
|
|
14522
14552
|
clan_id?: string | undefined;
|
|
14523
14553
|
channel_id?: string | undefined;
|
|
@@ -14532,7 +14562,7 @@ export declare const Envelope: {
|
|
|
14532
14562
|
mode?: number | undefined;
|
|
14533
14563
|
timestamp_seconds?: number | undefined;
|
|
14534
14564
|
badge_count?: number | undefined;
|
|
14535
|
-
} & { [
|
|
14565
|
+
} & { [K_455 in Exclude<keyof I_1["last_seen_message_event"], keyof LastSeenMessageEvent>]: never; }) | undefined;
|
|
14536
14566
|
message_reaction_event?: ({
|
|
14537
14567
|
id?: string | undefined;
|
|
14538
14568
|
emoji_id?: string | undefined;
|
|
@@ -14567,7 +14597,7 @@ export declare const Envelope: {
|
|
|
14567
14597
|
is_public?: boolean | undefined;
|
|
14568
14598
|
topic_id?: string | undefined;
|
|
14569
14599
|
emoji_recent_id?: string | undefined;
|
|
14570
|
-
} & { [
|
|
14600
|
+
} & { [K_456 in Exclude<keyof I_1["message_reaction_event"], keyof MessageReaction>]: never; }) | undefined;
|
|
14571
14601
|
voice_joined_event?: ({
|
|
14572
14602
|
clan_id?: string | undefined;
|
|
14573
14603
|
clan_name?: string | undefined;
|
|
@@ -14586,7 +14616,7 @@ export declare const Envelope: {
|
|
|
14586
14616
|
voice_channel_label?: string | undefined;
|
|
14587
14617
|
voice_channel_id?: string | undefined;
|
|
14588
14618
|
last_screenshot?: string | undefined;
|
|
14589
|
-
} & { [
|
|
14619
|
+
} & { [K_457 in Exclude<keyof I_1["voice_joined_event"], keyof VoiceJoinedEvent>]: never; }) | undefined;
|
|
14590
14620
|
voice_leaved_event?: ({
|
|
14591
14621
|
id?: string | undefined;
|
|
14592
14622
|
clan_id?: string | undefined;
|
|
@@ -14597,7 +14627,7 @@ export declare const Envelope: {
|
|
|
14597
14627
|
clan_id?: string | undefined;
|
|
14598
14628
|
voice_channel_id?: string | undefined;
|
|
14599
14629
|
voice_user_id?: string | undefined;
|
|
14600
|
-
} & { [
|
|
14630
|
+
} & { [K_458 in Exclude<keyof I_1["voice_leaved_event"], keyof VoiceLeavedEvent>]: never; }) | undefined;
|
|
14601
14631
|
voice_started_event?: ({
|
|
14602
14632
|
id?: string | undefined;
|
|
14603
14633
|
clan_id?: string | undefined;
|
|
@@ -14606,7 +14636,7 @@ export declare const Envelope: {
|
|
|
14606
14636
|
id?: string | undefined;
|
|
14607
14637
|
clan_id?: string | undefined;
|
|
14608
14638
|
voice_channel_id?: string | undefined;
|
|
14609
|
-
} & { [
|
|
14639
|
+
} & { [K_459 in Exclude<keyof I_1["voice_started_event"], keyof VoiceStartedEvent>]: never; }) | undefined;
|
|
14610
14640
|
voice_ended_event?: ({
|
|
14611
14641
|
id?: string | undefined;
|
|
14612
14642
|
clan_id?: string | undefined;
|
|
@@ -14615,7 +14645,7 @@ export declare const Envelope: {
|
|
|
14615
14645
|
id?: string | undefined;
|
|
14616
14646
|
clan_id?: string | undefined;
|
|
14617
14647
|
voice_channel_id?: string | undefined;
|
|
14618
|
-
} & { [
|
|
14648
|
+
} & { [K_460 in Exclude<keyof I_1["voice_ended_event"], keyof VoiceEndedEvent>]: never; }) | undefined;
|
|
14619
14649
|
channel_created_event?: ({
|
|
14620
14650
|
clan_id?: string | undefined;
|
|
14621
14651
|
category_id?: string | undefined;
|
|
@@ -14642,7 +14672,7 @@ export declare const Envelope: {
|
|
|
14642
14672
|
app_id?: string | undefined;
|
|
14643
14673
|
clan_name?: string | undefined;
|
|
14644
14674
|
channel_avatar?: string | undefined;
|
|
14645
|
-
} & { [
|
|
14675
|
+
} & { [K_461 in Exclude<keyof I_1["channel_created_event"], keyof ChannelCreatedEvent>]: never; }) | undefined;
|
|
14646
14676
|
channel_deleted_event?: ({
|
|
14647
14677
|
clan_id?: string | undefined;
|
|
14648
14678
|
category_id?: string | undefined;
|
|
@@ -14655,7 +14685,7 @@ export declare const Envelope: {
|
|
|
14655
14685
|
parent_id?: string | undefined;
|
|
14656
14686
|
channel_id?: string | undefined;
|
|
14657
14687
|
deletor?: string | undefined;
|
|
14658
|
-
} & { [
|
|
14688
|
+
} & { [K_462 in Exclude<keyof I_1["channel_deleted_event"], keyof ChannelDeletedEvent>]: never; }) | undefined;
|
|
14659
14689
|
channel_updated_event?: ({
|
|
14660
14690
|
clan_id?: string | undefined;
|
|
14661
14691
|
category_id?: string | undefined;
|
|
@@ -14695,10 +14725,10 @@ export declare const Envelope: {
|
|
|
14695
14725
|
age_restricted?: number | undefined;
|
|
14696
14726
|
active?: number | undefined;
|
|
14697
14727
|
count_mess_unread?: number | undefined;
|
|
14698
|
-
user_ids?: (string[] & string[] & { [
|
|
14699
|
-
role_ids?: (string[] & string[] & { [
|
|
14728
|
+
user_ids?: (string[] & string[] & { [K_463 in Exclude<keyof I_1["channel_updated_event"]["user_ids"], keyof string[]>]: never; }) | undefined;
|
|
14729
|
+
role_ids?: (string[] & string[] & { [K_464 in Exclude<keyof I_1["channel_updated_event"]["role_ids"], keyof string[]>]: never; }) | undefined;
|
|
14700
14730
|
channel_avatar?: string | undefined;
|
|
14701
|
-
} & { [
|
|
14731
|
+
} & { [K_465 in Exclude<keyof I_1["channel_updated_event"], keyof ChannelUpdatedEvent>]: never; }) | undefined;
|
|
14702
14732
|
last_pin_message_event?: ({
|
|
14703
14733
|
clan_id?: string | undefined;
|
|
14704
14734
|
channel_id?: string | undefined;
|
|
@@ -14729,7 +14759,7 @@ export declare const Envelope: {
|
|
|
14729
14759
|
message_content?: string | undefined;
|
|
14730
14760
|
message_attachment?: string | undefined;
|
|
14731
14761
|
message_created_time?: string | undefined;
|
|
14732
|
-
} & { [
|
|
14762
|
+
} & { [K_466 in Exclude<keyof I_1["last_pin_message_event"], keyof LastPinMessageEvent>]: never; }) | undefined;
|
|
14733
14763
|
custom_status_event?: ({
|
|
14734
14764
|
clan_id?: string | undefined;
|
|
14735
14765
|
user_id?: string | undefined;
|
|
@@ -14744,7 +14774,7 @@ export declare const Envelope: {
|
|
|
14744
14774
|
status?: string | undefined;
|
|
14745
14775
|
time_reset?: number | undefined;
|
|
14746
14776
|
no_clear?: boolean | undefined;
|
|
14747
|
-
} & { [
|
|
14777
|
+
} & { [K_467 in Exclude<keyof I_1["custom_status_event"], keyof CustomStatusEvent>]: never; }) | undefined;
|
|
14748
14778
|
user_channel_added_event?: ({
|
|
14749
14779
|
channel_desc?: {
|
|
14750
14780
|
clan_id?: string | undefined;
|
|
@@ -14902,8 +14932,8 @@ export declare const Envelope: {
|
|
|
14902
14932
|
creator_id?: string | undefined;
|
|
14903
14933
|
channel_label?: string | undefined;
|
|
14904
14934
|
channel_private?: number | undefined;
|
|
14905
|
-
avatars?: (string[] & string[] & { [
|
|
14906
|
-
user_ids?: (string[] & string[] & { [
|
|
14935
|
+
avatars?: (string[] & string[] & { [K_468 in Exclude<keyof I_1["user_channel_added_event"]["channel_desc"]["avatars"], keyof string[]>]: never; }) | undefined;
|
|
14936
|
+
user_ids?: (string[] & string[] & { [K_469 in Exclude<keyof I_1["user_channel_added_event"]["channel_desc"]["user_ids"], keyof string[]>]: never; }) | undefined;
|
|
14907
14937
|
last_sent_message?: ({
|
|
14908
14938
|
id?: string | undefined;
|
|
14909
14939
|
timestamp_seconds?: number | undefined;
|
|
@@ -14922,7 +14952,7 @@ export declare const Envelope: {
|
|
|
14922
14952
|
reference?: Uint8Array | undefined;
|
|
14923
14953
|
mention?: Uint8Array | undefined;
|
|
14924
14954
|
reaction?: Uint8Array | undefined;
|
|
14925
|
-
} & { [
|
|
14955
|
+
} & { [K_470 in Exclude<keyof I_1["user_channel_added_event"]["channel_desc"]["last_sent_message"], keyof ChannelMessageHeader>]: never; }) | undefined;
|
|
14926
14956
|
last_seen_message?: ({
|
|
14927
14957
|
id?: string | undefined;
|
|
14928
14958
|
timestamp_seconds?: number | undefined;
|
|
@@ -14941,17 +14971,17 @@ export declare const Envelope: {
|
|
|
14941
14971
|
reference?: Uint8Array | undefined;
|
|
14942
14972
|
mention?: Uint8Array | undefined;
|
|
14943
14973
|
reaction?: Uint8Array | undefined;
|
|
14944
|
-
} & { [
|
|
14945
|
-
onlines?: (boolean[] & boolean[] & { [
|
|
14974
|
+
} & { [K_471 in Exclude<keyof I_1["user_channel_added_event"]["channel_desc"]["last_seen_message"], keyof ChannelMessageHeader>]: never; }) | undefined;
|
|
14975
|
+
onlines?: (boolean[] & boolean[] & { [K_472 in Exclude<keyof I_1["user_channel_added_event"]["channel_desc"]["onlines"], keyof boolean[]>]: never; }) | undefined;
|
|
14946
14976
|
meeting_code?: string | undefined;
|
|
14947
14977
|
count_mess_unread?: number | undefined;
|
|
14948
14978
|
active?: number | undefined;
|
|
14949
14979
|
last_pin_message?: string | undefined;
|
|
14950
|
-
usernames?: (string[] & string[] & { [
|
|
14980
|
+
usernames?: (string[] & string[] & { [K_473 in Exclude<keyof I_1["user_channel_added_event"]["channel_desc"]["usernames"], keyof string[]>]: never; }) | undefined;
|
|
14951
14981
|
creator_name?: string | undefined;
|
|
14952
14982
|
create_time_seconds?: number | undefined;
|
|
14953
14983
|
update_time_seconds?: number | undefined;
|
|
14954
|
-
display_names?: (string[] & string[] & { [
|
|
14984
|
+
display_names?: (string[] & string[] & { [K_474 in Exclude<keyof I_1["user_channel_added_event"]["channel_desc"]["display_names"], keyof string[]>]: never; }) | undefined;
|
|
14955
14985
|
channel_avatar?: string | undefined;
|
|
14956
14986
|
clan_name?: string | undefined;
|
|
14957
14987
|
app_id?: string | undefined;
|
|
@@ -14960,7 +14990,7 @@ export declare const Envelope: {
|
|
|
14960
14990
|
topic?: string | undefined;
|
|
14961
14991
|
e2ee?: number | undefined;
|
|
14962
14992
|
member_count?: number | undefined;
|
|
14963
|
-
} & { [
|
|
14993
|
+
} & { [K_475 in Exclude<keyof I_1["user_channel_added_event"]["channel_desc"], keyof ChannelDescription1>]: never; }) | undefined;
|
|
14964
14994
|
users?: ({
|
|
14965
14995
|
user_id?: string | undefined;
|
|
14966
14996
|
username?: string | undefined;
|
|
@@ -15019,18 +15049,18 @@ export declare const Envelope: {
|
|
|
15019
15049
|
device_id?: string | undefined;
|
|
15020
15050
|
token_id?: string | undefined;
|
|
15021
15051
|
platform?: string | undefined;
|
|
15022
|
-
} & { [
|
|
15052
|
+
} & { [K_476 in Exclude<keyof I_1["user_channel_added_event"]["users"][number]["fcm_tokens"][number], keyof FCMTokens>]: never; })[] & { [K_477 in Exclude<keyof I_1["user_channel_added_event"]["users"][number]["fcm_tokens"], keyof {
|
|
15023
15053
|
device_id?: string | undefined;
|
|
15024
15054
|
token_id?: string | undefined;
|
|
15025
15055
|
platform?: string | undefined;
|
|
15026
15056
|
}[]>]: never; }) | undefined;
|
|
15027
|
-
joined_clans?: (string[] & string[] & { [
|
|
15057
|
+
joined_clans?: (string[] & string[] & { [K_478 in Exclude<keyof I_1["user_channel_added_event"]["users"][number]["joined_clans"], keyof string[]>]: never; }) | undefined;
|
|
15028
15058
|
app_token?: string | undefined;
|
|
15029
15059
|
create_time_second?: number | undefined;
|
|
15030
15060
|
app_url?: string | undefined;
|
|
15031
15061
|
is_bot?: boolean | undefined;
|
|
15032
15062
|
voip_token?: string | undefined;
|
|
15033
|
-
} & { [
|
|
15063
|
+
} & { [K_479 in Exclude<keyof I_1["user_channel_added_event"]["users"][number], keyof UserProfileRedis>]: never; })[] & { [K_480 in Exclude<keyof I_1["user_channel_added_event"]["users"], keyof {
|
|
15034
15064
|
user_id?: string | undefined;
|
|
15035
15065
|
username?: string | undefined;
|
|
15036
15066
|
avatar?: string | undefined;
|
|
@@ -15091,21 +15121,21 @@ export declare const Envelope: {
|
|
|
15091
15121
|
device_id?: string | undefined;
|
|
15092
15122
|
token_id?: string | undefined;
|
|
15093
15123
|
platform?: string | undefined;
|
|
15094
|
-
} & { [
|
|
15124
|
+
} & { [K_481 in Exclude<keyof I_1["user_channel_added_event"]["caller"]["fcm_tokens"][number], keyof FCMTokens>]: never; })[] & { [K_482 in Exclude<keyof I_1["user_channel_added_event"]["caller"]["fcm_tokens"], keyof {
|
|
15095
15125
|
device_id?: string | undefined;
|
|
15096
15126
|
token_id?: string | undefined;
|
|
15097
15127
|
platform?: string | undefined;
|
|
15098
15128
|
}[]>]: never; }) | undefined;
|
|
15099
|
-
joined_clans?: (string[] & string[] & { [
|
|
15129
|
+
joined_clans?: (string[] & string[] & { [K_483 in Exclude<keyof I_1["user_channel_added_event"]["caller"]["joined_clans"], keyof string[]>]: never; }) | undefined;
|
|
15100
15130
|
app_token?: string | undefined;
|
|
15101
15131
|
create_time_second?: number | undefined;
|
|
15102
15132
|
app_url?: string | undefined;
|
|
15103
15133
|
is_bot?: boolean | undefined;
|
|
15104
15134
|
voip_token?: string | undefined;
|
|
15105
|
-
} & { [
|
|
15135
|
+
} & { [K_484 in Exclude<keyof I_1["user_channel_added_event"]["caller"], keyof UserProfileRedis>]: never; }) | undefined;
|
|
15106
15136
|
create_time_second?: number | undefined;
|
|
15107
15137
|
active?: number | undefined;
|
|
15108
|
-
} & { [
|
|
15138
|
+
} & { [K_485 in Exclude<keyof I_1["user_channel_added_event"], keyof UserChannelAdded>]: never; }) | undefined;
|
|
15109
15139
|
user_channel_removed_event?: ({
|
|
15110
15140
|
channel_id?: string | undefined;
|
|
15111
15141
|
user_ids?: string[] | undefined;
|
|
@@ -15114,18 +15144,18 @@ export declare const Envelope: {
|
|
|
15114
15144
|
badge_counts?: number[] | undefined;
|
|
15115
15145
|
} & {
|
|
15116
15146
|
channel_id?: string | undefined;
|
|
15117
|
-
user_ids?: (string[] & string[] & { [
|
|
15147
|
+
user_ids?: (string[] & string[] & { [K_486 in Exclude<keyof I_1["user_channel_removed_event"]["user_ids"], keyof string[]>]: never; }) | undefined;
|
|
15118
15148
|
channel_type?: number | undefined;
|
|
15119
15149
|
clan_id?: string | undefined;
|
|
15120
|
-
badge_counts?: (number[] & number[] & { [
|
|
15121
|
-
} & { [
|
|
15150
|
+
badge_counts?: (number[] & number[] & { [K_487 in Exclude<keyof I_1["user_channel_removed_event"]["badge_counts"], keyof number[]>]: never; }) | undefined;
|
|
15151
|
+
} & { [K_488 in Exclude<keyof I_1["user_channel_removed_event"], keyof UserChannelRemoved>]: never; }) | undefined;
|
|
15122
15152
|
user_clan_removed_event?: ({
|
|
15123
15153
|
clan_id?: string | undefined;
|
|
15124
15154
|
user_ids?: string[] | undefined;
|
|
15125
15155
|
} & {
|
|
15126
15156
|
clan_id?: string | undefined;
|
|
15127
|
-
user_ids?: (string[] & string[] & { [
|
|
15128
|
-
} & { [
|
|
15157
|
+
user_ids?: (string[] & string[] & { [K_489 in Exclude<keyof I_1["user_clan_removed_event"]["user_ids"], keyof string[]>]: never; }) | undefined;
|
|
15158
|
+
} & { [K_490 in Exclude<keyof I_1["user_clan_removed_event"], keyof UserClanRemoved>]: never; }) | undefined;
|
|
15129
15159
|
clan_updated_event?: ({
|
|
15130
15160
|
clan_id?: string | undefined;
|
|
15131
15161
|
clan_name?: string | undefined;
|
|
@@ -15154,7 +15184,7 @@ export declare const Envelope: {
|
|
|
15154
15184
|
about?: string | undefined;
|
|
15155
15185
|
description?: string | undefined;
|
|
15156
15186
|
prevent_anonymous?: boolean | undefined;
|
|
15157
|
-
} & { [
|
|
15187
|
+
} & { [K_491 in Exclude<keyof I_1["clan_updated_event"], keyof ClanUpdatedEvent>]: never; }) | undefined;
|
|
15158
15188
|
clan_profile_updated_event?: ({
|
|
15159
15189
|
user_id?: string | undefined;
|
|
15160
15190
|
clan_nick?: string | undefined;
|
|
@@ -15165,7 +15195,7 @@ export declare const Envelope: {
|
|
|
15165
15195
|
clan_nick?: string | undefined;
|
|
15166
15196
|
clan_avatar?: string | undefined;
|
|
15167
15197
|
clan_id?: string | undefined;
|
|
15168
|
-
} & { [
|
|
15198
|
+
} & { [K_492 in Exclude<keyof I_1["clan_profile_updated_event"], keyof ClanProfileUpdatedEvent>]: never; }) | undefined;
|
|
15169
15199
|
check_name_existed_event?: ({
|
|
15170
15200
|
name?: string | undefined;
|
|
15171
15201
|
condition_id?: string | undefined;
|
|
@@ -15178,7 +15208,7 @@ export declare const Envelope: {
|
|
|
15178
15208
|
exist?: boolean | undefined;
|
|
15179
15209
|
type?: number | undefined;
|
|
15180
15210
|
clan_id?: string | undefined;
|
|
15181
|
-
} & { [
|
|
15211
|
+
} & { [K_493 in Exclude<keyof I_1["check_name_existed_event"], keyof CheckNameExistedEvent>]: never; }) | undefined;
|
|
15182
15212
|
user_profile_updated_event?: ({
|
|
15183
15213
|
user_id?: string | undefined;
|
|
15184
15214
|
display_name?: string | undefined;
|
|
@@ -15195,7 +15225,7 @@ export declare const Envelope: {
|
|
|
15195
15225
|
channel_id?: string | undefined;
|
|
15196
15226
|
clan_id?: string | undefined;
|
|
15197
15227
|
encrypt_private_key?: string | undefined;
|
|
15198
|
-
} & { [
|
|
15228
|
+
} & { [K_494 in Exclude<keyof I_1["user_profile_updated_event"], keyof UserProfileUpdatedEvent>]: never; }) | undefined;
|
|
15199
15229
|
add_clan_user_event?: ({
|
|
15200
15230
|
clan_id?: string | undefined;
|
|
15201
15231
|
user?: {
|
|
@@ -15260,20 +15290,20 @@ export declare const Envelope: {
|
|
|
15260
15290
|
device_id?: string | undefined;
|
|
15261
15291
|
token_id?: string | undefined;
|
|
15262
15292
|
platform?: string | undefined;
|
|
15263
|
-
} & { [
|
|
15293
|
+
} & { [K_495 in Exclude<keyof I_1["add_clan_user_event"]["user"]["fcm_tokens"][number], keyof FCMTokens>]: never; })[] & { [K_496 in Exclude<keyof I_1["add_clan_user_event"]["user"]["fcm_tokens"], keyof {
|
|
15264
15294
|
device_id?: string | undefined;
|
|
15265
15295
|
token_id?: string | undefined;
|
|
15266
15296
|
platform?: string | undefined;
|
|
15267
15297
|
}[]>]: never; }) | undefined;
|
|
15268
|
-
joined_clans?: (string[] & string[] & { [
|
|
15298
|
+
joined_clans?: (string[] & string[] & { [K_497 in Exclude<keyof I_1["add_clan_user_event"]["user"]["joined_clans"], keyof string[]>]: never; }) | undefined;
|
|
15269
15299
|
app_token?: string | undefined;
|
|
15270
15300
|
create_time_second?: number | undefined;
|
|
15271
15301
|
app_url?: string | undefined;
|
|
15272
15302
|
is_bot?: boolean | undefined;
|
|
15273
15303
|
voip_token?: string | undefined;
|
|
15274
|
-
} & { [
|
|
15304
|
+
} & { [K_498 in Exclude<keyof I_1["add_clan_user_event"]["user"], keyof UserProfileRedis>]: never; }) | undefined;
|
|
15275
15305
|
invitor?: string | undefined;
|
|
15276
|
-
} & { [
|
|
15306
|
+
} & { [K_499 in Exclude<keyof I_1["add_clan_user_event"], keyof AddClanUserEvent>]: never; }) | undefined;
|
|
15277
15307
|
clan_event_created?: ({
|
|
15278
15308
|
title?: string | undefined;
|
|
15279
15309
|
logo?: string | undefined;
|
|
@@ -15327,8 +15357,8 @@ export declare const Envelope: {
|
|
|
15327
15357
|
external_link?: string | undefined;
|
|
15328
15358
|
creator_id?: string | undefined;
|
|
15329
15359
|
event_id?: string | undefined;
|
|
15330
|
-
} & { [
|
|
15331
|
-
} & { [
|
|
15360
|
+
} & { [K_500 in Exclude<keyof I_1["clan_event_created"]["meet_room"], keyof import("../api/api").GenerateMezonMeetResponse>]: never; }) | undefined;
|
|
15361
|
+
} & { [K_501 in Exclude<keyof I_1["clan_event_created"], keyof CreateEventRequest>]: never; }) | undefined;
|
|
15332
15362
|
role_assign_event?: ({
|
|
15333
15363
|
ClanId?: string | undefined;
|
|
15334
15364
|
role_id?: string | undefined;
|
|
@@ -15337,16 +15367,16 @@ export declare const Envelope: {
|
|
|
15337
15367
|
} & {
|
|
15338
15368
|
ClanId?: string | undefined;
|
|
15339
15369
|
role_id?: string | undefined;
|
|
15340
|
-
user_ids_assigned?: (string[] & string[] & { [
|
|
15341
|
-
user_ids_removed?: (string[] & string[] & { [
|
|
15342
|
-
} & { [
|
|
15370
|
+
user_ids_assigned?: (string[] & string[] & { [K_502 in Exclude<keyof I_1["role_assign_event"]["user_ids_assigned"], keyof string[]>]: never; }) | undefined;
|
|
15371
|
+
user_ids_removed?: (string[] & string[] & { [K_503 in Exclude<keyof I_1["role_assign_event"]["user_ids_removed"], keyof string[]>]: never; }) | undefined;
|
|
15372
|
+
} & { [K_504 in Exclude<keyof I_1["role_assign_event"], keyof RoleAssignedEvent>]: never; }) | undefined;
|
|
15343
15373
|
clan_deleted_event?: ({
|
|
15344
15374
|
clan_id?: string | undefined;
|
|
15345
15375
|
deletor?: string | undefined;
|
|
15346
15376
|
} & {
|
|
15347
15377
|
clan_id?: string | undefined;
|
|
15348
15378
|
deletor?: string | undefined;
|
|
15349
|
-
} & { [
|
|
15379
|
+
} & { [K_505 in Exclude<keyof I_1["clan_deleted_event"], keyof ClanDeletedEvent>]: never; }) | undefined;
|
|
15350
15380
|
give_coffee_event?: ({
|
|
15351
15381
|
sender_id?: string | undefined;
|
|
15352
15382
|
receiver_id?: string | undefined;
|
|
@@ -15361,7 +15391,7 @@ export declare const Envelope: {
|
|
|
15361
15391
|
message_ref_id?: string | undefined;
|
|
15362
15392
|
channel_id?: string | undefined;
|
|
15363
15393
|
clan_id?: string | undefined;
|
|
15364
|
-
} & { [
|
|
15394
|
+
} & { [K_506 in Exclude<keyof I_1["give_coffee_event"], keyof GiveCoffeeEvent>]: never; }) | undefined;
|
|
15365
15395
|
sticker_create_event?: ({
|
|
15366
15396
|
clan_id?: string | undefined;
|
|
15367
15397
|
source?: string | undefined;
|
|
@@ -15380,7 +15410,7 @@ export declare const Envelope: {
|
|
|
15380
15410
|
sticker_id?: string | undefined;
|
|
15381
15411
|
logo?: string | undefined;
|
|
15382
15412
|
clan_name?: string | undefined;
|
|
15383
|
-
} & { [
|
|
15413
|
+
} & { [K_507 in Exclude<keyof I_1["sticker_create_event"], keyof StickerCreateEvent>]: never; }) | undefined;
|
|
15384
15414
|
sticker_update_event?: ({
|
|
15385
15415
|
shortname?: string | undefined;
|
|
15386
15416
|
sticker_id?: string | undefined;
|
|
@@ -15389,14 +15419,14 @@ export declare const Envelope: {
|
|
|
15389
15419
|
shortname?: string | undefined;
|
|
15390
15420
|
sticker_id?: string | undefined;
|
|
15391
15421
|
user_id?: string | undefined;
|
|
15392
|
-
} & { [
|
|
15422
|
+
} & { [K_508 in Exclude<keyof I_1["sticker_update_event"], keyof StickerUpdateEvent>]: never; }) | undefined;
|
|
15393
15423
|
sticker_delete_event?: ({
|
|
15394
15424
|
sticker_id?: string | undefined;
|
|
15395
15425
|
user_id?: string | undefined;
|
|
15396
15426
|
} & {
|
|
15397
15427
|
sticker_id?: string | undefined;
|
|
15398
15428
|
user_id?: string | undefined;
|
|
15399
|
-
} & { [
|
|
15429
|
+
} & { [K_509 in Exclude<keyof I_1["sticker_delete_event"], keyof StickerDeleteEvent>]: never; }) | undefined;
|
|
15400
15430
|
role_event?: ({
|
|
15401
15431
|
role?: {
|
|
15402
15432
|
id?: string | undefined;
|
|
@@ -15534,7 +15564,7 @@ export declare const Envelope: {
|
|
|
15534
15564
|
lang_tag?: string | undefined;
|
|
15535
15565
|
location?: string | undefined;
|
|
15536
15566
|
online?: boolean | undefined;
|
|
15537
|
-
} & { [
|
|
15567
|
+
} & { [K_510 in Exclude<keyof I_1["role_event"]["role"]["role_user_list"]["role_users"][number], keyof import("../api/api").RoleUserList_RoleUser>]: never; })[] & { [K_511 in Exclude<keyof I_1["role_event"]["role"]["role_user_list"]["role_users"], keyof {
|
|
15538
15568
|
id?: string | undefined;
|
|
15539
15569
|
username?: string | undefined;
|
|
15540
15570
|
display_name?: string | undefined;
|
|
@@ -15544,7 +15574,7 @@ export declare const Envelope: {
|
|
|
15544
15574
|
online?: boolean | undefined;
|
|
15545
15575
|
}[]>]: never; }) | undefined;
|
|
15546
15576
|
cursor?: string | undefined;
|
|
15547
|
-
} & { [
|
|
15577
|
+
} & { [K_512 in Exclude<keyof I_1["role_event"]["role"]["role_user_list"], keyof RoleUserList>]: never; }) | undefined;
|
|
15548
15578
|
permission_list?: ({
|
|
15549
15579
|
permissions?: {
|
|
15550
15580
|
id?: string | undefined;
|
|
@@ -15581,7 +15611,7 @@ export declare const Envelope: {
|
|
|
15581
15611
|
active?: number | undefined;
|
|
15582
15612
|
scope?: number | undefined;
|
|
15583
15613
|
level?: number | undefined;
|
|
15584
|
-
} & { [
|
|
15614
|
+
} & { [K_513 in Exclude<keyof I_1["role_event"]["role"]["permission_list"]["permissions"][number], keyof import("../api/api").Permission>]: never; })[] & { [K_514 in Exclude<keyof I_1["role_event"]["role"]["permission_list"]["permissions"], keyof {
|
|
15585
15615
|
id?: string | undefined;
|
|
15586
15616
|
title?: string | undefined;
|
|
15587
15617
|
slug?: string | undefined;
|
|
@@ -15591,19 +15621,19 @@ export declare const Envelope: {
|
|
|
15591
15621
|
level?: number | undefined;
|
|
15592
15622
|
}[]>]: never; }) | undefined;
|
|
15593
15623
|
max_level_permission?: number | undefined;
|
|
15594
|
-
} & { [
|
|
15624
|
+
} & { [K_515 in Exclude<keyof I_1["role_event"]["role"]["permission_list"], keyof PermissionList>]: never; }) | undefined;
|
|
15595
15625
|
role_channel_active?: number | undefined;
|
|
15596
|
-
channel_ids?: (string[] & string[] & { [
|
|
15626
|
+
channel_ids?: (string[] & string[] & { [K_516 in Exclude<keyof I_1["role_event"]["role"]["channel_ids"], keyof string[]>]: never; }) | undefined;
|
|
15597
15627
|
max_level_permission?: number | undefined;
|
|
15598
15628
|
order_role?: number | undefined;
|
|
15599
|
-
} & { [
|
|
15629
|
+
} & { [K_517 in Exclude<keyof I_1["role_event"]["role"], keyof Role>]: never; }) | undefined;
|
|
15600
15630
|
status?: number | undefined;
|
|
15601
15631
|
user_id?: string | undefined;
|
|
15602
|
-
user_add_ids?: (string[] & string[] & { [
|
|
15603
|
-
user_remove_ids?: (string[] & string[] & { [
|
|
15604
|
-
active_permission_ids?: (string[] & string[] & { [
|
|
15605
|
-
remove_permission_ids?: (string[] & string[] & { [
|
|
15606
|
-
} & { [
|
|
15632
|
+
user_add_ids?: (string[] & string[] & { [K_518 in Exclude<keyof I_1["role_event"]["user_add_ids"], keyof string[]>]: never; }) | undefined;
|
|
15633
|
+
user_remove_ids?: (string[] & string[] & { [K_519 in Exclude<keyof I_1["role_event"]["user_remove_ids"], keyof string[]>]: never; }) | undefined;
|
|
15634
|
+
active_permission_ids?: (string[] & string[] & { [K_520 in Exclude<keyof I_1["role_event"]["active_permission_ids"], keyof string[]>]: never; }) | undefined;
|
|
15635
|
+
remove_permission_ids?: (string[] & string[] & { [K_521 in Exclude<keyof I_1["role_event"]["remove_permission_ids"], keyof string[]>]: never; }) | undefined;
|
|
15636
|
+
} & { [K_522 in Exclude<keyof I_1["role_event"], keyof RoleEvent>]: never; }) | undefined;
|
|
15607
15637
|
event_emoji?: ({
|
|
15608
15638
|
id?: string | undefined;
|
|
15609
15639
|
clan_id?: string | undefined;
|
|
@@ -15626,7 +15656,7 @@ export declare const Envelope: {
|
|
|
15626
15656
|
logo?: string | undefined;
|
|
15627
15657
|
clan_name?: string | undefined;
|
|
15628
15658
|
is_for_sale?: boolean | undefined;
|
|
15629
|
-
} & { [
|
|
15659
|
+
} & { [K_523 in Exclude<keyof I_1["event_emoji"], keyof EventEmoji>]: never; }) | undefined;
|
|
15630
15660
|
streaming_joined_event?: ({
|
|
15631
15661
|
clan_id?: string | undefined;
|
|
15632
15662
|
clan_name?: string | undefined;
|
|
@@ -15643,7 +15673,7 @@ export declare const Envelope: {
|
|
|
15643
15673
|
user_id?: string | undefined;
|
|
15644
15674
|
streaming_channel_label?: string | undefined;
|
|
15645
15675
|
streaming_channel_id?: string | undefined;
|
|
15646
|
-
} & { [
|
|
15676
|
+
} & { [K_524 in Exclude<keyof I_1["streaming_joined_event"], keyof StreamingJoinedEvent>]: never; }) | undefined;
|
|
15647
15677
|
streaming_leaved_event?: ({
|
|
15648
15678
|
id?: string | undefined;
|
|
15649
15679
|
clan_id?: string | undefined;
|
|
@@ -15654,7 +15684,7 @@ export declare const Envelope: {
|
|
|
15654
15684
|
clan_id?: string | undefined;
|
|
15655
15685
|
streaming_channel_id?: string | undefined;
|
|
15656
15686
|
streaming_user_id?: string | undefined;
|
|
15657
|
-
} & { [
|
|
15687
|
+
} & { [K_525 in Exclude<keyof I_1["streaming_leaved_event"], keyof StreamingLeavedEvent>]: never; }) | undefined;
|
|
15658
15688
|
streaming_started_event?: ({
|
|
15659
15689
|
clan_id?: string | undefined;
|
|
15660
15690
|
channel_id?: string | undefined;
|
|
@@ -15665,14 +15695,14 @@ export declare const Envelope: {
|
|
|
15665
15695
|
channel_id?: string | undefined;
|
|
15666
15696
|
streaming_url?: string | undefined;
|
|
15667
15697
|
is_streaming?: boolean | undefined;
|
|
15668
|
-
} & { [
|
|
15698
|
+
} & { [K_526 in Exclude<keyof I_1["streaming_started_event"], keyof StreamingStartedEvent>]: never; }) | undefined;
|
|
15669
15699
|
streaming_ended_event?: ({
|
|
15670
15700
|
clan_id?: string | undefined;
|
|
15671
15701
|
channel_id?: string | undefined;
|
|
15672
15702
|
} & {
|
|
15673
15703
|
clan_id?: string | undefined;
|
|
15674
15704
|
channel_id?: string | undefined;
|
|
15675
|
-
} & { [
|
|
15705
|
+
} & { [K_527 in Exclude<keyof I_1["streaming_ended_event"], keyof StreamingEndedEvent>]: never; }) | undefined;
|
|
15676
15706
|
permission_set_event?: ({
|
|
15677
15707
|
caller?: string | undefined;
|
|
15678
15708
|
role_id?: string | undefined;
|
|
@@ -15700,12 +15730,12 @@ export declare const Envelope: {
|
|
|
15700
15730
|
permission_id?: string | undefined;
|
|
15701
15731
|
slug?: string | undefined;
|
|
15702
15732
|
type?: number | undefined;
|
|
15703
|
-
} & { [
|
|
15733
|
+
} & { [K_528 in Exclude<keyof I_1["permission_set_event"]["permission_updates"][number], keyof PermissionUpdate>]: never; })[] & { [K_529 in Exclude<keyof I_1["permission_set_event"]["permission_updates"], keyof {
|
|
15704
15734
|
permission_id?: string | undefined;
|
|
15705
15735
|
slug?: string | undefined;
|
|
15706
15736
|
type?: number | undefined;
|
|
15707
15737
|
}[]>]: never; }) | undefined;
|
|
15708
|
-
} & { [
|
|
15738
|
+
} & { [K_530 in Exclude<keyof I_1["permission_set_event"], keyof PermissionSetEvent>]: never; }) | undefined;
|
|
15709
15739
|
permission_changed_event?: ({
|
|
15710
15740
|
user_id?: string | undefined;
|
|
15711
15741
|
channel_id?: string | undefined;
|
|
@@ -15739,7 +15769,7 @@ export declare const Envelope: {
|
|
|
15739
15769
|
permission_id?: string | undefined;
|
|
15740
15770
|
slug?: string | undefined;
|
|
15741
15771
|
type?: number | undefined;
|
|
15742
|
-
} & { [
|
|
15772
|
+
} & { [K_531 in Exclude<keyof I_1["permission_changed_event"]["add_permissions"][number], keyof PermissionUpdate>]: never; })[] & { [K_532 in Exclude<keyof I_1["permission_changed_event"]["add_permissions"], keyof {
|
|
15743
15773
|
permission_id?: string | undefined;
|
|
15744
15774
|
slug?: string | undefined;
|
|
15745
15775
|
type?: number | undefined;
|
|
@@ -15756,7 +15786,7 @@ export declare const Envelope: {
|
|
|
15756
15786
|
permission_id?: string | undefined;
|
|
15757
15787
|
slug?: string | undefined;
|
|
15758
15788
|
type?: number | undefined;
|
|
15759
|
-
} & { [
|
|
15789
|
+
} & { [K_533 in Exclude<keyof I_1["permission_changed_event"]["remove_permissions"][number], keyof PermissionUpdate>]: never; })[] & { [K_534 in Exclude<keyof I_1["permission_changed_event"]["remove_permissions"], keyof {
|
|
15760
15790
|
permission_id?: string | undefined;
|
|
15761
15791
|
slug?: string | undefined;
|
|
15762
15792
|
type?: number | undefined;
|
|
@@ -15773,12 +15803,12 @@ export declare const Envelope: {
|
|
|
15773
15803
|
permission_id?: string | undefined;
|
|
15774
15804
|
slug?: string | undefined;
|
|
15775
15805
|
type?: number | undefined;
|
|
15776
|
-
} & { [
|
|
15806
|
+
} & { [K_535 in Exclude<keyof I_1["permission_changed_event"]["default_permissions"][number], keyof PermissionUpdate>]: never; })[] & { [K_536 in Exclude<keyof I_1["permission_changed_event"]["default_permissions"], keyof {
|
|
15777
15807
|
permission_id?: string | undefined;
|
|
15778
15808
|
slug?: string | undefined;
|
|
15779
15809
|
type?: number | undefined;
|
|
15780
15810
|
}[]>]: never; }) | undefined;
|
|
15781
|
-
} & { [
|
|
15811
|
+
} & { [K_537 in Exclude<keyof I_1["permission_changed_event"], keyof PermissionChangedEvent>]: never; }) | undefined;
|
|
15782
15812
|
token_sent_event?: ({
|
|
15783
15813
|
sender_id?: string | undefined;
|
|
15784
15814
|
sender_name?: string | undefined;
|
|
@@ -15795,7 +15825,7 @@ export declare const Envelope: {
|
|
|
15795
15825
|
note?: string | undefined;
|
|
15796
15826
|
extra_attribute?: string | undefined;
|
|
15797
15827
|
transaction_id?: string | undefined;
|
|
15798
|
-
} & { [
|
|
15828
|
+
} & { [K_538 in Exclude<keyof I_1["token_sent_event"], keyof TokenSentEvent>]: never; }) | undefined;
|
|
15799
15829
|
message_button_clicked?: ({
|
|
15800
15830
|
message_id?: string | undefined;
|
|
15801
15831
|
channel_id?: string | undefined;
|
|
@@ -15810,7 +15840,7 @@ export declare const Envelope: {
|
|
|
15810
15840
|
sender_id?: string | undefined;
|
|
15811
15841
|
user_id?: string | undefined;
|
|
15812
15842
|
extra_data?: string | undefined;
|
|
15813
|
-
} & { [
|
|
15843
|
+
} & { [K_539 in Exclude<keyof I_1["message_button_clicked"], keyof MessageButtonClicked>]: never; }) | undefined;
|
|
15814
15844
|
unmute_event?: ({
|
|
15815
15845
|
channel_id?: string | undefined;
|
|
15816
15846
|
category_id?: string | undefined;
|
|
@@ -15819,7 +15849,7 @@ export declare const Envelope: {
|
|
|
15819
15849
|
channel_id?: string | undefined;
|
|
15820
15850
|
category_id?: string | undefined;
|
|
15821
15851
|
clan_id?: string | undefined;
|
|
15822
|
-
} & { [
|
|
15852
|
+
} & { [K_540 in Exclude<keyof I_1["unmute_event"], keyof UnmuteEvent>]: never; }) | undefined;
|
|
15823
15853
|
webrtc_signaling_fwd?: ({
|
|
15824
15854
|
receiver_id?: string | undefined;
|
|
15825
15855
|
data_type?: number | undefined;
|
|
@@ -15832,7 +15862,7 @@ export declare const Envelope: {
|
|
|
15832
15862
|
json_data?: string | undefined;
|
|
15833
15863
|
channel_id?: string | undefined;
|
|
15834
15864
|
caller_id?: string | undefined;
|
|
15835
|
-
} & { [
|
|
15865
|
+
} & { [K_541 in Exclude<keyof I_1["webrtc_signaling_fwd"], keyof WebrtcSignalingFwd>]: never; }) | undefined;
|
|
15836
15866
|
list_activity?: ({
|
|
15837
15867
|
acts?: {
|
|
15838
15868
|
user_id?: string | undefined;
|
|
@@ -15872,7 +15902,7 @@ export declare const Envelope: {
|
|
|
15872
15902
|
end_time?: Date | undefined;
|
|
15873
15903
|
application_id?: string | undefined;
|
|
15874
15904
|
status?: number | undefined;
|
|
15875
|
-
} & { [
|
|
15905
|
+
} & { [K_542 in Exclude<keyof I_1["list_activity"]["acts"][number], keyof UserActivity>]: never; })[] & { [K_543 in Exclude<keyof I_1["list_activity"]["acts"], keyof {
|
|
15876
15906
|
user_id?: string | undefined;
|
|
15877
15907
|
activity_name?: string | undefined;
|
|
15878
15908
|
activity_type?: number | undefined;
|
|
@@ -15882,7 +15912,7 @@ export declare const Envelope: {
|
|
|
15882
15912
|
application_id?: string | undefined;
|
|
15883
15913
|
status?: number | undefined;
|
|
15884
15914
|
}[]>]: never; }) | undefined;
|
|
15885
|
-
} & { [
|
|
15915
|
+
} & { [K_544 in Exclude<keyof I_1["list_activity"], "acts">]: never; }) | undefined;
|
|
15886
15916
|
dropdown_box_selected?: ({
|
|
15887
15917
|
message_id?: string | undefined;
|
|
15888
15918
|
channel_id?: string | undefined;
|
|
@@ -15896,8 +15926,8 @@ export declare const Envelope: {
|
|
|
15896
15926
|
selectbox_id?: string | undefined;
|
|
15897
15927
|
sender_id?: string | undefined;
|
|
15898
15928
|
user_id?: string | undefined;
|
|
15899
|
-
values?: (string[] & string[] & { [
|
|
15900
|
-
} & { [
|
|
15929
|
+
values?: (string[] & string[] & { [K_545 in Exclude<keyof I_1["dropdown_box_selected"]["values"], keyof string[]>]: never; }) | undefined;
|
|
15930
|
+
} & { [K_546 in Exclude<keyof I_1["dropdown_box_selected"], keyof DropdownBoxSelected>]: never; }) | undefined;
|
|
15901
15931
|
incoming_call_push?: ({
|
|
15902
15932
|
receiver_id?: string | undefined;
|
|
15903
15933
|
json_data?: string | undefined;
|
|
@@ -15908,7 +15938,7 @@ export declare const Envelope: {
|
|
|
15908
15938
|
json_data?: string | undefined;
|
|
15909
15939
|
channel_id?: string | undefined;
|
|
15910
15940
|
caller_id?: string | undefined;
|
|
15911
|
-
} & { [
|
|
15941
|
+
} & { [K_547 in Exclude<keyof I_1["incoming_call_push"], keyof IncomingCallPush>]: never; }) | undefined;
|
|
15912
15942
|
sd_topic_event?: ({
|
|
15913
15943
|
id?: string | undefined;
|
|
15914
15944
|
clan_id?: string | undefined;
|
|
@@ -15978,7 +16008,7 @@ export declare const Envelope: {
|
|
|
15978
16008
|
reference?: Uint8Array | undefined;
|
|
15979
16009
|
mention?: Uint8Array | undefined;
|
|
15980
16010
|
reaction?: Uint8Array | undefined;
|
|
15981
|
-
} & { [
|
|
16011
|
+
} & { [K_548 in Exclude<keyof I_1["sd_topic_event"]["last_sent_message"], keyof ChannelMessageHeader>]: never; }) | undefined;
|
|
15982
16012
|
message?: ({
|
|
15983
16013
|
clan_id?: string | undefined;
|
|
15984
16014
|
channel_id?: string | undefined;
|
|
@@ -16035,9 +16065,9 @@ export declare const Envelope: {
|
|
|
16035
16065
|
hide_editted?: boolean | undefined;
|
|
16036
16066
|
is_public?: boolean | undefined;
|
|
16037
16067
|
topic_id?: string | undefined;
|
|
16038
|
-
} & { [
|
|
16039
|
-
} & { [
|
|
16040
|
-
follow_event?: ({} & {} & { [
|
|
16068
|
+
} & { [K_549 in Exclude<keyof I_1["sd_topic_event"]["message"], keyof ChannelMessage>]: never; }) | undefined;
|
|
16069
|
+
} & { [K_550 in Exclude<keyof I_1["sd_topic_event"], keyof SdTopicEvent>]: never; }) | undefined;
|
|
16070
|
+
follow_event?: ({} & {} & { [K_551 in Exclude<keyof I_1["follow_event"], never>]: never; }) | undefined;
|
|
16041
16071
|
channel_app_event?: ({
|
|
16042
16072
|
user_id?: string | undefined;
|
|
16043
16073
|
username?: string | undefined;
|
|
@@ -16050,19 +16080,19 @@ export declare const Envelope: {
|
|
|
16050
16080
|
clan_id?: string | undefined;
|
|
16051
16081
|
channel_id?: string | undefined;
|
|
16052
16082
|
action?: number | undefined;
|
|
16053
|
-
} & { [
|
|
16083
|
+
} & { [K_552 in Exclude<keyof I_1["channel_app_event"], keyof ChannelAppEvent>]: never; }) | undefined;
|
|
16054
16084
|
user_status_event?: ({
|
|
16055
16085
|
user_id?: string | undefined;
|
|
16056
16086
|
custom_status?: string | undefined;
|
|
16057
16087
|
} & {
|
|
16058
16088
|
user_id?: string | undefined;
|
|
16059
16089
|
custom_status?: string | undefined;
|
|
16060
|
-
} & { [
|
|
16090
|
+
} & { [K_553 in Exclude<keyof I_1["user_status_event"], keyof UserStatusEvent>]: never; }) | undefined;
|
|
16061
16091
|
remove_friend?: ({
|
|
16062
16092
|
user_id?: string | undefined;
|
|
16063
16093
|
} & {
|
|
16064
16094
|
user_id?: string | undefined;
|
|
16065
|
-
} & { [
|
|
16095
|
+
} & { [K_554 in Exclude<keyof I_1["remove_friend"], "user_id">]: never; }) | undefined;
|
|
16066
16096
|
webhook_event?: ({
|
|
16067
16097
|
id?: string | undefined;
|
|
16068
16098
|
webhook_name?: string | undefined;
|
|
@@ -16087,7 +16117,7 @@ export declare const Envelope: {
|
|
|
16087
16117
|
avatar?: string | undefined;
|
|
16088
16118
|
status?: number | undefined;
|
|
16089
16119
|
clan_id?: string | undefined;
|
|
16090
|
-
} & { [
|
|
16120
|
+
} & { [K_555 in Exclude<keyof I_1["webhook_event"], keyof Webhook>]: never; }) | undefined;
|
|
16091
16121
|
noti_user_channel?: ({
|
|
16092
16122
|
id?: string | undefined;
|
|
16093
16123
|
notification_setting_type?: number | undefined;
|
|
@@ -16100,7 +16130,7 @@ export declare const Envelope: {
|
|
|
16100
16130
|
time_mute?: Date | undefined;
|
|
16101
16131
|
active?: number | undefined;
|
|
16102
16132
|
channel_id?: string | undefined;
|
|
16103
|
-
} & { [
|
|
16133
|
+
} & { [K_556 in Exclude<keyof I_1["noti_user_channel"], keyof NotificationUserChannel>]: never; }) | undefined;
|
|
16104
16134
|
join_channel_app_data?: ({
|
|
16105
16135
|
user_id?: string | undefined;
|
|
16106
16136
|
username?: string | undefined;
|
|
@@ -16109,7 +16139,7 @@ export declare const Envelope: {
|
|
|
16109
16139
|
user_id?: string | undefined;
|
|
16110
16140
|
username?: string | undefined;
|
|
16111
16141
|
hash?: string | undefined;
|
|
16112
|
-
} & { [
|
|
16142
|
+
} & { [K_557 in Exclude<keyof I_1["join_channel_app_data"], keyof JoinChannelAppData>]: never; }) | undefined;
|
|
16113
16143
|
canvas_event?: ({
|
|
16114
16144
|
id?: string | undefined;
|
|
16115
16145
|
title?: string | undefined;
|
|
@@ -16128,7 +16158,7 @@ export declare const Envelope: {
|
|
|
16128
16158
|
is_default?: boolean | undefined;
|
|
16129
16159
|
channel_id?: string | undefined;
|
|
16130
16160
|
status?: number | undefined;
|
|
16131
|
-
} & { [
|
|
16161
|
+
} & { [K_558 in Exclude<keyof I_1["canvas_event"], keyof ChannelCanvas>]: never; }) | undefined;
|
|
16132
16162
|
unpin_message_event?: ({
|
|
16133
16163
|
id?: string | undefined;
|
|
16134
16164
|
message_id?: string | undefined;
|
|
@@ -16139,7 +16169,7 @@ export declare const Envelope: {
|
|
|
16139
16169
|
message_id?: string | undefined;
|
|
16140
16170
|
channel_id?: string | undefined;
|
|
16141
16171
|
clan_id?: string | undefined;
|
|
16142
|
-
} & { [
|
|
16172
|
+
} & { [K_559 in Exclude<keyof I_1["unpin_message_event"], keyof UnpinMessageEvent>]: never; }) | undefined;
|
|
16143
16173
|
category_event?: ({
|
|
16144
16174
|
creator_id?: string | undefined;
|
|
16145
16175
|
clan_id?: string | undefined;
|
|
@@ -16152,7 +16182,7 @@ export declare const Envelope: {
|
|
|
16152
16182
|
category_name?: string | undefined;
|
|
16153
16183
|
id?: string | undefined;
|
|
16154
16184
|
status?: number | undefined;
|
|
16155
|
-
} & { [
|
|
16185
|
+
} & { [K_560 in Exclude<keyof I_1["category_event"], keyof CategoryEvent>]: never; }) | undefined;
|
|
16156
16186
|
handle_participant_meet_state_event?: ({
|
|
16157
16187
|
clan_id?: string | undefined;
|
|
16158
16188
|
channel_id?: string | undefined;
|
|
@@ -16165,12 +16195,12 @@ export declare const Envelope: {
|
|
|
16165
16195
|
display_name?: string | undefined;
|
|
16166
16196
|
state?: number | undefined;
|
|
16167
16197
|
room_name?: string | undefined;
|
|
16168
|
-
} & { [
|
|
16198
|
+
} & { [K_561 in Exclude<keyof I_1["handle_participant_meet_state_event"], keyof HandleParticipantMeetStateEvent>]: never; }) | undefined;
|
|
16169
16199
|
delete_account_event?: ({
|
|
16170
16200
|
user_id?: string | undefined;
|
|
16171
16201
|
} & {
|
|
16172
16202
|
user_id?: string | undefined;
|
|
16173
|
-
} & { [
|
|
16203
|
+
} & { [K_562 in Exclude<keyof I_1["delete_account_event"], "user_id">]: never; }) | undefined;
|
|
16174
16204
|
ephemeral_message_send?: ({
|
|
16175
16205
|
message?: {
|
|
16176
16206
|
clan_id?: string | undefined;
|
|
@@ -16294,7 +16324,7 @@ export declare const Envelope: {
|
|
|
16294
16324
|
create_time?: Date | undefined;
|
|
16295
16325
|
s?: number | undefined;
|
|
16296
16326
|
e?: number | undefined;
|
|
16297
|
-
} & { [
|
|
16327
|
+
} & { [K_563 in Exclude<keyof I_1["ephemeral_message_send"]["message"]["mentions"][number], keyof MessageMention>]: never; })[] & { [K_564 in Exclude<keyof I_1["ephemeral_message_send"]["message"]["mentions"], keyof {
|
|
16298
16328
|
id?: string | undefined;
|
|
16299
16329
|
user_id?: string | undefined;
|
|
16300
16330
|
username?: string | undefined;
|
|
@@ -16331,7 +16361,7 @@ export declare const Envelope: {
|
|
|
16331
16361
|
height?: number | undefined;
|
|
16332
16362
|
thumbnail?: string | undefined;
|
|
16333
16363
|
duration?: number | undefined;
|
|
16334
|
-
} & { [
|
|
16364
|
+
} & { [K_565 in Exclude<keyof I_1["ephemeral_message_send"]["message"]["attachments"][number], keyof MessageAttachment>]: never; })[] & { [K_566 in Exclude<keyof I_1["ephemeral_message_send"]["message"]["attachments"], keyof {
|
|
16335
16365
|
filename?: string | undefined;
|
|
16336
16366
|
size?: number | undefined;
|
|
16337
16367
|
url?: string | undefined;
|
|
@@ -16374,7 +16404,7 @@ export declare const Envelope: {
|
|
|
16374
16404
|
mesages_sender_avatar?: string | undefined;
|
|
16375
16405
|
message_sender_clan_nick?: string | undefined;
|
|
16376
16406
|
message_sender_display_name?: string | undefined;
|
|
16377
|
-
} & { [
|
|
16407
|
+
} & { [K_567 in Exclude<keyof I_1["ephemeral_message_send"]["message"]["references"][number], keyof MessageRef>]: never; })[] & { [K_568 in Exclude<keyof I_1["ephemeral_message_send"]["message"]["references"], keyof {
|
|
16378
16408
|
message_id?: string | undefined;
|
|
16379
16409
|
message_ref_id?: string | undefined;
|
|
16380
16410
|
content?: string | undefined;
|
|
@@ -16394,25 +16424,25 @@ export declare const Envelope: {
|
|
|
16394
16424
|
code?: number | undefined;
|
|
16395
16425
|
topic_id?: string | undefined;
|
|
16396
16426
|
id?: string | undefined;
|
|
16397
|
-
} & { [
|
|
16427
|
+
} & { [K_569 in Exclude<keyof I_1["ephemeral_message_send"]["message"], keyof ChannelMessageSend>]: never; }) | undefined;
|
|
16398
16428
|
receiver_id?: string | undefined;
|
|
16399
|
-
} & { [
|
|
16429
|
+
} & { [K_570 in Exclude<keyof I_1["ephemeral_message_send"], keyof EphemeralMessageSend>]: never; }) | undefined;
|
|
16400
16430
|
block_friend?: ({
|
|
16401
16431
|
user_id?: string | undefined;
|
|
16402
16432
|
} & {
|
|
16403
16433
|
user_id?: string | undefined;
|
|
16404
|
-
} & { [
|
|
16434
|
+
} & { [K_571 in Exclude<keyof I_1["block_friend"], "user_id">]: never; }) | undefined;
|
|
16405
16435
|
voice_reaction_send?: ({
|
|
16406
16436
|
emojis?: string[] | undefined;
|
|
16407
16437
|
channel_id?: string | undefined;
|
|
16408
16438
|
sender_id?: string | undefined;
|
|
16409
16439
|
media_type?: number | undefined;
|
|
16410
16440
|
} & {
|
|
16411
|
-
emojis?: (string[] & string[] & { [
|
|
16441
|
+
emojis?: (string[] & string[] & { [K_572 in Exclude<keyof I_1["voice_reaction_send"]["emojis"], keyof string[]>]: never; }) | undefined;
|
|
16412
16442
|
channel_id?: string | undefined;
|
|
16413
16443
|
sender_id?: string | undefined;
|
|
16414
16444
|
media_type?: number | undefined;
|
|
16415
|
-
} & { [
|
|
16445
|
+
} & { [K_573 in Exclude<keyof I_1["voice_reaction_send"], keyof VoiceReactionSend>]: never; }) | undefined;
|
|
16416
16446
|
mark_as_read?: ({
|
|
16417
16447
|
channel_id?: string | undefined;
|
|
16418
16448
|
category_id?: string | undefined;
|
|
@@ -16421,7 +16451,7 @@ export declare const Envelope: {
|
|
|
16421
16451
|
channel_id?: string | undefined;
|
|
16422
16452
|
category_id?: string | undefined;
|
|
16423
16453
|
clan_id?: string | undefined;
|
|
16424
|
-
} & { [
|
|
16454
|
+
} & { [K_574 in Exclude<keyof I_1["mark_as_read"], keyof MarkAsRead>]: never; }) | undefined;
|
|
16425
16455
|
list_data_socket?: ({
|
|
16426
16456
|
api_name?: string | undefined;
|
|
16427
16457
|
list_clan_req?: {
|
|
@@ -16814,7 +16844,7 @@ export declare const Envelope: {
|
|
|
16814
16844
|
notifications?: {
|
|
16815
16845
|
id?: string | undefined;
|
|
16816
16846
|
subject?: string | undefined;
|
|
16817
|
-
content?:
|
|
16847
|
+
content?: Uint8Array | undefined;
|
|
16818
16848
|
code?: number | undefined;
|
|
16819
16849
|
sender_id?: string | undefined;
|
|
16820
16850
|
create_time?: Date | undefined;
|
|
@@ -17278,6 +17308,12 @@ export declare const Envelope: {
|
|
|
17278
17308
|
unread_msg_indicator?: {
|
|
17279
17309
|
has_unread_message?: boolean | undefined;
|
|
17280
17310
|
} | undefined;
|
|
17311
|
+
list_clan_badge_count_req?: {
|
|
17312
|
+
clan_id?: string | undefined;
|
|
17313
|
+
} | undefined;
|
|
17314
|
+
clan_badge_count?: {
|
|
17315
|
+
badge_count?: number | undefined;
|
|
17316
|
+
} | undefined;
|
|
17281
17317
|
} & {
|
|
17282
17318
|
api_name?: string | undefined;
|
|
17283
17319
|
list_clan_req?: ({
|
|
@@ -17288,7 +17324,7 @@ export declare const Envelope: {
|
|
|
17288
17324
|
limit?: number | undefined;
|
|
17289
17325
|
state?: number | undefined;
|
|
17290
17326
|
cursor?: string | undefined;
|
|
17291
|
-
} & { [
|
|
17327
|
+
} & { [K_575 in Exclude<keyof I_1["list_data_socket"]["list_clan_req"], keyof ListClanDescRequest>]: never; }) | undefined;
|
|
17292
17328
|
clan_desc_list?: ({
|
|
17293
17329
|
clandesc?: {
|
|
17294
17330
|
creator_id?: string | undefined;
|
|
@@ -17368,7 +17404,7 @@ export declare const Envelope: {
|
|
|
17368
17404
|
short_url?: string | undefined;
|
|
17369
17405
|
prevent_anonymous?: boolean | undefined;
|
|
17370
17406
|
has_unread_message?: boolean | undefined;
|
|
17371
|
-
} & { [
|
|
17407
|
+
} & { [K_576 in Exclude<keyof I_1["list_data_socket"]["clan_desc_list"]["clandesc"][number], keyof import("../api/api").ClanDesc>]: never; })[] & { [K_577 in Exclude<keyof I_1["list_data_socket"]["clan_desc_list"]["clandesc"], keyof {
|
|
17372
17408
|
creator_id?: string | undefined;
|
|
17373
17409
|
clan_name?: string | undefined;
|
|
17374
17410
|
logo?: string | undefined;
|
|
@@ -17388,7 +17424,7 @@ export declare const Envelope: {
|
|
|
17388
17424
|
prevent_anonymous?: boolean | undefined;
|
|
17389
17425
|
has_unread_message?: boolean | undefined;
|
|
17390
17426
|
}[]>]: never; }) | undefined;
|
|
17391
|
-
} & { [
|
|
17427
|
+
} & { [K_578 in Exclude<keyof I_1["list_data_socket"]["clan_desc_list"], "clandesc">]: never; }) | undefined;
|
|
17392
17428
|
list_thread_req?: ({
|
|
17393
17429
|
limit?: number | undefined;
|
|
17394
17430
|
state?: number | undefined;
|
|
@@ -17403,7 +17439,7 @@ export declare const Envelope: {
|
|
|
17403
17439
|
channel_id?: string | undefined;
|
|
17404
17440
|
thread_id?: string | undefined;
|
|
17405
17441
|
page?: number | undefined;
|
|
17406
|
-
} & { [
|
|
17442
|
+
} & { [K_579 in Exclude<keyof I_1["list_data_socket"]["list_thread_req"], keyof ListThreadRequest>]: never; }) | undefined;
|
|
17407
17443
|
channel_desc_list?: ({
|
|
17408
17444
|
channeldesc?: {
|
|
17409
17445
|
clan_id?: string | undefined;
|
|
@@ -17567,8 +17603,8 @@ export declare const Envelope: {
|
|
|
17567
17603
|
creator_id?: string | undefined;
|
|
17568
17604
|
channel_label?: string | undefined;
|
|
17569
17605
|
channel_private?: number | undefined;
|
|
17570
|
-
avatars?: (string[] & string[] & { [
|
|
17571
|
-
user_ids?: (string[] & string[] & { [
|
|
17606
|
+
avatars?: (string[] & string[] & { [K_580 in Exclude<keyof I_1["list_data_socket"]["channel_desc_list"]["channeldesc"][number]["avatars"], keyof string[]>]: never; }) | undefined;
|
|
17607
|
+
user_ids?: (string[] & string[] & { [K_581 in Exclude<keyof I_1["list_data_socket"]["channel_desc_list"]["channeldesc"][number]["user_ids"], keyof string[]>]: never; }) | undefined;
|
|
17572
17608
|
last_sent_message?: ({
|
|
17573
17609
|
id?: string | undefined;
|
|
17574
17610
|
timestamp_seconds?: number | undefined;
|
|
@@ -17587,7 +17623,7 @@ export declare const Envelope: {
|
|
|
17587
17623
|
reference?: Uint8Array | undefined;
|
|
17588
17624
|
mention?: Uint8Array | undefined;
|
|
17589
17625
|
reaction?: Uint8Array | undefined;
|
|
17590
|
-
} & { [
|
|
17626
|
+
} & { [K_582 in Exclude<keyof I_1["list_data_socket"]["channel_desc_list"]["channeldesc"][number]["last_sent_message"], keyof ChannelMessageHeader>]: never; }) | undefined;
|
|
17591
17627
|
last_seen_message?: ({
|
|
17592
17628
|
id?: string | undefined;
|
|
17593
17629
|
timestamp_seconds?: number | undefined;
|
|
@@ -17606,17 +17642,17 @@ export declare const Envelope: {
|
|
|
17606
17642
|
reference?: Uint8Array | undefined;
|
|
17607
17643
|
mention?: Uint8Array | undefined;
|
|
17608
17644
|
reaction?: Uint8Array | undefined;
|
|
17609
|
-
} & { [
|
|
17610
|
-
onlines?: (boolean[] & boolean[] & { [
|
|
17645
|
+
} & { [K_583 in Exclude<keyof I_1["list_data_socket"]["channel_desc_list"]["channeldesc"][number]["last_seen_message"], keyof ChannelMessageHeader>]: never; }) | undefined;
|
|
17646
|
+
onlines?: (boolean[] & boolean[] & { [K_584 in Exclude<keyof I_1["list_data_socket"]["channel_desc_list"]["channeldesc"][number]["onlines"], keyof boolean[]>]: never; }) | undefined;
|
|
17611
17647
|
meeting_code?: string | undefined;
|
|
17612
17648
|
count_mess_unread?: number | undefined;
|
|
17613
17649
|
active?: number | undefined;
|
|
17614
17650
|
last_pin_message?: string | undefined;
|
|
17615
|
-
usernames?: (string[] & string[] & { [
|
|
17651
|
+
usernames?: (string[] & string[] & { [K_585 in Exclude<keyof I_1["list_data_socket"]["channel_desc_list"]["channeldesc"][number]["usernames"], keyof string[]>]: never; }) | undefined;
|
|
17616
17652
|
creator_name?: string | undefined;
|
|
17617
17653
|
create_time_seconds?: number | undefined;
|
|
17618
17654
|
update_time_seconds?: number | undefined;
|
|
17619
|
-
display_names?: (string[] & string[] & { [
|
|
17655
|
+
display_names?: (string[] & string[] & { [K_586 in Exclude<keyof I_1["list_data_socket"]["channel_desc_list"]["channeldesc"][number]["display_names"], keyof string[]>]: never; }) | undefined;
|
|
17620
17656
|
channel_avatar?: string | undefined;
|
|
17621
17657
|
clan_name?: string | undefined;
|
|
17622
17658
|
app_id?: string | undefined;
|
|
@@ -17625,7 +17661,7 @@ export declare const Envelope: {
|
|
|
17625
17661
|
topic?: string | undefined;
|
|
17626
17662
|
e2ee?: number | undefined;
|
|
17627
17663
|
member_count?: number | undefined;
|
|
17628
|
-
} & { [
|
|
17664
|
+
} & { [K_587 in Exclude<keyof I_1["list_data_socket"]["channel_desc_list"]["channeldesc"][number], keyof ChannelDescription1>]: never; })[] & { [K_588 in Exclude<keyof I_1["list_data_socket"]["channel_desc_list"]["channeldesc"], keyof {
|
|
17629
17665
|
clan_id?: string | undefined;
|
|
17630
17666
|
parent_id?: string | undefined;
|
|
17631
17667
|
channel_id?: string | undefined;
|
|
@@ -17676,14 +17712,14 @@ export declare const Envelope: {
|
|
|
17676
17712
|
e2ee?: number | undefined;
|
|
17677
17713
|
member_count?: number | undefined;
|
|
17678
17714
|
}[]>]: never; }) | undefined;
|
|
17679
|
-
} & { [
|
|
17715
|
+
} & { [K_589 in Exclude<keyof I_1["list_data_socket"]["channel_desc_list"], "channeldesc">]: never; }) | undefined;
|
|
17680
17716
|
list_channel_users_uc_req?: ({
|
|
17681
17717
|
channel_id?: string | undefined;
|
|
17682
17718
|
limit?: number | undefined;
|
|
17683
17719
|
} & {
|
|
17684
17720
|
channel_id?: string | undefined;
|
|
17685
17721
|
limit?: number | undefined;
|
|
17686
|
-
} & { [
|
|
17722
|
+
} & { [K_590 in Exclude<keyof I_1["list_data_socket"]["list_channel_users_uc_req"], keyof AllUsersAddChannelRequest>]: never; }) | undefined;
|
|
17687
17723
|
channel_users_uc_list?: ({
|
|
17688
17724
|
channel_id?: string | undefined;
|
|
17689
17725
|
user_ids?: string[] | undefined;
|
|
@@ -17694,18 +17730,18 @@ export declare const Envelope: {
|
|
|
17694
17730
|
onlines?: boolean[] | undefined;
|
|
17695
17731
|
} & {
|
|
17696
17732
|
channel_id?: string | undefined;
|
|
17697
|
-
user_ids?: (string[] & string[] & { [
|
|
17733
|
+
user_ids?: (string[] & string[] & { [K_591 in Exclude<keyof I_1["list_data_socket"]["channel_users_uc_list"]["user_ids"], keyof string[]>]: never; }) | undefined;
|
|
17698
17734
|
limit?: number | undefined;
|
|
17699
|
-
usernames?: (string[] & string[] & { [
|
|
17700
|
-
display_names?: (string[] & string[] & { [
|
|
17701
|
-
avatars?: (string[] & string[] & { [
|
|
17702
|
-
onlines?: (boolean[] & boolean[] & { [
|
|
17703
|
-
} & { [
|
|
17735
|
+
usernames?: (string[] & string[] & { [K_592 in Exclude<keyof I_1["list_data_socket"]["channel_users_uc_list"]["usernames"], keyof string[]>]: never; }) | undefined;
|
|
17736
|
+
display_names?: (string[] & string[] & { [K_593 in Exclude<keyof I_1["list_data_socket"]["channel_users_uc_list"]["display_names"], keyof string[]>]: never; }) | undefined;
|
|
17737
|
+
avatars?: (string[] & string[] & { [K_594 in Exclude<keyof I_1["list_data_socket"]["channel_users_uc_list"]["avatars"], keyof string[]>]: never; }) | undefined;
|
|
17738
|
+
onlines?: (boolean[] & boolean[] & { [K_595 in Exclude<keyof I_1["list_data_socket"]["channel_users_uc_list"]["onlines"], keyof boolean[]>]: never; }) | undefined;
|
|
17739
|
+
} & { [K_596 in Exclude<keyof I_1["list_data_socket"]["channel_users_uc_list"], keyof AllUsersAddChannelResponse>]: never; }) | undefined;
|
|
17704
17740
|
list_channel_detail_req?: ({
|
|
17705
17741
|
channel_id?: string | undefined;
|
|
17706
17742
|
} & {
|
|
17707
17743
|
channel_id?: string | undefined;
|
|
17708
|
-
} & { [
|
|
17744
|
+
} & { [K_597 in Exclude<keyof I_1["list_data_socket"]["list_channel_detail_req"], "channel_id">]: never; }) | undefined;
|
|
17709
17745
|
channel_desc?: ({
|
|
17710
17746
|
clan_id?: string | undefined;
|
|
17711
17747
|
parent_id?: string | undefined;
|
|
@@ -17766,8 +17802,8 @@ export declare const Envelope: {
|
|
|
17766
17802
|
creator_id?: string | undefined;
|
|
17767
17803
|
channel_label?: string | undefined;
|
|
17768
17804
|
channel_private?: number | undefined;
|
|
17769
|
-
avatars?: (string[] & string[] & { [
|
|
17770
|
-
user_ids?: (string[] & string[] & { [
|
|
17805
|
+
avatars?: (string[] & string[] & { [K_598 in Exclude<keyof I_1["list_data_socket"]["channel_desc"]["avatars"], keyof string[]>]: never; }) | undefined;
|
|
17806
|
+
user_ids?: (string[] & string[] & { [K_599 in Exclude<keyof I_1["list_data_socket"]["channel_desc"]["user_ids"], keyof string[]>]: never; }) | undefined;
|
|
17771
17807
|
last_sent_message?: ({
|
|
17772
17808
|
id?: string | undefined;
|
|
17773
17809
|
timestamp_seconds?: number | undefined;
|
|
@@ -17786,7 +17822,7 @@ export declare const Envelope: {
|
|
|
17786
17822
|
reference?: Uint8Array | undefined;
|
|
17787
17823
|
mention?: Uint8Array | undefined;
|
|
17788
17824
|
reaction?: Uint8Array | undefined;
|
|
17789
|
-
} & { [
|
|
17825
|
+
} & { [K_600 in Exclude<keyof I_1["list_data_socket"]["channel_desc"]["last_sent_message"], keyof ChannelMessageHeader>]: never; }) | undefined;
|
|
17790
17826
|
last_seen_message?: ({
|
|
17791
17827
|
id?: string | undefined;
|
|
17792
17828
|
timestamp_seconds?: number | undefined;
|
|
@@ -17805,17 +17841,17 @@ export declare const Envelope: {
|
|
|
17805
17841
|
reference?: Uint8Array | undefined;
|
|
17806
17842
|
mention?: Uint8Array | undefined;
|
|
17807
17843
|
reaction?: Uint8Array | undefined;
|
|
17808
|
-
} & { [
|
|
17809
|
-
onlines?: (boolean[] & boolean[] & { [
|
|
17844
|
+
} & { [K_601 in Exclude<keyof I_1["list_data_socket"]["channel_desc"]["last_seen_message"], keyof ChannelMessageHeader>]: never; }) | undefined;
|
|
17845
|
+
onlines?: (boolean[] & boolean[] & { [K_602 in Exclude<keyof I_1["list_data_socket"]["channel_desc"]["onlines"], keyof boolean[]>]: never; }) | undefined;
|
|
17810
17846
|
meeting_code?: string | undefined;
|
|
17811
17847
|
count_mess_unread?: number | undefined;
|
|
17812
17848
|
active?: number | undefined;
|
|
17813
17849
|
last_pin_message?: string | undefined;
|
|
17814
|
-
usernames?: (string[] & string[] & { [
|
|
17850
|
+
usernames?: (string[] & string[] & { [K_603 in Exclude<keyof I_1["list_data_socket"]["channel_desc"]["usernames"], keyof string[]>]: never; }) | undefined;
|
|
17815
17851
|
creator_name?: string | undefined;
|
|
17816
17852
|
create_time_seconds?: number | undefined;
|
|
17817
17853
|
update_time_seconds?: number | undefined;
|
|
17818
|
-
display_names?: (string[] & string[] & { [
|
|
17854
|
+
display_names?: (string[] & string[] & { [K_604 in Exclude<keyof I_1["list_data_socket"]["channel_desc"]["display_names"], keyof string[]>]: never; }) | undefined;
|
|
17819
17855
|
channel_avatar?: string | undefined;
|
|
17820
17856
|
clan_name?: string | undefined;
|
|
17821
17857
|
app_id?: string | undefined;
|
|
@@ -17824,7 +17860,7 @@ export declare const Envelope: {
|
|
|
17824
17860
|
topic?: string | undefined;
|
|
17825
17861
|
e2ee?: number | undefined;
|
|
17826
17862
|
member_count?: number | undefined;
|
|
17827
|
-
} & { [
|
|
17863
|
+
} & { [K_605 in Exclude<keyof I_1["list_data_socket"]["channel_desc"], keyof ChannelDescription1>]: never; }) | undefined;
|
|
17828
17864
|
list_channel_req?: ({
|
|
17829
17865
|
limit?: number | undefined;
|
|
17830
17866
|
state?: number | undefined;
|
|
@@ -17839,7 +17875,7 @@ export declare const Envelope: {
|
|
|
17839
17875
|
clan_id?: string | undefined;
|
|
17840
17876
|
channel_type?: number | undefined;
|
|
17841
17877
|
is_mobile?: boolean | undefined;
|
|
17842
|
-
} & { [
|
|
17878
|
+
} & { [K_606 in Exclude<keyof I_1["list_data_socket"]["list_channel_req"], keyof ListChannelDescsRequest>]: never; }) | undefined;
|
|
17843
17879
|
list_channel_message_req?: ({
|
|
17844
17880
|
clan_id?: string | undefined;
|
|
17845
17881
|
channel_id?: string | undefined;
|
|
@@ -17854,7 +17890,7 @@ export declare const Envelope: {
|
|
|
17854
17890
|
limit?: number | undefined;
|
|
17855
17891
|
direction?: number | undefined;
|
|
17856
17892
|
topic_id?: string | undefined;
|
|
17857
|
-
} & { [
|
|
17893
|
+
} & { [K_607 in Exclude<keyof I_1["list_data_socket"]["list_channel_message_req"], keyof ListChannelMessagesRequest>]: never; }) | undefined;
|
|
17858
17894
|
channel_message_list?: ({
|
|
17859
17895
|
messages?: {
|
|
17860
17896
|
clan_id?: string | undefined;
|
|
@@ -17990,7 +18026,7 @@ export declare const Envelope: {
|
|
|
17990
18026
|
hide_editted?: boolean | undefined;
|
|
17991
18027
|
is_public?: boolean | undefined;
|
|
17992
18028
|
topic_id?: string | undefined;
|
|
17993
|
-
} & { [
|
|
18029
|
+
} & { [K_608 in Exclude<keyof I_1["list_data_socket"]["channel_message_list"]["messages"][number], keyof ChannelMessage>]: never; })[] & { [K_609 in Exclude<keyof I_1["list_data_socket"]["channel_message_list"]["messages"], keyof {
|
|
17994
18030
|
clan_id?: string | undefined;
|
|
17995
18031
|
channel_id?: string | undefined;
|
|
17996
18032
|
message_id?: string | undefined;
|
|
@@ -18037,7 +18073,7 @@ export declare const Envelope: {
|
|
|
18037
18073
|
reference?: Uint8Array | undefined;
|
|
18038
18074
|
mention?: Uint8Array | undefined;
|
|
18039
18075
|
reaction?: Uint8Array | undefined;
|
|
18040
|
-
} & { [
|
|
18076
|
+
} & { [K_610 in Exclude<keyof I_1["list_data_socket"]["channel_message_list"]["last_seen_message"], keyof ChannelMessageHeader>]: never; }) | undefined;
|
|
18041
18077
|
last_sent_message?: ({
|
|
18042
18078
|
id?: string | undefined;
|
|
18043
18079
|
timestamp_seconds?: number | undefined;
|
|
@@ -18056,8 +18092,8 @@ export declare const Envelope: {
|
|
|
18056
18092
|
reference?: Uint8Array | undefined;
|
|
18057
18093
|
mention?: Uint8Array | undefined;
|
|
18058
18094
|
reaction?: Uint8Array | undefined;
|
|
18059
|
-
} & { [
|
|
18060
|
-
} & { [
|
|
18095
|
+
} & { [K_611 in Exclude<keyof I_1["list_data_socket"]["channel_message_list"]["last_sent_message"], keyof ChannelMessageHeader>]: never; }) | undefined;
|
|
18096
|
+
} & { [K_612 in Exclude<keyof I_1["list_data_socket"]["channel_message_list"], keyof ChannelMessageList>]: never; }) | undefined;
|
|
18061
18097
|
list_channel_users_req?: ({
|
|
18062
18098
|
clan_id?: string | undefined;
|
|
18063
18099
|
channel_id?: string | undefined;
|
|
@@ -18072,7 +18108,7 @@ export declare const Envelope: {
|
|
|
18072
18108
|
limit?: number | undefined;
|
|
18073
18109
|
state?: number | undefined;
|
|
18074
18110
|
cursor?: string | undefined;
|
|
18075
|
-
} & { [
|
|
18111
|
+
} & { [K_613 in Exclude<keyof I_1["list_data_socket"]["list_channel_users_req"], keyof ListChannelUsersRequest>]: never; }) | undefined;
|
|
18076
18112
|
voice_user_list?: ({
|
|
18077
18113
|
voice_channel_users?: {
|
|
18078
18114
|
id?: string | undefined;
|
|
@@ -18096,13 +18132,13 @@ export declare const Envelope: {
|
|
|
18096
18132
|
user_id?: string | undefined;
|
|
18097
18133
|
channel_id?: string | undefined;
|
|
18098
18134
|
participant?: string | undefined;
|
|
18099
|
-
} & { [
|
|
18135
|
+
} & { [K_614 in Exclude<keyof I_1["list_data_socket"]["voice_user_list"]["voice_channel_users"][number], keyof import("../api/api").VoiceChannelUser>]: never; })[] & { [K_615 in Exclude<keyof I_1["list_data_socket"]["voice_user_list"]["voice_channel_users"], keyof {
|
|
18100
18136
|
id?: string | undefined;
|
|
18101
18137
|
user_id?: string | undefined;
|
|
18102
18138
|
channel_id?: string | undefined;
|
|
18103
18139
|
participant?: string | undefined;
|
|
18104
18140
|
}[]>]: never; }) | undefined;
|
|
18105
|
-
} & { [
|
|
18141
|
+
} & { [K_616 in Exclude<keyof I_1["list_data_socket"]["voice_user_list"], "voice_channel_users">]: never; }) | undefined;
|
|
18106
18142
|
channel_user_list?: ({
|
|
18107
18143
|
channel_users?: {
|
|
18108
18144
|
user_id?: string | undefined;
|
|
@@ -18143,7 +18179,7 @@ export declare const Envelope: {
|
|
|
18143
18179
|
expired_ban_time?: number | undefined;
|
|
18144
18180
|
} & {
|
|
18145
18181
|
user_id?: string | undefined;
|
|
18146
|
-
role_id?: (string[] & string[] & { [
|
|
18182
|
+
role_id?: (string[] & string[] & { [K_617 in Exclude<keyof I_1["list_data_socket"]["channel_user_list"]["channel_users"][number]["role_id"], keyof string[]>]: never; }) | undefined;
|
|
18147
18183
|
id?: string | undefined;
|
|
18148
18184
|
thread_id?: string | undefined;
|
|
18149
18185
|
clan_nick?: string | undefined;
|
|
@@ -18152,7 +18188,7 @@ export declare const Envelope: {
|
|
|
18152
18188
|
added_by?: string | undefined;
|
|
18153
18189
|
is_banned?: boolean | undefined;
|
|
18154
18190
|
expired_ban_time?: number | undefined;
|
|
18155
|
-
} & { [
|
|
18191
|
+
} & { [K_618 in Exclude<keyof I_1["list_data_socket"]["channel_user_list"]["channel_users"][number], keyof import("../api/api").ChannelUserList_ChannelUser>]: never; })[] & { [K_619 in Exclude<keyof I_1["list_data_socket"]["channel_user_list"]["channel_users"], keyof {
|
|
18156
18192
|
user_id?: string | undefined;
|
|
18157
18193
|
role_id?: string[] | undefined;
|
|
18158
18194
|
id?: string | undefined;
|
|
@@ -18166,7 +18202,7 @@ export declare const Envelope: {
|
|
|
18166
18202
|
}[]>]: never; }) | undefined;
|
|
18167
18203
|
cursor?: string | undefined;
|
|
18168
18204
|
channel_id?: string | undefined;
|
|
18169
|
-
} & { [
|
|
18205
|
+
} & { [K_620 in Exclude<keyof I_1["list_data_socket"]["channel_user_list"], keyof ChannelUserList>]: never; }) | undefined;
|
|
18170
18206
|
list_channel_attachment_req?: ({
|
|
18171
18207
|
clan_id?: string | undefined;
|
|
18172
18208
|
channel_id?: string | undefined;
|
|
@@ -18185,7 +18221,7 @@ export declare const Envelope: {
|
|
|
18185
18221
|
before?: number | undefined;
|
|
18186
18222
|
after?: number | undefined;
|
|
18187
18223
|
around?: number | undefined;
|
|
18188
|
-
} & { [
|
|
18224
|
+
} & { [K_621 in Exclude<keyof I_1["list_data_socket"]["list_channel_attachment_req"], keyof ListChannelAttachmentRequest>]: never; }) | undefined;
|
|
18189
18225
|
channel_attachment_list?: ({
|
|
18190
18226
|
attachments?: {
|
|
18191
18227
|
id?: string | undefined;
|
|
@@ -18233,7 +18269,7 @@ export declare const Envelope: {
|
|
|
18233
18269
|
message_id?: string | undefined;
|
|
18234
18270
|
width?: number | undefined;
|
|
18235
18271
|
height?: number | undefined;
|
|
18236
|
-
} & { [
|
|
18272
|
+
} & { [K_622 in Exclude<keyof I_1["list_data_socket"]["channel_attachment_list"]["attachments"][number], keyof import("../api/api").ChannelAttachment>]: never; })[] & { [K_623 in Exclude<keyof I_1["list_data_socket"]["channel_attachment_list"]["attachments"], keyof {
|
|
18237
18273
|
id?: string | undefined;
|
|
18238
18274
|
filename?: string | undefined;
|
|
18239
18275
|
filetype?: string | undefined;
|
|
@@ -18245,14 +18281,14 @@ export declare const Envelope: {
|
|
|
18245
18281
|
width?: number | undefined;
|
|
18246
18282
|
height?: number | undefined;
|
|
18247
18283
|
}[]>]: never; }) | undefined;
|
|
18248
|
-
} & { [
|
|
18284
|
+
} & { [K_624 in Exclude<keyof I_1["list_data_socket"]["channel_attachment_list"], "attachments">]: never; }) | undefined;
|
|
18249
18285
|
hashtag_dm_req?: ({
|
|
18250
18286
|
user_id?: string[] | undefined;
|
|
18251
18287
|
limit?: number | undefined;
|
|
18252
18288
|
} & {
|
|
18253
|
-
user_id?: (string[] & string[] & { [
|
|
18289
|
+
user_id?: (string[] & string[] & { [K_625 in Exclude<keyof I_1["list_data_socket"]["hashtag_dm_req"]["user_id"], keyof string[]>]: never; }) | undefined;
|
|
18254
18290
|
limit?: number | undefined;
|
|
18255
|
-
} & { [
|
|
18291
|
+
} & { [K_626 in Exclude<keyof I_1["list_data_socket"]["hashtag_dm_req"], keyof HashtagDmListRequest>]: never; }) | undefined;
|
|
18256
18292
|
hashtag_dm_list?: ({
|
|
18257
18293
|
hashtag_dm?: {
|
|
18258
18294
|
channel_id?: string | undefined;
|
|
@@ -18292,7 +18328,7 @@ export declare const Envelope: {
|
|
|
18292
18328
|
type?: number | undefined;
|
|
18293
18329
|
channel_private?: number | undefined;
|
|
18294
18330
|
parent_id?: string | undefined;
|
|
18295
|
-
} & { [
|
|
18331
|
+
} & { [K_627 in Exclude<keyof I_1["list_data_socket"]["hashtag_dm_list"]["hashtag_dm"][number], keyof import("../api/api").HashtagDm>]: never; })[] & { [K_628 in Exclude<keyof I_1["list_data_socket"]["hashtag_dm_list"]["hashtag_dm"], keyof {
|
|
18296
18332
|
channel_id?: string | undefined;
|
|
18297
18333
|
channel_label?: string | undefined;
|
|
18298
18334
|
clan_id?: string | undefined;
|
|
@@ -18302,7 +18338,7 @@ export declare const Envelope: {
|
|
|
18302
18338
|
channel_private?: number | undefined;
|
|
18303
18339
|
parent_id?: string | undefined;
|
|
18304
18340
|
}[]>]: never; }) | undefined;
|
|
18305
|
-
} & { [
|
|
18341
|
+
} & { [K_629 in Exclude<keyof I_1["list_data_socket"]["hashtag_dm_list"], "hashtag_dm">]: never; }) | undefined;
|
|
18306
18342
|
channel_setting_req?: ({
|
|
18307
18343
|
clan_id?: string | undefined;
|
|
18308
18344
|
parent_id?: string | undefined;
|
|
@@ -18325,7 +18361,7 @@ export declare const Envelope: {
|
|
|
18325
18361
|
limit?: number | undefined;
|
|
18326
18362
|
page?: number | undefined;
|
|
18327
18363
|
channel_label?: string | undefined;
|
|
18328
|
-
} & { [
|
|
18364
|
+
} & { [K_630 in Exclude<keyof I_1["list_data_socket"]["channel_setting_req"], keyof ChannelSettingListRequest>]: never; }) | undefined;
|
|
18329
18365
|
channel_setting_list?: ({
|
|
18330
18366
|
clan_id?: string | undefined;
|
|
18331
18367
|
channel_count?: number | undefined;
|
|
@@ -18411,7 +18447,7 @@ export declare const Envelope: {
|
|
|
18411
18447
|
channel_private?: number | undefined;
|
|
18412
18448
|
channel_type?: number | undefined;
|
|
18413
18449
|
active?: number | undefined;
|
|
18414
|
-
user_ids?: (string[] & string[] & { [
|
|
18450
|
+
user_ids?: (string[] & string[] & { [K_631 in Exclude<keyof I_1["list_data_socket"]["channel_setting_list"]["channel_setting_list"][number]["user_ids"], keyof string[]>]: never; }) | undefined;
|
|
18415
18451
|
message_count?: number | undefined;
|
|
18416
18452
|
last_sent_message?: ({
|
|
18417
18453
|
id?: string | undefined;
|
|
@@ -18431,8 +18467,8 @@ export declare const Envelope: {
|
|
|
18431
18467
|
reference?: Uint8Array | undefined;
|
|
18432
18468
|
mention?: Uint8Array | undefined;
|
|
18433
18469
|
reaction?: Uint8Array | undefined;
|
|
18434
|
-
} & { [
|
|
18435
|
-
} & { [
|
|
18470
|
+
} & { [K_632 in Exclude<keyof I_1["list_data_socket"]["channel_setting_list"]["channel_setting_list"][number]["last_sent_message"], keyof ChannelMessageHeader>]: never; }) | undefined;
|
|
18471
|
+
} & { [K_633 in Exclude<keyof I_1["list_data_socket"]["channel_setting_list"]["channel_setting_list"][number], keyof import("../api/api").ChannelSettingItem>]: never; })[] & { [K_634 in Exclude<keyof I_1["list_data_socket"]["channel_setting_list"]["channel_setting_list"], keyof {
|
|
18436
18472
|
id?: string | undefined;
|
|
18437
18473
|
creator_id?: string | undefined;
|
|
18438
18474
|
parent_id?: string | undefined;
|
|
@@ -18455,17 +18491,17 @@ export declare const Envelope: {
|
|
|
18455
18491
|
reaction?: Uint8Array | undefined;
|
|
18456
18492
|
} | undefined;
|
|
18457
18493
|
}[]>]: never; }) | undefined;
|
|
18458
|
-
} & { [
|
|
18494
|
+
} & { [K_635 in Exclude<keyof I_1["list_data_socket"]["channel_setting_list"], keyof ChannelSettingListResponse>]: never; }) | undefined;
|
|
18459
18495
|
favorite_channel_req?: ({
|
|
18460
18496
|
clan_id?: string | undefined;
|
|
18461
18497
|
} & {
|
|
18462
18498
|
clan_id?: string | undefined;
|
|
18463
|
-
} & { [
|
|
18499
|
+
} & { [K_636 in Exclude<keyof I_1["list_data_socket"]["favorite_channel_req"], "clan_id">]: never; }) | undefined;
|
|
18464
18500
|
favorite_channel_list?: ({
|
|
18465
18501
|
channel_ids?: string[] | undefined;
|
|
18466
18502
|
} & {
|
|
18467
|
-
channel_ids?: (string[] & string[] & { [
|
|
18468
|
-
} & { [
|
|
18503
|
+
channel_ids?: (string[] & string[] & { [K_637 in Exclude<keyof I_1["list_data_socket"]["favorite_channel_list"]["channel_ids"], keyof string[]>]: never; }) | undefined;
|
|
18504
|
+
} & { [K_638 in Exclude<keyof I_1["list_data_socket"]["favorite_channel_list"], "channel_ids">]: never; }) | undefined;
|
|
18469
18505
|
search_thread_req?: ({
|
|
18470
18506
|
clan_id?: string | undefined;
|
|
18471
18507
|
channel_id?: string | undefined;
|
|
@@ -18474,12 +18510,12 @@ export declare const Envelope: {
|
|
|
18474
18510
|
clan_id?: string | undefined;
|
|
18475
18511
|
channel_id?: string | undefined;
|
|
18476
18512
|
label?: string | undefined;
|
|
18477
|
-
} & { [
|
|
18513
|
+
} & { [K_639 in Exclude<keyof I_1["list_data_socket"]["search_thread_req"], keyof SearchThreadRequest>]: never; }) | undefined;
|
|
18478
18514
|
notification_channel?: ({
|
|
18479
18515
|
channel_id?: string | undefined;
|
|
18480
18516
|
} & {
|
|
18481
18517
|
channel_id?: string | undefined;
|
|
18482
|
-
} & { [
|
|
18518
|
+
} & { [K_640 in Exclude<keyof I_1["list_data_socket"]["notification_channel"], "channel_id">]: never; }) | undefined;
|
|
18483
18519
|
notificaion_user_channel?: ({
|
|
18484
18520
|
id?: string | undefined;
|
|
18485
18521
|
notification_setting_type?: number | undefined;
|
|
@@ -18492,24 +18528,24 @@ export declare const Envelope: {
|
|
|
18492
18528
|
time_mute?: Date | undefined;
|
|
18493
18529
|
active?: number | undefined;
|
|
18494
18530
|
channel_id?: string | undefined;
|
|
18495
|
-
} & { [
|
|
18531
|
+
} & { [K_641 in Exclude<keyof I_1["list_data_socket"]["notificaion_user_channel"], keyof NotificationUserChannel>]: never; }) | undefined;
|
|
18496
18532
|
notification_category?: ({
|
|
18497
18533
|
category_id?: string | undefined;
|
|
18498
18534
|
} & {
|
|
18499
18535
|
category_id?: string | undefined;
|
|
18500
|
-
} & { [
|
|
18536
|
+
} & { [K_642 in Exclude<keyof I_1["list_data_socket"]["notification_category"], "category_id">]: never; }) | undefined;
|
|
18501
18537
|
notification_clan?: ({
|
|
18502
18538
|
clan_id?: string | undefined;
|
|
18503
18539
|
} & {
|
|
18504
18540
|
clan_id?: string | undefined;
|
|
18505
|
-
} & { [
|
|
18541
|
+
} & { [K_643 in Exclude<keyof I_1["list_data_socket"]["notification_clan"], "clan_id">]: never; }) | undefined;
|
|
18506
18542
|
notification_setting?: ({
|
|
18507
18543
|
id?: string | undefined;
|
|
18508
18544
|
notification_setting_type?: number | undefined;
|
|
18509
18545
|
} & {
|
|
18510
18546
|
id?: string | undefined;
|
|
18511
18547
|
notification_setting_type?: number | undefined;
|
|
18512
|
-
} & { [
|
|
18548
|
+
} & { [K_644 in Exclude<keyof I_1["list_data_socket"]["notification_setting"], keyof NotificationSetting>]: never; }) | undefined;
|
|
18513
18549
|
notification_message?: ({
|
|
18514
18550
|
id?: string | undefined;
|
|
18515
18551
|
user_id?: string | undefined;
|
|
@@ -18518,7 +18554,7 @@ export declare const Envelope: {
|
|
|
18518
18554
|
id?: string | undefined;
|
|
18519
18555
|
user_id?: string | undefined;
|
|
18520
18556
|
channel_id?: string | undefined;
|
|
18521
|
-
} & { [
|
|
18557
|
+
} & { [K_645 in Exclude<keyof I_1["list_data_socket"]["notification_message"], keyof NotifiReactMessage>]: never; }) | undefined;
|
|
18522
18558
|
noti_channel_cat_setting_list?: ({
|
|
18523
18559
|
notification_channel_category_settings_list?: {
|
|
18524
18560
|
id?: string | undefined;
|
|
@@ -18546,14 +18582,14 @@ export declare const Envelope: {
|
|
|
18546
18582
|
notification_setting_type?: number | undefined;
|
|
18547
18583
|
channel_category_title?: string | undefined;
|
|
18548
18584
|
action?: number | undefined;
|
|
18549
|
-
} & { [
|
|
18585
|
+
} & { [K_646 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_647 in Exclude<keyof I_1["list_data_socket"]["noti_channel_cat_setting_list"]["notification_channel_category_settings_list"], keyof {
|
|
18550
18586
|
id?: string | undefined;
|
|
18551
18587
|
channel_category_label?: string | undefined;
|
|
18552
18588
|
notification_setting_type?: number | undefined;
|
|
18553
18589
|
channel_category_title?: string | undefined;
|
|
18554
18590
|
action?: number | undefined;
|
|
18555
18591
|
}[]>]: never; }) | undefined;
|
|
18556
|
-
} & { [
|
|
18592
|
+
} & { [K_648 in Exclude<keyof I_1["list_data_socket"]["noti_channel_cat_setting_list"], "notification_channel_category_settings_list">]: never; }) | undefined;
|
|
18557
18593
|
list_notification_req?: ({
|
|
18558
18594
|
limit?: number | undefined;
|
|
18559
18595
|
clan_id?: string | undefined;
|
|
@@ -18566,12 +18602,12 @@ export declare const Envelope: {
|
|
|
18566
18602
|
notification_id?: string | undefined;
|
|
18567
18603
|
category?: number | undefined;
|
|
18568
18604
|
direction?: number | undefined;
|
|
18569
|
-
} & { [
|
|
18605
|
+
} & { [K_649 in Exclude<keyof I_1["list_data_socket"]["list_notification_req"], keyof ListNotificationsRequest>]: never; }) | undefined;
|
|
18570
18606
|
notification_list?: ({
|
|
18571
18607
|
notifications?: {
|
|
18572
18608
|
id?: string | undefined;
|
|
18573
18609
|
subject?: string | undefined;
|
|
18574
|
-
content?:
|
|
18610
|
+
content?: Uint8Array | undefined;
|
|
18575
18611
|
code?: number | undefined;
|
|
18576
18612
|
sender_id?: string | undefined;
|
|
18577
18613
|
create_time?: Date | undefined;
|
|
@@ -18639,7 +18675,7 @@ export declare const Envelope: {
|
|
|
18639
18675
|
notifications?: ({
|
|
18640
18676
|
id?: string | undefined;
|
|
18641
18677
|
subject?: string | undefined;
|
|
18642
|
-
content?:
|
|
18678
|
+
content?: Uint8Array | undefined;
|
|
18643
18679
|
code?: number | undefined;
|
|
18644
18680
|
sender_id?: string | undefined;
|
|
18645
18681
|
create_time?: Date | undefined;
|
|
@@ -18704,7 +18740,7 @@ export declare const Envelope: {
|
|
|
18704
18740
|
}[] & ({
|
|
18705
18741
|
id?: string | undefined;
|
|
18706
18742
|
subject?: string | undefined;
|
|
18707
|
-
content?:
|
|
18743
|
+
content?: Uint8Array | undefined;
|
|
18708
18744
|
code?: number | undefined;
|
|
18709
18745
|
sender_id?: string | undefined;
|
|
18710
18746
|
create_time?: Date | undefined;
|
|
@@ -18769,7 +18805,7 @@ export declare const Envelope: {
|
|
|
18769
18805
|
} & {
|
|
18770
18806
|
id?: string | undefined;
|
|
18771
18807
|
subject?: string | undefined;
|
|
18772
|
-
content?:
|
|
18808
|
+
content?: Uint8Array | undefined;
|
|
18773
18809
|
code?: number | undefined;
|
|
18774
18810
|
sender_id?: string | undefined;
|
|
18775
18811
|
create_time?: Date | undefined;
|
|
@@ -18838,8 +18874,8 @@ export declare const Envelope: {
|
|
|
18838
18874
|
creator_id?: string | undefined;
|
|
18839
18875
|
channel_label?: string | undefined;
|
|
18840
18876
|
channel_private?: number | undefined;
|
|
18841
|
-
avatars?: (string[] & string[] & { [
|
|
18842
|
-
user_ids?: (string[] & string[] & { [
|
|
18877
|
+
avatars?: (string[] & string[] & { [K_650 in Exclude<keyof I_1["list_data_socket"]["notification_list"]["notifications"][number]["channel"]["avatars"], keyof string[]>]: never; }) | undefined;
|
|
18878
|
+
user_ids?: (string[] & string[] & { [K_651 in Exclude<keyof I_1["list_data_socket"]["notification_list"]["notifications"][number]["channel"]["user_ids"], keyof string[]>]: never; }) | undefined;
|
|
18843
18879
|
last_sent_message?: ({
|
|
18844
18880
|
id?: string | undefined;
|
|
18845
18881
|
timestamp_seconds?: number | undefined;
|
|
@@ -18858,7 +18894,7 @@ export declare const Envelope: {
|
|
|
18858
18894
|
reference?: Uint8Array | undefined;
|
|
18859
18895
|
mention?: Uint8Array | undefined;
|
|
18860
18896
|
reaction?: Uint8Array | undefined;
|
|
18861
|
-
} & { [
|
|
18897
|
+
} & { [K_652 in Exclude<keyof I_1["list_data_socket"]["notification_list"]["notifications"][number]["channel"]["last_sent_message"], keyof ChannelMessageHeader>]: never; }) | undefined;
|
|
18862
18898
|
last_seen_message?: ({
|
|
18863
18899
|
id?: string | undefined;
|
|
18864
18900
|
timestamp_seconds?: number | undefined;
|
|
@@ -18877,17 +18913,17 @@ export declare const Envelope: {
|
|
|
18877
18913
|
reference?: Uint8Array | undefined;
|
|
18878
18914
|
mention?: Uint8Array | undefined;
|
|
18879
18915
|
reaction?: Uint8Array | undefined;
|
|
18880
|
-
} & { [
|
|
18881
|
-
onlines?: (boolean[] & boolean[] & { [
|
|
18916
|
+
} & { [K_653 in Exclude<keyof I_1["list_data_socket"]["notification_list"]["notifications"][number]["channel"]["last_seen_message"], keyof ChannelMessageHeader>]: never; }) | undefined;
|
|
18917
|
+
onlines?: (boolean[] & boolean[] & { [K_654 in Exclude<keyof I_1["list_data_socket"]["notification_list"]["notifications"][number]["channel"]["onlines"], keyof boolean[]>]: never; }) | undefined;
|
|
18882
18918
|
meeting_code?: string | undefined;
|
|
18883
18919
|
count_mess_unread?: number | undefined;
|
|
18884
18920
|
active?: number | undefined;
|
|
18885
18921
|
last_pin_message?: string | undefined;
|
|
18886
|
-
usernames?: (string[] & string[] & { [
|
|
18922
|
+
usernames?: (string[] & string[] & { [K_655 in Exclude<keyof I_1["list_data_socket"]["notification_list"]["notifications"][number]["channel"]["usernames"], keyof string[]>]: never; }) | undefined;
|
|
18887
18923
|
creator_name?: string | undefined;
|
|
18888
18924
|
create_time_seconds?: number | undefined;
|
|
18889
18925
|
update_time_seconds?: number | undefined;
|
|
18890
|
-
display_names?: (string[] & string[] & { [
|
|
18926
|
+
display_names?: (string[] & string[] & { [K_656 in Exclude<keyof I_1["list_data_socket"]["notification_list"]["notifications"][number]["channel"]["display_names"], keyof string[]>]: never; }) | undefined;
|
|
18891
18927
|
channel_avatar?: string | undefined;
|
|
18892
18928
|
clan_name?: string | undefined;
|
|
18893
18929
|
app_id?: string | undefined;
|
|
@@ -18896,13 +18932,13 @@ export declare const Envelope: {
|
|
|
18896
18932
|
topic?: string | undefined;
|
|
18897
18933
|
e2ee?: number | undefined;
|
|
18898
18934
|
member_count?: number | undefined;
|
|
18899
|
-
} & { [
|
|
18935
|
+
} & { [K_657 in Exclude<keyof I_1["list_data_socket"]["notification_list"]["notifications"][number]["channel"], keyof ChannelDescription1>]: never; }) | undefined;
|
|
18900
18936
|
topic_id?: string | undefined;
|
|
18901
18937
|
category?: number | undefined;
|
|
18902
|
-
} & { [
|
|
18938
|
+
} & { [K_658 in Exclude<keyof I_1["list_data_socket"]["notification_list"]["notifications"][number], keyof Notification>]: never; })[] & { [K_659 in Exclude<keyof I_1["list_data_socket"]["notification_list"]["notifications"], keyof {
|
|
18903
18939
|
id?: string | undefined;
|
|
18904
18940
|
subject?: string | undefined;
|
|
18905
|
-
content?:
|
|
18941
|
+
content?: Uint8Array | undefined;
|
|
18906
18942
|
code?: number | undefined;
|
|
18907
18943
|
sender_id?: string | undefined;
|
|
18908
18944
|
create_time?: Date | undefined;
|
|
@@ -18966,7 +19002,7 @@ export declare const Envelope: {
|
|
|
18966
19002
|
category?: number | undefined;
|
|
18967
19003
|
}[]>]: never; }) | undefined;
|
|
18968
19004
|
cacheable_cursor?: string | undefined;
|
|
18969
|
-
} & { [
|
|
19005
|
+
} & { [K_660 in Exclude<keyof I_1["list_data_socket"]["notification_list"], keyof NotificationList>]: never; }) | undefined;
|
|
18970
19006
|
sticker_list?: ({
|
|
18971
19007
|
stickers?: {
|
|
18972
19008
|
id?: string | undefined;
|
|
@@ -19018,7 +19054,7 @@ export declare const Envelope: {
|
|
|
19018
19054
|
clan_name?: string | undefined;
|
|
19019
19055
|
media_type?: number | undefined;
|
|
19020
19056
|
is_for_sale?: boolean | undefined;
|
|
19021
|
-
} & { [
|
|
19057
|
+
} & { [K_661 in Exclude<keyof I_1["list_data_socket"]["sticker_list"]["stickers"][number], keyof import("../api/api").ClanSticker>]: never; })[] & { [K_662 in Exclude<keyof I_1["list_data_socket"]["sticker_list"]["stickers"], keyof {
|
|
19022
19058
|
id?: string | undefined;
|
|
19023
19059
|
source?: string | undefined;
|
|
19024
19060
|
shortname?: string | undefined;
|
|
@@ -19031,7 +19067,7 @@ export declare const Envelope: {
|
|
|
19031
19067
|
media_type?: number | undefined;
|
|
19032
19068
|
is_for_sale?: boolean | undefined;
|
|
19033
19069
|
}[]>]: never; }) | undefined;
|
|
19034
|
-
} & { [
|
|
19070
|
+
} & { [K_663 in Exclude<keyof I_1["list_data_socket"]["sticker_list"], "stickers">]: never; }) | undefined;
|
|
19035
19071
|
emoji_recent_list?: ({
|
|
19036
19072
|
emoji_recents?: {
|
|
19037
19073
|
emoji_recents_id?: string | undefined;
|
|
@@ -19051,17 +19087,17 @@ export declare const Envelope: {
|
|
|
19051
19087
|
emoji_recents_id?: string | undefined;
|
|
19052
19088
|
emoji_id?: string | undefined;
|
|
19053
19089
|
update_time?: Date | undefined;
|
|
19054
|
-
} & { [
|
|
19090
|
+
} & { [K_664 in Exclude<keyof I_1["list_data_socket"]["emoji_recent_list"]["emoji_recents"][number], keyof import("../api/api").EmojiRecent>]: never; })[] & { [K_665 in Exclude<keyof I_1["list_data_socket"]["emoji_recent_list"]["emoji_recents"], keyof {
|
|
19055
19091
|
emoji_recents_id?: string | undefined;
|
|
19056
19092
|
emoji_id?: string | undefined;
|
|
19057
19093
|
update_time?: Date | undefined;
|
|
19058
19094
|
}[]>]: never; }) | undefined;
|
|
19059
|
-
} & { [
|
|
19095
|
+
} & { [K_666 in Exclude<keyof I_1["list_data_socket"]["emoji_recent_list"], "emoji_recents">]: never; }) | undefined;
|
|
19060
19096
|
clan_webhook_req?: ({
|
|
19061
19097
|
clan_id?: string | undefined;
|
|
19062
19098
|
} & {
|
|
19063
19099
|
clan_id?: string | undefined;
|
|
19064
|
-
} & { [
|
|
19100
|
+
} & { [K_667 in Exclude<keyof I_1["list_data_socket"]["clan_webhook_req"], "clan_id">]: never; }) | undefined;
|
|
19065
19101
|
clan_webhook_list?: ({
|
|
19066
19102
|
list_clan_webhooks?: {
|
|
19067
19103
|
id?: string | undefined;
|
|
@@ -19105,7 +19141,7 @@ export declare const Envelope: {
|
|
|
19105
19141
|
avatar?: string | undefined;
|
|
19106
19142
|
create_time?: string | undefined;
|
|
19107
19143
|
update_time?: string | undefined;
|
|
19108
|
-
} & { [
|
|
19144
|
+
} & { [K_668 in Exclude<keyof I_1["list_data_socket"]["clan_webhook_list"]["list_clan_webhooks"][number], keyof import("../api/api").ClanWebhook>]: never; })[] & { [K_669 in Exclude<keyof I_1["list_data_socket"]["clan_webhook_list"]["list_clan_webhooks"], keyof {
|
|
19109
19145
|
id?: string | undefined;
|
|
19110
19146
|
webhook_name?: string | undefined;
|
|
19111
19147
|
clan_id?: string | undefined;
|
|
@@ -19116,14 +19152,14 @@ export declare const Envelope: {
|
|
|
19116
19152
|
create_time?: string | undefined;
|
|
19117
19153
|
update_time?: string | undefined;
|
|
19118
19154
|
}[]>]: never; }) | undefined;
|
|
19119
|
-
} & { [
|
|
19155
|
+
} & { [K_670 in Exclude<keyof I_1["list_data_socket"]["clan_webhook_list"], "list_clan_webhooks">]: never; }) | undefined;
|
|
19120
19156
|
webhook_list_req?: ({
|
|
19121
19157
|
channel_id?: string | undefined;
|
|
19122
19158
|
clan_id?: string | undefined;
|
|
19123
19159
|
} & {
|
|
19124
19160
|
channel_id?: string | undefined;
|
|
19125
19161
|
clan_id?: string | undefined;
|
|
19126
|
-
} & { [
|
|
19162
|
+
} & { [K_671 in Exclude<keyof I_1["list_data_socket"]["webhook_list_req"], keyof WebhookListRequest>]: never; }) | undefined;
|
|
19127
19163
|
webhook_list?: ({
|
|
19128
19164
|
webhooks?: {
|
|
19129
19165
|
id?: string | undefined;
|
|
@@ -19175,7 +19211,7 @@ export declare const Envelope: {
|
|
|
19175
19211
|
avatar?: string | undefined;
|
|
19176
19212
|
status?: number | undefined;
|
|
19177
19213
|
clan_id?: string | undefined;
|
|
19178
|
-
} & { [
|
|
19214
|
+
} & { [K_672 in Exclude<keyof I_1["list_data_socket"]["webhook_list"]["webhooks"][number], keyof Webhook>]: never; })[] & { [K_673 in Exclude<keyof I_1["list_data_socket"]["webhook_list"]["webhooks"], keyof {
|
|
19179
19215
|
id?: string | undefined;
|
|
19180
19216
|
webhook_name?: string | undefined;
|
|
19181
19217
|
channel_id?: string | undefined;
|
|
@@ -19188,12 +19224,12 @@ export declare const Envelope: {
|
|
|
19188
19224
|
status?: number | undefined;
|
|
19189
19225
|
clan_id?: string | undefined;
|
|
19190
19226
|
}[]>]: never; }) | undefined;
|
|
19191
|
-
} & { [
|
|
19227
|
+
} & { [K_674 in Exclude<keyof I_1["list_data_socket"]["webhook_list"], "webhooks">]: never; }) | undefined;
|
|
19192
19228
|
permission_list_req?: ({
|
|
19193
19229
|
role_id?: string | undefined;
|
|
19194
19230
|
} & {
|
|
19195
19231
|
role_id?: string | undefined;
|
|
19196
|
-
} & { [
|
|
19232
|
+
} & { [K_675 in Exclude<keyof I_1["list_data_socket"]["permission_list_req"], "role_id">]: never; }) | undefined;
|
|
19197
19233
|
permission_list?: ({
|
|
19198
19234
|
permissions?: {
|
|
19199
19235
|
id?: string | undefined;
|
|
@@ -19230,7 +19266,7 @@ export declare const Envelope: {
|
|
|
19230
19266
|
active?: number | undefined;
|
|
19231
19267
|
scope?: number | undefined;
|
|
19232
19268
|
level?: number | undefined;
|
|
19233
|
-
} & { [
|
|
19269
|
+
} & { [K_676 in Exclude<keyof I_1["list_data_socket"]["permission_list"]["permissions"][number], keyof import("../api/api").Permission>]: never; })[] & { [K_677 in Exclude<keyof I_1["list_data_socket"]["permission_list"]["permissions"], keyof {
|
|
19234
19270
|
id?: string | undefined;
|
|
19235
19271
|
title?: string | undefined;
|
|
19236
19272
|
slug?: string | undefined;
|
|
@@ -19240,7 +19276,7 @@ export declare const Envelope: {
|
|
|
19240
19276
|
level?: number | undefined;
|
|
19241
19277
|
}[]>]: never; }) | undefined;
|
|
19242
19278
|
max_level_permission?: number | undefined;
|
|
19243
|
-
} & { [
|
|
19279
|
+
} & { [K_678 in Exclude<keyof I_1["list_data_socket"]["permission_list"], keyof PermissionList>]: never; }) | undefined;
|
|
19244
19280
|
role_user_req?: ({
|
|
19245
19281
|
role_id?: string | undefined;
|
|
19246
19282
|
limit?: number | undefined;
|
|
@@ -19249,7 +19285,7 @@ export declare const Envelope: {
|
|
|
19249
19285
|
role_id?: string | undefined;
|
|
19250
19286
|
limit?: number | undefined;
|
|
19251
19287
|
cursor?: string | undefined;
|
|
19252
|
-
} & { [
|
|
19288
|
+
} & { [K_679 in Exclude<keyof I_1["list_data_socket"]["role_user_req"], keyof ListRoleUsersRequest>]: never; }) | undefined;
|
|
19253
19289
|
role_user_list?: ({
|
|
19254
19290
|
role_users?: {
|
|
19255
19291
|
id?: string | undefined;
|
|
@@ -19286,7 +19322,7 @@ export declare const Envelope: {
|
|
|
19286
19322
|
lang_tag?: string | undefined;
|
|
19287
19323
|
location?: string | undefined;
|
|
19288
19324
|
online?: boolean | undefined;
|
|
19289
|
-
} & { [
|
|
19325
|
+
} & { [K_680 in Exclude<keyof I_1["list_data_socket"]["role_user_list"]["role_users"][number], keyof import("../api/api").RoleUserList_RoleUser>]: never; })[] & { [K_681 in Exclude<keyof I_1["list_data_socket"]["role_user_list"]["role_users"], keyof {
|
|
19290
19326
|
id?: string | undefined;
|
|
19291
19327
|
username?: string | undefined;
|
|
19292
19328
|
display_name?: string | undefined;
|
|
@@ -19296,14 +19332,14 @@ export declare const Envelope: {
|
|
|
19296
19332
|
online?: boolean | undefined;
|
|
19297
19333
|
}[]>]: never; }) | undefined;
|
|
19298
19334
|
cursor?: string | undefined;
|
|
19299
|
-
} & { [
|
|
19335
|
+
} & { [K_682 in Exclude<keyof I_1["list_data_socket"]["role_user_list"], keyof RoleUserList>]: never; }) | undefined;
|
|
19300
19336
|
permission_user_req?: ({
|
|
19301
19337
|
clan_id?: string | undefined;
|
|
19302
19338
|
channel_id?: string | undefined;
|
|
19303
19339
|
} & {
|
|
19304
19340
|
clan_id?: string | undefined;
|
|
19305
19341
|
channel_id?: string | undefined;
|
|
19306
|
-
} & { [
|
|
19342
|
+
} & { [K_683 in Exclude<keyof I_1["list_data_socket"]["permission_user_req"], keyof ListPermissionOfUsersRequest>]: never; }) | undefined;
|
|
19307
19343
|
role_list?: ({
|
|
19308
19344
|
roles?: {
|
|
19309
19345
|
id?: string | undefined;
|
|
@@ -19476,7 +19512,7 @@ export declare const Envelope: {
|
|
|
19476
19512
|
lang_tag?: string | undefined;
|
|
19477
19513
|
location?: string | undefined;
|
|
19478
19514
|
online?: boolean | undefined;
|
|
19479
|
-
} & { [
|
|
19515
|
+
} & { [K_684 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_685 in Exclude<keyof I_1["list_data_socket"]["role_list"]["roles"][number]["role_user_list"]["role_users"], keyof {
|
|
19480
19516
|
id?: string | undefined;
|
|
19481
19517
|
username?: string | undefined;
|
|
19482
19518
|
display_name?: string | undefined;
|
|
@@ -19486,7 +19522,7 @@ export declare const Envelope: {
|
|
|
19486
19522
|
online?: boolean | undefined;
|
|
19487
19523
|
}[]>]: never; }) | undefined;
|
|
19488
19524
|
cursor?: string | undefined;
|
|
19489
|
-
} & { [
|
|
19525
|
+
} & { [K_686 in Exclude<keyof I_1["list_data_socket"]["role_list"]["roles"][number]["role_user_list"], keyof RoleUserList>]: never; }) | undefined;
|
|
19490
19526
|
permission_list?: ({
|
|
19491
19527
|
permissions?: {
|
|
19492
19528
|
id?: string | undefined;
|
|
@@ -19523,7 +19559,7 @@ export declare const Envelope: {
|
|
|
19523
19559
|
active?: number | undefined;
|
|
19524
19560
|
scope?: number | undefined;
|
|
19525
19561
|
level?: number | undefined;
|
|
19526
|
-
} & { [
|
|
19562
|
+
} & { [K_687 in Exclude<keyof I_1["list_data_socket"]["role_list"]["roles"][number]["permission_list"]["permissions"][number], keyof import("../api/api").Permission>]: never; })[] & { [K_688 in Exclude<keyof I_1["list_data_socket"]["role_list"]["roles"][number]["permission_list"]["permissions"], keyof {
|
|
19527
19563
|
id?: string | undefined;
|
|
19528
19564
|
title?: string | undefined;
|
|
19529
19565
|
slug?: string | undefined;
|
|
@@ -19533,12 +19569,12 @@ export declare const Envelope: {
|
|
|
19533
19569
|
level?: number | undefined;
|
|
19534
19570
|
}[]>]: never; }) | undefined;
|
|
19535
19571
|
max_level_permission?: number | undefined;
|
|
19536
|
-
} & { [
|
|
19572
|
+
} & { [K_689 in Exclude<keyof I_1["list_data_socket"]["role_list"]["roles"][number]["permission_list"], keyof PermissionList>]: never; }) | undefined;
|
|
19537
19573
|
role_channel_active?: number | undefined;
|
|
19538
|
-
channel_ids?: (string[] & string[] & { [
|
|
19574
|
+
channel_ids?: (string[] & string[] & { [K_690 in Exclude<keyof I_1["list_data_socket"]["role_list"]["roles"][number]["channel_ids"], keyof string[]>]: never; }) | undefined;
|
|
19539
19575
|
max_level_permission?: number | undefined;
|
|
19540
19576
|
order_role?: number | undefined;
|
|
19541
|
-
} & { [
|
|
19577
|
+
} & { [K_691 in Exclude<keyof I_1["list_data_socket"]["role_list"]["roles"][number], keyof Role>]: never; })[] & { [K_692 in Exclude<keyof I_1["list_data_socket"]["role_list"]["roles"], keyof {
|
|
19542
19578
|
id?: string | undefined;
|
|
19543
19579
|
title?: string | undefined;
|
|
19544
19580
|
color?: string | undefined;
|
|
@@ -19580,7 +19616,7 @@ export declare const Envelope: {
|
|
|
19580
19616
|
order_role?: number | undefined;
|
|
19581
19617
|
}[]>]: never; }) | undefined;
|
|
19582
19618
|
max_level_permission?: number | undefined;
|
|
19583
|
-
} & { [
|
|
19619
|
+
} & { [K_693 in Exclude<keyof I_1["list_data_socket"]["role_list"], keyof RoleList>]: never; }) | undefined;
|
|
19584
19620
|
role_list_event_req?: ({
|
|
19585
19621
|
clan_id?: string | undefined;
|
|
19586
19622
|
limit?: number | undefined;
|
|
@@ -19591,7 +19627,7 @@ export declare const Envelope: {
|
|
|
19591
19627
|
limit?: number | undefined;
|
|
19592
19628
|
state?: number | undefined;
|
|
19593
19629
|
cursor?: string | undefined;
|
|
19594
|
-
} & { [
|
|
19630
|
+
} & { [K_694 in Exclude<keyof I_1["list_data_socket"]["role_list_event_req"], keyof RoleListEventRequest>]: never; }) | undefined;
|
|
19595
19631
|
role_event_list?: ({
|
|
19596
19632
|
limit?: number | undefined;
|
|
19597
19633
|
state?: number | undefined;
|
|
@@ -19818,7 +19854,7 @@ export declare const Envelope: {
|
|
|
19818
19854
|
lang_tag?: string | undefined;
|
|
19819
19855
|
location?: string | undefined;
|
|
19820
19856
|
online?: boolean | undefined;
|
|
19821
|
-
} & { [
|
|
19857
|
+
} & { [K_695 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_696 in Exclude<keyof I_1["list_data_socket"]["role_event_list"]["roles"]["roles"][number]["role_user_list"]["role_users"], keyof {
|
|
19822
19858
|
id?: string | undefined;
|
|
19823
19859
|
username?: string | undefined;
|
|
19824
19860
|
display_name?: string | undefined;
|
|
@@ -19828,7 +19864,7 @@ export declare const Envelope: {
|
|
|
19828
19864
|
online?: boolean | undefined;
|
|
19829
19865
|
}[]>]: never; }) | undefined;
|
|
19830
19866
|
cursor?: string | undefined;
|
|
19831
|
-
} & { [
|
|
19867
|
+
} & { [K_697 in Exclude<keyof I_1["list_data_socket"]["role_event_list"]["roles"]["roles"][number]["role_user_list"], keyof RoleUserList>]: never; }) | undefined;
|
|
19832
19868
|
permission_list?: ({
|
|
19833
19869
|
permissions?: {
|
|
19834
19870
|
id?: string | undefined;
|
|
@@ -19865,7 +19901,7 @@ export declare const Envelope: {
|
|
|
19865
19901
|
active?: number | undefined;
|
|
19866
19902
|
scope?: number | undefined;
|
|
19867
19903
|
level?: number | undefined;
|
|
19868
|
-
} & { [
|
|
19904
|
+
} & { [K_698 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_699 in Exclude<keyof I_1["list_data_socket"]["role_event_list"]["roles"]["roles"][number]["permission_list"]["permissions"], keyof {
|
|
19869
19905
|
id?: string | undefined;
|
|
19870
19906
|
title?: string | undefined;
|
|
19871
19907
|
slug?: string | undefined;
|
|
@@ -19875,12 +19911,12 @@ export declare const Envelope: {
|
|
|
19875
19911
|
level?: number | undefined;
|
|
19876
19912
|
}[]>]: never; }) | undefined;
|
|
19877
19913
|
max_level_permission?: number | undefined;
|
|
19878
|
-
} & { [
|
|
19914
|
+
} & { [K_700 in Exclude<keyof I_1["list_data_socket"]["role_event_list"]["roles"]["roles"][number]["permission_list"], keyof PermissionList>]: never; }) | undefined;
|
|
19879
19915
|
role_channel_active?: number | undefined;
|
|
19880
|
-
channel_ids?: (string[] & string[] & { [
|
|
19916
|
+
channel_ids?: (string[] & string[] & { [K_701 in Exclude<keyof I_1["list_data_socket"]["role_event_list"]["roles"]["roles"][number]["channel_ids"], keyof string[]>]: never; }) | undefined;
|
|
19881
19917
|
max_level_permission?: number | undefined;
|
|
19882
19918
|
order_role?: number | undefined;
|
|
19883
|
-
} & { [
|
|
19919
|
+
} & { [K_702 in Exclude<keyof I_1["list_data_socket"]["role_event_list"]["roles"]["roles"][number], keyof Role>]: never; })[] & { [K_703 in Exclude<keyof I_1["list_data_socket"]["role_event_list"]["roles"]["roles"], keyof {
|
|
19884
19920
|
id?: string | undefined;
|
|
19885
19921
|
title?: string | undefined;
|
|
19886
19922
|
color?: string | undefined;
|
|
@@ -19922,15 +19958,15 @@ export declare const Envelope: {
|
|
|
19922
19958
|
order_role?: number | undefined;
|
|
19923
19959
|
}[]>]: never; }) | undefined;
|
|
19924
19960
|
max_level_permission?: number | undefined;
|
|
19925
|
-
} & { [
|
|
19926
|
-
} & { [
|
|
19961
|
+
} & { [K_704 in Exclude<keyof I_1["list_data_socket"]["role_event_list"]["roles"], keyof RoleList>]: never; }) | undefined;
|
|
19962
|
+
} & { [K_705 in Exclude<keyof I_1["list_data_socket"]["role_event_list"], keyof RoleListEventResponse>]: never; }) | undefined;
|
|
19927
19963
|
user_permission_req?: ({
|
|
19928
19964
|
clan_id?: string | undefined;
|
|
19929
19965
|
channel_id?: string | undefined;
|
|
19930
19966
|
} & {
|
|
19931
19967
|
clan_id?: string | undefined;
|
|
19932
19968
|
channel_id?: string | undefined;
|
|
19933
|
-
} & { [
|
|
19969
|
+
} & { [K_706 in Exclude<keyof I_1["list_data_socket"]["user_permission_req"], keyof UserPermissionInChannelListRequest>]: never; }) | undefined;
|
|
19934
19970
|
user_permission_list?: ({
|
|
19935
19971
|
clan_id?: string | undefined;
|
|
19936
19972
|
channel_id?: string | undefined;
|
|
@@ -19985,7 +20021,7 @@ export declare const Envelope: {
|
|
|
19985
20021
|
active?: number | undefined;
|
|
19986
20022
|
scope?: number | undefined;
|
|
19987
20023
|
level?: number | undefined;
|
|
19988
|
-
} & { [
|
|
20024
|
+
} & { [K_707 in Exclude<keyof I_1["list_data_socket"]["user_permission_list"]["permissions"]["permissions"][number], keyof import("../api/api").Permission>]: never; })[] & { [K_708 in Exclude<keyof I_1["list_data_socket"]["user_permission_list"]["permissions"]["permissions"], keyof {
|
|
19989
20025
|
id?: string | undefined;
|
|
19990
20026
|
title?: string | undefined;
|
|
19991
20027
|
slug?: string | undefined;
|
|
@@ -19995,8 +20031,8 @@ export declare const Envelope: {
|
|
|
19995
20031
|
level?: number | undefined;
|
|
19996
20032
|
}[]>]: never; }) | undefined;
|
|
19997
20033
|
max_level_permission?: number | undefined;
|
|
19998
|
-
} & { [
|
|
19999
|
-
} & { [
|
|
20034
|
+
} & { [K_709 in Exclude<keyof I_1["list_data_socket"]["user_permission_list"]["permissions"], keyof PermissionList>]: never; }) | undefined;
|
|
20035
|
+
} & { [K_710 in Exclude<keyof I_1["list_data_socket"]["user_permission_list"], keyof UserPermissionInChannelListResponse>]: never; }) | undefined;
|
|
20000
20036
|
permission_role_req?: ({
|
|
20001
20037
|
role_id?: string | undefined;
|
|
20002
20038
|
channel_id?: string | undefined;
|
|
@@ -20005,7 +20041,7 @@ export declare const Envelope: {
|
|
|
20005
20041
|
role_id?: string | undefined;
|
|
20006
20042
|
channel_id?: string | undefined;
|
|
20007
20043
|
user_id?: string | undefined;
|
|
20008
|
-
} & { [
|
|
20044
|
+
} & { [K_711 in Exclude<keyof I_1["list_data_socket"]["permission_role_req"], keyof PermissionRoleChannelListEventRequest>]: never; }) | undefined;
|
|
20009
20045
|
permission_role_list?: ({
|
|
20010
20046
|
role_id?: string | undefined;
|
|
20011
20047
|
channel_id?: string | undefined;
|
|
@@ -20027,11 +20063,11 @@ export declare const Envelope: {
|
|
|
20027
20063
|
} & {
|
|
20028
20064
|
permission_id?: string | undefined;
|
|
20029
20065
|
active?: boolean | undefined;
|
|
20030
|
-
} & { [
|
|
20066
|
+
} & { [K_712 in Exclude<keyof I_1["list_data_socket"]["permission_role_list"]["permission_role_channel"][number], keyof import("../api/api").PermissionRoleChannel>]: never; })[] & { [K_713 in Exclude<keyof I_1["list_data_socket"]["permission_role_list"]["permission_role_channel"], keyof {
|
|
20031
20067
|
permission_id?: string | undefined;
|
|
20032
20068
|
active?: boolean | undefined;
|
|
20033
20069
|
}[]>]: never; }) | undefined;
|
|
20034
|
-
} & { [
|
|
20070
|
+
} & { [K_714 in Exclude<keyof I_1["list_data_socket"]["permission_role_list"], keyof PermissionRoleChannelListEventResponse>]: never; }) | undefined;
|
|
20035
20071
|
emoji_list?: ({
|
|
20036
20072
|
emoji_list?: {
|
|
20037
20073
|
id?: string | undefined;
|
|
@@ -20075,7 +20111,7 @@ export declare const Envelope: {
|
|
|
20075
20111
|
logo?: string | undefined;
|
|
20076
20112
|
clan_name?: string | undefined;
|
|
20077
20113
|
is_for_sale?: boolean | undefined;
|
|
20078
|
-
} & { [
|
|
20114
|
+
} & { [K_715 in Exclude<keyof I_1["list_data_socket"]["emoji_list"]["emoji_list"][number], keyof import("../api/api").ClanEmoji>]: never; })[] & { [K_716 in Exclude<keyof I_1["list_data_socket"]["emoji_list"]["emoji_list"], keyof {
|
|
20079
20115
|
id?: string | undefined;
|
|
20080
20116
|
src?: string | undefined;
|
|
20081
20117
|
shortname?: string | undefined;
|
|
@@ -20086,7 +20122,7 @@ export declare const Envelope: {
|
|
|
20086
20122
|
clan_name?: string | undefined;
|
|
20087
20123
|
is_for_sale?: boolean | undefined;
|
|
20088
20124
|
}[]>]: never; }) | undefined;
|
|
20089
|
-
} & { [
|
|
20125
|
+
} & { [K_717 in Exclude<keyof I_1["list_data_socket"]["emoji_list"], "emoji_list">]: never; }) | undefined;
|
|
20090
20126
|
list_friend_req?: ({
|
|
20091
20127
|
limit?: number | undefined;
|
|
20092
20128
|
state?: number | undefined;
|
|
@@ -20095,7 +20131,7 @@ export declare const Envelope: {
|
|
|
20095
20131
|
limit?: number | undefined;
|
|
20096
20132
|
state?: number | undefined;
|
|
20097
20133
|
cursor?: string | undefined;
|
|
20098
|
-
} & { [
|
|
20134
|
+
} & { [K_718 in Exclude<keyof I_1["list_data_socket"]["list_friend_req"], keyof ListFriendsRequest>]: never; }) | undefined;
|
|
20099
20135
|
friend_list?: ({
|
|
20100
20136
|
friends?: {
|
|
20101
20137
|
user?: {
|
|
@@ -20219,13 +20255,13 @@ export declare const Envelope: {
|
|
|
20219
20255
|
is_mobile?: boolean | undefined;
|
|
20220
20256
|
dob?: Date | undefined;
|
|
20221
20257
|
mezon_id?: string | undefined;
|
|
20222
|
-
list_nick_names?: (string[] & string[] & { [
|
|
20258
|
+
list_nick_names?: (string[] & string[] & { [K_719 in Exclude<keyof I_1["list_data_socket"]["friend_list"]["friends"][number]["user"]["list_nick_names"], keyof string[]>]: never; }) | undefined;
|
|
20223
20259
|
status?: string | undefined;
|
|
20224
|
-
} & { [
|
|
20260
|
+
} & { [K_720 in Exclude<keyof I_1["list_data_socket"]["friend_list"]["friends"][number]["user"], keyof import("../api/api").User>]: never; }) | undefined;
|
|
20225
20261
|
state?: number | undefined;
|
|
20226
20262
|
update_time?: Date | undefined;
|
|
20227
20263
|
source_id?: string | undefined;
|
|
20228
|
-
} & { [
|
|
20264
|
+
} & { [K_721 in Exclude<keyof I_1["list_data_socket"]["friend_list"]["friends"][number], keyof import("../api/api").Friend>]: never; })[] & { [K_722 in Exclude<keyof I_1["list_data_socket"]["friend_list"]["friends"], keyof {
|
|
20229
20265
|
user?: {
|
|
20230
20266
|
id?: string | undefined;
|
|
20231
20267
|
username?: string | undefined;
|
|
@@ -20253,12 +20289,12 @@ export declare const Envelope: {
|
|
|
20253
20289
|
source_id?: string | undefined;
|
|
20254
20290
|
}[]>]: never; }) | undefined;
|
|
20255
20291
|
cursor?: string | undefined;
|
|
20256
|
-
} & { [
|
|
20292
|
+
} & { [K_723 in Exclude<keyof I_1["list_data_socket"]["friend_list"], keyof FriendList>]: never; }) | undefined;
|
|
20257
20293
|
list_apps_req?: ({
|
|
20258
20294
|
clan_id?: string | undefined;
|
|
20259
20295
|
} & {
|
|
20260
20296
|
clan_id?: string | undefined;
|
|
20261
|
-
} & { [
|
|
20297
|
+
} & { [K_724 in Exclude<keyof I_1["list_data_socket"]["list_apps_req"], "clan_id">]: never; }) | undefined;
|
|
20262
20298
|
channel_apps_list?: ({
|
|
20263
20299
|
channel_apps?: {
|
|
20264
20300
|
id?: string | undefined;
|
|
@@ -20294,7 +20330,7 @@ export declare const Envelope: {
|
|
|
20294
20330
|
app_url?: string | undefined;
|
|
20295
20331
|
app_name?: string | undefined;
|
|
20296
20332
|
app_logo?: string | undefined;
|
|
20297
|
-
} & { [
|
|
20333
|
+
} & { [K_725 in Exclude<keyof I_1["list_data_socket"]["channel_apps_list"]["channel_apps"][number], keyof import("../api/api").ChannelAppResponse>]: never; })[] & { [K_726 in Exclude<keyof I_1["list_data_socket"]["channel_apps_list"]["channel_apps"], keyof {
|
|
20298
20334
|
id?: string | undefined;
|
|
20299
20335
|
clan_id?: string | undefined;
|
|
20300
20336
|
channel_id?: string | undefined;
|
|
@@ -20303,7 +20339,7 @@ export declare const Envelope: {
|
|
|
20303
20339
|
app_name?: string | undefined;
|
|
20304
20340
|
app_logo?: string | undefined;
|
|
20305
20341
|
}[]>]: never; }) | undefined;
|
|
20306
|
-
} & { [
|
|
20342
|
+
} & { [K_727 in Exclude<keyof I_1["list_data_socket"]["channel_apps_list"], "channel_apps">]: never; }) | undefined;
|
|
20307
20343
|
user_activity_list?: ({
|
|
20308
20344
|
activities?: {
|
|
20309
20345
|
user_id?: string | undefined;
|
|
@@ -20343,7 +20379,7 @@ export declare const Envelope: {
|
|
|
20343
20379
|
end_time?: Date | undefined;
|
|
20344
20380
|
application_id?: string | undefined;
|
|
20345
20381
|
status?: number | undefined;
|
|
20346
|
-
} & { [
|
|
20382
|
+
} & { [K_728 in Exclude<keyof I_1["list_data_socket"]["user_activity_list"]["activities"][number], keyof UserActivity>]: never; })[] & { [K_729 in Exclude<keyof I_1["list_data_socket"]["user_activity_list"]["activities"], keyof {
|
|
20347
20383
|
user_id?: string | undefined;
|
|
20348
20384
|
activity_name?: string | undefined;
|
|
20349
20385
|
activity_type?: number | undefined;
|
|
@@ -20353,12 +20389,12 @@ export declare const Envelope: {
|
|
|
20353
20389
|
application_id?: string | undefined;
|
|
20354
20390
|
status?: number | undefined;
|
|
20355
20391
|
}[]>]: never; }) | undefined;
|
|
20356
|
-
} & { [
|
|
20392
|
+
} & { [K_730 in Exclude<keyof I_1["list_data_socket"]["user_activity_list"], "activities">]: never; }) | undefined;
|
|
20357
20393
|
list_clan_user_req?: ({
|
|
20358
20394
|
clan_id?: string | undefined;
|
|
20359
20395
|
} & {
|
|
20360
20396
|
clan_id?: string | undefined;
|
|
20361
|
-
} & { [
|
|
20397
|
+
} & { [K_731 in Exclude<keyof I_1["list_data_socket"]["list_clan_user_req"], "clan_id">]: never; }) | undefined;
|
|
20362
20398
|
clan_user_list?: ({
|
|
20363
20399
|
clan_users?: {
|
|
20364
20400
|
user?: {
|
|
@@ -20486,14 +20522,14 @@ export declare const Envelope: {
|
|
|
20486
20522
|
is_mobile?: boolean | undefined;
|
|
20487
20523
|
dob?: Date | undefined;
|
|
20488
20524
|
mezon_id?: string | undefined;
|
|
20489
|
-
list_nick_names?: (string[] & string[] & { [
|
|
20525
|
+
list_nick_names?: (string[] & string[] & { [K_732 in Exclude<keyof I_1["list_data_socket"]["clan_user_list"]["clan_users"][number]["user"]["list_nick_names"], keyof string[]>]: never; }) | undefined;
|
|
20490
20526
|
status?: string | undefined;
|
|
20491
|
-
} & { [
|
|
20492
|
-
role_id?: (string[] & string[] & { [
|
|
20527
|
+
} & { [K_733 in Exclude<keyof I_1["list_data_socket"]["clan_user_list"]["clan_users"][number]["user"], keyof import("../api/api").User>]: never; }) | undefined;
|
|
20528
|
+
role_id?: (string[] & string[] & { [K_734 in Exclude<keyof I_1["list_data_socket"]["clan_user_list"]["clan_users"][number]["role_id"], keyof string[]>]: never; }) | undefined;
|
|
20493
20529
|
clan_nick?: string | undefined;
|
|
20494
20530
|
clan_avatar?: string | undefined;
|
|
20495
20531
|
clan_id?: string | undefined;
|
|
20496
|
-
} & { [
|
|
20532
|
+
} & { [K_735 in Exclude<keyof I_1["list_data_socket"]["clan_user_list"]["clan_users"][number], keyof import("../api/api").ClanUserList_ClanUser>]: never; })[] & { [K_736 in Exclude<keyof I_1["list_data_socket"]["clan_user_list"]["clan_users"], keyof {
|
|
20497
20533
|
user?: {
|
|
20498
20534
|
id?: string | undefined;
|
|
20499
20535
|
username?: string | undefined;
|
|
@@ -20523,12 +20559,12 @@ export declare const Envelope: {
|
|
|
20523
20559
|
}[]>]: never; }) | undefined;
|
|
20524
20560
|
cursor?: string | undefined;
|
|
20525
20561
|
clan_id?: string | undefined;
|
|
20526
|
-
} & { [
|
|
20562
|
+
} & { [K_737 in Exclude<keyof I_1["list_data_socket"]["clan_user_list"], keyof ClanUserList>]: never; }) | undefined;
|
|
20527
20563
|
list_event_req?: ({
|
|
20528
20564
|
clan_id?: string | undefined;
|
|
20529
20565
|
} & {
|
|
20530
20566
|
clan_id?: string | undefined;
|
|
20531
|
-
} & { [
|
|
20567
|
+
} & { [K_738 in Exclude<keyof I_1["list_data_socket"]["list_event_req"], "clan_id">]: never; }) | undefined;
|
|
20532
20568
|
event_list?: ({
|
|
20533
20569
|
events?: {
|
|
20534
20570
|
id?: string | undefined;
|
|
@@ -20626,7 +20662,7 @@ export declare const Envelope: {
|
|
|
20626
20662
|
address?: string | undefined;
|
|
20627
20663
|
start_time?: Date | undefined;
|
|
20628
20664
|
end_time?: Date | undefined;
|
|
20629
|
-
user_ids?: (string[] & string[] & { [
|
|
20665
|
+
user_ids?: (string[] & string[] & { [K_739 in Exclude<keyof I_1["list_data_socket"]["event_list"]["events"][number]["user_ids"], keyof string[]>]: never; }) | undefined;
|
|
20630
20666
|
create_time?: Date | undefined;
|
|
20631
20667
|
max_permission?: number | undefined;
|
|
20632
20668
|
channel_id?: string | undefined;
|
|
@@ -20645,8 +20681,8 @@ export declare const Envelope: {
|
|
|
20645
20681
|
external_link?: string | undefined;
|
|
20646
20682
|
creator_id?: string | undefined;
|
|
20647
20683
|
event_id?: string | undefined;
|
|
20648
|
-
} & { [
|
|
20649
|
-
} & { [
|
|
20684
|
+
} & { [K_740 in Exclude<keyof I_1["list_data_socket"]["event_list"]["events"][number]["meet_room"], keyof import("../api/api").GenerateMezonMeetResponse>]: never; }) | undefined;
|
|
20685
|
+
} & { [K_741 in Exclude<keyof I_1["list_data_socket"]["event_list"]["events"][number], keyof import("../api/api").EventManagement>]: never; })[] & { [K_742 in Exclude<keyof I_1["list_data_socket"]["event_list"]["events"], keyof {
|
|
20650
20686
|
id?: string | undefined;
|
|
20651
20687
|
title?: string | undefined;
|
|
20652
20688
|
logo?: string | undefined;
|
|
@@ -20674,7 +20710,7 @@ export declare const Envelope: {
|
|
|
20674
20710
|
event_id?: string | undefined;
|
|
20675
20711
|
} | undefined;
|
|
20676
20712
|
}[]>]: never; }) | undefined;
|
|
20677
|
-
} & { [
|
|
20713
|
+
} & { [K_743 in Exclude<keyof I_1["list_data_socket"]["event_list"], "events">]: never; }) | undefined;
|
|
20678
20714
|
list_category_req?: ({
|
|
20679
20715
|
creator_id?: string | undefined;
|
|
20680
20716
|
clan_id?: string | undefined;
|
|
@@ -20687,7 +20723,7 @@ export declare const Envelope: {
|
|
|
20687
20723
|
category_name?: string | undefined;
|
|
20688
20724
|
category_id?: string | undefined;
|
|
20689
20725
|
category_order?: number | undefined;
|
|
20690
|
-
} & { [
|
|
20726
|
+
} & { [K_744 in Exclude<keyof I_1["list_data_socket"]["list_category_req"], keyof CategoryDesc>]: never; }) | undefined;
|
|
20691
20727
|
category_list?: ({
|
|
20692
20728
|
categorydesc?: {
|
|
20693
20729
|
creator_id?: string | undefined;
|
|
@@ -20715,14 +20751,14 @@ export declare const Envelope: {
|
|
|
20715
20751
|
category_name?: string | undefined;
|
|
20716
20752
|
category_id?: string | undefined;
|
|
20717
20753
|
category_order?: number | undefined;
|
|
20718
|
-
} & { [
|
|
20754
|
+
} & { [K_745 in Exclude<keyof I_1["list_data_socket"]["category_list"]["categorydesc"][number], keyof CategoryDesc>]: never; })[] & { [K_746 in Exclude<keyof I_1["list_data_socket"]["category_list"]["categorydesc"], keyof {
|
|
20719
20755
|
creator_id?: string | undefined;
|
|
20720
20756
|
clan_id?: string | undefined;
|
|
20721
20757
|
category_name?: string | undefined;
|
|
20722
20758
|
category_id?: string | undefined;
|
|
20723
20759
|
category_order?: number | undefined;
|
|
20724
20760
|
}[]>]: never; }) | undefined;
|
|
20725
|
-
} & { [
|
|
20761
|
+
} & { [K_747 in Exclude<keyof I_1["list_data_socket"]["category_list"], "categorydesc">]: never; }) | undefined;
|
|
20726
20762
|
stream_user_list?: ({
|
|
20727
20763
|
streaming_channel_users?: {
|
|
20728
20764
|
id?: string | undefined;
|
|
@@ -20746,24 +20782,34 @@ export declare const Envelope: {
|
|
|
20746
20782
|
user_id?: string | undefined;
|
|
20747
20783
|
channel_id?: string | undefined;
|
|
20748
20784
|
participant?: string | undefined;
|
|
20749
|
-
} & { [
|
|
20785
|
+
} & { [K_748 in Exclude<keyof I_1["list_data_socket"]["stream_user_list"]["streaming_channel_users"][number], keyof import("../api/api").StreamingChannelUser>]: never; })[] & { [K_749 in Exclude<keyof I_1["list_data_socket"]["stream_user_list"]["streaming_channel_users"], keyof {
|
|
20750
20786
|
id?: string | undefined;
|
|
20751
20787
|
user_id?: string | undefined;
|
|
20752
20788
|
channel_id?: string | undefined;
|
|
20753
20789
|
participant?: string | undefined;
|
|
20754
20790
|
}[]>]: never; }) | undefined;
|
|
20755
|
-
} & { [
|
|
20791
|
+
} & { [K_750 in Exclude<keyof I_1["list_data_socket"]["stream_user_list"], "streaming_channel_users">]: never; }) | undefined;
|
|
20756
20792
|
list_unread_msg_indicator_req?: ({
|
|
20757
20793
|
clan_id?: string | undefined;
|
|
20758
20794
|
} & {
|
|
20759
20795
|
clan_id?: string | undefined;
|
|
20760
|
-
} & { [
|
|
20796
|
+
} & { [K_751 in Exclude<keyof I_1["list_data_socket"]["list_unread_msg_indicator_req"], "clan_id">]: never; }) | undefined;
|
|
20761
20797
|
unread_msg_indicator?: ({
|
|
20762
20798
|
has_unread_message?: boolean | undefined;
|
|
20763
20799
|
} & {
|
|
20764
20800
|
has_unread_message?: boolean | undefined;
|
|
20765
|
-
} & { [
|
|
20766
|
-
|
|
20801
|
+
} & { [K_752 in Exclude<keyof I_1["list_data_socket"]["unread_msg_indicator"], "has_unread_message">]: never; }) | undefined;
|
|
20802
|
+
list_clan_badge_count_req?: ({
|
|
20803
|
+
clan_id?: string | undefined;
|
|
20804
|
+
} & {
|
|
20805
|
+
clan_id?: string | undefined;
|
|
20806
|
+
} & { [K_753 in Exclude<keyof I_1["list_data_socket"]["list_clan_badge_count_req"], "clan_id">]: never; }) | undefined;
|
|
20807
|
+
clan_badge_count?: ({
|
|
20808
|
+
badge_count?: number | undefined;
|
|
20809
|
+
} & {
|
|
20810
|
+
badge_count?: number | undefined;
|
|
20811
|
+
} & { [K_754 in Exclude<keyof I_1["list_data_socket"]["clan_badge_count"], "badge_count">]: never; }) | undefined;
|
|
20812
|
+
} & { [K_755 in Exclude<keyof I_1["list_data_socket"], keyof ListDataSocket>]: never; }) | undefined;
|
|
20767
20813
|
quick_menu_event?: ({
|
|
20768
20814
|
menu_name?: string | undefined;
|
|
20769
20815
|
message?: {
|
|
@@ -20888,7 +20934,7 @@ export declare const Envelope: {
|
|
|
20888
20934
|
create_time?: Date | undefined;
|
|
20889
20935
|
s?: number | undefined;
|
|
20890
20936
|
e?: number | undefined;
|
|
20891
|
-
} & { [
|
|
20937
|
+
} & { [K_756 in Exclude<keyof I_1["quick_menu_event"]["message"]["mentions"][number], keyof MessageMention>]: never; })[] & { [K_757 in Exclude<keyof I_1["quick_menu_event"]["message"]["mentions"], keyof {
|
|
20892
20938
|
id?: string | undefined;
|
|
20893
20939
|
user_id?: string | undefined;
|
|
20894
20940
|
username?: string | undefined;
|
|
@@ -20925,7 +20971,7 @@ export declare const Envelope: {
|
|
|
20925
20971
|
height?: number | undefined;
|
|
20926
20972
|
thumbnail?: string | undefined;
|
|
20927
20973
|
duration?: number | undefined;
|
|
20928
|
-
} & { [
|
|
20974
|
+
} & { [K_758 in Exclude<keyof I_1["quick_menu_event"]["message"]["attachments"][number], keyof MessageAttachment>]: never; })[] & { [K_759 in Exclude<keyof I_1["quick_menu_event"]["message"]["attachments"], keyof {
|
|
20929
20975
|
filename?: string | undefined;
|
|
20930
20976
|
size?: number | undefined;
|
|
20931
20977
|
url?: string | undefined;
|
|
@@ -20968,7 +21014,7 @@ export declare const Envelope: {
|
|
|
20968
21014
|
mesages_sender_avatar?: string | undefined;
|
|
20969
21015
|
message_sender_clan_nick?: string | undefined;
|
|
20970
21016
|
message_sender_display_name?: string | undefined;
|
|
20971
|
-
} & { [
|
|
21017
|
+
} & { [K_760 in Exclude<keyof I_1["quick_menu_event"]["message"]["references"][number], keyof MessageRef>]: never; })[] & { [K_761 in Exclude<keyof I_1["quick_menu_event"]["message"]["references"], keyof {
|
|
20972
21018
|
message_id?: string | undefined;
|
|
20973
21019
|
message_ref_id?: string | undefined;
|
|
20974
21020
|
content?: string | undefined;
|
|
@@ -20988,8 +21034,8 @@ export declare const Envelope: {
|
|
|
20988
21034
|
code?: number | undefined;
|
|
20989
21035
|
topic_id?: string | undefined;
|
|
20990
21036
|
id?: string | undefined;
|
|
20991
|
-
} & { [
|
|
20992
|
-
} & { [
|
|
21037
|
+
} & { [K_762 in Exclude<keyof I_1["quick_menu_event"]["message"], keyof ChannelMessageSend>]: never; }) | undefined;
|
|
21038
|
+
} & { [K_763 in Exclude<keyof I_1["quick_menu_event"], keyof QuickMenuDataEvent>]: never; }) | undefined;
|
|
20993
21039
|
un_block_friend?: ({
|
|
20994
21040
|
user_id?: string | undefined;
|
|
20995
21041
|
username?: string | undefined;
|
|
@@ -21004,7 +21050,7 @@ export declare const Envelope: {
|
|
|
21004
21050
|
display_name?: string | undefined;
|
|
21005
21051
|
status?: string | undefined;
|
|
21006
21052
|
user_status?: string | undefined;
|
|
21007
|
-
} & { [
|
|
21053
|
+
} & { [K_764 in Exclude<keyof I_1["un_block_friend"], keyof UnblockFriend>]: never; }) | undefined;
|
|
21008
21054
|
meet_participant_event?: ({
|
|
21009
21055
|
username?: string | undefined;
|
|
21010
21056
|
room_name?: string | undefined;
|
|
@@ -21017,7 +21063,7 @@ export declare const Envelope: {
|
|
|
21017
21063
|
channel_id?: string | undefined;
|
|
21018
21064
|
clan_id?: string | undefined;
|
|
21019
21065
|
action?: number | undefined;
|
|
21020
|
-
} & { [
|
|
21066
|
+
} & { [K_765 in Exclude<keyof I_1["meet_participant_event"], keyof MeetParticipantEvent>]: never; }) | undefined;
|
|
21021
21067
|
transfer_ownership_event?: ({
|
|
21022
21068
|
clan_id?: string | undefined;
|
|
21023
21069
|
prev_owner?: string | undefined;
|
|
@@ -21026,7 +21072,7 @@ export declare const Envelope: {
|
|
|
21026
21072
|
clan_id?: string | undefined;
|
|
21027
21073
|
prev_owner?: string | undefined;
|
|
21028
21074
|
curr_owner?: string | undefined;
|
|
21029
|
-
} & { [
|
|
21075
|
+
} & { [K_766 in Exclude<keyof I_1["transfer_ownership_event"], keyof TransferOwnershipEvent>]: never; }) | undefined;
|
|
21030
21076
|
add_friend?: ({
|
|
21031
21077
|
user_id?: string | undefined;
|
|
21032
21078
|
username?: string | undefined;
|
|
@@ -21037,7 +21083,7 @@ export declare const Envelope: {
|
|
|
21037
21083
|
username?: string | undefined;
|
|
21038
21084
|
display_name?: string | undefined;
|
|
21039
21085
|
avatar?: string | undefined;
|
|
21040
|
-
} & { [
|
|
21086
|
+
} & { [K_767 in Exclude<keyof I_1["add_friend"], keyof AddFriend>]: never; }) | undefined;
|
|
21041
21087
|
ban_user_event?: ({
|
|
21042
21088
|
user_ids?: string[] | undefined;
|
|
21043
21089
|
action?: number | undefined;
|
|
@@ -21046,35 +21092,35 @@ export declare const Envelope: {
|
|
|
21046
21092
|
clan_id?: string | undefined;
|
|
21047
21093
|
ban_time?: number | undefined;
|
|
21048
21094
|
} & {
|
|
21049
|
-
user_ids?: (string[] & string[] & { [
|
|
21095
|
+
user_ids?: (string[] & string[] & { [K_768 in Exclude<keyof I_1["ban_user_event"]["user_ids"], keyof string[]>]: never; }) | undefined;
|
|
21050
21096
|
action?: number | undefined;
|
|
21051
21097
|
banner_id?: string | undefined;
|
|
21052
21098
|
channel_id?: string | undefined;
|
|
21053
21099
|
clan_id?: string | undefined;
|
|
21054
21100
|
ban_time?: number | undefined;
|
|
21055
|
-
} & { [
|
|
21101
|
+
} & { [K_769 in Exclude<keyof I_1["ban_user_event"], keyof BannedUserEvent>]: never; }) | undefined;
|
|
21056
21102
|
active_archived_thread?: ({
|
|
21057
21103
|
clan_id?: string | undefined;
|
|
21058
21104
|
channel_id?: string | undefined;
|
|
21059
21105
|
} & {
|
|
21060
21106
|
clan_id?: string | undefined;
|
|
21061
21107
|
channel_id?: string | undefined;
|
|
21062
|
-
} & { [
|
|
21108
|
+
} & { [K_770 in Exclude<keyof I_1["active_archived_thread"], keyof ActiveArchivedThread>]: never; }) | undefined;
|
|
21063
21109
|
allow_anonymous_event?: ({
|
|
21064
21110
|
clan_id?: string | undefined;
|
|
21065
21111
|
allow?: boolean | undefined;
|
|
21066
21112
|
} & {
|
|
21067
21113
|
clan_id?: string | undefined;
|
|
21068
21114
|
allow?: boolean | undefined;
|
|
21069
|
-
} & { [
|
|
21115
|
+
} & { [K_771 in Exclude<keyof I_1["allow_anonymous_event"], keyof AllowAnonymousEvent>]: never; }) | undefined;
|
|
21070
21116
|
update_localcache_event?: ({
|
|
21071
21117
|
user_ids?: string[] | undefined;
|
|
21072
21118
|
channel_ids?: string[] | undefined;
|
|
21073
21119
|
} & {
|
|
21074
|
-
user_ids?: (string[] & string[] & { [
|
|
21075
|
-
channel_ids?: (string[] & string[] & { [
|
|
21076
|
-
} & { [
|
|
21077
|
-
} & { [
|
|
21120
|
+
user_ids?: (string[] & string[] & { [K_772 in Exclude<keyof I_1["update_localcache_event"]["user_ids"], keyof string[]>]: never; }) | undefined;
|
|
21121
|
+
channel_ids?: (string[] & string[] & { [K_773 in Exclude<keyof I_1["update_localcache_event"]["channel_ids"], keyof string[]>]: never; }) | undefined;
|
|
21122
|
+
} & { [K_774 in Exclude<keyof I_1["update_localcache_event"], keyof UpdateLocalCacheEvent>]: never; }) | undefined;
|
|
21123
|
+
} & { [K_775 in Exclude<keyof I_1, keyof Envelope>]: never; }>(object: I_1): Envelope;
|
|
21078
21124
|
};
|
|
21079
21125
|
export declare const UpdateLocalCacheEvent: {
|
|
21080
21126
|
encode(message: UpdateLocalCacheEvent, writer?: _m0.Writer): _m0.Writer;
|
|
@@ -23799,7 +23845,7 @@ export declare const Notifications: {
|
|
|
23799
23845
|
notifications?: {
|
|
23800
23846
|
id?: string | undefined;
|
|
23801
23847
|
subject?: string | undefined;
|
|
23802
|
-
content?:
|
|
23848
|
+
content?: Uint8Array | undefined;
|
|
23803
23849
|
code?: number | undefined;
|
|
23804
23850
|
sender_id?: string | undefined;
|
|
23805
23851
|
create_time?: Date | undefined;
|
|
@@ -23866,7 +23912,7 @@ export declare const Notifications: {
|
|
|
23866
23912
|
notifications?: ({
|
|
23867
23913
|
id?: string | undefined;
|
|
23868
23914
|
subject?: string | undefined;
|
|
23869
|
-
content?:
|
|
23915
|
+
content?: Uint8Array | undefined;
|
|
23870
23916
|
code?: number | undefined;
|
|
23871
23917
|
sender_id?: string | undefined;
|
|
23872
23918
|
create_time?: Date | undefined;
|
|
@@ -23931,7 +23977,7 @@ export declare const Notifications: {
|
|
|
23931
23977
|
}[] & ({
|
|
23932
23978
|
id?: string | undefined;
|
|
23933
23979
|
subject?: string | undefined;
|
|
23934
|
-
content?:
|
|
23980
|
+
content?: Uint8Array | undefined;
|
|
23935
23981
|
code?: number | undefined;
|
|
23936
23982
|
sender_id?: string | undefined;
|
|
23937
23983
|
create_time?: Date | undefined;
|
|
@@ -23996,7 +24042,7 @@ export declare const Notifications: {
|
|
|
23996
24042
|
} & {
|
|
23997
24043
|
id?: string | undefined;
|
|
23998
24044
|
subject?: string | undefined;
|
|
23999
|
-
content?:
|
|
24045
|
+
content?: Uint8Array | undefined;
|
|
24000
24046
|
code?: number | undefined;
|
|
24001
24047
|
sender_id?: string | undefined;
|
|
24002
24048
|
create_time?: Date | undefined;
|
|
@@ -24129,7 +24175,7 @@ export declare const Notifications: {
|
|
|
24129
24175
|
} & { [K_8 in Exclude<keyof I["notifications"][number], keyof Notification>]: never; })[] & { [K_9 in Exclude<keyof I["notifications"], keyof {
|
|
24130
24176
|
id?: string | undefined;
|
|
24131
24177
|
subject?: string | undefined;
|
|
24132
|
-
content?:
|
|
24178
|
+
content?: Uint8Array | undefined;
|
|
24133
24179
|
code?: number | undefined;
|
|
24134
24180
|
sender_id?: string | undefined;
|
|
24135
24181
|
create_time?: Date | undefined;
|
|
@@ -24197,7 +24243,7 @@ export declare const Notifications: {
|
|
|
24197
24243
|
notifications?: {
|
|
24198
24244
|
id?: string | undefined;
|
|
24199
24245
|
subject?: string | undefined;
|
|
24200
|
-
content?:
|
|
24246
|
+
content?: Uint8Array | undefined;
|
|
24201
24247
|
code?: number | undefined;
|
|
24202
24248
|
sender_id?: string | undefined;
|
|
24203
24249
|
create_time?: Date | undefined;
|
|
@@ -24264,7 +24310,7 @@ export declare const Notifications: {
|
|
|
24264
24310
|
notifications?: ({
|
|
24265
24311
|
id?: string | undefined;
|
|
24266
24312
|
subject?: string | undefined;
|
|
24267
|
-
content?:
|
|
24313
|
+
content?: Uint8Array | undefined;
|
|
24268
24314
|
code?: number | undefined;
|
|
24269
24315
|
sender_id?: string | undefined;
|
|
24270
24316
|
create_time?: Date | undefined;
|
|
@@ -24329,7 +24375,7 @@ export declare const Notifications: {
|
|
|
24329
24375
|
}[] & ({
|
|
24330
24376
|
id?: string | undefined;
|
|
24331
24377
|
subject?: string | undefined;
|
|
24332
|
-
content?:
|
|
24378
|
+
content?: Uint8Array | undefined;
|
|
24333
24379
|
code?: number | undefined;
|
|
24334
24380
|
sender_id?: string | undefined;
|
|
24335
24381
|
create_time?: Date | undefined;
|
|
@@ -24394,7 +24440,7 @@ export declare const Notifications: {
|
|
|
24394
24440
|
} & {
|
|
24395
24441
|
id?: string | undefined;
|
|
24396
24442
|
subject?: string | undefined;
|
|
24397
|
-
content?:
|
|
24443
|
+
content?: Uint8Array | undefined;
|
|
24398
24444
|
code?: number | undefined;
|
|
24399
24445
|
sender_id?: string | undefined;
|
|
24400
24446
|
create_time?: Date | undefined;
|
|
@@ -24527,7 +24573,7 @@ export declare const Notifications: {
|
|
|
24527
24573
|
} & { [K_19 in Exclude<keyof I_1["notifications"][number], keyof Notification>]: never; })[] & { [K_20 in Exclude<keyof I_1["notifications"], keyof {
|
|
24528
24574
|
id?: string | undefined;
|
|
24529
24575
|
subject?: string | undefined;
|
|
24530
|
-
content?:
|
|
24576
|
+
content?: Uint8Array | undefined;
|
|
24531
24577
|
code?: number | undefined;
|
|
24532
24578
|
sender_id?: string | undefined;
|
|
24533
24579
|
create_time?: Date | undefined;
|
|
@@ -28941,7 +28987,7 @@ export declare const ListDataSocket: {
|
|
|
28941
28987
|
notifications?: {
|
|
28942
28988
|
id?: string | undefined;
|
|
28943
28989
|
subject?: string | undefined;
|
|
28944
|
-
content?:
|
|
28990
|
+
content?: Uint8Array | undefined;
|
|
28945
28991
|
code?: number | undefined;
|
|
28946
28992
|
sender_id?: string | undefined;
|
|
28947
28993
|
create_time?: Date | undefined;
|
|
@@ -29405,6 +29451,12 @@ export declare const ListDataSocket: {
|
|
|
29405
29451
|
unread_msg_indicator?: {
|
|
29406
29452
|
has_unread_message?: boolean | undefined;
|
|
29407
29453
|
} | undefined;
|
|
29454
|
+
list_clan_badge_count_req?: {
|
|
29455
|
+
clan_id?: string | undefined;
|
|
29456
|
+
} | undefined;
|
|
29457
|
+
clan_badge_count?: {
|
|
29458
|
+
badge_count?: number | undefined;
|
|
29459
|
+
} | undefined;
|
|
29408
29460
|
} & {
|
|
29409
29461
|
api_name?: string | undefined;
|
|
29410
29462
|
list_clan_req?: ({
|
|
@@ -30698,7 +30750,7 @@ export declare const ListDataSocket: {
|
|
|
30698
30750
|
notifications?: {
|
|
30699
30751
|
id?: string | undefined;
|
|
30700
30752
|
subject?: string | undefined;
|
|
30701
|
-
content?:
|
|
30753
|
+
content?: Uint8Array | undefined;
|
|
30702
30754
|
code?: number | undefined;
|
|
30703
30755
|
sender_id?: string | undefined;
|
|
30704
30756
|
create_time?: Date | undefined;
|
|
@@ -30766,7 +30818,7 @@ export declare const ListDataSocket: {
|
|
|
30766
30818
|
notifications?: ({
|
|
30767
30819
|
id?: string | undefined;
|
|
30768
30820
|
subject?: string | undefined;
|
|
30769
|
-
content?:
|
|
30821
|
+
content?: Uint8Array | undefined;
|
|
30770
30822
|
code?: number | undefined;
|
|
30771
30823
|
sender_id?: string | undefined;
|
|
30772
30824
|
create_time?: Date | undefined;
|
|
@@ -30831,7 +30883,7 @@ export declare const ListDataSocket: {
|
|
|
30831
30883
|
}[] & ({
|
|
30832
30884
|
id?: string | undefined;
|
|
30833
30885
|
subject?: string | undefined;
|
|
30834
|
-
content?:
|
|
30886
|
+
content?: Uint8Array | undefined;
|
|
30835
30887
|
code?: number | undefined;
|
|
30836
30888
|
sender_id?: string | undefined;
|
|
30837
30889
|
create_time?: Date | undefined;
|
|
@@ -30896,7 +30948,7 @@ export declare const ListDataSocket: {
|
|
|
30896
30948
|
} & {
|
|
30897
30949
|
id?: string | undefined;
|
|
30898
30950
|
subject?: string | undefined;
|
|
30899
|
-
content?:
|
|
30951
|
+
content?: Uint8Array | undefined;
|
|
30900
30952
|
code?: number | undefined;
|
|
30901
30953
|
sender_id?: string | undefined;
|
|
30902
30954
|
create_time?: Date | undefined;
|
|
@@ -31029,7 +31081,7 @@ export declare const ListDataSocket: {
|
|
|
31029
31081
|
} & { [K_83 in Exclude<keyof I["notification_list"]["notifications"][number], keyof Notification>]: never; })[] & { [K_84 in Exclude<keyof I["notification_list"]["notifications"], keyof {
|
|
31030
31082
|
id?: string | undefined;
|
|
31031
31083
|
subject?: string | undefined;
|
|
31032
|
-
content?:
|
|
31084
|
+
content?: Uint8Array | undefined;
|
|
31033
31085
|
code?: number | undefined;
|
|
31034
31086
|
sender_id?: string | undefined;
|
|
31035
31087
|
create_time?: Date | undefined;
|
|
@@ -32890,7 +32942,17 @@ export declare const ListDataSocket: {
|
|
|
32890
32942
|
} & {
|
|
32891
32943
|
has_unread_message?: boolean | undefined;
|
|
32892
32944
|
} & { [K_177 in Exclude<keyof I["unread_msg_indicator"], "has_unread_message">]: never; }) | undefined;
|
|
32893
|
-
|
|
32945
|
+
list_clan_badge_count_req?: ({
|
|
32946
|
+
clan_id?: string | undefined;
|
|
32947
|
+
} & {
|
|
32948
|
+
clan_id?: string | undefined;
|
|
32949
|
+
} & { [K_178 in Exclude<keyof I["list_clan_badge_count_req"], "clan_id">]: never; }) | undefined;
|
|
32950
|
+
clan_badge_count?: ({
|
|
32951
|
+
badge_count?: number | undefined;
|
|
32952
|
+
} & {
|
|
32953
|
+
badge_count?: number | undefined;
|
|
32954
|
+
} & { [K_179 in Exclude<keyof I["clan_badge_count"], "badge_count">]: never; }) | undefined;
|
|
32955
|
+
} & { [K_180 in Exclude<keyof I, keyof ListDataSocket>]: never; }>(base?: I | undefined): ListDataSocket;
|
|
32894
32956
|
fromPartial<I_1 extends {
|
|
32895
32957
|
api_name?: string | undefined;
|
|
32896
32958
|
list_clan_req?: {
|
|
@@ -33283,7 +33345,7 @@ export declare const ListDataSocket: {
|
|
|
33283
33345
|
notifications?: {
|
|
33284
33346
|
id?: string | undefined;
|
|
33285
33347
|
subject?: string | undefined;
|
|
33286
|
-
content?:
|
|
33348
|
+
content?: Uint8Array | undefined;
|
|
33287
33349
|
code?: number | undefined;
|
|
33288
33350
|
sender_id?: string | undefined;
|
|
33289
33351
|
create_time?: Date | undefined;
|
|
@@ -33747,6 +33809,12 @@ export declare const ListDataSocket: {
|
|
|
33747
33809
|
unread_msg_indicator?: {
|
|
33748
33810
|
has_unread_message?: boolean | undefined;
|
|
33749
33811
|
} | undefined;
|
|
33812
|
+
list_clan_badge_count_req?: {
|
|
33813
|
+
clan_id?: string | undefined;
|
|
33814
|
+
} | undefined;
|
|
33815
|
+
clan_badge_count?: {
|
|
33816
|
+
badge_count?: number | undefined;
|
|
33817
|
+
} | undefined;
|
|
33750
33818
|
} & {
|
|
33751
33819
|
api_name?: string | undefined;
|
|
33752
33820
|
list_clan_req?: ({
|
|
@@ -33757,7 +33825,7 @@ export declare const ListDataSocket: {
|
|
|
33757
33825
|
limit?: number | undefined;
|
|
33758
33826
|
state?: number | undefined;
|
|
33759
33827
|
cursor?: string | undefined;
|
|
33760
|
-
} & { [
|
|
33828
|
+
} & { [K_181 in Exclude<keyof I_1["list_clan_req"], keyof ListClanDescRequest>]: never; }) | undefined;
|
|
33761
33829
|
clan_desc_list?: ({
|
|
33762
33830
|
clandesc?: {
|
|
33763
33831
|
creator_id?: string | undefined;
|
|
@@ -33837,7 +33905,7 @@ export declare const ListDataSocket: {
|
|
|
33837
33905
|
short_url?: string | undefined;
|
|
33838
33906
|
prevent_anonymous?: boolean | undefined;
|
|
33839
33907
|
has_unread_message?: boolean | undefined;
|
|
33840
|
-
} & { [
|
|
33908
|
+
} & { [K_182 in Exclude<keyof I_1["clan_desc_list"]["clandesc"][number], keyof import("../api/api").ClanDesc>]: never; })[] & { [K_183 in Exclude<keyof I_1["clan_desc_list"]["clandesc"], keyof {
|
|
33841
33909
|
creator_id?: string | undefined;
|
|
33842
33910
|
clan_name?: string | undefined;
|
|
33843
33911
|
logo?: string | undefined;
|
|
@@ -33857,7 +33925,7 @@ export declare const ListDataSocket: {
|
|
|
33857
33925
|
prevent_anonymous?: boolean | undefined;
|
|
33858
33926
|
has_unread_message?: boolean | undefined;
|
|
33859
33927
|
}[]>]: never; }) | undefined;
|
|
33860
|
-
} & { [
|
|
33928
|
+
} & { [K_184 in Exclude<keyof I_1["clan_desc_list"], "clandesc">]: never; }) | undefined;
|
|
33861
33929
|
list_thread_req?: ({
|
|
33862
33930
|
limit?: number | undefined;
|
|
33863
33931
|
state?: number | undefined;
|
|
@@ -33872,7 +33940,7 @@ export declare const ListDataSocket: {
|
|
|
33872
33940
|
channel_id?: string | undefined;
|
|
33873
33941
|
thread_id?: string | undefined;
|
|
33874
33942
|
page?: number | undefined;
|
|
33875
|
-
} & { [
|
|
33943
|
+
} & { [K_185 in Exclude<keyof I_1["list_thread_req"], keyof ListThreadRequest>]: never; }) | undefined;
|
|
33876
33944
|
channel_desc_list?: ({
|
|
33877
33945
|
channeldesc?: {
|
|
33878
33946
|
clan_id?: string | undefined;
|
|
@@ -34036,8 +34104,8 @@ export declare const ListDataSocket: {
|
|
|
34036
34104
|
creator_id?: string | undefined;
|
|
34037
34105
|
channel_label?: string | undefined;
|
|
34038
34106
|
channel_private?: number | undefined;
|
|
34039
|
-
avatars?: (string[] & string[] & { [
|
|
34040
|
-
user_ids?: (string[] & string[] & { [
|
|
34107
|
+
avatars?: (string[] & string[] & { [K_186 in Exclude<keyof I_1["channel_desc_list"]["channeldesc"][number]["avatars"], keyof string[]>]: never; }) | undefined;
|
|
34108
|
+
user_ids?: (string[] & string[] & { [K_187 in Exclude<keyof I_1["channel_desc_list"]["channeldesc"][number]["user_ids"], keyof string[]>]: never; }) | undefined;
|
|
34041
34109
|
last_sent_message?: ({
|
|
34042
34110
|
id?: string | undefined;
|
|
34043
34111
|
timestamp_seconds?: number | undefined;
|
|
@@ -34056,7 +34124,7 @@ export declare const ListDataSocket: {
|
|
|
34056
34124
|
reference?: Uint8Array | undefined;
|
|
34057
34125
|
mention?: Uint8Array | undefined;
|
|
34058
34126
|
reaction?: Uint8Array | undefined;
|
|
34059
|
-
} & { [
|
|
34127
|
+
} & { [K_188 in Exclude<keyof I_1["channel_desc_list"]["channeldesc"][number]["last_sent_message"], keyof ChannelMessageHeader>]: never; }) | undefined;
|
|
34060
34128
|
last_seen_message?: ({
|
|
34061
34129
|
id?: string | undefined;
|
|
34062
34130
|
timestamp_seconds?: number | undefined;
|
|
@@ -34075,17 +34143,17 @@ export declare const ListDataSocket: {
|
|
|
34075
34143
|
reference?: Uint8Array | undefined;
|
|
34076
34144
|
mention?: Uint8Array | undefined;
|
|
34077
34145
|
reaction?: Uint8Array | undefined;
|
|
34078
|
-
} & { [
|
|
34079
|
-
onlines?: (boolean[] & boolean[] & { [
|
|
34146
|
+
} & { [K_189 in Exclude<keyof I_1["channel_desc_list"]["channeldesc"][number]["last_seen_message"], keyof ChannelMessageHeader>]: never; }) | undefined;
|
|
34147
|
+
onlines?: (boolean[] & boolean[] & { [K_190 in Exclude<keyof I_1["channel_desc_list"]["channeldesc"][number]["onlines"], keyof boolean[]>]: never; }) | undefined;
|
|
34080
34148
|
meeting_code?: string | undefined;
|
|
34081
34149
|
count_mess_unread?: number | undefined;
|
|
34082
34150
|
active?: number | undefined;
|
|
34083
34151
|
last_pin_message?: string | undefined;
|
|
34084
|
-
usernames?: (string[] & string[] & { [
|
|
34152
|
+
usernames?: (string[] & string[] & { [K_191 in Exclude<keyof I_1["channel_desc_list"]["channeldesc"][number]["usernames"], keyof string[]>]: never; }) | undefined;
|
|
34085
34153
|
creator_name?: string | undefined;
|
|
34086
34154
|
create_time_seconds?: number | undefined;
|
|
34087
34155
|
update_time_seconds?: number | undefined;
|
|
34088
|
-
display_names?: (string[] & string[] & { [
|
|
34156
|
+
display_names?: (string[] & string[] & { [K_192 in Exclude<keyof I_1["channel_desc_list"]["channeldesc"][number]["display_names"], keyof string[]>]: never; }) | undefined;
|
|
34089
34157
|
channel_avatar?: string | undefined;
|
|
34090
34158
|
clan_name?: string | undefined;
|
|
34091
34159
|
app_id?: string | undefined;
|
|
@@ -34094,7 +34162,7 @@ export declare const ListDataSocket: {
|
|
|
34094
34162
|
topic?: string | undefined;
|
|
34095
34163
|
e2ee?: number | undefined;
|
|
34096
34164
|
member_count?: number | undefined;
|
|
34097
|
-
} & { [
|
|
34165
|
+
} & { [K_193 in Exclude<keyof I_1["channel_desc_list"]["channeldesc"][number], keyof ChannelDescription1>]: never; })[] & { [K_194 in Exclude<keyof I_1["channel_desc_list"]["channeldesc"], keyof {
|
|
34098
34166
|
clan_id?: string | undefined;
|
|
34099
34167
|
parent_id?: string | undefined;
|
|
34100
34168
|
channel_id?: string | undefined;
|
|
@@ -34145,14 +34213,14 @@ export declare const ListDataSocket: {
|
|
|
34145
34213
|
e2ee?: number | undefined;
|
|
34146
34214
|
member_count?: number | undefined;
|
|
34147
34215
|
}[]>]: never; }) | undefined;
|
|
34148
|
-
} & { [
|
|
34216
|
+
} & { [K_195 in Exclude<keyof I_1["channel_desc_list"], "channeldesc">]: never; }) | undefined;
|
|
34149
34217
|
list_channel_users_uc_req?: ({
|
|
34150
34218
|
channel_id?: string | undefined;
|
|
34151
34219
|
limit?: number | undefined;
|
|
34152
34220
|
} & {
|
|
34153
34221
|
channel_id?: string | undefined;
|
|
34154
34222
|
limit?: number | undefined;
|
|
34155
|
-
} & { [
|
|
34223
|
+
} & { [K_196 in Exclude<keyof I_1["list_channel_users_uc_req"], keyof AllUsersAddChannelRequest>]: never; }) | undefined;
|
|
34156
34224
|
channel_users_uc_list?: ({
|
|
34157
34225
|
channel_id?: string | undefined;
|
|
34158
34226
|
user_ids?: string[] | undefined;
|
|
@@ -34163,18 +34231,18 @@ export declare const ListDataSocket: {
|
|
|
34163
34231
|
onlines?: boolean[] | undefined;
|
|
34164
34232
|
} & {
|
|
34165
34233
|
channel_id?: string | undefined;
|
|
34166
|
-
user_ids?: (string[] & string[] & { [
|
|
34234
|
+
user_ids?: (string[] & string[] & { [K_197 in Exclude<keyof I_1["channel_users_uc_list"]["user_ids"], keyof string[]>]: never; }) | undefined;
|
|
34167
34235
|
limit?: number | undefined;
|
|
34168
|
-
usernames?: (string[] & string[] & { [
|
|
34169
|
-
display_names?: (string[] & string[] & { [
|
|
34170
|
-
avatars?: (string[] & string[] & { [
|
|
34171
|
-
onlines?: (boolean[] & boolean[] & { [
|
|
34172
|
-
} & { [
|
|
34236
|
+
usernames?: (string[] & string[] & { [K_198 in Exclude<keyof I_1["channel_users_uc_list"]["usernames"], keyof string[]>]: never; }) | undefined;
|
|
34237
|
+
display_names?: (string[] & string[] & { [K_199 in Exclude<keyof I_1["channel_users_uc_list"]["display_names"], keyof string[]>]: never; }) | undefined;
|
|
34238
|
+
avatars?: (string[] & string[] & { [K_200 in Exclude<keyof I_1["channel_users_uc_list"]["avatars"], keyof string[]>]: never; }) | undefined;
|
|
34239
|
+
onlines?: (boolean[] & boolean[] & { [K_201 in Exclude<keyof I_1["channel_users_uc_list"]["onlines"], keyof boolean[]>]: never; }) | undefined;
|
|
34240
|
+
} & { [K_202 in Exclude<keyof I_1["channel_users_uc_list"], keyof AllUsersAddChannelResponse>]: never; }) | undefined;
|
|
34173
34241
|
list_channel_detail_req?: ({
|
|
34174
34242
|
channel_id?: string | undefined;
|
|
34175
34243
|
} & {
|
|
34176
34244
|
channel_id?: string | undefined;
|
|
34177
|
-
} & { [
|
|
34245
|
+
} & { [K_203 in Exclude<keyof I_1["list_channel_detail_req"], "channel_id">]: never; }) | undefined;
|
|
34178
34246
|
channel_desc?: ({
|
|
34179
34247
|
clan_id?: string | undefined;
|
|
34180
34248
|
parent_id?: string | undefined;
|
|
@@ -34235,8 +34303,8 @@ export declare const ListDataSocket: {
|
|
|
34235
34303
|
creator_id?: string | undefined;
|
|
34236
34304
|
channel_label?: string | undefined;
|
|
34237
34305
|
channel_private?: number | undefined;
|
|
34238
|
-
avatars?: (string[] & string[] & { [
|
|
34239
|
-
user_ids?: (string[] & string[] & { [
|
|
34306
|
+
avatars?: (string[] & string[] & { [K_204 in Exclude<keyof I_1["channel_desc"]["avatars"], keyof string[]>]: never; }) | undefined;
|
|
34307
|
+
user_ids?: (string[] & string[] & { [K_205 in Exclude<keyof I_1["channel_desc"]["user_ids"], keyof string[]>]: never; }) | undefined;
|
|
34240
34308
|
last_sent_message?: ({
|
|
34241
34309
|
id?: string | undefined;
|
|
34242
34310
|
timestamp_seconds?: number | undefined;
|
|
@@ -34255,7 +34323,7 @@ export declare const ListDataSocket: {
|
|
|
34255
34323
|
reference?: Uint8Array | undefined;
|
|
34256
34324
|
mention?: Uint8Array | undefined;
|
|
34257
34325
|
reaction?: Uint8Array | undefined;
|
|
34258
|
-
} & { [
|
|
34326
|
+
} & { [K_206 in Exclude<keyof I_1["channel_desc"]["last_sent_message"], keyof ChannelMessageHeader>]: never; }) | undefined;
|
|
34259
34327
|
last_seen_message?: ({
|
|
34260
34328
|
id?: string | undefined;
|
|
34261
34329
|
timestamp_seconds?: number | undefined;
|
|
@@ -34274,17 +34342,17 @@ export declare const ListDataSocket: {
|
|
|
34274
34342
|
reference?: Uint8Array | undefined;
|
|
34275
34343
|
mention?: Uint8Array | undefined;
|
|
34276
34344
|
reaction?: Uint8Array | undefined;
|
|
34277
|
-
} & { [
|
|
34278
|
-
onlines?: (boolean[] & boolean[] & { [
|
|
34345
|
+
} & { [K_207 in Exclude<keyof I_1["channel_desc"]["last_seen_message"], keyof ChannelMessageHeader>]: never; }) | undefined;
|
|
34346
|
+
onlines?: (boolean[] & boolean[] & { [K_208 in Exclude<keyof I_1["channel_desc"]["onlines"], keyof boolean[]>]: never; }) | undefined;
|
|
34279
34347
|
meeting_code?: string | undefined;
|
|
34280
34348
|
count_mess_unread?: number | undefined;
|
|
34281
34349
|
active?: number | undefined;
|
|
34282
34350
|
last_pin_message?: string | undefined;
|
|
34283
|
-
usernames?: (string[] & string[] & { [
|
|
34351
|
+
usernames?: (string[] & string[] & { [K_209 in Exclude<keyof I_1["channel_desc"]["usernames"], keyof string[]>]: never; }) | undefined;
|
|
34284
34352
|
creator_name?: string | undefined;
|
|
34285
34353
|
create_time_seconds?: number | undefined;
|
|
34286
34354
|
update_time_seconds?: number | undefined;
|
|
34287
|
-
display_names?: (string[] & string[] & { [
|
|
34355
|
+
display_names?: (string[] & string[] & { [K_210 in Exclude<keyof I_1["channel_desc"]["display_names"], keyof string[]>]: never; }) | undefined;
|
|
34288
34356
|
channel_avatar?: string | undefined;
|
|
34289
34357
|
clan_name?: string | undefined;
|
|
34290
34358
|
app_id?: string | undefined;
|
|
@@ -34293,7 +34361,7 @@ export declare const ListDataSocket: {
|
|
|
34293
34361
|
topic?: string | undefined;
|
|
34294
34362
|
e2ee?: number | undefined;
|
|
34295
34363
|
member_count?: number | undefined;
|
|
34296
|
-
} & { [
|
|
34364
|
+
} & { [K_211 in Exclude<keyof I_1["channel_desc"], keyof ChannelDescription1>]: never; }) | undefined;
|
|
34297
34365
|
list_channel_req?: ({
|
|
34298
34366
|
limit?: number | undefined;
|
|
34299
34367
|
state?: number | undefined;
|
|
@@ -34308,7 +34376,7 @@ export declare const ListDataSocket: {
|
|
|
34308
34376
|
clan_id?: string | undefined;
|
|
34309
34377
|
channel_type?: number | undefined;
|
|
34310
34378
|
is_mobile?: boolean | undefined;
|
|
34311
|
-
} & { [
|
|
34379
|
+
} & { [K_212 in Exclude<keyof I_1["list_channel_req"], keyof ListChannelDescsRequest>]: never; }) | undefined;
|
|
34312
34380
|
list_channel_message_req?: ({
|
|
34313
34381
|
clan_id?: string | undefined;
|
|
34314
34382
|
channel_id?: string | undefined;
|
|
@@ -34323,7 +34391,7 @@ export declare const ListDataSocket: {
|
|
|
34323
34391
|
limit?: number | undefined;
|
|
34324
34392
|
direction?: number | undefined;
|
|
34325
34393
|
topic_id?: string | undefined;
|
|
34326
|
-
} & { [
|
|
34394
|
+
} & { [K_213 in Exclude<keyof I_1["list_channel_message_req"], keyof ListChannelMessagesRequest>]: never; }) | undefined;
|
|
34327
34395
|
channel_message_list?: ({
|
|
34328
34396
|
messages?: {
|
|
34329
34397
|
clan_id?: string | undefined;
|
|
@@ -34459,7 +34527,7 @@ export declare const ListDataSocket: {
|
|
|
34459
34527
|
hide_editted?: boolean | undefined;
|
|
34460
34528
|
is_public?: boolean | undefined;
|
|
34461
34529
|
topic_id?: string | undefined;
|
|
34462
|
-
} & { [
|
|
34530
|
+
} & { [K_214 in Exclude<keyof I_1["channel_message_list"]["messages"][number], keyof ChannelMessage>]: never; })[] & { [K_215 in Exclude<keyof I_1["channel_message_list"]["messages"], keyof {
|
|
34463
34531
|
clan_id?: string | undefined;
|
|
34464
34532
|
channel_id?: string | undefined;
|
|
34465
34533
|
message_id?: string | undefined;
|
|
@@ -34506,7 +34574,7 @@ export declare const ListDataSocket: {
|
|
|
34506
34574
|
reference?: Uint8Array | undefined;
|
|
34507
34575
|
mention?: Uint8Array | undefined;
|
|
34508
34576
|
reaction?: Uint8Array | undefined;
|
|
34509
|
-
} & { [
|
|
34577
|
+
} & { [K_216 in Exclude<keyof I_1["channel_message_list"]["last_seen_message"], keyof ChannelMessageHeader>]: never; }) | undefined;
|
|
34510
34578
|
last_sent_message?: ({
|
|
34511
34579
|
id?: string | undefined;
|
|
34512
34580
|
timestamp_seconds?: number | undefined;
|
|
@@ -34525,8 +34593,8 @@ export declare const ListDataSocket: {
|
|
|
34525
34593
|
reference?: Uint8Array | undefined;
|
|
34526
34594
|
mention?: Uint8Array | undefined;
|
|
34527
34595
|
reaction?: Uint8Array | undefined;
|
|
34528
|
-
} & { [
|
|
34529
|
-
} & { [
|
|
34596
|
+
} & { [K_217 in Exclude<keyof I_1["channel_message_list"]["last_sent_message"], keyof ChannelMessageHeader>]: never; }) | undefined;
|
|
34597
|
+
} & { [K_218 in Exclude<keyof I_1["channel_message_list"], keyof ChannelMessageList>]: never; }) | undefined;
|
|
34530
34598
|
list_channel_users_req?: ({
|
|
34531
34599
|
clan_id?: string | undefined;
|
|
34532
34600
|
channel_id?: string | undefined;
|
|
@@ -34541,7 +34609,7 @@ export declare const ListDataSocket: {
|
|
|
34541
34609
|
limit?: number | undefined;
|
|
34542
34610
|
state?: number | undefined;
|
|
34543
34611
|
cursor?: string | undefined;
|
|
34544
|
-
} & { [
|
|
34612
|
+
} & { [K_219 in Exclude<keyof I_1["list_channel_users_req"], keyof ListChannelUsersRequest>]: never; }) | undefined;
|
|
34545
34613
|
voice_user_list?: ({
|
|
34546
34614
|
voice_channel_users?: {
|
|
34547
34615
|
id?: string | undefined;
|
|
@@ -34565,13 +34633,13 @@ export declare const ListDataSocket: {
|
|
|
34565
34633
|
user_id?: string | undefined;
|
|
34566
34634
|
channel_id?: string | undefined;
|
|
34567
34635
|
participant?: string | undefined;
|
|
34568
|
-
} & { [
|
|
34636
|
+
} & { [K_220 in Exclude<keyof I_1["voice_user_list"]["voice_channel_users"][number], keyof import("../api/api").VoiceChannelUser>]: never; })[] & { [K_221 in Exclude<keyof I_1["voice_user_list"]["voice_channel_users"], keyof {
|
|
34569
34637
|
id?: string | undefined;
|
|
34570
34638
|
user_id?: string | undefined;
|
|
34571
34639
|
channel_id?: string | undefined;
|
|
34572
34640
|
participant?: string | undefined;
|
|
34573
34641
|
}[]>]: never; }) | undefined;
|
|
34574
|
-
} & { [
|
|
34642
|
+
} & { [K_222 in Exclude<keyof I_1["voice_user_list"], "voice_channel_users">]: never; }) | undefined;
|
|
34575
34643
|
channel_user_list?: ({
|
|
34576
34644
|
channel_users?: {
|
|
34577
34645
|
user_id?: string | undefined;
|
|
@@ -34612,7 +34680,7 @@ export declare const ListDataSocket: {
|
|
|
34612
34680
|
expired_ban_time?: number | undefined;
|
|
34613
34681
|
} & {
|
|
34614
34682
|
user_id?: string | undefined;
|
|
34615
|
-
role_id?: (string[] & string[] & { [
|
|
34683
|
+
role_id?: (string[] & string[] & { [K_223 in Exclude<keyof I_1["channel_user_list"]["channel_users"][number]["role_id"], keyof string[]>]: never; }) | undefined;
|
|
34616
34684
|
id?: string | undefined;
|
|
34617
34685
|
thread_id?: string | undefined;
|
|
34618
34686
|
clan_nick?: string | undefined;
|
|
@@ -34621,7 +34689,7 @@ export declare const ListDataSocket: {
|
|
|
34621
34689
|
added_by?: string | undefined;
|
|
34622
34690
|
is_banned?: boolean | undefined;
|
|
34623
34691
|
expired_ban_time?: number | undefined;
|
|
34624
|
-
} & { [
|
|
34692
|
+
} & { [K_224 in Exclude<keyof I_1["channel_user_list"]["channel_users"][number], keyof import("../api/api").ChannelUserList_ChannelUser>]: never; })[] & { [K_225 in Exclude<keyof I_1["channel_user_list"]["channel_users"], keyof {
|
|
34625
34693
|
user_id?: string | undefined;
|
|
34626
34694
|
role_id?: string[] | undefined;
|
|
34627
34695
|
id?: string | undefined;
|
|
@@ -34635,7 +34703,7 @@ export declare const ListDataSocket: {
|
|
|
34635
34703
|
}[]>]: never; }) | undefined;
|
|
34636
34704
|
cursor?: string | undefined;
|
|
34637
34705
|
channel_id?: string | undefined;
|
|
34638
|
-
} & { [
|
|
34706
|
+
} & { [K_226 in Exclude<keyof I_1["channel_user_list"], keyof ChannelUserList>]: never; }) | undefined;
|
|
34639
34707
|
list_channel_attachment_req?: ({
|
|
34640
34708
|
clan_id?: string | undefined;
|
|
34641
34709
|
channel_id?: string | undefined;
|
|
@@ -34654,7 +34722,7 @@ export declare const ListDataSocket: {
|
|
|
34654
34722
|
before?: number | undefined;
|
|
34655
34723
|
after?: number | undefined;
|
|
34656
34724
|
around?: number | undefined;
|
|
34657
|
-
} & { [
|
|
34725
|
+
} & { [K_227 in Exclude<keyof I_1["list_channel_attachment_req"], keyof ListChannelAttachmentRequest>]: never; }) | undefined;
|
|
34658
34726
|
channel_attachment_list?: ({
|
|
34659
34727
|
attachments?: {
|
|
34660
34728
|
id?: string | undefined;
|
|
@@ -34702,7 +34770,7 @@ export declare const ListDataSocket: {
|
|
|
34702
34770
|
message_id?: string | undefined;
|
|
34703
34771
|
width?: number | undefined;
|
|
34704
34772
|
height?: number | undefined;
|
|
34705
|
-
} & { [
|
|
34773
|
+
} & { [K_228 in Exclude<keyof I_1["channel_attachment_list"]["attachments"][number], keyof import("../api/api").ChannelAttachment>]: never; })[] & { [K_229 in Exclude<keyof I_1["channel_attachment_list"]["attachments"], keyof {
|
|
34706
34774
|
id?: string | undefined;
|
|
34707
34775
|
filename?: string | undefined;
|
|
34708
34776
|
filetype?: string | undefined;
|
|
@@ -34714,14 +34782,14 @@ export declare const ListDataSocket: {
|
|
|
34714
34782
|
width?: number | undefined;
|
|
34715
34783
|
height?: number | undefined;
|
|
34716
34784
|
}[]>]: never; }) | undefined;
|
|
34717
|
-
} & { [
|
|
34785
|
+
} & { [K_230 in Exclude<keyof I_1["channel_attachment_list"], "attachments">]: never; }) | undefined;
|
|
34718
34786
|
hashtag_dm_req?: ({
|
|
34719
34787
|
user_id?: string[] | undefined;
|
|
34720
34788
|
limit?: number | undefined;
|
|
34721
34789
|
} & {
|
|
34722
|
-
user_id?: (string[] & string[] & { [
|
|
34790
|
+
user_id?: (string[] & string[] & { [K_231 in Exclude<keyof I_1["hashtag_dm_req"]["user_id"], keyof string[]>]: never; }) | undefined;
|
|
34723
34791
|
limit?: number | undefined;
|
|
34724
|
-
} & { [
|
|
34792
|
+
} & { [K_232 in Exclude<keyof I_1["hashtag_dm_req"], keyof HashtagDmListRequest>]: never; }) | undefined;
|
|
34725
34793
|
hashtag_dm_list?: ({
|
|
34726
34794
|
hashtag_dm?: {
|
|
34727
34795
|
channel_id?: string | undefined;
|
|
@@ -34761,7 +34829,7 @@ export declare const ListDataSocket: {
|
|
|
34761
34829
|
type?: number | undefined;
|
|
34762
34830
|
channel_private?: number | undefined;
|
|
34763
34831
|
parent_id?: string | undefined;
|
|
34764
|
-
} & { [
|
|
34832
|
+
} & { [K_233 in Exclude<keyof I_1["hashtag_dm_list"]["hashtag_dm"][number], keyof import("../api/api").HashtagDm>]: never; })[] & { [K_234 in Exclude<keyof I_1["hashtag_dm_list"]["hashtag_dm"], keyof {
|
|
34765
34833
|
channel_id?: string | undefined;
|
|
34766
34834
|
channel_label?: string | undefined;
|
|
34767
34835
|
clan_id?: string | undefined;
|
|
@@ -34771,7 +34839,7 @@ export declare const ListDataSocket: {
|
|
|
34771
34839
|
channel_private?: number | undefined;
|
|
34772
34840
|
parent_id?: string | undefined;
|
|
34773
34841
|
}[]>]: never; }) | undefined;
|
|
34774
|
-
} & { [
|
|
34842
|
+
} & { [K_235 in Exclude<keyof I_1["hashtag_dm_list"], "hashtag_dm">]: never; }) | undefined;
|
|
34775
34843
|
channel_setting_req?: ({
|
|
34776
34844
|
clan_id?: string | undefined;
|
|
34777
34845
|
parent_id?: string | undefined;
|
|
@@ -34794,7 +34862,7 @@ export declare const ListDataSocket: {
|
|
|
34794
34862
|
limit?: number | undefined;
|
|
34795
34863
|
page?: number | undefined;
|
|
34796
34864
|
channel_label?: string | undefined;
|
|
34797
|
-
} & { [
|
|
34865
|
+
} & { [K_236 in Exclude<keyof I_1["channel_setting_req"], keyof ChannelSettingListRequest>]: never; }) | undefined;
|
|
34798
34866
|
channel_setting_list?: ({
|
|
34799
34867
|
clan_id?: string | undefined;
|
|
34800
34868
|
channel_count?: number | undefined;
|
|
@@ -34880,7 +34948,7 @@ export declare const ListDataSocket: {
|
|
|
34880
34948
|
channel_private?: number | undefined;
|
|
34881
34949
|
channel_type?: number | undefined;
|
|
34882
34950
|
active?: number | undefined;
|
|
34883
|
-
user_ids?: (string[] & string[] & { [
|
|
34951
|
+
user_ids?: (string[] & string[] & { [K_237 in Exclude<keyof I_1["channel_setting_list"]["channel_setting_list"][number]["user_ids"], keyof string[]>]: never; }) | undefined;
|
|
34884
34952
|
message_count?: number | undefined;
|
|
34885
34953
|
last_sent_message?: ({
|
|
34886
34954
|
id?: string | undefined;
|
|
@@ -34900,8 +34968,8 @@ export declare const ListDataSocket: {
|
|
|
34900
34968
|
reference?: Uint8Array | undefined;
|
|
34901
34969
|
mention?: Uint8Array | undefined;
|
|
34902
34970
|
reaction?: Uint8Array | undefined;
|
|
34903
|
-
} & { [
|
|
34904
|
-
} & { [
|
|
34971
|
+
} & { [K_238 in Exclude<keyof I_1["channel_setting_list"]["channel_setting_list"][number]["last_sent_message"], keyof ChannelMessageHeader>]: never; }) | undefined;
|
|
34972
|
+
} & { [K_239 in Exclude<keyof I_1["channel_setting_list"]["channel_setting_list"][number], keyof import("../api/api").ChannelSettingItem>]: never; })[] & { [K_240 in Exclude<keyof I_1["channel_setting_list"]["channel_setting_list"], keyof {
|
|
34905
34973
|
id?: string | undefined;
|
|
34906
34974
|
creator_id?: string | undefined;
|
|
34907
34975
|
parent_id?: string | undefined;
|
|
@@ -34924,17 +34992,17 @@ export declare const ListDataSocket: {
|
|
|
34924
34992
|
reaction?: Uint8Array | undefined;
|
|
34925
34993
|
} | undefined;
|
|
34926
34994
|
}[]>]: never; }) | undefined;
|
|
34927
|
-
} & { [
|
|
34995
|
+
} & { [K_241 in Exclude<keyof I_1["channel_setting_list"], keyof ChannelSettingListResponse>]: never; }) | undefined;
|
|
34928
34996
|
favorite_channel_req?: ({
|
|
34929
34997
|
clan_id?: string | undefined;
|
|
34930
34998
|
} & {
|
|
34931
34999
|
clan_id?: string | undefined;
|
|
34932
|
-
} & { [
|
|
35000
|
+
} & { [K_242 in Exclude<keyof I_1["favorite_channel_req"], "clan_id">]: never; }) | undefined;
|
|
34933
35001
|
favorite_channel_list?: ({
|
|
34934
35002
|
channel_ids?: string[] | undefined;
|
|
34935
35003
|
} & {
|
|
34936
|
-
channel_ids?: (string[] & string[] & { [
|
|
34937
|
-
} & { [
|
|
35004
|
+
channel_ids?: (string[] & string[] & { [K_243 in Exclude<keyof I_1["favorite_channel_list"]["channel_ids"], keyof string[]>]: never; }) | undefined;
|
|
35005
|
+
} & { [K_244 in Exclude<keyof I_1["favorite_channel_list"], "channel_ids">]: never; }) | undefined;
|
|
34938
35006
|
search_thread_req?: ({
|
|
34939
35007
|
clan_id?: string | undefined;
|
|
34940
35008
|
channel_id?: string | undefined;
|
|
@@ -34943,12 +35011,12 @@ export declare const ListDataSocket: {
|
|
|
34943
35011
|
clan_id?: string | undefined;
|
|
34944
35012
|
channel_id?: string | undefined;
|
|
34945
35013
|
label?: string | undefined;
|
|
34946
|
-
} & { [
|
|
35014
|
+
} & { [K_245 in Exclude<keyof I_1["search_thread_req"], keyof SearchThreadRequest>]: never; }) | undefined;
|
|
34947
35015
|
notification_channel?: ({
|
|
34948
35016
|
channel_id?: string | undefined;
|
|
34949
35017
|
} & {
|
|
34950
35018
|
channel_id?: string | undefined;
|
|
34951
|
-
} & { [
|
|
35019
|
+
} & { [K_246 in Exclude<keyof I_1["notification_channel"], "channel_id">]: never; }) | undefined;
|
|
34952
35020
|
notificaion_user_channel?: ({
|
|
34953
35021
|
id?: string | undefined;
|
|
34954
35022
|
notification_setting_type?: number | undefined;
|
|
@@ -34961,24 +35029,24 @@ export declare const ListDataSocket: {
|
|
|
34961
35029
|
time_mute?: Date | undefined;
|
|
34962
35030
|
active?: number | undefined;
|
|
34963
35031
|
channel_id?: string | undefined;
|
|
34964
|
-
} & { [
|
|
35032
|
+
} & { [K_247 in Exclude<keyof I_1["notificaion_user_channel"], keyof NotificationUserChannel>]: never; }) | undefined;
|
|
34965
35033
|
notification_category?: ({
|
|
34966
35034
|
category_id?: string | undefined;
|
|
34967
35035
|
} & {
|
|
34968
35036
|
category_id?: string | undefined;
|
|
34969
|
-
} & { [
|
|
35037
|
+
} & { [K_248 in Exclude<keyof I_1["notification_category"], "category_id">]: never; }) | undefined;
|
|
34970
35038
|
notification_clan?: ({
|
|
34971
35039
|
clan_id?: string | undefined;
|
|
34972
35040
|
} & {
|
|
34973
35041
|
clan_id?: string | undefined;
|
|
34974
|
-
} & { [
|
|
35042
|
+
} & { [K_249 in Exclude<keyof I_1["notification_clan"], "clan_id">]: never; }) | undefined;
|
|
34975
35043
|
notification_setting?: ({
|
|
34976
35044
|
id?: string | undefined;
|
|
34977
35045
|
notification_setting_type?: number | undefined;
|
|
34978
35046
|
} & {
|
|
34979
35047
|
id?: string | undefined;
|
|
34980
35048
|
notification_setting_type?: number | undefined;
|
|
34981
|
-
} & { [
|
|
35049
|
+
} & { [K_250 in Exclude<keyof I_1["notification_setting"], keyof NotificationSetting>]: never; }) | undefined;
|
|
34982
35050
|
notification_message?: ({
|
|
34983
35051
|
id?: string | undefined;
|
|
34984
35052
|
user_id?: string | undefined;
|
|
@@ -34987,7 +35055,7 @@ export declare const ListDataSocket: {
|
|
|
34987
35055
|
id?: string | undefined;
|
|
34988
35056
|
user_id?: string | undefined;
|
|
34989
35057
|
channel_id?: string | undefined;
|
|
34990
|
-
} & { [
|
|
35058
|
+
} & { [K_251 in Exclude<keyof I_1["notification_message"], keyof NotifiReactMessage>]: never; }) | undefined;
|
|
34991
35059
|
noti_channel_cat_setting_list?: ({
|
|
34992
35060
|
notification_channel_category_settings_list?: {
|
|
34993
35061
|
id?: string | undefined;
|
|
@@ -35015,14 +35083,14 @@ export declare const ListDataSocket: {
|
|
|
35015
35083
|
notification_setting_type?: number | undefined;
|
|
35016
35084
|
channel_category_title?: string | undefined;
|
|
35017
35085
|
action?: number | undefined;
|
|
35018
|
-
} & { [
|
|
35086
|
+
} & { [K_252 in Exclude<keyof I_1["noti_channel_cat_setting_list"]["notification_channel_category_settings_list"][number], keyof import("../api/api").NotificationChannelCategorySetting>]: never; })[] & { [K_253 in Exclude<keyof I_1["noti_channel_cat_setting_list"]["notification_channel_category_settings_list"], keyof {
|
|
35019
35087
|
id?: string | undefined;
|
|
35020
35088
|
channel_category_label?: string | undefined;
|
|
35021
35089
|
notification_setting_type?: number | undefined;
|
|
35022
35090
|
channel_category_title?: string | undefined;
|
|
35023
35091
|
action?: number | undefined;
|
|
35024
35092
|
}[]>]: never; }) | undefined;
|
|
35025
|
-
} & { [
|
|
35093
|
+
} & { [K_254 in Exclude<keyof I_1["noti_channel_cat_setting_list"], "notification_channel_category_settings_list">]: never; }) | undefined;
|
|
35026
35094
|
list_notification_req?: ({
|
|
35027
35095
|
limit?: number | undefined;
|
|
35028
35096
|
clan_id?: string | undefined;
|
|
@@ -35035,12 +35103,12 @@ export declare const ListDataSocket: {
|
|
|
35035
35103
|
notification_id?: string | undefined;
|
|
35036
35104
|
category?: number | undefined;
|
|
35037
35105
|
direction?: number | undefined;
|
|
35038
|
-
} & { [
|
|
35106
|
+
} & { [K_255 in Exclude<keyof I_1["list_notification_req"], keyof ListNotificationsRequest>]: never; }) | undefined;
|
|
35039
35107
|
notification_list?: ({
|
|
35040
35108
|
notifications?: {
|
|
35041
35109
|
id?: string | undefined;
|
|
35042
35110
|
subject?: string | undefined;
|
|
35043
|
-
content?:
|
|
35111
|
+
content?: Uint8Array | undefined;
|
|
35044
35112
|
code?: number | undefined;
|
|
35045
35113
|
sender_id?: string | undefined;
|
|
35046
35114
|
create_time?: Date | undefined;
|
|
@@ -35108,7 +35176,7 @@ export declare const ListDataSocket: {
|
|
|
35108
35176
|
notifications?: ({
|
|
35109
35177
|
id?: string | undefined;
|
|
35110
35178
|
subject?: string | undefined;
|
|
35111
|
-
content?:
|
|
35179
|
+
content?: Uint8Array | undefined;
|
|
35112
35180
|
code?: number | undefined;
|
|
35113
35181
|
sender_id?: string | undefined;
|
|
35114
35182
|
create_time?: Date | undefined;
|
|
@@ -35173,7 +35241,7 @@ export declare const ListDataSocket: {
|
|
|
35173
35241
|
}[] & ({
|
|
35174
35242
|
id?: string | undefined;
|
|
35175
35243
|
subject?: string | undefined;
|
|
35176
|
-
content?:
|
|
35244
|
+
content?: Uint8Array | undefined;
|
|
35177
35245
|
code?: number | undefined;
|
|
35178
35246
|
sender_id?: string | undefined;
|
|
35179
35247
|
create_time?: Date | undefined;
|
|
@@ -35238,7 +35306,7 @@ export declare const ListDataSocket: {
|
|
|
35238
35306
|
} & {
|
|
35239
35307
|
id?: string | undefined;
|
|
35240
35308
|
subject?: string | undefined;
|
|
35241
|
-
content?:
|
|
35309
|
+
content?: Uint8Array | undefined;
|
|
35242
35310
|
code?: number | undefined;
|
|
35243
35311
|
sender_id?: string | undefined;
|
|
35244
35312
|
create_time?: Date | undefined;
|
|
@@ -35307,8 +35375,8 @@ export declare const ListDataSocket: {
|
|
|
35307
35375
|
creator_id?: string | undefined;
|
|
35308
35376
|
channel_label?: string | undefined;
|
|
35309
35377
|
channel_private?: number | undefined;
|
|
35310
|
-
avatars?: (string[] & string[] & { [
|
|
35311
|
-
user_ids?: (string[] & string[] & { [
|
|
35378
|
+
avatars?: (string[] & string[] & { [K_256 in Exclude<keyof I_1["notification_list"]["notifications"][number]["channel"]["avatars"], keyof string[]>]: never; }) | undefined;
|
|
35379
|
+
user_ids?: (string[] & string[] & { [K_257 in Exclude<keyof I_1["notification_list"]["notifications"][number]["channel"]["user_ids"], keyof string[]>]: never; }) | undefined;
|
|
35312
35380
|
last_sent_message?: ({
|
|
35313
35381
|
id?: string | undefined;
|
|
35314
35382
|
timestamp_seconds?: number | undefined;
|
|
@@ -35327,7 +35395,7 @@ export declare const ListDataSocket: {
|
|
|
35327
35395
|
reference?: Uint8Array | undefined;
|
|
35328
35396
|
mention?: Uint8Array | undefined;
|
|
35329
35397
|
reaction?: Uint8Array | undefined;
|
|
35330
|
-
} & { [
|
|
35398
|
+
} & { [K_258 in Exclude<keyof I_1["notification_list"]["notifications"][number]["channel"]["last_sent_message"], keyof ChannelMessageHeader>]: never; }) | undefined;
|
|
35331
35399
|
last_seen_message?: ({
|
|
35332
35400
|
id?: string | undefined;
|
|
35333
35401
|
timestamp_seconds?: number | undefined;
|
|
@@ -35346,17 +35414,17 @@ export declare const ListDataSocket: {
|
|
|
35346
35414
|
reference?: Uint8Array | undefined;
|
|
35347
35415
|
mention?: Uint8Array | undefined;
|
|
35348
35416
|
reaction?: Uint8Array | undefined;
|
|
35349
|
-
} & { [
|
|
35350
|
-
onlines?: (boolean[] & boolean[] & { [
|
|
35417
|
+
} & { [K_259 in Exclude<keyof I_1["notification_list"]["notifications"][number]["channel"]["last_seen_message"], keyof ChannelMessageHeader>]: never; }) | undefined;
|
|
35418
|
+
onlines?: (boolean[] & boolean[] & { [K_260 in Exclude<keyof I_1["notification_list"]["notifications"][number]["channel"]["onlines"], keyof boolean[]>]: never; }) | undefined;
|
|
35351
35419
|
meeting_code?: string | undefined;
|
|
35352
35420
|
count_mess_unread?: number | undefined;
|
|
35353
35421
|
active?: number | undefined;
|
|
35354
35422
|
last_pin_message?: string | undefined;
|
|
35355
|
-
usernames?: (string[] & string[] & { [
|
|
35423
|
+
usernames?: (string[] & string[] & { [K_261 in Exclude<keyof I_1["notification_list"]["notifications"][number]["channel"]["usernames"], keyof string[]>]: never; }) | undefined;
|
|
35356
35424
|
creator_name?: string | undefined;
|
|
35357
35425
|
create_time_seconds?: number | undefined;
|
|
35358
35426
|
update_time_seconds?: number | undefined;
|
|
35359
|
-
display_names?: (string[] & string[] & { [
|
|
35427
|
+
display_names?: (string[] & string[] & { [K_262 in Exclude<keyof I_1["notification_list"]["notifications"][number]["channel"]["display_names"], keyof string[]>]: never; }) | undefined;
|
|
35360
35428
|
channel_avatar?: string | undefined;
|
|
35361
35429
|
clan_name?: string | undefined;
|
|
35362
35430
|
app_id?: string | undefined;
|
|
@@ -35365,13 +35433,13 @@ export declare const ListDataSocket: {
|
|
|
35365
35433
|
topic?: string | undefined;
|
|
35366
35434
|
e2ee?: number | undefined;
|
|
35367
35435
|
member_count?: number | undefined;
|
|
35368
|
-
} & { [
|
|
35436
|
+
} & { [K_263 in Exclude<keyof I_1["notification_list"]["notifications"][number]["channel"], keyof ChannelDescription1>]: never; }) | undefined;
|
|
35369
35437
|
topic_id?: string | undefined;
|
|
35370
35438
|
category?: number | undefined;
|
|
35371
|
-
} & { [
|
|
35439
|
+
} & { [K_264 in Exclude<keyof I_1["notification_list"]["notifications"][number], keyof Notification>]: never; })[] & { [K_265 in Exclude<keyof I_1["notification_list"]["notifications"], keyof {
|
|
35372
35440
|
id?: string | undefined;
|
|
35373
35441
|
subject?: string | undefined;
|
|
35374
|
-
content?:
|
|
35442
|
+
content?: Uint8Array | undefined;
|
|
35375
35443
|
code?: number | undefined;
|
|
35376
35444
|
sender_id?: string | undefined;
|
|
35377
35445
|
create_time?: Date | undefined;
|
|
@@ -35435,7 +35503,7 @@ export declare const ListDataSocket: {
|
|
|
35435
35503
|
category?: number | undefined;
|
|
35436
35504
|
}[]>]: never; }) | undefined;
|
|
35437
35505
|
cacheable_cursor?: string | undefined;
|
|
35438
|
-
} & { [
|
|
35506
|
+
} & { [K_266 in Exclude<keyof I_1["notification_list"], keyof NotificationList>]: never; }) | undefined;
|
|
35439
35507
|
sticker_list?: ({
|
|
35440
35508
|
stickers?: {
|
|
35441
35509
|
id?: string | undefined;
|
|
@@ -35487,7 +35555,7 @@ export declare const ListDataSocket: {
|
|
|
35487
35555
|
clan_name?: string | undefined;
|
|
35488
35556
|
media_type?: number | undefined;
|
|
35489
35557
|
is_for_sale?: boolean | undefined;
|
|
35490
|
-
} & { [
|
|
35558
|
+
} & { [K_267 in Exclude<keyof I_1["sticker_list"]["stickers"][number], keyof import("../api/api").ClanSticker>]: never; })[] & { [K_268 in Exclude<keyof I_1["sticker_list"]["stickers"], keyof {
|
|
35491
35559
|
id?: string | undefined;
|
|
35492
35560
|
source?: string | undefined;
|
|
35493
35561
|
shortname?: string | undefined;
|
|
@@ -35500,7 +35568,7 @@ export declare const ListDataSocket: {
|
|
|
35500
35568
|
media_type?: number | undefined;
|
|
35501
35569
|
is_for_sale?: boolean | undefined;
|
|
35502
35570
|
}[]>]: never; }) | undefined;
|
|
35503
|
-
} & { [
|
|
35571
|
+
} & { [K_269 in Exclude<keyof I_1["sticker_list"], "stickers">]: never; }) | undefined;
|
|
35504
35572
|
emoji_recent_list?: ({
|
|
35505
35573
|
emoji_recents?: {
|
|
35506
35574
|
emoji_recents_id?: string | undefined;
|
|
@@ -35520,17 +35588,17 @@ export declare const ListDataSocket: {
|
|
|
35520
35588
|
emoji_recents_id?: string | undefined;
|
|
35521
35589
|
emoji_id?: string | undefined;
|
|
35522
35590
|
update_time?: Date | undefined;
|
|
35523
|
-
} & { [
|
|
35591
|
+
} & { [K_270 in Exclude<keyof I_1["emoji_recent_list"]["emoji_recents"][number], keyof import("../api/api").EmojiRecent>]: never; })[] & { [K_271 in Exclude<keyof I_1["emoji_recent_list"]["emoji_recents"], keyof {
|
|
35524
35592
|
emoji_recents_id?: string | undefined;
|
|
35525
35593
|
emoji_id?: string | undefined;
|
|
35526
35594
|
update_time?: Date | undefined;
|
|
35527
35595
|
}[]>]: never; }) | undefined;
|
|
35528
|
-
} & { [
|
|
35596
|
+
} & { [K_272 in Exclude<keyof I_1["emoji_recent_list"], "emoji_recents">]: never; }) | undefined;
|
|
35529
35597
|
clan_webhook_req?: ({
|
|
35530
35598
|
clan_id?: string | undefined;
|
|
35531
35599
|
} & {
|
|
35532
35600
|
clan_id?: string | undefined;
|
|
35533
|
-
} & { [
|
|
35601
|
+
} & { [K_273 in Exclude<keyof I_1["clan_webhook_req"], "clan_id">]: never; }) | undefined;
|
|
35534
35602
|
clan_webhook_list?: ({
|
|
35535
35603
|
list_clan_webhooks?: {
|
|
35536
35604
|
id?: string | undefined;
|
|
@@ -35574,7 +35642,7 @@ export declare const ListDataSocket: {
|
|
|
35574
35642
|
avatar?: string | undefined;
|
|
35575
35643
|
create_time?: string | undefined;
|
|
35576
35644
|
update_time?: string | undefined;
|
|
35577
|
-
} & { [
|
|
35645
|
+
} & { [K_274 in Exclude<keyof I_1["clan_webhook_list"]["list_clan_webhooks"][number], keyof import("../api/api").ClanWebhook>]: never; })[] & { [K_275 in Exclude<keyof I_1["clan_webhook_list"]["list_clan_webhooks"], keyof {
|
|
35578
35646
|
id?: string | undefined;
|
|
35579
35647
|
webhook_name?: string | undefined;
|
|
35580
35648
|
clan_id?: string | undefined;
|
|
@@ -35585,14 +35653,14 @@ export declare const ListDataSocket: {
|
|
|
35585
35653
|
create_time?: string | undefined;
|
|
35586
35654
|
update_time?: string | undefined;
|
|
35587
35655
|
}[]>]: never; }) | undefined;
|
|
35588
|
-
} & { [
|
|
35656
|
+
} & { [K_276 in Exclude<keyof I_1["clan_webhook_list"], "list_clan_webhooks">]: never; }) | undefined;
|
|
35589
35657
|
webhook_list_req?: ({
|
|
35590
35658
|
channel_id?: string | undefined;
|
|
35591
35659
|
clan_id?: string | undefined;
|
|
35592
35660
|
} & {
|
|
35593
35661
|
channel_id?: string | undefined;
|
|
35594
35662
|
clan_id?: string | undefined;
|
|
35595
|
-
} & { [
|
|
35663
|
+
} & { [K_277 in Exclude<keyof I_1["webhook_list_req"], keyof WebhookListRequest>]: never; }) | undefined;
|
|
35596
35664
|
webhook_list?: ({
|
|
35597
35665
|
webhooks?: {
|
|
35598
35666
|
id?: string | undefined;
|
|
@@ -35644,7 +35712,7 @@ export declare const ListDataSocket: {
|
|
|
35644
35712
|
avatar?: string | undefined;
|
|
35645
35713
|
status?: number | undefined;
|
|
35646
35714
|
clan_id?: string | undefined;
|
|
35647
|
-
} & { [
|
|
35715
|
+
} & { [K_278 in Exclude<keyof I_1["webhook_list"]["webhooks"][number], keyof Webhook>]: never; })[] & { [K_279 in Exclude<keyof I_1["webhook_list"]["webhooks"], keyof {
|
|
35648
35716
|
id?: string | undefined;
|
|
35649
35717
|
webhook_name?: string | undefined;
|
|
35650
35718
|
channel_id?: string | undefined;
|
|
@@ -35657,12 +35725,12 @@ export declare const ListDataSocket: {
|
|
|
35657
35725
|
status?: number | undefined;
|
|
35658
35726
|
clan_id?: string | undefined;
|
|
35659
35727
|
}[]>]: never; }) | undefined;
|
|
35660
|
-
} & { [
|
|
35728
|
+
} & { [K_280 in Exclude<keyof I_1["webhook_list"], "webhooks">]: never; }) | undefined;
|
|
35661
35729
|
permission_list_req?: ({
|
|
35662
35730
|
role_id?: string | undefined;
|
|
35663
35731
|
} & {
|
|
35664
35732
|
role_id?: string | undefined;
|
|
35665
|
-
} & { [
|
|
35733
|
+
} & { [K_281 in Exclude<keyof I_1["permission_list_req"], "role_id">]: never; }) | undefined;
|
|
35666
35734
|
permission_list?: ({
|
|
35667
35735
|
permissions?: {
|
|
35668
35736
|
id?: string | undefined;
|
|
@@ -35699,7 +35767,7 @@ export declare const ListDataSocket: {
|
|
|
35699
35767
|
active?: number | undefined;
|
|
35700
35768
|
scope?: number | undefined;
|
|
35701
35769
|
level?: number | undefined;
|
|
35702
|
-
} & { [
|
|
35770
|
+
} & { [K_282 in Exclude<keyof I_1["permission_list"]["permissions"][number], keyof import("../api/api").Permission>]: never; })[] & { [K_283 in Exclude<keyof I_1["permission_list"]["permissions"], keyof {
|
|
35703
35771
|
id?: string | undefined;
|
|
35704
35772
|
title?: string | undefined;
|
|
35705
35773
|
slug?: string | undefined;
|
|
@@ -35709,7 +35777,7 @@ export declare const ListDataSocket: {
|
|
|
35709
35777
|
level?: number | undefined;
|
|
35710
35778
|
}[]>]: never; }) | undefined;
|
|
35711
35779
|
max_level_permission?: number | undefined;
|
|
35712
|
-
} & { [
|
|
35780
|
+
} & { [K_284 in Exclude<keyof I_1["permission_list"], keyof PermissionList>]: never; }) | undefined;
|
|
35713
35781
|
role_user_req?: ({
|
|
35714
35782
|
role_id?: string | undefined;
|
|
35715
35783
|
limit?: number | undefined;
|
|
@@ -35718,7 +35786,7 @@ export declare const ListDataSocket: {
|
|
|
35718
35786
|
role_id?: string | undefined;
|
|
35719
35787
|
limit?: number | undefined;
|
|
35720
35788
|
cursor?: string | undefined;
|
|
35721
|
-
} & { [
|
|
35789
|
+
} & { [K_285 in Exclude<keyof I_1["role_user_req"], keyof ListRoleUsersRequest>]: never; }) | undefined;
|
|
35722
35790
|
role_user_list?: ({
|
|
35723
35791
|
role_users?: {
|
|
35724
35792
|
id?: string | undefined;
|
|
@@ -35755,7 +35823,7 @@ export declare const ListDataSocket: {
|
|
|
35755
35823
|
lang_tag?: string | undefined;
|
|
35756
35824
|
location?: string | undefined;
|
|
35757
35825
|
online?: boolean | undefined;
|
|
35758
|
-
} & { [
|
|
35826
|
+
} & { [K_286 in Exclude<keyof I_1["role_user_list"]["role_users"][number], keyof import("../api/api").RoleUserList_RoleUser>]: never; })[] & { [K_287 in Exclude<keyof I_1["role_user_list"]["role_users"], keyof {
|
|
35759
35827
|
id?: string | undefined;
|
|
35760
35828
|
username?: string | undefined;
|
|
35761
35829
|
display_name?: string | undefined;
|
|
@@ -35765,14 +35833,14 @@ export declare const ListDataSocket: {
|
|
|
35765
35833
|
online?: boolean | undefined;
|
|
35766
35834
|
}[]>]: never; }) | undefined;
|
|
35767
35835
|
cursor?: string | undefined;
|
|
35768
|
-
} & { [
|
|
35836
|
+
} & { [K_288 in Exclude<keyof I_1["role_user_list"], keyof RoleUserList>]: never; }) | undefined;
|
|
35769
35837
|
permission_user_req?: ({
|
|
35770
35838
|
clan_id?: string | undefined;
|
|
35771
35839
|
channel_id?: string | undefined;
|
|
35772
35840
|
} & {
|
|
35773
35841
|
clan_id?: string | undefined;
|
|
35774
35842
|
channel_id?: string | undefined;
|
|
35775
|
-
} & { [
|
|
35843
|
+
} & { [K_289 in Exclude<keyof I_1["permission_user_req"], keyof ListPermissionOfUsersRequest>]: never; }) | undefined;
|
|
35776
35844
|
role_list?: ({
|
|
35777
35845
|
roles?: {
|
|
35778
35846
|
id?: string | undefined;
|
|
@@ -35945,7 +36013,7 @@ export declare const ListDataSocket: {
|
|
|
35945
36013
|
lang_tag?: string | undefined;
|
|
35946
36014
|
location?: string | undefined;
|
|
35947
36015
|
online?: boolean | undefined;
|
|
35948
|
-
} & { [
|
|
36016
|
+
} & { [K_290 in Exclude<keyof I_1["role_list"]["roles"][number]["role_user_list"]["role_users"][number], keyof import("../api/api").RoleUserList_RoleUser>]: never; })[] & { [K_291 in Exclude<keyof I_1["role_list"]["roles"][number]["role_user_list"]["role_users"], keyof {
|
|
35949
36017
|
id?: string | undefined;
|
|
35950
36018
|
username?: string | undefined;
|
|
35951
36019
|
display_name?: string | undefined;
|
|
@@ -35955,7 +36023,7 @@ export declare const ListDataSocket: {
|
|
|
35955
36023
|
online?: boolean | undefined;
|
|
35956
36024
|
}[]>]: never; }) | undefined;
|
|
35957
36025
|
cursor?: string | undefined;
|
|
35958
|
-
} & { [
|
|
36026
|
+
} & { [K_292 in Exclude<keyof I_1["role_list"]["roles"][number]["role_user_list"], keyof RoleUserList>]: never; }) | undefined;
|
|
35959
36027
|
permission_list?: ({
|
|
35960
36028
|
permissions?: {
|
|
35961
36029
|
id?: string | undefined;
|
|
@@ -35992,7 +36060,7 @@ export declare const ListDataSocket: {
|
|
|
35992
36060
|
active?: number | undefined;
|
|
35993
36061
|
scope?: number | undefined;
|
|
35994
36062
|
level?: number | undefined;
|
|
35995
|
-
} & { [
|
|
36063
|
+
} & { [K_293 in Exclude<keyof I_1["role_list"]["roles"][number]["permission_list"]["permissions"][number], keyof import("../api/api").Permission>]: never; })[] & { [K_294 in Exclude<keyof I_1["role_list"]["roles"][number]["permission_list"]["permissions"], keyof {
|
|
35996
36064
|
id?: string | undefined;
|
|
35997
36065
|
title?: string | undefined;
|
|
35998
36066
|
slug?: string | undefined;
|
|
@@ -36002,12 +36070,12 @@ export declare const ListDataSocket: {
|
|
|
36002
36070
|
level?: number | undefined;
|
|
36003
36071
|
}[]>]: never; }) | undefined;
|
|
36004
36072
|
max_level_permission?: number | undefined;
|
|
36005
|
-
} & { [
|
|
36073
|
+
} & { [K_295 in Exclude<keyof I_1["role_list"]["roles"][number]["permission_list"], keyof PermissionList>]: never; }) | undefined;
|
|
36006
36074
|
role_channel_active?: number | undefined;
|
|
36007
|
-
channel_ids?: (string[] & string[] & { [
|
|
36075
|
+
channel_ids?: (string[] & string[] & { [K_296 in Exclude<keyof I_1["role_list"]["roles"][number]["channel_ids"], keyof string[]>]: never; }) | undefined;
|
|
36008
36076
|
max_level_permission?: number | undefined;
|
|
36009
36077
|
order_role?: number | undefined;
|
|
36010
|
-
} & { [
|
|
36078
|
+
} & { [K_297 in Exclude<keyof I_1["role_list"]["roles"][number], keyof Role>]: never; })[] & { [K_298 in Exclude<keyof I_1["role_list"]["roles"], keyof {
|
|
36011
36079
|
id?: string | undefined;
|
|
36012
36080
|
title?: string | undefined;
|
|
36013
36081
|
color?: string | undefined;
|
|
@@ -36049,7 +36117,7 @@ export declare const ListDataSocket: {
|
|
|
36049
36117
|
order_role?: number | undefined;
|
|
36050
36118
|
}[]>]: never; }) | undefined;
|
|
36051
36119
|
max_level_permission?: number | undefined;
|
|
36052
|
-
} & { [
|
|
36120
|
+
} & { [K_299 in Exclude<keyof I_1["role_list"], keyof RoleList>]: never; }) | undefined;
|
|
36053
36121
|
role_list_event_req?: ({
|
|
36054
36122
|
clan_id?: string | undefined;
|
|
36055
36123
|
limit?: number | undefined;
|
|
@@ -36060,7 +36128,7 @@ export declare const ListDataSocket: {
|
|
|
36060
36128
|
limit?: number | undefined;
|
|
36061
36129
|
state?: number | undefined;
|
|
36062
36130
|
cursor?: string | undefined;
|
|
36063
|
-
} & { [
|
|
36131
|
+
} & { [K_300 in Exclude<keyof I_1["role_list_event_req"], keyof RoleListEventRequest>]: never; }) | undefined;
|
|
36064
36132
|
role_event_list?: ({
|
|
36065
36133
|
limit?: number | undefined;
|
|
36066
36134
|
state?: number | undefined;
|
|
@@ -36287,7 +36355,7 @@ export declare const ListDataSocket: {
|
|
|
36287
36355
|
lang_tag?: string | undefined;
|
|
36288
36356
|
location?: string | undefined;
|
|
36289
36357
|
online?: boolean | undefined;
|
|
36290
|
-
} & { [
|
|
36358
|
+
} & { [K_301 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_302 in Exclude<keyof I_1["role_event_list"]["roles"]["roles"][number]["role_user_list"]["role_users"], keyof {
|
|
36291
36359
|
id?: string | undefined;
|
|
36292
36360
|
username?: string | undefined;
|
|
36293
36361
|
display_name?: string | undefined;
|
|
@@ -36297,7 +36365,7 @@ export declare const ListDataSocket: {
|
|
|
36297
36365
|
online?: boolean | undefined;
|
|
36298
36366
|
}[]>]: never; }) | undefined;
|
|
36299
36367
|
cursor?: string | undefined;
|
|
36300
|
-
} & { [
|
|
36368
|
+
} & { [K_303 in Exclude<keyof I_1["role_event_list"]["roles"]["roles"][number]["role_user_list"], keyof RoleUserList>]: never; }) | undefined;
|
|
36301
36369
|
permission_list?: ({
|
|
36302
36370
|
permissions?: {
|
|
36303
36371
|
id?: string | undefined;
|
|
@@ -36334,7 +36402,7 @@ export declare const ListDataSocket: {
|
|
|
36334
36402
|
active?: number | undefined;
|
|
36335
36403
|
scope?: number | undefined;
|
|
36336
36404
|
level?: number | undefined;
|
|
36337
|
-
} & { [
|
|
36405
|
+
} & { [K_304 in Exclude<keyof I_1["role_event_list"]["roles"]["roles"][number]["permission_list"]["permissions"][number], keyof import("../api/api").Permission>]: never; })[] & { [K_305 in Exclude<keyof I_1["role_event_list"]["roles"]["roles"][number]["permission_list"]["permissions"], keyof {
|
|
36338
36406
|
id?: string | undefined;
|
|
36339
36407
|
title?: string | undefined;
|
|
36340
36408
|
slug?: string | undefined;
|
|
@@ -36344,12 +36412,12 @@ export declare const ListDataSocket: {
|
|
|
36344
36412
|
level?: number | undefined;
|
|
36345
36413
|
}[]>]: never; }) | undefined;
|
|
36346
36414
|
max_level_permission?: number | undefined;
|
|
36347
|
-
} & { [
|
|
36415
|
+
} & { [K_306 in Exclude<keyof I_1["role_event_list"]["roles"]["roles"][number]["permission_list"], keyof PermissionList>]: never; }) | undefined;
|
|
36348
36416
|
role_channel_active?: number | undefined;
|
|
36349
|
-
channel_ids?: (string[] & string[] & { [
|
|
36417
|
+
channel_ids?: (string[] & string[] & { [K_307 in Exclude<keyof I_1["role_event_list"]["roles"]["roles"][number]["channel_ids"], keyof string[]>]: never; }) | undefined;
|
|
36350
36418
|
max_level_permission?: number | undefined;
|
|
36351
36419
|
order_role?: number | undefined;
|
|
36352
|
-
} & { [
|
|
36420
|
+
} & { [K_308 in Exclude<keyof I_1["role_event_list"]["roles"]["roles"][number], keyof Role>]: never; })[] & { [K_309 in Exclude<keyof I_1["role_event_list"]["roles"]["roles"], keyof {
|
|
36353
36421
|
id?: string | undefined;
|
|
36354
36422
|
title?: string | undefined;
|
|
36355
36423
|
color?: string | undefined;
|
|
@@ -36391,15 +36459,15 @@ export declare const ListDataSocket: {
|
|
|
36391
36459
|
order_role?: number | undefined;
|
|
36392
36460
|
}[]>]: never; }) | undefined;
|
|
36393
36461
|
max_level_permission?: number | undefined;
|
|
36394
|
-
} & { [
|
|
36395
|
-
} & { [
|
|
36462
|
+
} & { [K_310 in Exclude<keyof I_1["role_event_list"]["roles"], keyof RoleList>]: never; }) | undefined;
|
|
36463
|
+
} & { [K_311 in Exclude<keyof I_1["role_event_list"], keyof RoleListEventResponse>]: never; }) | undefined;
|
|
36396
36464
|
user_permission_req?: ({
|
|
36397
36465
|
clan_id?: string | undefined;
|
|
36398
36466
|
channel_id?: string | undefined;
|
|
36399
36467
|
} & {
|
|
36400
36468
|
clan_id?: string | undefined;
|
|
36401
36469
|
channel_id?: string | undefined;
|
|
36402
|
-
} & { [
|
|
36470
|
+
} & { [K_312 in Exclude<keyof I_1["user_permission_req"], keyof UserPermissionInChannelListRequest>]: never; }) | undefined;
|
|
36403
36471
|
user_permission_list?: ({
|
|
36404
36472
|
clan_id?: string | undefined;
|
|
36405
36473
|
channel_id?: string | undefined;
|
|
@@ -36454,7 +36522,7 @@ export declare const ListDataSocket: {
|
|
|
36454
36522
|
active?: number | undefined;
|
|
36455
36523
|
scope?: number | undefined;
|
|
36456
36524
|
level?: number | undefined;
|
|
36457
|
-
} & { [
|
|
36525
|
+
} & { [K_313 in Exclude<keyof I_1["user_permission_list"]["permissions"]["permissions"][number], keyof import("../api/api").Permission>]: never; })[] & { [K_314 in Exclude<keyof I_1["user_permission_list"]["permissions"]["permissions"], keyof {
|
|
36458
36526
|
id?: string | undefined;
|
|
36459
36527
|
title?: string | undefined;
|
|
36460
36528
|
slug?: string | undefined;
|
|
@@ -36464,8 +36532,8 @@ export declare const ListDataSocket: {
|
|
|
36464
36532
|
level?: number | undefined;
|
|
36465
36533
|
}[]>]: never; }) | undefined;
|
|
36466
36534
|
max_level_permission?: number | undefined;
|
|
36467
|
-
} & { [
|
|
36468
|
-
} & { [
|
|
36535
|
+
} & { [K_315 in Exclude<keyof I_1["user_permission_list"]["permissions"], keyof PermissionList>]: never; }) | undefined;
|
|
36536
|
+
} & { [K_316 in Exclude<keyof I_1["user_permission_list"], keyof UserPermissionInChannelListResponse>]: never; }) | undefined;
|
|
36469
36537
|
permission_role_req?: ({
|
|
36470
36538
|
role_id?: string | undefined;
|
|
36471
36539
|
channel_id?: string | undefined;
|
|
@@ -36474,7 +36542,7 @@ export declare const ListDataSocket: {
|
|
|
36474
36542
|
role_id?: string | undefined;
|
|
36475
36543
|
channel_id?: string | undefined;
|
|
36476
36544
|
user_id?: string | undefined;
|
|
36477
|
-
} & { [
|
|
36545
|
+
} & { [K_317 in Exclude<keyof I_1["permission_role_req"], keyof PermissionRoleChannelListEventRequest>]: never; }) | undefined;
|
|
36478
36546
|
permission_role_list?: ({
|
|
36479
36547
|
role_id?: string | undefined;
|
|
36480
36548
|
channel_id?: string | undefined;
|
|
@@ -36496,11 +36564,11 @@ export declare const ListDataSocket: {
|
|
|
36496
36564
|
} & {
|
|
36497
36565
|
permission_id?: string | undefined;
|
|
36498
36566
|
active?: boolean | undefined;
|
|
36499
|
-
} & { [
|
|
36567
|
+
} & { [K_318 in Exclude<keyof I_1["permission_role_list"]["permission_role_channel"][number], keyof import("../api/api").PermissionRoleChannel>]: never; })[] & { [K_319 in Exclude<keyof I_1["permission_role_list"]["permission_role_channel"], keyof {
|
|
36500
36568
|
permission_id?: string | undefined;
|
|
36501
36569
|
active?: boolean | undefined;
|
|
36502
36570
|
}[]>]: never; }) | undefined;
|
|
36503
|
-
} & { [
|
|
36571
|
+
} & { [K_320 in Exclude<keyof I_1["permission_role_list"], keyof PermissionRoleChannelListEventResponse>]: never; }) | undefined;
|
|
36504
36572
|
emoji_list?: ({
|
|
36505
36573
|
emoji_list?: {
|
|
36506
36574
|
id?: string | undefined;
|
|
@@ -36544,7 +36612,7 @@ export declare const ListDataSocket: {
|
|
|
36544
36612
|
logo?: string | undefined;
|
|
36545
36613
|
clan_name?: string | undefined;
|
|
36546
36614
|
is_for_sale?: boolean | undefined;
|
|
36547
|
-
} & { [
|
|
36615
|
+
} & { [K_321 in Exclude<keyof I_1["emoji_list"]["emoji_list"][number], keyof import("../api/api").ClanEmoji>]: never; })[] & { [K_322 in Exclude<keyof I_1["emoji_list"]["emoji_list"], keyof {
|
|
36548
36616
|
id?: string | undefined;
|
|
36549
36617
|
src?: string | undefined;
|
|
36550
36618
|
shortname?: string | undefined;
|
|
@@ -36555,7 +36623,7 @@ export declare const ListDataSocket: {
|
|
|
36555
36623
|
clan_name?: string | undefined;
|
|
36556
36624
|
is_for_sale?: boolean | undefined;
|
|
36557
36625
|
}[]>]: never; }) | undefined;
|
|
36558
|
-
} & { [
|
|
36626
|
+
} & { [K_323 in Exclude<keyof I_1["emoji_list"], "emoji_list">]: never; }) | undefined;
|
|
36559
36627
|
list_friend_req?: ({
|
|
36560
36628
|
limit?: number | undefined;
|
|
36561
36629
|
state?: number | undefined;
|
|
@@ -36564,7 +36632,7 @@ export declare const ListDataSocket: {
|
|
|
36564
36632
|
limit?: number | undefined;
|
|
36565
36633
|
state?: number | undefined;
|
|
36566
36634
|
cursor?: string | undefined;
|
|
36567
|
-
} & { [
|
|
36635
|
+
} & { [K_324 in Exclude<keyof I_1["list_friend_req"], keyof ListFriendsRequest>]: never; }) | undefined;
|
|
36568
36636
|
friend_list?: ({
|
|
36569
36637
|
friends?: {
|
|
36570
36638
|
user?: {
|
|
@@ -36688,13 +36756,13 @@ export declare const ListDataSocket: {
|
|
|
36688
36756
|
is_mobile?: boolean | undefined;
|
|
36689
36757
|
dob?: Date | undefined;
|
|
36690
36758
|
mezon_id?: string | undefined;
|
|
36691
|
-
list_nick_names?: (string[] & string[] & { [
|
|
36759
|
+
list_nick_names?: (string[] & string[] & { [K_325 in Exclude<keyof I_1["friend_list"]["friends"][number]["user"]["list_nick_names"], keyof string[]>]: never; }) | undefined;
|
|
36692
36760
|
status?: string | undefined;
|
|
36693
|
-
} & { [
|
|
36761
|
+
} & { [K_326 in Exclude<keyof I_1["friend_list"]["friends"][number]["user"], keyof import("../api/api").User>]: never; }) | undefined;
|
|
36694
36762
|
state?: number | undefined;
|
|
36695
36763
|
update_time?: Date | undefined;
|
|
36696
36764
|
source_id?: string | undefined;
|
|
36697
|
-
} & { [
|
|
36765
|
+
} & { [K_327 in Exclude<keyof I_1["friend_list"]["friends"][number], keyof import("../api/api").Friend>]: never; })[] & { [K_328 in Exclude<keyof I_1["friend_list"]["friends"], keyof {
|
|
36698
36766
|
user?: {
|
|
36699
36767
|
id?: string | undefined;
|
|
36700
36768
|
username?: string | undefined;
|
|
@@ -36722,12 +36790,12 @@ export declare const ListDataSocket: {
|
|
|
36722
36790
|
source_id?: string | undefined;
|
|
36723
36791
|
}[]>]: never; }) | undefined;
|
|
36724
36792
|
cursor?: string | undefined;
|
|
36725
|
-
} & { [
|
|
36793
|
+
} & { [K_329 in Exclude<keyof I_1["friend_list"], keyof FriendList>]: never; }) | undefined;
|
|
36726
36794
|
list_apps_req?: ({
|
|
36727
36795
|
clan_id?: string | undefined;
|
|
36728
36796
|
} & {
|
|
36729
36797
|
clan_id?: string | undefined;
|
|
36730
|
-
} & { [
|
|
36798
|
+
} & { [K_330 in Exclude<keyof I_1["list_apps_req"], "clan_id">]: never; }) | undefined;
|
|
36731
36799
|
channel_apps_list?: ({
|
|
36732
36800
|
channel_apps?: {
|
|
36733
36801
|
id?: string | undefined;
|
|
@@ -36763,7 +36831,7 @@ export declare const ListDataSocket: {
|
|
|
36763
36831
|
app_url?: string | undefined;
|
|
36764
36832
|
app_name?: string | undefined;
|
|
36765
36833
|
app_logo?: string | undefined;
|
|
36766
|
-
} & { [
|
|
36834
|
+
} & { [K_331 in Exclude<keyof I_1["channel_apps_list"]["channel_apps"][number], keyof import("../api/api").ChannelAppResponse>]: never; })[] & { [K_332 in Exclude<keyof I_1["channel_apps_list"]["channel_apps"], keyof {
|
|
36767
36835
|
id?: string | undefined;
|
|
36768
36836
|
clan_id?: string | undefined;
|
|
36769
36837
|
channel_id?: string | undefined;
|
|
@@ -36772,7 +36840,7 @@ export declare const ListDataSocket: {
|
|
|
36772
36840
|
app_name?: string | undefined;
|
|
36773
36841
|
app_logo?: string | undefined;
|
|
36774
36842
|
}[]>]: never; }) | undefined;
|
|
36775
|
-
} & { [
|
|
36843
|
+
} & { [K_333 in Exclude<keyof I_1["channel_apps_list"], "channel_apps">]: never; }) | undefined;
|
|
36776
36844
|
user_activity_list?: ({
|
|
36777
36845
|
activities?: {
|
|
36778
36846
|
user_id?: string | undefined;
|
|
@@ -36812,7 +36880,7 @@ export declare const ListDataSocket: {
|
|
|
36812
36880
|
end_time?: Date | undefined;
|
|
36813
36881
|
application_id?: string | undefined;
|
|
36814
36882
|
status?: number | undefined;
|
|
36815
|
-
} & { [
|
|
36883
|
+
} & { [K_334 in Exclude<keyof I_1["user_activity_list"]["activities"][number], keyof UserActivity>]: never; })[] & { [K_335 in Exclude<keyof I_1["user_activity_list"]["activities"], keyof {
|
|
36816
36884
|
user_id?: string | undefined;
|
|
36817
36885
|
activity_name?: string | undefined;
|
|
36818
36886
|
activity_type?: number | undefined;
|
|
@@ -36822,12 +36890,12 @@ export declare const ListDataSocket: {
|
|
|
36822
36890
|
application_id?: string | undefined;
|
|
36823
36891
|
status?: number | undefined;
|
|
36824
36892
|
}[]>]: never; }) | undefined;
|
|
36825
|
-
} & { [
|
|
36893
|
+
} & { [K_336 in Exclude<keyof I_1["user_activity_list"], "activities">]: never; }) | undefined;
|
|
36826
36894
|
list_clan_user_req?: ({
|
|
36827
36895
|
clan_id?: string | undefined;
|
|
36828
36896
|
} & {
|
|
36829
36897
|
clan_id?: string | undefined;
|
|
36830
|
-
} & { [
|
|
36898
|
+
} & { [K_337 in Exclude<keyof I_1["list_clan_user_req"], "clan_id">]: never; }) | undefined;
|
|
36831
36899
|
clan_user_list?: ({
|
|
36832
36900
|
clan_users?: {
|
|
36833
36901
|
user?: {
|
|
@@ -36955,14 +37023,14 @@ export declare const ListDataSocket: {
|
|
|
36955
37023
|
is_mobile?: boolean | undefined;
|
|
36956
37024
|
dob?: Date | undefined;
|
|
36957
37025
|
mezon_id?: string | undefined;
|
|
36958
|
-
list_nick_names?: (string[] & string[] & { [
|
|
37026
|
+
list_nick_names?: (string[] & string[] & { [K_338 in Exclude<keyof I_1["clan_user_list"]["clan_users"][number]["user"]["list_nick_names"], keyof string[]>]: never; }) | undefined;
|
|
36959
37027
|
status?: string | undefined;
|
|
36960
|
-
} & { [
|
|
36961
|
-
role_id?: (string[] & string[] & { [
|
|
37028
|
+
} & { [K_339 in Exclude<keyof I_1["clan_user_list"]["clan_users"][number]["user"], keyof import("../api/api").User>]: never; }) | undefined;
|
|
37029
|
+
role_id?: (string[] & string[] & { [K_340 in Exclude<keyof I_1["clan_user_list"]["clan_users"][number]["role_id"], keyof string[]>]: never; }) | undefined;
|
|
36962
37030
|
clan_nick?: string | undefined;
|
|
36963
37031
|
clan_avatar?: string | undefined;
|
|
36964
37032
|
clan_id?: string | undefined;
|
|
36965
|
-
} & { [
|
|
37033
|
+
} & { [K_341 in Exclude<keyof I_1["clan_user_list"]["clan_users"][number], keyof import("../api/api").ClanUserList_ClanUser>]: never; })[] & { [K_342 in Exclude<keyof I_1["clan_user_list"]["clan_users"], keyof {
|
|
36966
37034
|
user?: {
|
|
36967
37035
|
id?: string | undefined;
|
|
36968
37036
|
username?: string | undefined;
|
|
@@ -36992,12 +37060,12 @@ export declare const ListDataSocket: {
|
|
|
36992
37060
|
}[]>]: never; }) | undefined;
|
|
36993
37061
|
cursor?: string | undefined;
|
|
36994
37062
|
clan_id?: string | undefined;
|
|
36995
|
-
} & { [
|
|
37063
|
+
} & { [K_343 in Exclude<keyof I_1["clan_user_list"], keyof ClanUserList>]: never; }) | undefined;
|
|
36996
37064
|
list_event_req?: ({
|
|
36997
37065
|
clan_id?: string | undefined;
|
|
36998
37066
|
} & {
|
|
36999
37067
|
clan_id?: string | undefined;
|
|
37000
|
-
} & { [
|
|
37068
|
+
} & { [K_344 in Exclude<keyof I_1["list_event_req"], "clan_id">]: never; }) | undefined;
|
|
37001
37069
|
event_list?: ({
|
|
37002
37070
|
events?: {
|
|
37003
37071
|
id?: string | undefined;
|
|
@@ -37095,7 +37163,7 @@ export declare const ListDataSocket: {
|
|
|
37095
37163
|
address?: string | undefined;
|
|
37096
37164
|
start_time?: Date | undefined;
|
|
37097
37165
|
end_time?: Date | undefined;
|
|
37098
|
-
user_ids?: (string[] & string[] & { [
|
|
37166
|
+
user_ids?: (string[] & string[] & { [K_345 in Exclude<keyof I_1["event_list"]["events"][number]["user_ids"], keyof string[]>]: never; }) | undefined;
|
|
37099
37167
|
create_time?: Date | undefined;
|
|
37100
37168
|
max_permission?: number | undefined;
|
|
37101
37169
|
channel_id?: string | undefined;
|
|
@@ -37114,8 +37182,8 @@ export declare const ListDataSocket: {
|
|
|
37114
37182
|
external_link?: string | undefined;
|
|
37115
37183
|
creator_id?: string | undefined;
|
|
37116
37184
|
event_id?: string | undefined;
|
|
37117
|
-
} & { [
|
|
37118
|
-
} & { [
|
|
37185
|
+
} & { [K_346 in Exclude<keyof I_1["event_list"]["events"][number]["meet_room"], keyof import("../api/api").GenerateMezonMeetResponse>]: never; }) | undefined;
|
|
37186
|
+
} & { [K_347 in Exclude<keyof I_1["event_list"]["events"][number], keyof import("../api/api").EventManagement>]: never; })[] & { [K_348 in Exclude<keyof I_1["event_list"]["events"], keyof {
|
|
37119
37187
|
id?: string | undefined;
|
|
37120
37188
|
title?: string | undefined;
|
|
37121
37189
|
logo?: string | undefined;
|
|
@@ -37143,7 +37211,7 @@ export declare const ListDataSocket: {
|
|
|
37143
37211
|
event_id?: string | undefined;
|
|
37144
37212
|
} | undefined;
|
|
37145
37213
|
}[]>]: never; }) | undefined;
|
|
37146
|
-
} & { [
|
|
37214
|
+
} & { [K_349 in Exclude<keyof I_1["event_list"], "events">]: never; }) | undefined;
|
|
37147
37215
|
list_category_req?: ({
|
|
37148
37216
|
creator_id?: string | undefined;
|
|
37149
37217
|
clan_id?: string | undefined;
|
|
@@ -37156,7 +37224,7 @@ export declare const ListDataSocket: {
|
|
|
37156
37224
|
category_name?: string | undefined;
|
|
37157
37225
|
category_id?: string | undefined;
|
|
37158
37226
|
category_order?: number | undefined;
|
|
37159
|
-
} & { [
|
|
37227
|
+
} & { [K_350 in Exclude<keyof I_1["list_category_req"], keyof CategoryDesc>]: never; }) | undefined;
|
|
37160
37228
|
category_list?: ({
|
|
37161
37229
|
categorydesc?: {
|
|
37162
37230
|
creator_id?: string | undefined;
|
|
@@ -37184,14 +37252,14 @@ export declare const ListDataSocket: {
|
|
|
37184
37252
|
category_name?: string | undefined;
|
|
37185
37253
|
category_id?: string | undefined;
|
|
37186
37254
|
category_order?: number | undefined;
|
|
37187
|
-
} & { [
|
|
37255
|
+
} & { [K_351 in Exclude<keyof I_1["category_list"]["categorydesc"][number], keyof CategoryDesc>]: never; })[] & { [K_352 in Exclude<keyof I_1["category_list"]["categorydesc"], keyof {
|
|
37188
37256
|
creator_id?: string | undefined;
|
|
37189
37257
|
clan_id?: string | undefined;
|
|
37190
37258
|
category_name?: string | undefined;
|
|
37191
37259
|
category_id?: string | undefined;
|
|
37192
37260
|
category_order?: number | undefined;
|
|
37193
37261
|
}[]>]: never; }) | undefined;
|
|
37194
|
-
} & { [
|
|
37262
|
+
} & { [K_353 in Exclude<keyof I_1["category_list"], "categorydesc">]: never; }) | undefined;
|
|
37195
37263
|
stream_user_list?: ({
|
|
37196
37264
|
streaming_channel_users?: {
|
|
37197
37265
|
id?: string | undefined;
|
|
@@ -37215,24 +37283,34 @@ export declare const ListDataSocket: {
|
|
|
37215
37283
|
user_id?: string | undefined;
|
|
37216
37284
|
channel_id?: string | undefined;
|
|
37217
37285
|
participant?: string | undefined;
|
|
37218
|
-
} & { [
|
|
37286
|
+
} & { [K_354 in Exclude<keyof I_1["stream_user_list"]["streaming_channel_users"][number], keyof import("../api/api").StreamingChannelUser>]: never; })[] & { [K_355 in Exclude<keyof I_1["stream_user_list"]["streaming_channel_users"], keyof {
|
|
37219
37287
|
id?: string | undefined;
|
|
37220
37288
|
user_id?: string | undefined;
|
|
37221
37289
|
channel_id?: string | undefined;
|
|
37222
37290
|
participant?: string | undefined;
|
|
37223
37291
|
}[]>]: never; }) | undefined;
|
|
37224
|
-
} & { [
|
|
37292
|
+
} & { [K_356 in Exclude<keyof I_1["stream_user_list"], "streaming_channel_users">]: never; }) | undefined;
|
|
37225
37293
|
list_unread_msg_indicator_req?: ({
|
|
37226
37294
|
clan_id?: string | undefined;
|
|
37227
37295
|
} & {
|
|
37228
37296
|
clan_id?: string | undefined;
|
|
37229
|
-
} & { [
|
|
37297
|
+
} & { [K_357 in Exclude<keyof I_1["list_unread_msg_indicator_req"], "clan_id">]: never; }) | undefined;
|
|
37230
37298
|
unread_msg_indicator?: ({
|
|
37231
37299
|
has_unread_message?: boolean | undefined;
|
|
37232
37300
|
} & {
|
|
37233
37301
|
has_unread_message?: boolean | undefined;
|
|
37234
|
-
} & { [
|
|
37235
|
-
|
|
37302
|
+
} & { [K_358 in Exclude<keyof I_1["unread_msg_indicator"], "has_unread_message">]: never; }) | undefined;
|
|
37303
|
+
list_clan_badge_count_req?: ({
|
|
37304
|
+
clan_id?: string | undefined;
|
|
37305
|
+
} & {
|
|
37306
|
+
clan_id?: string | undefined;
|
|
37307
|
+
} & { [K_359 in Exclude<keyof I_1["list_clan_badge_count_req"], "clan_id">]: never; }) | undefined;
|
|
37308
|
+
clan_badge_count?: ({
|
|
37309
|
+
badge_count?: number | undefined;
|
|
37310
|
+
} & {
|
|
37311
|
+
badge_count?: number | undefined;
|
|
37312
|
+
} & { [K_360 in Exclude<keyof I_1["clan_badge_count"], "badge_count">]: never; }) | undefined;
|
|
37313
|
+
} & { [K_361 in Exclude<keyof I_1, keyof ListDataSocket>]: never; }>(object: I_1): ListDataSocket;
|
|
37236
37314
|
};
|
|
37237
37315
|
export declare const MeetParticipantEvent: {
|
|
37238
37316
|
encode(message: MeetParticipantEvent, writer?: _m0.Writer): _m0.Writer;
|
|
@@ -37339,7 +37417,7 @@ export declare const FcmDataPayload: {
|
|
|
37339
37417
|
command_type?: number | undefined;
|
|
37340
37418
|
receiver_id?: string | undefined;
|
|
37341
37419
|
title?: string | undefined;
|
|
37342
|
-
body?:
|
|
37420
|
+
body?: Uint8Array | undefined;
|
|
37343
37421
|
user_role_ids?: string[] | undefined;
|
|
37344
37422
|
user_sent_ids?: string[] | undefined;
|
|
37345
37423
|
priority?: number | undefined;
|
|
@@ -37411,7 +37489,7 @@ export declare const FcmDataPayload: {
|
|
|
37411
37489
|
command_type?: number | undefined;
|
|
37412
37490
|
receiver_id?: string | undefined;
|
|
37413
37491
|
title?: string | undefined;
|
|
37414
|
-
body?:
|
|
37492
|
+
body?: Uint8Array | undefined;
|
|
37415
37493
|
user_role_ids?: (string[] & string[] & { [K in Exclude<keyof I["user_role_ids"], keyof string[]>]: never; }) | undefined;
|
|
37416
37494
|
user_sent_ids?: (string[] & string[] & { [K_1 in Exclude<keyof I["user_sent_ids"], keyof string[]>]: never; }) | undefined;
|
|
37417
37495
|
priority?: number | undefined;
|
|
@@ -37599,7 +37677,7 @@ export declare const FcmDataPayload: {
|
|
|
37599
37677
|
command_type?: number | undefined;
|
|
37600
37678
|
receiver_id?: string | undefined;
|
|
37601
37679
|
title?: string | undefined;
|
|
37602
|
-
body?:
|
|
37680
|
+
body?: Uint8Array | undefined;
|
|
37603
37681
|
user_role_ids?: string[] | undefined;
|
|
37604
37682
|
user_sent_ids?: string[] | undefined;
|
|
37605
37683
|
priority?: number | undefined;
|
|
@@ -37671,7 +37749,7 @@ export declare const FcmDataPayload: {
|
|
|
37671
37749
|
command_type?: number | undefined;
|
|
37672
37750
|
receiver_id?: string | undefined;
|
|
37673
37751
|
title?: string | undefined;
|
|
37674
|
-
body?:
|
|
37752
|
+
body?: Uint8Array | undefined;
|
|
37675
37753
|
user_role_ids?: (string[] & string[] & { [K_10 in Exclude<keyof I_1["user_role_ids"], keyof string[]>]: never; }) | undefined;
|
|
37676
37754
|
user_sent_ids?: (string[] & string[] & { [K_11 in Exclude<keyof I_1["user_sent_ids"], keyof string[]>]: never; }) | undefined;
|
|
37677
37755
|
priority?: number | undefined;
|