mezon-js-protobuf 1.8.25 → 1.8.27
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 +140 -0
- package/dist/mezon-js-protobuf/api/api.d.ts +43 -0
- package/dist/mezon-js-protobuf/rtapi/realtime.d.ts +381 -331
- package/dist/mezon-js-protobuf.cjs.js +86 -5
- package/dist/mezon-js-protobuf.esm.mjs +86 -5
- package/package.json +1 -1
- package/rtapi/realtime.ts +103 -1
|
@@ -170,6 +170,8 @@ export interface Envelope {
|
|
|
170
170
|
list_data_socket?: ListDataSocket | undefined;
|
|
171
171
|
/** quick menu event */
|
|
172
172
|
quick_menu_event?: QuickMenuDataEvent | undefined;
|
|
173
|
+
/** unblock friend */
|
|
174
|
+
un_block_friend?: UnblockFriend | undefined;
|
|
173
175
|
}
|
|
174
176
|
export interface FollowEvent {
|
|
175
177
|
}
|
|
@@ -436,6 +438,8 @@ export interface ChannelMessageUpdate {
|
|
|
436
438
|
topic_id: string;
|
|
437
439
|
/** update message topic */
|
|
438
440
|
is_update_msg_topic: boolean;
|
|
441
|
+
/** old mentions */
|
|
442
|
+
old_mentions: string;
|
|
439
443
|
}
|
|
440
444
|
/** Remove a message previously sent to a realtime channel. */
|
|
441
445
|
export interface ChannelMessageRemove {
|
|
@@ -523,6 +527,10 @@ export interface BlockFriend {
|
|
|
523
527
|
/** */
|
|
524
528
|
user_id: string;
|
|
525
529
|
}
|
|
530
|
+
export interface UnblockFriend {
|
|
531
|
+
/** */
|
|
532
|
+
user_id: string;
|
|
533
|
+
}
|
|
526
534
|
/** Application-level heartbeat and connection check. */
|
|
527
535
|
export interface Ping {
|
|
528
536
|
}
|
|
@@ -1388,6 +1396,7 @@ export declare const Envelope: {
|
|
|
1388
1396
|
hide_editted?: boolean | undefined;
|
|
1389
1397
|
topic_id?: string | undefined;
|
|
1390
1398
|
is_update_msg_topic?: boolean | undefined;
|
|
1399
|
+
old_mentions?: string | undefined;
|
|
1391
1400
|
} | undefined;
|
|
1392
1401
|
channel_message_remove?: {
|
|
1393
1402
|
clan_id?: string | undefined;
|
|
@@ -3213,6 +3222,9 @@ export declare const Envelope: {
|
|
|
3213
3222
|
topic_id?: string | undefined;
|
|
3214
3223
|
} | undefined;
|
|
3215
3224
|
} | undefined;
|
|
3225
|
+
un_block_friend?: {
|
|
3226
|
+
user_id?: string | undefined;
|
|
3227
|
+
} | undefined;
|
|
3216
3228
|
} & {
|
|
3217
3229
|
cid?: string | undefined;
|
|
3218
3230
|
channel?: ({
|
|
@@ -3597,6 +3609,7 @@ export declare const Envelope: {
|
|
|
3597
3609
|
hide_editted?: boolean | undefined;
|
|
3598
3610
|
topic_id?: string | undefined;
|
|
3599
3611
|
is_update_msg_topic?: boolean | undefined;
|
|
3612
|
+
old_mentions?: string | undefined;
|
|
3600
3613
|
} & {
|
|
3601
3614
|
clan_id?: string | undefined;
|
|
3602
3615
|
channel_id?: string | undefined;
|
|
@@ -3677,6 +3690,7 @@ export declare const Envelope: {
|
|
|
3677
3690
|
hide_editted?: boolean | undefined;
|
|
3678
3691
|
topic_id?: string | undefined;
|
|
3679
3692
|
is_update_msg_topic?: boolean | undefined;
|
|
3693
|
+
old_mentions?: string | undefined;
|
|
3680
3694
|
} & { [K_20 in Exclude<keyof I["channel_message_update"], keyof ChannelMessageUpdate>]: never; }) | undefined;
|
|
3681
3695
|
channel_message_remove?: ({
|
|
3682
3696
|
clan_id?: string | undefined;
|
|
@@ -11071,7 +11085,12 @@ export declare const Envelope: {
|
|
|
11071
11085
|
topic_id?: string | undefined;
|
|
11072
11086
|
} & { [K_390 in Exclude<keyof I["quick_menu_event"]["message"], keyof ChannelMessageSend>]: never; }) | undefined;
|
|
11073
11087
|
} & { [K_391 in Exclude<keyof I["quick_menu_event"], keyof QuickMenuDataEvent>]: never; }) | undefined;
|
|
11074
|
-
|
|
11088
|
+
un_block_friend?: ({
|
|
11089
|
+
user_id?: string | undefined;
|
|
11090
|
+
} & {
|
|
11091
|
+
user_id?: string | undefined;
|
|
11092
|
+
} & { [K_392 in Exclude<keyof I["un_block_friend"], "user_id">]: never; }) | undefined;
|
|
11093
|
+
} & { [K_393 in Exclude<keyof I, keyof Envelope>]: never; }>(base?: I | undefined): Envelope;
|
|
11075
11094
|
fromPartial<I_1 extends {
|
|
11076
11095
|
cid?: string | undefined;
|
|
11077
11096
|
channel?: {
|
|
@@ -11225,6 +11244,7 @@ export declare const Envelope: {
|
|
|
11225
11244
|
hide_editted?: boolean | undefined;
|
|
11226
11245
|
topic_id?: string | undefined;
|
|
11227
11246
|
is_update_msg_topic?: boolean | undefined;
|
|
11247
|
+
old_mentions?: string | undefined;
|
|
11228
11248
|
} | undefined;
|
|
11229
11249
|
channel_message_remove?: {
|
|
11230
11250
|
clan_id?: string | undefined;
|
|
@@ -13050,6 +13070,9 @@ export declare const Envelope: {
|
|
|
13050
13070
|
topic_id?: string | undefined;
|
|
13051
13071
|
} | undefined;
|
|
13052
13072
|
} | undefined;
|
|
13073
|
+
un_block_friend?: {
|
|
13074
|
+
user_id?: string | undefined;
|
|
13075
|
+
} | undefined;
|
|
13053
13076
|
} & {
|
|
13054
13077
|
cid?: string | undefined;
|
|
13055
13078
|
channel?: ({
|
|
@@ -13101,7 +13124,7 @@ export declare const Envelope: {
|
|
|
13101
13124
|
status?: string | undefined;
|
|
13102
13125
|
is_mobile?: boolean | undefined;
|
|
13103
13126
|
metadata?: string | undefined;
|
|
13104
|
-
} & { [
|
|
13127
|
+
} & { [K_394 in Exclude<keyof I_1["channel"]["presences"][number], keyof UserPresence>]: never; })[] & { [K_395 in Exclude<keyof I_1["channel"]["presences"], keyof {
|
|
13105
13128
|
user_id?: string | undefined;
|
|
13106
13129
|
session_id?: string | undefined;
|
|
13107
13130
|
username?: string | undefined;
|
|
@@ -13126,16 +13149,16 @@ export declare const Envelope: {
|
|
|
13126
13149
|
status?: string | undefined;
|
|
13127
13150
|
is_mobile?: boolean | undefined;
|
|
13128
13151
|
metadata?: string | undefined;
|
|
13129
|
-
} & { [
|
|
13152
|
+
} & { [K_396 in Exclude<keyof I_1["channel"]["self"], keyof UserPresence>]: never; }) | undefined;
|
|
13130
13153
|
chanel_label?: string | undefined;
|
|
13131
13154
|
clan_logo?: string | undefined;
|
|
13132
13155
|
category_name?: string | undefined;
|
|
13133
|
-
} & { [
|
|
13156
|
+
} & { [K_397 in Exclude<keyof I_1["channel"], keyof Channel>]: never; }) | undefined;
|
|
13134
13157
|
clan_join?: ({
|
|
13135
13158
|
clan_id?: string | undefined;
|
|
13136
13159
|
} & {
|
|
13137
13160
|
clan_id?: string | undefined;
|
|
13138
|
-
} & { [
|
|
13161
|
+
} & { [K_398 in Exclude<keyof I_1["clan_join"], "clan_id">]: never; }) | undefined;
|
|
13139
13162
|
channel_join?: ({
|
|
13140
13163
|
clan_id?: string | undefined;
|
|
13141
13164
|
channel_id?: string | undefined;
|
|
@@ -13146,7 +13169,7 @@ export declare const Envelope: {
|
|
|
13146
13169
|
channel_id?: string | undefined;
|
|
13147
13170
|
channel_type?: number | undefined;
|
|
13148
13171
|
is_public?: boolean | undefined;
|
|
13149
|
-
} & { [
|
|
13172
|
+
} & { [K_399 in Exclude<keyof I_1["channel_join"], keyof ChannelJoin>]: never; }) | undefined;
|
|
13150
13173
|
channel_leave?: ({
|
|
13151
13174
|
clan_id?: string | undefined;
|
|
13152
13175
|
channel_id?: string | undefined;
|
|
@@ -13157,7 +13180,7 @@ export declare const Envelope: {
|
|
|
13157
13180
|
channel_id?: string | undefined;
|
|
13158
13181
|
channel_type?: number | undefined;
|
|
13159
13182
|
is_public?: boolean | undefined;
|
|
13160
|
-
} & { [
|
|
13183
|
+
} & { [K_400 in Exclude<keyof I_1["channel_leave"], keyof ChannelLeave>]: never; }) | undefined;
|
|
13161
13184
|
channel_message?: ({
|
|
13162
13185
|
clan_id?: string | undefined;
|
|
13163
13186
|
channel_id?: string | undefined;
|
|
@@ -13214,7 +13237,7 @@ export declare const Envelope: {
|
|
|
13214
13237
|
hide_editted?: boolean | undefined;
|
|
13215
13238
|
is_public?: boolean | undefined;
|
|
13216
13239
|
topic_id?: string | undefined;
|
|
13217
|
-
} & { [
|
|
13240
|
+
} & { [K_401 in Exclude<keyof I_1["channel_message"], keyof ChannelMessage>]: never; }) | undefined;
|
|
13218
13241
|
channel_message_ack?: ({
|
|
13219
13242
|
channel_id?: string | undefined;
|
|
13220
13243
|
message_id?: string | undefined;
|
|
@@ -13235,7 +13258,7 @@ export declare const Envelope: {
|
|
|
13235
13258
|
persistent?: boolean | undefined;
|
|
13236
13259
|
clan_logo?: string | undefined;
|
|
13237
13260
|
category_name?: string | undefined;
|
|
13238
|
-
} & { [
|
|
13261
|
+
} & { [K_402 in Exclude<keyof I_1["channel_message_ack"], keyof ChannelMessageAck>]: never; }) | undefined;
|
|
13239
13262
|
channel_message_send?: ({
|
|
13240
13263
|
clan_id?: string | undefined;
|
|
13241
13264
|
channel_id?: string | undefined;
|
|
@@ -13309,7 +13332,7 @@ export declare const Envelope: {
|
|
|
13309
13332
|
create_time?: Date | undefined;
|
|
13310
13333
|
s?: number | undefined;
|
|
13311
13334
|
e?: number | undefined;
|
|
13312
|
-
} & { [
|
|
13335
|
+
} & { [K_403 in Exclude<keyof I_1["channel_message_send"]["mentions"][number], keyof MessageMention>]: never; })[] & { [K_404 in Exclude<keyof I_1["channel_message_send"]["mentions"], keyof {
|
|
13313
13336
|
id?: string | undefined;
|
|
13314
13337
|
user_id?: string | undefined;
|
|
13315
13338
|
username?: string | undefined;
|
|
@@ -13343,7 +13366,7 @@ export declare const Envelope: {
|
|
|
13343
13366
|
width?: number | undefined;
|
|
13344
13367
|
height?: number | undefined;
|
|
13345
13368
|
thumbnail?: string | undefined;
|
|
13346
|
-
} & { [
|
|
13369
|
+
} & { [K_405 in Exclude<keyof I_1["channel_message_send"]["attachments"][number], keyof MessageAttachment>]: never; })[] & { [K_406 in Exclude<keyof I_1["channel_message_send"]["attachments"], keyof {
|
|
13347
13370
|
filename?: string | undefined;
|
|
13348
13371
|
size?: number | undefined;
|
|
13349
13372
|
url?: string | undefined;
|
|
@@ -13385,7 +13408,7 @@ export declare const Envelope: {
|
|
|
13385
13408
|
mesages_sender_avatar?: string | undefined;
|
|
13386
13409
|
message_sender_clan_nick?: string | undefined;
|
|
13387
13410
|
message_sender_display_name?: string | undefined;
|
|
13388
|
-
} & { [
|
|
13411
|
+
} & { [K_407 in Exclude<keyof I_1["channel_message_send"]["references"][number], keyof MessageRef>]: never; })[] & { [K_408 in Exclude<keyof I_1["channel_message_send"]["references"], keyof {
|
|
13389
13412
|
message_id?: string | undefined;
|
|
13390
13413
|
message_ref_id?: string | undefined;
|
|
13391
13414
|
content?: string | undefined;
|
|
@@ -13404,7 +13427,7 @@ export declare const Envelope: {
|
|
|
13404
13427
|
is_public?: boolean | undefined;
|
|
13405
13428
|
code?: number | undefined;
|
|
13406
13429
|
topic_id?: string | undefined;
|
|
13407
|
-
} & { [
|
|
13430
|
+
} & { [K_409 in Exclude<keyof I_1["channel_message_send"], keyof ChannelMessageSend>]: never; }) | undefined;
|
|
13408
13431
|
channel_message_update?: ({
|
|
13409
13432
|
clan_id?: string | undefined;
|
|
13410
13433
|
channel_id?: string | undefined;
|
|
@@ -13434,6 +13457,7 @@ export declare const Envelope: {
|
|
|
13434
13457
|
hide_editted?: boolean | undefined;
|
|
13435
13458
|
topic_id?: string | undefined;
|
|
13436
13459
|
is_update_msg_topic?: boolean | undefined;
|
|
13460
|
+
old_mentions?: string | undefined;
|
|
13437
13461
|
} & {
|
|
13438
13462
|
clan_id?: string | undefined;
|
|
13439
13463
|
channel_id?: string | undefined;
|
|
@@ -13466,7 +13490,7 @@ export declare const Envelope: {
|
|
|
13466
13490
|
create_time?: Date | undefined;
|
|
13467
13491
|
s?: number | undefined;
|
|
13468
13492
|
e?: number | undefined;
|
|
13469
|
-
} & { [
|
|
13493
|
+
} & { [K_410 in Exclude<keyof I_1["channel_message_update"]["mentions"][number], keyof MessageMention>]: never; })[] & { [K_411 in Exclude<keyof I_1["channel_message_update"]["mentions"], keyof {
|
|
13470
13494
|
id?: string | undefined;
|
|
13471
13495
|
user_id?: string | undefined;
|
|
13472
13496
|
username?: string | undefined;
|
|
@@ -13500,7 +13524,7 @@ export declare const Envelope: {
|
|
|
13500
13524
|
width?: number | undefined;
|
|
13501
13525
|
height?: number | undefined;
|
|
13502
13526
|
thumbnail?: string | undefined;
|
|
13503
|
-
} & { [
|
|
13527
|
+
} & { [K_412 in Exclude<keyof I_1["channel_message_update"]["attachments"][number], keyof MessageAttachment>]: never; })[] & { [K_413 in Exclude<keyof I_1["channel_message_update"]["attachments"], keyof {
|
|
13504
13528
|
filename?: string | undefined;
|
|
13505
13529
|
size?: number | undefined;
|
|
13506
13530
|
url?: string | undefined;
|
|
@@ -13514,7 +13538,8 @@ export declare const Envelope: {
|
|
|
13514
13538
|
hide_editted?: boolean | undefined;
|
|
13515
13539
|
topic_id?: string | undefined;
|
|
13516
13540
|
is_update_msg_topic?: boolean | undefined;
|
|
13517
|
-
|
|
13541
|
+
old_mentions?: string | undefined;
|
|
13542
|
+
} & { [K_414 in Exclude<keyof I_1["channel_message_update"], keyof ChannelMessageUpdate>]: never; }) | undefined;
|
|
13518
13543
|
channel_message_remove?: ({
|
|
13519
13544
|
clan_id?: string | undefined;
|
|
13520
13545
|
channel_id?: string | undefined;
|
|
@@ -13535,7 +13560,7 @@ export declare const Envelope: {
|
|
|
13535
13560
|
topic_id?: string | undefined;
|
|
13536
13561
|
mentions?: string | undefined;
|
|
13537
13562
|
references?: string | undefined;
|
|
13538
|
-
} & { [
|
|
13563
|
+
} & { [K_415 in Exclude<keyof I_1["channel_message_remove"], keyof ChannelMessageRemove>]: never; }) | undefined;
|
|
13539
13564
|
channel_presence_event?: ({
|
|
13540
13565
|
channel_id?: string | undefined;
|
|
13541
13566
|
joins?: {
|
|
@@ -13585,7 +13610,7 @@ export declare const Envelope: {
|
|
|
13585
13610
|
status?: string | undefined;
|
|
13586
13611
|
is_mobile?: boolean | undefined;
|
|
13587
13612
|
metadata?: string | undefined;
|
|
13588
|
-
} & { [
|
|
13613
|
+
} & { [K_416 in Exclude<keyof I_1["channel_presence_event"]["joins"][number], keyof UserPresence>]: never; })[] & { [K_417 in Exclude<keyof I_1["channel_presence_event"]["joins"], keyof {
|
|
13589
13614
|
user_id?: string | undefined;
|
|
13590
13615
|
session_id?: string | undefined;
|
|
13591
13616
|
username?: string | undefined;
|
|
@@ -13618,7 +13643,7 @@ export declare const Envelope: {
|
|
|
13618
13643
|
status?: string | undefined;
|
|
13619
13644
|
is_mobile?: boolean | undefined;
|
|
13620
13645
|
metadata?: string | undefined;
|
|
13621
|
-
} & { [
|
|
13646
|
+
} & { [K_418 in Exclude<keyof I_1["channel_presence_event"]["leaves"][number], keyof UserPresence>]: never; })[] & { [K_419 in Exclude<keyof I_1["channel_presence_event"]["leaves"], keyof {
|
|
13622
13647
|
user_id?: string | undefined;
|
|
13623
13648
|
session_id?: string | undefined;
|
|
13624
13649
|
username?: string | undefined;
|
|
@@ -13630,7 +13655,7 @@ export declare const Envelope: {
|
|
|
13630
13655
|
clan_logo?: string | undefined;
|
|
13631
13656
|
category_name?: string | undefined;
|
|
13632
13657
|
mode?: number | undefined;
|
|
13633
|
-
} & { [
|
|
13658
|
+
} & { [K_420 in Exclude<keyof I_1["channel_presence_event"], keyof ChannelPresenceEvent>]: never; }) | undefined;
|
|
13634
13659
|
error?: ({
|
|
13635
13660
|
code?: number | undefined;
|
|
13636
13661
|
message?: string | undefined;
|
|
@@ -13644,8 +13669,8 @@ export declare const Envelope: {
|
|
|
13644
13669
|
[x: string]: string | undefined;
|
|
13645
13670
|
} & {
|
|
13646
13671
|
[x: string]: string | undefined;
|
|
13647
|
-
} & { [
|
|
13648
|
-
} & { [
|
|
13672
|
+
} & { [K_421 in Exclude<keyof I_1["error"]["context"], string | number>]: never; }) | undefined;
|
|
13673
|
+
} & { [K_422 in Exclude<keyof I_1["error"], keyof Error>]: never; }) | undefined;
|
|
13649
13674
|
notifications?: ({
|
|
13650
13675
|
notifications?: {
|
|
13651
13676
|
id?: string | undefined;
|
|
@@ -13924,8 +13949,8 @@ export declare const Envelope: {
|
|
|
13924
13949
|
creator_id?: string | undefined;
|
|
13925
13950
|
channel_label?: string | undefined;
|
|
13926
13951
|
channel_private?: number | undefined;
|
|
13927
|
-
channel_avatar?: (string[] & string[] & { [
|
|
13928
|
-
user_id?: (string[] & string[] & { [
|
|
13952
|
+
channel_avatar?: (string[] & string[] & { [K_423 in Exclude<keyof I_1["notifications"]["notifications"][number]["channel"]["channel_avatar"], keyof string[]>]: never; }) | undefined;
|
|
13953
|
+
user_id?: (string[] & string[] & { [K_424 in Exclude<keyof I_1["notifications"]["notifications"][number]["channel"]["user_id"], keyof string[]>]: never; }) | undefined;
|
|
13929
13954
|
last_sent_message?: ({
|
|
13930
13955
|
id?: string | undefined;
|
|
13931
13956
|
timestamp_seconds?: number | undefined;
|
|
@@ -13945,8 +13970,8 @@ export declare const Envelope: {
|
|
|
13945
13970
|
reference?: string | undefined;
|
|
13946
13971
|
mention?: string | undefined;
|
|
13947
13972
|
reaction?: string | undefined;
|
|
13948
|
-
repliers?: (string[] & string[] & { [
|
|
13949
|
-
} & { [
|
|
13973
|
+
repliers?: (string[] & string[] & { [K_425 in Exclude<keyof I_1["notifications"]["notifications"][number]["channel"]["last_sent_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
13974
|
+
} & { [K_426 in Exclude<keyof I_1["notifications"]["notifications"][number]["channel"]["last_sent_message"], keyof ChannelMessageHeader>]: never; }) | undefined;
|
|
13950
13975
|
last_seen_message?: ({
|
|
13951
13976
|
id?: string | undefined;
|
|
13952
13977
|
timestamp_seconds?: number | undefined;
|
|
@@ -13966,30 +13991,30 @@ export declare const Envelope: {
|
|
|
13966
13991
|
reference?: string | undefined;
|
|
13967
13992
|
mention?: string | undefined;
|
|
13968
13993
|
reaction?: string | undefined;
|
|
13969
|
-
repliers?: (string[] & string[] & { [
|
|
13970
|
-
} & { [
|
|
13971
|
-
is_online?: (boolean[] & boolean[] & { [
|
|
13994
|
+
repliers?: (string[] & string[] & { [K_427 in Exclude<keyof I_1["notifications"]["notifications"][number]["channel"]["last_seen_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
13995
|
+
} & { [K_428 in Exclude<keyof I_1["notifications"]["notifications"][number]["channel"]["last_seen_message"], keyof ChannelMessageHeader>]: never; }) | undefined;
|
|
13996
|
+
is_online?: (boolean[] & boolean[] & { [K_429 in Exclude<keyof I_1["notifications"]["notifications"][number]["channel"]["is_online"], keyof boolean[]>]: never; }) | undefined;
|
|
13972
13997
|
meeting_code?: string | undefined;
|
|
13973
13998
|
count_mess_unread?: number | undefined;
|
|
13974
13999
|
active?: number | undefined;
|
|
13975
14000
|
last_pin_message?: string | undefined;
|
|
13976
|
-
usernames?: (string[] & string[] & { [
|
|
14001
|
+
usernames?: (string[] & string[] & { [K_430 in Exclude<keyof I_1["notifications"]["notifications"][number]["channel"]["usernames"], keyof string[]>]: never; }) | undefined;
|
|
13977
14002
|
creator_name?: string | undefined;
|
|
13978
14003
|
create_time_seconds?: number | undefined;
|
|
13979
14004
|
update_time_seconds?: number | undefined;
|
|
13980
|
-
metadata?: (string[] & string[] & { [
|
|
13981
|
-
about_me?: (string[] & string[] & { [
|
|
14005
|
+
metadata?: (string[] & string[] & { [K_431 in Exclude<keyof I_1["notifications"]["notifications"][number]["channel"]["metadata"], keyof string[]>]: never; }) | undefined;
|
|
14006
|
+
about_me?: (string[] & string[] & { [K_432 in Exclude<keyof I_1["notifications"]["notifications"][number]["channel"]["about_me"], keyof string[]>]: never; }) | undefined;
|
|
13982
14007
|
clan_name?: string | undefined;
|
|
13983
14008
|
app_id?: string | undefined;
|
|
13984
14009
|
is_mute?: boolean | undefined;
|
|
13985
14010
|
age_restricted?: number | undefined;
|
|
13986
14011
|
topic?: string | undefined;
|
|
13987
14012
|
e2ee?: number | undefined;
|
|
13988
|
-
display_names?: (string[] & string[] & { [
|
|
13989
|
-
} & { [
|
|
14013
|
+
display_names?: (string[] & string[] & { [K_433 in Exclude<keyof I_1["notifications"]["notifications"][number]["channel"]["display_names"], keyof string[]>]: never; }) | undefined;
|
|
14014
|
+
} & { [K_434 in Exclude<keyof I_1["notifications"]["notifications"][number]["channel"], keyof ChannelDescription1>]: never; }) | undefined;
|
|
13990
14015
|
topic_id?: string | undefined;
|
|
13991
14016
|
category?: number | undefined;
|
|
13992
|
-
} & { [
|
|
14017
|
+
} & { [K_435 in Exclude<keyof I_1["notifications"]["notifications"][number], keyof Notification>]: never; })[] & { [K_436 in Exclude<keyof I_1["notifications"]["notifications"], keyof {
|
|
13993
14018
|
id?: string | undefined;
|
|
13994
14019
|
subject?: string | undefined;
|
|
13995
14020
|
content?: string | undefined;
|
|
@@ -14057,7 +14082,7 @@ export declare const Envelope: {
|
|
|
14057
14082
|
topic_id?: string | undefined;
|
|
14058
14083
|
category?: number | undefined;
|
|
14059
14084
|
}[]>]: never; }) | undefined;
|
|
14060
|
-
} & { [
|
|
14085
|
+
} & { [K_437 in Exclude<keyof I_1["notifications"], "notifications">]: never; }) | undefined;
|
|
14061
14086
|
rpc?: ({
|
|
14062
14087
|
id?: string | undefined;
|
|
14063
14088
|
payload?: string | undefined;
|
|
@@ -14066,7 +14091,7 @@ export declare const Envelope: {
|
|
|
14066
14091
|
id?: string | undefined;
|
|
14067
14092
|
payload?: string | undefined;
|
|
14068
14093
|
http_key?: string | undefined;
|
|
14069
|
-
} & { [
|
|
14094
|
+
} & { [K_438 in Exclude<keyof I_1["rpc"], keyof Rpc>]: never; }) | undefined;
|
|
14070
14095
|
status?: ({
|
|
14071
14096
|
presences?: {
|
|
14072
14097
|
user_id?: string | undefined;
|
|
@@ -14102,7 +14127,7 @@ export declare const Envelope: {
|
|
|
14102
14127
|
status?: string | undefined;
|
|
14103
14128
|
is_mobile?: boolean | undefined;
|
|
14104
14129
|
metadata?: string | undefined;
|
|
14105
|
-
} & { [
|
|
14130
|
+
} & { [K_439 in Exclude<keyof I_1["status"]["presences"][number], keyof UserPresence>]: never; })[] & { [K_440 in Exclude<keyof I_1["status"]["presences"], keyof {
|
|
14106
14131
|
user_id?: string | undefined;
|
|
14107
14132
|
session_id?: string | undefined;
|
|
14108
14133
|
username?: string | undefined;
|
|
@@ -14111,14 +14136,14 @@ export declare const Envelope: {
|
|
|
14111
14136
|
is_mobile?: boolean | undefined;
|
|
14112
14137
|
metadata?: string | undefined;
|
|
14113
14138
|
}[]>]: never; }) | undefined;
|
|
14114
|
-
} & { [
|
|
14139
|
+
} & { [K_441 in Exclude<keyof I_1["status"], "presences">]: never; }) | undefined;
|
|
14115
14140
|
status_follow?: ({
|
|
14116
14141
|
user_ids?: string[] | undefined;
|
|
14117
14142
|
usernames?: string[] | undefined;
|
|
14118
14143
|
} & {
|
|
14119
|
-
user_ids?: (string[] & string[] & { [
|
|
14120
|
-
usernames?: (string[] & string[] & { [
|
|
14121
|
-
} & { [
|
|
14144
|
+
user_ids?: (string[] & string[] & { [K_442 in Exclude<keyof I_1["status_follow"]["user_ids"], keyof string[]>]: never; }) | undefined;
|
|
14145
|
+
usernames?: (string[] & string[] & { [K_443 in Exclude<keyof I_1["status_follow"]["usernames"], keyof string[]>]: never; }) | undefined;
|
|
14146
|
+
} & { [K_444 in Exclude<keyof I_1["status_follow"], keyof StatusFollow>]: never; }) | undefined;
|
|
14122
14147
|
status_presence_event?: ({
|
|
14123
14148
|
joins?: {
|
|
14124
14149
|
user_id?: string | undefined;
|
|
@@ -14163,7 +14188,7 @@ export declare const Envelope: {
|
|
|
14163
14188
|
status?: string | undefined;
|
|
14164
14189
|
is_mobile?: boolean | undefined;
|
|
14165
14190
|
metadata?: string | undefined;
|
|
14166
|
-
} & { [
|
|
14191
|
+
} & { [K_445 in Exclude<keyof I_1["status_presence_event"]["joins"][number], keyof UserPresence>]: never; })[] & { [K_446 in Exclude<keyof I_1["status_presence_event"]["joins"], keyof {
|
|
14167
14192
|
user_id?: string | undefined;
|
|
14168
14193
|
session_id?: string | undefined;
|
|
14169
14194
|
username?: string | undefined;
|
|
@@ -14196,7 +14221,7 @@ export declare const Envelope: {
|
|
|
14196
14221
|
status?: string | undefined;
|
|
14197
14222
|
is_mobile?: boolean | undefined;
|
|
14198
14223
|
metadata?: string | undefined;
|
|
14199
|
-
} & { [
|
|
14224
|
+
} & { [K_447 in Exclude<keyof I_1["status_presence_event"]["leaves"][number], keyof UserPresence>]: never; })[] & { [K_448 in Exclude<keyof I_1["status_presence_event"]["leaves"], keyof {
|
|
14200
14225
|
user_id?: string | undefined;
|
|
14201
14226
|
session_id?: string | undefined;
|
|
14202
14227
|
username?: string | undefined;
|
|
@@ -14205,17 +14230,17 @@ export declare const Envelope: {
|
|
|
14205
14230
|
is_mobile?: boolean | undefined;
|
|
14206
14231
|
metadata?: string | undefined;
|
|
14207
14232
|
}[]>]: never; }) | undefined;
|
|
14208
|
-
} & { [
|
|
14233
|
+
} & { [K_449 in Exclude<keyof I_1["status_presence_event"], keyof StatusPresenceEvent>]: never; }) | undefined;
|
|
14209
14234
|
status_unfollow?: ({
|
|
14210
14235
|
user_ids?: string[] | undefined;
|
|
14211
14236
|
} & {
|
|
14212
|
-
user_ids?: (string[] & string[] & { [
|
|
14213
|
-
} & { [
|
|
14237
|
+
user_ids?: (string[] & string[] & { [K_450 in Exclude<keyof I_1["status_unfollow"]["user_ids"], keyof string[]>]: never; }) | undefined;
|
|
14238
|
+
} & { [K_451 in Exclude<keyof I_1["status_unfollow"], "user_ids">]: never; }) | undefined;
|
|
14214
14239
|
status_update?: ({
|
|
14215
14240
|
status?: string | undefined;
|
|
14216
14241
|
} & {
|
|
14217
14242
|
status?: string | undefined;
|
|
14218
|
-
} & { [
|
|
14243
|
+
} & { [K_452 in Exclude<keyof I_1["status_update"], "status">]: never; }) | undefined;
|
|
14219
14244
|
stream_data?: ({
|
|
14220
14245
|
stream?: {
|
|
14221
14246
|
mode?: number | undefined;
|
|
@@ -14245,7 +14270,7 @@ export declare const Envelope: {
|
|
|
14245
14270
|
channel_id?: string | undefined;
|
|
14246
14271
|
clan_id?: string | undefined;
|
|
14247
14272
|
label?: string | undefined;
|
|
14248
|
-
} & { [
|
|
14273
|
+
} & { [K_453 in Exclude<keyof I_1["stream_data"]["stream"], keyof Stream>]: never; }) | undefined;
|
|
14249
14274
|
sender?: ({
|
|
14250
14275
|
user_id?: string | undefined;
|
|
14251
14276
|
session_id?: string | undefined;
|
|
@@ -14262,10 +14287,10 @@ export declare const Envelope: {
|
|
|
14262
14287
|
status?: string | undefined;
|
|
14263
14288
|
is_mobile?: boolean | undefined;
|
|
14264
14289
|
metadata?: string | undefined;
|
|
14265
|
-
} & { [
|
|
14290
|
+
} & { [K_454 in Exclude<keyof I_1["stream_data"]["sender"], keyof UserPresence>]: never; }) | undefined;
|
|
14266
14291
|
data?: string | undefined;
|
|
14267
14292
|
reliable?: boolean | undefined;
|
|
14268
|
-
} & { [
|
|
14293
|
+
} & { [K_455 in Exclude<keyof I_1["stream_data"], keyof StreamData>]: never; }) | undefined;
|
|
14269
14294
|
stream_presence_event?: ({
|
|
14270
14295
|
stream?: {
|
|
14271
14296
|
mode?: number | undefined;
|
|
@@ -14302,7 +14327,7 @@ export declare const Envelope: {
|
|
|
14302
14327
|
channel_id?: string | undefined;
|
|
14303
14328
|
clan_id?: string | undefined;
|
|
14304
14329
|
label?: string | undefined;
|
|
14305
|
-
} & { [
|
|
14330
|
+
} & { [K_456 in Exclude<keyof I_1["stream_presence_event"]["stream"], keyof Stream>]: never; }) | undefined;
|
|
14306
14331
|
joins?: ({
|
|
14307
14332
|
user_id?: string | undefined;
|
|
14308
14333
|
session_id?: string | undefined;
|
|
@@ -14327,7 +14352,7 @@ export declare const Envelope: {
|
|
|
14327
14352
|
status?: string | undefined;
|
|
14328
14353
|
is_mobile?: boolean | undefined;
|
|
14329
14354
|
metadata?: string | undefined;
|
|
14330
|
-
} & { [
|
|
14355
|
+
} & { [K_457 in Exclude<keyof I_1["stream_presence_event"]["joins"][number], keyof UserPresence>]: never; })[] & { [K_458 in Exclude<keyof I_1["stream_presence_event"]["joins"], keyof {
|
|
14331
14356
|
user_id?: string | undefined;
|
|
14332
14357
|
session_id?: string | undefined;
|
|
14333
14358
|
username?: string | undefined;
|
|
@@ -14360,7 +14385,7 @@ export declare const Envelope: {
|
|
|
14360
14385
|
status?: string | undefined;
|
|
14361
14386
|
is_mobile?: boolean | undefined;
|
|
14362
14387
|
metadata?: string | undefined;
|
|
14363
|
-
} & { [
|
|
14388
|
+
} & { [K_459 in Exclude<keyof I_1["stream_presence_event"]["leaves"][number], keyof UserPresence>]: never; })[] & { [K_460 in Exclude<keyof I_1["stream_presence_event"]["leaves"], keyof {
|
|
14364
14389
|
user_id?: string | undefined;
|
|
14365
14390
|
session_id?: string | undefined;
|
|
14366
14391
|
username?: string | undefined;
|
|
@@ -14369,9 +14394,9 @@ export declare const Envelope: {
|
|
|
14369
14394
|
is_mobile?: boolean | undefined;
|
|
14370
14395
|
metadata?: string | undefined;
|
|
14371
14396
|
}[]>]: never; }) | undefined;
|
|
14372
|
-
} & { [
|
|
14373
|
-
ping?: ({} & {} & { [
|
|
14374
|
-
pong?: ({} & {} & { [
|
|
14397
|
+
} & { [K_461 in Exclude<keyof I_1["stream_presence_event"], keyof StreamPresenceEvent>]: never; }) | undefined;
|
|
14398
|
+
ping?: ({} & {} & { [K_462 in Exclude<keyof I_1["ping"], never>]: never; }) | undefined;
|
|
14399
|
+
pong?: ({} & {} & { [K_463 in Exclude<keyof I_1["pong"], never>]: never; }) | undefined;
|
|
14375
14400
|
message_typing_event?: ({
|
|
14376
14401
|
clan_id?: string | undefined;
|
|
14377
14402
|
channel_id?: string | undefined;
|
|
@@ -14388,7 +14413,7 @@ export declare const Envelope: {
|
|
|
14388
14413
|
is_public?: boolean | undefined;
|
|
14389
14414
|
sender_username?: string | undefined;
|
|
14390
14415
|
sender_display_name?: string | undefined;
|
|
14391
|
-
} & { [
|
|
14416
|
+
} & { [K_464 in Exclude<keyof I_1["message_typing_event"], keyof MessageTypingEvent>]: never; }) | undefined;
|
|
14392
14417
|
last_seen_message_event?: ({
|
|
14393
14418
|
clan_id?: string | undefined;
|
|
14394
14419
|
channel_id?: string | undefined;
|
|
@@ -14403,7 +14428,7 @@ export declare const Envelope: {
|
|
|
14403
14428
|
mode?: number | undefined;
|
|
14404
14429
|
timestamp_seconds?: number | undefined;
|
|
14405
14430
|
badge_count?: number | undefined;
|
|
14406
|
-
} & { [
|
|
14431
|
+
} & { [K_465 in Exclude<keyof I_1["last_seen_message_event"], keyof LastSeenMessageEvent>]: never; }) | undefined;
|
|
14407
14432
|
message_reaction_event?: ({
|
|
14408
14433
|
id?: string | undefined;
|
|
14409
14434
|
emoji_id?: string | undefined;
|
|
@@ -14438,7 +14463,7 @@ export declare const Envelope: {
|
|
|
14438
14463
|
is_public?: boolean | undefined;
|
|
14439
14464
|
topic_id?: string | undefined;
|
|
14440
14465
|
emoji_recent_id?: string | undefined;
|
|
14441
|
-
} & { [
|
|
14466
|
+
} & { [K_466 in Exclude<keyof I_1["message_reaction_event"], keyof MessageReaction>]: never; }) | undefined;
|
|
14442
14467
|
voice_joined_event?: ({
|
|
14443
14468
|
clan_id?: string | undefined;
|
|
14444
14469
|
clan_name?: string | undefined;
|
|
@@ -14457,7 +14482,7 @@ export declare const Envelope: {
|
|
|
14457
14482
|
voice_channel_label?: string | undefined;
|
|
14458
14483
|
voice_channel_id?: string | undefined;
|
|
14459
14484
|
last_screenshot?: string | undefined;
|
|
14460
|
-
} & { [
|
|
14485
|
+
} & { [K_467 in Exclude<keyof I_1["voice_joined_event"], keyof VoiceJoinedEvent>]: never; }) | undefined;
|
|
14461
14486
|
voice_leaved_event?: ({
|
|
14462
14487
|
id?: string | undefined;
|
|
14463
14488
|
clan_id?: string | undefined;
|
|
@@ -14468,7 +14493,7 @@ export declare const Envelope: {
|
|
|
14468
14493
|
clan_id?: string | undefined;
|
|
14469
14494
|
voice_channel_id?: string | undefined;
|
|
14470
14495
|
voice_user_id?: string | undefined;
|
|
14471
|
-
} & { [
|
|
14496
|
+
} & { [K_468 in Exclude<keyof I_1["voice_leaved_event"], keyof VoiceLeavedEvent>]: never; }) | undefined;
|
|
14472
14497
|
voice_started_event?: ({
|
|
14473
14498
|
id?: string | undefined;
|
|
14474
14499
|
clan_id?: string | undefined;
|
|
@@ -14477,7 +14502,7 @@ export declare const Envelope: {
|
|
|
14477
14502
|
id?: string | undefined;
|
|
14478
14503
|
clan_id?: string | undefined;
|
|
14479
14504
|
voice_channel_id?: string | undefined;
|
|
14480
|
-
} & { [
|
|
14505
|
+
} & { [K_469 in Exclude<keyof I_1["voice_started_event"], keyof VoiceStartedEvent>]: never; }) | undefined;
|
|
14481
14506
|
voice_ended_event?: ({
|
|
14482
14507
|
id?: string | undefined;
|
|
14483
14508
|
clan_id?: string | undefined;
|
|
@@ -14486,7 +14511,7 @@ export declare const Envelope: {
|
|
|
14486
14511
|
id?: string | undefined;
|
|
14487
14512
|
clan_id?: string | undefined;
|
|
14488
14513
|
voice_channel_id?: string | undefined;
|
|
14489
|
-
} & { [
|
|
14514
|
+
} & { [K_470 in Exclude<keyof I_1["voice_ended_event"], keyof VoiceEndedEvent>]: never; }) | undefined;
|
|
14490
14515
|
channel_created_event?: ({
|
|
14491
14516
|
clan_id?: string | undefined;
|
|
14492
14517
|
category_id?: string | undefined;
|
|
@@ -14511,7 +14536,7 @@ export declare const Envelope: {
|
|
|
14511
14536
|
status?: number | undefined;
|
|
14512
14537
|
app_id?: string | undefined;
|
|
14513
14538
|
clan_name?: string | undefined;
|
|
14514
|
-
} & { [
|
|
14539
|
+
} & { [K_471 in Exclude<keyof I_1["channel_created_event"], keyof ChannelCreatedEvent>]: never; }) | undefined;
|
|
14515
14540
|
channel_deleted_event?: ({
|
|
14516
14541
|
clan_id?: string | undefined;
|
|
14517
14542
|
category_id?: string | undefined;
|
|
@@ -14524,7 +14549,7 @@ export declare const Envelope: {
|
|
|
14524
14549
|
parent_id?: string | undefined;
|
|
14525
14550
|
channel_id?: string | undefined;
|
|
14526
14551
|
deletor?: string | undefined;
|
|
14527
|
-
} & { [
|
|
14552
|
+
} & { [K_472 in Exclude<keyof I_1["channel_deleted_event"], keyof ChannelDeletedEvent>]: never; }) | undefined;
|
|
14528
14553
|
channel_updated_event?: ({
|
|
14529
14554
|
clan_id?: string | undefined;
|
|
14530
14555
|
category_id?: string | undefined;
|
|
@@ -14563,9 +14588,9 @@ export declare const Envelope: {
|
|
|
14563
14588
|
age_restricted?: number | undefined;
|
|
14564
14589
|
active?: number | undefined;
|
|
14565
14590
|
count_mess_unread?: number | undefined;
|
|
14566
|
-
user_ids?: (string[] & string[] & { [
|
|
14567
|
-
role_ids?: (string[] & string[] & { [
|
|
14568
|
-
} & { [
|
|
14591
|
+
user_ids?: (string[] & string[] & { [K_473 in Exclude<keyof I_1["channel_updated_event"]["user_ids"], keyof string[]>]: never; }) | undefined;
|
|
14592
|
+
role_ids?: (string[] & string[] & { [K_474 in Exclude<keyof I_1["channel_updated_event"]["role_ids"], keyof string[]>]: never; }) | undefined;
|
|
14593
|
+
} & { [K_475 in Exclude<keyof I_1["channel_updated_event"], keyof ChannelUpdatedEvent>]: never; }) | undefined;
|
|
14569
14594
|
last_pin_message_event?: ({
|
|
14570
14595
|
clan_id?: string | undefined;
|
|
14571
14596
|
channel_id?: string | undefined;
|
|
@@ -14596,7 +14621,7 @@ export declare const Envelope: {
|
|
|
14596
14621
|
message_content?: string | undefined;
|
|
14597
14622
|
message_attachment?: string | undefined;
|
|
14598
14623
|
message_created_time?: string | undefined;
|
|
14599
|
-
} & { [
|
|
14624
|
+
} & { [K_476 in Exclude<keyof I_1["last_pin_message_event"], keyof LastPinMessageEvent>]: never; }) | undefined;
|
|
14600
14625
|
custom_status_event?: ({
|
|
14601
14626
|
clan_id?: string | undefined;
|
|
14602
14627
|
user_id?: string | undefined;
|
|
@@ -14611,7 +14636,7 @@ export declare const Envelope: {
|
|
|
14611
14636
|
status?: string | undefined;
|
|
14612
14637
|
time_reset?: number | undefined;
|
|
14613
14638
|
no_clear?: boolean | undefined;
|
|
14614
|
-
} & { [
|
|
14639
|
+
} & { [K_477 in Exclude<keyof I_1["custom_status_event"], keyof CustomStatusEvent>]: never; }) | undefined;
|
|
14615
14640
|
user_channel_added_event?: ({
|
|
14616
14641
|
channel_desc?: {
|
|
14617
14642
|
clan_id?: string | undefined;
|
|
@@ -14781,8 +14806,8 @@ export declare const Envelope: {
|
|
|
14781
14806
|
creator_id?: string | undefined;
|
|
14782
14807
|
channel_label?: string | undefined;
|
|
14783
14808
|
channel_private?: number | undefined;
|
|
14784
|
-
channel_avatar?: (string[] & string[] & { [
|
|
14785
|
-
user_id?: (string[] & string[] & { [
|
|
14809
|
+
channel_avatar?: (string[] & string[] & { [K_478 in Exclude<keyof I_1["user_channel_added_event"]["channel_desc"]["channel_avatar"], keyof string[]>]: never; }) | undefined;
|
|
14810
|
+
user_id?: (string[] & string[] & { [K_479 in Exclude<keyof I_1["user_channel_added_event"]["channel_desc"]["user_id"], keyof string[]>]: never; }) | undefined;
|
|
14786
14811
|
last_sent_message?: ({
|
|
14787
14812
|
id?: string | undefined;
|
|
14788
14813
|
timestamp_seconds?: number | undefined;
|
|
@@ -14802,8 +14827,8 @@ export declare const Envelope: {
|
|
|
14802
14827
|
reference?: string | undefined;
|
|
14803
14828
|
mention?: string | undefined;
|
|
14804
14829
|
reaction?: string | undefined;
|
|
14805
|
-
repliers?: (string[] & string[] & { [
|
|
14806
|
-
} & { [
|
|
14830
|
+
repliers?: (string[] & string[] & { [K_480 in Exclude<keyof I_1["user_channel_added_event"]["channel_desc"]["last_sent_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
14831
|
+
} & { [K_481 in Exclude<keyof I_1["user_channel_added_event"]["channel_desc"]["last_sent_message"], keyof ChannelMessageHeader>]: never; }) | undefined;
|
|
14807
14832
|
last_seen_message?: ({
|
|
14808
14833
|
id?: string | undefined;
|
|
14809
14834
|
timestamp_seconds?: number | undefined;
|
|
@@ -14823,27 +14848,27 @@ export declare const Envelope: {
|
|
|
14823
14848
|
reference?: string | undefined;
|
|
14824
14849
|
mention?: string | undefined;
|
|
14825
14850
|
reaction?: string | undefined;
|
|
14826
|
-
repliers?: (string[] & string[] & { [
|
|
14827
|
-
} & { [
|
|
14828
|
-
is_online?: (boolean[] & boolean[] & { [
|
|
14851
|
+
repliers?: (string[] & string[] & { [K_482 in Exclude<keyof I_1["user_channel_added_event"]["channel_desc"]["last_seen_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
14852
|
+
} & { [K_483 in Exclude<keyof I_1["user_channel_added_event"]["channel_desc"]["last_seen_message"], keyof ChannelMessageHeader>]: never; }) | undefined;
|
|
14853
|
+
is_online?: (boolean[] & boolean[] & { [K_484 in Exclude<keyof I_1["user_channel_added_event"]["channel_desc"]["is_online"], keyof boolean[]>]: never; }) | undefined;
|
|
14829
14854
|
meeting_code?: string | undefined;
|
|
14830
14855
|
count_mess_unread?: number | undefined;
|
|
14831
14856
|
active?: number | undefined;
|
|
14832
14857
|
last_pin_message?: string | undefined;
|
|
14833
|
-
usernames?: (string[] & string[] & { [
|
|
14858
|
+
usernames?: (string[] & string[] & { [K_485 in Exclude<keyof I_1["user_channel_added_event"]["channel_desc"]["usernames"], keyof string[]>]: never; }) | undefined;
|
|
14834
14859
|
creator_name?: string | undefined;
|
|
14835
14860
|
create_time_seconds?: number | undefined;
|
|
14836
14861
|
update_time_seconds?: number | undefined;
|
|
14837
|
-
metadata?: (string[] & string[] & { [
|
|
14838
|
-
about_me?: (string[] & string[] & { [
|
|
14862
|
+
metadata?: (string[] & string[] & { [K_486 in Exclude<keyof I_1["user_channel_added_event"]["channel_desc"]["metadata"], keyof string[]>]: never; }) | undefined;
|
|
14863
|
+
about_me?: (string[] & string[] & { [K_487 in Exclude<keyof I_1["user_channel_added_event"]["channel_desc"]["about_me"], keyof string[]>]: never; }) | undefined;
|
|
14839
14864
|
clan_name?: string | undefined;
|
|
14840
14865
|
app_id?: string | undefined;
|
|
14841
14866
|
is_mute?: boolean | undefined;
|
|
14842
14867
|
age_restricted?: number | undefined;
|
|
14843
14868
|
topic?: string | undefined;
|
|
14844
14869
|
e2ee?: number | undefined;
|
|
14845
|
-
display_names?: (string[] & string[] & { [
|
|
14846
|
-
} & { [
|
|
14870
|
+
display_names?: (string[] & string[] & { [K_488 in Exclude<keyof I_1["user_channel_added_event"]["channel_desc"]["display_names"], keyof string[]>]: never; }) | undefined;
|
|
14871
|
+
} & { [K_489 in Exclude<keyof I_1["user_channel_added_event"]["channel_desc"], keyof ChannelDescription1>]: never; }) | undefined;
|
|
14847
14872
|
users?: ({
|
|
14848
14873
|
user_id?: string | undefined;
|
|
14849
14874
|
username?: string | undefined;
|
|
@@ -14910,7 +14935,7 @@ export declare const Envelope: {
|
|
|
14910
14935
|
device_id?: string | undefined;
|
|
14911
14936
|
token_id?: string | undefined;
|
|
14912
14937
|
platform?: string | undefined;
|
|
14913
|
-
} & { [
|
|
14938
|
+
} & { [K_490 in Exclude<keyof I_1["user_channel_added_event"]["users"][number]["fcm_tokens"][number], keyof FCMTokens>]: never; })[] & { [K_491 in Exclude<keyof I_1["user_channel_added_event"]["users"][number]["fcm_tokens"], keyof {
|
|
14914
14939
|
device_id?: string | undefined;
|
|
14915
14940
|
token_id?: string | undefined;
|
|
14916
14941
|
platform?: string | undefined;
|
|
@@ -14918,14 +14943,14 @@ export declare const Envelope: {
|
|
|
14918
14943
|
online?: boolean | undefined;
|
|
14919
14944
|
metadata?: string | undefined;
|
|
14920
14945
|
is_disabled?: boolean | undefined;
|
|
14921
|
-
joined_clans?: (string[] & string[] & { [
|
|
14946
|
+
joined_clans?: (string[] & string[] & { [K_492 in Exclude<keyof I_1["user_channel_added_event"]["users"][number]["joined_clans"], keyof string[]>]: never; }) | undefined;
|
|
14922
14947
|
pubkey?: string | undefined;
|
|
14923
14948
|
mezon_id?: string | undefined;
|
|
14924
14949
|
app_token?: string | undefined;
|
|
14925
14950
|
app_url?: string | undefined;
|
|
14926
14951
|
is_bot?: boolean | undefined;
|
|
14927
14952
|
voip_token?: string | undefined;
|
|
14928
|
-
} & { [
|
|
14953
|
+
} & { [K_493 in Exclude<keyof I_1["user_channel_added_event"]["users"][number], keyof UserProfileRedis>]: never; })[] & { [K_494 in Exclude<keyof I_1["user_channel_added_event"]["users"], keyof {
|
|
14929
14954
|
user_id?: string | undefined;
|
|
14930
14955
|
username?: string | undefined;
|
|
14931
14956
|
avatar?: string | undefined;
|
|
@@ -14994,7 +15019,7 @@ export declare const Envelope: {
|
|
|
14994
15019
|
device_id?: string | undefined;
|
|
14995
15020
|
token_id?: string | undefined;
|
|
14996
15021
|
platform?: string | undefined;
|
|
14997
|
-
} & { [
|
|
15022
|
+
} & { [K_495 in Exclude<keyof I_1["user_channel_added_event"]["caller"]["fcm_tokens"][number], keyof FCMTokens>]: never; })[] & { [K_496 in Exclude<keyof I_1["user_channel_added_event"]["caller"]["fcm_tokens"], keyof {
|
|
14998
15023
|
device_id?: string | undefined;
|
|
14999
15024
|
token_id?: string | undefined;
|
|
15000
15025
|
platform?: string | undefined;
|
|
@@ -15002,17 +15027,17 @@ export declare const Envelope: {
|
|
|
15002
15027
|
online?: boolean | undefined;
|
|
15003
15028
|
metadata?: string | undefined;
|
|
15004
15029
|
is_disabled?: boolean | undefined;
|
|
15005
|
-
joined_clans?: (string[] & string[] & { [
|
|
15030
|
+
joined_clans?: (string[] & string[] & { [K_497 in Exclude<keyof I_1["user_channel_added_event"]["caller"]["joined_clans"], keyof string[]>]: never; }) | undefined;
|
|
15006
15031
|
pubkey?: string | undefined;
|
|
15007
15032
|
mezon_id?: string | undefined;
|
|
15008
15033
|
app_token?: string | undefined;
|
|
15009
15034
|
app_url?: string | undefined;
|
|
15010
15035
|
is_bot?: boolean | undefined;
|
|
15011
15036
|
voip_token?: string | undefined;
|
|
15012
|
-
} & { [
|
|
15037
|
+
} & { [K_498 in Exclude<keyof I_1["user_channel_added_event"]["caller"], keyof UserProfileRedis>]: never; }) | undefined;
|
|
15013
15038
|
create_time_second?: number | undefined;
|
|
15014
15039
|
active?: number | undefined;
|
|
15015
|
-
} & { [
|
|
15040
|
+
} & { [K_499 in Exclude<keyof I_1["user_channel_added_event"], keyof UserChannelAdded>]: never; }) | undefined;
|
|
15016
15041
|
user_channel_removed_event?: ({
|
|
15017
15042
|
channel_id?: string | undefined;
|
|
15018
15043
|
user_ids?: string[] | undefined;
|
|
@@ -15021,18 +15046,18 @@ export declare const Envelope: {
|
|
|
15021
15046
|
badge_counts?: number[] | undefined;
|
|
15022
15047
|
} & {
|
|
15023
15048
|
channel_id?: string | undefined;
|
|
15024
|
-
user_ids?: (string[] & string[] & { [
|
|
15049
|
+
user_ids?: (string[] & string[] & { [K_500 in Exclude<keyof I_1["user_channel_removed_event"]["user_ids"], keyof string[]>]: never; }) | undefined;
|
|
15025
15050
|
channel_type?: number | undefined;
|
|
15026
15051
|
clan_id?: string | undefined;
|
|
15027
|
-
badge_counts?: (number[] & number[] & { [
|
|
15028
|
-
} & { [
|
|
15052
|
+
badge_counts?: (number[] & number[] & { [K_501 in Exclude<keyof I_1["user_channel_removed_event"]["badge_counts"], keyof number[]>]: never; }) | undefined;
|
|
15053
|
+
} & { [K_502 in Exclude<keyof I_1["user_channel_removed_event"], keyof UserChannelRemoved>]: never; }) | undefined;
|
|
15029
15054
|
user_clan_removed_event?: ({
|
|
15030
15055
|
clan_id?: string | undefined;
|
|
15031
15056
|
user_ids?: string[] | undefined;
|
|
15032
15057
|
} & {
|
|
15033
15058
|
clan_id?: string | undefined;
|
|
15034
|
-
user_ids?: (string[] & string[] & { [
|
|
15035
|
-
} & { [
|
|
15059
|
+
user_ids?: (string[] & string[] & { [K_503 in Exclude<keyof I_1["user_clan_removed_event"]["user_ids"], keyof string[]>]: never; }) | undefined;
|
|
15060
|
+
} & { [K_504 in Exclude<keyof I_1["user_clan_removed_event"], keyof UserClanRemoved>]: never; }) | undefined;
|
|
15036
15061
|
clan_updated_event?: ({
|
|
15037
15062
|
clan_id?: string | undefined;
|
|
15038
15063
|
clan_name?: string | undefined;
|
|
@@ -15051,7 +15076,7 @@ export declare const Envelope: {
|
|
|
15051
15076
|
is_onboarding?: boolean | undefined;
|
|
15052
15077
|
welcome_channel_id?: string | undefined;
|
|
15053
15078
|
onboarding_banner?: string | undefined;
|
|
15054
|
-
} & { [
|
|
15079
|
+
} & { [K_505 in Exclude<keyof I_1["clan_updated_event"], keyof ClanUpdatedEvent>]: never; }) | undefined;
|
|
15055
15080
|
clan_profile_updated_event?: ({
|
|
15056
15081
|
user_id?: string | undefined;
|
|
15057
15082
|
clan_nick?: string | undefined;
|
|
@@ -15062,7 +15087,7 @@ export declare const Envelope: {
|
|
|
15062
15087
|
clan_nick?: string | undefined;
|
|
15063
15088
|
clan_avatar?: string | undefined;
|
|
15064
15089
|
clan_id?: string | undefined;
|
|
15065
|
-
} & { [
|
|
15090
|
+
} & { [K_506 in Exclude<keyof I_1["clan_profile_updated_event"], keyof ClanProfileUpdatedEvent>]: never; }) | undefined;
|
|
15066
15091
|
check_name_existed_event?: ({
|
|
15067
15092
|
name?: string | undefined;
|
|
15068
15093
|
condition_id?: string | undefined;
|
|
@@ -15073,7 +15098,7 @@ export declare const Envelope: {
|
|
|
15073
15098
|
condition_id?: string | undefined;
|
|
15074
15099
|
exist?: boolean | undefined;
|
|
15075
15100
|
type?: number | undefined;
|
|
15076
|
-
} & { [
|
|
15101
|
+
} & { [K_507 in Exclude<keyof I_1["check_name_existed_event"], keyof CheckNameExistedEvent>]: never; }) | undefined;
|
|
15077
15102
|
user_profile_updated_event?: ({
|
|
15078
15103
|
user_id?: string | undefined;
|
|
15079
15104
|
display_name?: string | undefined;
|
|
@@ -15090,7 +15115,7 @@ export declare const Envelope: {
|
|
|
15090
15115
|
channel_id?: string | undefined;
|
|
15091
15116
|
clan_id?: string | undefined;
|
|
15092
15117
|
encrypt_private_key?: string | undefined;
|
|
15093
|
-
} & { [
|
|
15118
|
+
} & { [K_508 in Exclude<keyof I_1["user_profile_updated_event"], keyof UserProfileUpdatedEvent>]: never; }) | undefined;
|
|
15094
15119
|
add_clan_user_event?: ({
|
|
15095
15120
|
clan_id?: string | undefined;
|
|
15096
15121
|
user?: {
|
|
@@ -15163,7 +15188,7 @@ export declare const Envelope: {
|
|
|
15163
15188
|
device_id?: string | undefined;
|
|
15164
15189
|
token_id?: string | undefined;
|
|
15165
15190
|
platform?: string | undefined;
|
|
15166
|
-
} & { [
|
|
15191
|
+
} & { [K_509 in Exclude<keyof I_1["add_clan_user_event"]["user"]["fcm_tokens"][number], keyof FCMTokens>]: never; })[] & { [K_510 in Exclude<keyof I_1["add_clan_user_event"]["user"]["fcm_tokens"], keyof {
|
|
15167
15192
|
device_id?: string | undefined;
|
|
15168
15193
|
token_id?: string | undefined;
|
|
15169
15194
|
platform?: string | undefined;
|
|
@@ -15171,16 +15196,16 @@ export declare const Envelope: {
|
|
|
15171
15196
|
online?: boolean | undefined;
|
|
15172
15197
|
metadata?: string | undefined;
|
|
15173
15198
|
is_disabled?: boolean | undefined;
|
|
15174
|
-
joined_clans?: (string[] & string[] & { [
|
|
15199
|
+
joined_clans?: (string[] & string[] & { [K_511 in Exclude<keyof I_1["add_clan_user_event"]["user"]["joined_clans"], keyof string[]>]: never; }) | undefined;
|
|
15175
15200
|
pubkey?: string | undefined;
|
|
15176
15201
|
mezon_id?: string | undefined;
|
|
15177
15202
|
app_token?: string | undefined;
|
|
15178
15203
|
app_url?: string | undefined;
|
|
15179
15204
|
is_bot?: boolean | undefined;
|
|
15180
15205
|
voip_token?: string | undefined;
|
|
15181
|
-
} & { [
|
|
15206
|
+
} & { [K_512 in Exclude<keyof I_1["add_clan_user_event"]["user"], keyof UserProfileRedis>]: never; }) | undefined;
|
|
15182
15207
|
invitor?: string | undefined;
|
|
15183
|
-
} & { [
|
|
15208
|
+
} & { [K_513 in Exclude<keyof I_1["add_clan_user_event"], keyof AddClanUserEvent>]: never; }) | undefined;
|
|
15184
15209
|
clan_event_created?: ({
|
|
15185
15210
|
title?: string | undefined;
|
|
15186
15211
|
logo?: string | undefined;
|
|
@@ -15234,8 +15259,8 @@ export declare const Envelope: {
|
|
|
15234
15259
|
external_link?: string | undefined;
|
|
15235
15260
|
creator_id?: string | undefined;
|
|
15236
15261
|
event_id?: string | undefined;
|
|
15237
|
-
} & { [
|
|
15238
|
-
} & { [
|
|
15262
|
+
} & { [K_514 in Exclude<keyof I_1["clan_event_created"]["meet_room"], keyof import("../api/api").GenerateMezonMeetResponse>]: never; }) | undefined;
|
|
15263
|
+
} & { [K_515 in Exclude<keyof I_1["clan_event_created"], keyof CreateEventRequest>]: never; }) | undefined;
|
|
15239
15264
|
role_assign_event?: ({
|
|
15240
15265
|
ClanId?: string | undefined;
|
|
15241
15266
|
role_id?: string | undefined;
|
|
@@ -15244,16 +15269,16 @@ export declare const Envelope: {
|
|
|
15244
15269
|
} & {
|
|
15245
15270
|
ClanId?: string | undefined;
|
|
15246
15271
|
role_id?: string | undefined;
|
|
15247
|
-
user_ids_assigned?: (string[] & string[] & { [
|
|
15248
|
-
user_ids_removed?: (string[] & string[] & { [
|
|
15249
|
-
} & { [
|
|
15272
|
+
user_ids_assigned?: (string[] & string[] & { [K_516 in Exclude<keyof I_1["role_assign_event"]["user_ids_assigned"], keyof string[]>]: never; }) | undefined;
|
|
15273
|
+
user_ids_removed?: (string[] & string[] & { [K_517 in Exclude<keyof I_1["role_assign_event"]["user_ids_removed"], keyof string[]>]: never; }) | undefined;
|
|
15274
|
+
} & { [K_518 in Exclude<keyof I_1["role_assign_event"], keyof RoleAssignedEvent>]: never; }) | undefined;
|
|
15250
15275
|
clan_deleted_event?: ({
|
|
15251
15276
|
clan_id?: string | undefined;
|
|
15252
15277
|
deletor?: string | undefined;
|
|
15253
15278
|
} & {
|
|
15254
15279
|
clan_id?: string | undefined;
|
|
15255
15280
|
deletor?: string | undefined;
|
|
15256
|
-
} & { [
|
|
15281
|
+
} & { [K_519 in Exclude<keyof I_1["clan_deleted_event"], keyof ClanDeletedEvent>]: never; }) | undefined;
|
|
15257
15282
|
give_coffee_event?: ({
|
|
15258
15283
|
sender_id?: string | undefined;
|
|
15259
15284
|
receiver_id?: string | undefined;
|
|
@@ -15268,7 +15293,7 @@ export declare const Envelope: {
|
|
|
15268
15293
|
message_ref_id?: string | undefined;
|
|
15269
15294
|
channel_id?: string | undefined;
|
|
15270
15295
|
clan_id?: string | undefined;
|
|
15271
|
-
} & { [
|
|
15296
|
+
} & { [K_520 in Exclude<keyof I_1["give_coffee_event"], keyof GiveCoffeeEvent>]: never; }) | undefined;
|
|
15272
15297
|
sticker_create_event?: ({
|
|
15273
15298
|
clan_id?: string | undefined;
|
|
15274
15299
|
source?: string | undefined;
|
|
@@ -15287,7 +15312,7 @@ export declare const Envelope: {
|
|
|
15287
15312
|
sticker_id?: string | undefined;
|
|
15288
15313
|
logo?: string | undefined;
|
|
15289
15314
|
clan_name?: string | undefined;
|
|
15290
|
-
} & { [
|
|
15315
|
+
} & { [K_521 in Exclude<keyof I_1["sticker_create_event"], keyof StickerCreateEvent>]: never; }) | undefined;
|
|
15291
15316
|
sticker_update_event?: ({
|
|
15292
15317
|
shortname?: string | undefined;
|
|
15293
15318
|
sticker_id?: string | undefined;
|
|
@@ -15296,14 +15321,14 @@ export declare const Envelope: {
|
|
|
15296
15321
|
shortname?: string | undefined;
|
|
15297
15322
|
sticker_id?: string | undefined;
|
|
15298
15323
|
user_id?: string | undefined;
|
|
15299
|
-
} & { [
|
|
15324
|
+
} & { [K_522 in Exclude<keyof I_1["sticker_update_event"], keyof StickerUpdateEvent>]: never; }) | undefined;
|
|
15300
15325
|
sticker_delete_event?: ({
|
|
15301
15326
|
sticker_id?: string | undefined;
|
|
15302
15327
|
user_id?: string | undefined;
|
|
15303
15328
|
} & {
|
|
15304
15329
|
sticker_id?: string | undefined;
|
|
15305
15330
|
user_id?: string | undefined;
|
|
15306
|
-
} & { [
|
|
15331
|
+
} & { [K_523 in Exclude<keyof I_1["sticker_delete_event"], keyof StickerDeleteEvent>]: never; }) | undefined;
|
|
15307
15332
|
role_event?: ({
|
|
15308
15333
|
role?: {
|
|
15309
15334
|
id?: string | undefined;
|
|
@@ -15441,7 +15466,7 @@ export declare const Envelope: {
|
|
|
15441
15466
|
lang_tag?: string | undefined;
|
|
15442
15467
|
location?: string | undefined;
|
|
15443
15468
|
online?: boolean | undefined;
|
|
15444
|
-
} & { [
|
|
15469
|
+
} & { [K_524 in Exclude<keyof I_1["role_event"]["role"]["role_user_list"]["role_users"][number], keyof import("../api/api").RoleUserList_RoleUser>]: never; })[] & { [K_525 in Exclude<keyof I_1["role_event"]["role"]["role_user_list"]["role_users"], keyof {
|
|
15445
15470
|
id?: string | undefined;
|
|
15446
15471
|
username?: string | undefined;
|
|
15447
15472
|
display_name?: string | undefined;
|
|
@@ -15451,7 +15476,7 @@ export declare const Envelope: {
|
|
|
15451
15476
|
online?: boolean | undefined;
|
|
15452
15477
|
}[]>]: never; }) | undefined;
|
|
15453
15478
|
cursor?: string | undefined;
|
|
15454
|
-
} & { [
|
|
15479
|
+
} & { [K_526 in Exclude<keyof I_1["role_event"]["role"]["role_user_list"], keyof RoleUserList>]: never; }) | undefined;
|
|
15455
15480
|
permission_list?: ({
|
|
15456
15481
|
permissions?: {
|
|
15457
15482
|
id?: string | undefined;
|
|
@@ -15488,7 +15513,7 @@ export declare const Envelope: {
|
|
|
15488
15513
|
active?: number | undefined;
|
|
15489
15514
|
scope?: number | undefined;
|
|
15490
15515
|
level?: number | undefined;
|
|
15491
|
-
} & { [
|
|
15516
|
+
} & { [K_527 in Exclude<keyof I_1["role_event"]["role"]["permission_list"]["permissions"][number], keyof import("../api/api").Permission>]: never; })[] & { [K_528 in Exclude<keyof I_1["role_event"]["role"]["permission_list"]["permissions"], keyof {
|
|
15492
15517
|
id?: string | undefined;
|
|
15493
15518
|
title?: string | undefined;
|
|
15494
15519
|
slug?: string | undefined;
|
|
@@ -15498,19 +15523,19 @@ export declare const Envelope: {
|
|
|
15498
15523
|
level?: number | undefined;
|
|
15499
15524
|
}[]>]: never; }) | undefined;
|
|
15500
15525
|
max_level_permission?: number | undefined;
|
|
15501
|
-
} & { [
|
|
15526
|
+
} & { [K_529 in Exclude<keyof I_1["role_event"]["role"]["permission_list"], keyof PermissionList>]: never; }) | undefined;
|
|
15502
15527
|
role_channel_active?: number | undefined;
|
|
15503
|
-
channel_ids?: (string[] & string[] & { [
|
|
15528
|
+
channel_ids?: (string[] & string[] & { [K_530 in Exclude<keyof I_1["role_event"]["role"]["channel_ids"], keyof string[]>]: never; }) | undefined;
|
|
15504
15529
|
max_level_permission?: number | undefined;
|
|
15505
15530
|
order_role?: number | undefined;
|
|
15506
|
-
} & { [
|
|
15531
|
+
} & { [K_531 in Exclude<keyof I_1["role_event"]["role"], keyof Role>]: never; }) | undefined;
|
|
15507
15532
|
status?: number | undefined;
|
|
15508
15533
|
user_id?: string | undefined;
|
|
15509
|
-
user_add_ids?: (string[] & string[] & { [
|
|
15510
|
-
user_remove_ids?: (string[] & string[] & { [
|
|
15511
|
-
active_permission_ids?: (string[] & string[] & { [
|
|
15512
|
-
remove_permission_ids?: (string[] & string[] & { [
|
|
15513
|
-
} & { [
|
|
15534
|
+
user_add_ids?: (string[] & string[] & { [K_532 in Exclude<keyof I_1["role_event"]["user_add_ids"], keyof string[]>]: never; }) | undefined;
|
|
15535
|
+
user_remove_ids?: (string[] & string[] & { [K_533 in Exclude<keyof I_1["role_event"]["user_remove_ids"], keyof string[]>]: never; }) | undefined;
|
|
15536
|
+
active_permission_ids?: (string[] & string[] & { [K_534 in Exclude<keyof I_1["role_event"]["active_permission_ids"], keyof string[]>]: never; }) | undefined;
|
|
15537
|
+
remove_permission_ids?: (string[] & string[] & { [K_535 in Exclude<keyof I_1["role_event"]["remove_permission_ids"], keyof string[]>]: never; }) | undefined;
|
|
15538
|
+
} & { [K_536 in Exclude<keyof I_1["role_event"], keyof RoleEvent>]: never; }) | undefined;
|
|
15514
15539
|
event_emoji?: ({
|
|
15515
15540
|
id?: string | undefined;
|
|
15516
15541
|
clan_id?: string | undefined;
|
|
@@ -15533,7 +15558,7 @@ export declare const Envelope: {
|
|
|
15533
15558
|
logo?: string | undefined;
|
|
15534
15559
|
clan_name?: string | undefined;
|
|
15535
15560
|
is_for_sale?: boolean | undefined;
|
|
15536
|
-
} & { [
|
|
15561
|
+
} & { [K_537 in Exclude<keyof I_1["event_emoji"], keyof EventEmoji>]: never; }) | undefined;
|
|
15537
15562
|
streaming_joined_event?: ({
|
|
15538
15563
|
clan_id?: string | undefined;
|
|
15539
15564
|
clan_name?: string | undefined;
|
|
@@ -15550,7 +15575,7 @@ export declare const Envelope: {
|
|
|
15550
15575
|
user_id?: string | undefined;
|
|
15551
15576
|
streaming_channel_label?: string | undefined;
|
|
15552
15577
|
streaming_channel_id?: string | undefined;
|
|
15553
|
-
} & { [
|
|
15578
|
+
} & { [K_538 in Exclude<keyof I_1["streaming_joined_event"], keyof StreamingJoinedEvent>]: never; }) | undefined;
|
|
15554
15579
|
streaming_leaved_event?: ({
|
|
15555
15580
|
id?: string | undefined;
|
|
15556
15581
|
clan_id?: string | undefined;
|
|
@@ -15561,7 +15586,7 @@ export declare const Envelope: {
|
|
|
15561
15586
|
clan_id?: string | undefined;
|
|
15562
15587
|
streaming_channel_id?: string | undefined;
|
|
15563
15588
|
streaming_user_id?: string | undefined;
|
|
15564
|
-
} & { [
|
|
15589
|
+
} & { [K_539 in Exclude<keyof I_1["streaming_leaved_event"], keyof StreamingLeavedEvent>]: never; }) | undefined;
|
|
15565
15590
|
streaming_started_event?: ({
|
|
15566
15591
|
clan_id?: string | undefined;
|
|
15567
15592
|
channel_id?: string | undefined;
|
|
@@ -15572,14 +15597,14 @@ export declare const Envelope: {
|
|
|
15572
15597
|
channel_id?: string | undefined;
|
|
15573
15598
|
streaming_url?: string | undefined;
|
|
15574
15599
|
is_streaming?: boolean | undefined;
|
|
15575
|
-
} & { [
|
|
15600
|
+
} & { [K_540 in Exclude<keyof I_1["streaming_started_event"], keyof StreamingStartedEvent>]: never; }) | undefined;
|
|
15576
15601
|
streaming_ended_event?: ({
|
|
15577
15602
|
clan_id?: string | undefined;
|
|
15578
15603
|
channel_id?: string | undefined;
|
|
15579
15604
|
} & {
|
|
15580
15605
|
clan_id?: string | undefined;
|
|
15581
15606
|
channel_id?: string | undefined;
|
|
15582
|
-
} & { [
|
|
15607
|
+
} & { [K_541 in Exclude<keyof I_1["streaming_ended_event"], keyof StreamingEndedEvent>]: never; }) | undefined;
|
|
15583
15608
|
permission_set_event?: ({
|
|
15584
15609
|
caller?: string | undefined;
|
|
15585
15610
|
role_id?: string | undefined;
|
|
@@ -15607,12 +15632,12 @@ export declare const Envelope: {
|
|
|
15607
15632
|
permission_id?: string | undefined;
|
|
15608
15633
|
slug?: string | undefined;
|
|
15609
15634
|
type?: number | undefined;
|
|
15610
|
-
} & { [
|
|
15635
|
+
} & { [K_542 in Exclude<keyof I_1["permission_set_event"]["permission_updates"][number], keyof PermissionUpdate>]: never; })[] & { [K_543 in Exclude<keyof I_1["permission_set_event"]["permission_updates"], keyof {
|
|
15611
15636
|
permission_id?: string | undefined;
|
|
15612
15637
|
slug?: string | undefined;
|
|
15613
15638
|
type?: number | undefined;
|
|
15614
15639
|
}[]>]: never; }) | undefined;
|
|
15615
|
-
} & { [
|
|
15640
|
+
} & { [K_544 in Exclude<keyof I_1["permission_set_event"], keyof PermissionSetEvent>]: never; }) | undefined;
|
|
15616
15641
|
permission_changed_event?: ({
|
|
15617
15642
|
user_id?: string | undefined;
|
|
15618
15643
|
channel_id?: string | undefined;
|
|
@@ -15646,7 +15671,7 @@ export declare const Envelope: {
|
|
|
15646
15671
|
permission_id?: string | undefined;
|
|
15647
15672
|
slug?: string | undefined;
|
|
15648
15673
|
type?: number | undefined;
|
|
15649
|
-
} & { [
|
|
15674
|
+
} & { [K_545 in Exclude<keyof I_1["permission_changed_event"]["add_permissions"][number], keyof PermissionUpdate>]: never; })[] & { [K_546 in Exclude<keyof I_1["permission_changed_event"]["add_permissions"], keyof {
|
|
15650
15675
|
permission_id?: string | undefined;
|
|
15651
15676
|
slug?: string | undefined;
|
|
15652
15677
|
type?: number | undefined;
|
|
@@ -15663,7 +15688,7 @@ export declare const Envelope: {
|
|
|
15663
15688
|
permission_id?: string | undefined;
|
|
15664
15689
|
slug?: string | undefined;
|
|
15665
15690
|
type?: number | undefined;
|
|
15666
|
-
} & { [
|
|
15691
|
+
} & { [K_547 in Exclude<keyof I_1["permission_changed_event"]["remove_permissions"][number], keyof PermissionUpdate>]: never; })[] & { [K_548 in Exclude<keyof I_1["permission_changed_event"]["remove_permissions"], keyof {
|
|
15667
15692
|
permission_id?: string | undefined;
|
|
15668
15693
|
slug?: string | undefined;
|
|
15669
15694
|
type?: number | undefined;
|
|
@@ -15680,12 +15705,12 @@ export declare const Envelope: {
|
|
|
15680
15705
|
permission_id?: string | undefined;
|
|
15681
15706
|
slug?: string | undefined;
|
|
15682
15707
|
type?: number | undefined;
|
|
15683
|
-
} & { [
|
|
15708
|
+
} & { [K_549 in Exclude<keyof I_1["permission_changed_event"]["default_permissions"][number], keyof PermissionUpdate>]: never; })[] & { [K_550 in Exclude<keyof I_1["permission_changed_event"]["default_permissions"], keyof {
|
|
15684
15709
|
permission_id?: string | undefined;
|
|
15685
15710
|
slug?: string | undefined;
|
|
15686
15711
|
type?: number | undefined;
|
|
15687
15712
|
}[]>]: never; }) | undefined;
|
|
15688
|
-
} & { [
|
|
15713
|
+
} & { [K_551 in Exclude<keyof I_1["permission_changed_event"], keyof PermissionChangedEvent>]: never; }) | undefined;
|
|
15689
15714
|
token_sent_event?: ({
|
|
15690
15715
|
sender_id?: string | undefined;
|
|
15691
15716
|
sender_name?: string | undefined;
|
|
@@ -15702,7 +15727,7 @@ export declare const Envelope: {
|
|
|
15702
15727
|
note?: string | undefined;
|
|
15703
15728
|
extra_attribute?: string | undefined;
|
|
15704
15729
|
transaction_id?: string | undefined;
|
|
15705
|
-
} & { [
|
|
15730
|
+
} & { [K_552 in Exclude<keyof I_1["token_sent_event"], keyof TokenSentEvent>]: never; }) | undefined;
|
|
15706
15731
|
message_button_clicked?: ({
|
|
15707
15732
|
message_id?: string | undefined;
|
|
15708
15733
|
channel_id?: string | undefined;
|
|
@@ -15717,7 +15742,7 @@ export declare const Envelope: {
|
|
|
15717
15742
|
sender_id?: string | undefined;
|
|
15718
15743
|
user_id?: string | undefined;
|
|
15719
15744
|
extra_data?: string | undefined;
|
|
15720
|
-
} & { [
|
|
15745
|
+
} & { [K_553 in Exclude<keyof I_1["message_button_clicked"], keyof MessageButtonClicked>]: never; }) | undefined;
|
|
15721
15746
|
unmute_event?: ({
|
|
15722
15747
|
channel_id?: string | undefined;
|
|
15723
15748
|
category_id?: string | undefined;
|
|
@@ -15726,7 +15751,7 @@ export declare const Envelope: {
|
|
|
15726
15751
|
channel_id?: string | undefined;
|
|
15727
15752
|
category_id?: string | undefined;
|
|
15728
15753
|
clan_id?: string | undefined;
|
|
15729
|
-
} & { [
|
|
15754
|
+
} & { [K_554 in Exclude<keyof I_1["unmute_event"], keyof UnmuteEvent>]: never; }) | undefined;
|
|
15730
15755
|
webrtc_signaling_fwd?: ({
|
|
15731
15756
|
receiver_id?: string | undefined;
|
|
15732
15757
|
data_type?: number | undefined;
|
|
@@ -15739,7 +15764,7 @@ export declare const Envelope: {
|
|
|
15739
15764
|
json_data?: string | undefined;
|
|
15740
15765
|
channel_id?: string | undefined;
|
|
15741
15766
|
caller_id?: string | undefined;
|
|
15742
|
-
} & { [
|
|
15767
|
+
} & { [K_555 in Exclude<keyof I_1["webrtc_signaling_fwd"], keyof WebrtcSignalingFwd>]: never; }) | undefined;
|
|
15743
15768
|
list_activity?: ({
|
|
15744
15769
|
acts?: {
|
|
15745
15770
|
user_id?: string | undefined;
|
|
@@ -15779,7 +15804,7 @@ export declare const Envelope: {
|
|
|
15779
15804
|
end_time?: Date | undefined;
|
|
15780
15805
|
application_id?: string | undefined;
|
|
15781
15806
|
status?: number | undefined;
|
|
15782
|
-
} & { [
|
|
15807
|
+
} & { [K_556 in Exclude<keyof I_1["list_activity"]["acts"][number], keyof UserActivity>]: never; })[] & { [K_557 in Exclude<keyof I_1["list_activity"]["acts"], keyof {
|
|
15783
15808
|
user_id?: string | undefined;
|
|
15784
15809
|
activity_name?: string | undefined;
|
|
15785
15810
|
activity_type?: number | undefined;
|
|
@@ -15789,7 +15814,7 @@ export declare const Envelope: {
|
|
|
15789
15814
|
application_id?: string | undefined;
|
|
15790
15815
|
status?: number | undefined;
|
|
15791
15816
|
}[]>]: never; }) | undefined;
|
|
15792
|
-
} & { [
|
|
15817
|
+
} & { [K_558 in Exclude<keyof I_1["list_activity"], "acts">]: never; }) | undefined;
|
|
15793
15818
|
dropdown_box_selected?: ({
|
|
15794
15819
|
message_id?: string | undefined;
|
|
15795
15820
|
channel_id?: string | undefined;
|
|
@@ -15803,8 +15828,8 @@ export declare const Envelope: {
|
|
|
15803
15828
|
selectbox_id?: string | undefined;
|
|
15804
15829
|
sender_id?: string | undefined;
|
|
15805
15830
|
user_id?: string | undefined;
|
|
15806
|
-
values?: (string[] & string[] & { [
|
|
15807
|
-
} & { [
|
|
15831
|
+
values?: (string[] & string[] & { [K_559 in Exclude<keyof I_1["dropdown_box_selected"]["values"], keyof string[]>]: never; }) | undefined;
|
|
15832
|
+
} & { [K_560 in Exclude<keyof I_1["dropdown_box_selected"], keyof DropdownBoxSelected>]: never; }) | undefined;
|
|
15808
15833
|
incoming_call_push?: ({
|
|
15809
15834
|
receiver_id?: string | undefined;
|
|
15810
15835
|
json_data?: string | undefined;
|
|
@@ -15815,7 +15840,7 @@ export declare const Envelope: {
|
|
|
15815
15840
|
json_data?: string | undefined;
|
|
15816
15841
|
channel_id?: string | undefined;
|
|
15817
15842
|
caller_id?: string | undefined;
|
|
15818
|
-
} & { [
|
|
15843
|
+
} & { [K_561 in Exclude<keyof I_1["incoming_call_push"], keyof IncomingCallPush>]: never; }) | undefined;
|
|
15819
15844
|
sd_topic_event?: ({
|
|
15820
15845
|
id?: string | undefined;
|
|
15821
15846
|
clan_id?: string | undefined;
|
|
@@ -15887,8 +15912,8 @@ export declare const Envelope: {
|
|
|
15887
15912
|
reference?: string | undefined;
|
|
15888
15913
|
mention?: string | undefined;
|
|
15889
15914
|
reaction?: string | undefined;
|
|
15890
|
-
repliers?: (string[] & string[] & { [
|
|
15891
|
-
} & { [
|
|
15915
|
+
repliers?: (string[] & string[] & { [K_562 in Exclude<keyof I_1["sd_topic_event"]["last_sent_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
15916
|
+
} & { [K_563 in Exclude<keyof I_1["sd_topic_event"]["last_sent_message"], keyof ChannelMessageHeader>]: never; }) | undefined;
|
|
15892
15917
|
message?: ({
|
|
15893
15918
|
clan_id?: string | undefined;
|
|
15894
15919
|
channel_id?: string | undefined;
|
|
@@ -15945,9 +15970,9 @@ export declare const Envelope: {
|
|
|
15945
15970
|
hide_editted?: boolean | undefined;
|
|
15946
15971
|
is_public?: boolean | undefined;
|
|
15947
15972
|
topic_id?: string | undefined;
|
|
15948
|
-
} & { [
|
|
15949
|
-
} & { [
|
|
15950
|
-
follow_event?: ({} & {} & { [
|
|
15973
|
+
} & { [K_564 in Exclude<keyof I_1["sd_topic_event"]["message"], keyof ChannelMessage>]: never; }) | undefined;
|
|
15974
|
+
} & { [K_565 in Exclude<keyof I_1["sd_topic_event"], keyof SdTopicEvent>]: never; }) | undefined;
|
|
15975
|
+
follow_event?: ({} & {} & { [K_566 in Exclude<keyof I_1["follow_event"], never>]: never; }) | undefined;
|
|
15951
15976
|
channel_app_event?: ({
|
|
15952
15977
|
user_id?: string | undefined;
|
|
15953
15978
|
username?: string | undefined;
|
|
@@ -15960,19 +15985,19 @@ export declare const Envelope: {
|
|
|
15960
15985
|
clan_id?: string | undefined;
|
|
15961
15986
|
channel_id?: string | undefined;
|
|
15962
15987
|
action?: number | undefined;
|
|
15963
|
-
} & { [
|
|
15988
|
+
} & { [K_567 in Exclude<keyof I_1["channel_app_event"], keyof ChannelAppEvent>]: never; }) | undefined;
|
|
15964
15989
|
user_status_event?: ({
|
|
15965
15990
|
user_id?: string | undefined;
|
|
15966
15991
|
custom_status?: string | undefined;
|
|
15967
15992
|
} & {
|
|
15968
15993
|
user_id?: string | undefined;
|
|
15969
15994
|
custom_status?: string | undefined;
|
|
15970
|
-
} & { [
|
|
15995
|
+
} & { [K_568 in Exclude<keyof I_1["user_status_event"], keyof UserStatusEvent>]: never; }) | undefined;
|
|
15971
15996
|
remove_friend?: ({
|
|
15972
15997
|
user_id?: string | undefined;
|
|
15973
15998
|
} & {
|
|
15974
15999
|
user_id?: string | undefined;
|
|
15975
|
-
} & { [
|
|
16000
|
+
} & { [K_569 in Exclude<keyof I_1["remove_friend"], "user_id">]: never; }) | undefined;
|
|
15976
16001
|
webhook_event?: ({
|
|
15977
16002
|
id?: string | undefined;
|
|
15978
16003
|
webhook_name?: string | undefined;
|
|
@@ -15995,7 +16020,7 @@ export declare const Envelope: {
|
|
|
15995
16020
|
update_time?: string | undefined;
|
|
15996
16021
|
avatar?: string | undefined;
|
|
15997
16022
|
status?: number | undefined;
|
|
15998
|
-
} & { [
|
|
16023
|
+
} & { [K_570 in Exclude<keyof I_1["webhook_event"], keyof Webhook>]: never; }) | undefined;
|
|
15999
16024
|
noti_user_channel?: ({
|
|
16000
16025
|
id?: string | undefined;
|
|
16001
16026
|
notification_setting_type?: number | undefined;
|
|
@@ -16008,7 +16033,7 @@ export declare const Envelope: {
|
|
|
16008
16033
|
time_mute?: Date | undefined;
|
|
16009
16034
|
active?: number | undefined;
|
|
16010
16035
|
channel_id?: string | undefined;
|
|
16011
|
-
} & { [
|
|
16036
|
+
} & { [K_571 in Exclude<keyof I_1["noti_user_channel"], keyof NotificationUserChannel>]: never; }) | undefined;
|
|
16012
16037
|
join_channel_app_data?: ({
|
|
16013
16038
|
user_id?: string | undefined;
|
|
16014
16039
|
username?: string | undefined;
|
|
@@ -16017,7 +16042,7 @@ export declare const Envelope: {
|
|
|
16017
16042
|
user_id?: string | undefined;
|
|
16018
16043
|
username?: string | undefined;
|
|
16019
16044
|
hash?: string | undefined;
|
|
16020
|
-
} & { [
|
|
16045
|
+
} & { [K_572 in Exclude<keyof I_1["join_channel_app_data"], keyof JoinChannelAppData>]: never; }) | undefined;
|
|
16021
16046
|
canvas_event?: ({
|
|
16022
16047
|
id?: string | undefined;
|
|
16023
16048
|
title?: string | undefined;
|
|
@@ -16036,7 +16061,7 @@ export declare const Envelope: {
|
|
|
16036
16061
|
is_default?: boolean | undefined;
|
|
16037
16062
|
channel_id?: string | undefined;
|
|
16038
16063
|
status?: number | undefined;
|
|
16039
|
-
} & { [
|
|
16064
|
+
} & { [K_573 in Exclude<keyof I_1["canvas_event"], keyof ChannelCanvas>]: never; }) | undefined;
|
|
16040
16065
|
unpin_message_event?: ({
|
|
16041
16066
|
id?: string | undefined;
|
|
16042
16067
|
message_id?: string | undefined;
|
|
@@ -16047,7 +16072,7 @@ export declare const Envelope: {
|
|
|
16047
16072
|
message_id?: string | undefined;
|
|
16048
16073
|
channel_id?: string | undefined;
|
|
16049
16074
|
clan_id?: string | undefined;
|
|
16050
|
-
} & { [
|
|
16075
|
+
} & { [K_574 in Exclude<keyof I_1["unpin_message_event"], keyof UnpinMessageEvent>]: never; }) | undefined;
|
|
16051
16076
|
category_event?: ({
|
|
16052
16077
|
creator_id?: string | undefined;
|
|
16053
16078
|
clan_id?: string | undefined;
|
|
@@ -16060,7 +16085,7 @@ export declare const Envelope: {
|
|
|
16060
16085
|
category_name?: string | undefined;
|
|
16061
16086
|
id?: string | undefined;
|
|
16062
16087
|
status?: number | undefined;
|
|
16063
|
-
} & { [
|
|
16088
|
+
} & { [K_575 in Exclude<keyof I_1["category_event"], keyof CategoryEvent>]: never; }) | undefined;
|
|
16064
16089
|
handle_participant_meet_state_event?: ({
|
|
16065
16090
|
clan_id?: string | undefined;
|
|
16066
16091
|
channel_id?: string | undefined;
|
|
@@ -16071,12 +16096,12 @@ export declare const Envelope: {
|
|
|
16071
16096
|
channel_id?: string | undefined;
|
|
16072
16097
|
display_name?: string | undefined;
|
|
16073
16098
|
state?: number | undefined;
|
|
16074
|
-
} & { [
|
|
16099
|
+
} & { [K_576 in Exclude<keyof I_1["handle_participant_meet_state_event"], keyof HandleParticipantMeetStateEvent>]: never; }) | undefined;
|
|
16075
16100
|
delete_account_event?: ({
|
|
16076
16101
|
user_id?: string | undefined;
|
|
16077
16102
|
} & {
|
|
16078
16103
|
user_id?: string | undefined;
|
|
16079
|
-
} & { [
|
|
16104
|
+
} & { [K_577 in Exclude<keyof I_1["delete_account_event"], "user_id">]: never; }) | undefined;
|
|
16080
16105
|
ephemeral_message_send?: ({
|
|
16081
16106
|
message?: {
|
|
16082
16107
|
clan_id?: string | undefined;
|
|
@@ -16196,7 +16221,7 @@ export declare const Envelope: {
|
|
|
16196
16221
|
create_time?: Date | undefined;
|
|
16197
16222
|
s?: number | undefined;
|
|
16198
16223
|
e?: number | undefined;
|
|
16199
|
-
} & { [
|
|
16224
|
+
} & { [K_578 in Exclude<keyof I_1["ephemeral_message_send"]["message"]["mentions"][number], keyof MessageMention>]: never; })[] & { [K_579 in Exclude<keyof I_1["ephemeral_message_send"]["message"]["mentions"], keyof {
|
|
16200
16225
|
id?: string | undefined;
|
|
16201
16226
|
user_id?: string | undefined;
|
|
16202
16227
|
username?: string | undefined;
|
|
@@ -16230,7 +16255,7 @@ export declare const Envelope: {
|
|
|
16230
16255
|
width?: number | undefined;
|
|
16231
16256
|
height?: number | undefined;
|
|
16232
16257
|
thumbnail?: string | undefined;
|
|
16233
|
-
} & { [
|
|
16258
|
+
} & { [K_580 in Exclude<keyof I_1["ephemeral_message_send"]["message"]["attachments"][number], keyof MessageAttachment>]: never; })[] & { [K_581 in Exclude<keyof I_1["ephemeral_message_send"]["message"]["attachments"], keyof {
|
|
16234
16259
|
filename?: string | undefined;
|
|
16235
16260
|
size?: number | undefined;
|
|
16236
16261
|
url?: string | undefined;
|
|
@@ -16272,7 +16297,7 @@ export declare const Envelope: {
|
|
|
16272
16297
|
mesages_sender_avatar?: string | undefined;
|
|
16273
16298
|
message_sender_clan_nick?: string | undefined;
|
|
16274
16299
|
message_sender_display_name?: string | undefined;
|
|
16275
|
-
} & { [
|
|
16300
|
+
} & { [K_582 in Exclude<keyof I_1["ephemeral_message_send"]["message"]["references"][number], keyof MessageRef>]: never; })[] & { [K_583 in Exclude<keyof I_1["ephemeral_message_send"]["message"]["references"], keyof {
|
|
16276
16301
|
message_id?: string | undefined;
|
|
16277
16302
|
message_ref_id?: string | undefined;
|
|
16278
16303
|
content?: string | undefined;
|
|
@@ -16291,25 +16316,25 @@ export declare const Envelope: {
|
|
|
16291
16316
|
is_public?: boolean | undefined;
|
|
16292
16317
|
code?: number | undefined;
|
|
16293
16318
|
topic_id?: string | undefined;
|
|
16294
|
-
} & { [
|
|
16319
|
+
} & { [K_584 in Exclude<keyof I_1["ephemeral_message_send"]["message"], keyof ChannelMessageSend>]: never; }) | undefined;
|
|
16295
16320
|
receiver_id?: string | undefined;
|
|
16296
|
-
} & { [
|
|
16321
|
+
} & { [K_585 in Exclude<keyof I_1["ephemeral_message_send"], keyof EphemeralMessageSend>]: never; }) | undefined;
|
|
16297
16322
|
block_friend?: ({
|
|
16298
16323
|
user_id?: string | undefined;
|
|
16299
16324
|
} & {
|
|
16300
16325
|
user_id?: string | undefined;
|
|
16301
|
-
} & { [
|
|
16326
|
+
} & { [K_586 in Exclude<keyof I_1["block_friend"], "user_id">]: never; }) | undefined;
|
|
16302
16327
|
voice_reaction_send?: ({
|
|
16303
16328
|
emojis?: string[] | undefined;
|
|
16304
16329
|
channel_id?: string | undefined;
|
|
16305
16330
|
sender_id?: string | undefined;
|
|
16306
16331
|
media_type?: number | undefined;
|
|
16307
16332
|
} & {
|
|
16308
|
-
emojis?: (string[] & string[] & { [
|
|
16333
|
+
emojis?: (string[] & string[] & { [K_587 in Exclude<keyof I_1["voice_reaction_send"]["emojis"], keyof string[]>]: never; }) | undefined;
|
|
16309
16334
|
channel_id?: string | undefined;
|
|
16310
16335
|
sender_id?: string | undefined;
|
|
16311
16336
|
media_type?: number | undefined;
|
|
16312
|
-
} & { [
|
|
16337
|
+
} & { [K_588 in Exclude<keyof I_1["voice_reaction_send"], keyof VoiceReactionSend>]: never; }) | undefined;
|
|
16313
16338
|
mark_as_read?: ({
|
|
16314
16339
|
channel_id?: string | undefined;
|
|
16315
16340
|
category_id?: string | undefined;
|
|
@@ -16318,7 +16343,7 @@ export declare const Envelope: {
|
|
|
16318
16343
|
channel_id?: string | undefined;
|
|
16319
16344
|
category_id?: string | undefined;
|
|
16320
16345
|
clan_id?: string | undefined;
|
|
16321
|
-
} & { [
|
|
16346
|
+
} & { [K_589 in Exclude<keyof I_1["mark_as_read"], keyof MarkAsRead>]: never; }) | undefined;
|
|
16322
16347
|
list_data_socket?: ({
|
|
16323
16348
|
api_name?: string | undefined;
|
|
16324
16349
|
list_clan_req?: {
|
|
@@ -17187,7 +17212,7 @@ export declare const Envelope: {
|
|
|
17187
17212
|
limit?: number | undefined;
|
|
17188
17213
|
state?: number | undefined;
|
|
17189
17214
|
cursor?: string | undefined;
|
|
17190
|
-
} & { [
|
|
17215
|
+
} & { [K_590 in Exclude<keyof I_1["list_data_socket"]["list_clan_req"], keyof ListClanDescRequest>]: never; }) | undefined;
|
|
17191
17216
|
clan_desc_list?: ({
|
|
17192
17217
|
clandesc?: {
|
|
17193
17218
|
creator_id?: string | undefined;
|
|
@@ -17247,7 +17272,7 @@ export declare const Envelope: {
|
|
|
17247
17272
|
clan_order?: number | undefined;
|
|
17248
17273
|
is_community?: boolean | undefined;
|
|
17249
17274
|
community_banner?: string | undefined;
|
|
17250
|
-
} & { [
|
|
17275
|
+
} & { [K_591 in Exclude<keyof I_1["list_data_socket"]["clan_desc_list"]["clandesc"][number], keyof import("../api/api").ClanDesc>]: never; })[] & { [K_592 in Exclude<keyof I_1["list_data_socket"]["clan_desc_list"]["clandesc"], keyof {
|
|
17251
17276
|
creator_id?: string | undefined;
|
|
17252
17277
|
clan_name?: string | undefined;
|
|
17253
17278
|
logo?: string | undefined;
|
|
@@ -17262,7 +17287,7 @@ export declare const Envelope: {
|
|
|
17262
17287
|
is_community?: boolean | undefined;
|
|
17263
17288
|
community_banner?: string | undefined;
|
|
17264
17289
|
}[]>]: never; }) | undefined;
|
|
17265
|
-
} & { [
|
|
17290
|
+
} & { [K_593 in Exclude<keyof I_1["list_data_socket"]["clan_desc_list"], "clandesc">]: never; }) | undefined;
|
|
17266
17291
|
list_thread_req?: ({
|
|
17267
17292
|
limit?: number | undefined;
|
|
17268
17293
|
state?: number | undefined;
|
|
@@ -17277,7 +17302,7 @@ export declare const Envelope: {
|
|
|
17277
17302
|
channel_id?: string | undefined;
|
|
17278
17303
|
thread_id?: string | undefined;
|
|
17279
17304
|
page?: number | undefined;
|
|
17280
|
-
} & { [
|
|
17305
|
+
} & { [K_594 in Exclude<keyof I_1["list_data_socket"]["list_thread_req"], keyof ListThreadRequest>]: never; }) | undefined;
|
|
17281
17306
|
channel_desc_list?: ({
|
|
17282
17307
|
channeldesc?: {
|
|
17283
17308
|
clan_id?: string | undefined;
|
|
@@ -17451,8 +17476,8 @@ export declare const Envelope: {
|
|
|
17451
17476
|
creator_id?: string | undefined;
|
|
17452
17477
|
channel_label?: string | undefined;
|
|
17453
17478
|
channel_private?: number | undefined;
|
|
17454
|
-
channel_avatar?: (string[] & string[] & { [
|
|
17455
|
-
user_id?: (string[] & string[] & { [
|
|
17479
|
+
channel_avatar?: (string[] & string[] & { [K_595 in Exclude<keyof I_1["list_data_socket"]["channel_desc_list"]["channeldesc"][number]["channel_avatar"], keyof string[]>]: never; }) | undefined;
|
|
17480
|
+
user_id?: (string[] & string[] & { [K_596 in Exclude<keyof I_1["list_data_socket"]["channel_desc_list"]["channeldesc"][number]["user_id"], keyof string[]>]: never; }) | undefined;
|
|
17456
17481
|
last_sent_message?: ({
|
|
17457
17482
|
id?: string | undefined;
|
|
17458
17483
|
timestamp_seconds?: number | undefined;
|
|
@@ -17472,8 +17497,8 @@ export declare const Envelope: {
|
|
|
17472
17497
|
reference?: string | undefined;
|
|
17473
17498
|
mention?: string | undefined;
|
|
17474
17499
|
reaction?: string | undefined;
|
|
17475
|
-
repliers?: (string[] & string[] & { [
|
|
17476
|
-
} & { [
|
|
17500
|
+
repliers?: (string[] & string[] & { [K_597 in Exclude<keyof I_1["list_data_socket"]["channel_desc_list"]["channeldesc"][number]["last_sent_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
17501
|
+
} & { [K_598 in Exclude<keyof I_1["list_data_socket"]["channel_desc_list"]["channeldesc"][number]["last_sent_message"], keyof ChannelMessageHeader>]: never; }) | undefined;
|
|
17477
17502
|
last_seen_message?: ({
|
|
17478
17503
|
id?: string | undefined;
|
|
17479
17504
|
timestamp_seconds?: number | undefined;
|
|
@@ -17493,27 +17518,27 @@ export declare const Envelope: {
|
|
|
17493
17518
|
reference?: string | undefined;
|
|
17494
17519
|
mention?: string | undefined;
|
|
17495
17520
|
reaction?: string | undefined;
|
|
17496
|
-
repliers?: (string[] & string[] & { [
|
|
17497
|
-
} & { [
|
|
17498
|
-
is_online?: (boolean[] & boolean[] & { [
|
|
17521
|
+
repliers?: (string[] & string[] & { [K_599 in Exclude<keyof I_1["list_data_socket"]["channel_desc_list"]["channeldesc"][number]["last_seen_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
17522
|
+
} & { [K_600 in Exclude<keyof I_1["list_data_socket"]["channel_desc_list"]["channeldesc"][number]["last_seen_message"], keyof ChannelMessageHeader>]: never; }) | undefined;
|
|
17523
|
+
is_online?: (boolean[] & boolean[] & { [K_601 in Exclude<keyof I_1["list_data_socket"]["channel_desc_list"]["channeldesc"][number]["is_online"], keyof boolean[]>]: never; }) | undefined;
|
|
17499
17524
|
meeting_code?: string | undefined;
|
|
17500
17525
|
count_mess_unread?: number | undefined;
|
|
17501
17526
|
active?: number | undefined;
|
|
17502
17527
|
last_pin_message?: string | undefined;
|
|
17503
|
-
usernames?: (string[] & string[] & { [
|
|
17528
|
+
usernames?: (string[] & string[] & { [K_602 in Exclude<keyof I_1["list_data_socket"]["channel_desc_list"]["channeldesc"][number]["usernames"], keyof string[]>]: never; }) | undefined;
|
|
17504
17529
|
creator_name?: string | undefined;
|
|
17505
17530
|
create_time_seconds?: number | undefined;
|
|
17506
17531
|
update_time_seconds?: number | undefined;
|
|
17507
|
-
metadata?: (string[] & string[] & { [
|
|
17508
|
-
about_me?: (string[] & string[] & { [
|
|
17532
|
+
metadata?: (string[] & string[] & { [K_603 in Exclude<keyof I_1["list_data_socket"]["channel_desc_list"]["channeldesc"][number]["metadata"], keyof string[]>]: never; }) | undefined;
|
|
17533
|
+
about_me?: (string[] & string[] & { [K_604 in Exclude<keyof I_1["list_data_socket"]["channel_desc_list"]["channeldesc"][number]["about_me"], keyof string[]>]: never; }) | undefined;
|
|
17509
17534
|
clan_name?: string | undefined;
|
|
17510
17535
|
app_id?: string | undefined;
|
|
17511
17536
|
is_mute?: boolean | undefined;
|
|
17512
17537
|
age_restricted?: number | undefined;
|
|
17513
17538
|
topic?: string | undefined;
|
|
17514
17539
|
e2ee?: number | undefined;
|
|
17515
|
-
display_names?: (string[] & string[] & { [
|
|
17516
|
-
} & { [
|
|
17540
|
+
display_names?: (string[] & string[] & { [K_605 in Exclude<keyof I_1["list_data_socket"]["channel_desc_list"]["channeldesc"][number]["display_names"], keyof string[]>]: never; }) | undefined;
|
|
17541
|
+
} & { [K_606 in Exclude<keyof I_1["list_data_socket"]["channel_desc_list"]["channeldesc"][number], keyof ChannelDescription1>]: never; })[] & { [K_607 in Exclude<keyof I_1["list_data_socket"]["channel_desc_list"]["channeldesc"], keyof {
|
|
17517
17542
|
clan_id?: string | undefined;
|
|
17518
17543
|
parent_id?: string | undefined;
|
|
17519
17544
|
channel_id?: string | undefined;
|
|
@@ -17570,28 +17595,28 @@ export declare const Envelope: {
|
|
|
17570
17595
|
prev_cursor?: string | undefined;
|
|
17571
17596
|
cacheable_cursor?: string | undefined;
|
|
17572
17597
|
page?: number | undefined;
|
|
17573
|
-
} & { [
|
|
17598
|
+
} & { [K_608 in Exclude<keyof I_1["list_data_socket"]["channel_desc_list"], keyof ChannelDescList>]: never; }) | undefined;
|
|
17574
17599
|
list_channel_users_uc_req?: ({
|
|
17575
17600
|
channel_id?: string | undefined;
|
|
17576
17601
|
limit?: number | undefined;
|
|
17577
17602
|
} & {
|
|
17578
17603
|
channel_id?: string | undefined;
|
|
17579
17604
|
limit?: number | undefined;
|
|
17580
|
-
} & { [
|
|
17605
|
+
} & { [K_609 in Exclude<keyof I_1["list_data_socket"]["list_channel_users_uc_req"], keyof AllUsersAddChannelRequest>]: never; }) | undefined;
|
|
17581
17606
|
channel_users_uc_list?: ({
|
|
17582
17607
|
channel_id?: string | undefined;
|
|
17583
17608
|
user_ids?: string[] | undefined;
|
|
17584
17609
|
limit?: number | undefined;
|
|
17585
17610
|
} & {
|
|
17586
17611
|
channel_id?: string | undefined;
|
|
17587
|
-
user_ids?: (string[] & string[] & { [
|
|
17612
|
+
user_ids?: (string[] & string[] & { [K_610 in Exclude<keyof I_1["list_data_socket"]["channel_users_uc_list"]["user_ids"], keyof string[]>]: never; }) | undefined;
|
|
17588
17613
|
limit?: number | undefined;
|
|
17589
|
-
} & { [
|
|
17614
|
+
} & { [K_611 in Exclude<keyof I_1["list_data_socket"]["channel_users_uc_list"], keyof AllUsersAddChannelResponse>]: never; }) | undefined;
|
|
17590
17615
|
list_channel_detail_req?: ({
|
|
17591
17616
|
channel_id?: string | undefined;
|
|
17592
17617
|
} & {
|
|
17593
17618
|
channel_id?: string | undefined;
|
|
17594
|
-
} & { [
|
|
17619
|
+
} & { [K_612 in Exclude<keyof I_1["list_data_socket"]["list_channel_detail_req"], "channel_id">]: never; }) | undefined;
|
|
17595
17620
|
channel_desc?: ({
|
|
17596
17621
|
clan_id?: string | undefined;
|
|
17597
17622
|
parent_id?: string | undefined;
|
|
@@ -17654,8 +17679,8 @@ export declare const Envelope: {
|
|
|
17654
17679
|
creator_id?: string | undefined;
|
|
17655
17680
|
channel_label?: string | undefined;
|
|
17656
17681
|
channel_private?: number | undefined;
|
|
17657
|
-
channel_avatar?: (string[] & string[] & { [
|
|
17658
|
-
user_id?: (string[] & string[] & { [
|
|
17682
|
+
channel_avatar?: (string[] & string[] & { [K_613 in Exclude<keyof I_1["list_data_socket"]["channel_desc"]["channel_avatar"], keyof string[]>]: never; }) | undefined;
|
|
17683
|
+
user_id?: (string[] & string[] & { [K_614 in Exclude<keyof I_1["list_data_socket"]["channel_desc"]["user_id"], keyof string[]>]: never; }) | undefined;
|
|
17659
17684
|
last_sent_message?: ({
|
|
17660
17685
|
id?: string | undefined;
|
|
17661
17686
|
timestamp_seconds?: number | undefined;
|
|
@@ -17675,8 +17700,8 @@ export declare const Envelope: {
|
|
|
17675
17700
|
reference?: string | undefined;
|
|
17676
17701
|
mention?: string | undefined;
|
|
17677
17702
|
reaction?: string | undefined;
|
|
17678
|
-
repliers?: (string[] & string[] & { [
|
|
17679
|
-
} & { [
|
|
17703
|
+
repliers?: (string[] & string[] & { [K_615 in Exclude<keyof I_1["list_data_socket"]["channel_desc"]["last_sent_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
17704
|
+
} & { [K_616 in Exclude<keyof I_1["list_data_socket"]["channel_desc"]["last_sent_message"], keyof ChannelMessageHeader>]: never; }) | undefined;
|
|
17680
17705
|
last_seen_message?: ({
|
|
17681
17706
|
id?: string | undefined;
|
|
17682
17707
|
timestamp_seconds?: number | undefined;
|
|
@@ -17696,27 +17721,27 @@ export declare const Envelope: {
|
|
|
17696
17721
|
reference?: string | undefined;
|
|
17697
17722
|
mention?: string | undefined;
|
|
17698
17723
|
reaction?: string | undefined;
|
|
17699
|
-
repliers?: (string[] & string[] & { [
|
|
17700
|
-
} & { [
|
|
17701
|
-
is_online?: (boolean[] & boolean[] & { [
|
|
17724
|
+
repliers?: (string[] & string[] & { [K_617 in Exclude<keyof I_1["list_data_socket"]["channel_desc"]["last_seen_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
17725
|
+
} & { [K_618 in Exclude<keyof I_1["list_data_socket"]["channel_desc"]["last_seen_message"], keyof ChannelMessageHeader>]: never; }) | undefined;
|
|
17726
|
+
is_online?: (boolean[] & boolean[] & { [K_619 in Exclude<keyof I_1["list_data_socket"]["channel_desc"]["is_online"], keyof boolean[]>]: never; }) | undefined;
|
|
17702
17727
|
meeting_code?: string | undefined;
|
|
17703
17728
|
count_mess_unread?: number | undefined;
|
|
17704
17729
|
active?: number | undefined;
|
|
17705
17730
|
last_pin_message?: string | undefined;
|
|
17706
|
-
usernames?: (string[] & string[] & { [
|
|
17731
|
+
usernames?: (string[] & string[] & { [K_620 in Exclude<keyof I_1["list_data_socket"]["channel_desc"]["usernames"], keyof string[]>]: never; }) | undefined;
|
|
17707
17732
|
creator_name?: string | undefined;
|
|
17708
17733
|
create_time_seconds?: number | undefined;
|
|
17709
17734
|
update_time_seconds?: number | undefined;
|
|
17710
|
-
metadata?: (string[] & string[] & { [
|
|
17711
|
-
about_me?: (string[] & string[] & { [
|
|
17735
|
+
metadata?: (string[] & string[] & { [K_621 in Exclude<keyof I_1["list_data_socket"]["channel_desc"]["metadata"], keyof string[]>]: never; }) | undefined;
|
|
17736
|
+
about_me?: (string[] & string[] & { [K_622 in Exclude<keyof I_1["list_data_socket"]["channel_desc"]["about_me"], keyof string[]>]: never; }) | undefined;
|
|
17712
17737
|
clan_name?: string | undefined;
|
|
17713
17738
|
app_id?: string | undefined;
|
|
17714
17739
|
is_mute?: boolean | undefined;
|
|
17715
17740
|
age_restricted?: number | undefined;
|
|
17716
17741
|
topic?: string | undefined;
|
|
17717
17742
|
e2ee?: number | undefined;
|
|
17718
|
-
display_names?: (string[] & string[] & { [
|
|
17719
|
-
} & { [
|
|
17743
|
+
display_names?: (string[] & string[] & { [K_623 in Exclude<keyof I_1["list_data_socket"]["channel_desc"]["display_names"], keyof string[]>]: never; }) | undefined;
|
|
17744
|
+
} & { [K_624 in Exclude<keyof I_1["list_data_socket"]["channel_desc"], keyof ChannelDescription1>]: never; }) | undefined;
|
|
17720
17745
|
list_channel_req?: ({
|
|
17721
17746
|
limit?: number | undefined;
|
|
17722
17747
|
state?: number | undefined;
|
|
@@ -17729,7 +17754,7 @@ export declare const Envelope: {
|
|
|
17729
17754
|
cursor?: string | undefined;
|
|
17730
17755
|
clan_id?: string | undefined;
|
|
17731
17756
|
channel_type?: number | undefined;
|
|
17732
|
-
} & { [
|
|
17757
|
+
} & { [K_625 in Exclude<keyof I_1["list_data_socket"]["list_channel_req"], keyof ListChannelDescsRequest>]: never; }) | undefined;
|
|
17733
17758
|
list_channel_message_req?: ({
|
|
17734
17759
|
clan_id?: string | undefined;
|
|
17735
17760
|
channel_id?: string | undefined;
|
|
@@ -17744,7 +17769,7 @@ export declare const Envelope: {
|
|
|
17744
17769
|
limit?: number | undefined;
|
|
17745
17770
|
direction?: number | undefined;
|
|
17746
17771
|
topic_id?: string | undefined;
|
|
17747
|
-
} & { [
|
|
17772
|
+
} & { [K_626 in Exclude<keyof I_1["list_data_socket"]["list_channel_message_req"], keyof ListChannelMessagesRequest>]: never; }) | undefined;
|
|
17748
17773
|
channel_message_list?: ({
|
|
17749
17774
|
messages?: {
|
|
17750
17775
|
clan_id?: string | undefined;
|
|
@@ -17882,7 +17907,7 @@ export declare const Envelope: {
|
|
|
17882
17907
|
hide_editted?: boolean | undefined;
|
|
17883
17908
|
is_public?: boolean | undefined;
|
|
17884
17909
|
topic_id?: string | undefined;
|
|
17885
|
-
} & { [
|
|
17910
|
+
} & { [K_627 in Exclude<keyof I_1["list_data_socket"]["channel_message_list"]["messages"][number], keyof ChannelMessage>]: never; })[] & { [K_628 in Exclude<keyof I_1["list_data_socket"]["channel_message_list"]["messages"], keyof {
|
|
17886
17911
|
clan_id?: string | undefined;
|
|
17887
17912
|
channel_id?: string | undefined;
|
|
17888
17913
|
message_id?: string | undefined;
|
|
@@ -17930,8 +17955,8 @@ export declare const Envelope: {
|
|
|
17930
17955
|
reference?: string | undefined;
|
|
17931
17956
|
mention?: string | undefined;
|
|
17932
17957
|
reaction?: string | undefined;
|
|
17933
|
-
repliers?: (string[] & string[] & { [
|
|
17934
|
-
} & { [
|
|
17958
|
+
repliers?: (string[] & string[] & { [K_629 in Exclude<keyof I_1["list_data_socket"]["channel_message_list"]["last_seen_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
17959
|
+
} & { [K_630 in Exclude<keyof I_1["list_data_socket"]["channel_message_list"]["last_seen_message"], keyof ChannelMessageHeader>]: never; }) | undefined;
|
|
17935
17960
|
last_sent_message?: ({
|
|
17936
17961
|
id?: string | undefined;
|
|
17937
17962
|
timestamp_seconds?: number | undefined;
|
|
@@ -17951,9 +17976,9 @@ export declare const Envelope: {
|
|
|
17951
17976
|
reference?: string | undefined;
|
|
17952
17977
|
mention?: string | undefined;
|
|
17953
17978
|
reaction?: string | undefined;
|
|
17954
|
-
repliers?: (string[] & string[] & { [
|
|
17955
|
-
} & { [
|
|
17956
|
-
} & { [
|
|
17979
|
+
repliers?: (string[] & string[] & { [K_631 in Exclude<keyof I_1["list_data_socket"]["channel_message_list"]["last_sent_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
17980
|
+
} & { [K_632 in Exclude<keyof I_1["list_data_socket"]["channel_message_list"]["last_sent_message"], keyof ChannelMessageHeader>]: never; }) | undefined;
|
|
17981
|
+
} & { [K_633 in Exclude<keyof I_1["list_data_socket"]["channel_message_list"], keyof ChannelMessageList>]: never; }) | undefined;
|
|
17957
17982
|
list_channel_users_req?: ({
|
|
17958
17983
|
clan_id?: string | undefined;
|
|
17959
17984
|
channel_id?: string | undefined;
|
|
@@ -17968,7 +17993,7 @@ export declare const Envelope: {
|
|
|
17968
17993
|
limit?: number | undefined;
|
|
17969
17994
|
state?: number | undefined;
|
|
17970
17995
|
cursor?: string | undefined;
|
|
17971
|
-
} & { [
|
|
17996
|
+
} & { [K_634 in Exclude<keyof I_1["list_data_socket"]["list_channel_users_req"], keyof ListChannelUsersRequest>]: never; }) | undefined;
|
|
17972
17997
|
voice_user_list?: ({
|
|
17973
17998
|
voice_channel_users?: {
|
|
17974
17999
|
id?: string | undefined;
|
|
@@ -17992,13 +18017,13 @@ export declare const Envelope: {
|
|
|
17992
18017
|
user_id?: string | undefined;
|
|
17993
18018
|
channel_id?: string | undefined;
|
|
17994
18019
|
participant?: string | undefined;
|
|
17995
|
-
} & { [
|
|
18020
|
+
} & { [K_635 in Exclude<keyof I_1["list_data_socket"]["voice_user_list"]["voice_channel_users"][number], keyof import("../api/api").VoiceChannelUser>]: never; })[] & { [K_636 in Exclude<keyof I_1["list_data_socket"]["voice_user_list"]["voice_channel_users"], keyof {
|
|
17996
18021
|
id?: string | undefined;
|
|
17997
18022
|
user_id?: string | undefined;
|
|
17998
18023
|
channel_id?: string | undefined;
|
|
17999
18024
|
participant?: string | undefined;
|
|
18000
18025
|
}[]>]: never; }) | undefined;
|
|
18001
|
-
} & { [
|
|
18026
|
+
} & { [K_637 in Exclude<keyof I_1["list_data_socket"]["voice_user_list"], "voice_channel_users">]: never; }) | undefined;
|
|
18002
18027
|
channel_user_list?: ({
|
|
18003
18028
|
channel_users?: {
|
|
18004
18029
|
user_id?: string | undefined;
|
|
@@ -18033,14 +18058,14 @@ export declare const Envelope: {
|
|
|
18033
18058
|
added_by?: string | undefined;
|
|
18034
18059
|
} & {
|
|
18035
18060
|
user_id?: string | undefined;
|
|
18036
|
-
role_id?: (string[] & string[] & { [
|
|
18061
|
+
role_id?: (string[] & string[] & { [K_638 in Exclude<keyof I_1["list_data_socket"]["channel_user_list"]["channel_users"][number]["role_id"], keyof string[]>]: never; }) | undefined;
|
|
18037
18062
|
id?: string | undefined;
|
|
18038
18063
|
thread_id?: string | undefined;
|
|
18039
18064
|
clan_nick?: string | undefined;
|
|
18040
18065
|
clan_avatar?: string | undefined;
|
|
18041
18066
|
clan_id?: string | undefined;
|
|
18042
18067
|
added_by?: string | undefined;
|
|
18043
|
-
} & { [
|
|
18068
|
+
} & { [K_639 in Exclude<keyof I_1["list_data_socket"]["channel_user_list"]["channel_users"][number], keyof import("../api/api").ChannelUserList_ChannelUser>]: never; })[] & { [K_640 in Exclude<keyof I_1["list_data_socket"]["channel_user_list"]["channel_users"], keyof {
|
|
18044
18069
|
user_id?: string | undefined;
|
|
18045
18070
|
role_id?: string[] | undefined;
|
|
18046
18071
|
id?: string | undefined;
|
|
@@ -18052,7 +18077,7 @@ export declare const Envelope: {
|
|
|
18052
18077
|
}[]>]: never; }) | undefined;
|
|
18053
18078
|
cursor?: string | undefined;
|
|
18054
18079
|
channel_id?: string | undefined;
|
|
18055
|
-
} & { [
|
|
18080
|
+
} & { [K_641 in Exclude<keyof I_1["list_data_socket"]["channel_user_list"], keyof ChannelUserList>]: never; }) | undefined;
|
|
18056
18081
|
list_channel_attachment_req?: ({
|
|
18057
18082
|
clan_id?: string | undefined;
|
|
18058
18083
|
channel_id?: string | undefined;
|
|
@@ -18071,7 +18096,7 @@ export declare const Envelope: {
|
|
|
18071
18096
|
before?: string | undefined;
|
|
18072
18097
|
after?: string | undefined;
|
|
18073
18098
|
around?: string | undefined;
|
|
18074
|
-
} & { [
|
|
18099
|
+
} & { [K_642 in Exclude<keyof I_1["list_data_socket"]["list_channel_attachment_req"], keyof ListChannelAttachmentRequest>]: never; }) | undefined;
|
|
18075
18100
|
channel_attachment_list?: ({
|
|
18076
18101
|
attachments?: {
|
|
18077
18102
|
id?: string | undefined;
|
|
@@ -18119,7 +18144,7 @@ export declare const Envelope: {
|
|
|
18119
18144
|
message_id?: string | undefined;
|
|
18120
18145
|
width?: number | undefined;
|
|
18121
18146
|
height?: number | undefined;
|
|
18122
|
-
} & { [
|
|
18147
|
+
} & { [K_643 in Exclude<keyof I_1["list_data_socket"]["channel_attachment_list"]["attachments"][number], keyof import("../api/api").ChannelAttachment>]: never; })[] & { [K_644 in Exclude<keyof I_1["list_data_socket"]["channel_attachment_list"]["attachments"], keyof {
|
|
18123
18148
|
id?: string | undefined;
|
|
18124
18149
|
filename?: string | undefined;
|
|
18125
18150
|
filetype?: string | undefined;
|
|
@@ -18131,14 +18156,14 @@ export declare const Envelope: {
|
|
|
18131
18156
|
width?: number | undefined;
|
|
18132
18157
|
height?: number | undefined;
|
|
18133
18158
|
}[]>]: never; }) | undefined;
|
|
18134
|
-
} & { [
|
|
18159
|
+
} & { [K_645 in Exclude<keyof I_1["list_data_socket"]["channel_attachment_list"], "attachments">]: never; }) | undefined;
|
|
18135
18160
|
hashtag_dm_req?: ({
|
|
18136
18161
|
user_id?: string[] | undefined;
|
|
18137
18162
|
limit?: number | undefined;
|
|
18138
18163
|
} & {
|
|
18139
|
-
user_id?: (string[] & string[] & { [
|
|
18164
|
+
user_id?: (string[] & string[] & { [K_646 in Exclude<keyof I_1["list_data_socket"]["hashtag_dm_req"]["user_id"], keyof string[]>]: never; }) | undefined;
|
|
18140
18165
|
limit?: number | undefined;
|
|
18141
|
-
} & { [
|
|
18166
|
+
} & { [K_647 in Exclude<keyof I_1["list_data_socket"]["hashtag_dm_req"], keyof HashtagDmListRequest>]: never; }) | undefined;
|
|
18142
18167
|
hashtag_dm_list?: ({
|
|
18143
18168
|
hashtag_dm?: {
|
|
18144
18169
|
channel_id?: string | undefined;
|
|
@@ -18178,7 +18203,7 @@ export declare const Envelope: {
|
|
|
18178
18203
|
type?: number | undefined;
|
|
18179
18204
|
channel_private?: number | undefined;
|
|
18180
18205
|
parent_id?: string | undefined;
|
|
18181
|
-
} & { [
|
|
18206
|
+
} & { [K_648 in Exclude<keyof I_1["list_data_socket"]["hashtag_dm_list"]["hashtag_dm"][number], keyof import("../api/api").HashtagDm>]: never; })[] & { [K_649 in Exclude<keyof I_1["list_data_socket"]["hashtag_dm_list"]["hashtag_dm"], keyof {
|
|
18182
18207
|
channel_id?: string | undefined;
|
|
18183
18208
|
channel_label?: string | undefined;
|
|
18184
18209
|
clan_id?: string | undefined;
|
|
@@ -18188,7 +18213,7 @@ export declare const Envelope: {
|
|
|
18188
18213
|
channel_private?: number | undefined;
|
|
18189
18214
|
parent_id?: string | undefined;
|
|
18190
18215
|
}[]>]: never; }) | undefined;
|
|
18191
|
-
} & { [
|
|
18216
|
+
} & { [K_650 in Exclude<keyof I_1["list_data_socket"]["hashtag_dm_list"], "hashtag_dm">]: never; }) | undefined;
|
|
18192
18217
|
channel_setting_req?: ({
|
|
18193
18218
|
clan_id?: string | undefined;
|
|
18194
18219
|
parent_id?: string | undefined;
|
|
@@ -18211,7 +18236,7 @@ export declare const Envelope: {
|
|
|
18211
18236
|
limit?: number | undefined;
|
|
18212
18237
|
page?: number | undefined;
|
|
18213
18238
|
channel_label?: string | undefined;
|
|
18214
|
-
} & { [
|
|
18239
|
+
} & { [K_651 in Exclude<keyof I_1["list_data_socket"]["channel_setting_req"], keyof ChannelSettingListRequest>]: never; }) | undefined;
|
|
18215
18240
|
channel_setting_list?: ({
|
|
18216
18241
|
clan_id?: string | undefined;
|
|
18217
18242
|
channel_count?: number | undefined;
|
|
@@ -18300,7 +18325,7 @@ export declare const Envelope: {
|
|
|
18300
18325
|
channel_private?: number | undefined;
|
|
18301
18326
|
channel_type?: number | undefined;
|
|
18302
18327
|
active?: number | undefined;
|
|
18303
|
-
user_ids?: (string[] & string[] & { [
|
|
18328
|
+
user_ids?: (string[] & string[] & { [K_652 in Exclude<keyof I_1["list_data_socket"]["channel_setting_list"]["channel_setting_list"][number]["user_ids"], keyof string[]>]: never; }) | undefined;
|
|
18304
18329
|
message_count?: number | undefined;
|
|
18305
18330
|
last_sent_message?: ({
|
|
18306
18331
|
id?: string | undefined;
|
|
@@ -18321,9 +18346,9 @@ export declare const Envelope: {
|
|
|
18321
18346
|
reference?: string | undefined;
|
|
18322
18347
|
mention?: string | undefined;
|
|
18323
18348
|
reaction?: string | undefined;
|
|
18324
|
-
repliers?: (string[] & string[] & { [
|
|
18325
|
-
} & { [
|
|
18326
|
-
} & { [
|
|
18349
|
+
repliers?: (string[] & string[] & { [K_653 in Exclude<keyof I_1["list_data_socket"]["channel_setting_list"]["channel_setting_list"][number]["last_sent_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
18350
|
+
} & { [K_654 in Exclude<keyof I_1["list_data_socket"]["channel_setting_list"]["channel_setting_list"][number]["last_sent_message"], keyof ChannelMessageHeader>]: never; }) | undefined;
|
|
18351
|
+
} & { [K_655 in Exclude<keyof I_1["list_data_socket"]["channel_setting_list"]["channel_setting_list"][number], keyof import("../api/api").ChannelSettingItem>]: never; })[] & { [K_656 in Exclude<keyof I_1["list_data_socket"]["channel_setting_list"]["channel_setting_list"], keyof {
|
|
18327
18352
|
id?: string | undefined;
|
|
18328
18353
|
creator_id?: string | undefined;
|
|
18329
18354
|
parent_id?: string | undefined;
|
|
@@ -18347,17 +18372,17 @@ export declare const Envelope: {
|
|
|
18347
18372
|
repliers?: string[] | undefined;
|
|
18348
18373
|
} | undefined;
|
|
18349
18374
|
}[]>]: never; }) | undefined;
|
|
18350
|
-
} & { [
|
|
18375
|
+
} & { [K_657 in Exclude<keyof I_1["list_data_socket"]["channel_setting_list"], keyof ChannelSettingListResponse>]: never; }) | undefined;
|
|
18351
18376
|
favorite_channel_req?: ({
|
|
18352
18377
|
clan_id?: string | undefined;
|
|
18353
18378
|
} & {
|
|
18354
18379
|
clan_id?: string | undefined;
|
|
18355
|
-
} & { [
|
|
18380
|
+
} & { [K_658 in Exclude<keyof I_1["list_data_socket"]["favorite_channel_req"], "clan_id">]: never; }) | undefined;
|
|
18356
18381
|
favorite_channel_list?: ({
|
|
18357
18382
|
channel_ids?: string[] | undefined;
|
|
18358
18383
|
} & {
|
|
18359
|
-
channel_ids?: (string[] & string[] & { [
|
|
18360
|
-
} & { [
|
|
18384
|
+
channel_ids?: (string[] & string[] & { [K_659 in Exclude<keyof I_1["list_data_socket"]["favorite_channel_list"]["channel_ids"], keyof string[]>]: never; }) | undefined;
|
|
18385
|
+
} & { [K_660 in Exclude<keyof I_1["list_data_socket"]["favorite_channel_list"], "channel_ids">]: never; }) | undefined;
|
|
18361
18386
|
search_thread_req?: ({
|
|
18362
18387
|
clan_id?: string | undefined;
|
|
18363
18388
|
channel_id?: string | undefined;
|
|
@@ -18366,12 +18391,12 @@ export declare const Envelope: {
|
|
|
18366
18391
|
clan_id?: string | undefined;
|
|
18367
18392
|
channel_id?: string | undefined;
|
|
18368
18393
|
label?: string | undefined;
|
|
18369
|
-
} & { [
|
|
18394
|
+
} & { [K_661 in Exclude<keyof I_1["list_data_socket"]["search_thread_req"], keyof SearchThreadRequest>]: never; }) | undefined;
|
|
18370
18395
|
notification_channel?: ({
|
|
18371
18396
|
channel_id?: string | undefined;
|
|
18372
18397
|
} & {
|
|
18373
18398
|
channel_id?: string | undefined;
|
|
18374
|
-
} & { [
|
|
18399
|
+
} & { [K_662 in Exclude<keyof I_1["list_data_socket"]["notification_channel"], "channel_id">]: never; }) | undefined;
|
|
18375
18400
|
notificaion_user_channel?: ({
|
|
18376
18401
|
id?: string | undefined;
|
|
18377
18402
|
notification_setting_type?: number | undefined;
|
|
@@ -18384,24 +18409,24 @@ export declare const Envelope: {
|
|
|
18384
18409
|
time_mute?: Date | undefined;
|
|
18385
18410
|
active?: number | undefined;
|
|
18386
18411
|
channel_id?: string | undefined;
|
|
18387
|
-
} & { [
|
|
18412
|
+
} & { [K_663 in Exclude<keyof I_1["list_data_socket"]["notificaion_user_channel"], keyof NotificationUserChannel>]: never; }) | undefined;
|
|
18388
18413
|
notification_category?: ({
|
|
18389
18414
|
category_id?: string | undefined;
|
|
18390
18415
|
} & {
|
|
18391
18416
|
category_id?: string | undefined;
|
|
18392
|
-
} & { [
|
|
18417
|
+
} & { [K_664 in Exclude<keyof I_1["list_data_socket"]["notification_category"], "category_id">]: never; }) | undefined;
|
|
18393
18418
|
notification_clan?: ({
|
|
18394
18419
|
clan_id?: string | undefined;
|
|
18395
18420
|
} & {
|
|
18396
18421
|
clan_id?: string | undefined;
|
|
18397
|
-
} & { [
|
|
18422
|
+
} & { [K_665 in Exclude<keyof I_1["list_data_socket"]["notification_clan"], "clan_id">]: never; }) | undefined;
|
|
18398
18423
|
notification_setting?: ({
|
|
18399
18424
|
id?: string | undefined;
|
|
18400
18425
|
notification_setting_type?: number | undefined;
|
|
18401
18426
|
} & {
|
|
18402
18427
|
id?: string | undefined;
|
|
18403
18428
|
notification_setting_type?: number | undefined;
|
|
18404
|
-
} & { [
|
|
18429
|
+
} & { [K_666 in Exclude<keyof I_1["list_data_socket"]["notification_setting"], keyof NotificationSetting>]: never; }) | undefined;
|
|
18405
18430
|
notification_message?: ({
|
|
18406
18431
|
id?: string | undefined;
|
|
18407
18432
|
user_id?: string | undefined;
|
|
@@ -18410,7 +18435,7 @@ export declare const Envelope: {
|
|
|
18410
18435
|
id?: string | undefined;
|
|
18411
18436
|
user_id?: string | undefined;
|
|
18412
18437
|
channel_id?: string | undefined;
|
|
18413
|
-
} & { [
|
|
18438
|
+
} & { [K_667 in Exclude<keyof I_1["list_data_socket"]["notification_message"], keyof NotifiReactMessage>]: never; }) | undefined;
|
|
18414
18439
|
noti_channel_cat_setting_list?: ({
|
|
18415
18440
|
notification_channel_category_settings_list?: {
|
|
18416
18441
|
id?: string | undefined;
|
|
@@ -18438,14 +18463,14 @@ export declare const Envelope: {
|
|
|
18438
18463
|
notification_setting_type?: number | undefined;
|
|
18439
18464
|
channel_category_title?: string | undefined;
|
|
18440
18465
|
action?: number | undefined;
|
|
18441
|
-
} & { [
|
|
18466
|
+
} & { [K_668 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_669 in Exclude<keyof I_1["list_data_socket"]["noti_channel_cat_setting_list"]["notification_channel_category_settings_list"], keyof {
|
|
18442
18467
|
id?: string | undefined;
|
|
18443
18468
|
channel_category_label?: string | undefined;
|
|
18444
18469
|
notification_setting_type?: number | undefined;
|
|
18445
18470
|
channel_category_title?: string | undefined;
|
|
18446
18471
|
action?: number | undefined;
|
|
18447
18472
|
}[]>]: never; }) | undefined;
|
|
18448
|
-
} & { [
|
|
18473
|
+
} & { [K_670 in Exclude<keyof I_1["list_data_socket"]["noti_channel_cat_setting_list"], "notification_channel_category_settings_list">]: never; }) | undefined;
|
|
18449
18474
|
list_notification_req?: ({
|
|
18450
18475
|
limit?: number | undefined;
|
|
18451
18476
|
clan_id?: string | undefined;
|
|
@@ -18458,7 +18483,7 @@ export declare const Envelope: {
|
|
|
18458
18483
|
notification_id?: string | undefined;
|
|
18459
18484
|
category?: number | undefined;
|
|
18460
18485
|
direction?: number | undefined;
|
|
18461
|
-
} & { [
|
|
18486
|
+
} & { [K_671 in Exclude<keyof I_1["list_data_socket"]["list_notification_req"], keyof ListNotificationsRequest>]: never; }) | undefined;
|
|
18462
18487
|
notification_list?: ({
|
|
18463
18488
|
notifications?: {
|
|
18464
18489
|
id?: string | undefined;
|
|
@@ -18738,8 +18763,8 @@ export declare const Envelope: {
|
|
|
18738
18763
|
creator_id?: string | undefined;
|
|
18739
18764
|
channel_label?: string | undefined;
|
|
18740
18765
|
channel_private?: number | undefined;
|
|
18741
|
-
channel_avatar?: (string[] & string[] & { [
|
|
18742
|
-
user_id?: (string[] & string[] & { [
|
|
18766
|
+
channel_avatar?: (string[] & string[] & { [K_672 in Exclude<keyof I_1["list_data_socket"]["notification_list"]["notifications"][number]["channel"]["channel_avatar"], keyof string[]>]: never; }) | undefined;
|
|
18767
|
+
user_id?: (string[] & string[] & { [K_673 in Exclude<keyof I_1["list_data_socket"]["notification_list"]["notifications"][number]["channel"]["user_id"], keyof string[]>]: never; }) | undefined;
|
|
18743
18768
|
last_sent_message?: ({
|
|
18744
18769
|
id?: string | undefined;
|
|
18745
18770
|
timestamp_seconds?: number | undefined;
|
|
@@ -18759,8 +18784,8 @@ export declare const Envelope: {
|
|
|
18759
18784
|
reference?: string | undefined;
|
|
18760
18785
|
mention?: string | undefined;
|
|
18761
18786
|
reaction?: string | undefined;
|
|
18762
|
-
repliers?: (string[] & string[] & { [
|
|
18763
|
-
} & { [
|
|
18787
|
+
repliers?: (string[] & string[] & { [K_674 in Exclude<keyof I_1["list_data_socket"]["notification_list"]["notifications"][number]["channel"]["last_sent_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
18788
|
+
} & { [K_675 in Exclude<keyof I_1["list_data_socket"]["notification_list"]["notifications"][number]["channel"]["last_sent_message"], keyof ChannelMessageHeader>]: never; }) | undefined;
|
|
18764
18789
|
last_seen_message?: ({
|
|
18765
18790
|
id?: string | undefined;
|
|
18766
18791
|
timestamp_seconds?: number | undefined;
|
|
@@ -18780,30 +18805,30 @@ export declare const Envelope: {
|
|
|
18780
18805
|
reference?: string | undefined;
|
|
18781
18806
|
mention?: string | undefined;
|
|
18782
18807
|
reaction?: string | undefined;
|
|
18783
|
-
repliers?: (string[] & string[] & { [
|
|
18784
|
-
} & { [
|
|
18785
|
-
is_online?: (boolean[] & boolean[] & { [
|
|
18808
|
+
repliers?: (string[] & string[] & { [K_676 in Exclude<keyof I_1["list_data_socket"]["notification_list"]["notifications"][number]["channel"]["last_seen_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
18809
|
+
} & { [K_677 in Exclude<keyof I_1["list_data_socket"]["notification_list"]["notifications"][number]["channel"]["last_seen_message"], keyof ChannelMessageHeader>]: never; }) | undefined;
|
|
18810
|
+
is_online?: (boolean[] & boolean[] & { [K_678 in Exclude<keyof I_1["list_data_socket"]["notification_list"]["notifications"][number]["channel"]["is_online"], keyof boolean[]>]: never; }) | undefined;
|
|
18786
18811
|
meeting_code?: string | undefined;
|
|
18787
18812
|
count_mess_unread?: number | undefined;
|
|
18788
18813
|
active?: number | undefined;
|
|
18789
18814
|
last_pin_message?: string | undefined;
|
|
18790
|
-
usernames?: (string[] & string[] & { [
|
|
18815
|
+
usernames?: (string[] & string[] & { [K_679 in Exclude<keyof I_1["list_data_socket"]["notification_list"]["notifications"][number]["channel"]["usernames"], keyof string[]>]: never; }) | undefined;
|
|
18791
18816
|
creator_name?: string | undefined;
|
|
18792
18817
|
create_time_seconds?: number | undefined;
|
|
18793
18818
|
update_time_seconds?: number | undefined;
|
|
18794
|
-
metadata?: (string[] & string[] & { [
|
|
18795
|
-
about_me?: (string[] & string[] & { [
|
|
18819
|
+
metadata?: (string[] & string[] & { [K_680 in Exclude<keyof I_1["list_data_socket"]["notification_list"]["notifications"][number]["channel"]["metadata"], keyof string[]>]: never; }) | undefined;
|
|
18820
|
+
about_me?: (string[] & string[] & { [K_681 in Exclude<keyof I_1["list_data_socket"]["notification_list"]["notifications"][number]["channel"]["about_me"], keyof string[]>]: never; }) | undefined;
|
|
18796
18821
|
clan_name?: string | undefined;
|
|
18797
18822
|
app_id?: string | undefined;
|
|
18798
18823
|
is_mute?: boolean | undefined;
|
|
18799
18824
|
age_restricted?: number | undefined;
|
|
18800
18825
|
topic?: string | undefined;
|
|
18801
18826
|
e2ee?: number | undefined;
|
|
18802
|
-
display_names?: (string[] & string[] & { [
|
|
18803
|
-
} & { [
|
|
18827
|
+
display_names?: (string[] & string[] & { [K_682 in Exclude<keyof I_1["list_data_socket"]["notification_list"]["notifications"][number]["channel"]["display_names"], keyof string[]>]: never; }) | undefined;
|
|
18828
|
+
} & { [K_683 in Exclude<keyof I_1["list_data_socket"]["notification_list"]["notifications"][number]["channel"], keyof ChannelDescription1>]: never; }) | undefined;
|
|
18804
18829
|
topic_id?: string | undefined;
|
|
18805
18830
|
category?: number | undefined;
|
|
18806
|
-
} & { [
|
|
18831
|
+
} & { [K_684 in Exclude<keyof I_1["list_data_socket"]["notification_list"]["notifications"][number], keyof Notification>]: never; })[] & { [K_685 in Exclude<keyof I_1["list_data_socket"]["notification_list"]["notifications"], keyof {
|
|
18807
18832
|
id?: string | undefined;
|
|
18808
18833
|
subject?: string | undefined;
|
|
18809
18834
|
content?: string | undefined;
|
|
@@ -18872,7 +18897,7 @@ export declare const Envelope: {
|
|
|
18872
18897
|
category?: number | undefined;
|
|
18873
18898
|
}[]>]: never; }) | undefined;
|
|
18874
18899
|
cacheable_cursor?: string | undefined;
|
|
18875
|
-
} & { [
|
|
18900
|
+
} & { [K_686 in Exclude<keyof I_1["list_data_socket"]["notification_list"], keyof NotificationList>]: never; }) | undefined;
|
|
18876
18901
|
sticker_list?: ({
|
|
18877
18902
|
stickers?: {
|
|
18878
18903
|
id?: string | undefined;
|
|
@@ -18924,7 +18949,7 @@ export declare const Envelope: {
|
|
|
18924
18949
|
clan_name?: string | undefined;
|
|
18925
18950
|
media_type?: number | undefined;
|
|
18926
18951
|
is_for_sale?: boolean | undefined;
|
|
18927
|
-
} & { [
|
|
18952
|
+
} & { [K_687 in Exclude<keyof I_1["list_data_socket"]["sticker_list"]["stickers"][number], keyof import("../api/api").ClanSticker>]: never; })[] & { [K_688 in Exclude<keyof I_1["list_data_socket"]["sticker_list"]["stickers"], keyof {
|
|
18928
18953
|
id?: string | undefined;
|
|
18929
18954
|
source?: string | undefined;
|
|
18930
18955
|
shortname?: string | undefined;
|
|
@@ -18937,7 +18962,7 @@ export declare const Envelope: {
|
|
|
18937
18962
|
media_type?: number | undefined;
|
|
18938
18963
|
is_for_sale?: boolean | undefined;
|
|
18939
18964
|
}[]>]: never; }) | undefined;
|
|
18940
|
-
} & { [
|
|
18965
|
+
} & { [K_689 in Exclude<keyof I_1["list_data_socket"]["sticker_list"], "stickers">]: never; }) | undefined;
|
|
18941
18966
|
emoji_recent_list?: ({
|
|
18942
18967
|
emoji_recents?: {
|
|
18943
18968
|
emoji_recents_id?: string | undefined;
|
|
@@ -18957,17 +18982,17 @@ export declare const Envelope: {
|
|
|
18957
18982
|
emoji_recents_id?: string | undefined;
|
|
18958
18983
|
emoji_id?: string | undefined;
|
|
18959
18984
|
update_time?: Date | undefined;
|
|
18960
|
-
} & { [
|
|
18985
|
+
} & { [K_690 in Exclude<keyof I_1["list_data_socket"]["emoji_recent_list"]["emoji_recents"][number], keyof import("../api/api").EmojiRecent>]: never; })[] & { [K_691 in Exclude<keyof I_1["list_data_socket"]["emoji_recent_list"]["emoji_recents"], keyof {
|
|
18961
18986
|
emoji_recents_id?: string | undefined;
|
|
18962
18987
|
emoji_id?: string | undefined;
|
|
18963
18988
|
update_time?: Date | undefined;
|
|
18964
18989
|
}[]>]: never; }) | undefined;
|
|
18965
|
-
} & { [
|
|
18990
|
+
} & { [K_692 in Exclude<keyof I_1["list_data_socket"]["emoji_recent_list"], "emoji_recents">]: never; }) | undefined;
|
|
18966
18991
|
clan_webhook_req?: ({
|
|
18967
18992
|
clan_id?: string | undefined;
|
|
18968
18993
|
} & {
|
|
18969
18994
|
clan_id?: string | undefined;
|
|
18970
|
-
} & { [
|
|
18995
|
+
} & { [K_693 in Exclude<keyof I_1["list_data_socket"]["clan_webhook_req"], "clan_id">]: never; }) | undefined;
|
|
18971
18996
|
clan_webhook_list?: ({
|
|
18972
18997
|
list_clan_webhooks?: {
|
|
18973
18998
|
id?: string | undefined;
|
|
@@ -19011,7 +19036,7 @@ export declare const Envelope: {
|
|
|
19011
19036
|
avatar?: string | undefined;
|
|
19012
19037
|
create_time?: string | undefined;
|
|
19013
19038
|
update_time?: string | undefined;
|
|
19014
|
-
} & { [
|
|
19039
|
+
} & { [K_694 in Exclude<keyof I_1["list_data_socket"]["clan_webhook_list"]["list_clan_webhooks"][number], keyof import("../api/api").ClanWebhook>]: never; })[] & { [K_695 in Exclude<keyof I_1["list_data_socket"]["clan_webhook_list"]["list_clan_webhooks"], keyof {
|
|
19015
19040
|
id?: string | undefined;
|
|
19016
19041
|
webhook_name?: string | undefined;
|
|
19017
19042
|
clan_id?: string | undefined;
|
|
@@ -19022,14 +19047,14 @@ export declare const Envelope: {
|
|
|
19022
19047
|
create_time?: string | undefined;
|
|
19023
19048
|
update_time?: string | undefined;
|
|
19024
19049
|
}[]>]: never; }) | undefined;
|
|
19025
|
-
} & { [
|
|
19050
|
+
} & { [K_696 in Exclude<keyof I_1["list_data_socket"]["clan_webhook_list"], "list_clan_webhooks">]: never; }) | undefined;
|
|
19026
19051
|
webhook_list_req?: ({
|
|
19027
19052
|
channel_id?: string | undefined;
|
|
19028
19053
|
clan_id?: string | undefined;
|
|
19029
19054
|
} & {
|
|
19030
19055
|
channel_id?: string | undefined;
|
|
19031
19056
|
clan_id?: string | undefined;
|
|
19032
|
-
} & { [
|
|
19057
|
+
} & { [K_697 in Exclude<keyof I_1["list_data_socket"]["webhook_list_req"], keyof WebhookListRequest>]: never; }) | undefined;
|
|
19033
19058
|
webhook_list?: ({
|
|
19034
19059
|
webhooks?: {
|
|
19035
19060
|
id?: string | undefined;
|
|
@@ -19077,7 +19102,7 @@ export declare const Envelope: {
|
|
|
19077
19102
|
update_time?: string | undefined;
|
|
19078
19103
|
avatar?: string | undefined;
|
|
19079
19104
|
status?: number | undefined;
|
|
19080
|
-
} & { [
|
|
19105
|
+
} & { [K_698 in Exclude<keyof I_1["list_data_socket"]["webhook_list"]["webhooks"][number], keyof Webhook>]: never; })[] & { [K_699 in Exclude<keyof I_1["list_data_socket"]["webhook_list"]["webhooks"], keyof {
|
|
19081
19106
|
id?: string | undefined;
|
|
19082
19107
|
webhook_name?: string | undefined;
|
|
19083
19108
|
channel_id?: string | undefined;
|
|
@@ -19089,12 +19114,12 @@ export declare const Envelope: {
|
|
|
19089
19114
|
avatar?: string | undefined;
|
|
19090
19115
|
status?: number | undefined;
|
|
19091
19116
|
}[]>]: never; }) | undefined;
|
|
19092
|
-
} & { [
|
|
19117
|
+
} & { [K_700 in Exclude<keyof I_1["list_data_socket"]["webhook_list"], "webhooks">]: never; }) | undefined;
|
|
19093
19118
|
permission_list_req?: ({
|
|
19094
19119
|
role_id?: string | undefined;
|
|
19095
19120
|
} & {
|
|
19096
19121
|
role_id?: string | undefined;
|
|
19097
|
-
} & { [
|
|
19122
|
+
} & { [K_701 in Exclude<keyof I_1["list_data_socket"]["permission_list_req"], "role_id">]: never; }) | undefined;
|
|
19098
19123
|
permission_list?: ({
|
|
19099
19124
|
permissions?: {
|
|
19100
19125
|
id?: string | undefined;
|
|
@@ -19131,7 +19156,7 @@ export declare const Envelope: {
|
|
|
19131
19156
|
active?: number | undefined;
|
|
19132
19157
|
scope?: number | undefined;
|
|
19133
19158
|
level?: number | undefined;
|
|
19134
|
-
} & { [
|
|
19159
|
+
} & { [K_702 in Exclude<keyof I_1["list_data_socket"]["permission_list"]["permissions"][number], keyof import("../api/api").Permission>]: never; })[] & { [K_703 in Exclude<keyof I_1["list_data_socket"]["permission_list"]["permissions"], keyof {
|
|
19135
19160
|
id?: string | undefined;
|
|
19136
19161
|
title?: string | undefined;
|
|
19137
19162
|
slug?: string | undefined;
|
|
@@ -19141,7 +19166,7 @@ export declare const Envelope: {
|
|
|
19141
19166
|
level?: number | undefined;
|
|
19142
19167
|
}[]>]: never; }) | undefined;
|
|
19143
19168
|
max_level_permission?: number | undefined;
|
|
19144
|
-
} & { [
|
|
19169
|
+
} & { [K_704 in Exclude<keyof I_1["list_data_socket"]["permission_list"], keyof PermissionList>]: never; }) | undefined;
|
|
19145
19170
|
role_user_req?: ({
|
|
19146
19171
|
role_id?: string | undefined;
|
|
19147
19172
|
limit?: number | undefined;
|
|
@@ -19150,7 +19175,7 @@ export declare const Envelope: {
|
|
|
19150
19175
|
role_id?: string | undefined;
|
|
19151
19176
|
limit?: number | undefined;
|
|
19152
19177
|
cursor?: string | undefined;
|
|
19153
|
-
} & { [
|
|
19178
|
+
} & { [K_705 in Exclude<keyof I_1["list_data_socket"]["role_user_req"], keyof ListRoleUsersRequest>]: never; }) | undefined;
|
|
19154
19179
|
role_user_list?: ({
|
|
19155
19180
|
role_users?: {
|
|
19156
19181
|
id?: string | undefined;
|
|
@@ -19187,7 +19212,7 @@ export declare const Envelope: {
|
|
|
19187
19212
|
lang_tag?: string | undefined;
|
|
19188
19213
|
location?: string | undefined;
|
|
19189
19214
|
online?: boolean | undefined;
|
|
19190
|
-
} & { [
|
|
19215
|
+
} & { [K_706 in Exclude<keyof I_1["list_data_socket"]["role_user_list"]["role_users"][number], keyof import("../api/api").RoleUserList_RoleUser>]: never; })[] & { [K_707 in Exclude<keyof I_1["list_data_socket"]["role_user_list"]["role_users"], keyof {
|
|
19191
19216
|
id?: string | undefined;
|
|
19192
19217
|
username?: string | undefined;
|
|
19193
19218
|
display_name?: string | undefined;
|
|
@@ -19197,14 +19222,14 @@ export declare const Envelope: {
|
|
|
19197
19222
|
online?: boolean | undefined;
|
|
19198
19223
|
}[]>]: never; }) | undefined;
|
|
19199
19224
|
cursor?: string | undefined;
|
|
19200
|
-
} & { [
|
|
19225
|
+
} & { [K_708 in Exclude<keyof I_1["list_data_socket"]["role_user_list"], keyof RoleUserList>]: never; }) | undefined;
|
|
19201
19226
|
permission_user_req?: ({
|
|
19202
19227
|
clan_id?: string | undefined;
|
|
19203
19228
|
channel_id?: string | undefined;
|
|
19204
19229
|
} & {
|
|
19205
19230
|
clan_id?: string | undefined;
|
|
19206
19231
|
channel_id?: string | undefined;
|
|
19207
|
-
} & { [
|
|
19232
|
+
} & { [K_709 in Exclude<keyof I_1["list_data_socket"]["permission_user_req"], keyof ListPermissionOfUsersRequest>]: never; }) | undefined;
|
|
19208
19233
|
role_list?: ({
|
|
19209
19234
|
roles?: {
|
|
19210
19235
|
id?: string | undefined;
|
|
@@ -19379,7 +19404,7 @@ export declare const Envelope: {
|
|
|
19379
19404
|
lang_tag?: string | undefined;
|
|
19380
19405
|
location?: string | undefined;
|
|
19381
19406
|
online?: boolean | undefined;
|
|
19382
|
-
} & { [
|
|
19407
|
+
} & { [K_710 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_711 in Exclude<keyof I_1["list_data_socket"]["role_list"]["roles"][number]["role_user_list"]["role_users"], keyof {
|
|
19383
19408
|
id?: string | undefined;
|
|
19384
19409
|
username?: string | undefined;
|
|
19385
19410
|
display_name?: string | undefined;
|
|
@@ -19389,7 +19414,7 @@ export declare const Envelope: {
|
|
|
19389
19414
|
online?: boolean | undefined;
|
|
19390
19415
|
}[]>]: never; }) | undefined;
|
|
19391
19416
|
cursor?: string | undefined;
|
|
19392
|
-
} & { [
|
|
19417
|
+
} & { [K_712 in Exclude<keyof I_1["list_data_socket"]["role_list"]["roles"][number]["role_user_list"], keyof RoleUserList>]: never; }) | undefined;
|
|
19393
19418
|
permission_list?: ({
|
|
19394
19419
|
permissions?: {
|
|
19395
19420
|
id?: string | undefined;
|
|
@@ -19426,7 +19451,7 @@ export declare const Envelope: {
|
|
|
19426
19451
|
active?: number | undefined;
|
|
19427
19452
|
scope?: number | undefined;
|
|
19428
19453
|
level?: number | undefined;
|
|
19429
|
-
} & { [
|
|
19454
|
+
} & { [K_713 in Exclude<keyof I_1["list_data_socket"]["role_list"]["roles"][number]["permission_list"]["permissions"][number], keyof import("../api/api").Permission>]: never; })[] & { [K_714 in Exclude<keyof I_1["list_data_socket"]["role_list"]["roles"][number]["permission_list"]["permissions"], keyof {
|
|
19430
19455
|
id?: string | undefined;
|
|
19431
19456
|
title?: string | undefined;
|
|
19432
19457
|
slug?: string | undefined;
|
|
@@ -19436,12 +19461,12 @@ export declare const Envelope: {
|
|
|
19436
19461
|
level?: number | undefined;
|
|
19437
19462
|
}[]>]: never; }) | undefined;
|
|
19438
19463
|
max_level_permission?: number | undefined;
|
|
19439
|
-
} & { [
|
|
19464
|
+
} & { [K_715 in Exclude<keyof I_1["list_data_socket"]["role_list"]["roles"][number]["permission_list"], keyof PermissionList>]: never; }) | undefined;
|
|
19440
19465
|
role_channel_active?: number | undefined;
|
|
19441
|
-
channel_ids?: (string[] & string[] & { [
|
|
19466
|
+
channel_ids?: (string[] & string[] & { [K_716 in Exclude<keyof I_1["list_data_socket"]["role_list"]["roles"][number]["channel_ids"], keyof string[]>]: never; }) | undefined;
|
|
19442
19467
|
max_level_permission?: number | undefined;
|
|
19443
19468
|
order_role?: number | undefined;
|
|
19444
|
-
} & { [
|
|
19469
|
+
} & { [K_717 in Exclude<keyof I_1["list_data_socket"]["role_list"]["roles"][number], keyof Role>]: never; })[] & { [K_718 in Exclude<keyof I_1["list_data_socket"]["role_list"]["roles"], keyof {
|
|
19445
19470
|
id?: string | undefined;
|
|
19446
19471
|
title?: string | undefined;
|
|
19447
19472
|
color?: string | undefined;
|
|
@@ -19485,7 +19510,7 @@ export declare const Envelope: {
|
|
|
19485
19510
|
next_cursor?: string | undefined;
|
|
19486
19511
|
prev_cursor?: string | undefined;
|
|
19487
19512
|
cacheable_cursor?: string | undefined;
|
|
19488
|
-
} & { [
|
|
19513
|
+
} & { [K_719 in Exclude<keyof I_1["list_data_socket"]["role_list"], keyof RoleList>]: never; }) | undefined;
|
|
19489
19514
|
role_list_event_req?: ({
|
|
19490
19515
|
clan_id?: string | undefined;
|
|
19491
19516
|
limit?: number | undefined;
|
|
@@ -19496,7 +19521,7 @@ export declare const Envelope: {
|
|
|
19496
19521
|
limit?: number | undefined;
|
|
19497
19522
|
state?: number | undefined;
|
|
19498
19523
|
cursor?: string | undefined;
|
|
19499
|
-
} & { [
|
|
19524
|
+
} & { [K_720 in Exclude<keyof I_1["list_data_socket"]["role_list_event_req"], keyof RoleListEventRequest>]: never; }) | undefined;
|
|
19500
19525
|
role_event_list?: ({
|
|
19501
19526
|
limit?: number | undefined;
|
|
19502
19527
|
state?: number | undefined;
|
|
@@ -19727,7 +19752,7 @@ export declare const Envelope: {
|
|
|
19727
19752
|
lang_tag?: string | undefined;
|
|
19728
19753
|
location?: string | undefined;
|
|
19729
19754
|
online?: boolean | undefined;
|
|
19730
|
-
} & { [
|
|
19755
|
+
} & { [K_721 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_722 in Exclude<keyof I_1["list_data_socket"]["role_event_list"]["roles"]["roles"][number]["role_user_list"]["role_users"], keyof {
|
|
19731
19756
|
id?: string | undefined;
|
|
19732
19757
|
username?: string | undefined;
|
|
19733
19758
|
display_name?: string | undefined;
|
|
@@ -19737,7 +19762,7 @@ export declare const Envelope: {
|
|
|
19737
19762
|
online?: boolean | undefined;
|
|
19738
19763
|
}[]>]: never; }) | undefined;
|
|
19739
19764
|
cursor?: string | undefined;
|
|
19740
|
-
} & { [
|
|
19765
|
+
} & { [K_723 in Exclude<keyof I_1["list_data_socket"]["role_event_list"]["roles"]["roles"][number]["role_user_list"], keyof RoleUserList>]: never; }) | undefined;
|
|
19741
19766
|
permission_list?: ({
|
|
19742
19767
|
permissions?: {
|
|
19743
19768
|
id?: string | undefined;
|
|
@@ -19774,7 +19799,7 @@ export declare const Envelope: {
|
|
|
19774
19799
|
active?: number | undefined;
|
|
19775
19800
|
scope?: number | undefined;
|
|
19776
19801
|
level?: number | undefined;
|
|
19777
|
-
} & { [
|
|
19802
|
+
} & { [K_724 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_725 in Exclude<keyof I_1["list_data_socket"]["role_event_list"]["roles"]["roles"][number]["permission_list"]["permissions"], keyof {
|
|
19778
19803
|
id?: string | undefined;
|
|
19779
19804
|
title?: string | undefined;
|
|
19780
19805
|
slug?: string | undefined;
|
|
@@ -19784,12 +19809,12 @@ export declare const Envelope: {
|
|
|
19784
19809
|
level?: number | undefined;
|
|
19785
19810
|
}[]>]: never; }) | undefined;
|
|
19786
19811
|
max_level_permission?: number | undefined;
|
|
19787
|
-
} & { [
|
|
19812
|
+
} & { [K_726 in Exclude<keyof I_1["list_data_socket"]["role_event_list"]["roles"]["roles"][number]["permission_list"], keyof PermissionList>]: never; }) | undefined;
|
|
19788
19813
|
role_channel_active?: number | undefined;
|
|
19789
|
-
channel_ids?: (string[] & string[] & { [
|
|
19814
|
+
channel_ids?: (string[] & string[] & { [K_727 in Exclude<keyof I_1["list_data_socket"]["role_event_list"]["roles"]["roles"][number]["channel_ids"], keyof string[]>]: never; }) | undefined;
|
|
19790
19815
|
max_level_permission?: number | undefined;
|
|
19791
19816
|
order_role?: number | undefined;
|
|
19792
|
-
} & { [
|
|
19817
|
+
} & { [K_728 in Exclude<keyof I_1["list_data_socket"]["role_event_list"]["roles"]["roles"][number], keyof Role>]: never; })[] & { [K_729 in Exclude<keyof I_1["list_data_socket"]["role_event_list"]["roles"]["roles"], keyof {
|
|
19793
19818
|
id?: string | undefined;
|
|
19794
19819
|
title?: string | undefined;
|
|
19795
19820
|
color?: string | undefined;
|
|
@@ -19833,15 +19858,15 @@ export declare const Envelope: {
|
|
|
19833
19858
|
next_cursor?: string | undefined;
|
|
19834
19859
|
prev_cursor?: string | undefined;
|
|
19835
19860
|
cacheable_cursor?: string | undefined;
|
|
19836
|
-
} & { [
|
|
19837
|
-
} & { [
|
|
19861
|
+
} & { [K_730 in Exclude<keyof I_1["list_data_socket"]["role_event_list"]["roles"], keyof RoleList>]: never; }) | undefined;
|
|
19862
|
+
} & { [K_731 in Exclude<keyof I_1["list_data_socket"]["role_event_list"], keyof RoleListEventResponse>]: never; }) | undefined;
|
|
19838
19863
|
user_permission_req?: ({
|
|
19839
19864
|
clan_id?: string | undefined;
|
|
19840
19865
|
channel_id?: string | undefined;
|
|
19841
19866
|
} & {
|
|
19842
19867
|
clan_id?: string | undefined;
|
|
19843
19868
|
channel_id?: string | undefined;
|
|
19844
|
-
} & { [
|
|
19869
|
+
} & { [K_732 in Exclude<keyof I_1["list_data_socket"]["user_permission_req"], keyof UserPermissionInChannelListRequest>]: never; }) | undefined;
|
|
19845
19870
|
user_permission_list?: ({
|
|
19846
19871
|
clan_id?: string | undefined;
|
|
19847
19872
|
channel_id?: string | undefined;
|
|
@@ -19896,7 +19921,7 @@ export declare const Envelope: {
|
|
|
19896
19921
|
active?: number | undefined;
|
|
19897
19922
|
scope?: number | undefined;
|
|
19898
19923
|
level?: number | undefined;
|
|
19899
|
-
} & { [
|
|
19924
|
+
} & { [K_733 in Exclude<keyof I_1["list_data_socket"]["user_permission_list"]["permissions"]["permissions"][number], keyof import("../api/api").Permission>]: never; })[] & { [K_734 in Exclude<keyof I_1["list_data_socket"]["user_permission_list"]["permissions"]["permissions"], keyof {
|
|
19900
19925
|
id?: string | undefined;
|
|
19901
19926
|
title?: string | undefined;
|
|
19902
19927
|
slug?: string | undefined;
|
|
@@ -19906,8 +19931,8 @@ export declare const Envelope: {
|
|
|
19906
19931
|
level?: number | undefined;
|
|
19907
19932
|
}[]>]: never; }) | undefined;
|
|
19908
19933
|
max_level_permission?: number | undefined;
|
|
19909
|
-
} & { [
|
|
19910
|
-
} & { [
|
|
19934
|
+
} & { [K_735 in Exclude<keyof I_1["list_data_socket"]["user_permission_list"]["permissions"], keyof PermissionList>]: never; }) | undefined;
|
|
19935
|
+
} & { [K_736 in Exclude<keyof I_1["list_data_socket"]["user_permission_list"], keyof UserPermissionInChannelListResponse>]: never; }) | undefined;
|
|
19911
19936
|
permission_role_req?: ({
|
|
19912
19937
|
role_id?: string | undefined;
|
|
19913
19938
|
channel_id?: string | undefined;
|
|
@@ -19916,7 +19941,7 @@ export declare const Envelope: {
|
|
|
19916
19941
|
role_id?: string | undefined;
|
|
19917
19942
|
channel_id?: string | undefined;
|
|
19918
19943
|
user_id?: string | undefined;
|
|
19919
|
-
} & { [
|
|
19944
|
+
} & { [K_737 in Exclude<keyof I_1["list_data_socket"]["permission_role_req"], keyof PermissionRoleChannelListEventRequest>]: never; }) | undefined;
|
|
19920
19945
|
permission_role_list?: ({
|
|
19921
19946
|
role_id?: string | undefined;
|
|
19922
19947
|
channel_id?: string | undefined;
|
|
@@ -19938,11 +19963,11 @@ export declare const Envelope: {
|
|
|
19938
19963
|
} & {
|
|
19939
19964
|
permission_id?: string | undefined;
|
|
19940
19965
|
active?: boolean | undefined;
|
|
19941
|
-
} & { [
|
|
19966
|
+
} & { [K_738 in Exclude<keyof I_1["list_data_socket"]["permission_role_list"]["permission_role_channel"][number], keyof import("../api/api").PermissionRoleChannel>]: never; })[] & { [K_739 in Exclude<keyof I_1["list_data_socket"]["permission_role_list"]["permission_role_channel"], keyof {
|
|
19942
19967
|
permission_id?: string | undefined;
|
|
19943
19968
|
active?: boolean | undefined;
|
|
19944
19969
|
}[]>]: never; }) | undefined;
|
|
19945
|
-
} & { [
|
|
19970
|
+
} & { [K_740 in Exclude<keyof I_1["list_data_socket"]["permission_role_list"], keyof PermissionRoleChannelListEventResponse>]: never; }) | undefined;
|
|
19946
19971
|
emoji_list?: ({
|
|
19947
19972
|
emoji_list?: {
|
|
19948
19973
|
id?: string | undefined;
|
|
@@ -19986,7 +20011,7 @@ export declare const Envelope: {
|
|
|
19986
20011
|
logo?: string | undefined;
|
|
19987
20012
|
clan_name?: string | undefined;
|
|
19988
20013
|
is_for_sale?: boolean | undefined;
|
|
19989
|
-
} & { [
|
|
20014
|
+
} & { [K_741 in Exclude<keyof I_1["list_data_socket"]["emoji_list"]["emoji_list"][number], keyof import("../api/api").ClanEmoji>]: never; })[] & { [K_742 in Exclude<keyof I_1["list_data_socket"]["emoji_list"]["emoji_list"], keyof {
|
|
19990
20015
|
id?: string | undefined;
|
|
19991
20016
|
src?: string | undefined;
|
|
19992
20017
|
shortname?: string | undefined;
|
|
@@ -19997,7 +20022,7 @@ export declare const Envelope: {
|
|
|
19997
20022
|
clan_name?: string | undefined;
|
|
19998
20023
|
is_for_sale?: boolean | undefined;
|
|
19999
20024
|
}[]>]: never; }) | undefined;
|
|
20000
|
-
} & { [
|
|
20025
|
+
} & { [K_743 in Exclude<keyof I_1["list_data_socket"]["emoji_list"], "emoji_list">]: never; }) | undefined;
|
|
20001
20026
|
list_friend_req?: ({
|
|
20002
20027
|
limit?: number | undefined;
|
|
20003
20028
|
state?: number | undefined;
|
|
@@ -20006,7 +20031,7 @@ export declare const Envelope: {
|
|
|
20006
20031
|
limit?: number | undefined;
|
|
20007
20032
|
state?: number | undefined;
|
|
20008
20033
|
cursor?: string | undefined;
|
|
20009
|
-
} & { [
|
|
20034
|
+
} & { [K_744 in Exclude<keyof I_1["list_data_socket"]["list_friend_req"], keyof ListFriendsRequest>]: never; }) | undefined;
|
|
20010
20035
|
friend_list?: ({
|
|
20011
20036
|
friends?: {
|
|
20012
20037
|
user?: {
|
|
@@ -20146,12 +20171,12 @@ export declare const Envelope: {
|
|
|
20146
20171
|
is_mobile?: boolean | undefined;
|
|
20147
20172
|
dob?: Date | undefined;
|
|
20148
20173
|
mezon_id?: string | undefined;
|
|
20149
|
-
list_nick_names?: (string[] & string[] & { [
|
|
20150
|
-
} & { [
|
|
20174
|
+
list_nick_names?: (string[] & string[] & { [K_745 in Exclude<keyof I_1["list_data_socket"]["friend_list"]["friends"][number]["user"]["list_nick_names"], keyof string[]>]: never; }) | undefined;
|
|
20175
|
+
} & { [K_746 in Exclude<keyof I_1["list_data_socket"]["friend_list"]["friends"][number]["user"], keyof import("../api/api").User>]: never; }) | undefined;
|
|
20151
20176
|
state?: number | undefined;
|
|
20152
20177
|
update_time?: Date | undefined;
|
|
20153
20178
|
source_id?: string | undefined;
|
|
20154
|
-
} & { [
|
|
20179
|
+
} & { [K_747 in Exclude<keyof I_1["list_data_socket"]["friend_list"]["friends"][number], keyof import("../api/api").Friend>]: never; })[] & { [K_748 in Exclude<keyof I_1["list_data_socket"]["friend_list"]["friends"], keyof {
|
|
20155
20180
|
user?: {
|
|
20156
20181
|
id?: string | undefined;
|
|
20157
20182
|
username?: string | undefined;
|
|
@@ -20182,12 +20207,12 @@ export declare const Envelope: {
|
|
|
20182
20207
|
source_id?: string | undefined;
|
|
20183
20208
|
}[]>]: never; }) | undefined;
|
|
20184
20209
|
cursor?: string | undefined;
|
|
20185
|
-
} & { [
|
|
20210
|
+
} & { [K_749 in Exclude<keyof I_1["list_data_socket"]["friend_list"], keyof FriendList>]: never; }) | undefined;
|
|
20186
20211
|
list_apps_req?: ({
|
|
20187
20212
|
clan_id?: string | undefined;
|
|
20188
20213
|
} & {
|
|
20189
20214
|
clan_id?: string | undefined;
|
|
20190
|
-
} & { [
|
|
20215
|
+
} & { [K_750 in Exclude<keyof I_1["list_data_socket"]["list_apps_req"], "clan_id">]: never; }) | undefined;
|
|
20191
20216
|
channel_apps_list?: ({
|
|
20192
20217
|
channel_apps?: {
|
|
20193
20218
|
id?: string | undefined;
|
|
@@ -20215,14 +20240,14 @@ export declare const Envelope: {
|
|
|
20215
20240
|
channel_id?: string | undefined;
|
|
20216
20241
|
app_id?: string | undefined;
|
|
20217
20242
|
app_url?: string | undefined;
|
|
20218
|
-
} & { [
|
|
20243
|
+
} & { [K_751 in Exclude<keyof I_1["list_data_socket"]["channel_apps_list"]["channel_apps"][number], keyof import("../api/api").ChannelAppResponse>]: never; })[] & { [K_752 in Exclude<keyof I_1["list_data_socket"]["channel_apps_list"]["channel_apps"], keyof {
|
|
20219
20244
|
id?: string | undefined;
|
|
20220
20245
|
clan_id?: string | undefined;
|
|
20221
20246
|
channel_id?: string | undefined;
|
|
20222
20247
|
app_id?: string | undefined;
|
|
20223
20248
|
app_url?: string | undefined;
|
|
20224
20249
|
}[]>]: never; }) | undefined;
|
|
20225
|
-
} & { [
|
|
20250
|
+
} & { [K_753 in Exclude<keyof I_1["list_data_socket"]["channel_apps_list"], "channel_apps">]: never; }) | undefined;
|
|
20226
20251
|
user_activity_list?: ({
|
|
20227
20252
|
activities?: {
|
|
20228
20253
|
user_id?: string | undefined;
|
|
@@ -20262,7 +20287,7 @@ export declare const Envelope: {
|
|
|
20262
20287
|
end_time?: Date | undefined;
|
|
20263
20288
|
application_id?: string | undefined;
|
|
20264
20289
|
status?: number | undefined;
|
|
20265
|
-
} & { [
|
|
20290
|
+
} & { [K_754 in Exclude<keyof I_1["list_data_socket"]["user_activity_list"]["activities"][number], keyof UserActivity>]: never; })[] & { [K_755 in Exclude<keyof I_1["list_data_socket"]["user_activity_list"]["activities"], keyof {
|
|
20266
20291
|
user_id?: string | undefined;
|
|
20267
20292
|
activity_name?: string | undefined;
|
|
20268
20293
|
activity_type?: number | undefined;
|
|
@@ -20272,12 +20297,12 @@ export declare const Envelope: {
|
|
|
20272
20297
|
application_id?: string | undefined;
|
|
20273
20298
|
status?: number | undefined;
|
|
20274
20299
|
}[]>]: never; }) | undefined;
|
|
20275
|
-
} & { [
|
|
20300
|
+
} & { [K_756 in Exclude<keyof I_1["list_data_socket"]["user_activity_list"], "activities">]: never; }) | undefined;
|
|
20276
20301
|
list_clan_user_req?: ({
|
|
20277
20302
|
clan_id?: string | undefined;
|
|
20278
20303
|
} & {
|
|
20279
20304
|
clan_id?: string | undefined;
|
|
20280
|
-
} & { [
|
|
20305
|
+
} & { [K_757 in Exclude<keyof I_1["list_data_socket"]["list_clan_user_req"], "clan_id">]: never; }) | undefined;
|
|
20281
20306
|
clan_user_list?: ({
|
|
20282
20307
|
clan_users?: {
|
|
20283
20308
|
user?: {
|
|
@@ -20421,13 +20446,13 @@ export declare const Envelope: {
|
|
|
20421
20446
|
is_mobile?: boolean | undefined;
|
|
20422
20447
|
dob?: Date | undefined;
|
|
20423
20448
|
mezon_id?: string | undefined;
|
|
20424
|
-
list_nick_names?: (string[] & string[] & { [
|
|
20425
|
-
} & { [
|
|
20426
|
-
role_id?: (string[] & string[] & { [
|
|
20449
|
+
list_nick_names?: (string[] & string[] & { [K_758 in Exclude<keyof I_1["list_data_socket"]["clan_user_list"]["clan_users"][number]["user"]["list_nick_names"], keyof string[]>]: never; }) | undefined;
|
|
20450
|
+
} & { [K_759 in Exclude<keyof I_1["list_data_socket"]["clan_user_list"]["clan_users"][number]["user"], keyof import("../api/api").User>]: never; }) | undefined;
|
|
20451
|
+
role_id?: (string[] & string[] & { [K_760 in Exclude<keyof I_1["list_data_socket"]["clan_user_list"]["clan_users"][number]["role_id"], keyof string[]>]: never; }) | undefined;
|
|
20427
20452
|
clan_nick?: string | undefined;
|
|
20428
20453
|
clan_avatar?: string | undefined;
|
|
20429
20454
|
clan_id?: string | undefined;
|
|
20430
|
-
} & { [
|
|
20455
|
+
} & { [K_761 in Exclude<keyof I_1["list_data_socket"]["clan_user_list"]["clan_users"][number], keyof import("../api/api").ClanUserList_ClanUser>]: never; })[] & { [K_762 in Exclude<keyof I_1["list_data_socket"]["clan_user_list"]["clan_users"], keyof {
|
|
20431
20456
|
user?: {
|
|
20432
20457
|
id?: string | undefined;
|
|
20433
20458
|
username?: string | undefined;
|
|
@@ -20460,12 +20485,12 @@ export declare const Envelope: {
|
|
|
20460
20485
|
}[]>]: never; }) | undefined;
|
|
20461
20486
|
cursor?: string | undefined;
|
|
20462
20487
|
clan_id?: string | undefined;
|
|
20463
|
-
} & { [
|
|
20488
|
+
} & { [K_763 in Exclude<keyof I_1["list_data_socket"]["clan_user_list"], keyof ClanUserList>]: never; }) | undefined;
|
|
20464
20489
|
list_event_req?: ({
|
|
20465
20490
|
clan_id?: string | undefined;
|
|
20466
20491
|
} & {
|
|
20467
20492
|
clan_id?: string | undefined;
|
|
20468
|
-
} & { [
|
|
20493
|
+
} & { [K_764 in Exclude<keyof I_1["list_data_socket"]["list_event_req"], "clan_id">]: never; }) | undefined;
|
|
20469
20494
|
event_list?: ({
|
|
20470
20495
|
events?: {
|
|
20471
20496
|
id?: string | undefined;
|
|
@@ -20563,7 +20588,7 @@ export declare const Envelope: {
|
|
|
20563
20588
|
address?: string | undefined;
|
|
20564
20589
|
start_time?: Date | undefined;
|
|
20565
20590
|
end_time?: Date | undefined;
|
|
20566
|
-
user_ids?: (string[] & string[] & { [
|
|
20591
|
+
user_ids?: (string[] & string[] & { [K_765 in Exclude<keyof I_1["list_data_socket"]["event_list"]["events"][number]["user_ids"], keyof string[]>]: never; }) | undefined;
|
|
20567
20592
|
create_time?: Date | undefined;
|
|
20568
20593
|
max_permission?: number | undefined;
|
|
20569
20594
|
channel_id?: string | undefined;
|
|
@@ -20582,8 +20607,8 @@ export declare const Envelope: {
|
|
|
20582
20607
|
external_link?: string | undefined;
|
|
20583
20608
|
creator_id?: string | undefined;
|
|
20584
20609
|
event_id?: string | undefined;
|
|
20585
|
-
} & { [
|
|
20586
|
-
} & { [
|
|
20610
|
+
} & { [K_766 in Exclude<keyof I_1["list_data_socket"]["event_list"]["events"][number]["meet_room"], keyof import("../api/api").GenerateMezonMeetResponse>]: never; }) | undefined;
|
|
20611
|
+
} & { [K_767 in Exclude<keyof I_1["list_data_socket"]["event_list"]["events"][number], keyof import("../api/api").EventManagement>]: never; })[] & { [K_768 in Exclude<keyof I_1["list_data_socket"]["event_list"]["events"], keyof {
|
|
20587
20612
|
id?: string | undefined;
|
|
20588
20613
|
title?: string | undefined;
|
|
20589
20614
|
logo?: string | undefined;
|
|
@@ -20611,7 +20636,7 @@ export declare const Envelope: {
|
|
|
20611
20636
|
event_id?: string | undefined;
|
|
20612
20637
|
} | undefined;
|
|
20613
20638
|
}[]>]: never; }) | undefined;
|
|
20614
|
-
} & { [
|
|
20639
|
+
} & { [K_769 in Exclude<keyof I_1["list_data_socket"]["event_list"], "events">]: never; }) | undefined;
|
|
20615
20640
|
list_category_req?: ({
|
|
20616
20641
|
creator_id?: string | undefined;
|
|
20617
20642
|
clan_id?: string | undefined;
|
|
@@ -20624,7 +20649,7 @@ export declare const Envelope: {
|
|
|
20624
20649
|
category_name?: string | undefined;
|
|
20625
20650
|
category_id?: string | undefined;
|
|
20626
20651
|
category_order?: number | undefined;
|
|
20627
|
-
} & { [
|
|
20652
|
+
} & { [K_770 in Exclude<keyof I_1["list_data_socket"]["list_category_req"], keyof CategoryDesc>]: never; }) | undefined;
|
|
20628
20653
|
category_list?: ({
|
|
20629
20654
|
categorydesc?: {
|
|
20630
20655
|
creator_id?: string | undefined;
|
|
@@ -20652,14 +20677,14 @@ export declare const Envelope: {
|
|
|
20652
20677
|
category_name?: string | undefined;
|
|
20653
20678
|
category_id?: string | undefined;
|
|
20654
20679
|
category_order?: number | undefined;
|
|
20655
|
-
} & { [
|
|
20680
|
+
} & { [K_771 in Exclude<keyof I_1["list_data_socket"]["category_list"]["categorydesc"][number], keyof CategoryDesc>]: never; })[] & { [K_772 in Exclude<keyof I_1["list_data_socket"]["category_list"]["categorydesc"], keyof {
|
|
20656
20681
|
creator_id?: string | undefined;
|
|
20657
20682
|
clan_id?: string | undefined;
|
|
20658
20683
|
category_name?: string | undefined;
|
|
20659
20684
|
category_id?: string | undefined;
|
|
20660
20685
|
category_order?: number | undefined;
|
|
20661
20686
|
}[]>]: never; }) | undefined;
|
|
20662
|
-
} & { [
|
|
20687
|
+
} & { [K_773 in Exclude<keyof I_1["list_data_socket"]["category_list"], "categorydesc">]: never; }) | undefined;
|
|
20663
20688
|
stream_user_list?: ({
|
|
20664
20689
|
streaming_channel_users?: {
|
|
20665
20690
|
id?: string | undefined;
|
|
@@ -20683,14 +20708,14 @@ export declare const Envelope: {
|
|
|
20683
20708
|
user_id?: string | undefined;
|
|
20684
20709
|
channel_id?: string | undefined;
|
|
20685
20710
|
participant?: string | undefined;
|
|
20686
|
-
} & { [
|
|
20711
|
+
} & { [K_774 in Exclude<keyof I_1["list_data_socket"]["stream_user_list"]["streaming_channel_users"][number], keyof import("../api/api").StreamingChannelUser>]: never; })[] & { [K_775 in Exclude<keyof I_1["list_data_socket"]["stream_user_list"]["streaming_channel_users"], keyof {
|
|
20687
20712
|
id?: string | undefined;
|
|
20688
20713
|
user_id?: string | undefined;
|
|
20689
20714
|
channel_id?: string | undefined;
|
|
20690
20715
|
participant?: string | undefined;
|
|
20691
20716
|
}[]>]: never; }) | undefined;
|
|
20692
|
-
} & { [
|
|
20693
|
-
} & { [
|
|
20717
|
+
} & { [K_776 in Exclude<keyof I_1["list_data_socket"]["stream_user_list"], "streaming_channel_users">]: never; }) | undefined;
|
|
20718
|
+
} & { [K_777 in Exclude<keyof I_1["list_data_socket"], keyof ListDataSocket>]: never; }) | undefined;
|
|
20694
20719
|
quick_menu_event?: ({
|
|
20695
20720
|
menu_name?: string | undefined;
|
|
20696
20721
|
message?: {
|
|
@@ -20811,7 +20836,7 @@ export declare const Envelope: {
|
|
|
20811
20836
|
create_time?: Date | undefined;
|
|
20812
20837
|
s?: number | undefined;
|
|
20813
20838
|
e?: number | undefined;
|
|
20814
|
-
} & { [
|
|
20839
|
+
} & { [K_778 in Exclude<keyof I_1["quick_menu_event"]["message"]["mentions"][number], keyof MessageMention>]: never; })[] & { [K_779 in Exclude<keyof I_1["quick_menu_event"]["message"]["mentions"], keyof {
|
|
20815
20840
|
id?: string | undefined;
|
|
20816
20841
|
user_id?: string | undefined;
|
|
20817
20842
|
username?: string | undefined;
|
|
@@ -20845,7 +20870,7 @@ export declare const Envelope: {
|
|
|
20845
20870
|
width?: number | undefined;
|
|
20846
20871
|
height?: number | undefined;
|
|
20847
20872
|
thumbnail?: string | undefined;
|
|
20848
|
-
} & { [
|
|
20873
|
+
} & { [K_780 in Exclude<keyof I_1["quick_menu_event"]["message"]["attachments"][number], keyof MessageAttachment>]: never; })[] & { [K_781 in Exclude<keyof I_1["quick_menu_event"]["message"]["attachments"], keyof {
|
|
20849
20874
|
filename?: string | undefined;
|
|
20850
20875
|
size?: number | undefined;
|
|
20851
20876
|
url?: string | undefined;
|
|
@@ -20887,7 +20912,7 @@ export declare const Envelope: {
|
|
|
20887
20912
|
mesages_sender_avatar?: string | undefined;
|
|
20888
20913
|
message_sender_clan_nick?: string | undefined;
|
|
20889
20914
|
message_sender_display_name?: string | undefined;
|
|
20890
|
-
} & { [
|
|
20915
|
+
} & { [K_782 in Exclude<keyof I_1["quick_menu_event"]["message"]["references"][number], keyof MessageRef>]: never; })[] & { [K_783 in Exclude<keyof I_1["quick_menu_event"]["message"]["references"], keyof {
|
|
20891
20916
|
message_id?: string | undefined;
|
|
20892
20917
|
message_ref_id?: string | undefined;
|
|
20893
20918
|
content?: string | undefined;
|
|
@@ -20906,9 +20931,14 @@ export declare const Envelope: {
|
|
|
20906
20931
|
is_public?: boolean | undefined;
|
|
20907
20932
|
code?: number | undefined;
|
|
20908
20933
|
topic_id?: string | undefined;
|
|
20909
|
-
} & { [
|
|
20910
|
-
} & { [
|
|
20911
|
-
|
|
20934
|
+
} & { [K_784 in Exclude<keyof I_1["quick_menu_event"]["message"], keyof ChannelMessageSend>]: never; }) | undefined;
|
|
20935
|
+
} & { [K_785 in Exclude<keyof I_1["quick_menu_event"], keyof QuickMenuDataEvent>]: never; }) | undefined;
|
|
20936
|
+
un_block_friend?: ({
|
|
20937
|
+
user_id?: string | undefined;
|
|
20938
|
+
} & {
|
|
20939
|
+
user_id?: string | undefined;
|
|
20940
|
+
} & { [K_786 in Exclude<keyof I_1["un_block_friend"], "user_id">]: never; }) | undefined;
|
|
20941
|
+
} & { [K_787 in Exclude<keyof I_1, keyof Envelope>]: never; }>(object: I_1): Envelope;
|
|
20912
20942
|
};
|
|
20913
20943
|
export declare const FollowEvent: {
|
|
20914
20944
|
encode(_: FollowEvent, writer?: _m0.Writer): _m0.Writer;
|
|
@@ -23078,6 +23108,7 @@ export declare const ChannelMessageUpdate: {
|
|
|
23078
23108
|
hide_editted?: boolean | undefined;
|
|
23079
23109
|
topic_id?: string | undefined;
|
|
23080
23110
|
is_update_msg_topic?: boolean | undefined;
|
|
23111
|
+
old_mentions?: string | undefined;
|
|
23081
23112
|
} & {
|
|
23082
23113
|
clan_id?: string | undefined;
|
|
23083
23114
|
channel_id?: string | undefined;
|
|
@@ -23158,6 +23189,7 @@ export declare const ChannelMessageUpdate: {
|
|
|
23158
23189
|
hide_editted?: boolean | undefined;
|
|
23159
23190
|
topic_id?: string | undefined;
|
|
23160
23191
|
is_update_msg_topic?: boolean | undefined;
|
|
23192
|
+
old_mentions?: string | undefined;
|
|
23161
23193
|
} & { [K_4 in Exclude<keyof I, keyof ChannelMessageUpdate>]: never; }>(base?: I | undefined): ChannelMessageUpdate;
|
|
23162
23194
|
fromPartial<I_1 extends {
|
|
23163
23195
|
clan_id?: string | undefined;
|
|
@@ -23188,6 +23220,7 @@ export declare const ChannelMessageUpdate: {
|
|
|
23188
23220
|
hide_editted?: boolean | undefined;
|
|
23189
23221
|
topic_id?: string | undefined;
|
|
23190
23222
|
is_update_msg_topic?: boolean | undefined;
|
|
23223
|
+
old_mentions?: string | undefined;
|
|
23191
23224
|
} & {
|
|
23192
23225
|
clan_id?: string | undefined;
|
|
23193
23226
|
channel_id?: string | undefined;
|
|
@@ -23268,6 +23301,7 @@ export declare const ChannelMessageUpdate: {
|
|
|
23268
23301
|
hide_editted?: boolean | undefined;
|
|
23269
23302
|
topic_id?: string | undefined;
|
|
23270
23303
|
is_update_msg_topic?: boolean | undefined;
|
|
23304
|
+
old_mentions?: string | undefined;
|
|
23271
23305
|
} & { [K_9 in Exclude<keyof I_1, keyof ChannelMessageUpdate>]: never; }>(object: I_1): ChannelMessageUpdate;
|
|
23272
23306
|
};
|
|
23273
23307
|
export declare const ChannelMessageRemove: {
|
|
@@ -24432,6 +24466,22 @@ export declare const BlockFriend: {
|
|
|
24432
24466
|
user_id?: string | undefined;
|
|
24433
24467
|
} & { [K_1 in Exclude<keyof I_1, "user_id">]: never; }>(object: I_1): BlockFriend;
|
|
24434
24468
|
};
|
|
24469
|
+
export declare const UnblockFriend: {
|
|
24470
|
+
encode(message: UnblockFriend, writer?: _m0.Writer): _m0.Writer;
|
|
24471
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): UnblockFriend;
|
|
24472
|
+
fromJSON(object: any): UnblockFriend;
|
|
24473
|
+
toJSON(message: UnblockFriend): unknown;
|
|
24474
|
+
create<I extends {
|
|
24475
|
+
user_id?: string | undefined;
|
|
24476
|
+
} & {
|
|
24477
|
+
user_id?: string | undefined;
|
|
24478
|
+
} & { [K in Exclude<keyof I, "user_id">]: never; }>(base?: I | undefined): UnblockFriend;
|
|
24479
|
+
fromPartial<I_1 extends {
|
|
24480
|
+
user_id?: string | undefined;
|
|
24481
|
+
} & {
|
|
24482
|
+
user_id?: string | undefined;
|
|
24483
|
+
} & { [K_1 in Exclude<keyof I_1, "user_id">]: never; }>(object: I_1): UnblockFriend;
|
|
24484
|
+
};
|
|
24435
24485
|
export declare const Ping: {
|
|
24436
24486
|
encode(_: Ping, writer?: _m0.Writer): _m0.Writer;
|
|
24437
24487
|
decode(input: _m0.Reader | Uint8Array, length?: number): Ping;
|