mezon-js-protobuf 1.8.49 → 1.8.50
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 +144 -1
- package/dist/mezon-js-protobuf/api/api.d.ts +55 -0
- package/dist/mezon-js-protobuf/rtapi/realtime.d.ts +416 -331
- package/dist/mezon-js-protobuf.cjs.js +126 -5
- package/dist/mezon-js-protobuf.esm.mjs +126 -5
- package/package.json +1 -1
- package/rtapi/realtime.ts +118 -1
|
@@ -178,9 +178,16 @@ export interface Envelope {
|
|
|
178
178
|
transfer_ownership_event?: TransferOwnershipEvent | undefined;
|
|
179
179
|
/** Add friend event */
|
|
180
180
|
add_friend?: AddFriend | undefined;
|
|
181
|
+
/** Ban channel user */
|
|
182
|
+
ban_user_event?: BannedUserEvent | undefined;
|
|
181
183
|
}
|
|
182
184
|
export interface FollowEvent {
|
|
183
185
|
}
|
|
186
|
+
export interface BannedUserEvent {
|
|
187
|
+
user_ids: string[];
|
|
188
|
+
action: number;
|
|
189
|
+
banner_id: string;
|
|
190
|
+
}
|
|
184
191
|
export interface ChannelCanvas {
|
|
185
192
|
/** id */
|
|
186
193
|
id: string;
|
|
@@ -2627,6 +2634,7 @@ export declare const Envelope: {
|
|
|
2627
2634
|
clan_avatar?: string | undefined;
|
|
2628
2635
|
clan_id?: string | undefined;
|
|
2629
2636
|
added_by?: string | undefined;
|
|
2637
|
+
is_banned?: boolean | undefined;
|
|
2630
2638
|
}[] | undefined;
|
|
2631
2639
|
cursor?: string | undefined;
|
|
2632
2640
|
channel_id?: string | undefined;
|
|
@@ -3309,6 +3317,11 @@ export declare const Envelope: {
|
|
|
3309
3317
|
display_name?: string | undefined;
|
|
3310
3318
|
avatar?: string | undefined;
|
|
3311
3319
|
} | undefined;
|
|
3320
|
+
ban_user_event?: {
|
|
3321
|
+
user_ids?: string[] | undefined;
|
|
3322
|
+
action?: number | undefined;
|
|
3323
|
+
banner_id?: string | undefined;
|
|
3324
|
+
} | undefined;
|
|
3312
3325
|
} & {
|
|
3313
3326
|
cid?: string | undefined;
|
|
3314
3327
|
channel?: ({
|
|
@@ -6810,6 +6823,7 @@ export declare const Envelope: {
|
|
|
6810
6823
|
clan_avatar?: string | undefined;
|
|
6811
6824
|
clan_id?: string | undefined;
|
|
6812
6825
|
added_by?: string | undefined;
|
|
6826
|
+
is_banned?: boolean | undefined;
|
|
6813
6827
|
}[] | undefined;
|
|
6814
6828
|
cursor?: string | undefined;
|
|
6815
6829
|
channel_id?: string | undefined;
|
|
@@ -8286,6 +8300,7 @@ export declare const Envelope: {
|
|
|
8286
8300
|
clan_avatar?: string | undefined;
|
|
8287
8301
|
clan_id?: string | undefined;
|
|
8288
8302
|
added_by?: string | undefined;
|
|
8303
|
+
is_banned?: boolean | undefined;
|
|
8289
8304
|
}[] | undefined;
|
|
8290
8305
|
cursor?: string | undefined;
|
|
8291
8306
|
channel_id?: string | undefined;
|
|
@@ -8299,6 +8314,7 @@ export declare const Envelope: {
|
|
|
8299
8314
|
clan_avatar?: string | undefined;
|
|
8300
8315
|
clan_id?: string | undefined;
|
|
8301
8316
|
added_by?: string | undefined;
|
|
8317
|
+
is_banned?: boolean | undefined;
|
|
8302
8318
|
}[] & ({
|
|
8303
8319
|
user_id?: string | undefined;
|
|
8304
8320
|
role_id?: string[] | undefined;
|
|
@@ -8308,6 +8324,7 @@ export declare const Envelope: {
|
|
|
8308
8324
|
clan_avatar?: string | undefined;
|
|
8309
8325
|
clan_id?: string | undefined;
|
|
8310
8326
|
added_by?: string | undefined;
|
|
8327
|
+
is_banned?: boolean | undefined;
|
|
8311
8328
|
} & {
|
|
8312
8329
|
user_id?: string | undefined;
|
|
8313
8330
|
role_id?: (string[] & string[] & { [K_240 in Exclude<keyof I["list_data_socket"]["channel_user_list"]["channel_users"][number]["role_id"], keyof string[]>]: never; }) | undefined;
|
|
@@ -8317,6 +8334,7 @@ export declare const Envelope: {
|
|
|
8317
8334
|
clan_avatar?: string | undefined;
|
|
8318
8335
|
clan_id?: string | undefined;
|
|
8319
8336
|
added_by?: string | undefined;
|
|
8337
|
+
is_banned?: boolean | undefined;
|
|
8320
8338
|
} & { [K_241 in Exclude<keyof I["list_data_socket"]["channel_user_list"]["channel_users"][number], keyof import("../api/api").ChannelUserList_ChannelUser>]: never; })[] & { [K_242 in Exclude<keyof I["list_data_socket"]["channel_user_list"]["channel_users"], keyof {
|
|
8321
8339
|
user_id?: string | undefined;
|
|
8322
8340
|
role_id?: string[] | undefined;
|
|
@@ -8326,6 +8344,7 @@ export declare const Envelope: {
|
|
|
8326
8344
|
clan_avatar?: string | undefined;
|
|
8327
8345
|
clan_id?: string | undefined;
|
|
8328
8346
|
added_by?: string | undefined;
|
|
8347
|
+
is_banned?: boolean | undefined;
|
|
8329
8348
|
}[]>]: never; }) | undefined;
|
|
8330
8349
|
cursor?: string | undefined;
|
|
8331
8350
|
channel_id?: string | undefined;
|
|
@@ -11212,7 +11231,16 @@ export declare const Envelope: {
|
|
|
11212
11231
|
display_name?: string | undefined;
|
|
11213
11232
|
avatar?: string | undefined;
|
|
11214
11233
|
} & { [K_391 in Exclude<keyof I["add_friend"], keyof AddFriend>]: never; }) | undefined;
|
|
11215
|
-
|
|
11234
|
+
ban_user_event?: ({
|
|
11235
|
+
user_ids?: string[] | undefined;
|
|
11236
|
+
action?: number | undefined;
|
|
11237
|
+
banner_id?: string | undefined;
|
|
11238
|
+
} & {
|
|
11239
|
+
user_ids?: (string[] & string[] & { [K_392 in Exclude<keyof I["ban_user_event"]["user_ids"], keyof string[]>]: never; }) | undefined;
|
|
11240
|
+
action?: number | undefined;
|
|
11241
|
+
banner_id?: string | undefined;
|
|
11242
|
+
} & { [K_393 in Exclude<keyof I["ban_user_event"], keyof BannedUserEvent>]: never; }) | undefined;
|
|
11243
|
+
} & { [K_394 in Exclude<keyof I, keyof Envelope>]: never; }>(base?: I | undefined): Envelope;
|
|
11216
11244
|
fromPartial<I_1 extends {
|
|
11217
11245
|
cid?: string | undefined;
|
|
11218
11246
|
channel?: {
|
|
@@ -12545,6 +12573,7 @@ export declare const Envelope: {
|
|
|
12545
12573
|
clan_avatar?: string | undefined;
|
|
12546
12574
|
clan_id?: string | undefined;
|
|
12547
12575
|
added_by?: string | undefined;
|
|
12576
|
+
is_banned?: boolean | undefined;
|
|
12548
12577
|
}[] | undefined;
|
|
12549
12578
|
cursor?: string | undefined;
|
|
12550
12579
|
channel_id?: string | undefined;
|
|
@@ -13227,6 +13256,11 @@ export declare const Envelope: {
|
|
|
13227
13256
|
display_name?: string | undefined;
|
|
13228
13257
|
avatar?: string | undefined;
|
|
13229
13258
|
} | undefined;
|
|
13259
|
+
ban_user_event?: {
|
|
13260
|
+
user_ids?: string[] | undefined;
|
|
13261
|
+
action?: number | undefined;
|
|
13262
|
+
banner_id?: string | undefined;
|
|
13263
|
+
} | undefined;
|
|
13230
13264
|
} & {
|
|
13231
13265
|
cid?: string | undefined;
|
|
13232
13266
|
channel?: ({
|
|
@@ -13273,7 +13307,7 @@ export declare const Envelope: {
|
|
|
13273
13307
|
status?: string | undefined;
|
|
13274
13308
|
is_mobile?: boolean | undefined;
|
|
13275
13309
|
user_status?: string | undefined;
|
|
13276
|
-
} & { [
|
|
13310
|
+
} & { [K_395 in Exclude<keyof I_1["channel"]["presences"][number], keyof UserPresence>]: never; })[] & { [K_396 in Exclude<keyof I_1["channel"]["presences"], keyof {
|
|
13277
13311
|
user_id?: string | undefined;
|
|
13278
13312
|
session_id?: string | undefined;
|
|
13279
13313
|
username?: string | undefined;
|
|
@@ -13295,16 +13329,16 @@ export declare const Envelope: {
|
|
|
13295
13329
|
status?: string | undefined;
|
|
13296
13330
|
is_mobile?: boolean | undefined;
|
|
13297
13331
|
user_status?: string | undefined;
|
|
13298
|
-
} & { [
|
|
13332
|
+
} & { [K_397 in Exclude<keyof I_1["channel"]["self"], keyof UserPresence>]: never; }) | undefined;
|
|
13299
13333
|
chanel_label?: string | undefined;
|
|
13300
13334
|
clan_logo?: string | undefined;
|
|
13301
13335
|
category_name?: string | undefined;
|
|
13302
|
-
} & { [
|
|
13336
|
+
} & { [K_398 in Exclude<keyof I_1["channel"], keyof Channel>]: never; }) | undefined;
|
|
13303
13337
|
clan_join?: ({
|
|
13304
13338
|
clan_id?: string | undefined;
|
|
13305
13339
|
} & {
|
|
13306
13340
|
clan_id?: string | undefined;
|
|
13307
|
-
} & { [
|
|
13341
|
+
} & { [K_399 in Exclude<keyof I_1["clan_join"], "clan_id">]: never; }) | undefined;
|
|
13308
13342
|
channel_join?: ({
|
|
13309
13343
|
clan_id?: string | undefined;
|
|
13310
13344
|
channel_id?: string | undefined;
|
|
@@ -13315,7 +13349,7 @@ export declare const Envelope: {
|
|
|
13315
13349
|
channel_id?: string | undefined;
|
|
13316
13350
|
channel_type?: number | undefined;
|
|
13317
13351
|
is_public?: boolean | undefined;
|
|
13318
|
-
} & { [
|
|
13352
|
+
} & { [K_400 in Exclude<keyof I_1["channel_join"], keyof ChannelJoin>]: never; }) | undefined;
|
|
13319
13353
|
channel_leave?: ({
|
|
13320
13354
|
clan_id?: string | undefined;
|
|
13321
13355
|
channel_id?: string | undefined;
|
|
@@ -13326,7 +13360,7 @@ export declare const Envelope: {
|
|
|
13326
13360
|
channel_id?: string | undefined;
|
|
13327
13361
|
channel_type?: number | undefined;
|
|
13328
13362
|
is_public?: boolean | undefined;
|
|
13329
|
-
} & { [
|
|
13363
|
+
} & { [K_401 in Exclude<keyof I_1["channel_leave"], keyof ChannelLeave>]: never; }) | undefined;
|
|
13330
13364
|
channel_message?: ({
|
|
13331
13365
|
clan_id?: string | undefined;
|
|
13332
13366
|
channel_id?: string | undefined;
|
|
@@ -13383,7 +13417,7 @@ export declare const Envelope: {
|
|
|
13383
13417
|
hide_editted?: boolean | undefined;
|
|
13384
13418
|
is_public?: boolean | undefined;
|
|
13385
13419
|
topic_id?: string | undefined;
|
|
13386
|
-
} & { [
|
|
13420
|
+
} & { [K_402 in Exclude<keyof I_1["channel_message"], keyof ChannelMessage>]: never; }) | undefined;
|
|
13387
13421
|
channel_message_ack?: ({
|
|
13388
13422
|
channel_id?: string | undefined;
|
|
13389
13423
|
message_id?: string | undefined;
|
|
@@ -13404,7 +13438,7 @@ export declare const Envelope: {
|
|
|
13404
13438
|
persistent?: boolean | undefined;
|
|
13405
13439
|
clan_logo?: string | undefined;
|
|
13406
13440
|
category_name?: string | undefined;
|
|
13407
|
-
} & { [
|
|
13441
|
+
} & { [K_403 in Exclude<keyof I_1["channel_message_ack"], keyof ChannelMessageAck>]: never; }) | undefined;
|
|
13408
13442
|
channel_message_send?: ({
|
|
13409
13443
|
clan_id?: string | undefined;
|
|
13410
13444
|
channel_id?: string | undefined;
|
|
@@ -13478,7 +13512,7 @@ export declare const Envelope: {
|
|
|
13478
13512
|
create_time?: Date | undefined;
|
|
13479
13513
|
s?: number | undefined;
|
|
13480
13514
|
e?: number | undefined;
|
|
13481
|
-
} & { [
|
|
13515
|
+
} & { [K_404 in Exclude<keyof I_1["channel_message_send"]["mentions"][number], keyof MessageMention>]: never; })[] & { [K_405 in Exclude<keyof I_1["channel_message_send"]["mentions"], keyof {
|
|
13482
13516
|
id?: string | undefined;
|
|
13483
13517
|
user_id?: string | undefined;
|
|
13484
13518
|
username?: string | undefined;
|
|
@@ -13512,7 +13546,7 @@ export declare const Envelope: {
|
|
|
13512
13546
|
width?: number | undefined;
|
|
13513
13547
|
height?: number | undefined;
|
|
13514
13548
|
thumbnail?: string | undefined;
|
|
13515
|
-
} & { [
|
|
13549
|
+
} & { [K_406 in Exclude<keyof I_1["channel_message_send"]["attachments"][number], keyof MessageAttachment>]: never; })[] & { [K_407 in Exclude<keyof I_1["channel_message_send"]["attachments"], keyof {
|
|
13516
13550
|
filename?: string | undefined;
|
|
13517
13551
|
size?: number | undefined;
|
|
13518
13552
|
url?: string | undefined;
|
|
@@ -13554,7 +13588,7 @@ export declare const Envelope: {
|
|
|
13554
13588
|
mesages_sender_avatar?: string | undefined;
|
|
13555
13589
|
message_sender_clan_nick?: string | undefined;
|
|
13556
13590
|
message_sender_display_name?: string | undefined;
|
|
13557
|
-
} & { [
|
|
13591
|
+
} & { [K_408 in Exclude<keyof I_1["channel_message_send"]["references"][number], keyof MessageRef>]: never; })[] & { [K_409 in Exclude<keyof I_1["channel_message_send"]["references"], keyof {
|
|
13558
13592
|
message_id?: string | undefined;
|
|
13559
13593
|
message_ref_id?: string | undefined;
|
|
13560
13594
|
content?: string | undefined;
|
|
@@ -13573,7 +13607,7 @@ export declare const Envelope: {
|
|
|
13573
13607
|
is_public?: boolean | undefined;
|
|
13574
13608
|
code?: number | undefined;
|
|
13575
13609
|
topic_id?: string | undefined;
|
|
13576
|
-
} & { [
|
|
13610
|
+
} & { [K_410 in Exclude<keyof I_1["channel_message_send"], keyof ChannelMessageSend>]: never; }) | undefined;
|
|
13577
13611
|
channel_message_update?: ({
|
|
13578
13612
|
clan_id?: string | undefined;
|
|
13579
13613
|
channel_id?: string | undefined;
|
|
@@ -13636,7 +13670,7 @@ export declare const Envelope: {
|
|
|
13636
13670
|
create_time?: Date | undefined;
|
|
13637
13671
|
s?: number | undefined;
|
|
13638
13672
|
e?: number | undefined;
|
|
13639
|
-
} & { [
|
|
13673
|
+
} & { [K_411 in Exclude<keyof I_1["channel_message_update"]["mentions"][number], keyof MessageMention>]: never; })[] & { [K_412 in Exclude<keyof I_1["channel_message_update"]["mentions"], keyof {
|
|
13640
13674
|
id?: string | undefined;
|
|
13641
13675
|
user_id?: string | undefined;
|
|
13642
13676
|
username?: string | undefined;
|
|
@@ -13670,7 +13704,7 @@ export declare const Envelope: {
|
|
|
13670
13704
|
width?: number | undefined;
|
|
13671
13705
|
height?: number | undefined;
|
|
13672
13706
|
thumbnail?: string | undefined;
|
|
13673
|
-
} & { [
|
|
13707
|
+
} & { [K_413 in Exclude<keyof I_1["channel_message_update"]["attachments"][number], keyof MessageAttachment>]: never; })[] & { [K_414 in Exclude<keyof I_1["channel_message_update"]["attachments"], keyof {
|
|
13674
13708
|
filename?: string | undefined;
|
|
13675
13709
|
size?: number | undefined;
|
|
13676
13710
|
url?: string | undefined;
|
|
@@ -13685,7 +13719,7 @@ export declare const Envelope: {
|
|
|
13685
13719
|
topic_id?: string | undefined;
|
|
13686
13720
|
is_update_msg_topic?: boolean | undefined;
|
|
13687
13721
|
old_mentions?: string | undefined;
|
|
13688
|
-
} & { [
|
|
13722
|
+
} & { [K_415 in Exclude<keyof I_1["channel_message_update"], keyof ChannelMessageUpdate>]: never; }) | undefined;
|
|
13689
13723
|
channel_message_remove?: ({
|
|
13690
13724
|
clan_id?: string | undefined;
|
|
13691
13725
|
channel_id?: string | undefined;
|
|
@@ -13706,7 +13740,7 @@ export declare const Envelope: {
|
|
|
13706
13740
|
topic_id?: string | undefined;
|
|
13707
13741
|
mentions?: string | undefined;
|
|
13708
13742
|
references?: string | undefined;
|
|
13709
|
-
} & { [
|
|
13743
|
+
} & { [K_416 in Exclude<keyof I_1["channel_message_remove"], keyof ChannelMessageRemove>]: never; }) | undefined;
|
|
13710
13744
|
channel_presence_event?: ({
|
|
13711
13745
|
channel_id?: string | undefined;
|
|
13712
13746
|
joins?: {
|
|
@@ -13751,7 +13785,7 @@ export declare const Envelope: {
|
|
|
13751
13785
|
status?: string | undefined;
|
|
13752
13786
|
is_mobile?: boolean | undefined;
|
|
13753
13787
|
user_status?: string | undefined;
|
|
13754
|
-
} & { [
|
|
13788
|
+
} & { [K_417 in Exclude<keyof I_1["channel_presence_event"]["joins"][number], keyof UserPresence>]: never; })[] & { [K_418 in Exclude<keyof I_1["channel_presence_event"]["joins"], keyof {
|
|
13755
13789
|
user_id?: string | undefined;
|
|
13756
13790
|
session_id?: string | undefined;
|
|
13757
13791
|
username?: string | undefined;
|
|
@@ -13780,7 +13814,7 @@ export declare const Envelope: {
|
|
|
13780
13814
|
status?: string | undefined;
|
|
13781
13815
|
is_mobile?: boolean | undefined;
|
|
13782
13816
|
user_status?: string | undefined;
|
|
13783
|
-
} & { [
|
|
13817
|
+
} & { [K_419 in Exclude<keyof I_1["channel_presence_event"]["leaves"][number], keyof UserPresence>]: never; })[] & { [K_420 in Exclude<keyof I_1["channel_presence_event"]["leaves"], keyof {
|
|
13784
13818
|
user_id?: string | undefined;
|
|
13785
13819
|
session_id?: string | undefined;
|
|
13786
13820
|
username?: string | undefined;
|
|
@@ -13791,7 +13825,7 @@ export declare const Envelope: {
|
|
|
13791
13825
|
clan_logo?: string | undefined;
|
|
13792
13826
|
category_name?: string | undefined;
|
|
13793
13827
|
mode?: number | undefined;
|
|
13794
|
-
} & { [
|
|
13828
|
+
} & { [K_421 in Exclude<keyof I_1["channel_presence_event"], keyof ChannelPresenceEvent>]: never; }) | undefined;
|
|
13795
13829
|
error?: ({
|
|
13796
13830
|
code?: number | undefined;
|
|
13797
13831
|
message?: string | undefined;
|
|
@@ -13805,8 +13839,8 @@ export declare const Envelope: {
|
|
|
13805
13839
|
[x: string]: string | undefined;
|
|
13806
13840
|
} & {
|
|
13807
13841
|
[x: string]: string | undefined;
|
|
13808
|
-
} & { [
|
|
13809
|
-
} & { [
|
|
13842
|
+
} & { [K_422 in Exclude<keyof I_1["error"]["context"], string | number>]: never; }) | undefined;
|
|
13843
|
+
} & { [K_423 in Exclude<keyof I_1["error"], keyof Error>]: never; }) | undefined;
|
|
13810
13844
|
notifications?: ({
|
|
13811
13845
|
notifications?: {
|
|
13812
13846
|
id?: string | undefined;
|
|
@@ -14085,8 +14119,8 @@ export declare const Envelope: {
|
|
|
14085
14119
|
creator_id?: string | undefined;
|
|
14086
14120
|
channel_label?: string | undefined;
|
|
14087
14121
|
channel_private?: number | undefined;
|
|
14088
|
-
avatars?: (string[] & string[] & { [
|
|
14089
|
-
user_ids?: (string[] & string[] & { [
|
|
14122
|
+
avatars?: (string[] & string[] & { [K_424 in Exclude<keyof I_1["notifications"]["notifications"][number]["channel"]["avatars"], keyof string[]>]: never; }) | undefined;
|
|
14123
|
+
user_ids?: (string[] & string[] & { [K_425 in Exclude<keyof I_1["notifications"]["notifications"][number]["channel"]["user_ids"], keyof string[]>]: never; }) | undefined;
|
|
14090
14124
|
last_sent_message?: ({
|
|
14091
14125
|
id?: string | undefined;
|
|
14092
14126
|
timestamp_seconds?: number | undefined;
|
|
@@ -14106,8 +14140,8 @@ export declare const Envelope: {
|
|
|
14106
14140
|
reference?: string | undefined;
|
|
14107
14141
|
mention?: string | undefined;
|
|
14108
14142
|
reaction?: string | undefined;
|
|
14109
|
-
repliers?: (string[] & string[] & { [
|
|
14110
|
-
} & { [
|
|
14143
|
+
repliers?: (string[] & string[] & { [K_426 in Exclude<keyof I_1["notifications"]["notifications"][number]["channel"]["last_sent_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
14144
|
+
} & { [K_427 in Exclude<keyof I_1["notifications"]["notifications"][number]["channel"]["last_sent_message"], keyof ChannelMessageHeader>]: never; }) | undefined;
|
|
14111
14145
|
last_seen_message?: ({
|
|
14112
14146
|
id?: string | undefined;
|
|
14113
14147
|
timestamp_seconds?: number | undefined;
|
|
@@ -14127,18 +14161,18 @@ export declare const Envelope: {
|
|
|
14127
14161
|
reference?: string | undefined;
|
|
14128
14162
|
mention?: string | undefined;
|
|
14129
14163
|
reaction?: string | undefined;
|
|
14130
|
-
repliers?: (string[] & string[] & { [
|
|
14131
|
-
} & { [
|
|
14132
|
-
onlines?: (boolean[] & boolean[] & { [
|
|
14164
|
+
repliers?: (string[] & string[] & { [K_428 in Exclude<keyof I_1["notifications"]["notifications"][number]["channel"]["last_seen_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
14165
|
+
} & { [K_429 in Exclude<keyof I_1["notifications"]["notifications"][number]["channel"]["last_seen_message"], keyof ChannelMessageHeader>]: never; }) | undefined;
|
|
14166
|
+
onlines?: (boolean[] & boolean[] & { [K_430 in Exclude<keyof I_1["notifications"]["notifications"][number]["channel"]["onlines"], keyof boolean[]>]: never; }) | undefined;
|
|
14133
14167
|
meeting_code?: string | undefined;
|
|
14134
14168
|
count_mess_unread?: number | undefined;
|
|
14135
14169
|
active?: number | undefined;
|
|
14136
14170
|
last_pin_message?: string | undefined;
|
|
14137
|
-
usernames?: (string[] & string[] & { [
|
|
14171
|
+
usernames?: (string[] & string[] & { [K_431 in Exclude<keyof I_1["notifications"]["notifications"][number]["channel"]["usernames"], keyof string[]>]: never; }) | undefined;
|
|
14138
14172
|
creator_name?: string | undefined;
|
|
14139
14173
|
create_time_seconds?: number | undefined;
|
|
14140
14174
|
update_time_seconds?: number | undefined;
|
|
14141
|
-
display_names?: (string[] & string[] & { [
|
|
14175
|
+
display_names?: (string[] & string[] & { [K_432 in Exclude<keyof I_1["notifications"]["notifications"][number]["channel"]["display_names"], keyof string[]>]: never; }) | undefined;
|
|
14142
14176
|
channel_avatar?: string | undefined;
|
|
14143
14177
|
clan_name?: string | undefined;
|
|
14144
14178
|
app_id?: string | undefined;
|
|
@@ -14147,10 +14181,10 @@ export declare const Envelope: {
|
|
|
14147
14181
|
topic?: string | undefined;
|
|
14148
14182
|
e2ee?: number | undefined;
|
|
14149
14183
|
member_count?: number | undefined;
|
|
14150
|
-
} & { [
|
|
14184
|
+
} & { [K_433 in Exclude<keyof I_1["notifications"]["notifications"][number]["channel"], keyof ChannelDescription1>]: never; }) | undefined;
|
|
14151
14185
|
topic_id?: string | undefined;
|
|
14152
14186
|
category?: number | undefined;
|
|
14153
|
-
} & { [
|
|
14187
|
+
} & { [K_434 in Exclude<keyof I_1["notifications"]["notifications"][number], keyof Notification>]: never; })[] & { [K_435 in Exclude<keyof I_1["notifications"]["notifications"], keyof {
|
|
14154
14188
|
id?: string | undefined;
|
|
14155
14189
|
subject?: string | undefined;
|
|
14156
14190
|
content?: string | undefined;
|
|
@@ -14218,7 +14252,7 @@ export declare const Envelope: {
|
|
|
14218
14252
|
topic_id?: string | undefined;
|
|
14219
14253
|
category?: number | undefined;
|
|
14220
14254
|
}[]>]: never; }) | undefined;
|
|
14221
|
-
} & { [
|
|
14255
|
+
} & { [K_436 in Exclude<keyof I_1["notifications"], "notifications">]: never; }) | undefined;
|
|
14222
14256
|
rpc?: ({
|
|
14223
14257
|
id?: string | undefined;
|
|
14224
14258
|
payload?: string | undefined;
|
|
@@ -14227,7 +14261,7 @@ export declare const Envelope: {
|
|
|
14227
14261
|
id?: string | undefined;
|
|
14228
14262
|
payload?: string | undefined;
|
|
14229
14263
|
http_key?: string | undefined;
|
|
14230
|
-
} & { [
|
|
14264
|
+
} & { [K_437 in Exclude<keyof I_1["rpc"], keyof Rpc>]: never; }) | undefined;
|
|
14231
14265
|
status?: ({
|
|
14232
14266
|
presences?: {
|
|
14233
14267
|
user_id?: string | undefined;
|
|
@@ -14259,7 +14293,7 @@ export declare const Envelope: {
|
|
|
14259
14293
|
status?: string | undefined;
|
|
14260
14294
|
is_mobile?: boolean | undefined;
|
|
14261
14295
|
user_status?: string | undefined;
|
|
14262
|
-
} & { [
|
|
14296
|
+
} & { [K_438 in Exclude<keyof I_1["status"]["presences"][number], keyof UserPresence>]: never; })[] & { [K_439 in Exclude<keyof I_1["status"]["presences"], keyof {
|
|
14263
14297
|
user_id?: string | undefined;
|
|
14264
14298
|
session_id?: string | undefined;
|
|
14265
14299
|
username?: string | undefined;
|
|
@@ -14267,14 +14301,14 @@ export declare const Envelope: {
|
|
|
14267
14301
|
is_mobile?: boolean | undefined;
|
|
14268
14302
|
user_status?: string | undefined;
|
|
14269
14303
|
}[]>]: never; }) | undefined;
|
|
14270
|
-
} & { [
|
|
14304
|
+
} & { [K_440 in Exclude<keyof I_1["status"], "presences">]: never; }) | undefined;
|
|
14271
14305
|
status_follow?: ({
|
|
14272
14306
|
user_ids?: string[] | undefined;
|
|
14273
14307
|
usernames?: string[] | undefined;
|
|
14274
14308
|
} & {
|
|
14275
|
-
user_ids?: (string[] & string[] & { [
|
|
14276
|
-
usernames?: (string[] & string[] & { [
|
|
14277
|
-
} & { [
|
|
14309
|
+
user_ids?: (string[] & string[] & { [K_441 in Exclude<keyof I_1["status_follow"]["user_ids"], keyof string[]>]: never; }) | undefined;
|
|
14310
|
+
usernames?: (string[] & string[] & { [K_442 in Exclude<keyof I_1["status_follow"]["usernames"], keyof string[]>]: never; }) | undefined;
|
|
14311
|
+
} & { [K_443 in Exclude<keyof I_1["status_follow"], keyof StatusFollow>]: never; }) | undefined;
|
|
14278
14312
|
status_presence_event?: ({
|
|
14279
14313
|
joins?: {
|
|
14280
14314
|
user_id?: string | undefined;
|
|
@@ -14314,7 +14348,7 @@ export declare const Envelope: {
|
|
|
14314
14348
|
status?: string | undefined;
|
|
14315
14349
|
is_mobile?: boolean | undefined;
|
|
14316
14350
|
user_status?: string | undefined;
|
|
14317
|
-
} & { [
|
|
14351
|
+
} & { [K_444 in Exclude<keyof I_1["status_presence_event"]["joins"][number], keyof UserPresence>]: never; })[] & { [K_445 in Exclude<keyof I_1["status_presence_event"]["joins"], keyof {
|
|
14318
14352
|
user_id?: string | undefined;
|
|
14319
14353
|
session_id?: string | undefined;
|
|
14320
14354
|
username?: string | undefined;
|
|
@@ -14343,7 +14377,7 @@ export declare const Envelope: {
|
|
|
14343
14377
|
status?: string | undefined;
|
|
14344
14378
|
is_mobile?: boolean | undefined;
|
|
14345
14379
|
user_status?: string | undefined;
|
|
14346
|
-
} & { [
|
|
14380
|
+
} & { [K_446 in Exclude<keyof I_1["status_presence_event"]["leaves"][number], keyof UserPresence>]: never; })[] & { [K_447 in Exclude<keyof I_1["status_presence_event"]["leaves"], keyof {
|
|
14347
14381
|
user_id?: string | undefined;
|
|
14348
14382
|
session_id?: string | undefined;
|
|
14349
14383
|
username?: string | undefined;
|
|
@@ -14351,17 +14385,17 @@ export declare const Envelope: {
|
|
|
14351
14385
|
is_mobile?: boolean | undefined;
|
|
14352
14386
|
user_status?: string | undefined;
|
|
14353
14387
|
}[]>]: never; }) | undefined;
|
|
14354
|
-
} & { [
|
|
14388
|
+
} & { [K_448 in Exclude<keyof I_1["status_presence_event"], keyof StatusPresenceEvent>]: never; }) | undefined;
|
|
14355
14389
|
status_unfollow?: ({
|
|
14356
14390
|
user_ids?: string[] | undefined;
|
|
14357
14391
|
} & {
|
|
14358
|
-
user_ids?: (string[] & string[] & { [
|
|
14359
|
-
} & { [
|
|
14392
|
+
user_ids?: (string[] & string[] & { [K_449 in Exclude<keyof I_1["status_unfollow"]["user_ids"], keyof string[]>]: never; }) | undefined;
|
|
14393
|
+
} & { [K_450 in Exclude<keyof I_1["status_unfollow"], "user_ids">]: never; }) | undefined;
|
|
14360
14394
|
status_update?: ({
|
|
14361
14395
|
status?: string | undefined;
|
|
14362
14396
|
} & {
|
|
14363
14397
|
status?: string | undefined;
|
|
14364
|
-
} & { [
|
|
14398
|
+
} & { [K_451 in Exclude<keyof I_1["status_update"], "status">]: never; }) | undefined;
|
|
14365
14399
|
stream_data?: ({
|
|
14366
14400
|
stream?: {
|
|
14367
14401
|
mode?: number | undefined;
|
|
@@ -14390,7 +14424,7 @@ export declare const Envelope: {
|
|
|
14390
14424
|
channel_id?: string | undefined;
|
|
14391
14425
|
clan_id?: string | undefined;
|
|
14392
14426
|
label?: string | undefined;
|
|
14393
|
-
} & { [
|
|
14427
|
+
} & { [K_452 in Exclude<keyof I_1["stream_data"]["stream"], keyof Stream>]: never; }) | undefined;
|
|
14394
14428
|
sender?: ({
|
|
14395
14429
|
user_id?: string | undefined;
|
|
14396
14430
|
session_id?: string | undefined;
|
|
@@ -14405,10 +14439,10 @@ export declare const Envelope: {
|
|
|
14405
14439
|
status?: string | undefined;
|
|
14406
14440
|
is_mobile?: boolean | undefined;
|
|
14407
14441
|
user_status?: string | undefined;
|
|
14408
|
-
} & { [
|
|
14442
|
+
} & { [K_453 in Exclude<keyof I_1["stream_data"]["sender"], keyof UserPresence>]: never; }) | undefined;
|
|
14409
14443
|
data?: string | undefined;
|
|
14410
14444
|
reliable?: boolean | undefined;
|
|
14411
|
-
} & { [
|
|
14445
|
+
} & { [K_454 in Exclude<keyof I_1["stream_data"], keyof StreamData>]: never; }) | undefined;
|
|
14412
14446
|
stream_presence_event?: ({
|
|
14413
14447
|
stream?: {
|
|
14414
14448
|
mode?: number | undefined;
|
|
@@ -14443,7 +14477,7 @@ export declare const Envelope: {
|
|
|
14443
14477
|
channel_id?: string | undefined;
|
|
14444
14478
|
clan_id?: string | undefined;
|
|
14445
14479
|
label?: string | undefined;
|
|
14446
|
-
} & { [
|
|
14480
|
+
} & { [K_455 in Exclude<keyof I_1["stream_presence_event"]["stream"], keyof Stream>]: never; }) | undefined;
|
|
14447
14481
|
joins?: ({
|
|
14448
14482
|
user_id?: string | undefined;
|
|
14449
14483
|
session_id?: string | undefined;
|
|
@@ -14465,7 +14499,7 @@ export declare const Envelope: {
|
|
|
14465
14499
|
status?: string | undefined;
|
|
14466
14500
|
is_mobile?: boolean | undefined;
|
|
14467
14501
|
user_status?: string | undefined;
|
|
14468
|
-
} & { [
|
|
14502
|
+
} & { [K_456 in Exclude<keyof I_1["stream_presence_event"]["joins"][number], keyof UserPresence>]: never; })[] & { [K_457 in Exclude<keyof I_1["stream_presence_event"]["joins"], keyof {
|
|
14469
14503
|
user_id?: string | undefined;
|
|
14470
14504
|
session_id?: string | undefined;
|
|
14471
14505
|
username?: string | undefined;
|
|
@@ -14494,7 +14528,7 @@ export declare const Envelope: {
|
|
|
14494
14528
|
status?: string | undefined;
|
|
14495
14529
|
is_mobile?: boolean | undefined;
|
|
14496
14530
|
user_status?: string | undefined;
|
|
14497
|
-
} & { [
|
|
14531
|
+
} & { [K_458 in Exclude<keyof I_1["stream_presence_event"]["leaves"][number], keyof UserPresence>]: never; })[] & { [K_459 in Exclude<keyof I_1["stream_presence_event"]["leaves"], keyof {
|
|
14498
14532
|
user_id?: string | undefined;
|
|
14499
14533
|
session_id?: string | undefined;
|
|
14500
14534
|
username?: string | undefined;
|
|
@@ -14502,9 +14536,9 @@ export declare const Envelope: {
|
|
|
14502
14536
|
is_mobile?: boolean | undefined;
|
|
14503
14537
|
user_status?: string | undefined;
|
|
14504
14538
|
}[]>]: never; }) | undefined;
|
|
14505
|
-
} & { [
|
|
14506
|
-
ping?: ({} & {} & { [
|
|
14507
|
-
pong?: ({} & {} & { [
|
|
14539
|
+
} & { [K_460 in Exclude<keyof I_1["stream_presence_event"], keyof StreamPresenceEvent>]: never; }) | undefined;
|
|
14540
|
+
ping?: ({} & {} & { [K_461 in Exclude<keyof I_1["ping"], never>]: never; }) | undefined;
|
|
14541
|
+
pong?: ({} & {} & { [K_462 in Exclude<keyof I_1["pong"], never>]: never; }) | undefined;
|
|
14508
14542
|
message_typing_event?: ({
|
|
14509
14543
|
clan_id?: string | undefined;
|
|
14510
14544
|
channel_id?: string | undefined;
|
|
@@ -14523,7 +14557,7 @@ export declare const Envelope: {
|
|
|
14523
14557
|
sender_username?: string | undefined;
|
|
14524
14558
|
sender_display_name?: string | undefined;
|
|
14525
14559
|
topic_id?: string | undefined;
|
|
14526
|
-
} & { [
|
|
14560
|
+
} & { [K_463 in Exclude<keyof I_1["message_typing_event"], keyof MessageTypingEvent>]: never; }) | undefined;
|
|
14527
14561
|
last_seen_message_event?: ({
|
|
14528
14562
|
clan_id?: string | undefined;
|
|
14529
14563
|
channel_id?: string | undefined;
|
|
@@ -14538,7 +14572,7 @@ export declare const Envelope: {
|
|
|
14538
14572
|
mode?: number | undefined;
|
|
14539
14573
|
timestamp_seconds?: number | undefined;
|
|
14540
14574
|
badge_count?: number | undefined;
|
|
14541
|
-
} & { [
|
|
14575
|
+
} & { [K_464 in Exclude<keyof I_1["last_seen_message_event"], keyof LastSeenMessageEvent>]: never; }) | undefined;
|
|
14542
14576
|
message_reaction_event?: ({
|
|
14543
14577
|
id?: string | undefined;
|
|
14544
14578
|
emoji_id?: string | undefined;
|
|
@@ -14573,7 +14607,7 @@ export declare const Envelope: {
|
|
|
14573
14607
|
is_public?: boolean | undefined;
|
|
14574
14608
|
topic_id?: string | undefined;
|
|
14575
14609
|
emoji_recent_id?: string | undefined;
|
|
14576
|
-
} & { [
|
|
14610
|
+
} & { [K_465 in Exclude<keyof I_1["message_reaction_event"], keyof MessageReaction>]: never; }) | undefined;
|
|
14577
14611
|
voice_joined_event?: ({
|
|
14578
14612
|
clan_id?: string | undefined;
|
|
14579
14613
|
clan_name?: string | undefined;
|
|
@@ -14592,7 +14626,7 @@ export declare const Envelope: {
|
|
|
14592
14626
|
voice_channel_label?: string | undefined;
|
|
14593
14627
|
voice_channel_id?: string | undefined;
|
|
14594
14628
|
last_screenshot?: string | undefined;
|
|
14595
|
-
} & { [
|
|
14629
|
+
} & { [K_466 in Exclude<keyof I_1["voice_joined_event"], keyof VoiceJoinedEvent>]: never; }) | undefined;
|
|
14596
14630
|
voice_leaved_event?: ({
|
|
14597
14631
|
id?: string | undefined;
|
|
14598
14632
|
clan_id?: string | undefined;
|
|
@@ -14603,7 +14637,7 @@ export declare const Envelope: {
|
|
|
14603
14637
|
clan_id?: string | undefined;
|
|
14604
14638
|
voice_channel_id?: string | undefined;
|
|
14605
14639
|
voice_user_id?: string | undefined;
|
|
14606
|
-
} & { [
|
|
14640
|
+
} & { [K_467 in Exclude<keyof I_1["voice_leaved_event"], keyof VoiceLeavedEvent>]: never; }) | undefined;
|
|
14607
14641
|
voice_started_event?: ({
|
|
14608
14642
|
id?: string | undefined;
|
|
14609
14643
|
clan_id?: string | undefined;
|
|
@@ -14612,7 +14646,7 @@ export declare const Envelope: {
|
|
|
14612
14646
|
id?: string | undefined;
|
|
14613
14647
|
clan_id?: string | undefined;
|
|
14614
14648
|
voice_channel_id?: string | undefined;
|
|
14615
|
-
} & { [
|
|
14649
|
+
} & { [K_468 in Exclude<keyof I_1["voice_started_event"], keyof VoiceStartedEvent>]: never; }) | undefined;
|
|
14616
14650
|
voice_ended_event?: ({
|
|
14617
14651
|
id?: string | undefined;
|
|
14618
14652
|
clan_id?: string | undefined;
|
|
@@ -14621,7 +14655,7 @@ export declare const Envelope: {
|
|
|
14621
14655
|
id?: string | undefined;
|
|
14622
14656
|
clan_id?: string | undefined;
|
|
14623
14657
|
voice_channel_id?: string | undefined;
|
|
14624
|
-
} & { [
|
|
14658
|
+
} & { [K_469 in Exclude<keyof I_1["voice_ended_event"], keyof VoiceEndedEvent>]: never; }) | undefined;
|
|
14625
14659
|
channel_created_event?: ({
|
|
14626
14660
|
clan_id?: string | undefined;
|
|
14627
14661
|
category_id?: string | undefined;
|
|
@@ -14646,7 +14680,7 @@ export declare const Envelope: {
|
|
|
14646
14680
|
status?: number | undefined;
|
|
14647
14681
|
app_id?: string | undefined;
|
|
14648
14682
|
clan_name?: string | undefined;
|
|
14649
|
-
} & { [
|
|
14683
|
+
} & { [K_470 in Exclude<keyof I_1["channel_created_event"], keyof ChannelCreatedEvent>]: never; }) | undefined;
|
|
14650
14684
|
channel_deleted_event?: ({
|
|
14651
14685
|
clan_id?: string | undefined;
|
|
14652
14686
|
category_id?: string | undefined;
|
|
@@ -14659,7 +14693,7 @@ export declare const Envelope: {
|
|
|
14659
14693
|
parent_id?: string | undefined;
|
|
14660
14694
|
channel_id?: string | undefined;
|
|
14661
14695
|
deletor?: string | undefined;
|
|
14662
|
-
} & { [
|
|
14696
|
+
} & { [K_471 in Exclude<keyof I_1["channel_deleted_event"], keyof ChannelDeletedEvent>]: never; }) | undefined;
|
|
14663
14697
|
channel_updated_event?: ({
|
|
14664
14698
|
clan_id?: string | undefined;
|
|
14665
14699
|
category_id?: string | undefined;
|
|
@@ -14699,10 +14733,10 @@ export declare const Envelope: {
|
|
|
14699
14733
|
age_restricted?: number | undefined;
|
|
14700
14734
|
active?: number | undefined;
|
|
14701
14735
|
count_mess_unread?: number | undefined;
|
|
14702
|
-
user_ids?: (string[] & string[] & { [
|
|
14703
|
-
role_ids?: (string[] & string[] & { [
|
|
14736
|
+
user_ids?: (string[] & string[] & { [K_472 in Exclude<keyof I_1["channel_updated_event"]["user_ids"], keyof string[]>]: never; }) | undefined;
|
|
14737
|
+
role_ids?: (string[] & string[] & { [K_473 in Exclude<keyof I_1["channel_updated_event"]["role_ids"], keyof string[]>]: never; }) | undefined;
|
|
14704
14738
|
channel_avatar?: string | undefined;
|
|
14705
|
-
} & { [
|
|
14739
|
+
} & { [K_474 in Exclude<keyof I_1["channel_updated_event"], keyof ChannelUpdatedEvent>]: never; }) | undefined;
|
|
14706
14740
|
last_pin_message_event?: ({
|
|
14707
14741
|
clan_id?: string | undefined;
|
|
14708
14742
|
channel_id?: string | undefined;
|
|
@@ -14733,7 +14767,7 @@ export declare const Envelope: {
|
|
|
14733
14767
|
message_content?: string | undefined;
|
|
14734
14768
|
message_attachment?: string | undefined;
|
|
14735
14769
|
message_created_time?: string | undefined;
|
|
14736
|
-
} & { [
|
|
14770
|
+
} & { [K_475 in Exclude<keyof I_1["last_pin_message_event"], keyof LastPinMessageEvent>]: never; }) | undefined;
|
|
14737
14771
|
custom_status_event?: ({
|
|
14738
14772
|
clan_id?: string | undefined;
|
|
14739
14773
|
user_id?: string | undefined;
|
|
@@ -14748,7 +14782,7 @@ export declare const Envelope: {
|
|
|
14748
14782
|
status?: string | undefined;
|
|
14749
14783
|
time_reset?: number | undefined;
|
|
14750
14784
|
no_clear?: boolean | undefined;
|
|
14751
|
-
} & { [
|
|
14785
|
+
} & { [K_476 in Exclude<keyof I_1["custom_status_event"], keyof CustomStatusEvent>]: never; }) | undefined;
|
|
14752
14786
|
user_channel_added_event?: ({
|
|
14753
14787
|
channel_desc?: {
|
|
14754
14788
|
clan_id?: string | undefined;
|
|
@@ -14918,8 +14952,8 @@ export declare const Envelope: {
|
|
|
14918
14952
|
creator_id?: string | undefined;
|
|
14919
14953
|
channel_label?: string | undefined;
|
|
14920
14954
|
channel_private?: number | undefined;
|
|
14921
|
-
avatars?: (string[] & string[] & { [
|
|
14922
|
-
user_ids?: (string[] & string[] & { [
|
|
14955
|
+
avatars?: (string[] & string[] & { [K_477 in Exclude<keyof I_1["user_channel_added_event"]["channel_desc"]["avatars"], keyof string[]>]: never; }) | undefined;
|
|
14956
|
+
user_ids?: (string[] & string[] & { [K_478 in Exclude<keyof I_1["user_channel_added_event"]["channel_desc"]["user_ids"], keyof string[]>]: never; }) | undefined;
|
|
14923
14957
|
last_sent_message?: ({
|
|
14924
14958
|
id?: string | undefined;
|
|
14925
14959
|
timestamp_seconds?: number | undefined;
|
|
@@ -14939,8 +14973,8 @@ export declare const Envelope: {
|
|
|
14939
14973
|
reference?: string | undefined;
|
|
14940
14974
|
mention?: string | undefined;
|
|
14941
14975
|
reaction?: string | undefined;
|
|
14942
|
-
repliers?: (string[] & string[] & { [
|
|
14943
|
-
} & { [
|
|
14976
|
+
repliers?: (string[] & string[] & { [K_479 in Exclude<keyof I_1["user_channel_added_event"]["channel_desc"]["last_sent_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
14977
|
+
} & { [K_480 in Exclude<keyof I_1["user_channel_added_event"]["channel_desc"]["last_sent_message"], keyof ChannelMessageHeader>]: never; }) | undefined;
|
|
14944
14978
|
last_seen_message?: ({
|
|
14945
14979
|
id?: string | undefined;
|
|
14946
14980
|
timestamp_seconds?: number | undefined;
|
|
@@ -14960,18 +14994,18 @@ export declare const Envelope: {
|
|
|
14960
14994
|
reference?: string | undefined;
|
|
14961
14995
|
mention?: string | undefined;
|
|
14962
14996
|
reaction?: string | undefined;
|
|
14963
|
-
repliers?: (string[] & string[] & { [
|
|
14964
|
-
} & { [
|
|
14965
|
-
onlines?: (boolean[] & boolean[] & { [
|
|
14997
|
+
repliers?: (string[] & string[] & { [K_481 in Exclude<keyof I_1["user_channel_added_event"]["channel_desc"]["last_seen_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
14998
|
+
} & { [K_482 in Exclude<keyof I_1["user_channel_added_event"]["channel_desc"]["last_seen_message"], keyof ChannelMessageHeader>]: never; }) | undefined;
|
|
14999
|
+
onlines?: (boolean[] & boolean[] & { [K_483 in Exclude<keyof I_1["user_channel_added_event"]["channel_desc"]["onlines"], keyof boolean[]>]: never; }) | undefined;
|
|
14966
15000
|
meeting_code?: string | undefined;
|
|
14967
15001
|
count_mess_unread?: number | undefined;
|
|
14968
15002
|
active?: number | undefined;
|
|
14969
15003
|
last_pin_message?: string | undefined;
|
|
14970
|
-
usernames?: (string[] & string[] & { [
|
|
15004
|
+
usernames?: (string[] & string[] & { [K_484 in Exclude<keyof I_1["user_channel_added_event"]["channel_desc"]["usernames"], keyof string[]>]: never; }) | undefined;
|
|
14971
15005
|
creator_name?: string | undefined;
|
|
14972
15006
|
create_time_seconds?: number | undefined;
|
|
14973
15007
|
update_time_seconds?: number | undefined;
|
|
14974
|
-
display_names?: (string[] & string[] & { [
|
|
15008
|
+
display_names?: (string[] & string[] & { [K_485 in Exclude<keyof I_1["user_channel_added_event"]["channel_desc"]["display_names"], keyof string[]>]: never; }) | undefined;
|
|
14975
15009
|
channel_avatar?: string | undefined;
|
|
14976
15010
|
clan_name?: string | undefined;
|
|
14977
15011
|
app_id?: string | undefined;
|
|
@@ -14980,7 +15014,7 @@ export declare const Envelope: {
|
|
|
14980
15014
|
topic?: string | undefined;
|
|
14981
15015
|
e2ee?: number | undefined;
|
|
14982
15016
|
member_count?: number | undefined;
|
|
14983
|
-
} & { [
|
|
15017
|
+
} & { [K_486 in Exclude<keyof I_1["user_channel_added_event"]["channel_desc"], keyof ChannelDescription1>]: never; }) | undefined;
|
|
14984
15018
|
users?: ({
|
|
14985
15019
|
user_id?: string | undefined;
|
|
14986
15020
|
username?: string | undefined;
|
|
@@ -15048,21 +15082,21 @@ export declare const Envelope: {
|
|
|
15048
15082
|
device_id?: string | undefined;
|
|
15049
15083
|
token_id?: string | undefined;
|
|
15050
15084
|
platform?: string | undefined;
|
|
15051
|
-
} & { [
|
|
15085
|
+
} & { [K_487 in Exclude<keyof I_1["user_channel_added_event"]["users"][number]["fcm_tokens"][number], keyof FCMTokens>]: never; })[] & { [K_488 in Exclude<keyof I_1["user_channel_added_event"]["users"][number]["fcm_tokens"], keyof {
|
|
15052
15086
|
device_id?: string | undefined;
|
|
15053
15087
|
token_id?: string | undefined;
|
|
15054
15088
|
platform?: string | undefined;
|
|
15055
15089
|
}[]>]: never; }) | undefined;
|
|
15056
15090
|
online?: boolean | undefined;
|
|
15057
15091
|
is_disabled?: boolean | undefined;
|
|
15058
|
-
joined_clans?: (string[] & string[] & { [
|
|
15092
|
+
joined_clans?: (string[] & string[] & { [K_489 in Exclude<keyof I_1["user_channel_added_event"]["users"][number]["joined_clans"], keyof string[]>]: never; }) | undefined;
|
|
15059
15093
|
pubkey?: string | undefined;
|
|
15060
15094
|
mezon_id?: string | undefined;
|
|
15061
15095
|
app_token?: string | undefined;
|
|
15062
15096
|
app_url?: string | undefined;
|
|
15063
15097
|
is_bot?: boolean | undefined;
|
|
15064
15098
|
voip_token?: string | undefined;
|
|
15065
|
-
} & { [
|
|
15099
|
+
} & { [K_490 in Exclude<keyof I_1["user_channel_added_event"]["users"][number], keyof UserProfileRedis>]: never; })[] & { [K_491 in Exclude<keyof I_1["user_channel_added_event"]["users"], keyof {
|
|
15066
15100
|
user_id?: string | undefined;
|
|
15067
15101
|
username?: string | undefined;
|
|
15068
15102
|
avatar?: string | undefined;
|
|
@@ -15132,24 +15166,24 @@ export declare const Envelope: {
|
|
|
15132
15166
|
device_id?: string | undefined;
|
|
15133
15167
|
token_id?: string | undefined;
|
|
15134
15168
|
platform?: string | undefined;
|
|
15135
|
-
} & { [
|
|
15169
|
+
} & { [K_492 in Exclude<keyof I_1["user_channel_added_event"]["caller"]["fcm_tokens"][number], keyof FCMTokens>]: never; })[] & { [K_493 in Exclude<keyof I_1["user_channel_added_event"]["caller"]["fcm_tokens"], keyof {
|
|
15136
15170
|
device_id?: string | undefined;
|
|
15137
15171
|
token_id?: string | undefined;
|
|
15138
15172
|
platform?: string | undefined;
|
|
15139
15173
|
}[]>]: never; }) | undefined;
|
|
15140
15174
|
online?: boolean | undefined;
|
|
15141
15175
|
is_disabled?: boolean | undefined;
|
|
15142
|
-
joined_clans?: (string[] & string[] & { [
|
|
15176
|
+
joined_clans?: (string[] & string[] & { [K_494 in Exclude<keyof I_1["user_channel_added_event"]["caller"]["joined_clans"], keyof string[]>]: never; }) | undefined;
|
|
15143
15177
|
pubkey?: string | undefined;
|
|
15144
15178
|
mezon_id?: string | undefined;
|
|
15145
15179
|
app_token?: string | undefined;
|
|
15146
15180
|
app_url?: string | undefined;
|
|
15147
15181
|
is_bot?: boolean | undefined;
|
|
15148
15182
|
voip_token?: string | undefined;
|
|
15149
|
-
} & { [
|
|
15183
|
+
} & { [K_495 in Exclude<keyof I_1["user_channel_added_event"]["caller"], keyof UserProfileRedis>]: never; }) | undefined;
|
|
15150
15184
|
create_time_second?: number | undefined;
|
|
15151
15185
|
active?: number | undefined;
|
|
15152
|
-
} & { [
|
|
15186
|
+
} & { [K_496 in Exclude<keyof I_1["user_channel_added_event"], keyof UserChannelAdded>]: never; }) | undefined;
|
|
15153
15187
|
user_channel_removed_event?: ({
|
|
15154
15188
|
channel_id?: string | undefined;
|
|
15155
15189
|
user_ids?: string[] | undefined;
|
|
@@ -15158,18 +15192,18 @@ export declare const Envelope: {
|
|
|
15158
15192
|
badge_counts?: number[] | undefined;
|
|
15159
15193
|
} & {
|
|
15160
15194
|
channel_id?: string | undefined;
|
|
15161
|
-
user_ids?: (string[] & string[] & { [
|
|
15195
|
+
user_ids?: (string[] & string[] & { [K_497 in Exclude<keyof I_1["user_channel_removed_event"]["user_ids"], keyof string[]>]: never; }) | undefined;
|
|
15162
15196
|
channel_type?: number | undefined;
|
|
15163
15197
|
clan_id?: string | undefined;
|
|
15164
|
-
badge_counts?: (number[] & number[] & { [
|
|
15165
|
-
} & { [
|
|
15198
|
+
badge_counts?: (number[] & number[] & { [K_498 in Exclude<keyof I_1["user_channel_removed_event"]["badge_counts"], keyof number[]>]: never; }) | undefined;
|
|
15199
|
+
} & { [K_499 in Exclude<keyof I_1["user_channel_removed_event"], keyof UserChannelRemoved>]: never; }) | undefined;
|
|
15166
15200
|
user_clan_removed_event?: ({
|
|
15167
15201
|
clan_id?: string | undefined;
|
|
15168
15202
|
user_ids?: string[] | undefined;
|
|
15169
15203
|
} & {
|
|
15170
15204
|
clan_id?: string | undefined;
|
|
15171
|
-
user_ids?: (string[] & string[] & { [
|
|
15172
|
-
} & { [
|
|
15205
|
+
user_ids?: (string[] & string[] & { [K_500 in Exclude<keyof I_1["user_clan_removed_event"]["user_ids"], keyof string[]>]: never; }) | undefined;
|
|
15206
|
+
} & { [K_501 in Exclude<keyof I_1["user_clan_removed_event"], keyof UserClanRemoved>]: never; }) | undefined;
|
|
15173
15207
|
clan_updated_event?: ({
|
|
15174
15208
|
clan_id?: string | undefined;
|
|
15175
15209
|
clan_name?: string | undefined;
|
|
@@ -15196,7 +15230,7 @@ export declare const Envelope: {
|
|
|
15196
15230
|
is_community?: boolean | undefined;
|
|
15197
15231
|
about?: string | undefined;
|
|
15198
15232
|
description?: string | undefined;
|
|
15199
|
-
} & { [
|
|
15233
|
+
} & { [K_502 in Exclude<keyof I_1["clan_updated_event"], keyof ClanUpdatedEvent>]: never; }) | undefined;
|
|
15200
15234
|
clan_profile_updated_event?: ({
|
|
15201
15235
|
user_id?: string | undefined;
|
|
15202
15236
|
clan_nick?: string | undefined;
|
|
@@ -15207,7 +15241,7 @@ export declare const Envelope: {
|
|
|
15207
15241
|
clan_nick?: string | undefined;
|
|
15208
15242
|
clan_avatar?: string | undefined;
|
|
15209
15243
|
clan_id?: string | undefined;
|
|
15210
|
-
} & { [
|
|
15244
|
+
} & { [K_503 in Exclude<keyof I_1["clan_profile_updated_event"], keyof ClanProfileUpdatedEvent>]: never; }) | undefined;
|
|
15211
15245
|
check_name_existed_event?: ({
|
|
15212
15246
|
name?: string | undefined;
|
|
15213
15247
|
condition_id?: string | undefined;
|
|
@@ -15218,7 +15252,7 @@ export declare const Envelope: {
|
|
|
15218
15252
|
condition_id?: string | undefined;
|
|
15219
15253
|
exist?: boolean | undefined;
|
|
15220
15254
|
type?: number | undefined;
|
|
15221
|
-
} & { [
|
|
15255
|
+
} & { [K_504 in Exclude<keyof I_1["check_name_existed_event"], keyof CheckNameExistedEvent>]: never; }) | undefined;
|
|
15222
15256
|
user_profile_updated_event?: ({
|
|
15223
15257
|
user_id?: string | undefined;
|
|
15224
15258
|
display_name?: string | undefined;
|
|
@@ -15235,7 +15269,7 @@ export declare const Envelope: {
|
|
|
15235
15269
|
channel_id?: string | undefined;
|
|
15236
15270
|
clan_id?: string | undefined;
|
|
15237
15271
|
encrypt_private_key?: string | undefined;
|
|
15238
|
-
} & { [
|
|
15272
|
+
} & { [K_505 in Exclude<keyof I_1["user_profile_updated_event"], keyof UserProfileUpdatedEvent>]: never; }) | undefined;
|
|
15239
15273
|
add_clan_user_event?: ({
|
|
15240
15274
|
clan_id?: string | undefined;
|
|
15241
15275
|
user?: {
|
|
@@ -15309,23 +15343,23 @@ export declare const Envelope: {
|
|
|
15309
15343
|
device_id?: string | undefined;
|
|
15310
15344
|
token_id?: string | undefined;
|
|
15311
15345
|
platform?: string | undefined;
|
|
15312
|
-
} & { [
|
|
15346
|
+
} & { [K_506 in Exclude<keyof I_1["add_clan_user_event"]["user"]["fcm_tokens"][number], keyof FCMTokens>]: never; })[] & { [K_507 in Exclude<keyof I_1["add_clan_user_event"]["user"]["fcm_tokens"], keyof {
|
|
15313
15347
|
device_id?: string | undefined;
|
|
15314
15348
|
token_id?: string | undefined;
|
|
15315
15349
|
platform?: string | undefined;
|
|
15316
15350
|
}[]>]: never; }) | undefined;
|
|
15317
15351
|
online?: boolean | undefined;
|
|
15318
15352
|
is_disabled?: boolean | undefined;
|
|
15319
|
-
joined_clans?: (string[] & string[] & { [
|
|
15353
|
+
joined_clans?: (string[] & string[] & { [K_508 in Exclude<keyof I_1["add_clan_user_event"]["user"]["joined_clans"], keyof string[]>]: never; }) | undefined;
|
|
15320
15354
|
pubkey?: string | undefined;
|
|
15321
15355
|
mezon_id?: string | undefined;
|
|
15322
15356
|
app_token?: string | undefined;
|
|
15323
15357
|
app_url?: string | undefined;
|
|
15324
15358
|
is_bot?: boolean | undefined;
|
|
15325
15359
|
voip_token?: string | undefined;
|
|
15326
|
-
} & { [
|
|
15360
|
+
} & { [K_509 in Exclude<keyof I_1["add_clan_user_event"]["user"], keyof UserProfileRedis>]: never; }) | undefined;
|
|
15327
15361
|
invitor?: string | undefined;
|
|
15328
|
-
} & { [
|
|
15362
|
+
} & { [K_510 in Exclude<keyof I_1["add_clan_user_event"], keyof AddClanUserEvent>]: never; }) | undefined;
|
|
15329
15363
|
clan_event_created?: ({
|
|
15330
15364
|
title?: string | undefined;
|
|
15331
15365
|
logo?: string | undefined;
|
|
@@ -15379,8 +15413,8 @@ export declare const Envelope: {
|
|
|
15379
15413
|
external_link?: string | undefined;
|
|
15380
15414
|
creator_id?: string | undefined;
|
|
15381
15415
|
event_id?: string | undefined;
|
|
15382
|
-
} & { [
|
|
15383
|
-
} & { [
|
|
15416
|
+
} & { [K_511 in Exclude<keyof I_1["clan_event_created"]["meet_room"], keyof import("../api/api").GenerateMezonMeetResponse>]: never; }) | undefined;
|
|
15417
|
+
} & { [K_512 in Exclude<keyof I_1["clan_event_created"], keyof CreateEventRequest>]: never; }) | undefined;
|
|
15384
15418
|
role_assign_event?: ({
|
|
15385
15419
|
ClanId?: string | undefined;
|
|
15386
15420
|
role_id?: string | undefined;
|
|
@@ -15389,16 +15423,16 @@ export declare const Envelope: {
|
|
|
15389
15423
|
} & {
|
|
15390
15424
|
ClanId?: string | undefined;
|
|
15391
15425
|
role_id?: string | undefined;
|
|
15392
|
-
user_ids_assigned?: (string[] & string[] & { [
|
|
15393
|
-
user_ids_removed?: (string[] & string[] & { [
|
|
15394
|
-
} & { [
|
|
15426
|
+
user_ids_assigned?: (string[] & string[] & { [K_513 in Exclude<keyof I_1["role_assign_event"]["user_ids_assigned"], keyof string[]>]: never; }) | undefined;
|
|
15427
|
+
user_ids_removed?: (string[] & string[] & { [K_514 in Exclude<keyof I_1["role_assign_event"]["user_ids_removed"], keyof string[]>]: never; }) | undefined;
|
|
15428
|
+
} & { [K_515 in Exclude<keyof I_1["role_assign_event"], keyof RoleAssignedEvent>]: never; }) | undefined;
|
|
15395
15429
|
clan_deleted_event?: ({
|
|
15396
15430
|
clan_id?: string | undefined;
|
|
15397
15431
|
deletor?: string | undefined;
|
|
15398
15432
|
} & {
|
|
15399
15433
|
clan_id?: string | undefined;
|
|
15400
15434
|
deletor?: string | undefined;
|
|
15401
|
-
} & { [
|
|
15435
|
+
} & { [K_516 in Exclude<keyof I_1["clan_deleted_event"], keyof ClanDeletedEvent>]: never; }) | undefined;
|
|
15402
15436
|
give_coffee_event?: ({
|
|
15403
15437
|
sender_id?: string | undefined;
|
|
15404
15438
|
receiver_id?: string | undefined;
|
|
@@ -15413,7 +15447,7 @@ export declare const Envelope: {
|
|
|
15413
15447
|
message_ref_id?: string | undefined;
|
|
15414
15448
|
channel_id?: string | undefined;
|
|
15415
15449
|
clan_id?: string | undefined;
|
|
15416
|
-
} & { [
|
|
15450
|
+
} & { [K_517 in Exclude<keyof I_1["give_coffee_event"], keyof GiveCoffeeEvent>]: never; }) | undefined;
|
|
15417
15451
|
sticker_create_event?: ({
|
|
15418
15452
|
clan_id?: string | undefined;
|
|
15419
15453
|
source?: string | undefined;
|
|
@@ -15432,7 +15466,7 @@ export declare const Envelope: {
|
|
|
15432
15466
|
sticker_id?: string | undefined;
|
|
15433
15467
|
logo?: string | undefined;
|
|
15434
15468
|
clan_name?: string | undefined;
|
|
15435
|
-
} & { [
|
|
15469
|
+
} & { [K_518 in Exclude<keyof I_1["sticker_create_event"], keyof StickerCreateEvent>]: never; }) | undefined;
|
|
15436
15470
|
sticker_update_event?: ({
|
|
15437
15471
|
shortname?: string | undefined;
|
|
15438
15472
|
sticker_id?: string | undefined;
|
|
@@ -15441,14 +15475,14 @@ export declare const Envelope: {
|
|
|
15441
15475
|
shortname?: string | undefined;
|
|
15442
15476
|
sticker_id?: string | undefined;
|
|
15443
15477
|
user_id?: string | undefined;
|
|
15444
|
-
} & { [
|
|
15478
|
+
} & { [K_519 in Exclude<keyof I_1["sticker_update_event"], keyof StickerUpdateEvent>]: never; }) | undefined;
|
|
15445
15479
|
sticker_delete_event?: ({
|
|
15446
15480
|
sticker_id?: string | undefined;
|
|
15447
15481
|
user_id?: string | undefined;
|
|
15448
15482
|
} & {
|
|
15449
15483
|
sticker_id?: string | undefined;
|
|
15450
15484
|
user_id?: string | undefined;
|
|
15451
|
-
} & { [
|
|
15485
|
+
} & { [K_520 in Exclude<keyof I_1["sticker_delete_event"], keyof StickerDeleteEvent>]: never; }) | undefined;
|
|
15452
15486
|
role_event?: ({
|
|
15453
15487
|
role?: {
|
|
15454
15488
|
id?: string | undefined;
|
|
@@ -15586,7 +15620,7 @@ export declare const Envelope: {
|
|
|
15586
15620
|
lang_tag?: string | undefined;
|
|
15587
15621
|
location?: string | undefined;
|
|
15588
15622
|
online?: boolean | undefined;
|
|
15589
|
-
} & { [
|
|
15623
|
+
} & { [K_521 in Exclude<keyof I_1["role_event"]["role"]["role_user_list"]["role_users"][number], keyof import("../api/api").RoleUserList_RoleUser>]: never; })[] & { [K_522 in Exclude<keyof I_1["role_event"]["role"]["role_user_list"]["role_users"], keyof {
|
|
15590
15624
|
id?: string | undefined;
|
|
15591
15625
|
username?: string | undefined;
|
|
15592
15626
|
display_name?: string | undefined;
|
|
@@ -15596,7 +15630,7 @@ export declare const Envelope: {
|
|
|
15596
15630
|
online?: boolean | undefined;
|
|
15597
15631
|
}[]>]: never; }) | undefined;
|
|
15598
15632
|
cursor?: string | undefined;
|
|
15599
|
-
} & { [
|
|
15633
|
+
} & { [K_523 in Exclude<keyof I_1["role_event"]["role"]["role_user_list"], keyof RoleUserList>]: never; }) | undefined;
|
|
15600
15634
|
permission_list?: ({
|
|
15601
15635
|
permissions?: {
|
|
15602
15636
|
id?: string | undefined;
|
|
@@ -15633,7 +15667,7 @@ export declare const Envelope: {
|
|
|
15633
15667
|
active?: number | undefined;
|
|
15634
15668
|
scope?: number | undefined;
|
|
15635
15669
|
level?: number | undefined;
|
|
15636
|
-
} & { [
|
|
15670
|
+
} & { [K_524 in Exclude<keyof I_1["role_event"]["role"]["permission_list"]["permissions"][number], keyof import("../api/api").Permission>]: never; })[] & { [K_525 in Exclude<keyof I_1["role_event"]["role"]["permission_list"]["permissions"], keyof {
|
|
15637
15671
|
id?: string | undefined;
|
|
15638
15672
|
title?: string | undefined;
|
|
15639
15673
|
slug?: string | undefined;
|
|
@@ -15643,19 +15677,19 @@ export declare const Envelope: {
|
|
|
15643
15677
|
level?: number | undefined;
|
|
15644
15678
|
}[]>]: never; }) | undefined;
|
|
15645
15679
|
max_level_permission?: number | undefined;
|
|
15646
|
-
} & { [
|
|
15680
|
+
} & { [K_526 in Exclude<keyof I_1["role_event"]["role"]["permission_list"], keyof PermissionList>]: never; }) | undefined;
|
|
15647
15681
|
role_channel_active?: number | undefined;
|
|
15648
|
-
channel_ids?: (string[] & string[] & { [
|
|
15682
|
+
channel_ids?: (string[] & string[] & { [K_527 in Exclude<keyof I_1["role_event"]["role"]["channel_ids"], keyof string[]>]: never; }) | undefined;
|
|
15649
15683
|
max_level_permission?: number | undefined;
|
|
15650
15684
|
order_role?: number | undefined;
|
|
15651
|
-
} & { [
|
|
15685
|
+
} & { [K_528 in Exclude<keyof I_1["role_event"]["role"], keyof Role>]: never; }) | undefined;
|
|
15652
15686
|
status?: number | undefined;
|
|
15653
15687
|
user_id?: string | undefined;
|
|
15654
|
-
user_add_ids?: (string[] & string[] & { [
|
|
15655
|
-
user_remove_ids?: (string[] & string[] & { [
|
|
15656
|
-
active_permission_ids?: (string[] & string[] & { [
|
|
15657
|
-
remove_permission_ids?: (string[] & string[] & { [
|
|
15658
|
-
} & { [
|
|
15688
|
+
user_add_ids?: (string[] & string[] & { [K_529 in Exclude<keyof I_1["role_event"]["user_add_ids"], keyof string[]>]: never; }) | undefined;
|
|
15689
|
+
user_remove_ids?: (string[] & string[] & { [K_530 in Exclude<keyof I_1["role_event"]["user_remove_ids"], keyof string[]>]: never; }) | undefined;
|
|
15690
|
+
active_permission_ids?: (string[] & string[] & { [K_531 in Exclude<keyof I_1["role_event"]["active_permission_ids"], keyof string[]>]: never; }) | undefined;
|
|
15691
|
+
remove_permission_ids?: (string[] & string[] & { [K_532 in Exclude<keyof I_1["role_event"]["remove_permission_ids"], keyof string[]>]: never; }) | undefined;
|
|
15692
|
+
} & { [K_533 in Exclude<keyof I_1["role_event"], keyof RoleEvent>]: never; }) | undefined;
|
|
15659
15693
|
event_emoji?: ({
|
|
15660
15694
|
id?: string | undefined;
|
|
15661
15695
|
clan_id?: string | undefined;
|
|
@@ -15678,7 +15712,7 @@ export declare const Envelope: {
|
|
|
15678
15712
|
logo?: string | undefined;
|
|
15679
15713
|
clan_name?: string | undefined;
|
|
15680
15714
|
is_for_sale?: boolean | undefined;
|
|
15681
|
-
} & { [
|
|
15715
|
+
} & { [K_534 in Exclude<keyof I_1["event_emoji"], keyof EventEmoji>]: never; }) | undefined;
|
|
15682
15716
|
streaming_joined_event?: ({
|
|
15683
15717
|
clan_id?: string | undefined;
|
|
15684
15718
|
clan_name?: string | undefined;
|
|
@@ -15695,7 +15729,7 @@ export declare const Envelope: {
|
|
|
15695
15729
|
user_id?: string | undefined;
|
|
15696
15730
|
streaming_channel_label?: string | undefined;
|
|
15697
15731
|
streaming_channel_id?: string | undefined;
|
|
15698
|
-
} & { [
|
|
15732
|
+
} & { [K_535 in Exclude<keyof I_1["streaming_joined_event"], keyof StreamingJoinedEvent>]: never; }) | undefined;
|
|
15699
15733
|
streaming_leaved_event?: ({
|
|
15700
15734
|
id?: string | undefined;
|
|
15701
15735
|
clan_id?: string | undefined;
|
|
@@ -15706,7 +15740,7 @@ export declare const Envelope: {
|
|
|
15706
15740
|
clan_id?: string | undefined;
|
|
15707
15741
|
streaming_channel_id?: string | undefined;
|
|
15708
15742
|
streaming_user_id?: string | undefined;
|
|
15709
|
-
} & { [
|
|
15743
|
+
} & { [K_536 in Exclude<keyof I_1["streaming_leaved_event"], keyof StreamingLeavedEvent>]: never; }) | undefined;
|
|
15710
15744
|
streaming_started_event?: ({
|
|
15711
15745
|
clan_id?: string | undefined;
|
|
15712
15746
|
channel_id?: string | undefined;
|
|
@@ -15717,14 +15751,14 @@ export declare const Envelope: {
|
|
|
15717
15751
|
channel_id?: string | undefined;
|
|
15718
15752
|
streaming_url?: string | undefined;
|
|
15719
15753
|
is_streaming?: boolean | undefined;
|
|
15720
|
-
} & { [
|
|
15754
|
+
} & { [K_537 in Exclude<keyof I_1["streaming_started_event"], keyof StreamingStartedEvent>]: never; }) | undefined;
|
|
15721
15755
|
streaming_ended_event?: ({
|
|
15722
15756
|
clan_id?: string | undefined;
|
|
15723
15757
|
channel_id?: string | undefined;
|
|
15724
15758
|
} & {
|
|
15725
15759
|
clan_id?: string | undefined;
|
|
15726
15760
|
channel_id?: string | undefined;
|
|
15727
|
-
} & { [
|
|
15761
|
+
} & { [K_538 in Exclude<keyof I_1["streaming_ended_event"], keyof StreamingEndedEvent>]: never; }) | undefined;
|
|
15728
15762
|
permission_set_event?: ({
|
|
15729
15763
|
caller?: string | undefined;
|
|
15730
15764
|
role_id?: string | undefined;
|
|
@@ -15752,12 +15786,12 @@ export declare const Envelope: {
|
|
|
15752
15786
|
permission_id?: string | undefined;
|
|
15753
15787
|
slug?: string | undefined;
|
|
15754
15788
|
type?: number | undefined;
|
|
15755
|
-
} & { [
|
|
15789
|
+
} & { [K_539 in Exclude<keyof I_1["permission_set_event"]["permission_updates"][number], keyof PermissionUpdate>]: never; })[] & { [K_540 in Exclude<keyof I_1["permission_set_event"]["permission_updates"], keyof {
|
|
15756
15790
|
permission_id?: string | undefined;
|
|
15757
15791
|
slug?: string | undefined;
|
|
15758
15792
|
type?: number | undefined;
|
|
15759
15793
|
}[]>]: never; }) | undefined;
|
|
15760
|
-
} & { [
|
|
15794
|
+
} & { [K_541 in Exclude<keyof I_1["permission_set_event"], keyof PermissionSetEvent>]: never; }) | undefined;
|
|
15761
15795
|
permission_changed_event?: ({
|
|
15762
15796
|
user_id?: string | undefined;
|
|
15763
15797
|
channel_id?: string | undefined;
|
|
@@ -15791,7 +15825,7 @@ export declare const Envelope: {
|
|
|
15791
15825
|
permission_id?: string | undefined;
|
|
15792
15826
|
slug?: string | undefined;
|
|
15793
15827
|
type?: number | undefined;
|
|
15794
|
-
} & { [
|
|
15828
|
+
} & { [K_542 in Exclude<keyof I_1["permission_changed_event"]["add_permissions"][number], keyof PermissionUpdate>]: never; })[] & { [K_543 in Exclude<keyof I_1["permission_changed_event"]["add_permissions"], keyof {
|
|
15795
15829
|
permission_id?: string | undefined;
|
|
15796
15830
|
slug?: string | undefined;
|
|
15797
15831
|
type?: number | undefined;
|
|
@@ -15808,7 +15842,7 @@ export declare const Envelope: {
|
|
|
15808
15842
|
permission_id?: string | undefined;
|
|
15809
15843
|
slug?: string | undefined;
|
|
15810
15844
|
type?: number | undefined;
|
|
15811
|
-
} & { [
|
|
15845
|
+
} & { [K_544 in Exclude<keyof I_1["permission_changed_event"]["remove_permissions"][number], keyof PermissionUpdate>]: never; })[] & { [K_545 in Exclude<keyof I_1["permission_changed_event"]["remove_permissions"], keyof {
|
|
15812
15846
|
permission_id?: string | undefined;
|
|
15813
15847
|
slug?: string | undefined;
|
|
15814
15848
|
type?: number | undefined;
|
|
@@ -15825,12 +15859,12 @@ export declare const Envelope: {
|
|
|
15825
15859
|
permission_id?: string | undefined;
|
|
15826
15860
|
slug?: string | undefined;
|
|
15827
15861
|
type?: number | undefined;
|
|
15828
|
-
} & { [
|
|
15862
|
+
} & { [K_546 in Exclude<keyof I_1["permission_changed_event"]["default_permissions"][number], keyof PermissionUpdate>]: never; })[] & { [K_547 in Exclude<keyof I_1["permission_changed_event"]["default_permissions"], keyof {
|
|
15829
15863
|
permission_id?: string | undefined;
|
|
15830
15864
|
slug?: string | undefined;
|
|
15831
15865
|
type?: number | undefined;
|
|
15832
15866
|
}[]>]: never; }) | undefined;
|
|
15833
|
-
} & { [
|
|
15867
|
+
} & { [K_548 in Exclude<keyof I_1["permission_changed_event"], keyof PermissionChangedEvent>]: never; }) | undefined;
|
|
15834
15868
|
token_sent_event?: ({
|
|
15835
15869
|
sender_id?: string | undefined;
|
|
15836
15870
|
sender_name?: string | undefined;
|
|
@@ -15847,7 +15881,7 @@ export declare const Envelope: {
|
|
|
15847
15881
|
note?: string | undefined;
|
|
15848
15882
|
extra_attribute?: string | undefined;
|
|
15849
15883
|
transaction_id?: string | undefined;
|
|
15850
|
-
} & { [
|
|
15884
|
+
} & { [K_549 in Exclude<keyof I_1["token_sent_event"], keyof TokenSentEvent>]: never; }) | undefined;
|
|
15851
15885
|
message_button_clicked?: ({
|
|
15852
15886
|
message_id?: string | undefined;
|
|
15853
15887
|
channel_id?: string | undefined;
|
|
@@ -15862,7 +15896,7 @@ export declare const Envelope: {
|
|
|
15862
15896
|
sender_id?: string | undefined;
|
|
15863
15897
|
user_id?: string | undefined;
|
|
15864
15898
|
extra_data?: string | undefined;
|
|
15865
|
-
} & { [
|
|
15899
|
+
} & { [K_550 in Exclude<keyof I_1["message_button_clicked"], keyof MessageButtonClicked>]: never; }) | undefined;
|
|
15866
15900
|
unmute_event?: ({
|
|
15867
15901
|
channel_id?: string | undefined;
|
|
15868
15902
|
category_id?: string | undefined;
|
|
@@ -15871,7 +15905,7 @@ export declare const Envelope: {
|
|
|
15871
15905
|
channel_id?: string | undefined;
|
|
15872
15906
|
category_id?: string | undefined;
|
|
15873
15907
|
clan_id?: string | undefined;
|
|
15874
|
-
} & { [
|
|
15908
|
+
} & { [K_551 in Exclude<keyof I_1["unmute_event"], keyof UnmuteEvent>]: never; }) | undefined;
|
|
15875
15909
|
webrtc_signaling_fwd?: ({
|
|
15876
15910
|
receiver_id?: string | undefined;
|
|
15877
15911
|
data_type?: number | undefined;
|
|
@@ -15884,7 +15918,7 @@ export declare const Envelope: {
|
|
|
15884
15918
|
json_data?: string | undefined;
|
|
15885
15919
|
channel_id?: string | undefined;
|
|
15886
15920
|
caller_id?: string | undefined;
|
|
15887
|
-
} & { [
|
|
15921
|
+
} & { [K_552 in Exclude<keyof I_1["webrtc_signaling_fwd"], keyof WebrtcSignalingFwd>]: never; }) | undefined;
|
|
15888
15922
|
list_activity?: ({
|
|
15889
15923
|
acts?: {
|
|
15890
15924
|
user_id?: string | undefined;
|
|
@@ -15924,7 +15958,7 @@ export declare const Envelope: {
|
|
|
15924
15958
|
end_time?: Date | undefined;
|
|
15925
15959
|
application_id?: string | undefined;
|
|
15926
15960
|
status?: number | undefined;
|
|
15927
|
-
} & { [
|
|
15961
|
+
} & { [K_553 in Exclude<keyof I_1["list_activity"]["acts"][number], keyof UserActivity>]: never; })[] & { [K_554 in Exclude<keyof I_1["list_activity"]["acts"], keyof {
|
|
15928
15962
|
user_id?: string | undefined;
|
|
15929
15963
|
activity_name?: string | undefined;
|
|
15930
15964
|
activity_type?: number | undefined;
|
|
@@ -15934,7 +15968,7 @@ export declare const Envelope: {
|
|
|
15934
15968
|
application_id?: string | undefined;
|
|
15935
15969
|
status?: number | undefined;
|
|
15936
15970
|
}[]>]: never; }) | undefined;
|
|
15937
|
-
} & { [
|
|
15971
|
+
} & { [K_555 in Exclude<keyof I_1["list_activity"], "acts">]: never; }) | undefined;
|
|
15938
15972
|
dropdown_box_selected?: ({
|
|
15939
15973
|
message_id?: string | undefined;
|
|
15940
15974
|
channel_id?: string | undefined;
|
|
@@ -15948,8 +15982,8 @@ export declare const Envelope: {
|
|
|
15948
15982
|
selectbox_id?: string | undefined;
|
|
15949
15983
|
sender_id?: string | undefined;
|
|
15950
15984
|
user_id?: string | undefined;
|
|
15951
|
-
values?: (string[] & string[] & { [
|
|
15952
|
-
} & { [
|
|
15985
|
+
values?: (string[] & string[] & { [K_556 in Exclude<keyof I_1["dropdown_box_selected"]["values"], keyof string[]>]: never; }) | undefined;
|
|
15986
|
+
} & { [K_557 in Exclude<keyof I_1["dropdown_box_selected"], keyof DropdownBoxSelected>]: never; }) | undefined;
|
|
15953
15987
|
incoming_call_push?: ({
|
|
15954
15988
|
receiver_id?: string | undefined;
|
|
15955
15989
|
json_data?: string | undefined;
|
|
@@ -15960,7 +15994,7 @@ export declare const Envelope: {
|
|
|
15960
15994
|
json_data?: string | undefined;
|
|
15961
15995
|
channel_id?: string | undefined;
|
|
15962
15996
|
caller_id?: string | undefined;
|
|
15963
|
-
} & { [
|
|
15997
|
+
} & { [K_558 in Exclude<keyof I_1["incoming_call_push"], keyof IncomingCallPush>]: never; }) | undefined;
|
|
15964
15998
|
sd_topic_event?: ({
|
|
15965
15999
|
id?: string | undefined;
|
|
15966
16000
|
clan_id?: string | undefined;
|
|
@@ -16032,8 +16066,8 @@ export declare const Envelope: {
|
|
|
16032
16066
|
reference?: string | undefined;
|
|
16033
16067
|
mention?: string | undefined;
|
|
16034
16068
|
reaction?: string | undefined;
|
|
16035
|
-
repliers?: (string[] & string[] & { [
|
|
16036
|
-
} & { [
|
|
16069
|
+
repliers?: (string[] & string[] & { [K_559 in Exclude<keyof I_1["sd_topic_event"]["last_sent_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
16070
|
+
} & { [K_560 in Exclude<keyof I_1["sd_topic_event"]["last_sent_message"], keyof ChannelMessageHeader>]: never; }) | undefined;
|
|
16037
16071
|
message?: ({
|
|
16038
16072
|
clan_id?: string | undefined;
|
|
16039
16073
|
channel_id?: string | undefined;
|
|
@@ -16090,9 +16124,9 @@ export declare const Envelope: {
|
|
|
16090
16124
|
hide_editted?: boolean | undefined;
|
|
16091
16125
|
is_public?: boolean | undefined;
|
|
16092
16126
|
topic_id?: string | undefined;
|
|
16093
|
-
} & { [
|
|
16094
|
-
} & { [
|
|
16095
|
-
follow_event?: ({} & {} & { [
|
|
16127
|
+
} & { [K_561 in Exclude<keyof I_1["sd_topic_event"]["message"], keyof ChannelMessage>]: never; }) | undefined;
|
|
16128
|
+
} & { [K_562 in Exclude<keyof I_1["sd_topic_event"], keyof SdTopicEvent>]: never; }) | undefined;
|
|
16129
|
+
follow_event?: ({} & {} & { [K_563 in Exclude<keyof I_1["follow_event"], never>]: never; }) | undefined;
|
|
16096
16130
|
channel_app_event?: ({
|
|
16097
16131
|
user_id?: string | undefined;
|
|
16098
16132
|
username?: string | undefined;
|
|
@@ -16105,19 +16139,19 @@ export declare const Envelope: {
|
|
|
16105
16139
|
clan_id?: string | undefined;
|
|
16106
16140
|
channel_id?: string | undefined;
|
|
16107
16141
|
action?: number | undefined;
|
|
16108
|
-
} & { [
|
|
16142
|
+
} & { [K_564 in Exclude<keyof I_1["channel_app_event"], keyof ChannelAppEvent>]: never; }) | undefined;
|
|
16109
16143
|
user_status_event?: ({
|
|
16110
16144
|
user_id?: string | undefined;
|
|
16111
16145
|
custom_status?: string | undefined;
|
|
16112
16146
|
} & {
|
|
16113
16147
|
user_id?: string | undefined;
|
|
16114
16148
|
custom_status?: string | undefined;
|
|
16115
|
-
} & { [
|
|
16149
|
+
} & { [K_565 in Exclude<keyof I_1["user_status_event"], keyof UserStatusEvent>]: never; }) | undefined;
|
|
16116
16150
|
remove_friend?: ({
|
|
16117
16151
|
user_id?: string | undefined;
|
|
16118
16152
|
} & {
|
|
16119
16153
|
user_id?: string | undefined;
|
|
16120
|
-
} & { [
|
|
16154
|
+
} & { [K_566 in Exclude<keyof I_1["remove_friend"], "user_id">]: never; }) | undefined;
|
|
16121
16155
|
webhook_event?: ({
|
|
16122
16156
|
id?: string | undefined;
|
|
16123
16157
|
webhook_name?: string | undefined;
|
|
@@ -16142,7 +16176,7 @@ export declare const Envelope: {
|
|
|
16142
16176
|
avatar?: string | undefined;
|
|
16143
16177
|
status?: number | undefined;
|
|
16144
16178
|
clan_id?: string | undefined;
|
|
16145
|
-
} & { [
|
|
16179
|
+
} & { [K_567 in Exclude<keyof I_1["webhook_event"], keyof Webhook>]: never; }) | undefined;
|
|
16146
16180
|
noti_user_channel?: ({
|
|
16147
16181
|
id?: string | undefined;
|
|
16148
16182
|
notification_setting_type?: number | undefined;
|
|
@@ -16155,7 +16189,7 @@ export declare const Envelope: {
|
|
|
16155
16189
|
time_mute?: Date | undefined;
|
|
16156
16190
|
active?: number | undefined;
|
|
16157
16191
|
channel_id?: string | undefined;
|
|
16158
|
-
} & { [
|
|
16192
|
+
} & { [K_568 in Exclude<keyof I_1["noti_user_channel"], keyof NotificationUserChannel>]: never; }) | undefined;
|
|
16159
16193
|
join_channel_app_data?: ({
|
|
16160
16194
|
user_id?: string | undefined;
|
|
16161
16195
|
username?: string | undefined;
|
|
@@ -16164,7 +16198,7 @@ export declare const Envelope: {
|
|
|
16164
16198
|
user_id?: string | undefined;
|
|
16165
16199
|
username?: string | undefined;
|
|
16166
16200
|
hash?: string | undefined;
|
|
16167
|
-
} & { [
|
|
16201
|
+
} & { [K_569 in Exclude<keyof I_1["join_channel_app_data"], keyof JoinChannelAppData>]: never; }) | undefined;
|
|
16168
16202
|
canvas_event?: ({
|
|
16169
16203
|
id?: string | undefined;
|
|
16170
16204
|
title?: string | undefined;
|
|
@@ -16183,7 +16217,7 @@ export declare const Envelope: {
|
|
|
16183
16217
|
is_default?: boolean | undefined;
|
|
16184
16218
|
channel_id?: string | undefined;
|
|
16185
16219
|
status?: number | undefined;
|
|
16186
|
-
} & { [
|
|
16220
|
+
} & { [K_570 in Exclude<keyof I_1["canvas_event"], keyof ChannelCanvas>]: never; }) | undefined;
|
|
16187
16221
|
unpin_message_event?: ({
|
|
16188
16222
|
id?: string | undefined;
|
|
16189
16223
|
message_id?: string | undefined;
|
|
@@ -16194,7 +16228,7 @@ export declare const Envelope: {
|
|
|
16194
16228
|
message_id?: string | undefined;
|
|
16195
16229
|
channel_id?: string | undefined;
|
|
16196
16230
|
clan_id?: string | undefined;
|
|
16197
|
-
} & { [
|
|
16231
|
+
} & { [K_571 in Exclude<keyof I_1["unpin_message_event"], keyof UnpinMessageEvent>]: never; }) | undefined;
|
|
16198
16232
|
category_event?: ({
|
|
16199
16233
|
creator_id?: string | undefined;
|
|
16200
16234
|
clan_id?: string | undefined;
|
|
@@ -16207,7 +16241,7 @@ export declare const Envelope: {
|
|
|
16207
16241
|
category_name?: string | undefined;
|
|
16208
16242
|
id?: string | undefined;
|
|
16209
16243
|
status?: number | undefined;
|
|
16210
|
-
} & { [
|
|
16244
|
+
} & { [K_572 in Exclude<keyof I_1["category_event"], keyof CategoryEvent>]: never; }) | undefined;
|
|
16211
16245
|
handle_participant_meet_state_event?: ({
|
|
16212
16246
|
clan_id?: string | undefined;
|
|
16213
16247
|
channel_id?: string | undefined;
|
|
@@ -16220,12 +16254,12 @@ export declare const Envelope: {
|
|
|
16220
16254
|
display_name?: string | undefined;
|
|
16221
16255
|
state?: number | undefined;
|
|
16222
16256
|
room_name?: string | undefined;
|
|
16223
|
-
} & { [
|
|
16257
|
+
} & { [K_573 in Exclude<keyof I_1["handle_participant_meet_state_event"], keyof HandleParticipantMeetStateEvent>]: never; }) | undefined;
|
|
16224
16258
|
delete_account_event?: ({
|
|
16225
16259
|
user_id?: string | undefined;
|
|
16226
16260
|
} & {
|
|
16227
16261
|
user_id?: string | undefined;
|
|
16228
|
-
} & { [
|
|
16262
|
+
} & { [K_574 in Exclude<keyof I_1["delete_account_event"], "user_id">]: never; }) | undefined;
|
|
16229
16263
|
ephemeral_message_send?: ({
|
|
16230
16264
|
message?: {
|
|
16231
16265
|
clan_id?: string | undefined;
|
|
@@ -16345,7 +16379,7 @@ export declare const Envelope: {
|
|
|
16345
16379
|
create_time?: Date | undefined;
|
|
16346
16380
|
s?: number | undefined;
|
|
16347
16381
|
e?: number | undefined;
|
|
16348
|
-
} & { [
|
|
16382
|
+
} & { [K_575 in Exclude<keyof I_1["ephemeral_message_send"]["message"]["mentions"][number], keyof MessageMention>]: never; })[] & { [K_576 in Exclude<keyof I_1["ephemeral_message_send"]["message"]["mentions"], keyof {
|
|
16349
16383
|
id?: string | undefined;
|
|
16350
16384
|
user_id?: string | undefined;
|
|
16351
16385
|
username?: string | undefined;
|
|
@@ -16379,7 +16413,7 @@ export declare const Envelope: {
|
|
|
16379
16413
|
width?: number | undefined;
|
|
16380
16414
|
height?: number | undefined;
|
|
16381
16415
|
thumbnail?: string | undefined;
|
|
16382
|
-
} & { [
|
|
16416
|
+
} & { [K_577 in Exclude<keyof I_1["ephemeral_message_send"]["message"]["attachments"][number], keyof MessageAttachment>]: never; })[] & { [K_578 in Exclude<keyof I_1["ephemeral_message_send"]["message"]["attachments"], keyof {
|
|
16383
16417
|
filename?: string | undefined;
|
|
16384
16418
|
size?: number | undefined;
|
|
16385
16419
|
url?: string | undefined;
|
|
@@ -16421,7 +16455,7 @@ export declare const Envelope: {
|
|
|
16421
16455
|
mesages_sender_avatar?: string | undefined;
|
|
16422
16456
|
message_sender_clan_nick?: string | undefined;
|
|
16423
16457
|
message_sender_display_name?: string | undefined;
|
|
16424
|
-
} & { [
|
|
16458
|
+
} & { [K_579 in Exclude<keyof I_1["ephemeral_message_send"]["message"]["references"][number], keyof MessageRef>]: never; })[] & { [K_580 in Exclude<keyof I_1["ephemeral_message_send"]["message"]["references"], keyof {
|
|
16425
16459
|
message_id?: string | undefined;
|
|
16426
16460
|
message_ref_id?: string | undefined;
|
|
16427
16461
|
content?: string | undefined;
|
|
@@ -16440,25 +16474,25 @@ export declare const Envelope: {
|
|
|
16440
16474
|
is_public?: boolean | undefined;
|
|
16441
16475
|
code?: number | undefined;
|
|
16442
16476
|
topic_id?: string | undefined;
|
|
16443
|
-
} & { [
|
|
16477
|
+
} & { [K_581 in Exclude<keyof I_1["ephemeral_message_send"]["message"], keyof ChannelMessageSend>]: never; }) | undefined;
|
|
16444
16478
|
receiver_id?: string | undefined;
|
|
16445
|
-
} & { [
|
|
16479
|
+
} & { [K_582 in Exclude<keyof I_1["ephemeral_message_send"], keyof EphemeralMessageSend>]: never; }) | undefined;
|
|
16446
16480
|
block_friend?: ({
|
|
16447
16481
|
user_id?: string | undefined;
|
|
16448
16482
|
} & {
|
|
16449
16483
|
user_id?: string | undefined;
|
|
16450
|
-
} & { [
|
|
16484
|
+
} & { [K_583 in Exclude<keyof I_1["block_friend"], "user_id">]: never; }) | undefined;
|
|
16451
16485
|
voice_reaction_send?: ({
|
|
16452
16486
|
emojis?: string[] | undefined;
|
|
16453
16487
|
channel_id?: string | undefined;
|
|
16454
16488
|
sender_id?: string | undefined;
|
|
16455
16489
|
media_type?: number | undefined;
|
|
16456
16490
|
} & {
|
|
16457
|
-
emojis?: (string[] & string[] & { [
|
|
16491
|
+
emojis?: (string[] & string[] & { [K_584 in Exclude<keyof I_1["voice_reaction_send"]["emojis"], keyof string[]>]: never; }) | undefined;
|
|
16458
16492
|
channel_id?: string | undefined;
|
|
16459
16493
|
sender_id?: string | undefined;
|
|
16460
16494
|
media_type?: number | undefined;
|
|
16461
|
-
} & { [
|
|
16495
|
+
} & { [K_585 in Exclude<keyof I_1["voice_reaction_send"], keyof VoiceReactionSend>]: never; }) | undefined;
|
|
16462
16496
|
mark_as_read?: ({
|
|
16463
16497
|
channel_id?: string | undefined;
|
|
16464
16498
|
category_id?: string | undefined;
|
|
@@ -16467,7 +16501,7 @@ export declare const Envelope: {
|
|
|
16467
16501
|
channel_id?: string | undefined;
|
|
16468
16502
|
category_id?: string | undefined;
|
|
16469
16503
|
clan_id?: string | undefined;
|
|
16470
|
-
} & { [
|
|
16504
|
+
} & { [K_586 in Exclude<keyof I_1["mark_as_read"], keyof MarkAsRead>]: never; }) | undefined;
|
|
16471
16505
|
list_data_socket?: ({
|
|
16472
16506
|
api_name?: string | undefined;
|
|
16473
16507
|
list_clan_req?: {
|
|
@@ -16728,6 +16762,7 @@ export declare const Envelope: {
|
|
|
16728
16762
|
clan_avatar?: string | undefined;
|
|
16729
16763
|
clan_id?: string | undefined;
|
|
16730
16764
|
added_by?: string | undefined;
|
|
16765
|
+
is_banned?: boolean | undefined;
|
|
16731
16766
|
}[] | undefined;
|
|
16732
16767
|
cursor?: string | undefined;
|
|
16733
16768
|
channel_id?: string | undefined;
|
|
@@ -17347,7 +17382,7 @@ export declare const Envelope: {
|
|
|
17347
17382
|
limit?: number | undefined;
|
|
17348
17383
|
state?: number | undefined;
|
|
17349
17384
|
cursor?: string | undefined;
|
|
17350
|
-
} & { [
|
|
17385
|
+
} & { [K_587 in Exclude<keyof I_1["list_data_socket"]["list_clan_req"], keyof ListClanDescRequest>]: never; }) | undefined;
|
|
17351
17386
|
clan_desc_list?: ({
|
|
17352
17387
|
clandesc?: {
|
|
17353
17388
|
creator_id?: string | undefined;
|
|
@@ -17427,7 +17462,7 @@ export declare const Envelope: {
|
|
|
17427
17462
|
short_url?: string | undefined;
|
|
17428
17463
|
prevent_anonymous?: boolean | undefined;
|
|
17429
17464
|
has_unread_message?: boolean | undefined;
|
|
17430
|
-
} & { [
|
|
17465
|
+
} & { [K_588 in Exclude<keyof I_1["list_data_socket"]["clan_desc_list"]["clandesc"][number], keyof import("../api/api").ClanDesc>]: never; })[] & { [K_589 in Exclude<keyof I_1["list_data_socket"]["clan_desc_list"]["clandesc"], keyof {
|
|
17431
17466
|
creator_id?: string | undefined;
|
|
17432
17467
|
clan_name?: string | undefined;
|
|
17433
17468
|
logo?: string | undefined;
|
|
@@ -17447,7 +17482,7 @@ export declare const Envelope: {
|
|
|
17447
17482
|
prevent_anonymous?: boolean | undefined;
|
|
17448
17483
|
has_unread_message?: boolean | undefined;
|
|
17449
17484
|
}[]>]: never; }) | undefined;
|
|
17450
|
-
} & { [
|
|
17485
|
+
} & { [K_590 in Exclude<keyof I_1["list_data_socket"]["clan_desc_list"], "clandesc">]: never; }) | undefined;
|
|
17451
17486
|
list_thread_req?: ({
|
|
17452
17487
|
limit?: number | undefined;
|
|
17453
17488
|
state?: number | undefined;
|
|
@@ -17462,7 +17497,7 @@ export declare const Envelope: {
|
|
|
17462
17497
|
channel_id?: string | undefined;
|
|
17463
17498
|
thread_id?: string | undefined;
|
|
17464
17499
|
page?: number | undefined;
|
|
17465
|
-
} & { [
|
|
17500
|
+
} & { [K_591 in Exclude<keyof I_1["list_data_socket"]["list_thread_req"], keyof ListThreadRequest>]: never; }) | undefined;
|
|
17466
17501
|
channel_desc_list?: ({
|
|
17467
17502
|
channeldesc?: {
|
|
17468
17503
|
clan_id?: string | undefined;
|
|
@@ -17636,8 +17671,8 @@ export declare const Envelope: {
|
|
|
17636
17671
|
creator_id?: string | undefined;
|
|
17637
17672
|
channel_label?: string | undefined;
|
|
17638
17673
|
channel_private?: number | undefined;
|
|
17639
|
-
avatars?: (string[] & string[] & { [
|
|
17640
|
-
user_ids?: (string[] & string[] & { [
|
|
17674
|
+
avatars?: (string[] & string[] & { [K_592 in Exclude<keyof I_1["list_data_socket"]["channel_desc_list"]["channeldesc"][number]["avatars"], keyof string[]>]: never; }) | undefined;
|
|
17675
|
+
user_ids?: (string[] & string[] & { [K_593 in Exclude<keyof I_1["list_data_socket"]["channel_desc_list"]["channeldesc"][number]["user_ids"], keyof string[]>]: never; }) | undefined;
|
|
17641
17676
|
last_sent_message?: ({
|
|
17642
17677
|
id?: string | undefined;
|
|
17643
17678
|
timestamp_seconds?: number | undefined;
|
|
@@ -17657,8 +17692,8 @@ export declare const Envelope: {
|
|
|
17657
17692
|
reference?: string | undefined;
|
|
17658
17693
|
mention?: string | undefined;
|
|
17659
17694
|
reaction?: string | undefined;
|
|
17660
|
-
repliers?: (string[] & string[] & { [
|
|
17661
|
-
} & { [
|
|
17695
|
+
repliers?: (string[] & string[] & { [K_594 in Exclude<keyof I_1["list_data_socket"]["channel_desc_list"]["channeldesc"][number]["last_sent_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
17696
|
+
} & { [K_595 in Exclude<keyof I_1["list_data_socket"]["channel_desc_list"]["channeldesc"][number]["last_sent_message"], keyof ChannelMessageHeader>]: never; }) | undefined;
|
|
17662
17697
|
last_seen_message?: ({
|
|
17663
17698
|
id?: string | undefined;
|
|
17664
17699
|
timestamp_seconds?: number | undefined;
|
|
@@ -17678,18 +17713,18 @@ export declare const Envelope: {
|
|
|
17678
17713
|
reference?: string | undefined;
|
|
17679
17714
|
mention?: string | undefined;
|
|
17680
17715
|
reaction?: string | undefined;
|
|
17681
|
-
repliers?: (string[] & string[] & { [
|
|
17682
|
-
} & { [
|
|
17683
|
-
onlines?: (boolean[] & boolean[] & { [
|
|
17716
|
+
repliers?: (string[] & string[] & { [K_596 in Exclude<keyof I_1["list_data_socket"]["channel_desc_list"]["channeldesc"][number]["last_seen_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
17717
|
+
} & { [K_597 in Exclude<keyof I_1["list_data_socket"]["channel_desc_list"]["channeldesc"][number]["last_seen_message"], keyof ChannelMessageHeader>]: never; }) | undefined;
|
|
17718
|
+
onlines?: (boolean[] & boolean[] & { [K_598 in Exclude<keyof I_1["list_data_socket"]["channel_desc_list"]["channeldesc"][number]["onlines"], keyof boolean[]>]: never; }) | undefined;
|
|
17684
17719
|
meeting_code?: string | undefined;
|
|
17685
17720
|
count_mess_unread?: number | undefined;
|
|
17686
17721
|
active?: number | undefined;
|
|
17687
17722
|
last_pin_message?: string | undefined;
|
|
17688
|
-
usernames?: (string[] & string[] & { [
|
|
17723
|
+
usernames?: (string[] & string[] & { [K_599 in Exclude<keyof I_1["list_data_socket"]["channel_desc_list"]["channeldesc"][number]["usernames"], keyof string[]>]: never; }) | undefined;
|
|
17689
17724
|
creator_name?: string | undefined;
|
|
17690
17725
|
create_time_seconds?: number | undefined;
|
|
17691
17726
|
update_time_seconds?: number | undefined;
|
|
17692
|
-
display_names?: (string[] & string[] & { [
|
|
17727
|
+
display_names?: (string[] & string[] & { [K_600 in Exclude<keyof I_1["list_data_socket"]["channel_desc_list"]["channeldesc"][number]["display_names"], keyof string[]>]: never; }) | undefined;
|
|
17693
17728
|
channel_avatar?: string | undefined;
|
|
17694
17729
|
clan_name?: string | undefined;
|
|
17695
17730
|
app_id?: string | undefined;
|
|
@@ -17698,7 +17733,7 @@ export declare const Envelope: {
|
|
|
17698
17733
|
topic?: string | undefined;
|
|
17699
17734
|
e2ee?: number | undefined;
|
|
17700
17735
|
member_count?: number | undefined;
|
|
17701
|
-
} & { [
|
|
17736
|
+
} & { [K_601 in Exclude<keyof I_1["list_data_socket"]["channel_desc_list"]["channeldesc"][number], keyof ChannelDescription1>]: never; })[] & { [K_602 in Exclude<keyof I_1["list_data_socket"]["channel_desc_list"]["channeldesc"], keyof {
|
|
17702
17737
|
clan_id?: string | undefined;
|
|
17703
17738
|
parent_id?: string | undefined;
|
|
17704
17739
|
channel_id?: string | undefined;
|
|
@@ -17755,14 +17790,14 @@ export declare const Envelope: {
|
|
|
17755
17790
|
prev_cursor?: string | undefined;
|
|
17756
17791
|
cacheable_cursor?: string | undefined;
|
|
17757
17792
|
page?: number | undefined;
|
|
17758
|
-
} & { [
|
|
17793
|
+
} & { [K_603 in Exclude<keyof I_1["list_data_socket"]["channel_desc_list"], keyof ChannelDescList>]: never; }) | undefined;
|
|
17759
17794
|
list_channel_users_uc_req?: ({
|
|
17760
17795
|
channel_id?: string | undefined;
|
|
17761
17796
|
limit?: number | undefined;
|
|
17762
17797
|
} & {
|
|
17763
17798
|
channel_id?: string | undefined;
|
|
17764
17799
|
limit?: number | undefined;
|
|
17765
|
-
} & { [
|
|
17800
|
+
} & { [K_604 in Exclude<keyof I_1["list_data_socket"]["list_channel_users_uc_req"], keyof AllUsersAddChannelRequest>]: never; }) | undefined;
|
|
17766
17801
|
channel_users_uc_list?: ({
|
|
17767
17802
|
channel_id?: string | undefined;
|
|
17768
17803
|
user_ids?: string[] | undefined;
|
|
@@ -17773,18 +17808,18 @@ export declare const Envelope: {
|
|
|
17773
17808
|
onlines?: boolean[] | undefined;
|
|
17774
17809
|
} & {
|
|
17775
17810
|
channel_id?: string | undefined;
|
|
17776
|
-
user_ids?: (string[] & string[] & { [
|
|
17811
|
+
user_ids?: (string[] & string[] & { [K_605 in Exclude<keyof I_1["list_data_socket"]["channel_users_uc_list"]["user_ids"], keyof string[]>]: never; }) | undefined;
|
|
17777
17812
|
limit?: number | undefined;
|
|
17778
|
-
usernames?: (string[] & string[] & { [
|
|
17779
|
-
display_names?: (string[] & string[] & { [
|
|
17780
|
-
avatars?: (string[] & string[] & { [
|
|
17781
|
-
onlines?: (boolean[] & boolean[] & { [
|
|
17782
|
-
} & { [
|
|
17813
|
+
usernames?: (string[] & string[] & { [K_606 in Exclude<keyof I_1["list_data_socket"]["channel_users_uc_list"]["usernames"], keyof string[]>]: never; }) | undefined;
|
|
17814
|
+
display_names?: (string[] & string[] & { [K_607 in Exclude<keyof I_1["list_data_socket"]["channel_users_uc_list"]["display_names"], keyof string[]>]: never; }) | undefined;
|
|
17815
|
+
avatars?: (string[] & string[] & { [K_608 in Exclude<keyof I_1["list_data_socket"]["channel_users_uc_list"]["avatars"], keyof string[]>]: never; }) | undefined;
|
|
17816
|
+
onlines?: (boolean[] & boolean[] & { [K_609 in Exclude<keyof I_1["list_data_socket"]["channel_users_uc_list"]["onlines"], keyof boolean[]>]: never; }) | undefined;
|
|
17817
|
+
} & { [K_610 in Exclude<keyof I_1["list_data_socket"]["channel_users_uc_list"], keyof AllUsersAddChannelResponse>]: never; }) | undefined;
|
|
17783
17818
|
list_channel_detail_req?: ({
|
|
17784
17819
|
channel_id?: string | undefined;
|
|
17785
17820
|
} & {
|
|
17786
17821
|
channel_id?: string | undefined;
|
|
17787
|
-
} & { [
|
|
17822
|
+
} & { [K_611 in Exclude<keyof I_1["list_data_socket"]["list_channel_detail_req"], "channel_id">]: never; }) | undefined;
|
|
17788
17823
|
channel_desc?: ({
|
|
17789
17824
|
clan_id?: string | undefined;
|
|
17790
17825
|
parent_id?: string | undefined;
|
|
@@ -17847,8 +17882,8 @@ export declare const Envelope: {
|
|
|
17847
17882
|
creator_id?: string | undefined;
|
|
17848
17883
|
channel_label?: string | undefined;
|
|
17849
17884
|
channel_private?: number | undefined;
|
|
17850
|
-
avatars?: (string[] & string[] & { [
|
|
17851
|
-
user_ids?: (string[] & string[] & { [
|
|
17885
|
+
avatars?: (string[] & string[] & { [K_612 in Exclude<keyof I_1["list_data_socket"]["channel_desc"]["avatars"], keyof string[]>]: never; }) | undefined;
|
|
17886
|
+
user_ids?: (string[] & string[] & { [K_613 in Exclude<keyof I_1["list_data_socket"]["channel_desc"]["user_ids"], keyof string[]>]: never; }) | undefined;
|
|
17852
17887
|
last_sent_message?: ({
|
|
17853
17888
|
id?: string | undefined;
|
|
17854
17889
|
timestamp_seconds?: number | undefined;
|
|
@@ -17868,8 +17903,8 @@ export declare const Envelope: {
|
|
|
17868
17903
|
reference?: string | undefined;
|
|
17869
17904
|
mention?: string | undefined;
|
|
17870
17905
|
reaction?: string | undefined;
|
|
17871
|
-
repliers?: (string[] & string[] & { [
|
|
17872
|
-
} & { [
|
|
17906
|
+
repliers?: (string[] & string[] & { [K_614 in Exclude<keyof I_1["list_data_socket"]["channel_desc"]["last_sent_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
17907
|
+
} & { [K_615 in Exclude<keyof I_1["list_data_socket"]["channel_desc"]["last_sent_message"], keyof ChannelMessageHeader>]: never; }) | undefined;
|
|
17873
17908
|
last_seen_message?: ({
|
|
17874
17909
|
id?: string | undefined;
|
|
17875
17910
|
timestamp_seconds?: number | undefined;
|
|
@@ -17889,18 +17924,18 @@ export declare const Envelope: {
|
|
|
17889
17924
|
reference?: string | undefined;
|
|
17890
17925
|
mention?: string | undefined;
|
|
17891
17926
|
reaction?: string | undefined;
|
|
17892
|
-
repliers?: (string[] & string[] & { [
|
|
17893
|
-
} & { [
|
|
17894
|
-
onlines?: (boolean[] & boolean[] & { [
|
|
17927
|
+
repliers?: (string[] & string[] & { [K_616 in Exclude<keyof I_1["list_data_socket"]["channel_desc"]["last_seen_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
17928
|
+
} & { [K_617 in Exclude<keyof I_1["list_data_socket"]["channel_desc"]["last_seen_message"], keyof ChannelMessageHeader>]: never; }) | undefined;
|
|
17929
|
+
onlines?: (boolean[] & boolean[] & { [K_618 in Exclude<keyof I_1["list_data_socket"]["channel_desc"]["onlines"], keyof boolean[]>]: never; }) | undefined;
|
|
17895
17930
|
meeting_code?: string | undefined;
|
|
17896
17931
|
count_mess_unread?: number | undefined;
|
|
17897
17932
|
active?: number | undefined;
|
|
17898
17933
|
last_pin_message?: string | undefined;
|
|
17899
|
-
usernames?: (string[] & string[] & { [
|
|
17934
|
+
usernames?: (string[] & string[] & { [K_619 in Exclude<keyof I_1["list_data_socket"]["channel_desc"]["usernames"], keyof string[]>]: never; }) | undefined;
|
|
17900
17935
|
creator_name?: string | undefined;
|
|
17901
17936
|
create_time_seconds?: number | undefined;
|
|
17902
17937
|
update_time_seconds?: number | undefined;
|
|
17903
|
-
display_names?: (string[] & string[] & { [
|
|
17938
|
+
display_names?: (string[] & string[] & { [K_620 in Exclude<keyof I_1["list_data_socket"]["channel_desc"]["display_names"], keyof string[]>]: never; }) | undefined;
|
|
17904
17939
|
channel_avatar?: string | undefined;
|
|
17905
17940
|
clan_name?: string | undefined;
|
|
17906
17941
|
app_id?: string | undefined;
|
|
@@ -17909,7 +17944,7 @@ export declare const Envelope: {
|
|
|
17909
17944
|
topic?: string | undefined;
|
|
17910
17945
|
e2ee?: number | undefined;
|
|
17911
17946
|
member_count?: number | undefined;
|
|
17912
|
-
} & { [
|
|
17947
|
+
} & { [K_621 in Exclude<keyof I_1["list_data_socket"]["channel_desc"], keyof ChannelDescription1>]: never; }) | undefined;
|
|
17913
17948
|
list_channel_req?: ({
|
|
17914
17949
|
limit?: number | undefined;
|
|
17915
17950
|
state?: number | undefined;
|
|
@@ -17924,7 +17959,7 @@ export declare const Envelope: {
|
|
|
17924
17959
|
clan_id?: string | undefined;
|
|
17925
17960
|
channel_type?: number | undefined;
|
|
17926
17961
|
is_mobile?: boolean | undefined;
|
|
17927
|
-
} & { [
|
|
17962
|
+
} & { [K_622 in Exclude<keyof I_1["list_data_socket"]["list_channel_req"], keyof ListChannelDescsRequest>]: never; }) | undefined;
|
|
17928
17963
|
list_channel_message_req?: ({
|
|
17929
17964
|
clan_id?: string | undefined;
|
|
17930
17965
|
channel_id?: string | undefined;
|
|
@@ -17939,7 +17974,7 @@ export declare const Envelope: {
|
|
|
17939
17974
|
limit?: number | undefined;
|
|
17940
17975
|
direction?: number | undefined;
|
|
17941
17976
|
topic_id?: string | undefined;
|
|
17942
|
-
} & { [
|
|
17977
|
+
} & { [K_623 in Exclude<keyof I_1["list_data_socket"]["list_channel_message_req"], keyof ListChannelMessagesRequest>]: never; }) | undefined;
|
|
17943
17978
|
channel_message_list?: ({
|
|
17944
17979
|
messages?: {
|
|
17945
17980
|
clan_id?: string | undefined;
|
|
@@ -18077,7 +18112,7 @@ export declare const Envelope: {
|
|
|
18077
18112
|
hide_editted?: boolean | undefined;
|
|
18078
18113
|
is_public?: boolean | undefined;
|
|
18079
18114
|
topic_id?: string | undefined;
|
|
18080
|
-
} & { [
|
|
18115
|
+
} & { [K_624 in Exclude<keyof I_1["list_data_socket"]["channel_message_list"]["messages"][number], keyof ChannelMessage>]: never; })[] & { [K_625 in Exclude<keyof I_1["list_data_socket"]["channel_message_list"]["messages"], keyof {
|
|
18081
18116
|
clan_id?: string | undefined;
|
|
18082
18117
|
channel_id?: string | undefined;
|
|
18083
18118
|
message_id?: string | undefined;
|
|
@@ -18125,8 +18160,8 @@ export declare const Envelope: {
|
|
|
18125
18160
|
reference?: string | undefined;
|
|
18126
18161
|
mention?: string | undefined;
|
|
18127
18162
|
reaction?: string | undefined;
|
|
18128
|
-
repliers?: (string[] & string[] & { [
|
|
18129
|
-
} & { [
|
|
18163
|
+
repliers?: (string[] & string[] & { [K_626 in Exclude<keyof I_1["list_data_socket"]["channel_message_list"]["last_seen_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
18164
|
+
} & { [K_627 in Exclude<keyof I_1["list_data_socket"]["channel_message_list"]["last_seen_message"], keyof ChannelMessageHeader>]: never; }) | undefined;
|
|
18130
18165
|
last_sent_message?: ({
|
|
18131
18166
|
id?: string | undefined;
|
|
18132
18167
|
timestamp_seconds?: number | undefined;
|
|
@@ -18146,9 +18181,9 @@ export declare const Envelope: {
|
|
|
18146
18181
|
reference?: string | undefined;
|
|
18147
18182
|
mention?: string | undefined;
|
|
18148
18183
|
reaction?: string | undefined;
|
|
18149
|
-
repliers?: (string[] & string[] & { [
|
|
18150
|
-
} & { [
|
|
18151
|
-
} & { [
|
|
18184
|
+
repliers?: (string[] & string[] & { [K_628 in Exclude<keyof I_1["list_data_socket"]["channel_message_list"]["last_sent_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
18185
|
+
} & { [K_629 in Exclude<keyof I_1["list_data_socket"]["channel_message_list"]["last_sent_message"], keyof ChannelMessageHeader>]: never; }) | undefined;
|
|
18186
|
+
} & { [K_630 in Exclude<keyof I_1["list_data_socket"]["channel_message_list"], keyof ChannelMessageList>]: never; }) | undefined;
|
|
18152
18187
|
list_channel_users_req?: ({
|
|
18153
18188
|
clan_id?: string | undefined;
|
|
18154
18189
|
channel_id?: string | undefined;
|
|
@@ -18163,7 +18198,7 @@ export declare const Envelope: {
|
|
|
18163
18198
|
limit?: number | undefined;
|
|
18164
18199
|
state?: number | undefined;
|
|
18165
18200
|
cursor?: string | undefined;
|
|
18166
|
-
} & { [
|
|
18201
|
+
} & { [K_631 in Exclude<keyof I_1["list_data_socket"]["list_channel_users_req"], keyof ListChannelUsersRequest>]: never; }) | undefined;
|
|
18167
18202
|
voice_user_list?: ({
|
|
18168
18203
|
voice_channel_users?: {
|
|
18169
18204
|
id?: string | undefined;
|
|
@@ -18187,13 +18222,13 @@ export declare const Envelope: {
|
|
|
18187
18222
|
user_id?: string | undefined;
|
|
18188
18223
|
channel_id?: string | undefined;
|
|
18189
18224
|
participant?: string | undefined;
|
|
18190
|
-
} & { [
|
|
18225
|
+
} & { [K_632 in Exclude<keyof I_1["list_data_socket"]["voice_user_list"]["voice_channel_users"][number], keyof import("../api/api").VoiceChannelUser>]: never; })[] & { [K_633 in Exclude<keyof I_1["list_data_socket"]["voice_user_list"]["voice_channel_users"], keyof {
|
|
18191
18226
|
id?: string | undefined;
|
|
18192
18227
|
user_id?: string | undefined;
|
|
18193
18228
|
channel_id?: string | undefined;
|
|
18194
18229
|
participant?: string | undefined;
|
|
18195
18230
|
}[]>]: never; }) | undefined;
|
|
18196
|
-
} & { [
|
|
18231
|
+
} & { [K_634 in Exclude<keyof I_1["list_data_socket"]["voice_user_list"], "voice_channel_users">]: never; }) | undefined;
|
|
18197
18232
|
channel_user_list?: ({
|
|
18198
18233
|
channel_users?: {
|
|
18199
18234
|
user_id?: string | undefined;
|
|
@@ -18204,6 +18239,7 @@ export declare const Envelope: {
|
|
|
18204
18239
|
clan_avatar?: string | undefined;
|
|
18205
18240
|
clan_id?: string | undefined;
|
|
18206
18241
|
added_by?: string | undefined;
|
|
18242
|
+
is_banned?: boolean | undefined;
|
|
18207
18243
|
}[] | undefined;
|
|
18208
18244
|
cursor?: string | undefined;
|
|
18209
18245
|
channel_id?: string | undefined;
|
|
@@ -18217,6 +18253,7 @@ export declare const Envelope: {
|
|
|
18217
18253
|
clan_avatar?: string | undefined;
|
|
18218
18254
|
clan_id?: string | undefined;
|
|
18219
18255
|
added_by?: string | undefined;
|
|
18256
|
+
is_banned?: boolean | undefined;
|
|
18220
18257
|
}[] & ({
|
|
18221
18258
|
user_id?: string | undefined;
|
|
18222
18259
|
role_id?: string[] | undefined;
|
|
@@ -18226,16 +18263,18 @@ export declare const Envelope: {
|
|
|
18226
18263
|
clan_avatar?: string | undefined;
|
|
18227
18264
|
clan_id?: string | undefined;
|
|
18228
18265
|
added_by?: string | undefined;
|
|
18266
|
+
is_banned?: boolean | undefined;
|
|
18229
18267
|
} & {
|
|
18230
18268
|
user_id?: string | undefined;
|
|
18231
|
-
role_id?: (string[] & string[] & { [
|
|
18269
|
+
role_id?: (string[] & string[] & { [K_635 in Exclude<keyof I_1["list_data_socket"]["channel_user_list"]["channel_users"][number]["role_id"], keyof string[]>]: never; }) | undefined;
|
|
18232
18270
|
id?: string | undefined;
|
|
18233
18271
|
thread_id?: string | undefined;
|
|
18234
18272
|
clan_nick?: string | undefined;
|
|
18235
18273
|
clan_avatar?: string | undefined;
|
|
18236
18274
|
clan_id?: string | undefined;
|
|
18237
18275
|
added_by?: string | undefined;
|
|
18238
|
-
|
|
18276
|
+
is_banned?: boolean | undefined;
|
|
18277
|
+
} & { [K_636 in Exclude<keyof I_1["list_data_socket"]["channel_user_list"]["channel_users"][number], keyof import("../api/api").ChannelUserList_ChannelUser>]: never; })[] & { [K_637 in Exclude<keyof I_1["list_data_socket"]["channel_user_list"]["channel_users"], keyof {
|
|
18239
18278
|
user_id?: string | undefined;
|
|
18240
18279
|
role_id?: string[] | undefined;
|
|
18241
18280
|
id?: string | undefined;
|
|
@@ -18244,10 +18283,11 @@ export declare const Envelope: {
|
|
|
18244
18283
|
clan_avatar?: string | undefined;
|
|
18245
18284
|
clan_id?: string | undefined;
|
|
18246
18285
|
added_by?: string | undefined;
|
|
18286
|
+
is_banned?: boolean | undefined;
|
|
18247
18287
|
}[]>]: never; }) | undefined;
|
|
18248
18288
|
cursor?: string | undefined;
|
|
18249
18289
|
channel_id?: string | undefined;
|
|
18250
|
-
} & { [
|
|
18290
|
+
} & { [K_638 in Exclude<keyof I_1["list_data_socket"]["channel_user_list"], keyof ChannelUserList>]: never; }) | undefined;
|
|
18251
18291
|
list_channel_attachment_req?: ({
|
|
18252
18292
|
clan_id?: string | undefined;
|
|
18253
18293
|
channel_id?: string | undefined;
|
|
@@ -18266,7 +18306,7 @@ export declare const Envelope: {
|
|
|
18266
18306
|
before?: number | undefined;
|
|
18267
18307
|
after?: number | undefined;
|
|
18268
18308
|
around?: number | undefined;
|
|
18269
|
-
} & { [
|
|
18309
|
+
} & { [K_639 in Exclude<keyof I_1["list_data_socket"]["list_channel_attachment_req"], keyof ListChannelAttachmentRequest>]: never; }) | undefined;
|
|
18270
18310
|
channel_attachment_list?: ({
|
|
18271
18311
|
attachments?: {
|
|
18272
18312
|
id?: string | undefined;
|
|
@@ -18314,7 +18354,7 @@ export declare const Envelope: {
|
|
|
18314
18354
|
message_id?: string | undefined;
|
|
18315
18355
|
width?: number | undefined;
|
|
18316
18356
|
height?: number | undefined;
|
|
18317
|
-
} & { [
|
|
18357
|
+
} & { [K_640 in Exclude<keyof I_1["list_data_socket"]["channel_attachment_list"]["attachments"][number], keyof import("../api/api").ChannelAttachment>]: never; })[] & { [K_641 in Exclude<keyof I_1["list_data_socket"]["channel_attachment_list"]["attachments"], keyof {
|
|
18318
18358
|
id?: string | undefined;
|
|
18319
18359
|
filename?: string | undefined;
|
|
18320
18360
|
filetype?: string | undefined;
|
|
@@ -18326,14 +18366,14 @@ export declare const Envelope: {
|
|
|
18326
18366
|
width?: number | undefined;
|
|
18327
18367
|
height?: number | undefined;
|
|
18328
18368
|
}[]>]: never; }) | undefined;
|
|
18329
|
-
} & { [
|
|
18369
|
+
} & { [K_642 in Exclude<keyof I_1["list_data_socket"]["channel_attachment_list"], "attachments">]: never; }) | undefined;
|
|
18330
18370
|
hashtag_dm_req?: ({
|
|
18331
18371
|
user_id?: string[] | undefined;
|
|
18332
18372
|
limit?: number | undefined;
|
|
18333
18373
|
} & {
|
|
18334
|
-
user_id?: (string[] & string[] & { [
|
|
18374
|
+
user_id?: (string[] & string[] & { [K_643 in Exclude<keyof I_1["list_data_socket"]["hashtag_dm_req"]["user_id"], keyof string[]>]: never; }) | undefined;
|
|
18335
18375
|
limit?: number | undefined;
|
|
18336
|
-
} & { [
|
|
18376
|
+
} & { [K_644 in Exclude<keyof I_1["list_data_socket"]["hashtag_dm_req"], keyof HashtagDmListRequest>]: never; }) | undefined;
|
|
18337
18377
|
hashtag_dm_list?: ({
|
|
18338
18378
|
hashtag_dm?: {
|
|
18339
18379
|
channel_id?: string | undefined;
|
|
@@ -18373,7 +18413,7 @@ export declare const Envelope: {
|
|
|
18373
18413
|
type?: number | undefined;
|
|
18374
18414
|
channel_private?: number | undefined;
|
|
18375
18415
|
parent_id?: string | undefined;
|
|
18376
|
-
} & { [
|
|
18416
|
+
} & { [K_645 in Exclude<keyof I_1["list_data_socket"]["hashtag_dm_list"]["hashtag_dm"][number], keyof import("../api/api").HashtagDm>]: never; })[] & { [K_646 in Exclude<keyof I_1["list_data_socket"]["hashtag_dm_list"]["hashtag_dm"], keyof {
|
|
18377
18417
|
channel_id?: string | undefined;
|
|
18378
18418
|
channel_label?: string | undefined;
|
|
18379
18419
|
clan_id?: string | undefined;
|
|
@@ -18383,7 +18423,7 @@ export declare const Envelope: {
|
|
|
18383
18423
|
channel_private?: number | undefined;
|
|
18384
18424
|
parent_id?: string | undefined;
|
|
18385
18425
|
}[]>]: never; }) | undefined;
|
|
18386
|
-
} & { [
|
|
18426
|
+
} & { [K_647 in Exclude<keyof I_1["list_data_socket"]["hashtag_dm_list"], "hashtag_dm">]: never; }) | undefined;
|
|
18387
18427
|
channel_setting_req?: ({
|
|
18388
18428
|
clan_id?: string | undefined;
|
|
18389
18429
|
parent_id?: string | undefined;
|
|
@@ -18406,7 +18446,7 @@ export declare const Envelope: {
|
|
|
18406
18446
|
limit?: number | undefined;
|
|
18407
18447
|
page?: number | undefined;
|
|
18408
18448
|
channel_label?: string | undefined;
|
|
18409
|
-
} & { [
|
|
18449
|
+
} & { [K_648 in Exclude<keyof I_1["list_data_socket"]["channel_setting_req"], keyof ChannelSettingListRequest>]: never; }) | undefined;
|
|
18410
18450
|
channel_setting_list?: ({
|
|
18411
18451
|
clan_id?: string | undefined;
|
|
18412
18452
|
channel_count?: number | undefined;
|
|
@@ -18495,7 +18535,7 @@ export declare const Envelope: {
|
|
|
18495
18535
|
channel_private?: number | undefined;
|
|
18496
18536
|
channel_type?: number | undefined;
|
|
18497
18537
|
active?: number | undefined;
|
|
18498
|
-
user_ids?: (string[] & string[] & { [
|
|
18538
|
+
user_ids?: (string[] & string[] & { [K_649 in Exclude<keyof I_1["list_data_socket"]["channel_setting_list"]["channel_setting_list"][number]["user_ids"], keyof string[]>]: never; }) | undefined;
|
|
18499
18539
|
message_count?: number | undefined;
|
|
18500
18540
|
last_sent_message?: ({
|
|
18501
18541
|
id?: string | undefined;
|
|
@@ -18516,9 +18556,9 @@ export declare const Envelope: {
|
|
|
18516
18556
|
reference?: string | undefined;
|
|
18517
18557
|
mention?: string | undefined;
|
|
18518
18558
|
reaction?: string | undefined;
|
|
18519
|
-
repliers?: (string[] & string[] & { [
|
|
18520
|
-
} & { [
|
|
18521
|
-
} & { [
|
|
18559
|
+
repliers?: (string[] & string[] & { [K_650 in Exclude<keyof I_1["list_data_socket"]["channel_setting_list"]["channel_setting_list"][number]["last_sent_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
18560
|
+
} & { [K_651 in Exclude<keyof I_1["list_data_socket"]["channel_setting_list"]["channel_setting_list"][number]["last_sent_message"], keyof ChannelMessageHeader>]: never; }) | undefined;
|
|
18561
|
+
} & { [K_652 in Exclude<keyof I_1["list_data_socket"]["channel_setting_list"]["channel_setting_list"][number], keyof import("../api/api").ChannelSettingItem>]: never; })[] & { [K_653 in Exclude<keyof I_1["list_data_socket"]["channel_setting_list"]["channel_setting_list"], keyof {
|
|
18522
18562
|
id?: string | undefined;
|
|
18523
18563
|
creator_id?: string | undefined;
|
|
18524
18564
|
parent_id?: string | undefined;
|
|
@@ -18542,17 +18582,17 @@ export declare const Envelope: {
|
|
|
18542
18582
|
repliers?: string[] | undefined;
|
|
18543
18583
|
} | undefined;
|
|
18544
18584
|
}[]>]: never; }) | undefined;
|
|
18545
|
-
} & { [
|
|
18585
|
+
} & { [K_654 in Exclude<keyof I_1["list_data_socket"]["channel_setting_list"], keyof ChannelSettingListResponse>]: never; }) | undefined;
|
|
18546
18586
|
favorite_channel_req?: ({
|
|
18547
18587
|
clan_id?: string | undefined;
|
|
18548
18588
|
} & {
|
|
18549
18589
|
clan_id?: string | undefined;
|
|
18550
|
-
} & { [
|
|
18590
|
+
} & { [K_655 in Exclude<keyof I_1["list_data_socket"]["favorite_channel_req"], "clan_id">]: never; }) | undefined;
|
|
18551
18591
|
favorite_channel_list?: ({
|
|
18552
18592
|
channel_ids?: string[] | undefined;
|
|
18553
18593
|
} & {
|
|
18554
|
-
channel_ids?: (string[] & string[] & { [
|
|
18555
|
-
} & { [
|
|
18594
|
+
channel_ids?: (string[] & string[] & { [K_656 in Exclude<keyof I_1["list_data_socket"]["favorite_channel_list"]["channel_ids"], keyof string[]>]: never; }) | undefined;
|
|
18595
|
+
} & { [K_657 in Exclude<keyof I_1["list_data_socket"]["favorite_channel_list"], "channel_ids">]: never; }) | undefined;
|
|
18556
18596
|
search_thread_req?: ({
|
|
18557
18597
|
clan_id?: string | undefined;
|
|
18558
18598
|
channel_id?: string | undefined;
|
|
@@ -18561,12 +18601,12 @@ export declare const Envelope: {
|
|
|
18561
18601
|
clan_id?: string | undefined;
|
|
18562
18602
|
channel_id?: string | undefined;
|
|
18563
18603
|
label?: string | undefined;
|
|
18564
|
-
} & { [
|
|
18604
|
+
} & { [K_658 in Exclude<keyof I_1["list_data_socket"]["search_thread_req"], keyof SearchThreadRequest>]: never; }) | undefined;
|
|
18565
18605
|
notification_channel?: ({
|
|
18566
18606
|
channel_id?: string | undefined;
|
|
18567
18607
|
} & {
|
|
18568
18608
|
channel_id?: string | undefined;
|
|
18569
|
-
} & { [
|
|
18609
|
+
} & { [K_659 in Exclude<keyof I_1["list_data_socket"]["notification_channel"], "channel_id">]: never; }) | undefined;
|
|
18570
18610
|
notificaion_user_channel?: ({
|
|
18571
18611
|
id?: string | undefined;
|
|
18572
18612
|
notification_setting_type?: number | undefined;
|
|
@@ -18579,24 +18619,24 @@ export declare const Envelope: {
|
|
|
18579
18619
|
time_mute?: Date | undefined;
|
|
18580
18620
|
active?: number | undefined;
|
|
18581
18621
|
channel_id?: string | undefined;
|
|
18582
|
-
} & { [
|
|
18622
|
+
} & { [K_660 in Exclude<keyof I_1["list_data_socket"]["notificaion_user_channel"], keyof NotificationUserChannel>]: never; }) | undefined;
|
|
18583
18623
|
notification_category?: ({
|
|
18584
18624
|
category_id?: string | undefined;
|
|
18585
18625
|
} & {
|
|
18586
18626
|
category_id?: string | undefined;
|
|
18587
|
-
} & { [
|
|
18627
|
+
} & { [K_661 in Exclude<keyof I_1["list_data_socket"]["notification_category"], "category_id">]: never; }) | undefined;
|
|
18588
18628
|
notification_clan?: ({
|
|
18589
18629
|
clan_id?: string | undefined;
|
|
18590
18630
|
} & {
|
|
18591
18631
|
clan_id?: string | undefined;
|
|
18592
|
-
} & { [
|
|
18632
|
+
} & { [K_662 in Exclude<keyof I_1["list_data_socket"]["notification_clan"], "clan_id">]: never; }) | undefined;
|
|
18593
18633
|
notification_setting?: ({
|
|
18594
18634
|
id?: string | undefined;
|
|
18595
18635
|
notification_setting_type?: number | undefined;
|
|
18596
18636
|
} & {
|
|
18597
18637
|
id?: string | undefined;
|
|
18598
18638
|
notification_setting_type?: number | undefined;
|
|
18599
|
-
} & { [
|
|
18639
|
+
} & { [K_663 in Exclude<keyof I_1["list_data_socket"]["notification_setting"], keyof NotificationSetting>]: never; }) | undefined;
|
|
18600
18640
|
notification_message?: ({
|
|
18601
18641
|
id?: string | undefined;
|
|
18602
18642
|
user_id?: string | undefined;
|
|
@@ -18605,7 +18645,7 @@ export declare const Envelope: {
|
|
|
18605
18645
|
id?: string | undefined;
|
|
18606
18646
|
user_id?: string | undefined;
|
|
18607
18647
|
channel_id?: string | undefined;
|
|
18608
|
-
} & { [
|
|
18648
|
+
} & { [K_664 in Exclude<keyof I_1["list_data_socket"]["notification_message"], keyof NotifiReactMessage>]: never; }) | undefined;
|
|
18609
18649
|
noti_channel_cat_setting_list?: ({
|
|
18610
18650
|
notification_channel_category_settings_list?: {
|
|
18611
18651
|
id?: string | undefined;
|
|
@@ -18633,14 +18673,14 @@ export declare const Envelope: {
|
|
|
18633
18673
|
notification_setting_type?: number | undefined;
|
|
18634
18674
|
channel_category_title?: string | undefined;
|
|
18635
18675
|
action?: number | undefined;
|
|
18636
|
-
} & { [
|
|
18676
|
+
} & { [K_665 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_666 in Exclude<keyof I_1["list_data_socket"]["noti_channel_cat_setting_list"]["notification_channel_category_settings_list"], keyof {
|
|
18637
18677
|
id?: string | undefined;
|
|
18638
18678
|
channel_category_label?: string | undefined;
|
|
18639
18679
|
notification_setting_type?: number | undefined;
|
|
18640
18680
|
channel_category_title?: string | undefined;
|
|
18641
18681
|
action?: number | undefined;
|
|
18642
18682
|
}[]>]: never; }) | undefined;
|
|
18643
|
-
} & { [
|
|
18683
|
+
} & { [K_667 in Exclude<keyof I_1["list_data_socket"]["noti_channel_cat_setting_list"], "notification_channel_category_settings_list">]: never; }) | undefined;
|
|
18644
18684
|
list_notification_req?: ({
|
|
18645
18685
|
limit?: number | undefined;
|
|
18646
18686
|
clan_id?: string | undefined;
|
|
@@ -18653,7 +18693,7 @@ export declare const Envelope: {
|
|
|
18653
18693
|
notification_id?: string | undefined;
|
|
18654
18694
|
category?: number | undefined;
|
|
18655
18695
|
direction?: number | undefined;
|
|
18656
|
-
} & { [
|
|
18696
|
+
} & { [K_668 in Exclude<keyof I_1["list_data_socket"]["list_notification_req"], keyof ListNotificationsRequest>]: never; }) | undefined;
|
|
18657
18697
|
notification_list?: ({
|
|
18658
18698
|
notifications?: {
|
|
18659
18699
|
id?: string | undefined;
|
|
@@ -18933,8 +18973,8 @@ export declare const Envelope: {
|
|
|
18933
18973
|
creator_id?: string | undefined;
|
|
18934
18974
|
channel_label?: string | undefined;
|
|
18935
18975
|
channel_private?: number | undefined;
|
|
18936
|
-
avatars?: (string[] & string[] & { [
|
|
18937
|
-
user_ids?: (string[] & string[] & { [
|
|
18976
|
+
avatars?: (string[] & string[] & { [K_669 in Exclude<keyof I_1["list_data_socket"]["notification_list"]["notifications"][number]["channel"]["avatars"], keyof string[]>]: never; }) | undefined;
|
|
18977
|
+
user_ids?: (string[] & string[] & { [K_670 in Exclude<keyof I_1["list_data_socket"]["notification_list"]["notifications"][number]["channel"]["user_ids"], keyof string[]>]: never; }) | undefined;
|
|
18938
18978
|
last_sent_message?: ({
|
|
18939
18979
|
id?: string | undefined;
|
|
18940
18980
|
timestamp_seconds?: number | undefined;
|
|
@@ -18954,8 +18994,8 @@ export declare const Envelope: {
|
|
|
18954
18994
|
reference?: string | undefined;
|
|
18955
18995
|
mention?: string | undefined;
|
|
18956
18996
|
reaction?: string | undefined;
|
|
18957
|
-
repliers?: (string[] & string[] & { [
|
|
18958
|
-
} & { [
|
|
18997
|
+
repliers?: (string[] & string[] & { [K_671 in Exclude<keyof I_1["list_data_socket"]["notification_list"]["notifications"][number]["channel"]["last_sent_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
18998
|
+
} & { [K_672 in Exclude<keyof I_1["list_data_socket"]["notification_list"]["notifications"][number]["channel"]["last_sent_message"], keyof ChannelMessageHeader>]: never; }) | undefined;
|
|
18959
18999
|
last_seen_message?: ({
|
|
18960
19000
|
id?: string | undefined;
|
|
18961
19001
|
timestamp_seconds?: number | undefined;
|
|
@@ -18975,18 +19015,18 @@ export declare const Envelope: {
|
|
|
18975
19015
|
reference?: string | undefined;
|
|
18976
19016
|
mention?: string | undefined;
|
|
18977
19017
|
reaction?: string | undefined;
|
|
18978
|
-
repliers?: (string[] & string[] & { [
|
|
18979
|
-
} & { [
|
|
18980
|
-
onlines?: (boolean[] & boolean[] & { [
|
|
19018
|
+
repliers?: (string[] & string[] & { [K_673 in Exclude<keyof I_1["list_data_socket"]["notification_list"]["notifications"][number]["channel"]["last_seen_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
19019
|
+
} & { [K_674 in Exclude<keyof I_1["list_data_socket"]["notification_list"]["notifications"][number]["channel"]["last_seen_message"], keyof ChannelMessageHeader>]: never; }) | undefined;
|
|
19020
|
+
onlines?: (boolean[] & boolean[] & { [K_675 in Exclude<keyof I_1["list_data_socket"]["notification_list"]["notifications"][number]["channel"]["onlines"], keyof boolean[]>]: never; }) | undefined;
|
|
18981
19021
|
meeting_code?: string | undefined;
|
|
18982
19022
|
count_mess_unread?: number | undefined;
|
|
18983
19023
|
active?: number | undefined;
|
|
18984
19024
|
last_pin_message?: string | undefined;
|
|
18985
|
-
usernames?: (string[] & string[] & { [
|
|
19025
|
+
usernames?: (string[] & string[] & { [K_676 in Exclude<keyof I_1["list_data_socket"]["notification_list"]["notifications"][number]["channel"]["usernames"], keyof string[]>]: never; }) | undefined;
|
|
18986
19026
|
creator_name?: string | undefined;
|
|
18987
19027
|
create_time_seconds?: number | undefined;
|
|
18988
19028
|
update_time_seconds?: number | undefined;
|
|
18989
|
-
display_names?: (string[] & string[] & { [
|
|
19029
|
+
display_names?: (string[] & string[] & { [K_677 in Exclude<keyof I_1["list_data_socket"]["notification_list"]["notifications"][number]["channel"]["display_names"], keyof string[]>]: never; }) | undefined;
|
|
18990
19030
|
channel_avatar?: string | undefined;
|
|
18991
19031
|
clan_name?: string | undefined;
|
|
18992
19032
|
app_id?: string | undefined;
|
|
@@ -18995,10 +19035,10 @@ export declare const Envelope: {
|
|
|
18995
19035
|
topic?: string | undefined;
|
|
18996
19036
|
e2ee?: number | undefined;
|
|
18997
19037
|
member_count?: number | undefined;
|
|
18998
|
-
} & { [
|
|
19038
|
+
} & { [K_678 in Exclude<keyof I_1["list_data_socket"]["notification_list"]["notifications"][number]["channel"], keyof ChannelDescription1>]: never; }) | undefined;
|
|
18999
19039
|
topic_id?: string | undefined;
|
|
19000
19040
|
category?: number | undefined;
|
|
19001
|
-
} & { [
|
|
19041
|
+
} & { [K_679 in Exclude<keyof I_1["list_data_socket"]["notification_list"]["notifications"][number], keyof Notification>]: never; })[] & { [K_680 in Exclude<keyof I_1["list_data_socket"]["notification_list"]["notifications"], keyof {
|
|
19002
19042
|
id?: string | undefined;
|
|
19003
19043
|
subject?: string | undefined;
|
|
19004
19044
|
content?: string | undefined;
|
|
@@ -19067,7 +19107,7 @@ export declare const Envelope: {
|
|
|
19067
19107
|
category?: number | undefined;
|
|
19068
19108
|
}[]>]: never; }) | undefined;
|
|
19069
19109
|
cacheable_cursor?: string | undefined;
|
|
19070
|
-
} & { [
|
|
19110
|
+
} & { [K_681 in Exclude<keyof I_1["list_data_socket"]["notification_list"], keyof NotificationList>]: never; }) | undefined;
|
|
19071
19111
|
sticker_list?: ({
|
|
19072
19112
|
stickers?: {
|
|
19073
19113
|
id?: string | undefined;
|
|
@@ -19119,7 +19159,7 @@ export declare const Envelope: {
|
|
|
19119
19159
|
clan_name?: string | undefined;
|
|
19120
19160
|
media_type?: number | undefined;
|
|
19121
19161
|
is_for_sale?: boolean | undefined;
|
|
19122
|
-
} & { [
|
|
19162
|
+
} & { [K_682 in Exclude<keyof I_1["list_data_socket"]["sticker_list"]["stickers"][number], keyof import("../api/api").ClanSticker>]: never; })[] & { [K_683 in Exclude<keyof I_1["list_data_socket"]["sticker_list"]["stickers"], keyof {
|
|
19123
19163
|
id?: string | undefined;
|
|
19124
19164
|
source?: string | undefined;
|
|
19125
19165
|
shortname?: string | undefined;
|
|
@@ -19132,7 +19172,7 @@ export declare const Envelope: {
|
|
|
19132
19172
|
media_type?: number | undefined;
|
|
19133
19173
|
is_for_sale?: boolean | undefined;
|
|
19134
19174
|
}[]>]: never; }) | undefined;
|
|
19135
|
-
} & { [
|
|
19175
|
+
} & { [K_684 in Exclude<keyof I_1["list_data_socket"]["sticker_list"], "stickers">]: never; }) | undefined;
|
|
19136
19176
|
emoji_recent_list?: ({
|
|
19137
19177
|
emoji_recents?: {
|
|
19138
19178
|
emoji_recents_id?: string | undefined;
|
|
@@ -19152,17 +19192,17 @@ export declare const Envelope: {
|
|
|
19152
19192
|
emoji_recents_id?: string | undefined;
|
|
19153
19193
|
emoji_id?: string | undefined;
|
|
19154
19194
|
update_time?: Date | undefined;
|
|
19155
|
-
} & { [
|
|
19195
|
+
} & { [K_685 in Exclude<keyof I_1["list_data_socket"]["emoji_recent_list"]["emoji_recents"][number], keyof import("../api/api").EmojiRecent>]: never; })[] & { [K_686 in Exclude<keyof I_1["list_data_socket"]["emoji_recent_list"]["emoji_recents"], keyof {
|
|
19156
19196
|
emoji_recents_id?: string | undefined;
|
|
19157
19197
|
emoji_id?: string | undefined;
|
|
19158
19198
|
update_time?: Date | undefined;
|
|
19159
19199
|
}[]>]: never; }) | undefined;
|
|
19160
|
-
} & { [
|
|
19200
|
+
} & { [K_687 in Exclude<keyof I_1["list_data_socket"]["emoji_recent_list"], "emoji_recents">]: never; }) | undefined;
|
|
19161
19201
|
clan_webhook_req?: ({
|
|
19162
19202
|
clan_id?: string | undefined;
|
|
19163
19203
|
} & {
|
|
19164
19204
|
clan_id?: string | undefined;
|
|
19165
|
-
} & { [
|
|
19205
|
+
} & { [K_688 in Exclude<keyof I_1["list_data_socket"]["clan_webhook_req"], "clan_id">]: never; }) | undefined;
|
|
19166
19206
|
clan_webhook_list?: ({
|
|
19167
19207
|
list_clan_webhooks?: {
|
|
19168
19208
|
id?: string | undefined;
|
|
@@ -19206,7 +19246,7 @@ export declare const Envelope: {
|
|
|
19206
19246
|
avatar?: string | undefined;
|
|
19207
19247
|
create_time?: string | undefined;
|
|
19208
19248
|
update_time?: string | undefined;
|
|
19209
|
-
} & { [
|
|
19249
|
+
} & { [K_689 in Exclude<keyof I_1["list_data_socket"]["clan_webhook_list"]["list_clan_webhooks"][number], keyof import("../api/api").ClanWebhook>]: never; })[] & { [K_690 in Exclude<keyof I_1["list_data_socket"]["clan_webhook_list"]["list_clan_webhooks"], keyof {
|
|
19210
19250
|
id?: string | undefined;
|
|
19211
19251
|
webhook_name?: string | undefined;
|
|
19212
19252
|
clan_id?: string | undefined;
|
|
@@ -19217,14 +19257,14 @@ export declare const Envelope: {
|
|
|
19217
19257
|
create_time?: string | undefined;
|
|
19218
19258
|
update_time?: string | undefined;
|
|
19219
19259
|
}[]>]: never; }) | undefined;
|
|
19220
|
-
} & { [
|
|
19260
|
+
} & { [K_691 in Exclude<keyof I_1["list_data_socket"]["clan_webhook_list"], "list_clan_webhooks">]: never; }) | undefined;
|
|
19221
19261
|
webhook_list_req?: ({
|
|
19222
19262
|
channel_id?: string | undefined;
|
|
19223
19263
|
clan_id?: string | undefined;
|
|
19224
19264
|
} & {
|
|
19225
19265
|
channel_id?: string | undefined;
|
|
19226
19266
|
clan_id?: string | undefined;
|
|
19227
|
-
} & { [
|
|
19267
|
+
} & { [K_692 in Exclude<keyof I_1["list_data_socket"]["webhook_list_req"], keyof WebhookListRequest>]: never; }) | undefined;
|
|
19228
19268
|
webhook_list?: ({
|
|
19229
19269
|
webhooks?: {
|
|
19230
19270
|
id?: string | undefined;
|
|
@@ -19276,7 +19316,7 @@ export declare const Envelope: {
|
|
|
19276
19316
|
avatar?: string | undefined;
|
|
19277
19317
|
status?: number | undefined;
|
|
19278
19318
|
clan_id?: string | undefined;
|
|
19279
|
-
} & { [
|
|
19319
|
+
} & { [K_693 in Exclude<keyof I_1["list_data_socket"]["webhook_list"]["webhooks"][number], keyof Webhook>]: never; })[] & { [K_694 in Exclude<keyof I_1["list_data_socket"]["webhook_list"]["webhooks"], keyof {
|
|
19280
19320
|
id?: string | undefined;
|
|
19281
19321
|
webhook_name?: string | undefined;
|
|
19282
19322
|
channel_id?: string | undefined;
|
|
@@ -19289,12 +19329,12 @@ export declare const Envelope: {
|
|
|
19289
19329
|
status?: number | undefined;
|
|
19290
19330
|
clan_id?: string | undefined;
|
|
19291
19331
|
}[]>]: never; }) | undefined;
|
|
19292
|
-
} & { [
|
|
19332
|
+
} & { [K_695 in Exclude<keyof I_1["list_data_socket"]["webhook_list"], "webhooks">]: never; }) | undefined;
|
|
19293
19333
|
permission_list_req?: ({
|
|
19294
19334
|
role_id?: string | undefined;
|
|
19295
19335
|
} & {
|
|
19296
19336
|
role_id?: string | undefined;
|
|
19297
|
-
} & { [
|
|
19337
|
+
} & { [K_696 in Exclude<keyof I_1["list_data_socket"]["permission_list_req"], "role_id">]: never; }) | undefined;
|
|
19298
19338
|
permission_list?: ({
|
|
19299
19339
|
permissions?: {
|
|
19300
19340
|
id?: string | undefined;
|
|
@@ -19331,7 +19371,7 @@ export declare const Envelope: {
|
|
|
19331
19371
|
active?: number | undefined;
|
|
19332
19372
|
scope?: number | undefined;
|
|
19333
19373
|
level?: number | undefined;
|
|
19334
|
-
} & { [
|
|
19374
|
+
} & { [K_697 in Exclude<keyof I_1["list_data_socket"]["permission_list"]["permissions"][number], keyof import("../api/api").Permission>]: never; })[] & { [K_698 in Exclude<keyof I_1["list_data_socket"]["permission_list"]["permissions"], keyof {
|
|
19335
19375
|
id?: string | undefined;
|
|
19336
19376
|
title?: string | undefined;
|
|
19337
19377
|
slug?: string | undefined;
|
|
@@ -19341,7 +19381,7 @@ export declare const Envelope: {
|
|
|
19341
19381
|
level?: number | undefined;
|
|
19342
19382
|
}[]>]: never; }) | undefined;
|
|
19343
19383
|
max_level_permission?: number | undefined;
|
|
19344
|
-
} & { [
|
|
19384
|
+
} & { [K_699 in Exclude<keyof I_1["list_data_socket"]["permission_list"], keyof PermissionList>]: never; }) | undefined;
|
|
19345
19385
|
role_user_req?: ({
|
|
19346
19386
|
role_id?: string | undefined;
|
|
19347
19387
|
limit?: number | undefined;
|
|
@@ -19350,7 +19390,7 @@ export declare const Envelope: {
|
|
|
19350
19390
|
role_id?: string | undefined;
|
|
19351
19391
|
limit?: number | undefined;
|
|
19352
19392
|
cursor?: string | undefined;
|
|
19353
|
-
} & { [
|
|
19393
|
+
} & { [K_700 in Exclude<keyof I_1["list_data_socket"]["role_user_req"], keyof ListRoleUsersRequest>]: never; }) | undefined;
|
|
19354
19394
|
role_user_list?: ({
|
|
19355
19395
|
role_users?: {
|
|
19356
19396
|
id?: string | undefined;
|
|
@@ -19387,7 +19427,7 @@ export declare const Envelope: {
|
|
|
19387
19427
|
lang_tag?: string | undefined;
|
|
19388
19428
|
location?: string | undefined;
|
|
19389
19429
|
online?: boolean | undefined;
|
|
19390
|
-
} & { [
|
|
19430
|
+
} & { [K_701 in Exclude<keyof I_1["list_data_socket"]["role_user_list"]["role_users"][number], keyof import("../api/api").RoleUserList_RoleUser>]: never; })[] & { [K_702 in Exclude<keyof I_1["list_data_socket"]["role_user_list"]["role_users"], keyof {
|
|
19391
19431
|
id?: string | undefined;
|
|
19392
19432
|
username?: string | undefined;
|
|
19393
19433
|
display_name?: string | undefined;
|
|
@@ -19397,14 +19437,14 @@ export declare const Envelope: {
|
|
|
19397
19437
|
online?: boolean | undefined;
|
|
19398
19438
|
}[]>]: never; }) | undefined;
|
|
19399
19439
|
cursor?: string | undefined;
|
|
19400
|
-
} & { [
|
|
19440
|
+
} & { [K_703 in Exclude<keyof I_1["list_data_socket"]["role_user_list"], keyof RoleUserList>]: never; }) | undefined;
|
|
19401
19441
|
permission_user_req?: ({
|
|
19402
19442
|
clan_id?: string | undefined;
|
|
19403
19443
|
channel_id?: string | undefined;
|
|
19404
19444
|
} & {
|
|
19405
19445
|
clan_id?: string | undefined;
|
|
19406
19446
|
channel_id?: string | undefined;
|
|
19407
|
-
} & { [
|
|
19447
|
+
} & { [K_704 in Exclude<keyof I_1["list_data_socket"]["permission_user_req"], keyof ListPermissionOfUsersRequest>]: never; }) | undefined;
|
|
19408
19448
|
role_list?: ({
|
|
19409
19449
|
roles?: {
|
|
19410
19450
|
id?: string | undefined;
|
|
@@ -19579,7 +19619,7 @@ export declare const Envelope: {
|
|
|
19579
19619
|
lang_tag?: string | undefined;
|
|
19580
19620
|
location?: string | undefined;
|
|
19581
19621
|
online?: boolean | undefined;
|
|
19582
|
-
} & { [
|
|
19622
|
+
} & { [K_705 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_706 in Exclude<keyof I_1["list_data_socket"]["role_list"]["roles"][number]["role_user_list"]["role_users"], keyof {
|
|
19583
19623
|
id?: string | undefined;
|
|
19584
19624
|
username?: string | undefined;
|
|
19585
19625
|
display_name?: string | undefined;
|
|
@@ -19589,7 +19629,7 @@ export declare const Envelope: {
|
|
|
19589
19629
|
online?: boolean | undefined;
|
|
19590
19630
|
}[]>]: never; }) | undefined;
|
|
19591
19631
|
cursor?: string | undefined;
|
|
19592
|
-
} & { [
|
|
19632
|
+
} & { [K_707 in Exclude<keyof I_1["list_data_socket"]["role_list"]["roles"][number]["role_user_list"], keyof RoleUserList>]: never; }) | undefined;
|
|
19593
19633
|
permission_list?: ({
|
|
19594
19634
|
permissions?: {
|
|
19595
19635
|
id?: string | undefined;
|
|
@@ -19626,7 +19666,7 @@ export declare const Envelope: {
|
|
|
19626
19666
|
active?: number | undefined;
|
|
19627
19667
|
scope?: number | undefined;
|
|
19628
19668
|
level?: number | undefined;
|
|
19629
|
-
} & { [
|
|
19669
|
+
} & { [K_708 in Exclude<keyof I_1["list_data_socket"]["role_list"]["roles"][number]["permission_list"]["permissions"][number], keyof import("../api/api").Permission>]: never; })[] & { [K_709 in Exclude<keyof I_1["list_data_socket"]["role_list"]["roles"][number]["permission_list"]["permissions"], keyof {
|
|
19630
19670
|
id?: string | undefined;
|
|
19631
19671
|
title?: string | undefined;
|
|
19632
19672
|
slug?: string | undefined;
|
|
@@ -19636,12 +19676,12 @@ export declare const Envelope: {
|
|
|
19636
19676
|
level?: number | undefined;
|
|
19637
19677
|
}[]>]: never; }) | undefined;
|
|
19638
19678
|
max_level_permission?: number | undefined;
|
|
19639
|
-
} & { [
|
|
19679
|
+
} & { [K_710 in Exclude<keyof I_1["list_data_socket"]["role_list"]["roles"][number]["permission_list"], keyof PermissionList>]: never; }) | undefined;
|
|
19640
19680
|
role_channel_active?: number | undefined;
|
|
19641
|
-
channel_ids?: (string[] & string[] & { [
|
|
19681
|
+
channel_ids?: (string[] & string[] & { [K_711 in Exclude<keyof I_1["list_data_socket"]["role_list"]["roles"][number]["channel_ids"], keyof string[]>]: never; }) | undefined;
|
|
19642
19682
|
max_level_permission?: number | undefined;
|
|
19643
19683
|
order_role?: number | undefined;
|
|
19644
|
-
} & { [
|
|
19684
|
+
} & { [K_712 in Exclude<keyof I_1["list_data_socket"]["role_list"]["roles"][number], keyof Role>]: never; })[] & { [K_713 in Exclude<keyof I_1["list_data_socket"]["role_list"]["roles"], keyof {
|
|
19645
19685
|
id?: string | undefined;
|
|
19646
19686
|
title?: string | undefined;
|
|
19647
19687
|
color?: string | undefined;
|
|
@@ -19685,7 +19725,7 @@ export declare const Envelope: {
|
|
|
19685
19725
|
next_cursor?: string | undefined;
|
|
19686
19726
|
prev_cursor?: string | undefined;
|
|
19687
19727
|
cacheable_cursor?: string | undefined;
|
|
19688
|
-
} & { [
|
|
19728
|
+
} & { [K_714 in Exclude<keyof I_1["list_data_socket"]["role_list"], keyof RoleList>]: never; }) | undefined;
|
|
19689
19729
|
role_list_event_req?: ({
|
|
19690
19730
|
clan_id?: string | undefined;
|
|
19691
19731
|
limit?: number | undefined;
|
|
@@ -19696,7 +19736,7 @@ export declare const Envelope: {
|
|
|
19696
19736
|
limit?: number | undefined;
|
|
19697
19737
|
state?: number | undefined;
|
|
19698
19738
|
cursor?: string | undefined;
|
|
19699
|
-
} & { [
|
|
19739
|
+
} & { [K_715 in Exclude<keyof I_1["list_data_socket"]["role_list_event_req"], keyof RoleListEventRequest>]: never; }) | undefined;
|
|
19700
19740
|
role_event_list?: ({
|
|
19701
19741
|
limit?: number | undefined;
|
|
19702
19742
|
state?: number | undefined;
|
|
@@ -19927,7 +19967,7 @@ export declare const Envelope: {
|
|
|
19927
19967
|
lang_tag?: string | undefined;
|
|
19928
19968
|
location?: string | undefined;
|
|
19929
19969
|
online?: boolean | undefined;
|
|
19930
|
-
} & { [
|
|
19970
|
+
} & { [K_716 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_717 in Exclude<keyof I_1["list_data_socket"]["role_event_list"]["roles"]["roles"][number]["role_user_list"]["role_users"], keyof {
|
|
19931
19971
|
id?: string | undefined;
|
|
19932
19972
|
username?: string | undefined;
|
|
19933
19973
|
display_name?: string | undefined;
|
|
@@ -19937,7 +19977,7 @@ export declare const Envelope: {
|
|
|
19937
19977
|
online?: boolean | undefined;
|
|
19938
19978
|
}[]>]: never; }) | undefined;
|
|
19939
19979
|
cursor?: string | undefined;
|
|
19940
|
-
} & { [
|
|
19980
|
+
} & { [K_718 in Exclude<keyof I_1["list_data_socket"]["role_event_list"]["roles"]["roles"][number]["role_user_list"], keyof RoleUserList>]: never; }) | undefined;
|
|
19941
19981
|
permission_list?: ({
|
|
19942
19982
|
permissions?: {
|
|
19943
19983
|
id?: string | undefined;
|
|
@@ -19974,7 +20014,7 @@ export declare const Envelope: {
|
|
|
19974
20014
|
active?: number | undefined;
|
|
19975
20015
|
scope?: number | undefined;
|
|
19976
20016
|
level?: number | undefined;
|
|
19977
|
-
} & { [
|
|
20017
|
+
} & { [K_719 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_720 in Exclude<keyof I_1["list_data_socket"]["role_event_list"]["roles"]["roles"][number]["permission_list"]["permissions"], keyof {
|
|
19978
20018
|
id?: string | undefined;
|
|
19979
20019
|
title?: string | undefined;
|
|
19980
20020
|
slug?: string | undefined;
|
|
@@ -19984,12 +20024,12 @@ export declare const Envelope: {
|
|
|
19984
20024
|
level?: number | undefined;
|
|
19985
20025
|
}[]>]: never; }) | undefined;
|
|
19986
20026
|
max_level_permission?: number | undefined;
|
|
19987
|
-
} & { [
|
|
20027
|
+
} & { [K_721 in Exclude<keyof I_1["list_data_socket"]["role_event_list"]["roles"]["roles"][number]["permission_list"], keyof PermissionList>]: never; }) | undefined;
|
|
19988
20028
|
role_channel_active?: number | undefined;
|
|
19989
|
-
channel_ids?: (string[] & string[] & { [
|
|
20029
|
+
channel_ids?: (string[] & string[] & { [K_722 in Exclude<keyof I_1["list_data_socket"]["role_event_list"]["roles"]["roles"][number]["channel_ids"], keyof string[]>]: never; }) | undefined;
|
|
19990
20030
|
max_level_permission?: number | undefined;
|
|
19991
20031
|
order_role?: number | undefined;
|
|
19992
|
-
} & { [
|
|
20032
|
+
} & { [K_723 in Exclude<keyof I_1["list_data_socket"]["role_event_list"]["roles"]["roles"][number], keyof Role>]: never; })[] & { [K_724 in Exclude<keyof I_1["list_data_socket"]["role_event_list"]["roles"]["roles"], keyof {
|
|
19993
20033
|
id?: string | undefined;
|
|
19994
20034
|
title?: string | undefined;
|
|
19995
20035
|
color?: string | undefined;
|
|
@@ -20033,15 +20073,15 @@ export declare const Envelope: {
|
|
|
20033
20073
|
next_cursor?: string | undefined;
|
|
20034
20074
|
prev_cursor?: string | undefined;
|
|
20035
20075
|
cacheable_cursor?: string | undefined;
|
|
20036
|
-
} & { [
|
|
20037
|
-
} & { [
|
|
20076
|
+
} & { [K_725 in Exclude<keyof I_1["list_data_socket"]["role_event_list"]["roles"], keyof RoleList>]: never; }) | undefined;
|
|
20077
|
+
} & { [K_726 in Exclude<keyof I_1["list_data_socket"]["role_event_list"], keyof RoleListEventResponse>]: never; }) | undefined;
|
|
20038
20078
|
user_permission_req?: ({
|
|
20039
20079
|
clan_id?: string | undefined;
|
|
20040
20080
|
channel_id?: string | undefined;
|
|
20041
20081
|
} & {
|
|
20042
20082
|
clan_id?: string | undefined;
|
|
20043
20083
|
channel_id?: string | undefined;
|
|
20044
|
-
} & { [
|
|
20084
|
+
} & { [K_727 in Exclude<keyof I_1["list_data_socket"]["user_permission_req"], keyof UserPermissionInChannelListRequest>]: never; }) | undefined;
|
|
20045
20085
|
user_permission_list?: ({
|
|
20046
20086
|
clan_id?: string | undefined;
|
|
20047
20087
|
channel_id?: string | undefined;
|
|
@@ -20096,7 +20136,7 @@ export declare const Envelope: {
|
|
|
20096
20136
|
active?: number | undefined;
|
|
20097
20137
|
scope?: number | undefined;
|
|
20098
20138
|
level?: number | undefined;
|
|
20099
|
-
} & { [
|
|
20139
|
+
} & { [K_728 in Exclude<keyof I_1["list_data_socket"]["user_permission_list"]["permissions"]["permissions"][number], keyof import("../api/api").Permission>]: never; })[] & { [K_729 in Exclude<keyof I_1["list_data_socket"]["user_permission_list"]["permissions"]["permissions"], keyof {
|
|
20100
20140
|
id?: string | undefined;
|
|
20101
20141
|
title?: string | undefined;
|
|
20102
20142
|
slug?: string | undefined;
|
|
@@ -20106,8 +20146,8 @@ export declare const Envelope: {
|
|
|
20106
20146
|
level?: number | undefined;
|
|
20107
20147
|
}[]>]: never; }) | undefined;
|
|
20108
20148
|
max_level_permission?: number | undefined;
|
|
20109
|
-
} & { [
|
|
20110
|
-
} & { [
|
|
20149
|
+
} & { [K_730 in Exclude<keyof I_1["list_data_socket"]["user_permission_list"]["permissions"], keyof PermissionList>]: never; }) | undefined;
|
|
20150
|
+
} & { [K_731 in Exclude<keyof I_1["list_data_socket"]["user_permission_list"], keyof UserPermissionInChannelListResponse>]: never; }) | undefined;
|
|
20111
20151
|
permission_role_req?: ({
|
|
20112
20152
|
role_id?: string | undefined;
|
|
20113
20153
|
channel_id?: string | undefined;
|
|
@@ -20116,7 +20156,7 @@ export declare const Envelope: {
|
|
|
20116
20156
|
role_id?: string | undefined;
|
|
20117
20157
|
channel_id?: string | undefined;
|
|
20118
20158
|
user_id?: string | undefined;
|
|
20119
|
-
} & { [
|
|
20159
|
+
} & { [K_732 in Exclude<keyof I_1["list_data_socket"]["permission_role_req"], keyof PermissionRoleChannelListEventRequest>]: never; }) | undefined;
|
|
20120
20160
|
permission_role_list?: ({
|
|
20121
20161
|
role_id?: string | undefined;
|
|
20122
20162
|
channel_id?: string | undefined;
|
|
@@ -20138,11 +20178,11 @@ export declare const Envelope: {
|
|
|
20138
20178
|
} & {
|
|
20139
20179
|
permission_id?: string | undefined;
|
|
20140
20180
|
active?: boolean | undefined;
|
|
20141
|
-
} & { [
|
|
20181
|
+
} & { [K_733 in Exclude<keyof I_1["list_data_socket"]["permission_role_list"]["permission_role_channel"][number], keyof import("../api/api").PermissionRoleChannel>]: never; })[] & { [K_734 in Exclude<keyof I_1["list_data_socket"]["permission_role_list"]["permission_role_channel"], keyof {
|
|
20142
20182
|
permission_id?: string | undefined;
|
|
20143
20183
|
active?: boolean | undefined;
|
|
20144
20184
|
}[]>]: never; }) | undefined;
|
|
20145
|
-
} & { [
|
|
20185
|
+
} & { [K_735 in Exclude<keyof I_1["list_data_socket"]["permission_role_list"], keyof PermissionRoleChannelListEventResponse>]: never; }) | undefined;
|
|
20146
20186
|
emoji_list?: ({
|
|
20147
20187
|
emoji_list?: {
|
|
20148
20188
|
id?: string | undefined;
|
|
@@ -20186,7 +20226,7 @@ export declare const Envelope: {
|
|
|
20186
20226
|
logo?: string | undefined;
|
|
20187
20227
|
clan_name?: string | undefined;
|
|
20188
20228
|
is_for_sale?: boolean | undefined;
|
|
20189
|
-
} & { [
|
|
20229
|
+
} & { [K_736 in Exclude<keyof I_1["list_data_socket"]["emoji_list"]["emoji_list"][number], keyof import("../api/api").ClanEmoji>]: never; })[] & { [K_737 in Exclude<keyof I_1["list_data_socket"]["emoji_list"]["emoji_list"], keyof {
|
|
20190
20230
|
id?: string | undefined;
|
|
20191
20231
|
src?: string | undefined;
|
|
20192
20232
|
shortname?: string | undefined;
|
|
@@ -20197,7 +20237,7 @@ export declare const Envelope: {
|
|
|
20197
20237
|
clan_name?: string | undefined;
|
|
20198
20238
|
is_for_sale?: boolean | undefined;
|
|
20199
20239
|
}[]>]: never; }) | undefined;
|
|
20200
|
-
} & { [
|
|
20240
|
+
} & { [K_738 in Exclude<keyof I_1["list_data_socket"]["emoji_list"], "emoji_list">]: never; }) | undefined;
|
|
20201
20241
|
list_friend_req?: ({
|
|
20202
20242
|
limit?: number | undefined;
|
|
20203
20243
|
state?: number | undefined;
|
|
@@ -20206,7 +20246,7 @@ export declare const Envelope: {
|
|
|
20206
20246
|
limit?: number | undefined;
|
|
20207
20247
|
state?: number | undefined;
|
|
20208
20248
|
cursor?: string | undefined;
|
|
20209
|
-
} & { [
|
|
20249
|
+
} & { [K_739 in Exclude<keyof I_1["list_data_socket"]["list_friend_req"], keyof ListFriendsRequest>]: never; }) | undefined;
|
|
20210
20250
|
friend_list?: ({
|
|
20211
20251
|
friends?: {
|
|
20212
20252
|
user?: {
|
|
@@ -20330,13 +20370,13 @@ export declare const Envelope: {
|
|
|
20330
20370
|
is_mobile?: boolean | undefined;
|
|
20331
20371
|
dob?: Date | undefined;
|
|
20332
20372
|
mezon_id?: string | undefined;
|
|
20333
|
-
list_nick_names?: (string[] & string[] & { [
|
|
20373
|
+
list_nick_names?: (string[] & string[] & { [K_740 in Exclude<keyof I_1["list_data_socket"]["friend_list"]["friends"][number]["user"]["list_nick_names"], keyof string[]>]: never; }) | undefined;
|
|
20334
20374
|
status?: string | undefined;
|
|
20335
|
-
} & { [
|
|
20375
|
+
} & { [K_741 in Exclude<keyof I_1["list_data_socket"]["friend_list"]["friends"][number]["user"], keyof import("../api/api").User>]: never; }) | undefined;
|
|
20336
20376
|
state?: number | undefined;
|
|
20337
20377
|
update_time?: Date | undefined;
|
|
20338
20378
|
source_id?: string | undefined;
|
|
20339
|
-
} & { [
|
|
20379
|
+
} & { [K_742 in Exclude<keyof I_1["list_data_socket"]["friend_list"]["friends"][number], keyof import("../api/api").Friend>]: never; })[] & { [K_743 in Exclude<keyof I_1["list_data_socket"]["friend_list"]["friends"], keyof {
|
|
20340
20380
|
user?: {
|
|
20341
20381
|
id?: string | undefined;
|
|
20342
20382
|
username?: string | undefined;
|
|
@@ -20364,12 +20404,12 @@ export declare const Envelope: {
|
|
|
20364
20404
|
source_id?: string | undefined;
|
|
20365
20405
|
}[]>]: never; }) | undefined;
|
|
20366
20406
|
cursor?: string | undefined;
|
|
20367
|
-
} & { [
|
|
20407
|
+
} & { [K_744 in Exclude<keyof I_1["list_data_socket"]["friend_list"], keyof FriendList>]: never; }) | undefined;
|
|
20368
20408
|
list_apps_req?: ({
|
|
20369
20409
|
clan_id?: string | undefined;
|
|
20370
20410
|
} & {
|
|
20371
20411
|
clan_id?: string | undefined;
|
|
20372
|
-
} & { [
|
|
20412
|
+
} & { [K_745 in Exclude<keyof I_1["list_data_socket"]["list_apps_req"], "clan_id">]: never; }) | undefined;
|
|
20373
20413
|
channel_apps_list?: ({
|
|
20374
20414
|
channel_apps?: {
|
|
20375
20415
|
id?: string | undefined;
|
|
@@ -20397,14 +20437,14 @@ export declare const Envelope: {
|
|
|
20397
20437
|
channel_id?: string | undefined;
|
|
20398
20438
|
app_id?: string | undefined;
|
|
20399
20439
|
app_url?: string | undefined;
|
|
20400
|
-
} & { [
|
|
20440
|
+
} & { [K_746 in Exclude<keyof I_1["list_data_socket"]["channel_apps_list"]["channel_apps"][number], keyof import("../api/api").ChannelAppResponse>]: never; })[] & { [K_747 in Exclude<keyof I_1["list_data_socket"]["channel_apps_list"]["channel_apps"], keyof {
|
|
20401
20441
|
id?: string | undefined;
|
|
20402
20442
|
clan_id?: string | undefined;
|
|
20403
20443
|
channel_id?: string | undefined;
|
|
20404
20444
|
app_id?: string | undefined;
|
|
20405
20445
|
app_url?: string | undefined;
|
|
20406
20446
|
}[]>]: never; }) | undefined;
|
|
20407
|
-
} & { [
|
|
20447
|
+
} & { [K_748 in Exclude<keyof I_1["list_data_socket"]["channel_apps_list"], "channel_apps">]: never; }) | undefined;
|
|
20408
20448
|
user_activity_list?: ({
|
|
20409
20449
|
activities?: {
|
|
20410
20450
|
user_id?: string | undefined;
|
|
@@ -20444,7 +20484,7 @@ export declare const Envelope: {
|
|
|
20444
20484
|
end_time?: Date | undefined;
|
|
20445
20485
|
application_id?: string | undefined;
|
|
20446
20486
|
status?: number | undefined;
|
|
20447
|
-
} & { [
|
|
20487
|
+
} & { [K_749 in Exclude<keyof I_1["list_data_socket"]["user_activity_list"]["activities"][number], keyof UserActivity>]: never; })[] & { [K_750 in Exclude<keyof I_1["list_data_socket"]["user_activity_list"]["activities"], keyof {
|
|
20448
20488
|
user_id?: string | undefined;
|
|
20449
20489
|
activity_name?: string | undefined;
|
|
20450
20490
|
activity_type?: number | undefined;
|
|
@@ -20454,12 +20494,12 @@ export declare const Envelope: {
|
|
|
20454
20494
|
application_id?: string | undefined;
|
|
20455
20495
|
status?: number | undefined;
|
|
20456
20496
|
}[]>]: never; }) | undefined;
|
|
20457
|
-
} & { [
|
|
20497
|
+
} & { [K_751 in Exclude<keyof I_1["list_data_socket"]["user_activity_list"], "activities">]: never; }) | undefined;
|
|
20458
20498
|
list_clan_user_req?: ({
|
|
20459
20499
|
clan_id?: string | undefined;
|
|
20460
20500
|
} & {
|
|
20461
20501
|
clan_id?: string | undefined;
|
|
20462
|
-
} & { [
|
|
20502
|
+
} & { [K_752 in Exclude<keyof I_1["list_data_socket"]["list_clan_user_req"], "clan_id">]: never; }) | undefined;
|
|
20463
20503
|
clan_user_list?: ({
|
|
20464
20504
|
clan_users?: {
|
|
20465
20505
|
user?: {
|
|
@@ -20587,14 +20627,14 @@ export declare const Envelope: {
|
|
|
20587
20627
|
is_mobile?: boolean | undefined;
|
|
20588
20628
|
dob?: Date | undefined;
|
|
20589
20629
|
mezon_id?: string | undefined;
|
|
20590
|
-
list_nick_names?: (string[] & string[] & { [
|
|
20630
|
+
list_nick_names?: (string[] & string[] & { [K_753 in Exclude<keyof I_1["list_data_socket"]["clan_user_list"]["clan_users"][number]["user"]["list_nick_names"], keyof string[]>]: never; }) | undefined;
|
|
20591
20631
|
status?: string | undefined;
|
|
20592
|
-
} & { [
|
|
20593
|
-
role_id?: (string[] & string[] & { [
|
|
20632
|
+
} & { [K_754 in Exclude<keyof I_1["list_data_socket"]["clan_user_list"]["clan_users"][number]["user"], keyof import("../api/api").User>]: never; }) | undefined;
|
|
20633
|
+
role_id?: (string[] & string[] & { [K_755 in Exclude<keyof I_1["list_data_socket"]["clan_user_list"]["clan_users"][number]["role_id"], keyof string[]>]: never; }) | undefined;
|
|
20594
20634
|
clan_nick?: string | undefined;
|
|
20595
20635
|
clan_avatar?: string | undefined;
|
|
20596
20636
|
clan_id?: string | undefined;
|
|
20597
|
-
} & { [
|
|
20637
|
+
} & { [K_756 in Exclude<keyof I_1["list_data_socket"]["clan_user_list"]["clan_users"][number], keyof import("../api/api").ClanUserList_ClanUser>]: never; })[] & { [K_757 in Exclude<keyof I_1["list_data_socket"]["clan_user_list"]["clan_users"], keyof {
|
|
20598
20638
|
user?: {
|
|
20599
20639
|
id?: string | undefined;
|
|
20600
20640
|
username?: string | undefined;
|
|
@@ -20624,12 +20664,12 @@ export declare const Envelope: {
|
|
|
20624
20664
|
}[]>]: never; }) | undefined;
|
|
20625
20665
|
cursor?: string | undefined;
|
|
20626
20666
|
clan_id?: string | undefined;
|
|
20627
|
-
} & { [
|
|
20667
|
+
} & { [K_758 in Exclude<keyof I_1["list_data_socket"]["clan_user_list"], keyof ClanUserList>]: never; }) | undefined;
|
|
20628
20668
|
list_event_req?: ({
|
|
20629
20669
|
clan_id?: string | undefined;
|
|
20630
20670
|
} & {
|
|
20631
20671
|
clan_id?: string | undefined;
|
|
20632
|
-
} & { [
|
|
20672
|
+
} & { [K_759 in Exclude<keyof I_1["list_data_socket"]["list_event_req"], "clan_id">]: never; }) | undefined;
|
|
20633
20673
|
event_list?: ({
|
|
20634
20674
|
events?: {
|
|
20635
20675
|
id?: string | undefined;
|
|
@@ -20727,7 +20767,7 @@ export declare const Envelope: {
|
|
|
20727
20767
|
address?: string | undefined;
|
|
20728
20768
|
start_time?: Date | undefined;
|
|
20729
20769
|
end_time?: Date | undefined;
|
|
20730
|
-
user_ids?: (string[] & string[] & { [
|
|
20770
|
+
user_ids?: (string[] & string[] & { [K_760 in Exclude<keyof I_1["list_data_socket"]["event_list"]["events"][number]["user_ids"], keyof string[]>]: never; }) | undefined;
|
|
20731
20771
|
create_time?: Date | undefined;
|
|
20732
20772
|
max_permission?: number | undefined;
|
|
20733
20773
|
channel_id?: string | undefined;
|
|
@@ -20746,8 +20786,8 @@ export declare const Envelope: {
|
|
|
20746
20786
|
external_link?: string | undefined;
|
|
20747
20787
|
creator_id?: string | undefined;
|
|
20748
20788
|
event_id?: string | undefined;
|
|
20749
|
-
} & { [
|
|
20750
|
-
} & { [
|
|
20789
|
+
} & { [K_761 in Exclude<keyof I_1["list_data_socket"]["event_list"]["events"][number]["meet_room"], keyof import("../api/api").GenerateMezonMeetResponse>]: never; }) | undefined;
|
|
20790
|
+
} & { [K_762 in Exclude<keyof I_1["list_data_socket"]["event_list"]["events"][number], keyof import("../api/api").EventManagement>]: never; })[] & { [K_763 in Exclude<keyof I_1["list_data_socket"]["event_list"]["events"], keyof {
|
|
20751
20791
|
id?: string | undefined;
|
|
20752
20792
|
title?: string | undefined;
|
|
20753
20793
|
logo?: string | undefined;
|
|
@@ -20775,7 +20815,7 @@ export declare const Envelope: {
|
|
|
20775
20815
|
event_id?: string | undefined;
|
|
20776
20816
|
} | undefined;
|
|
20777
20817
|
}[]>]: never; }) | undefined;
|
|
20778
|
-
} & { [
|
|
20818
|
+
} & { [K_764 in Exclude<keyof I_1["list_data_socket"]["event_list"], "events">]: never; }) | undefined;
|
|
20779
20819
|
list_category_req?: ({
|
|
20780
20820
|
creator_id?: string | undefined;
|
|
20781
20821
|
clan_id?: string | undefined;
|
|
@@ -20788,7 +20828,7 @@ export declare const Envelope: {
|
|
|
20788
20828
|
category_name?: string | undefined;
|
|
20789
20829
|
category_id?: string | undefined;
|
|
20790
20830
|
category_order?: number | undefined;
|
|
20791
|
-
} & { [
|
|
20831
|
+
} & { [K_765 in Exclude<keyof I_1["list_data_socket"]["list_category_req"], keyof CategoryDesc>]: never; }) | undefined;
|
|
20792
20832
|
category_list?: ({
|
|
20793
20833
|
categorydesc?: {
|
|
20794
20834
|
creator_id?: string | undefined;
|
|
@@ -20816,14 +20856,14 @@ export declare const Envelope: {
|
|
|
20816
20856
|
category_name?: string | undefined;
|
|
20817
20857
|
category_id?: string | undefined;
|
|
20818
20858
|
category_order?: number | undefined;
|
|
20819
|
-
} & { [
|
|
20859
|
+
} & { [K_766 in Exclude<keyof I_1["list_data_socket"]["category_list"]["categorydesc"][number], keyof CategoryDesc>]: never; })[] & { [K_767 in Exclude<keyof I_1["list_data_socket"]["category_list"]["categorydesc"], keyof {
|
|
20820
20860
|
creator_id?: string | undefined;
|
|
20821
20861
|
clan_id?: string | undefined;
|
|
20822
20862
|
category_name?: string | undefined;
|
|
20823
20863
|
category_id?: string | undefined;
|
|
20824
20864
|
category_order?: number | undefined;
|
|
20825
20865
|
}[]>]: never; }) | undefined;
|
|
20826
|
-
} & { [
|
|
20866
|
+
} & { [K_768 in Exclude<keyof I_1["list_data_socket"]["category_list"], "categorydesc">]: never; }) | undefined;
|
|
20827
20867
|
stream_user_list?: ({
|
|
20828
20868
|
streaming_channel_users?: {
|
|
20829
20869
|
id?: string | undefined;
|
|
@@ -20847,24 +20887,24 @@ export declare const Envelope: {
|
|
|
20847
20887
|
user_id?: string | undefined;
|
|
20848
20888
|
channel_id?: string | undefined;
|
|
20849
20889
|
participant?: string | undefined;
|
|
20850
|
-
} & { [
|
|
20890
|
+
} & { [K_769 in Exclude<keyof I_1["list_data_socket"]["stream_user_list"]["streaming_channel_users"][number], keyof import("../api/api").StreamingChannelUser>]: never; })[] & { [K_770 in Exclude<keyof I_1["list_data_socket"]["stream_user_list"]["streaming_channel_users"], keyof {
|
|
20851
20891
|
id?: string | undefined;
|
|
20852
20892
|
user_id?: string | undefined;
|
|
20853
20893
|
channel_id?: string | undefined;
|
|
20854
20894
|
participant?: string | undefined;
|
|
20855
20895
|
}[]>]: never; }) | undefined;
|
|
20856
|
-
} & { [
|
|
20896
|
+
} & { [K_771 in Exclude<keyof I_1["list_data_socket"]["stream_user_list"], "streaming_channel_users">]: never; }) | undefined;
|
|
20857
20897
|
list_unread_msg_indicator_req?: ({
|
|
20858
20898
|
clan_id?: string | undefined;
|
|
20859
20899
|
} & {
|
|
20860
20900
|
clan_id?: string | undefined;
|
|
20861
|
-
} & { [
|
|
20901
|
+
} & { [K_772 in Exclude<keyof I_1["list_data_socket"]["list_unread_msg_indicator_req"], "clan_id">]: never; }) | undefined;
|
|
20862
20902
|
unread_msg_indicator?: ({
|
|
20863
20903
|
has_unread_message?: boolean | undefined;
|
|
20864
20904
|
} & {
|
|
20865
20905
|
has_unread_message?: boolean | undefined;
|
|
20866
|
-
} & { [
|
|
20867
|
-
} & { [
|
|
20906
|
+
} & { [K_773 in Exclude<keyof I_1["list_data_socket"]["unread_msg_indicator"], "has_unread_message">]: never; }) | undefined;
|
|
20907
|
+
} & { [K_774 in Exclude<keyof I_1["list_data_socket"], keyof ListDataSocket>]: never; }) | undefined;
|
|
20868
20908
|
quick_menu_event?: ({
|
|
20869
20909
|
menu_name?: string | undefined;
|
|
20870
20910
|
message?: {
|
|
@@ -20985,7 +21025,7 @@ export declare const Envelope: {
|
|
|
20985
21025
|
create_time?: Date | undefined;
|
|
20986
21026
|
s?: number | undefined;
|
|
20987
21027
|
e?: number | undefined;
|
|
20988
|
-
} & { [
|
|
21028
|
+
} & { [K_775 in Exclude<keyof I_1["quick_menu_event"]["message"]["mentions"][number], keyof MessageMention>]: never; })[] & { [K_776 in Exclude<keyof I_1["quick_menu_event"]["message"]["mentions"], keyof {
|
|
20989
21029
|
id?: string | undefined;
|
|
20990
21030
|
user_id?: string | undefined;
|
|
20991
21031
|
username?: string | undefined;
|
|
@@ -21019,7 +21059,7 @@ export declare const Envelope: {
|
|
|
21019
21059
|
width?: number | undefined;
|
|
21020
21060
|
height?: number | undefined;
|
|
21021
21061
|
thumbnail?: string | undefined;
|
|
21022
|
-
} & { [
|
|
21062
|
+
} & { [K_777 in Exclude<keyof I_1["quick_menu_event"]["message"]["attachments"][number], keyof MessageAttachment>]: never; })[] & { [K_778 in Exclude<keyof I_1["quick_menu_event"]["message"]["attachments"], keyof {
|
|
21023
21063
|
filename?: string | undefined;
|
|
21024
21064
|
size?: number | undefined;
|
|
21025
21065
|
url?: string | undefined;
|
|
@@ -21061,7 +21101,7 @@ export declare const Envelope: {
|
|
|
21061
21101
|
mesages_sender_avatar?: string | undefined;
|
|
21062
21102
|
message_sender_clan_nick?: string | undefined;
|
|
21063
21103
|
message_sender_display_name?: string | undefined;
|
|
21064
|
-
} & { [
|
|
21104
|
+
} & { [K_779 in Exclude<keyof I_1["quick_menu_event"]["message"]["references"][number], keyof MessageRef>]: never; })[] & { [K_780 in Exclude<keyof I_1["quick_menu_event"]["message"]["references"], keyof {
|
|
21065
21105
|
message_id?: string | undefined;
|
|
21066
21106
|
message_ref_id?: string | undefined;
|
|
21067
21107
|
content?: string | undefined;
|
|
@@ -21080,8 +21120,8 @@ export declare const Envelope: {
|
|
|
21080
21120
|
is_public?: boolean | undefined;
|
|
21081
21121
|
code?: number | undefined;
|
|
21082
21122
|
topic_id?: string | undefined;
|
|
21083
|
-
} & { [
|
|
21084
|
-
} & { [
|
|
21123
|
+
} & { [K_781 in Exclude<keyof I_1["quick_menu_event"]["message"], keyof ChannelMessageSend>]: never; }) | undefined;
|
|
21124
|
+
} & { [K_782 in Exclude<keyof I_1["quick_menu_event"], keyof QuickMenuDataEvent>]: never; }) | undefined;
|
|
21085
21125
|
un_block_friend?: ({
|
|
21086
21126
|
user_id?: string | undefined;
|
|
21087
21127
|
username?: string | undefined;
|
|
@@ -21096,7 +21136,7 @@ export declare const Envelope: {
|
|
|
21096
21136
|
display_name?: string | undefined;
|
|
21097
21137
|
status?: string | undefined;
|
|
21098
21138
|
user_status?: string | undefined;
|
|
21099
|
-
} & { [
|
|
21139
|
+
} & { [K_783 in Exclude<keyof I_1["un_block_friend"], keyof UnblockFriend>]: never; }) | undefined;
|
|
21100
21140
|
meet_participant_event?: ({
|
|
21101
21141
|
username?: string | undefined;
|
|
21102
21142
|
room_name?: string | undefined;
|
|
@@ -21109,7 +21149,7 @@ export declare const Envelope: {
|
|
|
21109
21149
|
channel_id?: string | undefined;
|
|
21110
21150
|
clan_id?: string | undefined;
|
|
21111
21151
|
action?: number | undefined;
|
|
21112
|
-
} & { [
|
|
21152
|
+
} & { [K_784 in Exclude<keyof I_1["meet_participant_event"], keyof MeetParticipantEvent>]: never; }) | undefined;
|
|
21113
21153
|
transfer_ownership_event?: ({
|
|
21114
21154
|
clan_id?: string | undefined;
|
|
21115
21155
|
prev_owner?: string | undefined;
|
|
@@ -21118,7 +21158,7 @@ export declare const Envelope: {
|
|
|
21118
21158
|
clan_id?: string | undefined;
|
|
21119
21159
|
prev_owner?: string | undefined;
|
|
21120
21160
|
curr_owner?: string | undefined;
|
|
21121
|
-
} & { [
|
|
21161
|
+
} & { [K_785 in Exclude<keyof I_1["transfer_ownership_event"], keyof TransferOwnershipEvent>]: never; }) | undefined;
|
|
21122
21162
|
add_friend?: ({
|
|
21123
21163
|
user_id?: string | undefined;
|
|
21124
21164
|
username?: string | undefined;
|
|
@@ -21129,8 +21169,17 @@ export declare const Envelope: {
|
|
|
21129
21169
|
username?: string | undefined;
|
|
21130
21170
|
display_name?: string | undefined;
|
|
21131
21171
|
avatar?: string | undefined;
|
|
21132
|
-
} & { [
|
|
21133
|
-
|
|
21172
|
+
} & { [K_786 in Exclude<keyof I_1["add_friend"], keyof AddFriend>]: never; }) | undefined;
|
|
21173
|
+
ban_user_event?: ({
|
|
21174
|
+
user_ids?: string[] | undefined;
|
|
21175
|
+
action?: number | undefined;
|
|
21176
|
+
banner_id?: string | undefined;
|
|
21177
|
+
} & {
|
|
21178
|
+
user_ids?: (string[] & string[] & { [K_787 in Exclude<keyof I_1["ban_user_event"]["user_ids"], keyof string[]>]: never; }) | undefined;
|
|
21179
|
+
action?: number | undefined;
|
|
21180
|
+
banner_id?: string | undefined;
|
|
21181
|
+
} & { [K_788 in Exclude<keyof I_1["ban_user_event"], keyof BannedUserEvent>]: never; }) | undefined;
|
|
21182
|
+
} & { [K_789 in Exclude<keyof I_1, keyof Envelope>]: never; }>(object: I_1): Envelope;
|
|
21134
21183
|
};
|
|
21135
21184
|
export declare const FollowEvent: {
|
|
21136
21185
|
encode(_: FollowEvent, writer?: _m0.Writer): _m0.Writer;
|
|
@@ -21140,6 +21189,30 @@ export declare const FollowEvent: {
|
|
|
21140
21189
|
create<I extends {} & {} & { [K in Exclude<keyof I, never>]: never; }>(base?: I | undefined): FollowEvent;
|
|
21141
21190
|
fromPartial<I_1 extends {} & {} & { [K_1 in Exclude<keyof I_1, never>]: never; }>(_: I_1): FollowEvent;
|
|
21142
21191
|
};
|
|
21192
|
+
export declare const BannedUserEvent: {
|
|
21193
|
+
encode(message: BannedUserEvent, writer?: _m0.Writer): _m0.Writer;
|
|
21194
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): BannedUserEvent;
|
|
21195
|
+
fromJSON(object: any): BannedUserEvent;
|
|
21196
|
+
toJSON(message: BannedUserEvent): unknown;
|
|
21197
|
+
create<I extends {
|
|
21198
|
+
user_ids?: string[] | undefined;
|
|
21199
|
+
action?: number | undefined;
|
|
21200
|
+
banner_id?: string | undefined;
|
|
21201
|
+
} & {
|
|
21202
|
+
user_ids?: (string[] & string[] & { [K in Exclude<keyof I["user_ids"], keyof string[]>]: never; }) | undefined;
|
|
21203
|
+
action?: number | undefined;
|
|
21204
|
+
banner_id?: string | undefined;
|
|
21205
|
+
} & { [K_1 in Exclude<keyof I, keyof BannedUserEvent>]: never; }>(base?: I | undefined): BannedUserEvent;
|
|
21206
|
+
fromPartial<I_1 extends {
|
|
21207
|
+
user_ids?: string[] | undefined;
|
|
21208
|
+
action?: number | undefined;
|
|
21209
|
+
banner_id?: string | undefined;
|
|
21210
|
+
} & {
|
|
21211
|
+
user_ids?: (string[] & string[] & { [K_2 in Exclude<keyof I_1["user_ids"], keyof string[]>]: never; }) | undefined;
|
|
21212
|
+
action?: number | undefined;
|
|
21213
|
+
banner_id?: string | undefined;
|
|
21214
|
+
} & { [K_3 in Exclude<keyof I_1, keyof BannedUserEvent>]: never; }>(object: I_1): BannedUserEvent;
|
|
21215
|
+
};
|
|
21143
21216
|
export declare const ChannelCanvas: {
|
|
21144
21217
|
encode(message: ChannelCanvas, writer?: _m0.Writer): _m0.Writer;
|
|
21145
21218
|
decode(input: _m0.Reader | Uint8Array, length?: number): ChannelCanvas;
|
|
@@ -28877,6 +28950,7 @@ export declare const ListDataSocket: {
|
|
|
28877
28950
|
clan_avatar?: string | undefined;
|
|
28878
28951
|
clan_id?: string | undefined;
|
|
28879
28952
|
added_by?: string | undefined;
|
|
28953
|
+
is_banned?: boolean | undefined;
|
|
28880
28954
|
}[] | undefined;
|
|
28881
28955
|
cursor?: string | undefined;
|
|
28882
28956
|
channel_id?: string | undefined;
|
|
@@ -30353,6 +30427,7 @@ export declare const ListDataSocket: {
|
|
|
30353
30427
|
clan_avatar?: string | undefined;
|
|
30354
30428
|
clan_id?: string | undefined;
|
|
30355
30429
|
added_by?: string | undefined;
|
|
30430
|
+
is_banned?: boolean | undefined;
|
|
30356
30431
|
}[] | undefined;
|
|
30357
30432
|
cursor?: string | undefined;
|
|
30358
30433
|
channel_id?: string | undefined;
|
|
@@ -30366,6 +30441,7 @@ export declare const ListDataSocket: {
|
|
|
30366
30441
|
clan_avatar?: string | undefined;
|
|
30367
30442
|
clan_id?: string | undefined;
|
|
30368
30443
|
added_by?: string | undefined;
|
|
30444
|
+
is_banned?: boolean | undefined;
|
|
30369
30445
|
}[] & ({
|
|
30370
30446
|
user_id?: string | undefined;
|
|
30371
30447
|
role_id?: string[] | undefined;
|
|
@@ -30375,6 +30451,7 @@ export declare const ListDataSocket: {
|
|
|
30375
30451
|
clan_avatar?: string | undefined;
|
|
30376
30452
|
clan_id?: string | undefined;
|
|
30377
30453
|
added_by?: string | undefined;
|
|
30454
|
+
is_banned?: boolean | undefined;
|
|
30378
30455
|
} & {
|
|
30379
30456
|
user_id?: string | undefined;
|
|
30380
30457
|
role_id?: (string[] & string[] & { [K_48 in Exclude<keyof I["channel_user_list"]["channel_users"][number]["role_id"], keyof string[]>]: never; }) | undefined;
|
|
@@ -30384,6 +30461,7 @@ export declare const ListDataSocket: {
|
|
|
30384
30461
|
clan_avatar?: string | undefined;
|
|
30385
30462
|
clan_id?: string | undefined;
|
|
30386
30463
|
added_by?: string | undefined;
|
|
30464
|
+
is_banned?: boolean | undefined;
|
|
30387
30465
|
} & { [K_49 in Exclude<keyof I["channel_user_list"]["channel_users"][number], keyof import("../api/api").ChannelUserList_ChannelUser>]: never; })[] & { [K_50 in Exclude<keyof I["channel_user_list"]["channel_users"], keyof {
|
|
30388
30466
|
user_id?: string | undefined;
|
|
30389
30467
|
role_id?: string[] | undefined;
|
|
@@ -30393,6 +30471,7 @@ export declare const ListDataSocket: {
|
|
|
30393
30471
|
clan_avatar?: string | undefined;
|
|
30394
30472
|
clan_id?: string | undefined;
|
|
30395
30473
|
added_by?: string | undefined;
|
|
30474
|
+
is_banned?: boolean | undefined;
|
|
30396
30475
|
}[]>]: never; }) | undefined;
|
|
30397
30476
|
cursor?: string | undefined;
|
|
30398
30477
|
channel_id?: string | undefined;
|
|
@@ -33274,6 +33353,7 @@ export declare const ListDataSocket: {
|
|
|
33274
33353
|
clan_avatar?: string | undefined;
|
|
33275
33354
|
clan_id?: string | undefined;
|
|
33276
33355
|
added_by?: string | undefined;
|
|
33356
|
+
is_banned?: boolean | undefined;
|
|
33277
33357
|
}[] | undefined;
|
|
33278
33358
|
cursor?: string | undefined;
|
|
33279
33359
|
channel_id?: string | undefined;
|
|
@@ -34750,6 +34830,7 @@ export declare const ListDataSocket: {
|
|
|
34750
34830
|
clan_avatar?: string | undefined;
|
|
34751
34831
|
clan_id?: string | undefined;
|
|
34752
34832
|
added_by?: string | undefined;
|
|
34833
|
+
is_banned?: boolean | undefined;
|
|
34753
34834
|
}[] | undefined;
|
|
34754
34835
|
cursor?: string | undefined;
|
|
34755
34836
|
channel_id?: string | undefined;
|
|
@@ -34763,6 +34844,7 @@ export declare const ListDataSocket: {
|
|
|
34763
34844
|
clan_avatar?: string | undefined;
|
|
34764
34845
|
clan_id?: string | undefined;
|
|
34765
34846
|
added_by?: string | undefined;
|
|
34847
|
+
is_banned?: boolean | undefined;
|
|
34766
34848
|
}[] & ({
|
|
34767
34849
|
user_id?: string | undefined;
|
|
34768
34850
|
role_id?: string[] | undefined;
|
|
@@ -34772,6 +34854,7 @@ export declare const ListDataSocket: {
|
|
|
34772
34854
|
clan_avatar?: string | undefined;
|
|
34773
34855
|
clan_id?: string | undefined;
|
|
34774
34856
|
added_by?: string | undefined;
|
|
34857
|
+
is_banned?: boolean | undefined;
|
|
34775
34858
|
} & {
|
|
34776
34859
|
user_id?: string | undefined;
|
|
34777
34860
|
role_id?: (string[] & string[] & { [K_236 in Exclude<keyof I_1["channel_user_list"]["channel_users"][number]["role_id"], keyof string[]>]: never; }) | undefined;
|
|
@@ -34781,6 +34864,7 @@ export declare const ListDataSocket: {
|
|
|
34781
34864
|
clan_avatar?: string | undefined;
|
|
34782
34865
|
clan_id?: string | undefined;
|
|
34783
34866
|
added_by?: string | undefined;
|
|
34867
|
+
is_banned?: boolean | undefined;
|
|
34784
34868
|
} & { [K_237 in Exclude<keyof I_1["channel_user_list"]["channel_users"][number], keyof import("../api/api").ChannelUserList_ChannelUser>]: never; })[] & { [K_238 in Exclude<keyof I_1["channel_user_list"]["channel_users"], keyof {
|
|
34785
34869
|
user_id?: string | undefined;
|
|
34786
34870
|
role_id?: string[] | undefined;
|
|
@@ -34790,6 +34874,7 @@ export declare const ListDataSocket: {
|
|
|
34790
34874
|
clan_avatar?: string | undefined;
|
|
34791
34875
|
clan_id?: string | undefined;
|
|
34792
34876
|
added_by?: string | undefined;
|
|
34877
|
+
is_banned?: boolean | undefined;
|
|
34793
34878
|
}[]>]: never; }) | undefined;
|
|
34794
34879
|
cursor?: string | undefined;
|
|
34795
34880
|
channel_id?: string | undefined;
|