mezon-js-protobuf 1.8.30 → 1.8.31
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 +54 -0
- package/dist/mezon-js-protobuf/api/api.d.ts +48 -0
- package/dist/mezon-js-protobuf/rtapi/realtime.d.ts +470 -333
- package/dist/mezon-js-protobuf.cjs.js +146 -5
- package/dist/mezon-js-protobuf.esm.mjs +146 -5
- package/package.json +1 -1
- package/rtapi/realtime.ts +121 -1
|
@@ -174,6 +174,8 @@ export interface Envelope {
|
|
|
174
174
|
un_block_friend?: UnblockFriend | undefined;
|
|
175
175
|
/** mezon meet participant event */
|
|
176
176
|
meet_participant_event?: MeetParticipantEvent | undefined;
|
|
177
|
+
/** tranfer ownership event */
|
|
178
|
+
transfer_ownership_event?: TransferOwnershipEvent | undefined;
|
|
177
179
|
}
|
|
178
180
|
export interface FollowEvent {
|
|
179
181
|
}
|
|
@@ -1247,6 +1249,11 @@ export interface MeetParticipantEvent {
|
|
|
1247
1249
|
clan_id: string;
|
|
1248
1250
|
action: number;
|
|
1249
1251
|
}
|
|
1252
|
+
export interface TransferOwnershipEvent {
|
|
1253
|
+
clan_id: string;
|
|
1254
|
+
prev_owner: string;
|
|
1255
|
+
curr_owner: string;
|
|
1256
|
+
}
|
|
1250
1257
|
export declare const Envelope: {
|
|
1251
1258
|
encode(message: Envelope, writer?: _m0.Writer): _m0.Writer;
|
|
1252
1259
|
decode(input: _m0.Reader | Uint8Array, length?: number): Envelope;
|
|
@@ -2349,6 +2356,9 @@ export declare const Envelope: {
|
|
|
2349
2356
|
clan_order?: number | undefined;
|
|
2350
2357
|
is_community?: boolean | undefined;
|
|
2351
2358
|
community_banner?: string | undefined;
|
|
2359
|
+
description?: string | undefined;
|
|
2360
|
+
about?: string | undefined;
|
|
2361
|
+
short_url?: string | undefined;
|
|
2352
2362
|
}[] | undefined;
|
|
2353
2363
|
} | undefined;
|
|
2354
2364
|
list_thread_req?: {
|
|
@@ -3243,6 +3253,11 @@ export declare const Envelope: {
|
|
|
3243
3253
|
clan_id?: string | undefined;
|
|
3244
3254
|
action?: number | undefined;
|
|
3245
3255
|
} | undefined;
|
|
3256
|
+
transfer_ownership_event?: {
|
|
3257
|
+
clan_id?: string | undefined;
|
|
3258
|
+
prev_owner?: string | undefined;
|
|
3259
|
+
curr_owner?: string | undefined;
|
|
3260
|
+
} | undefined;
|
|
3246
3261
|
} & {
|
|
3247
3262
|
cid?: string | undefined;
|
|
3248
3263
|
channel?: ({
|
|
@@ -6538,6 +6553,9 @@ export declare const Envelope: {
|
|
|
6538
6553
|
clan_order?: number | undefined;
|
|
6539
6554
|
is_community?: boolean | undefined;
|
|
6540
6555
|
community_banner?: string | undefined;
|
|
6556
|
+
description?: string | undefined;
|
|
6557
|
+
about?: string | undefined;
|
|
6558
|
+
short_url?: string | undefined;
|
|
6541
6559
|
}[] | undefined;
|
|
6542
6560
|
} | undefined;
|
|
6543
6561
|
list_thread_req?: {
|
|
@@ -7401,6 +7419,9 @@ export declare const Envelope: {
|
|
|
7401
7419
|
clan_order?: number | undefined;
|
|
7402
7420
|
is_community?: boolean | undefined;
|
|
7403
7421
|
community_banner?: string | undefined;
|
|
7422
|
+
description?: string | undefined;
|
|
7423
|
+
about?: string | undefined;
|
|
7424
|
+
short_url?: string | undefined;
|
|
7404
7425
|
}[] | undefined;
|
|
7405
7426
|
} & {
|
|
7406
7427
|
clandesc?: ({
|
|
@@ -7417,6 +7438,9 @@ export declare const Envelope: {
|
|
|
7417
7438
|
clan_order?: number | undefined;
|
|
7418
7439
|
is_community?: boolean | undefined;
|
|
7419
7440
|
community_banner?: string | undefined;
|
|
7441
|
+
description?: string | undefined;
|
|
7442
|
+
about?: string | undefined;
|
|
7443
|
+
short_url?: string | undefined;
|
|
7420
7444
|
}[] & ({
|
|
7421
7445
|
creator_id?: string | undefined;
|
|
7422
7446
|
clan_name?: string | undefined;
|
|
@@ -7431,6 +7455,9 @@ export declare const Envelope: {
|
|
|
7431
7455
|
clan_order?: number | undefined;
|
|
7432
7456
|
is_community?: boolean | undefined;
|
|
7433
7457
|
community_banner?: string | undefined;
|
|
7458
|
+
description?: string | undefined;
|
|
7459
|
+
about?: string | undefined;
|
|
7460
|
+
short_url?: string | undefined;
|
|
7434
7461
|
} & {
|
|
7435
7462
|
creator_id?: string | undefined;
|
|
7436
7463
|
clan_name?: string | undefined;
|
|
@@ -7445,6 +7472,9 @@ export declare const Envelope: {
|
|
|
7445
7472
|
clan_order?: number | undefined;
|
|
7446
7473
|
is_community?: boolean | undefined;
|
|
7447
7474
|
community_banner?: string | undefined;
|
|
7475
|
+
description?: string | undefined;
|
|
7476
|
+
about?: string | undefined;
|
|
7477
|
+
short_url?: string | undefined;
|
|
7448
7478
|
} & { [K_197 in Exclude<keyof I["list_data_socket"]["clan_desc_list"]["clandesc"][number], keyof import("../api/api").ClanDesc>]: never; })[] & { [K_198 in Exclude<keyof I["list_data_socket"]["clan_desc_list"]["clandesc"], keyof {
|
|
7449
7479
|
creator_id?: string | undefined;
|
|
7450
7480
|
clan_name?: string | undefined;
|
|
@@ -7459,6 +7489,9 @@ export declare const Envelope: {
|
|
|
7459
7489
|
clan_order?: number | undefined;
|
|
7460
7490
|
is_community?: boolean | undefined;
|
|
7461
7491
|
community_banner?: string | undefined;
|
|
7492
|
+
description?: string | undefined;
|
|
7493
|
+
about?: string | undefined;
|
|
7494
|
+
short_url?: string | undefined;
|
|
7462
7495
|
}[]>]: never; }) | undefined;
|
|
7463
7496
|
} & { [K_199 in Exclude<keyof I["list_data_socket"]["clan_desc_list"], "clandesc">]: never; }) | undefined;
|
|
7464
7497
|
list_thread_req?: ({
|
|
@@ -11129,7 +11162,16 @@ export declare const Envelope: {
|
|
|
11129
11162
|
clan_id?: string | undefined;
|
|
11130
11163
|
action?: number | undefined;
|
|
11131
11164
|
} & { [K_393 in Exclude<keyof I["meet_participant_event"], keyof MeetParticipantEvent>]: never; }) | undefined;
|
|
11132
|
-
|
|
11165
|
+
transfer_ownership_event?: ({
|
|
11166
|
+
clan_id?: string | undefined;
|
|
11167
|
+
prev_owner?: string | undefined;
|
|
11168
|
+
curr_owner?: string | undefined;
|
|
11169
|
+
} & {
|
|
11170
|
+
clan_id?: string | undefined;
|
|
11171
|
+
prev_owner?: string | undefined;
|
|
11172
|
+
curr_owner?: string | undefined;
|
|
11173
|
+
} & { [K_394 in Exclude<keyof I["transfer_ownership_event"], keyof TransferOwnershipEvent>]: never; }) | undefined;
|
|
11174
|
+
} & { [K_395 in Exclude<keyof I, keyof Envelope>]: never; }>(base?: I | undefined): Envelope;
|
|
11133
11175
|
fromPartial<I_1 extends {
|
|
11134
11176
|
cid?: string | undefined;
|
|
11135
11177
|
channel?: {
|
|
@@ -12227,6 +12269,9 @@ export declare const Envelope: {
|
|
|
12227
12269
|
clan_order?: number | undefined;
|
|
12228
12270
|
is_community?: boolean | undefined;
|
|
12229
12271
|
community_banner?: string | undefined;
|
|
12272
|
+
description?: string | undefined;
|
|
12273
|
+
about?: string | undefined;
|
|
12274
|
+
short_url?: string | undefined;
|
|
12230
12275
|
}[] | undefined;
|
|
12231
12276
|
} | undefined;
|
|
12232
12277
|
list_thread_req?: {
|
|
@@ -13121,6 +13166,11 @@ export declare const Envelope: {
|
|
|
13121
13166
|
clan_id?: string | undefined;
|
|
13122
13167
|
action?: number | undefined;
|
|
13123
13168
|
} | undefined;
|
|
13169
|
+
transfer_ownership_event?: {
|
|
13170
|
+
clan_id?: string | undefined;
|
|
13171
|
+
prev_owner?: string | undefined;
|
|
13172
|
+
curr_owner?: string | undefined;
|
|
13173
|
+
} | undefined;
|
|
13124
13174
|
} & {
|
|
13125
13175
|
cid?: string | undefined;
|
|
13126
13176
|
channel?: ({
|
|
@@ -13172,7 +13222,7 @@ export declare const Envelope: {
|
|
|
13172
13222
|
status?: string | undefined;
|
|
13173
13223
|
is_mobile?: boolean | undefined;
|
|
13174
13224
|
metadata?: string | undefined;
|
|
13175
|
-
} & { [
|
|
13225
|
+
} & { [K_396 in Exclude<keyof I_1["channel"]["presences"][number], keyof UserPresence>]: never; })[] & { [K_397 in Exclude<keyof I_1["channel"]["presences"], keyof {
|
|
13176
13226
|
user_id?: string | undefined;
|
|
13177
13227
|
session_id?: string | undefined;
|
|
13178
13228
|
username?: string | undefined;
|
|
@@ -13197,16 +13247,16 @@ export declare const Envelope: {
|
|
|
13197
13247
|
status?: string | undefined;
|
|
13198
13248
|
is_mobile?: boolean | undefined;
|
|
13199
13249
|
metadata?: string | undefined;
|
|
13200
|
-
} & { [
|
|
13250
|
+
} & { [K_398 in Exclude<keyof I_1["channel"]["self"], keyof UserPresence>]: never; }) | undefined;
|
|
13201
13251
|
chanel_label?: string | undefined;
|
|
13202
13252
|
clan_logo?: string | undefined;
|
|
13203
13253
|
category_name?: string | undefined;
|
|
13204
|
-
} & { [
|
|
13254
|
+
} & { [K_399 in Exclude<keyof I_1["channel"], keyof Channel>]: never; }) | undefined;
|
|
13205
13255
|
clan_join?: ({
|
|
13206
13256
|
clan_id?: string | undefined;
|
|
13207
13257
|
} & {
|
|
13208
13258
|
clan_id?: string | undefined;
|
|
13209
|
-
} & { [
|
|
13259
|
+
} & { [K_400 in Exclude<keyof I_1["clan_join"], "clan_id">]: never; }) | undefined;
|
|
13210
13260
|
channel_join?: ({
|
|
13211
13261
|
clan_id?: string | undefined;
|
|
13212
13262
|
channel_id?: string | undefined;
|
|
@@ -13217,7 +13267,7 @@ export declare const Envelope: {
|
|
|
13217
13267
|
channel_id?: string | undefined;
|
|
13218
13268
|
channel_type?: number | undefined;
|
|
13219
13269
|
is_public?: boolean | undefined;
|
|
13220
|
-
} & { [
|
|
13270
|
+
} & { [K_401 in Exclude<keyof I_1["channel_join"], keyof ChannelJoin>]: never; }) | undefined;
|
|
13221
13271
|
channel_leave?: ({
|
|
13222
13272
|
clan_id?: string | undefined;
|
|
13223
13273
|
channel_id?: string | undefined;
|
|
@@ -13228,7 +13278,7 @@ export declare const Envelope: {
|
|
|
13228
13278
|
channel_id?: string | undefined;
|
|
13229
13279
|
channel_type?: number | undefined;
|
|
13230
13280
|
is_public?: boolean | undefined;
|
|
13231
|
-
} & { [
|
|
13281
|
+
} & { [K_402 in Exclude<keyof I_1["channel_leave"], keyof ChannelLeave>]: never; }) | undefined;
|
|
13232
13282
|
channel_message?: ({
|
|
13233
13283
|
clan_id?: string | undefined;
|
|
13234
13284
|
channel_id?: string | undefined;
|
|
@@ -13285,7 +13335,7 @@ export declare const Envelope: {
|
|
|
13285
13335
|
hide_editted?: boolean | undefined;
|
|
13286
13336
|
is_public?: boolean | undefined;
|
|
13287
13337
|
topic_id?: string | undefined;
|
|
13288
|
-
} & { [
|
|
13338
|
+
} & { [K_403 in Exclude<keyof I_1["channel_message"], keyof ChannelMessage>]: never; }) | undefined;
|
|
13289
13339
|
channel_message_ack?: ({
|
|
13290
13340
|
channel_id?: string | undefined;
|
|
13291
13341
|
message_id?: string | undefined;
|
|
@@ -13306,7 +13356,7 @@ export declare const Envelope: {
|
|
|
13306
13356
|
persistent?: boolean | undefined;
|
|
13307
13357
|
clan_logo?: string | undefined;
|
|
13308
13358
|
category_name?: string | undefined;
|
|
13309
|
-
} & { [
|
|
13359
|
+
} & { [K_404 in Exclude<keyof I_1["channel_message_ack"], keyof ChannelMessageAck>]: never; }) | undefined;
|
|
13310
13360
|
channel_message_send?: ({
|
|
13311
13361
|
clan_id?: string | undefined;
|
|
13312
13362
|
channel_id?: string | undefined;
|
|
@@ -13380,7 +13430,7 @@ export declare const Envelope: {
|
|
|
13380
13430
|
create_time?: Date | undefined;
|
|
13381
13431
|
s?: number | undefined;
|
|
13382
13432
|
e?: number | undefined;
|
|
13383
|
-
} & { [
|
|
13433
|
+
} & { [K_405 in Exclude<keyof I_1["channel_message_send"]["mentions"][number], keyof MessageMention>]: never; })[] & { [K_406 in Exclude<keyof I_1["channel_message_send"]["mentions"], keyof {
|
|
13384
13434
|
id?: string | undefined;
|
|
13385
13435
|
user_id?: string | undefined;
|
|
13386
13436
|
username?: string | undefined;
|
|
@@ -13414,7 +13464,7 @@ export declare const Envelope: {
|
|
|
13414
13464
|
width?: number | undefined;
|
|
13415
13465
|
height?: number | undefined;
|
|
13416
13466
|
thumbnail?: string | undefined;
|
|
13417
|
-
} & { [
|
|
13467
|
+
} & { [K_407 in Exclude<keyof I_1["channel_message_send"]["attachments"][number], keyof MessageAttachment>]: never; })[] & { [K_408 in Exclude<keyof I_1["channel_message_send"]["attachments"], keyof {
|
|
13418
13468
|
filename?: string | undefined;
|
|
13419
13469
|
size?: number | undefined;
|
|
13420
13470
|
url?: string | undefined;
|
|
@@ -13456,7 +13506,7 @@ export declare const Envelope: {
|
|
|
13456
13506
|
mesages_sender_avatar?: string | undefined;
|
|
13457
13507
|
message_sender_clan_nick?: string | undefined;
|
|
13458
13508
|
message_sender_display_name?: string | undefined;
|
|
13459
|
-
} & { [
|
|
13509
|
+
} & { [K_409 in Exclude<keyof I_1["channel_message_send"]["references"][number], keyof MessageRef>]: never; })[] & { [K_410 in Exclude<keyof I_1["channel_message_send"]["references"], keyof {
|
|
13460
13510
|
message_id?: string | undefined;
|
|
13461
13511
|
message_ref_id?: string | undefined;
|
|
13462
13512
|
content?: string | undefined;
|
|
@@ -13475,7 +13525,7 @@ export declare const Envelope: {
|
|
|
13475
13525
|
is_public?: boolean | undefined;
|
|
13476
13526
|
code?: number | undefined;
|
|
13477
13527
|
topic_id?: string | undefined;
|
|
13478
|
-
} & { [
|
|
13528
|
+
} & { [K_411 in Exclude<keyof I_1["channel_message_send"], keyof ChannelMessageSend>]: never; }) | undefined;
|
|
13479
13529
|
channel_message_update?: ({
|
|
13480
13530
|
clan_id?: string | undefined;
|
|
13481
13531
|
channel_id?: string | undefined;
|
|
@@ -13538,7 +13588,7 @@ export declare const Envelope: {
|
|
|
13538
13588
|
create_time?: Date | undefined;
|
|
13539
13589
|
s?: number | undefined;
|
|
13540
13590
|
e?: number | undefined;
|
|
13541
|
-
} & { [
|
|
13591
|
+
} & { [K_412 in Exclude<keyof I_1["channel_message_update"]["mentions"][number], keyof MessageMention>]: never; })[] & { [K_413 in Exclude<keyof I_1["channel_message_update"]["mentions"], keyof {
|
|
13542
13592
|
id?: string | undefined;
|
|
13543
13593
|
user_id?: string | undefined;
|
|
13544
13594
|
username?: string | undefined;
|
|
@@ -13572,7 +13622,7 @@ export declare const Envelope: {
|
|
|
13572
13622
|
width?: number | undefined;
|
|
13573
13623
|
height?: number | undefined;
|
|
13574
13624
|
thumbnail?: string | undefined;
|
|
13575
|
-
} & { [
|
|
13625
|
+
} & { [K_414 in Exclude<keyof I_1["channel_message_update"]["attachments"][number], keyof MessageAttachment>]: never; })[] & { [K_415 in Exclude<keyof I_1["channel_message_update"]["attachments"], keyof {
|
|
13576
13626
|
filename?: string | undefined;
|
|
13577
13627
|
size?: number | undefined;
|
|
13578
13628
|
url?: string | undefined;
|
|
@@ -13587,7 +13637,7 @@ export declare const Envelope: {
|
|
|
13587
13637
|
topic_id?: string | undefined;
|
|
13588
13638
|
is_update_msg_topic?: boolean | undefined;
|
|
13589
13639
|
old_mentions?: string | undefined;
|
|
13590
|
-
} & { [
|
|
13640
|
+
} & { [K_416 in Exclude<keyof I_1["channel_message_update"], keyof ChannelMessageUpdate>]: never; }) | undefined;
|
|
13591
13641
|
channel_message_remove?: ({
|
|
13592
13642
|
clan_id?: string | undefined;
|
|
13593
13643
|
channel_id?: string | undefined;
|
|
@@ -13608,7 +13658,7 @@ export declare const Envelope: {
|
|
|
13608
13658
|
topic_id?: string | undefined;
|
|
13609
13659
|
mentions?: string | undefined;
|
|
13610
13660
|
references?: string | undefined;
|
|
13611
|
-
} & { [
|
|
13661
|
+
} & { [K_417 in Exclude<keyof I_1["channel_message_remove"], keyof ChannelMessageRemove>]: never; }) | undefined;
|
|
13612
13662
|
channel_presence_event?: ({
|
|
13613
13663
|
channel_id?: string | undefined;
|
|
13614
13664
|
joins?: {
|
|
@@ -13658,7 +13708,7 @@ export declare const Envelope: {
|
|
|
13658
13708
|
status?: string | undefined;
|
|
13659
13709
|
is_mobile?: boolean | undefined;
|
|
13660
13710
|
metadata?: string | undefined;
|
|
13661
|
-
} & { [
|
|
13711
|
+
} & { [K_418 in Exclude<keyof I_1["channel_presence_event"]["joins"][number], keyof UserPresence>]: never; })[] & { [K_419 in Exclude<keyof I_1["channel_presence_event"]["joins"], keyof {
|
|
13662
13712
|
user_id?: string | undefined;
|
|
13663
13713
|
session_id?: string | undefined;
|
|
13664
13714
|
username?: string | undefined;
|
|
@@ -13691,7 +13741,7 @@ export declare const Envelope: {
|
|
|
13691
13741
|
status?: string | undefined;
|
|
13692
13742
|
is_mobile?: boolean | undefined;
|
|
13693
13743
|
metadata?: string | undefined;
|
|
13694
|
-
} & { [
|
|
13744
|
+
} & { [K_420 in Exclude<keyof I_1["channel_presence_event"]["leaves"][number], keyof UserPresence>]: never; })[] & { [K_421 in Exclude<keyof I_1["channel_presence_event"]["leaves"], keyof {
|
|
13695
13745
|
user_id?: string | undefined;
|
|
13696
13746
|
session_id?: string | undefined;
|
|
13697
13747
|
username?: string | undefined;
|
|
@@ -13703,7 +13753,7 @@ export declare const Envelope: {
|
|
|
13703
13753
|
clan_logo?: string | undefined;
|
|
13704
13754
|
category_name?: string | undefined;
|
|
13705
13755
|
mode?: number | undefined;
|
|
13706
|
-
} & { [
|
|
13756
|
+
} & { [K_422 in Exclude<keyof I_1["channel_presence_event"], keyof ChannelPresenceEvent>]: never; }) | undefined;
|
|
13707
13757
|
error?: ({
|
|
13708
13758
|
code?: number | undefined;
|
|
13709
13759
|
message?: string | undefined;
|
|
@@ -13717,8 +13767,8 @@ export declare const Envelope: {
|
|
|
13717
13767
|
[x: string]: string | undefined;
|
|
13718
13768
|
} & {
|
|
13719
13769
|
[x: string]: string | undefined;
|
|
13720
|
-
} & { [
|
|
13721
|
-
} & { [
|
|
13770
|
+
} & { [K_423 in Exclude<keyof I_1["error"]["context"], string | number>]: never; }) | undefined;
|
|
13771
|
+
} & { [K_424 in Exclude<keyof I_1["error"], keyof Error>]: never; }) | undefined;
|
|
13722
13772
|
notifications?: ({
|
|
13723
13773
|
notifications?: {
|
|
13724
13774
|
id?: string | undefined;
|
|
@@ -13997,8 +14047,8 @@ export declare const Envelope: {
|
|
|
13997
14047
|
creator_id?: string | undefined;
|
|
13998
14048
|
channel_label?: string | undefined;
|
|
13999
14049
|
channel_private?: number | undefined;
|
|
14000
|
-
channel_avatar?: (string[] & string[] & { [
|
|
14001
|
-
user_id?: (string[] & string[] & { [
|
|
14050
|
+
channel_avatar?: (string[] & string[] & { [K_425 in Exclude<keyof I_1["notifications"]["notifications"][number]["channel"]["channel_avatar"], keyof string[]>]: never; }) | undefined;
|
|
14051
|
+
user_id?: (string[] & string[] & { [K_426 in Exclude<keyof I_1["notifications"]["notifications"][number]["channel"]["user_id"], keyof string[]>]: never; }) | undefined;
|
|
14002
14052
|
last_sent_message?: ({
|
|
14003
14053
|
id?: string | undefined;
|
|
14004
14054
|
timestamp_seconds?: number | undefined;
|
|
@@ -14018,8 +14068,8 @@ export declare const Envelope: {
|
|
|
14018
14068
|
reference?: string | undefined;
|
|
14019
14069
|
mention?: string | undefined;
|
|
14020
14070
|
reaction?: string | undefined;
|
|
14021
|
-
repliers?: (string[] & string[] & { [
|
|
14022
|
-
} & { [
|
|
14071
|
+
repliers?: (string[] & string[] & { [K_427 in Exclude<keyof I_1["notifications"]["notifications"][number]["channel"]["last_sent_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
14072
|
+
} & { [K_428 in Exclude<keyof I_1["notifications"]["notifications"][number]["channel"]["last_sent_message"], keyof ChannelMessageHeader>]: never; }) | undefined;
|
|
14023
14073
|
last_seen_message?: ({
|
|
14024
14074
|
id?: string | undefined;
|
|
14025
14075
|
timestamp_seconds?: number | undefined;
|
|
@@ -14039,30 +14089,30 @@ export declare const Envelope: {
|
|
|
14039
14089
|
reference?: string | undefined;
|
|
14040
14090
|
mention?: string | undefined;
|
|
14041
14091
|
reaction?: string | undefined;
|
|
14042
|
-
repliers?: (string[] & string[] & { [
|
|
14043
|
-
} & { [
|
|
14044
|
-
is_online?: (boolean[] & boolean[] & { [
|
|
14092
|
+
repliers?: (string[] & string[] & { [K_429 in Exclude<keyof I_1["notifications"]["notifications"][number]["channel"]["last_seen_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
14093
|
+
} & { [K_430 in Exclude<keyof I_1["notifications"]["notifications"][number]["channel"]["last_seen_message"], keyof ChannelMessageHeader>]: never; }) | undefined;
|
|
14094
|
+
is_online?: (boolean[] & boolean[] & { [K_431 in Exclude<keyof I_1["notifications"]["notifications"][number]["channel"]["is_online"], keyof boolean[]>]: never; }) | undefined;
|
|
14045
14095
|
meeting_code?: string | undefined;
|
|
14046
14096
|
count_mess_unread?: number | undefined;
|
|
14047
14097
|
active?: number | undefined;
|
|
14048
14098
|
last_pin_message?: string | undefined;
|
|
14049
|
-
usernames?: (string[] & string[] & { [
|
|
14099
|
+
usernames?: (string[] & string[] & { [K_432 in Exclude<keyof I_1["notifications"]["notifications"][number]["channel"]["usernames"], keyof string[]>]: never; }) | undefined;
|
|
14050
14100
|
creator_name?: string | undefined;
|
|
14051
14101
|
create_time_seconds?: number | undefined;
|
|
14052
14102
|
update_time_seconds?: number | undefined;
|
|
14053
|
-
metadata?: (string[] & string[] & { [
|
|
14054
|
-
about_me?: (string[] & string[] & { [
|
|
14103
|
+
metadata?: (string[] & string[] & { [K_433 in Exclude<keyof I_1["notifications"]["notifications"][number]["channel"]["metadata"], keyof string[]>]: never; }) | undefined;
|
|
14104
|
+
about_me?: (string[] & string[] & { [K_434 in Exclude<keyof I_1["notifications"]["notifications"][number]["channel"]["about_me"], keyof string[]>]: never; }) | undefined;
|
|
14055
14105
|
clan_name?: string | undefined;
|
|
14056
14106
|
app_id?: string | undefined;
|
|
14057
14107
|
is_mute?: boolean | undefined;
|
|
14058
14108
|
age_restricted?: number | undefined;
|
|
14059
14109
|
topic?: string | undefined;
|
|
14060
14110
|
e2ee?: number | undefined;
|
|
14061
|
-
display_names?: (string[] & string[] & { [
|
|
14062
|
-
} & { [
|
|
14111
|
+
display_names?: (string[] & string[] & { [K_435 in Exclude<keyof I_1["notifications"]["notifications"][number]["channel"]["display_names"], keyof string[]>]: never; }) | undefined;
|
|
14112
|
+
} & { [K_436 in Exclude<keyof I_1["notifications"]["notifications"][number]["channel"], keyof ChannelDescription1>]: never; }) | undefined;
|
|
14063
14113
|
topic_id?: string | undefined;
|
|
14064
14114
|
category?: number | undefined;
|
|
14065
|
-
} & { [
|
|
14115
|
+
} & { [K_437 in Exclude<keyof I_1["notifications"]["notifications"][number], keyof Notification>]: never; })[] & { [K_438 in Exclude<keyof I_1["notifications"]["notifications"], keyof {
|
|
14066
14116
|
id?: string | undefined;
|
|
14067
14117
|
subject?: string | undefined;
|
|
14068
14118
|
content?: string | undefined;
|
|
@@ -14130,7 +14180,7 @@ export declare const Envelope: {
|
|
|
14130
14180
|
topic_id?: string | undefined;
|
|
14131
14181
|
category?: number | undefined;
|
|
14132
14182
|
}[]>]: never; }) | undefined;
|
|
14133
|
-
} & { [
|
|
14183
|
+
} & { [K_439 in Exclude<keyof I_1["notifications"], "notifications">]: never; }) | undefined;
|
|
14134
14184
|
rpc?: ({
|
|
14135
14185
|
id?: string | undefined;
|
|
14136
14186
|
payload?: string | undefined;
|
|
@@ -14139,7 +14189,7 @@ export declare const Envelope: {
|
|
|
14139
14189
|
id?: string | undefined;
|
|
14140
14190
|
payload?: string | undefined;
|
|
14141
14191
|
http_key?: string | undefined;
|
|
14142
|
-
} & { [
|
|
14192
|
+
} & { [K_440 in Exclude<keyof I_1["rpc"], keyof Rpc>]: never; }) | undefined;
|
|
14143
14193
|
status?: ({
|
|
14144
14194
|
presences?: {
|
|
14145
14195
|
user_id?: string | undefined;
|
|
@@ -14175,7 +14225,7 @@ export declare const Envelope: {
|
|
|
14175
14225
|
status?: string | undefined;
|
|
14176
14226
|
is_mobile?: boolean | undefined;
|
|
14177
14227
|
metadata?: string | undefined;
|
|
14178
|
-
} & { [
|
|
14228
|
+
} & { [K_441 in Exclude<keyof I_1["status"]["presences"][number], keyof UserPresence>]: never; })[] & { [K_442 in Exclude<keyof I_1["status"]["presences"], keyof {
|
|
14179
14229
|
user_id?: string | undefined;
|
|
14180
14230
|
session_id?: string | undefined;
|
|
14181
14231
|
username?: string | undefined;
|
|
@@ -14184,14 +14234,14 @@ export declare const Envelope: {
|
|
|
14184
14234
|
is_mobile?: boolean | undefined;
|
|
14185
14235
|
metadata?: string | undefined;
|
|
14186
14236
|
}[]>]: never; }) | undefined;
|
|
14187
|
-
} & { [
|
|
14237
|
+
} & { [K_443 in Exclude<keyof I_1["status"], "presences">]: never; }) | undefined;
|
|
14188
14238
|
status_follow?: ({
|
|
14189
14239
|
user_ids?: string[] | undefined;
|
|
14190
14240
|
usernames?: string[] | undefined;
|
|
14191
14241
|
} & {
|
|
14192
|
-
user_ids?: (string[] & string[] & { [
|
|
14193
|
-
usernames?: (string[] & string[] & { [
|
|
14194
|
-
} & { [
|
|
14242
|
+
user_ids?: (string[] & string[] & { [K_444 in Exclude<keyof I_1["status_follow"]["user_ids"], keyof string[]>]: never; }) | undefined;
|
|
14243
|
+
usernames?: (string[] & string[] & { [K_445 in Exclude<keyof I_1["status_follow"]["usernames"], keyof string[]>]: never; }) | undefined;
|
|
14244
|
+
} & { [K_446 in Exclude<keyof I_1["status_follow"], keyof StatusFollow>]: never; }) | undefined;
|
|
14195
14245
|
status_presence_event?: ({
|
|
14196
14246
|
joins?: {
|
|
14197
14247
|
user_id?: string | undefined;
|
|
@@ -14236,7 +14286,7 @@ export declare const Envelope: {
|
|
|
14236
14286
|
status?: string | undefined;
|
|
14237
14287
|
is_mobile?: boolean | undefined;
|
|
14238
14288
|
metadata?: string | undefined;
|
|
14239
|
-
} & { [
|
|
14289
|
+
} & { [K_447 in Exclude<keyof I_1["status_presence_event"]["joins"][number], keyof UserPresence>]: never; })[] & { [K_448 in Exclude<keyof I_1["status_presence_event"]["joins"], keyof {
|
|
14240
14290
|
user_id?: string | undefined;
|
|
14241
14291
|
session_id?: string | undefined;
|
|
14242
14292
|
username?: string | undefined;
|
|
@@ -14269,7 +14319,7 @@ export declare const Envelope: {
|
|
|
14269
14319
|
status?: string | undefined;
|
|
14270
14320
|
is_mobile?: boolean | undefined;
|
|
14271
14321
|
metadata?: string | undefined;
|
|
14272
|
-
} & { [
|
|
14322
|
+
} & { [K_449 in Exclude<keyof I_1["status_presence_event"]["leaves"][number], keyof UserPresence>]: never; })[] & { [K_450 in Exclude<keyof I_1["status_presence_event"]["leaves"], keyof {
|
|
14273
14323
|
user_id?: string | undefined;
|
|
14274
14324
|
session_id?: string | undefined;
|
|
14275
14325
|
username?: string | undefined;
|
|
@@ -14278,17 +14328,17 @@ export declare const Envelope: {
|
|
|
14278
14328
|
is_mobile?: boolean | undefined;
|
|
14279
14329
|
metadata?: string | undefined;
|
|
14280
14330
|
}[]>]: never; }) | undefined;
|
|
14281
|
-
} & { [
|
|
14331
|
+
} & { [K_451 in Exclude<keyof I_1["status_presence_event"], keyof StatusPresenceEvent>]: never; }) | undefined;
|
|
14282
14332
|
status_unfollow?: ({
|
|
14283
14333
|
user_ids?: string[] | undefined;
|
|
14284
14334
|
} & {
|
|
14285
|
-
user_ids?: (string[] & string[] & { [
|
|
14286
|
-
} & { [
|
|
14335
|
+
user_ids?: (string[] & string[] & { [K_452 in Exclude<keyof I_1["status_unfollow"]["user_ids"], keyof string[]>]: never; }) | undefined;
|
|
14336
|
+
} & { [K_453 in Exclude<keyof I_1["status_unfollow"], "user_ids">]: never; }) | undefined;
|
|
14287
14337
|
status_update?: ({
|
|
14288
14338
|
status?: string | undefined;
|
|
14289
14339
|
} & {
|
|
14290
14340
|
status?: string | undefined;
|
|
14291
|
-
} & { [
|
|
14341
|
+
} & { [K_454 in Exclude<keyof I_1["status_update"], "status">]: never; }) | undefined;
|
|
14292
14342
|
stream_data?: ({
|
|
14293
14343
|
stream?: {
|
|
14294
14344
|
mode?: number | undefined;
|
|
@@ -14318,7 +14368,7 @@ export declare const Envelope: {
|
|
|
14318
14368
|
channel_id?: string | undefined;
|
|
14319
14369
|
clan_id?: string | undefined;
|
|
14320
14370
|
label?: string | undefined;
|
|
14321
|
-
} & { [
|
|
14371
|
+
} & { [K_455 in Exclude<keyof I_1["stream_data"]["stream"], keyof Stream>]: never; }) | undefined;
|
|
14322
14372
|
sender?: ({
|
|
14323
14373
|
user_id?: string | undefined;
|
|
14324
14374
|
session_id?: string | undefined;
|
|
@@ -14335,10 +14385,10 @@ export declare const Envelope: {
|
|
|
14335
14385
|
status?: string | undefined;
|
|
14336
14386
|
is_mobile?: boolean | undefined;
|
|
14337
14387
|
metadata?: string | undefined;
|
|
14338
|
-
} & { [
|
|
14388
|
+
} & { [K_456 in Exclude<keyof I_1["stream_data"]["sender"], keyof UserPresence>]: never; }) | undefined;
|
|
14339
14389
|
data?: string | undefined;
|
|
14340
14390
|
reliable?: boolean | undefined;
|
|
14341
|
-
} & { [
|
|
14391
|
+
} & { [K_457 in Exclude<keyof I_1["stream_data"], keyof StreamData>]: never; }) | undefined;
|
|
14342
14392
|
stream_presence_event?: ({
|
|
14343
14393
|
stream?: {
|
|
14344
14394
|
mode?: number | undefined;
|
|
@@ -14375,7 +14425,7 @@ export declare const Envelope: {
|
|
|
14375
14425
|
channel_id?: string | undefined;
|
|
14376
14426
|
clan_id?: string | undefined;
|
|
14377
14427
|
label?: string | undefined;
|
|
14378
|
-
} & { [
|
|
14428
|
+
} & { [K_458 in Exclude<keyof I_1["stream_presence_event"]["stream"], keyof Stream>]: never; }) | undefined;
|
|
14379
14429
|
joins?: ({
|
|
14380
14430
|
user_id?: string | undefined;
|
|
14381
14431
|
session_id?: string | undefined;
|
|
@@ -14400,7 +14450,7 @@ export declare const Envelope: {
|
|
|
14400
14450
|
status?: string | undefined;
|
|
14401
14451
|
is_mobile?: boolean | undefined;
|
|
14402
14452
|
metadata?: string | undefined;
|
|
14403
|
-
} & { [
|
|
14453
|
+
} & { [K_459 in Exclude<keyof I_1["stream_presence_event"]["joins"][number], keyof UserPresence>]: never; })[] & { [K_460 in Exclude<keyof I_1["stream_presence_event"]["joins"], keyof {
|
|
14404
14454
|
user_id?: string | undefined;
|
|
14405
14455
|
session_id?: string | undefined;
|
|
14406
14456
|
username?: string | undefined;
|
|
@@ -14433,7 +14483,7 @@ export declare const Envelope: {
|
|
|
14433
14483
|
status?: string | undefined;
|
|
14434
14484
|
is_mobile?: boolean | undefined;
|
|
14435
14485
|
metadata?: string | undefined;
|
|
14436
|
-
} & { [
|
|
14486
|
+
} & { [K_461 in Exclude<keyof I_1["stream_presence_event"]["leaves"][number], keyof UserPresence>]: never; })[] & { [K_462 in Exclude<keyof I_1["stream_presence_event"]["leaves"], keyof {
|
|
14437
14487
|
user_id?: string | undefined;
|
|
14438
14488
|
session_id?: string | undefined;
|
|
14439
14489
|
username?: string | undefined;
|
|
@@ -14442,9 +14492,9 @@ export declare const Envelope: {
|
|
|
14442
14492
|
is_mobile?: boolean | undefined;
|
|
14443
14493
|
metadata?: string | undefined;
|
|
14444
14494
|
}[]>]: never; }) | undefined;
|
|
14445
|
-
} & { [
|
|
14446
|
-
ping?: ({} & {} & { [
|
|
14447
|
-
pong?: ({} & {} & { [
|
|
14495
|
+
} & { [K_463 in Exclude<keyof I_1["stream_presence_event"], keyof StreamPresenceEvent>]: never; }) | undefined;
|
|
14496
|
+
ping?: ({} & {} & { [K_464 in Exclude<keyof I_1["ping"], never>]: never; }) | undefined;
|
|
14497
|
+
pong?: ({} & {} & { [K_465 in Exclude<keyof I_1["pong"], never>]: never; }) | undefined;
|
|
14448
14498
|
message_typing_event?: ({
|
|
14449
14499
|
clan_id?: string | undefined;
|
|
14450
14500
|
channel_id?: string | undefined;
|
|
@@ -14461,7 +14511,7 @@ export declare const Envelope: {
|
|
|
14461
14511
|
is_public?: boolean | undefined;
|
|
14462
14512
|
sender_username?: string | undefined;
|
|
14463
14513
|
sender_display_name?: string | undefined;
|
|
14464
|
-
} & { [
|
|
14514
|
+
} & { [K_466 in Exclude<keyof I_1["message_typing_event"], keyof MessageTypingEvent>]: never; }) | undefined;
|
|
14465
14515
|
last_seen_message_event?: ({
|
|
14466
14516
|
clan_id?: string | undefined;
|
|
14467
14517
|
channel_id?: string | undefined;
|
|
@@ -14476,7 +14526,7 @@ export declare const Envelope: {
|
|
|
14476
14526
|
mode?: number | undefined;
|
|
14477
14527
|
timestamp_seconds?: number | undefined;
|
|
14478
14528
|
badge_count?: number | undefined;
|
|
14479
|
-
} & { [
|
|
14529
|
+
} & { [K_467 in Exclude<keyof I_1["last_seen_message_event"], keyof LastSeenMessageEvent>]: never; }) | undefined;
|
|
14480
14530
|
message_reaction_event?: ({
|
|
14481
14531
|
id?: string | undefined;
|
|
14482
14532
|
emoji_id?: string | undefined;
|
|
@@ -14511,7 +14561,7 @@ export declare const Envelope: {
|
|
|
14511
14561
|
is_public?: boolean | undefined;
|
|
14512
14562
|
topic_id?: string | undefined;
|
|
14513
14563
|
emoji_recent_id?: string | undefined;
|
|
14514
|
-
} & { [
|
|
14564
|
+
} & { [K_468 in Exclude<keyof I_1["message_reaction_event"], keyof MessageReaction>]: never; }) | undefined;
|
|
14515
14565
|
voice_joined_event?: ({
|
|
14516
14566
|
clan_id?: string | undefined;
|
|
14517
14567
|
clan_name?: string | undefined;
|
|
@@ -14530,7 +14580,7 @@ export declare const Envelope: {
|
|
|
14530
14580
|
voice_channel_label?: string | undefined;
|
|
14531
14581
|
voice_channel_id?: string | undefined;
|
|
14532
14582
|
last_screenshot?: string | undefined;
|
|
14533
|
-
} & { [
|
|
14583
|
+
} & { [K_469 in Exclude<keyof I_1["voice_joined_event"], keyof VoiceJoinedEvent>]: never; }) | undefined;
|
|
14534
14584
|
voice_leaved_event?: ({
|
|
14535
14585
|
id?: string | undefined;
|
|
14536
14586
|
clan_id?: string | undefined;
|
|
@@ -14541,7 +14591,7 @@ export declare const Envelope: {
|
|
|
14541
14591
|
clan_id?: string | undefined;
|
|
14542
14592
|
voice_channel_id?: string | undefined;
|
|
14543
14593
|
voice_user_id?: string | undefined;
|
|
14544
|
-
} & { [
|
|
14594
|
+
} & { [K_470 in Exclude<keyof I_1["voice_leaved_event"], keyof VoiceLeavedEvent>]: never; }) | undefined;
|
|
14545
14595
|
voice_started_event?: ({
|
|
14546
14596
|
id?: string | undefined;
|
|
14547
14597
|
clan_id?: string | undefined;
|
|
@@ -14550,7 +14600,7 @@ export declare const Envelope: {
|
|
|
14550
14600
|
id?: string | undefined;
|
|
14551
14601
|
clan_id?: string | undefined;
|
|
14552
14602
|
voice_channel_id?: string | undefined;
|
|
14553
|
-
} & { [
|
|
14603
|
+
} & { [K_471 in Exclude<keyof I_1["voice_started_event"], keyof VoiceStartedEvent>]: never; }) | undefined;
|
|
14554
14604
|
voice_ended_event?: ({
|
|
14555
14605
|
id?: string | undefined;
|
|
14556
14606
|
clan_id?: string | undefined;
|
|
@@ -14559,7 +14609,7 @@ export declare const Envelope: {
|
|
|
14559
14609
|
id?: string | undefined;
|
|
14560
14610
|
clan_id?: string | undefined;
|
|
14561
14611
|
voice_channel_id?: string | undefined;
|
|
14562
|
-
} & { [
|
|
14612
|
+
} & { [K_472 in Exclude<keyof I_1["voice_ended_event"], keyof VoiceEndedEvent>]: never; }) | undefined;
|
|
14563
14613
|
channel_created_event?: ({
|
|
14564
14614
|
clan_id?: string | undefined;
|
|
14565
14615
|
category_id?: string | undefined;
|
|
@@ -14584,7 +14634,7 @@ export declare const Envelope: {
|
|
|
14584
14634
|
status?: number | undefined;
|
|
14585
14635
|
app_id?: string | undefined;
|
|
14586
14636
|
clan_name?: string | undefined;
|
|
14587
|
-
} & { [
|
|
14637
|
+
} & { [K_473 in Exclude<keyof I_1["channel_created_event"], keyof ChannelCreatedEvent>]: never; }) | undefined;
|
|
14588
14638
|
channel_deleted_event?: ({
|
|
14589
14639
|
clan_id?: string | undefined;
|
|
14590
14640
|
category_id?: string | undefined;
|
|
@@ -14597,7 +14647,7 @@ export declare const Envelope: {
|
|
|
14597
14647
|
parent_id?: string | undefined;
|
|
14598
14648
|
channel_id?: string | undefined;
|
|
14599
14649
|
deletor?: string | undefined;
|
|
14600
|
-
} & { [
|
|
14650
|
+
} & { [K_474 in Exclude<keyof I_1["channel_deleted_event"], keyof ChannelDeletedEvent>]: never; }) | undefined;
|
|
14601
14651
|
channel_updated_event?: ({
|
|
14602
14652
|
clan_id?: string | undefined;
|
|
14603
14653
|
category_id?: string | undefined;
|
|
@@ -14636,9 +14686,9 @@ export declare const Envelope: {
|
|
|
14636
14686
|
age_restricted?: number | undefined;
|
|
14637
14687
|
active?: number | undefined;
|
|
14638
14688
|
count_mess_unread?: number | undefined;
|
|
14639
|
-
user_ids?: (string[] & string[] & { [
|
|
14640
|
-
role_ids?: (string[] & string[] & { [
|
|
14641
|
-
} & { [
|
|
14689
|
+
user_ids?: (string[] & string[] & { [K_475 in Exclude<keyof I_1["channel_updated_event"]["user_ids"], keyof string[]>]: never; }) | undefined;
|
|
14690
|
+
role_ids?: (string[] & string[] & { [K_476 in Exclude<keyof I_1["channel_updated_event"]["role_ids"], keyof string[]>]: never; }) | undefined;
|
|
14691
|
+
} & { [K_477 in Exclude<keyof I_1["channel_updated_event"], keyof ChannelUpdatedEvent>]: never; }) | undefined;
|
|
14642
14692
|
last_pin_message_event?: ({
|
|
14643
14693
|
clan_id?: string | undefined;
|
|
14644
14694
|
channel_id?: string | undefined;
|
|
@@ -14669,7 +14719,7 @@ export declare const Envelope: {
|
|
|
14669
14719
|
message_content?: string | undefined;
|
|
14670
14720
|
message_attachment?: string | undefined;
|
|
14671
14721
|
message_created_time?: string | undefined;
|
|
14672
|
-
} & { [
|
|
14722
|
+
} & { [K_478 in Exclude<keyof I_1["last_pin_message_event"], keyof LastPinMessageEvent>]: never; }) | undefined;
|
|
14673
14723
|
custom_status_event?: ({
|
|
14674
14724
|
clan_id?: string | undefined;
|
|
14675
14725
|
user_id?: string | undefined;
|
|
@@ -14684,7 +14734,7 @@ export declare const Envelope: {
|
|
|
14684
14734
|
status?: string | undefined;
|
|
14685
14735
|
time_reset?: number | undefined;
|
|
14686
14736
|
no_clear?: boolean | undefined;
|
|
14687
|
-
} & { [
|
|
14737
|
+
} & { [K_479 in Exclude<keyof I_1["custom_status_event"], keyof CustomStatusEvent>]: never; }) | undefined;
|
|
14688
14738
|
user_channel_added_event?: ({
|
|
14689
14739
|
channel_desc?: {
|
|
14690
14740
|
clan_id?: string | undefined;
|
|
@@ -14854,8 +14904,8 @@ export declare const Envelope: {
|
|
|
14854
14904
|
creator_id?: string | undefined;
|
|
14855
14905
|
channel_label?: string | undefined;
|
|
14856
14906
|
channel_private?: number | undefined;
|
|
14857
|
-
channel_avatar?: (string[] & string[] & { [
|
|
14858
|
-
user_id?: (string[] & string[] & { [
|
|
14907
|
+
channel_avatar?: (string[] & string[] & { [K_480 in Exclude<keyof I_1["user_channel_added_event"]["channel_desc"]["channel_avatar"], keyof string[]>]: never; }) | undefined;
|
|
14908
|
+
user_id?: (string[] & string[] & { [K_481 in Exclude<keyof I_1["user_channel_added_event"]["channel_desc"]["user_id"], keyof string[]>]: never; }) | undefined;
|
|
14859
14909
|
last_sent_message?: ({
|
|
14860
14910
|
id?: string | undefined;
|
|
14861
14911
|
timestamp_seconds?: number | undefined;
|
|
@@ -14875,8 +14925,8 @@ export declare const Envelope: {
|
|
|
14875
14925
|
reference?: string | undefined;
|
|
14876
14926
|
mention?: string | undefined;
|
|
14877
14927
|
reaction?: string | undefined;
|
|
14878
|
-
repliers?: (string[] & string[] & { [
|
|
14879
|
-
} & { [
|
|
14928
|
+
repliers?: (string[] & string[] & { [K_482 in Exclude<keyof I_1["user_channel_added_event"]["channel_desc"]["last_sent_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
14929
|
+
} & { [K_483 in Exclude<keyof I_1["user_channel_added_event"]["channel_desc"]["last_sent_message"], keyof ChannelMessageHeader>]: never; }) | undefined;
|
|
14880
14930
|
last_seen_message?: ({
|
|
14881
14931
|
id?: string | undefined;
|
|
14882
14932
|
timestamp_seconds?: number | undefined;
|
|
@@ -14896,27 +14946,27 @@ export declare const Envelope: {
|
|
|
14896
14946
|
reference?: string | undefined;
|
|
14897
14947
|
mention?: string | undefined;
|
|
14898
14948
|
reaction?: string | undefined;
|
|
14899
|
-
repliers?: (string[] & string[] & { [
|
|
14900
|
-
} & { [
|
|
14901
|
-
is_online?: (boolean[] & boolean[] & { [
|
|
14949
|
+
repliers?: (string[] & string[] & { [K_484 in Exclude<keyof I_1["user_channel_added_event"]["channel_desc"]["last_seen_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
14950
|
+
} & { [K_485 in Exclude<keyof I_1["user_channel_added_event"]["channel_desc"]["last_seen_message"], keyof ChannelMessageHeader>]: never; }) | undefined;
|
|
14951
|
+
is_online?: (boolean[] & boolean[] & { [K_486 in Exclude<keyof I_1["user_channel_added_event"]["channel_desc"]["is_online"], keyof boolean[]>]: never; }) | undefined;
|
|
14902
14952
|
meeting_code?: string | undefined;
|
|
14903
14953
|
count_mess_unread?: number | undefined;
|
|
14904
14954
|
active?: number | undefined;
|
|
14905
14955
|
last_pin_message?: string | undefined;
|
|
14906
|
-
usernames?: (string[] & string[] & { [
|
|
14956
|
+
usernames?: (string[] & string[] & { [K_487 in Exclude<keyof I_1["user_channel_added_event"]["channel_desc"]["usernames"], keyof string[]>]: never; }) | undefined;
|
|
14907
14957
|
creator_name?: string | undefined;
|
|
14908
14958
|
create_time_seconds?: number | undefined;
|
|
14909
14959
|
update_time_seconds?: number | undefined;
|
|
14910
|
-
metadata?: (string[] & string[] & { [
|
|
14911
|
-
about_me?: (string[] & string[] & { [
|
|
14960
|
+
metadata?: (string[] & string[] & { [K_488 in Exclude<keyof I_1["user_channel_added_event"]["channel_desc"]["metadata"], keyof string[]>]: never; }) | undefined;
|
|
14961
|
+
about_me?: (string[] & string[] & { [K_489 in Exclude<keyof I_1["user_channel_added_event"]["channel_desc"]["about_me"], keyof string[]>]: never; }) | undefined;
|
|
14912
14962
|
clan_name?: string | undefined;
|
|
14913
14963
|
app_id?: string | undefined;
|
|
14914
14964
|
is_mute?: boolean | undefined;
|
|
14915
14965
|
age_restricted?: number | undefined;
|
|
14916
14966
|
topic?: string | undefined;
|
|
14917
14967
|
e2ee?: number | undefined;
|
|
14918
|
-
display_names?: (string[] & string[] & { [
|
|
14919
|
-
} & { [
|
|
14968
|
+
display_names?: (string[] & string[] & { [K_490 in Exclude<keyof I_1["user_channel_added_event"]["channel_desc"]["display_names"], keyof string[]>]: never; }) | undefined;
|
|
14969
|
+
} & { [K_491 in Exclude<keyof I_1["user_channel_added_event"]["channel_desc"], keyof ChannelDescription1>]: never; }) | undefined;
|
|
14920
14970
|
users?: ({
|
|
14921
14971
|
user_id?: string | undefined;
|
|
14922
14972
|
username?: string | undefined;
|
|
@@ -14983,7 +15033,7 @@ export declare const Envelope: {
|
|
|
14983
15033
|
device_id?: string | undefined;
|
|
14984
15034
|
token_id?: string | undefined;
|
|
14985
15035
|
platform?: string | undefined;
|
|
14986
|
-
} & { [
|
|
15036
|
+
} & { [K_492 in Exclude<keyof I_1["user_channel_added_event"]["users"][number]["fcm_tokens"][number], keyof FCMTokens>]: never; })[] & { [K_493 in Exclude<keyof I_1["user_channel_added_event"]["users"][number]["fcm_tokens"], keyof {
|
|
14987
15037
|
device_id?: string | undefined;
|
|
14988
15038
|
token_id?: string | undefined;
|
|
14989
15039
|
platform?: string | undefined;
|
|
@@ -14991,14 +15041,14 @@ export declare const Envelope: {
|
|
|
14991
15041
|
online?: boolean | undefined;
|
|
14992
15042
|
metadata?: string | undefined;
|
|
14993
15043
|
is_disabled?: boolean | undefined;
|
|
14994
|
-
joined_clans?: (string[] & string[] & { [
|
|
15044
|
+
joined_clans?: (string[] & string[] & { [K_494 in Exclude<keyof I_1["user_channel_added_event"]["users"][number]["joined_clans"], keyof string[]>]: never; }) | undefined;
|
|
14995
15045
|
pubkey?: string | undefined;
|
|
14996
15046
|
mezon_id?: string | undefined;
|
|
14997
15047
|
app_token?: string | undefined;
|
|
14998
15048
|
app_url?: string | undefined;
|
|
14999
15049
|
is_bot?: boolean | undefined;
|
|
15000
15050
|
voip_token?: string | undefined;
|
|
15001
|
-
} & { [
|
|
15051
|
+
} & { [K_495 in Exclude<keyof I_1["user_channel_added_event"]["users"][number], keyof UserProfileRedis>]: never; })[] & { [K_496 in Exclude<keyof I_1["user_channel_added_event"]["users"], keyof {
|
|
15002
15052
|
user_id?: string | undefined;
|
|
15003
15053
|
username?: string | undefined;
|
|
15004
15054
|
avatar?: string | undefined;
|
|
@@ -15067,7 +15117,7 @@ export declare const Envelope: {
|
|
|
15067
15117
|
device_id?: string | undefined;
|
|
15068
15118
|
token_id?: string | undefined;
|
|
15069
15119
|
platform?: string | undefined;
|
|
15070
|
-
} & { [
|
|
15120
|
+
} & { [K_497 in Exclude<keyof I_1["user_channel_added_event"]["caller"]["fcm_tokens"][number], keyof FCMTokens>]: never; })[] & { [K_498 in Exclude<keyof I_1["user_channel_added_event"]["caller"]["fcm_tokens"], keyof {
|
|
15071
15121
|
device_id?: string | undefined;
|
|
15072
15122
|
token_id?: string | undefined;
|
|
15073
15123
|
platform?: string | undefined;
|
|
@@ -15075,17 +15125,17 @@ export declare const Envelope: {
|
|
|
15075
15125
|
online?: boolean | undefined;
|
|
15076
15126
|
metadata?: string | undefined;
|
|
15077
15127
|
is_disabled?: boolean | undefined;
|
|
15078
|
-
joined_clans?: (string[] & string[] & { [
|
|
15128
|
+
joined_clans?: (string[] & string[] & { [K_499 in Exclude<keyof I_1["user_channel_added_event"]["caller"]["joined_clans"], keyof string[]>]: never; }) | undefined;
|
|
15079
15129
|
pubkey?: string | undefined;
|
|
15080
15130
|
mezon_id?: string | undefined;
|
|
15081
15131
|
app_token?: string | undefined;
|
|
15082
15132
|
app_url?: string | undefined;
|
|
15083
15133
|
is_bot?: boolean | undefined;
|
|
15084
15134
|
voip_token?: string | undefined;
|
|
15085
|
-
} & { [
|
|
15135
|
+
} & { [K_500 in Exclude<keyof I_1["user_channel_added_event"]["caller"], keyof UserProfileRedis>]: never; }) | undefined;
|
|
15086
15136
|
create_time_second?: number | undefined;
|
|
15087
15137
|
active?: number | undefined;
|
|
15088
|
-
} & { [
|
|
15138
|
+
} & { [K_501 in Exclude<keyof I_1["user_channel_added_event"], keyof UserChannelAdded>]: never; }) | undefined;
|
|
15089
15139
|
user_channel_removed_event?: ({
|
|
15090
15140
|
channel_id?: string | undefined;
|
|
15091
15141
|
user_ids?: string[] | undefined;
|
|
@@ -15094,18 +15144,18 @@ export declare const Envelope: {
|
|
|
15094
15144
|
badge_counts?: number[] | undefined;
|
|
15095
15145
|
} & {
|
|
15096
15146
|
channel_id?: string | undefined;
|
|
15097
|
-
user_ids?: (string[] & string[] & { [
|
|
15147
|
+
user_ids?: (string[] & string[] & { [K_502 in Exclude<keyof I_1["user_channel_removed_event"]["user_ids"], keyof string[]>]: never; }) | undefined;
|
|
15098
15148
|
channel_type?: number | undefined;
|
|
15099
15149
|
clan_id?: string | undefined;
|
|
15100
|
-
badge_counts?: (number[] & number[] & { [
|
|
15101
|
-
} & { [
|
|
15150
|
+
badge_counts?: (number[] & number[] & { [K_503 in Exclude<keyof I_1["user_channel_removed_event"]["badge_counts"], keyof number[]>]: never; }) | undefined;
|
|
15151
|
+
} & { [K_504 in Exclude<keyof I_1["user_channel_removed_event"], keyof UserChannelRemoved>]: never; }) | undefined;
|
|
15102
15152
|
user_clan_removed_event?: ({
|
|
15103
15153
|
clan_id?: string | undefined;
|
|
15104
15154
|
user_ids?: string[] | undefined;
|
|
15105
15155
|
} & {
|
|
15106
15156
|
clan_id?: string | undefined;
|
|
15107
|
-
user_ids?: (string[] & string[] & { [
|
|
15108
|
-
} & { [
|
|
15157
|
+
user_ids?: (string[] & string[] & { [K_505 in Exclude<keyof I_1["user_clan_removed_event"]["user_ids"], keyof string[]>]: never; }) | undefined;
|
|
15158
|
+
} & { [K_506 in Exclude<keyof I_1["user_clan_removed_event"], keyof UserClanRemoved>]: never; }) | undefined;
|
|
15109
15159
|
clan_updated_event?: ({
|
|
15110
15160
|
clan_id?: string | undefined;
|
|
15111
15161
|
clan_name?: string | undefined;
|
|
@@ -15124,7 +15174,7 @@ export declare const Envelope: {
|
|
|
15124
15174
|
is_onboarding?: boolean | undefined;
|
|
15125
15175
|
welcome_channel_id?: string | undefined;
|
|
15126
15176
|
onboarding_banner?: string | undefined;
|
|
15127
|
-
} & { [
|
|
15177
|
+
} & { [K_507 in Exclude<keyof I_1["clan_updated_event"], keyof ClanUpdatedEvent>]: never; }) | undefined;
|
|
15128
15178
|
clan_profile_updated_event?: ({
|
|
15129
15179
|
user_id?: string | undefined;
|
|
15130
15180
|
clan_nick?: string | undefined;
|
|
@@ -15135,7 +15185,7 @@ export declare const Envelope: {
|
|
|
15135
15185
|
clan_nick?: string | undefined;
|
|
15136
15186
|
clan_avatar?: string | undefined;
|
|
15137
15187
|
clan_id?: string | undefined;
|
|
15138
|
-
} & { [
|
|
15188
|
+
} & { [K_508 in Exclude<keyof I_1["clan_profile_updated_event"], keyof ClanProfileUpdatedEvent>]: never; }) | undefined;
|
|
15139
15189
|
check_name_existed_event?: ({
|
|
15140
15190
|
name?: string | undefined;
|
|
15141
15191
|
condition_id?: string | undefined;
|
|
@@ -15146,7 +15196,7 @@ export declare const Envelope: {
|
|
|
15146
15196
|
condition_id?: string | undefined;
|
|
15147
15197
|
exist?: boolean | undefined;
|
|
15148
15198
|
type?: number | undefined;
|
|
15149
|
-
} & { [
|
|
15199
|
+
} & { [K_509 in Exclude<keyof I_1["check_name_existed_event"], keyof CheckNameExistedEvent>]: never; }) | undefined;
|
|
15150
15200
|
user_profile_updated_event?: ({
|
|
15151
15201
|
user_id?: string | undefined;
|
|
15152
15202
|
display_name?: string | undefined;
|
|
@@ -15163,7 +15213,7 @@ export declare const Envelope: {
|
|
|
15163
15213
|
channel_id?: string | undefined;
|
|
15164
15214
|
clan_id?: string | undefined;
|
|
15165
15215
|
encrypt_private_key?: string | undefined;
|
|
15166
|
-
} & { [
|
|
15216
|
+
} & { [K_510 in Exclude<keyof I_1["user_profile_updated_event"], keyof UserProfileUpdatedEvent>]: never; }) | undefined;
|
|
15167
15217
|
add_clan_user_event?: ({
|
|
15168
15218
|
clan_id?: string | undefined;
|
|
15169
15219
|
user?: {
|
|
@@ -15236,7 +15286,7 @@ export declare const Envelope: {
|
|
|
15236
15286
|
device_id?: string | undefined;
|
|
15237
15287
|
token_id?: string | undefined;
|
|
15238
15288
|
platform?: string | undefined;
|
|
15239
|
-
} & { [
|
|
15289
|
+
} & { [K_511 in Exclude<keyof I_1["add_clan_user_event"]["user"]["fcm_tokens"][number], keyof FCMTokens>]: never; })[] & { [K_512 in Exclude<keyof I_1["add_clan_user_event"]["user"]["fcm_tokens"], keyof {
|
|
15240
15290
|
device_id?: string | undefined;
|
|
15241
15291
|
token_id?: string | undefined;
|
|
15242
15292
|
platform?: string | undefined;
|
|
@@ -15244,16 +15294,16 @@ export declare const Envelope: {
|
|
|
15244
15294
|
online?: boolean | undefined;
|
|
15245
15295
|
metadata?: string | undefined;
|
|
15246
15296
|
is_disabled?: boolean | undefined;
|
|
15247
|
-
joined_clans?: (string[] & string[] & { [
|
|
15297
|
+
joined_clans?: (string[] & string[] & { [K_513 in Exclude<keyof I_1["add_clan_user_event"]["user"]["joined_clans"], keyof string[]>]: never; }) | undefined;
|
|
15248
15298
|
pubkey?: string | undefined;
|
|
15249
15299
|
mezon_id?: string | undefined;
|
|
15250
15300
|
app_token?: string | undefined;
|
|
15251
15301
|
app_url?: string | undefined;
|
|
15252
15302
|
is_bot?: boolean | undefined;
|
|
15253
15303
|
voip_token?: string | undefined;
|
|
15254
|
-
} & { [
|
|
15304
|
+
} & { [K_514 in Exclude<keyof I_1["add_clan_user_event"]["user"], keyof UserProfileRedis>]: never; }) | undefined;
|
|
15255
15305
|
invitor?: string | undefined;
|
|
15256
|
-
} & { [
|
|
15306
|
+
} & { [K_515 in Exclude<keyof I_1["add_clan_user_event"], keyof AddClanUserEvent>]: never; }) | undefined;
|
|
15257
15307
|
clan_event_created?: ({
|
|
15258
15308
|
title?: string | undefined;
|
|
15259
15309
|
logo?: string | undefined;
|
|
@@ -15307,8 +15357,8 @@ export declare const Envelope: {
|
|
|
15307
15357
|
external_link?: string | undefined;
|
|
15308
15358
|
creator_id?: string | undefined;
|
|
15309
15359
|
event_id?: string | undefined;
|
|
15310
|
-
} & { [
|
|
15311
|
-
} & { [
|
|
15360
|
+
} & { [K_516 in Exclude<keyof I_1["clan_event_created"]["meet_room"], keyof import("../api/api").GenerateMezonMeetResponse>]: never; }) | undefined;
|
|
15361
|
+
} & { [K_517 in Exclude<keyof I_1["clan_event_created"], keyof CreateEventRequest>]: never; }) | undefined;
|
|
15312
15362
|
role_assign_event?: ({
|
|
15313
15363
|
ClanId?: string | undefined;
|
|
15314
15364
|
role_id?: string | undefined;
|
|
@@ -15317,16 +15367,16 @@ export declare const Envelope: {
|
|
|
15317
15367
|
} & {
|
|
15318
15368
|
ClanId?: string | undefined;
|
|
15319
15369
|
role_id?: string | undefined;
|
|
15320
|
-
user_ids_assigned?: (string[] & string[] & { [
|
|
15321
|
-
user_ids_removed?: (string[] & string[] & { [
|
|
15322
|
-
} & { [
|
|
15370
|
+
user_ids_assigned?: (string[] & string[] & { [K_518 in Exclude<keyof I_1["role_assign_event"]["user_ids_assigned"], keyof string[]>]: never; }) | undefined;
|
|
15371
|
+
user_ids_removed?: (string[] & string[] & { [K_519 in Exclude<keyof I_1["role_assign_event"]["user_ids_removed"], keyof string[]>]: never; }) | undefined;
|
|
15372
|
+
} & { [K_520 in Exclude<keyof I_1["role_assign_event"], keyof RoleAssignedEvent>]: never; }) | undefined;
|
|
15323
15373
|
clan_deleted_event?: ({
|
|
15324
15374
|
clan_id?: string | undefined;
|
|
15325
15375
|
deletor?: string | undefined;
|
|
15326
15376
|
} & {
|
|
15327
15377
|
clan_id?: string | undefined;
|
|
15328
15378
|
deletor?: string | undefined;
|
|
15329
|
-
} & { [
|
|
15379
|
+
} & { [K_521 in Exclude<keyof I_1["clan_deleted_event"], keyof ClanDeletedEvent>]: never; }) | undefined;
|
|
15330
15380
|
give_coffee_event?: ({
|
|
15331
15381
|
sender_id?: string | undefined;
|
|
15332
15382
|
receiver_id?: string | undefined;
|
|
@@ -15341,7 +15391,7 @@ export declare const Envelope: {
|
|
|
15341
15391
|
message_ref_id?: string | undefined;
|
|
15342
15392
|
channel_id?: string | undefined;
|
|
15343
15393
|
clan_id?: string | undefined;
|
|
15344
|
-
} & { [
|
|
15394
|
+
} & { [K_522 in Exclude<keyof I_1["give_coffee_event"], keyof GiveCoffeeEvent>]: never; }) | undefined;
|
|
15345
15395
|
sticker_create_event?: ({
|
|
15346
15396
|
clan_id?: string | undefined;
|
|
15347
15397
|
source?: string | undefined;
|
|
@@ -15360,7 +15410,7 @@ export declare const Envelope: {
|
|
|
15360
15410
|
sticker_id?: string | undefined;
|
|
15361
15411
|
logo?: string | undefined;
|
|
15362
15412
|
clan_name?: string | undefined;
|
|
15363
|
-
} & { [
|
|
15413
|
+
} & { [K_523 in Exclude<keyof I_1["sticker_create_event"], keyof StickerCreateEvent>]: never; }) | undefined;
|
|
15364
15414
|
sticker_update_event?: ({
|
|
15365
15415
|
shortname?: string | undefined;
|
|
15366
15416
|
sticker_id?: string | undefined;
|
|
@@ -15369,14 +15419,14 @@ export declare const Envelope: {
|
|
|
15369
15419
|
shortname?: string | undefined;
|
|
15370
15420
|
sticker_id?: string | undefined;
|
|
15371
15421
|
user_id?: string | undefined;
|
|
15372
|
-
} & { [
|
|
15422
|
+
} & { [K_524 in Exclude<keyof I_1["sticker_update_event"], keyof StickerUpdateEvent>]: never; }) | undefined;
|
|
15373
15423
|
sticker_delete_event?: ({
|
|
15374
15424
|
sticker_id?: string | undefined;
|
|
15375
15425
|
user_id?: string | undefined;
|
|
15376
15426
|
} & {
|
|
15377
15427
|
sticker_id?: string | undefined;
|
|
15378
15428
|
user_id?: string | undefined;
|
|
15379
|
-
} & { [
|
|
15429
|
+
} & { [K_525 in Exclude<keyof I_1["sticker_delete_event"], keyof StickerDeleteEvent>]: never; }) | undefined;
|
|
15380
15430
|
role_event?: ({
|
|
15381
15431
|
role?: {
|
|
15382
15432
|
id?: string | undefined;
|
|
@@ -15514,7 +15564,7 @@ export declare const Envelope: {
|
|
|
15514
15564
|
lang_tag?: string | undefined;
|
|
15515
15565
|
location?: string | undefined;
|
|
15516
15566
|
online?: boolean | undefined;
|
|
15517
|
-
} & { [
|
|
15567
|
+
} & { [K_526 in Exclude<keyof I_1["role_event"]["role"]["role_user_list"]["role_users"][number], keyof import("../api/api").RoleUserList_RoleUser>]: never; })[] & { [K_527 in Exclude<keyof I_1["role_event"]["role"]["role_user_list"]["role_users"], keyof {
|
|
15518
15568
|
id?: string | undefined;
|
|
15519
15569
|
username?: string | undefined;
|
|
15520
15570
|
display_name?: string | undefined;
|
|
@@ -15524,7 +15574,7 @@ export declare const Envelope: {
|
|
|
15524
15574
|
online?: boolean | undefined;
|
|
15525
15575
|
}[]>]: never; }) | undefined;
|
|
15526
15576
|
cursor?: string | undefined;
|
|
15527
|
-
} & { [
|
|
15577
|
+
} & { [K_528 in Exclude<keyof I_1["role_event"]["role"]["role_user_list"], keyof RoleUserList>]: never; }) | undefined;
|
|
15528
15578
|
permission_list?: ({
|
|
15529
15579
|
permissions?: {
|
|
15530
15580
|
id?: string | undefined;
|
|
@@ -15561,7 +15611,7 @@ export declare const Envelope: {
|
|
|
15561
15611
|
active?: number | undefined;
|
|
15562
15612
|
scope?: number | undefined;
|
|
15563
15613
|
level?: number | undefined;
|
|
15564
|
-
} & { [
|
|
15614
|
+
} & { [K_529 in Exclude<keyof I_1["role_event"]["role"]["permission_list"]["permissions"][number], keyof import("../api/api").Permission>]: never; })[] & { [K_530 in Exclude<keyof I_1["role_event"]["role"]["permission_list"]["permissions"], keyof {
|
|
15565
15615
|
id?: string | undefined;
|
|
15566
15616
|
title?: string | undefined;
|
|
15567
15617
|
slug?: string | undefined;
|
|
@@ -15571,19 +15621,19 @@ export declare const Envelope: {
|
|
|
15571
15621
|
level?: number | undefined;
|
|
15572
15622
|
}[]>]: never; }) | undefined;
|
|
15573
15623
|
max_level_permission?: number | undefined;
|
|
15574
|
-
} & { [
|
|
15624
|
+
} & { [K_531 in Exclude<keyof I_1["role_event"]["role"]["permission_list"], keyof PermissionList>]: never; }) | undefined;
|
|
15575
15625
|
role_channel_active?: number | undefined;
|
|
15576
|
-
channel_ids?: (string[] & string[] & { [
|
|
15626
|
+
channel_ids?: (string[] & string[] & { [K_532 in Exclude<keyof I_1["role_event"]["role"]["channel_ids"], keyof string[]>]: never; }) | undefined;
|
|
15577
15627
|
max_level_permission?: number | undefined;
|
|
15578
15628
|
order_role?: number | undefined;
|
|
15579
|
-
} & { [
|
|
15629
|
+
} & { [K_533 in Exclude<keyof I_1["role_event"]["role"], keyof Role>]: never; }) | undefined;
|
|
15580
15630
|
status?: number | undefined;
|
|
15581
15631
|
user_id?: string | undefined;
|
|
15582
|
-
user_add_ids?: (string[] & string[] & { [
|
|
15583
|
-
user_remove_ids?: (string[] & string[] & { [
|
|
15584
|
-
active_permission_ids?: (string[] & string[] & { [
|
|
15585
|
-
remove_permission_ids?: (string[] & string[] & { [
|
|
15586
|
-
} & { [
|
|
15632
|
+
user_add_ids?: (string[] & string[] & { [K_534 in Exclude<keyof I_1["role_event"]["user_add_ids"], keyof string[]>]: never; }) | undefined;
|
|
15633
|
+
user_remove_ids?: (string[] & string[] & { [K_535 in Exclude<keyof I_1["role_event"]["user_remove_ids"], keyof string[]>]: never; }) | undefined;
|
|
15634
|
+
active_permission_ids?: (string[] & string[] & { [K_536 in Exclude<keyof I_1["role_event"]["active_permission_ids"], keyof string[]>]: never; }) | undefined;
|
|
15635
|
+
remove_permission_ids?: (string[] & string[] & { [K_537 in Exclude<keyof I_1["role_event"]["remove_permission_ids"], keyof string[]>]: never; }) | undefined;
|
|
15636
|
+
} & { [K_538 in Exclude<keyof I_1["role_event"], keyof RoleEvent>]: never; }) | undefined;
|
|
15587
15637
|
event_emoji?: ({
|
|
15588
15638
|
id?: string | undefined;
|
|
15589
15639
|
clan_id?: string | undefined;
|
|
@@ -15606,7 +15656,7 @@ export declare const Envelope: {
|
|
|
15606
15656
|
logo?: string | undefined;
|
|
15607
15657
|
clan_name?: string | undefined;
|
|
15608
15658
|
is_for_sale?: boolean | undefined;
|
|
15609
|
-
} & { [
|
|
15659
|
+
} & { [K_539 in Exclude<keyof I_1["event_emoji"], keyof EventEmoji>]: never; }) | undefined;
|
|
15610
15660
|
streaming_joined_event?: ({
|
|
15611
15661
|
clan_id?: string | undefined;
|
|
15612
15662
|
clan_name?: string | undefined;
|
|
@@ -15623,7 +15673,7 @@ export declare const Envelope: {
|
|
|
15623
15673
|
user_id?: string | undefined;
|
|
15624
15674
|
streaming_channel_label?: string | undefined;
|
|
15625
15675
|
streaming_channel_id?: string | undefined;
|
|
15626
|
-
} & { [
|
|
15676
|
+
} & { [K_540 in Exclude<keyof I_1["streaming_joined_event"], keyof StreamingJoinedEvent>]: never; }) | undefined;
|
|
15627
15677
|
streaming_leaved_event?: ({
|
|
15628
15678
|
id?: string | undefined;
|
|
15629
15679
|
clan_id?: string | undefined;
|
|
@@ -15634,7 +15684,7 @@ export declare const Envelope: {
|
|
|
15634
15684
|
clan_id?: string | undefined;
|
|
15635
15685
|
streaming_channel_id?: string | undefined;
|
|
15636
15686
|
streaming_user_id?: string | undefined;
|
|
15637
|
-
} & { [
|
|
15687
|
+
} & { [K_541 in Exclude<keyof I_1["streaming_leaved_event"], keyof StreamingLeavedEvent>]: never; }) | undefined;
|
|
15638
15688
|
streaming_started_event?: ({
|
|
15639
15689
|
clan_id?: string | undefined;
|
|
15640
15690
|
channel_id?: string | undefined;
|
|
@@ -15645,14 +15695,14 @@ export declare const Envelope: {
|
|
|
15645
15695
|
channel_id?: string | undefined;
|
|
15646
15696
|
streaming_url?: string | undefined;
|
|
15647
15697
|
is_streaming?: boolean | undefined;
|
|
15648
|
-
} & { [
|
|
15698
|
+
} & { [K_542 in Exclude<keyof I_1["streaming_started_event"], keyof StreamingStartedEvent>]: never; }) | undefined;
|
|
15649
15699
|
streaming_ended_event?: ({
|
|
15650
15700
|
clan_id?: string | undefined;
|
|
15651
15701
|
channel_id?: string | undefined;
|
|
15652
15702
|
} & {
|
|
15653
15703
|
clan_id?: string | undefined;
|
|
15654
15704
|
channel_id?: string | undefined;
|
|
15655
|
-
} & { [
|
|
15705
|
+
} & { [K_543 in Exclude<keyof I_1["streaming_ended_event"], keyof StreamingEndedEvent>]: never; }) | undefined;
|
|
15656
15706
|
permission_set_event?: ({
|
|
15657
15707
|
caller?: string | undefined;
|
|
15658
15708
|
role_id?: string | undefined;
|
|
@@ -15680,12 +15730,12 @@ export declare const Envelope: {
|
|
|
15680
15730
|
permission_id?: string | undefined;
|
|
15681
15731
|
slug?: string | undefined;
|
|
15682
15732
|
type?: number | undefined;
|
|
15683
|
-
} & { [
|
|
15733
|
+
} & { [K_544 in Exclude<keyof I_1["permission_set_event"]["permission_updates"][number], keyof PermissionUpdate>]: never; })[] & { [K_545 in Exclude<keyof I_1["permission_set_event"]["permission_updates"], keyof {
|
|
15684
15734
|
permission_id?: string | undefined;
|
|
15685
15735
|
slug?: string | undefined;
|
|
15686
15736
|
type?: number | undefined;
|
|
15687
15737
|
}[]>]: never; }) | undefined;
|
|
15688
|
-
} & { [
|
|
15738
|
+
} & { [K_546 in Exclude<keyof I_1["permission_set_event"], keyof PermissionSetEvent>]: never; }) | undefined;
|
|
15689
15739
|
permission_changed_event?: ({
|
|
15690
15740
|
user_id?: string | undefined;
|
|
15691
15741
|
channel_id?: string | undefined;
|
|
@@ -15719,7 +15769,7 @@ export declare const Envelope: {
|
|
|
15719
15769
|
permission_id?: string | undefined;
|
|
15720
15770
|
slug?: string | undefined;
|
|
15721
15771
|
type?: number | undefined;
|
|
15722
|
-
} & { [
|
|
15772
|
+
} & { [K_547 in Exclude<keyof I_1["permission_changed_event"]["add_permissions"][number], keyof PermissionUpdate>]: never; })[] & { [K_548 in Exclude<keyof I_1["permission_changed_event"]["add_permissions"], keyof {
|
|
15723
15773
|
permission_id?: string | undefined;
|
|
15724
15774
|
slug?: string | undefined;
|
|
15725
15775
|
type?: number | undefined;
|
|
@@ -15736,7 +15786,7 @@ export declare const Envelope: {
|
|
|
15736
15786
|
permission_id?: string | undefined;
|
|
15737
15787
|
slug?: string | undefined;
|
|
15738
15788
|
type?: number | undefined;
|
|
15739
|
-
} & { [
|
|
15789
|
+
} & { [K_549 in Exclude<keyof I_1["permission_changed_event"]["remove_permissions"][number], keyof PermissionUpdate>]: never; })[] & { [K_550 in Exclude<keyof I_1["permission_changed_event"]["remove_permissions"], keyof {
|
|
15740
15790
|
permission_id?: string | undefined;
|
|
15741
15791
|
slug?: string | undefined;
|
|
15742
15792
|
type?: number | undefined;
|
|
@@ -15753,12 +15803,12 @@ export declare const Envelope: {
|
|
|
15753
15803
|
permission_id?: string | undefined;
|
|
15754
15804
|
slug?: string | undefined;
|
|
15755
15805
|
type?: number | undefined;
|
|
15756
|
-
} & { [
|
|
15806
|
+
} & { [K_551 in Exclude<keyof I_1["permission_changed_event"]["default_permissions"][number], keyof PermissionUpdate>]: never; })[] & { [K_552 in Exclude<keyof I_1["permission_changed_event"]["default_permissions"], keyof {
|
|
15757
15807
|
permission_id?: string | undefined;
|
|
15758
15808
|
slug?: string | undefined;
|
|
15759
15809
|
type?: number | undefined;
|
|
15760
15810
|
}[]>]: never; }) | undefined;
|
|
15761
|
-
} & { [
|
|
15811
|
+
} & { [K_553 in Exclude<keyof I_1["permission_changed_event"], keyof PermissionChangedEvent>]: never; }) | undefined;
|
|
15762
15812
|
token_sent_event?: ({
|
|
15763
15813
|
sender_id?: string | undefined;
|
|
15764
15814
|
sender_name?: string | undefined;
|
|
@@ -15775,7 +15825,7 @@ export declare const Envelope: {
|
|
|
15775
15825
|
note?: string | undefined;
|
|
15776
15826
|
extra_attribute?: string | undefined;
|
|
15777
15827
|
transaction_id?: string | undefined;
|
|
15778
|
-
} & { [
|
|
15828
|
+
} & { [K_554 in Exclude<keyof I_1["token_sent_event"], keyof TokenSentEvent>]: never; }) | undefined;
|
|
15779
15829
|
message_button_clicked?: ({
|
|
15780
15830
|
message_id?: string | undefined;
|
|
15781
15831
|
channel_id?: string | undefined;
|
|
@@ -15790,7 +15840,7 @@ export declare const Envelope: {
|
|
|
15790
15840
|
sender_id?: string | undefined;
|
|
15791
15841
|
user_id?: string | undefined;
|
|
15792
15842
|
extra_data?: string | undefined;
|
|
15793
|
-
} & { [
|
|
15843
|
+
} & { [K_555 in Exclude<keyof I_1["message_button_clicked"], keyof MessageButtonClicked>]: never; }) | undefined;
|
|
15794
15844
|
unmute_event?: ({
|
|
15795
15845
|
channel_id?: string | undefined;
|
|
15796
15846
|
category_id?: string | undefined;
|
|
@@ -15799,7 +15849,7 @@ export declare const Envelope: {
|
|
|
15799
15849
|
channel_id?: string | undefined;
|
|
15800
15850
|
category_id?: string | undefined;
|
|
15801
15851
|
clan_id?: string | undefined;
|
|
15802
|
-
} & { [
|
|
15852
|
+
} & { [K_556 in Exclude<keyof I_1["unmute_event"], keyof UnmuteEvent>]: never; }) | undefined;
|
|
15803
15853
|
webrtc_signaling_fwd?: ({
|
|
15804
15854
|
receiver_id?: string | undefined;
|
|
15805
15855
|
data_type?: number | undefined;
|
|
@@ -15812,7 +15862,7 @@ export declare const Envelope: {
|
|
|
15812
15862
|
json_data?: string | undefined;
|
|
15813
15863
|
channel_id?: string | undefined;
|
|
15814
15864
|
caller_id?: string | undefined;
|
|
15815
|
-
} & { [
|
|
15865
|
+
} & { [K_557 in Exclude<keyof I_1["webrtc_signaling_fwd"], keyof WebrtcSignalingFwd>]: never; }) | undefined;
|
|
15816
15866
|
list_activity?: ({
|
|
15817
15867
|
acts?: {
|
|
15818
15868
|
user_id?: string | undefined;
|
|
@@ -15852,7 +15902,7 @@ export declare const Envelope: {
|
|
|
15852
15902
|
end_time?: Date | undefined;
|
|
15853
15903
|
application_id?: string | undefined;
|
|
15854
15904
|
status?: number | undefined;
|
|
15855
|
-
} & { [
|
|
15905
|
+
} & { [K_558 in Exclude<keyof I_1["list_activity"]["acts"][number], keyof UserActivity>]: never; })[] & { [K_559 in Exclude<keyof I_1["list_activity"]["acts"], keyof {
|
|
15856
15906
|
user_id?: string | undefined;
|
|
15857
15907
|
activity_name?: string | undefined;
|
|
15858
15908
|
activity_type?: number | undefined;
|
|
@@ -15862,7 +15912,7 @@ export declare const Envelope: {
|
|
|
15862
15912
|
application_id?: string | undefined;
|
|
15863
15913
|
status?: number | undefined;
|
|
15864
15914
|
}[]>]: never; }) | undefined;
|
|
15865
|
-
} & { [
|
|
15915
|
+
} & { [K_560 in Exclude<keyof I_1["list_activity"], "acts">]: never; }) | undefined;
|
|
15866
15916
|
dropdown_box_selected?: ({
|
|
15867
15917
|
message_id?: string | undefined;
|
|
15868
15918
|
channel_id?: string | undefined;
|
|
@@ -15876,8 +15926,8 @@ export declare const Envelope: {
|
|
|
15876
15926
|
selectbox_id?: string | undefined;
|
|
15877
15927
|
sender_id?: string | undefined;
|
|
15878
15928
|
user_id?: string | undefined;
|
|
15879
|
-
values?: (string[] & string[] & { [
|
|
15880
|
-
} & { [
|
|
15929
|
+
values?: (string[] & string[] & { [K_561 in Exclude<keyof I_1["dropdown_box_selected"]["values"], keyof string[]>]: never; }) | undefined;
|
|
15930
|
+
} & { [K_562 in Exclude<keyof I_1["dropdown_box_selected"], keyof DropdownBoxSelected>]: never; }) | undefined;
|
|
15881
15931
|
incoming_call_push?: ({
|
|
15882
15932
|
receiver_id?: string | undefined;
|
|
15883
15933
|
json_data?: string | undefined;
|
|
@@ -15888,7 +15938,7 @@ export declare const Envelope: {
|
|
|
15888
15938
|
json_data?: string | undefined;
|
|
15889
15939
|
channel_id?: string | undefined;
|
|
15890
15940
|
caller_id?: string | undefined;
|
|
15891
|
-
} & { [
|
|
15941
|
+
} & { [K_563 in Exclude<keyof I_1["incoming_call_push"], keyof IncomingCallPush>]: never; }) | undefined;
|
|
15892
15942
|
sd_topic_event?: ({
|
|
15893
15943
|
id?: string | undefined;
|
|
15894
15944
|
clan_id?: string | undefined;
|
|
@@ -15960,8 +16010,8 @@ export declare const Envelope: {
|
|
|
15960
16010
|
reference?: string | undefined;
|
|
15961
16011
|
mention?: string | undefined;
|
|
15962
16012
|
reaction?: string | undefined;
|
|
15963
|
-
repliers?: (string[] & string[] & { [
|
|
15964
|
-
} & { [
|
|
16013
|
+
repliers?: (string[] & string[] & { [K_564 in Exclude<keyof I_1["sd_topic_event"]["last_sent_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
16014
|
+
} & { [K_565 in Exclude<keyof I_1["sd_topic_event"]["last_sent_message"], keyof ChannelMessageHeader>]: never; }) | undefined;
|
|
15965
16015
|
message?: ({
|
|
15966
16016
|
clan_id?: string | undefined;
|
|
15967
16017
|
channel_id?: string | undefined;
|
|
@@ -16018,9 +16068,9 @@ export declare const Envelope: {
|
|
|
16018
16068
|
hide_editted?: boolean | undefined;
|
|
16019
16069
|
is_public?: boolean | undefined;
|
|
16020
16070
|
topic_id?: string | undefined;
|
|
16021
|
-
} & { [
|
|
16022
|
-
} & { [
|
|
16023
|
-
follow_event?: ({} & {} & { [
|
|
16071
|
+
} & { [K_566 in Exclude<keyof I_1["sd_topic_event"]["message"], keyof ChannelMessage>]: never; }) | undefined;
|
|
16072
|
+
} & { [K_567 in Exclude<keyof I_1["sd_topic_event"], keyof SdTopicEvent>]: never; }) | undefined;
|
|
16073
|
+
follow_event?: ({} & {} & { [K_568 in Exclude<keyof I_1["follow_event"], never>]: never; }) | undefined;
|
|
16024
16074
|
channel_app_event?: ({
|
|
16025
16075
|
user_id?: string | undefined;
|
|
16026
16076
|
username?: string | undefined;
|
|
@@ -16033,19 +16083,19 @@ export declare const Envelope: {
|
|
|
16033
16083
|
clan_id?: string | undefined;
|
|
16034
16084
|
channel_id?: string | undefined;
|
|
16035
16085
|
action?: number | undefined;
|
|
16036
|
-
} & { [
|
|
16086
|
+
} & { [K_569 in Exclude<keyof I_1["channel_app_event"], keyof ChannelAppEvent>]: never; }) | undefined;
|
|
16037
16087
|
user_status_event?: ({
|
|
16038
16088
|
user_id?: string | undefined;
|
|
16039
16089
|
custom_status?: string | undefined;
|
|
16040
16090
|
} & {
|
|
16041
16091
|
user_id?: string | undefined;
|
|
16042
16092
|
custom_status?: string | undefined;
|
|
16043
|
-
} & { [
|
|
16093
|
+
} & { [K_570 in Exclude<keyof I_1["user_status_event"], keyof UserStatusEvent>]: never; }) | undefined;
|
|
16044
16094
|
remove_friend?: ({
|
|
16045
16095
|
user_id?: string | undefined;
|
|
16046
16096
|
} & {
|
|
16047
16097
|
user_id?: string | undefined;
|
|
16048
|
-
} & { [
|
|
16098
|
+
} & { [K_571 in Exclude<keyof I_1["remove_friend"], "user_id">]: never; }) | undefined;
|
|
16049
16099
|
webhook_event?: ({
|
|
16050
16100
|
id?: string | undefined;
|
|
16051
16101
|
webhook_name?: string | undefined;
|
|
@@ -16070,7 +16120,7 @@ export declare const Envelope: {
|
|
|
16070
16120
|
avatar?: string | undefined;
|
|
16071
16121
|
status?: number | undefined;
|
|
16072
16122
|
clan_id?: string | undefined;
|
|
16073
|
-
} & { [
|
|
16123
|
+
} & { [K_572 in Exclude<keyof I_1["webhook_event"], keyof Webhook>]: never; }) | undefined;
|
|
16074
16124
|
noti_user_channel?: ({
|
|
16075
16125
|
id?: string | undefined;
|
|
16076
16126
|
notification_setting_type?: number | undefined;
|
|
@@ -16083,7 +16133,7 @@ export declare const Envelope: {
|
|
|
16083
16133
|
time_mute?: Date | undefined;
|
|
16084
16134
|
active?: number | undefined;
|
|
16085
16135
|
channel_id?: string | undefined;
|
|
16086
|
-
} & { [
|
|
16136
|
+
} & { [K_573 in Exclude<keyof I_1["noti_user_channel"], keyof NotificationUserChannel>]: never; }) | undefined;
|
|
16087
16137
|
join_channel_app_data?: ({
|
|
16088
16138
|
user_id?: string | undefined;
|
|
16089
16139
|
username?: string | undefined;
|
|
@@ -16092,7 +16142,7 @@ export declare const Envelope: {
|
|
|
16092
16142
|
user_id?: string | undefined;
|
|
16093
16143
|
username?: string | undefined;
|
|
16094
16144
|
hash?: string | undefined;
|
|
16095
|
-
} & { [
|
|
16145
|
+
} & { [K_574 in Exclude<keyof I_1["join_channel_app_data"], keyof JoinChannelAppData>]: never; }) | undefined;
|
|
16096
16146
|
canvas_event?: ({
|
|
16097
16147
|
id?: string | undefined;
|
|
16098
16148
|
title?: string | undefined;
|
|
@@ -16111,7 +16161,7 @@ export declare const Envelope: {
|
|
|
16111
16161
|
is_default?: boolean | undefined;
|
|
16112
16162
|
channel_id?: string | undefined;
|
|
16113
16163
|
status?: number | undefined;
|
|
16114
|
-
} & { [
|
|
16164
|
+
} & { [K_575 in Exclude<keyof I_1["canvas_event"], keyof ChannelCanvas>]: never; }) | undefined;
|
|
16115
16165
|
unpin_message_event?: ({
|
|
16116
16166
|
id?: string | undefined;
|
|
16117
16167
|
message_id?: string | undefined;
|
|
@@ -16122,7 +16172,7 @@ export declare const Envelope: {
|
|
|
16122
16172
|
message_id?: string | undefined;
|
|
16123
16173
|
channel_id?: string | undefined;
|
|
16124
16174
|
clan_id?: string | undefined;
|
|
16125
|
-
} & { [
|
|
16175
|
+
} & { [K_576 in Exclude<keyof I_1["unpin_message_event"], keyof UnpinMessageEvent>]: never; }) | undefined;
|
|
16126
16176
|
category_event?: ({
|
|
16127
16177
|
creator_id?: string | undefined;
|
|
16128
16178
|
clan_id?: string | undefined;
|
|
@@ -16135,7 +16185,7 @@ export declare const Envelope: {
|
|
|
16135
16185
|
category_name?: string | undefined;
|
|
16136
16186
|
id?: string | undefined;
|
|
16137
16187
|
status?: number | undefined;
|
|
16138
|
-
} & { [
|
|
16188
|
+
} & { [K_577 in Exclude<keyof I_1["category_event"], keyof CategoryEvent>]: never; }) | undefined;
|
|
16139
16189
|
handle_participant_meet_state_event?: ({
|
|
16140
16190
|
clan_id?: string | undefined;
|
|
16141
16191
|
channel_id?: string | undefined;
|
|
@@ -16146,12 +16196,12 @@ export declare const Envelope: {
|
|
|
16146
16196
|
channel_id?: string | undefined;
|
|
16147
16197
|
display_name?: string | undefined;
|
|
16148
16198
|
state?: number | undefined;
|
|
16149
|
-
} & { [
|
|
16199
|
+
} & { [K_578 in Exclude<keyof I_1["handle_participant_meet_state_event"], keyof HandleParticipantMeetStateEvent>]: never; }) | undefined;
|
|
16150
16200
|
delete_account_event?: ({
|
|
16151
16201
|
user_id?: string | undefined;
|
|
16152
16202
|
} & {
|
|
16153
16203
|
user_id?: string | undefined;
|
|
16154
|
-
} & { [
|
|
16204
|
+
} & { [K_579 in Exclude<keyof I_1["delete_account_event"], "user_id">]: never; }) | undefined;
|
|
16155
16205
|
ephemeral_message_send?: ({
|
|
16156
16206
|
message?: {
|
|
16157
16207
|
clan_id?: string | undefined;
|
|
@@ -16271,7 +16321,7 @@ export declare const Envelope: {
|
|
|
16271
16321
|
create_time?: Date | undefined;
|
|
16272
16322
|
s?: number | undefined;
|
|
16273
16323
|
e?: number | undefined;
|
|
16274
|
-
} & { [
|
|
16324
|
+
} & { [K_580 in Exclude<keyof I_1["ephemeral_message_send"]["message"]["mentions"][number], keyof MessageMention>]: never; })[] & { [K_581 in Exclude<keyof I_1["ephemeral_message_send"]["message"]["mentions"], keyof {
|
|
16275
16325
|
id?: string | undefined;
|
|
16276
16326
|
user_id?: string | undefined;
|
|
16277
16327
|
username?: string | undefined;
|
|
@@ -16305,7 +16355,7 @@ export declare const Envelope: {
|
|
|
16305
16355
|
width?: number | undefined;
|
|
16306
16356
|
height?: number | undefined;
|
|
16307
16357
|
thumbnail?: string | undefined;
|
|
16308
|
-
} & { [
|
|
16358
|
+
} & { [K_582 in Exclude<keyof I_1["ephemeral_message_send"]["message"]["attachments"][number], keyof MessageAttachment>]: never; })[] & { [K_583 in Exclude<keyof I_1["ephemeral_message_send"]["message"]["attachments"], keyof {
|
|
16309
16359
|
filename?: string | undefined;
|
|
16310
16360
|
size?: number | undefined;
|
|
16311
16361
|
url?: string | undefined;
|
|
@@ -16347,7 +16397,7 @@ export declare const Envelope: {
|
|
|
16347
16397
|
mesages_sender_avatar?: string | undefined;
|
|
16348
16398
|
message_sender_clan_nick?: string | undefined;
|
|
16349
16399
|
message_sender_display_name?: string | undefined;
|
|
16350
|
-
} & { [
|
|
16400
|
+
} & { [K_584 in Exclude<keyof I_1["ephemeral_message_send"]["message"]["references"][number], keyof MessageRef>]: never; })[] & { [K_585 in Exclude<keyof I_1["ephemeral_message_send"]["message"]["references"], keyof {
|
|
16351
16401
|
message_id?: string | undefined;
|
|
16352
16402
|
message_ref_id?: string | undefined;
|
|
16353
16403
|
content?: string | undefined;
|
|
@@ -16366,25 +16416,25 @@ export declare const Envelope: {
|
|
|
16366
16416
|
is_public?: boolean | undefined;
|
|
16367
16417
|
code?: number | undefined;
|
|
16368
16418
|
topic_id?: string | undefined;
|
|
16369
|
-
} & { [
|
|
16419
|
+
} & { [K_586 in Exclude<keyof I_1["ephemeral_message_send"]["message"], keyof ChannelMessageSend>]: never; }) | undefined;
|
|
16370
16420
|
receiver_id?: string | undefined;
|
|
16371
|
-
} & { [
|
|
16421
|
+
} & { [K_587 in Exclude<keyof I_1["ephemeral_message_send"], keyof EphemeralMessageSend>]: never; }) | undefined;
|
|
16372
16422
|
block_friend?: ({
|
|
16373
16423
|
user_id?: string | undefined;
|
|
16374
16424
|
} & {
|
|
16375
16425
|
user_id?: string | undefined;
|
|
16376
|
-
} & { [
|
|
16426
|
+
} & { [K_588 in Exclude<keyof I_1["block_friend"], "user_id">]: never; }) | undefined;
|
|
16377
16427
|
voice_reaction_send?: ({
|
|
16378
16428
|
emojis?: string[] | undefined;
|
|
16379
16429
|
channel_id?: string | undefined;
|
|
16380
16430
|
sender_id?: string | undefined;
|
|
16381
16431
|
media_type?: number | undefined;
|
|
16382
16432
|
} & {
|
|
16383
|
-
emojis?: (string[] & string[] & { [
|
|
16433
|
+
emojis?: (string[] & string[] & { [K_589 in Exclude<keyof I_1["voice_reaction_send"]["emojis"], keyof string[]>]: never; }) | undefined;
|
|
16384
16434
|
channel_id?: string | undefined;
|
|
16385
16435
|
sender_id?: string | undefined;
|
|
16386
16436
|
media_type?: number | undefined;
|
|
16387
|
-
} & { [
|
|
16437
|
+
} & { [K_590 in Exclude<keyof I_1["voice_reaction_send"], keyof VoiceReactionSend>]: never; }) | undefined;
|
|
16388
16438
|
mark_as_read?: ({
|
|
16389
16439
|
channel_id?: string | undefined;
|
|
16390
16440
|
category_id?: string | undefined;
|
|
@@ -16393,7 +16443,7 @@ export declare const Envelope: {
|
|
|
16393
16443
|
channel_id?: string | undefined;
|
|
16394
16444
|
category_id?: string | undefined;
|
|
16395
16445
|
clan_id?: string | undefined;
|
|
16396
|
-
} & { [
|
|
16446
|
+
} & { [K_591 in Exclude<keyof I_1["mark_as_read"], keyof MarkAsRead>]: never; }) | undefined;
|
|
16397
16447
|
list_data_socket?: ({
|
|
16398
16448
|
api_name?: string | undefined;
|
|
16399
16449
|
list_clan_req?: {
|
|
@@ -16416,6 +16466,9 @@ export declare const Envelope: {
|
|
|
16416
16466
|
clan_order?: number | undefined;
|
|
16417
16467
|
is_community?: boolean | undefined;
|
|
16418
16468
|
community_banner?: string | undefined;
|
|
16469
|
+
description?: string | undefined;
|
|
16470
|
+
about?: string | undefined;
|
|
16471
|
+
short_url?: string | undefined;
|
|
16419
16472
|
}[] | undefined;
|
|
16420
16473
|
} | undefined;
|
|
16421
16474
|
list_thread_req?: {
|
|
@@ -17263,7 +17316,7 @@ export declare const Envelope: {
|
|
|
17263
17316
|
limit?: number | undefined;
|
|
17264
17317
|
state?: number | undefined;
|
|
17265
17318
|
cursor?: string | undefined;
|
|
17266
|
-
} & { [
|
|
17319
|
+
} & { [K_592 in Exclude<keyof I_1["list_data_socket"]["list_clan_req"], keyof ListClanDescRequest>]: never; }) | undefined;
|
|
17267
17320
|
clan_desc_list?: ({
|
|
17268
17321
|
clandesc?: {
|
|
17269
17322
|
creator_id?: string | undefined;
|
|
@@ -17279,6 +17332,9 @@ export declare const Envelope: {
|
|
|
17279
17332
|
clan_order?: number | undefined;
|
|
17280
17333
|
is_community?: boolean | undefined;
|
|
17281
17334
|
community_banner?: string | undefined;
|
|
17335
|
+
description?: string | undefined;
|
|
17336
|
+
about?: string | undefined;
|
|
17337
|
+
short_url?: string | undefined;
|
|
17282
17338
|
}[] | undefined;
|
|
17283
17339
|
} & {
|
|
17284
17340
|
clandesc?: ({
|
|
@@ -17295,6 +17351,9 @@ export declare const Envelope: {
|
|
|
17295
17351
|
clan_order?: number | undefined;
|
|
17296
17352
|
is_community?: boolean | undefined;
|
|
17297
17353
|
community_banner?: string | undefined;
|
|
17354
|
+
description?: string | undefined;
|
|
17355
|
+
about?: string | undefined;
|
|
17356
|
+
short_url?: string | undefined;
|
|
17298
17357
|
}[] & ({
|
|
17299
17358
|
creator_id?: string | undefined;
|
|
17300
17359
|
clan_name?: string | undefined;
|
|
@@ -17309,6 +17368,9 @@ export declare const Envelope: {
|
|
|
17309
17368
|
clan_order?: number | undefined;
|
|
17310
17369
|
is_community?: boolean | undefined;
|
|
17311
17370
|
community_banner?: string | undefined;
|
|
17371
|
+
description?: string | undefined;
|
|
17372
|
+
about?: string | undefined;
|
|
17373
|
+
short_url?: string | undefined;
|
|
17312
17374
|
} & {
|
|
17313
17375
|
creator_id?: string | undefined;
|
|
17314
17376
|
clan_name?: string | undefined;
|
|
@@ -17323,7 +17385,10 @@ export declare const Envelope: {
|
|
|
17323
17385
|
clan_order?: number | undefined;
|
|
17324
17386
|
is_community?: boolean | undefined;
|
|
17325
17387
|
community_banner?: string | undefined;
|
|
17326
|
-
|
|
17388
|
+
description?: string | undefined;
|
|
17389
|
+
about?: string | undefined;
|
|
17390
|
+
short_url?: string | undefined;
|
|
17391
|
+
} & { [K_593 in Exclude<keyof I_1["list_data_socket"]["clan_desc_list"]["clandesc"][number], keyof import("../api/api").ClanDesc>]: never; })[] & { [K_594 in Exclude<keyof I_1["list_data_socket"]["clan_desc_list"]["clandesc"], keyof {
|
|
17327
17392
|
creator_id?: string | undefined;
|
|
17328
17393
|
clan_name?: string | undefined;
|
|
17329
17394
|
logo?: string | undefined;
|
|
@@ -17337,8 +17402,11 @@ export declare const Envelope: {
|
|
|
17337
17402
|
clan_order?: number | undefined;
|
|
17338
17403
|
is_community?: boolean | undefined;
|
|
17339
17404
|
community_banner?: string | undefined;
|
|
17405
|
+
description?: string | undefined;
|
|
17406
|
+
about?: string | undefined;
|
|
17407
|
+
short_url?: string | undefined;
|
|
17340
17408
|
}[]>]: never; }) | undefined;
|
|
17341
|
-
} & { [
|
|
17409
|
+
} & { [K_595 in Exclude<keyof I_1["list_data_socket"]["clan_desc_list"], "clandesc">]: never; }) | undefined;
|
|
17342
17410
|
list_thread_req?: ({
|
|
17343
17411
|
limit?: number | undefined;
|
|
17344
17412
|
state?: number | undefined;
|
|
@@ -17353,7 +17421,7 @@ export declare const Envelope: {
|
|
|
17353
17421
|
channel_id?: string | undefined;
|
|
17354
17422
|
thread_id?: string | undefined;
|
|
17355
17423
|
page?: number | undefined;
|
|
17356
|
-
} & { [
|
|
17424
|
+
} & { [K_596 in Exclude<keyof I_1["list_data_socket"]["list_thread_req"], keyof ListThreadRequest>]: never; }) | undefined;
|
|
17357
17425
|
channel_desc_list?: ({
|
|
17358
17426
|
channeldesc?: {
|
|
17359
17427
|
clan_id?: string | undefined;
|
|
@@ -17527,8 +17595,8 @@ export declare const Envelope: {
|
|
|
17527
17595
|
creator_id?: string | undefined;
|
|
17528
17596
|
channel_label?: string | undefined;
|
|
17529
17597
|
channel_private?: number | undefined;
|
|
17530
|
-
channel_avatar?: (string[] & string[] & { [
|
|
17531
|
-
user_id?: (string[] & string[] & { [
|
|
17598
|
+
channel_avatar?: (string[] & string[] & { [K_597 in Exclude<keyof I_1["list_data_socket"]["channel_desc_list"]["channeldesc"][number]["channel_avatar"], keyof string[]>]: never; }) | undefined;
|
|
17599
|
+
user_id?: (string[] & string[] & { [K_598 in Exclude<keyof I_1["list_data_socket"]["channel_desc_list"]["channeldesc"][number]["user_id"], keyof string[]>]: never; }) | undefined;
|
|
17532
17600
|
last_sent_message?: ({
|
|
17533
17601
|
id?: string | undefined;
|
|
17534
17602
|
timestamp_seconds?: number | undefined;
|
|
@@ -17548,8 +17616,8 @@ export declare const Envelope: {
|
|
|
17548
17616
|
reference?: string | undefined;
|
|
17549
17617
|
mention?: string | undefined;
|
|
17550
17618
|
reaction?: string | undefined;
|
|
17551
|
-
repliers?: (string[] & string[] & { [
|
|
17552
|
-
} & { [
|
|
17619
|
+
repliers?: (string[] & string[] & { [K_599 in Exclude<keyof I_1["list_data_socket"]["channel_desc_list"]["channeldesc"][number]["last_sent_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
17620
|
+
} & { [K_600 in Exclude<keyof I_1["list_data_socket"]["channel_desc_list"]["channeldesc"][number]["last_sent_message"], keyof ChannelMessageHeader>]: never; }) | undefined;
|
|
17553
17621
|
last_seen_message?: ({
|
|
17554
17622
|
id?: string | undefined;
|
|
17555
17623
|
timestamp_seconds?: number | undefined;
|
|
@@ -17569,27 +17637,27 @@ export declare const Envelope: {
|
|
|
17569
17637
|
reference?: string | undefined;
|
|
17570
17638
|
mention?: string | undefined;
|
|
17571
17639
|
reaction?: string | undefined;
|
|
17572
|
-
repliers?: (string[] & string[] & { [
|
|
17573
|
-
} & { [
|
|
17574
|
-
is_online?: (boolean[] & boolean[] & { [
|
|
17640
|
+
repliers?: (string[] & string[] & { [K_601 in Exclude<keyof I_1["list_data_socket"]["channel_desc_list"]["channeldesc"][number]["last_seen_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
17641
|
+
} & { [K_602 in Exclude<keyof I_1["list_data_socket"]["channel_desc_list"]["channeldesc"][number]["last_seen_message"], keyof ChannelMessageHeader>]: never; }) | undefined;
|
|
17642
|
+
is_online?: (boolean[] & boolean[] & { [K_603 in Exclude<keyof I_1["list_data_socket"]["channel_desc_list"]["channeldesc"][number]["is_online"], keyof boolean[]>]: never; }) | undefined;
|
|
17575
17643
|
meeting_code?: string | undefined;
|
|
17576
17644
|
count_mess_unread?: number | undefined;
|
|
17577
17645
|
active?: number | undefined;
|
|
17578
17646
|
last_pin_message?: string | undefined;
|
|
17579
|
-
usernames?: (string[] & string[] & { [
|
|
17647
|
+
usernames?: (string[] & string[] & { [K_604 in Exclude<keyof I_1["list_data_socket"]["channel_desc_list"]["channeldesc"][number]["usernames"], keyof string[]>]: never; }) | undefined;
|
|
17580
17648
|
creator_name?: string | undefined;
|
|
17581
17649
|
create_time_seconds?: number | undefined;
|
|
17582
17650
|
update_time_seconds?: number | undefined;
|
|
17583
|
-
metadata?: (string[] & string[] & { [
|
|
17584
|
-
about_me?: (string[] & string[] & { [
|
|
17651
|
+
metadata?: (string[] & string[] & { [K_605 in Exclude<keyof I_1["list_data_socket"]["channel_desc_list"]["channeldesc"][number]["metadata"], keyof string[]>]: never; }) | undefined;
|
|
17652
|
+
about_me?: (string[] & string[] & { [K_606 in Exclude<keyof I_1["list_data_socket"]["channel_desc_list"]["channeldesc"][number]["about_me"], keyof string[]>]: never; }) | undefined;
|
|
17585
17653
|
clan_name?: string | undefined;
|
|
17586
17654
|
app_id?: string | undefined;
|
|
17587
17655
|
is_mute?: boolean | undefined;
|
|
17588
17656
|
age_restricted?: number | undefined;
|
|
17589
17657
|
topic?: string | undefined;
|
|
17590
17658
|
e2ee?: number | undefined;
|
|
17591
|
-
display_names?: (string[] & string[] & { [
|
|
17592
|
-
} & { [
|
|
17659
|
+
display_names?: (string[] & string[] & { [K_607 in Exclude<keyof I_1["list_data_socket"]["channel_desc_list"]["channeldesc"][number]["display_names"], keyof string[]>]: never; }) | undefined;
|
|
17660
|
+
} & { [K_608 in Exclude<keyof I_1["list_data_socket"]["channel_desc_list"]["channeldesc"][number], keyof ChannelDescription1>]: never; })[] & { [K_609 in Exclude<keyof I_1["list_data_socket"]["channel_desc_list"]["channeldesc"], keyof {
|
|
17593
17661
|
clan_id?: string | undefined;
|
|
17594
17662
|
parent_id?: string | undefined;
|
|
17595
17663
|
channel_id?: string | undefined;
|
|
@@ -17646,28 +17714,28 @@ export declare const Envelope: {
|
|
|
17646
17714
|
prev_cursor?: string | undefined;
|
|
17647
17715
|
cacheable_cursor?: string | undefined;
|
|
17648
17716
|
page?: number | undefined;
|
|
17649
|
-
} & { [
|
|
17717
|
+
} & { [K_610 in Exclude<keyof I_1["list_data_socket"]["channel_desc_list"], keyof ChannelDescList>]: never; }) | undefined;
|
|
17650
17718
|
list_channel_users_uc_req?: ({
|
|
17651
17719
|
channel_id?: string | undefined;
|
|
17652
17720
|
limit?: number | undefined;
|
|
17653
17721
|
} & {
|
|
17654
17722
|
channel_id?: string | undefined;
|
|
17655
17723
|
limit?: number | undefined;
|
|
17656
|
-
} & { [
|
|
17724
|
+
} & { [K_611 in Exclude<keyof I_1["list_data_socket"]["list_channel_users_uc_req"], keyof AllUsersAddChannelRequest>]: never; }) | undefined;
|
|
17657
17725
|
channel_users_uc_list?: ({
|
|
17658
17726
|
channel_id?: string | undefined;
|
|
17659
17727
|
user_ids?: string[] | undefined;
|
|
17660
17728
|
limit?: number | undefined;
|
|
17661
17729
|
} & {
|
|
17662
17730
|
channel_id?: string | undefined;
|
|
17663
|
-
user_ids?: (string[] & string[] & { [
|
|
17731
|
+
user_ids?: (string[] & string[] & { [K_612 in Exclude<keyof I_1["list_data_socket"]["channel_users_uc_list"]["user_ids"], keyof string[]>]: never; }) | undefined;
|
|
17664
17732
|
limit?: number | undefined;
|
|
17665
|
-
} & { [
|
|
17733
|
+
} & { [K_613 in Exclude<keyof I_1["list_data_socket"]["channel_users_uc_list"], keyof AllUsersAddChannelResponse>]: never; }) | undefined;
|
|
17666
17734
|
list_channel_detail_req?: ({
|
|
17667
17735
|
channel_id?: string | undefined;
|
|
17668
17736
|
} & {
|
|
17669
17737
|
channel_id?: string | undefined;
|
|
17670
|
-
} & { [
|
|
17738
|
+
} & { [K_614 in Exclude<keyof I_1["list_data_socket"]["list_channel_detail_req"], "channel_id">]: never; }) | undefined;
|
|
17671
17739
|
channel_desc?: ({
|
|
17672
17740
|
clan_id?: string | undefined;
|
|
17673
17741
|
parent_id?: string | undefined;
|
|
@@ -17730,8 +17798,8 @@ export declare const Envelope: {
|
|
|
17730
17798
|
creator_id?: string | undefined;
|
|
17731
17799
|
channel_label?: string | undefined;
|
|
17732
17800
|
channel_private?: number | undefined;
|
|
17733
|
-
channel_avatar?: (string[] & string[] & { [
|
|
17734
|
-
user_id?: (string[] & string[] & { [
|
|
17801
|
+
channel_avatar?: (string[] & string[] & { [K_615 in Exclude<keyof I_1["list_data_socket"]["channel_desc"]["channel_avatar"], keyof string[]>]: never; }) | undefined;
|
|
17802
|
+
user_id?: (string[] & string[] & { [K_616 in Exclude<keyof I_1["list_data_socket"]["channel_desc"]["user_id"], keyof string[]>]: never; }) | undefined;
|
|
17735
17803
|
last_sent_message?: ({
|
|
17736
17804
|
id?: string | undefined;
|
|
17737
17805
|
timestamp_seconds?: number | undefined;
|
|
@@ -17751,8 +17819,8 @@ export declare const Envelope: {
|
|
|
17751
17819
|
reference?: string | undefined;
|
|
17752
17820
|
mention?: string | undefined;
|
|
17753
17821
|
reaction?: string | undefined;
|
|
17754
|
-
repliers?: (string[] & string[] & { [
|
|
17755
|
-
} & { [
|
|
17822
|
+
repliers?: (string[] & string[] & { [K_617 in Exclude<keyof I_1["list_data_socket"]["channel_desc"]["last_sent_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
17823
|
+
} & { [K_618 in Exclude<keyof I_1["list_data_socket"]["channel_desc"]["last_sent_message"], keyof ChannelMessageHeader>]: never; }) | undefined;
|
|
17756
17824
|
last_seen_message?: ({
|
|
17757
17825
|
id?: string | undefined;
|
|
17758
17826
|
timestamp_seconds?: number | undefined;
|
|
@@ -17772,27 +17840,27 @@ export declare const Envelope: {
|
|
|
17772
17840
|
reference?: string | undefined;
|
|
17773
17841
|
mention?: string | undefined;
|
|
17774
17842
|
reaction?: string | undefined;
|
|
17775
|
-
repliers?: (string[] & string[] & { [
|
|
17776
|
-
} & { [
|
|
17777
|
-
is_online?: (boolean[] & boolean[] & { [
|
|
17843
|
+
repliers?: (string[] & string[] & { [K_619 in Exclude<keyof I_1["list_data_socket"]["channel_desc"]["last_seen_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
17844
|
+
} & { [K_620 in Exclude<keyof I_1["list_data_socket"]["channel_desc"]["last_seen_message"], keyof ChannelMessageHeader>]: never; }) | undefined;
|
|
17845
|
+
is_online?: (boolean[] & boolean[] & { [K_621 in Exclude<keyof I_1["list_data_socket"]["channel_desc"]["is_online"], keyof boolean[]>]: never; }) | undefined;
|
|
17778
17846
|
meeting_code?: string | undefined;
|
|
17779
17847
|
count_mess_unread?: number | undefined;
|
|
17780
17848
|
active?: number | undefined;
|
|
17781
17849
|
last_pin_message?: string | undefined;
|
|
17782
|
-
usernames?: (string[] & string[] & { [
|
|
17850
|
+
usernames?: (string[] & string[] & { [K_622 in Exclude<keyof I_1["list_data_socket"]["channel_desc"]["usernames"], keyof string[]>]: never; }) | undefined;
|
|
17783
17851
|
creator_name?: string | undefined;
|
|
17784
17852
|
create_time_seconds?: number | undefined;
|
|
17785
17853
|
update_time_seconds?: number | undefined;
|
|
17786
|
-
metadata?: (string[] & string[] & { [
|
|
17787
|
-
about_me?: (string[] & string[] & { [
|
|
17854
|
+
metadata?: (string[] & string[] & { [K_623 in Exclude<keyof I_1["list_data_socket"]["channel_desc"]["metadata"], keyof string[]>]: never; }) | undefined;
|
|
17855
|
+
about_me?: (string[] & string[] & { [K_624 in Exclude<keyof I_1["list_data_socket"]["channel_desc"]["about_me"], keyof string[]>]: never; }) | undefined;
|
|
17788
17856
|
clan_name?: string | undefined;
|
|
17789
17857
|
app_id?: string | undefined;
|
|
17790
17858
|
is_mute?: boolean | undefined;
|
|
17791
17859
|
age_restricted?: number | undefined;
|
|
17792
17860
|
topic?: string | undefined;
|
|
17793
17861
|
e2ee?: number | undefined;
|
|
17794
|
-
display_names?: (string[] & string[] & { [
|
|
17795
|
-
} & { [
|
|
17862
|
+
display_names?: (string[] & string[] & { [K_625 in Exclude<keyof I_1["list_data_socket"]["channel_desc"]["display_names"], keyof string[]>]: never; }) | undefined;
|
|
17863
|
+
} & { [K_626 in Exclude<keyof I_1["list_data_socket"]["channel_desc"], keyof ChannelDescription1>]: never; }) | undefined;
|
|
17796
17864
|
list_channel_req?: ({
|
|
17797
17865
|
limit?: number | undefined;
|
|
17798
17866
|
state?: number | undefined;
|
|
@@ -17805,7 +17873,7 @@ export declare const Envelope: {
|
|
|
17805
17873
|
cursor?: string | undefined;
|
|
17806
17874
|
clan_id?: string | undefined;
|
|
17807
17875
|
channel_type?: number | undefined;
|
|
17808
|
-
} & { [
|
|
17876
|
+
} & { [K_627 in Exclude<keyof I_1["list_data_socket"]["list_channel_req"], keyof ListChannelDescsRequest>]: never; }) | undefined;
|
|
17809
17877
|
list_channel_message_req?: ({
|
|
17810
17878
|
clan_id?: string | undefined;
|
|
17811
17879
|
channel_id?: string | undefined;
|
|
@@ -17820,7 +17888,7 @@ export declare const Envelope: {
|
|
|
17820
17888
|
limit?: number | undefined;
|
|
17821
17889
|
direction?: number | undefined;
|
|
17822
17890
|
topic_id?: string | undefined;
|
|
17823
|
-
} & { [
|
|
17891
|
+
} & { [K_628 in Exclude<keyof I_1["list_data_socket"]["list_channel_message_req"], keyof ListChannelMessagesRequest>]: never; }) | undefined;
|
|
17824
17892
|
channel_message_list?: ({
|
|
17825
17893
|
messages?: {
|
|
17826
17894
|
clan_id?: string | undefined;
|
|
@@ -17958,7 +18026,7 @@ export declare const Envelope: {
|
|
|
17958
18026
|
hide_editted?: boolean | undefined;
|
|
17959
18027
|
is_public?: boolean | undefined;
|
|
17960
18028
|
topic_id?: string | undefined;
|
|
17961
|
-
} & { [
|
|
18029
|
+
} & { [K_629 in Exclude<keyof I_1["list_data_socket"]["channel_message_list"]["messages"][number], keyof ChannelMessage>]: never; })[] & { [K_630 in Exclude<keyof I_1["list_data_socket"]["channel_message_list"]["messages"], keyof {
|
|
17962
18030
|
clan_id?: string | undefined;
|
|
17963
18031
|
channel_id?: string | undefined;
|
|
17964
18032
|
message_id?: string | undefined;
|
|
@@ -18006,8 +18074,8 @@ export declare const Envelope: {
|
|
|
18006
18074
|
reference?: string | undefined;
|
|
18007
18075
|
mention?: string | undefined;
|
|
18008
18076
|
reaction?: string | undefined;
|
|
18009
|
-
repliers?: (string[] & string[] & { [
|
|
18010
|
-
} & { [
|
|
18077
|
+
repliers?: (string[] & string[] & { [K_631 in Exclude<keyof I_1["list_data_socket"]["channel_message_list"]["last_seen_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
18078
|
+
} & { [K_632 in Exclude<keyof I_1["list_data_socket"]["channel_message_list"]["last_seen_message"], keyof ChannelMessageHeader>]: never; }) | undefined;
|
|
18011
18079
|
last_sent_message?: ({
|
|
18012
18080
|
id?: string | undefined;
|
|
18013
18081
|
timestamp_seconds?: number | undefined;
|
|
@@ -18027,9 +18095,9 @@ export declare const Envelope: {
|
|
|
18027
18095
|
reference?: string | undefined;
|
|
18028
18096
|
mention?: string | undefined;
|
|
18029
18097
|
reaction?: string | undefined;
|
|
18030
|
-
repliers?: (string[] & string[] & { [
|
|
18031
|
-
} & { [
|
|
18032
|
-
} & { [
|
|
18098
|
+
repliers?: (string[] & string[] & { [K_633 in Exclude<keyof I_1["list_data_socket"]["channel_message_list"]["last_sent_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
18099
|
+
} & { [K_634 in Exclude<keyof I_1["list_data_socket"]["channel_message_list"]["last_sent_message"], keyof ChannelMessageHeader>]: never; }) | undefined;
|
|
18100
|
+
} & { [K_635 in Exclude<keyof I_1["list_data_socket"]["channel_message_list"], keyof ChannelMessageList>]: never; }) | undefined;
|
|
18033
18101
|
list_channel_users_req?: ({
|
|
18034
18102
|
clan_id?: string | undefined;
|
|
18035
18103
|
channel_id?: string | undefined;
|
|
@@ -18044,7 +18112,7 @@ export declare const Envelope: {
|
|
|
18044
18112
|
limit?: number | undefined;
|
|
18045
18113
|
state?: number | undefined;
|
|
18046
18114
|
cursor?: string | undefined;
|
|
18047
|
-
} & { [
|
|
18115
|
+
} & { [K_636 in Exclude<keyof I_1["list_data_socket"]["list_channel_users_req"], keyof ListChannelUsersRequest>]: never; }) | undefined;
|
|
18048
18116
|
voice_user_list?: ({
|
|
18049
18117
|
voice_channel_users?: {
|
|
18050
18118
|
id?: string | undefined;
|
|
@@ -18068,13 +18136,13 @@ export declare const Envelope: {
|
|
|
18068
18136
|
user_id?: string | undefined;
|
|
18069
18137
|
channel_id?: string | undefined;
|
|
18070
18138
|
participant?: string | undefined;
|
|
18071
|
-
} & { [
|
|
18139
|
+
} & { [K_637 in Exclude<keyof I_1["list_data_socket"]["voice_user_list"]["voice_channel_users"][number], keyof import("../api/api").VoiceChannelUser>]: never; })[] & { [K_638 in Exclude<keyof I_1["list_data_socket"]["voice_user_list"]["voice_channel_users"], keyof {
|
|
18072
18140
|
id?: string | undefined;
|
|
18073
18141
|
user_id?: string | undefined;
|
|
18074
18142
|
channel_id?: string | undefined;
|
|
18075
18143
|
participant?: string | undefined;
|
|
18076
18144
|
}[]>]: never; }) | undefined;
|
|
18077
|
-
} & { [
|
|
18145
|
+
} & { [K_639 in Exclude<keyof I_1["list_data_socket"]["voice_user_list"], "voice_channel_users">]: never; }) | undefined;
|
|
18078
18146
|
channel_user_list?: ({
|
|
18079
18147
|
channel_users?: {
|
|
18080
18148
|
user_id?: string | undefined;
|
|
@@ -18109,14 +18177,14 @@ export declare const Envelope: {
|
|
|
18109
18177
|
added_by?: string | undefined;
|
|
18110
18178
|
} & {
|
|
18111
18179
|
user_id?: string | undefined;
|
|
18112
|
-
role_id?: (string[] & string[] & { [
|
|
18180
|
+
role_id?: (string[] & string[] & { [K_640 in Exclude<keyof I_1["list_data_socket"]["channel_user_list"]["channel_users"][number]["role_id"], keyof string[]>]: never; }) | undefined;
|
|
18113
18181
|
id?: string | undefined;
|
|
18114
18182
|
thread_id?: string | undefined;
|
|
18115
18183
|
clan_nick?: string | undefined;
|
|
18116
18184
|
clan_avatar?: string | undefined;
|
|
18117
18185
|
clan_id?: string | undefined;
|
|
18118
18186
|
added_by?: string | undefined;
|
|
18119
|
-
} & { [
|
|
18187
|
+
} & { [K_641 in Exclude<keyof I_1["list_data_socket"]["channel_user_list"]["channel_users"][number], keyof import("../api/api").ChannelUserList_ChannelUser>]: never; })[] & { [K_642 in Exclude<keyof I_1["list_data_socket"]["channel_user_list"]["channel_users"], keyof {
|
|
18120
18188
|
user_id?: string | undefined;
|
|
18121
18189
|
role_id?: string[] | undefined;
|
|
18122
18190
|
id?: string | undefined;
|
|
@@ -18128,7 +18196,7 @@ export declare const Envelope: {
|
|
|
18128
18196
|
}[]>]: never; }) | undefined;
|
|
18129
18197
|
cursor?: string | undefined;
|
|
18130
18198
|
channel_id?: string | undefined;
|
|
18131
|
-
} & { [
|
|
18199
|
+
} & { [K_643 in Exclude<keyof I_1["list_data_socket"]["channel_user_list"], keyof ChannelUserList>]: never; }) | undefined;
|
|
18132
18200
|
list_channel_attachment_req?: ({
|
|
18133
18201
|
clan_id?: string | undefined;
|
|
18134
18202
|
channel_id?: string | undefined;
|
|
@@ -18147,7 +18215,7 @@ export declare const Envelope: {
|
|
|
18147
18215
|
before?: number | undefined;
|
|
18148
18216
|
after?: number | undefined;
|
|
18149
18217
|
around?: number | undefined;
|
|
18150
|
-
} & { [
|
|
18218
|
+
} & { [K_644 in Exclude<keyof I_1["list_data_socket"]["list_channel_attachment_req"], keyof ListChannelAttachmentRequest>]: never; }) | undefined;
|
|
18151
18219
|
channel_attachment_list?: ({
|
|
18152
18220
|
attachments?: {
|
|
18153
18221
|
id?: string | undefined;
|
|
@@ -18195,7 +18263,7 @@ export declare const Envelope: {
|
|
|
18195
18263
|
message_id?: string | undefined;
|
|
18196
18264
|
width?: number | undefined;
|
|
18197
18265
|
height?: number | undefined;
|
|
18198
|
-
} & { [
|
|
18266
|
+
} & { [K_645 in Exclude<keyof I_1["list_data_socket"]["channel_attachment_list"]["attachments"][number], keyof import("../api/api").ChannelAttachment>]: never; })[] & { [K_646 in Exclude<keyof I_1["list_data_socket"]["channel_attachment_list"]["attachments"], keyof {
|
|
18199
18267
|
id?: string | undefined;
|
|
18200
18268
|
filename?: string | undefined;
|
|
18201
18269
|
filetype?: string | undefined;
|
|
@@ -18207,14 +18275,14 @@ export declare const Envelope: {
|
|
|
18207
18275
|
width?: number | undefined;
|
|
18208
18276
|
height?: number | undefined;
|
|
18209
18277
|
}[]>]: never; }) | undefined;
|
|
18210
|
-
} & { [
|
|
18278
|
+
} & { [K_647 in Exclude<keyof I_1["list_data_socket"]["channel_attachment_list"], "attachments">]: never; }) | undefined;
|
|
18211
18279
|
hashtag_dm_req?: ({
|
|
18212
18280
|
user_id?: string[] | undefined;
|
|
18213
18281
|
limit?: number | undefined;
|
|
18214
18282
|
} & {
|
|
18215
|
-
user_id?: (string[] & string[] & { [
|
|
18283
|
+
user_id?: (string[] & string[] & { [K_648 in Exclude<keyof I_1["list_data_socket"]["hashtag_dm_req"]["user_id"], keyof string[]>]: never; }) | undefined;
|
|
18216
18284
|
limit?: number | undefined;
|
|
18217
|
-
} & { [
|
|
18285
|
+
} & { [K_649 in Exclude<keyof I_1["list_data_socket"]["hashtag_dm_req"], keyof HashtagDmListRequest>]: never; }) | undefined;
|
|
18218
18286
|
hashtag_dm_list?: ({
|
|
18219
18287
|
hashtag_dm?: {
|
|
18220
18288
|
channel_id?: string | undefined;
|
|
@@ -18254,7 +18322,7 @@ export declare const Envelope: {
|
|
|
18254
18322
|
type?: number | undefined;
|
|
18255
18323
|
channel_private?: number | undefined;
|
|
18256
18324
|
parent_id?: string | undefined;
|
|
18257
|
-
} & { [
|
|
18325
|
+
} & { [K_650 in Exclude<keyof I_1["list_data_socket"]["hashtag_dm_list"]["hashtag_dm"][number], keyof import("../api/api").HashtagDm>]: never; })[] & { [K_651 in Exclude<keyof I_1["list_data_socket"]["hashtag_dm_list"]["hashtag_dm"], keyof {
|
|
18258
18326
|
channel_id?: string | undefined;
|
|
18259
18327
|
channel_label?: string | undefined;
|
|
18260
18328
|
clan_id?: string | undefined;
|
|
@@ -18264,7 +18332,7 @@ export declare const Envelope: {
|
|
|
18264
18332
|
channel_private?: number | undefined;
|
|
18265
18333
|
parent_id?: string | undefined;
|
|
18266
18334
|
}[]>]: never; }) | undefined;
|
|
18267
|
-
} & { [
|
|
18335
|
+
} & { [K_652 in Exclude<keyof I_1["list_data_socket"]["hashtag_dm_list"], "hashtag_dm">]: never; }) | undefined;
|
|
18268
18336
|
channel_setting_req?: ({
|
|
18269
18337
|
clan_id?: string | undefined;
|
|
18270
18338
|
parent_id?: string | undefined;
|
|
@@ -18287,7 +18355,7 @@ export declare const Envelope: {
|
|
|
18287
18355
|
limit?: number | undefined;
|
|
18288
18356
|
page?: number | undefined;
|
|
18289
18357
|
channel_label?: string | undefined;
|
|
18290
|
-
} & { [
|
|
18358
|
+
} & { [K_653 in Exclude<keyof I_1["list_data_socket"]["channel_setting_req"], keyof ChannelSettingListRequest>]: never; }) | undefined;
|
|
18291
18359
|
channel_setting_list?: ({
|
|
18292
18360
|
clan_id?: string | undefined;
|
|
18293
18361
|
channel_count?: number | undefined;
|
|
@@ -18376,7 +18444,7 @@ export declare const Envelope: {
|
|
|
18376
18444
|
channel_private?: number | undefined;
|
|
18377
18445
|
channel_type?: number | undefined;
|
|
18378
18446
|
active?: number | undefined;
|
|
18379
|
-
user_ids?: (string[] & string[] & { [
|
|
18447
|
+
user_ids?: (string[] & string[] & { [K_654 in Exclude<keyof I_1["list_data_socket"]["channel_setting_list"]["channel_setting_list"][number]["user_ids"], keyof string[]>]: never; }) | undefined;
|
|
18380
18448
|
message_count?: number | undefined;
|
|
18381
18449
|
last_sent_message?: ({
|
|
18382
18450
|
id?: string | undefined;
|
|
@@ -18397,9 +18465,9 @@ export declare const Envelope: {
|
|
|
18397
18465
|
reference?: string | undefined;
|
|
18398
18466
|
mention?: string | undefined;
|
|
18399
18467
|
reaction?: string | undefined;
|
|
18400
|
-
repliers?: (string[] & string[] & { [
|
|
18401
|
-
} & { [
|
|
18402
|
-
} & { [
|
|
18468
|
+
repliers?: (string[] & string[] & { [K_655 in Exclude<keyof I_1["list_data_socket"]["channel_setting_list"]["channel_setting_list"][number]["last_sent_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
18469
|
+
} & { [K_656 in Exclude<keyof I_1["list_data_socket"]["channel_setting_list"]["channel_setting_list"][number]["last_sent_message"], keyof ChannelMessageHeader>]: never; }) | undefined;
|
|
18470
|
+
} & { [K_657 in Exclude<keyof I_1["list_data_socket"]["channel_setting_list"]["channel_setting_list"][number], keyof import("../api/api").ChannelSettingItem>]: never; })[] & { [K_658 in Exclude<keyof I_1["list_data_socket"]["channel_setting_list"]["channel_setting_list"], keyof {
|
|
18403
18471
|
id?: string | undefined;
|
|
18404
18472
|
creator_id?: string | undefined;
|
|
18405
18473
|
parent_id?: string | undefined;
|
|
@@ -18423,17 +18491,17 @@ export declare const Envelope: {
|
|
|
18423
18491
|
repliers?: string[] | undefined;
|
|
18424
18492
|
} | undefined;
|
|
18425
18493
|
}[]>]: never; }) | undefined;
|
|
18426
|
-
} & { [
|
|
18494
|
+
} & { [K_659 in Exclude<keyof I_1["list_data_socket"]["channel_setting_list"], keyof ChannelSettingListResponse>]: never; }) | undefined;
|
|
18427
18495
|
favorite_channel_req?: ({
|
|
18428
18496
|
clan_id?: string | undefined;
|
|
18429
18497
|
} & {
|
|
18430
18498
|
clan_id?: string | undefined;
|
|
18431
|
-
} & { [
|
|
18499
|
+
} & { [K_660 in Exclude<keyof I_1["list_data_socket"]["favorite_channel_req"], "clan_id">]: never; }) | undefined;
|
|
18432
18500
|
favorite_channel_list?: ({
|
|
18433
18501
|
channel_ids?: string[] | undefined;
|
|
18434
18502
|
} & {
|
|
18435
|
-
channel_ids?: (string[] & string[] & { [
|
|
18436
|
-
} & { [
|
|
18503
|
+
channel_ids?: (string[] & string[] & { [K_661 in Exclude<keyof I_1["list_data_socket"]["favorite_channel_list"]["channel_ids"], keyof string[]>]: never; }) | undefined;
|
|
18504
|
+
} & { [K_662 in Exclude<keyof I_1["list_data_socket"]["favorite_channel_list"], "channel_ids">]: never; }) | undefined;
|
|
18437
18505
|
search_thread_req?: ({
|
|
18438
18506
|
clan_id?: string | undefined;
|
|
18439
18507
|
channel_id?: string | undefined;
|
|
@@ -18442,12 +18510,12 @@ export declare const Envelope: {
|
|
|
18442
18510
|
clan_id?: string | undefined;
|
|
18443
18511
|
channel_id?: string | undefined;
|
|
18444
18512
|
label?: string | undefined;
|
|
18445
|
-
} & { [
|
|
18513
|
+
} & { [K_663 in Exclude<keyof I_1["list_data_socket"]["search_thread_req"], keyof SearchThreadRequest>]: never; }) | undefined;
|
|
18446
18514
|
notification_channel?: ({
|
|
18447
18515
|
channel_id?: string | undefined;
|
|
18448
18516
|
} & {
|
|
18449
18517
|
channel_id?: string | undefined;
|
|
18450
|
-
} & { [
|
|
18518
|
+
} & { [K_664 in Exclude<keyof I_1["list_data_socket"]["notification_channel"], "channel_id">]: never; }) | undefined;
|
|
18451
18519
|
notificaion_user_channel?: ({
|
|
18452
18520
|
id?: string | undefined;
|
|
18453
18521
|
notification_setting_type?: number | undefined;
|
|
@@ -18460,24 +18528,24 @@ export declare const Envelope: {
|
|
|
18460
18528
|
time_mute?: Date | undefined;
|
|
18461
18529
|
active?: number | undefined;
|
|
18462
18530
|
channel_id?: string | undefined;
|
|
18463
|
-
} & { [
|
|
18531
|
+
} & { [K_665 in Exclude<keyof I_1["list_data_socket"]["notificaion_user_channel"], keyof NotificationUserChannel>]: never; }) | undefined;
|
|
18464
18532
|
notification_category?: ({
|
|
18465
18533
|
category_id?: string | undefined;
|
|
18466
18534
|
} & {
|
|
18467
18535
|
category_id?: string | undefined;
|
|
18468
|
-
} & { [
|
|
18536
|
+
} & { [K_666 in Exclude<keyof I_1["list_data_socket"]["notification_category"], "category_id">]: never; }) | undefined;
|
|
18469
18537
|
notification_clan?: ({
|
|
18470
18538
|
clan_id?: string | undefined;
|
|
18471
18539
|
} & {
|
|
18472
18540
|
clan_id?: string | undefined;
|
|
18473
|
-
} & { [
|
|
18541
|
+
} & { [K_667 in Exclude<keyof I_1["list_data_socket"]["notification_clan"], "clan_id">]: never; }) | undefined;
|
|
18474
18542
|
notification_setting?: ({
|
|
18475
18543
|
id?: string | undefined;
|
|
18476
18544
|
notification_setting_type?: number | undefined;
|
|
18477
18545
|
} & {
|
|
18478
18546
|
id?: string | undefined;
|
|
18479
18547
|
notification_setting_type?: number | undefined;
|
|
18480
|
-
} & { [
|
|
18548
|
+
} & { [K_668 in Exclude<keyof I_1["list_data_socket"]["notification_setting"], keyof NotificationSetting>]: never; }) | undefined;
|
|
18481
18549
|
notification_message?: ({
|
|
18482
18550
|
id?: string | undefined;
|
|
18483
18551
|
user_id?: string | undefined;
|
|
@@ -18486,7 +18554,7 @@ export declare const Envelope: {
|
|
|
18486
18554
|
id?: string | undefined;
|
|
18487
18555
|
user_id?: string | undefined;
|
|
18488
18556
|
channel_id?: string | undefined;
|
|
18489
|
-
} & { [
|
|
18557
|
+
} & { [K_669 in Exclude<keyof I_1["list_data_socket"]["notification_message"], keyof NotifiReactMessage>]: never; }) | undefined;
|
|
18490
18558
|
noti_channel_cat_setting_list?: ({
|
|
18491
18559
|
notification_channel_category_settings_list?: {
|
|
18492
18560
|
id?: string | undefined;
|
|
@@ -18514,14 +18582,14 @@ export declare const Envelope: {
|
|
|
18514
18582
|
notification_setting_type?: number | undefined;
|
|
18515
18583
|
channel_category_title?: string | undefined;
|
|
18516
18584
|
action?: number | undefined;
|
|
18517
|
-
} & { [
|
|
18585
|
+
} & { [K_670 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_671 in Exclude<keyof I_1["list_data_socket"]["noti_channel_cat_setting_list"]["notification_channel_category_settings_list"], keyof {
|
|
18518
18586
|
id?: string | undefined;
|
|
18519
18587
|
channel_category_label?: string | undefined;
|
|
18520
18588
|
notification_setting_type?: number | undefined;
|
|
18521
18589
|
channel_category_title?: string | undefined;
|
|
18522
18590
|
action?: number | undefined;
|
|
18523
18591
|
}[]>]: never; }) | undefined;
|
|
18524
|
-
} & { [
|
|
18592
|
+
} & { [K_672 in Exclude<keyof I_1["list_data_socket"]["noti_channel_cat_setting_list"], "notification_channel_category_settings_list">]: never; }) | undefined;
|
|
18525
18593
|
list_notification_req?: ({
|
|
18526
18594
|
limit?: number | undefined;
|
|
18527
18595
|
clan_id?: string | undefined;
|
|
@@ -18534,7 +18602,7 @@ export declare const Envelope: {
|
|
|
18534
18602
|
notification_id?: string | undefined;
|
|
18535
18603
|
category?: number | undefined;
|
|
18536
18604
|
direction?: number | undefined;
|
|
18537
|
-
} & { [
|
|
18605
|
+
} & { [K_673 in Exclude<keyof I_1["list_data_socket"]["list_notification_req"], keyof ListNotificationsRequest>]: never; }) | undefined;
|
|
18538
18606
|
notification_list?: ({
|
|
18539
18607
|
notifications?: {
|
|
18540
18608
|
id?: string | undefined;
|
|
@@ -18814,8 +18882,8 @@ export declare const Envelope: {
|
|
|
18814
18882
|
creator_id?: string | undefined;
|
|
18815
18883
|
channel_label?: string | undefined;
|
|
18816
18884
|
channel_private?: number | undefined;
|
|
18817
|
-
channel_avatar?: (string[] & string[] & { [
|
|
18818
|
-
user_id?: (string[] & string[] & { [
|
|
18885
|
+
channel_avatar?: (string[] & string[] & { [K_674 in Exclude<keyof I_1["list_data_socket"]["notification_list"]["notifications"][number]["channel"]["channel_avatar"], keyof string[]>]: never; }) | undefined;
|
|
18886
|
+
user_id?: (string[] & string[] & { [K_675 in Exclude<keyof I_1["list_data_socket"]["notification_list"]["notifications"][number]["channel"]["user_id"], keyof string[]>]: never; }) | undefined;
|
|
18819
18887
|
last_sent_message?: ({
|
|
18820
18888
|
id?: string | undefined;
|
|
18821
18889
|
timestamp_seconds?: number | undefined;
|
|
@@ -18835,8 +18903,8 @@ export declare const Envelope: {
|
|
|
18835
18903
|
reference?: string | undefined;
|
|
18836
18904
|
mention?: string | undefined;
|
|
18837
18905
|
reaction?: string | undefined;
|
|
18838
|
-
repliers?: (string[] & string[] & { [
|
|
18839
|
-
} & { [
|
|
18906
|
+
repliers?: (string[] & string[] & { [K_676 in Exclude<keyof I_1["list_data_socket"]["notification_list"]["notifications"][number]["channel"]["last_sent_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
18907
|
+
} & { [K_677 in Exclude<keyof I_1["list_data_socket"]["notification_list"]["notifications"][number]["channel"]["last_sent_message"], keyof ChannelMessageHeader>]: never; }) | undefined;
|
|
18840
18908
|
last_seen_message?: ({
|
|
18841
18909
|
id?: string | undefined;
|
|
18842
18910
|
timestamp_seconds?: number | undefined;
|
|
@@ -18856,30 +18924,30 @@ export declare const Envelope: {
|
|
|
18856
18924
|
reference?: string | undefined;
|
|
18857
18925
|
mention?: string | undefined;
|
|
18858
18926
|
reaction?: string | undefined;
|
|
18859
|
-
repliers?: (string[] & string[] & { [
|
|
18860
|
-
} & { [
|
|
18861
|
-
is_online?: (boolean[] & boolean[] & { [
|
|
18927
|
+
repliers?: (string[] & string[] & { [K_678 in Exclude<keyof I_1["list_data_socket"]["notification_list"]["notifications"][number]["channel"]["last_seen_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
18928
|
+
} & { [K_679 in Exclude<keyof I_1["list_data_socket"]["notification_list"]["notifications"][number]["channel"]["last_seen_message"], keyof ChannelMessageHeader>]: never; }) | undefined;
|
|
18929
|
+
is_online?: (boolean[] & boolean[] & { [K_680 in Exclude<keyof I_1["list_data_socket"]["notification_list"]["notifications"][number]["channel"]["is_online"], keyof boolean[]>]: never; }) | undefined;
|
|
18862
18930
|
meeting_code?: string | undefined;
|
|
18863
18931
|
count_mess_unread?: number | undefined;
|
|
18864
18932
|
active?: number | undefined;
|
|
18865
18933
|
last_pin_message?: string | undefined;
|
|
18866
|
-
usernames?: (string[] & string[] & { [
|
|
18934
|
+
usernames?: (string[] & string[] & { [K_681 in Exclude<keyof I_1["list_data_socket"]["notification_list"]["notifications"][number]["channel"]["usernames"], keyof string[]>]: never; }) | undefined;
|
|
18867
18935
|
creator_name?: string | undefined;
|
|
18868
18936
|
create_time_seconds?: number | undefined;
|
|
18869
18937
|
update_time_seconds?: number | undefined;
|
|
18870
|
-
metadata?: (string[] & string[] & { [
|
|
18871
|
-
about_me?: (string[] & string[] & { [
|
|
18938
|
+
metadata?: (string[] & string[] & { [K_682 in Exclude<keyof I_1["list_data_socket"]["notification_list"]["notifications"][number]["channel"]["metadata"], keyof string[]>]: never; }) | undefined;
|
|
18939
|
+
about_me?: (string[] & string[] & { [K_683 in Exclude<keyof I_1["list_data_socket"]["notification_list"]["notifications"][number]["channel"]["about_me"], keyof string[]>]: never; }) | undefined;
|
|
18872
18940
|
clan_name?: string | undefined;
|
|
18873
18941
|
app_id?: string | undefined;
|
|
18874
18942
|
is_mute?: boolean | undefined;
|
|
18875
18943
|
age_restricted?: number | undefined;
|
|
18876
18944
|
topic?: string | undefined;
|
|
18877
18945
|
e2ee?: number | undefined;
|
|
18878
|
-
display_names?: (string[] & string[] & { [
|
|
18879
|
-
} & { [
|
|
18946
|
+
display_names?: (string[] & string[] & { [K_684 in Exclude<keyof I_1["list_data_socket"]["notification_list"]["notifications"][number]["channel"]["display_names"], keyof string[]>]: never; }) | undefined;
|
|
18947
|
+
} & { [K_685 in Exclude<keyof I_1["list_data_socket"]["notification_list"]["notifications"][number]["channel"], keyof ChannelDescription1>]: never; }) | undefined;
|
|
18880
18948
|
topic_id?: string | undefined;
|
|
18881
18949
|
category?: number | undefined;
|
|
18882
|
-
} & { [
|
|
18950
|
+
} & { [K_686 in Exclude<keyof I_1["list_data_socket"]["notification_list"]["notifications"][number], keyof Notification>]: never; })[] & { [K_687 in Exclude<keyof I_1["list_data_socket"]["notification_list"]["notifications"], keyof {
|
|
18883
18951
|
id?: string | undefined;
|
|
18884
18952
|
subject?: string | undefined;
|
|
18885
18953
|
content?: string | undefined;
|
|
@@ -18948,7 +19016,7 @@ export declare const Envelope: {
|
|
|
18948
19016
|
category?: number | undefined;
|
|
18949
19017
|
}[]>]: never; }) | undefined;
|
|
18950
19018
|
cacheable_cursor?: string | undefined;
|
|
18951
|
-
} & { [
|
|
19019
|
+
} & { [K_688 in Exclude<keyof I_1["list_data_socket"]["notification_list"], keyof NotificationList>]: never; }) | undefined;
|
|
18952
19020
|
sticker_list?: ({
|
|
18953
19021
|
stickers?: {
|
|
18954
19022
|
id?: string | undefined;
|
|
@@ -19000,7 +19068,7 @@ export declare const Envelope: {
|
|
|
19000
19068
|
clan_name?: string | undefined;
|
|
19001
19069
|
media_type?: number | undefined;
|
|
19002
19070
|
is_for_sale?: boolean | undefined;
|
|
19003
|
-
} & { [
|
|
19071
|
+
} & { [K_689 in Exclude<keyof I_1["list_data_socket"]["sticker_list"]["stickers"][number], keyof import("../api/api").ClanSticker>]: never; })[] & { [K_690 in Exclude<keyof I_1["list_data_socket"]["sticker_list"]["stickers"], keyof {
|
|
19004
19072
|
id?: string | undefined;
|
|
19005
19073
|
source?: string | undefined;
|
|
19006
19074
|
shortname?: string | undefined;
|
|
@@ -19013,7 +19081,7 @@ export declare const Envelope: {
|
|
|
19013
19081
|
media_type?: number | undefined;
|
|
19014
19082
|
is_for_sale?: boolean | undefined;
|
|
19015
19083
|
}[]>]: never; }) | undefined;
|
|
19016
|
-
} & { [
|
|
19084
|
+
} & { [K_691 in Exclude<keyof I_1["list_data_socket"]["sticker_list"], "stickers">]: never; }) | undefined;
|
|
19017
19085
|
emoji_recent_list?: ({
|
|
19018
19086
|
emoji_recents?: {
|
|
19019
19087
|
emoji_recents_id?: string | undefined;
|
|
@@ -19033,17 +19101,17 @@ export declare const Envelope: {
|
|
|
19033
19101
|
emoji_recents_id?: string | undefined;
|
|
19034
19102
|
emoji_id?: string | undefined;
|
|
19035
19103
|
update_time?: Date | undefined;
|
|
19036
|
-
} & { [
|
|
19104
|
+
} & { [K_692 in Exclude<keyof I_1["list_data_socket"]["emoji_recent_list"]["emoji_recents"][number], keyof import("../api/api").EmojiRecent>]: never; })[] & { [K_693 in Exclude<keyof I_1["list_data_socket"]["emoji_recent_list"]["emoji_recents"], keyof {
|
|
19037
19105
|
emoji_recents_id?: string | undefined;
|
|
19038
19106
|
emoji_id?: string | undefined;
|
|
19039
19107
|
update_time?: Date | undefined;
|
|
19040
19108
|
}[]>]: never; }) | undefined;
|
|
19041
|
-
} & { [
|
|
19109
|
+
} & { [K_694 in Exclude<keyof I_1["list_data_socket"]["emoji_recent_list"], "emoji_recents">]: never; }) | undefined;
|
|
19042
19110
|
clan_webhook_req?: ({
|
|
19043
19111
|
clan_id?: string | undefined;
|
|
19044
19112
|
} & {
|
|
19045
19113
|
clan_id?: string | undefined;
|
|
19046
|
-
} & { [
|
|
19114
|
+
} & { [K_695 in Exclude<keyof I_1["list_data_socket"]["clan_webhook_req"], "clan_id">]: never; }) | undefined;
|
|
19047
19115
|
clan_webhook_list?: ({
|
|
19048
19116
|
list_clan_webhooks?: {
|
|
19049
19117
|
id?: string | undefined;
|
|
@@ -19087,7 +19155,7 @@ export declare const Envelope: {
|
|
|
19087
19155
|
avatar?: string | undefined;
|
|
19088
19156
|
create_time?: string | undefined;
|
|
19089
19157
|
update_time?: string | undefined;
|
|
19090
|
-
} & { [
|
|
19158
|
+
} & { [K_696 in Exclude<keyof I_1["list_data_socket"]["clan_webhook_list"]["list_clan_webhooks"][number], keyof import("../api/api").ClanWebhook>]: never; })[] & { [K_697 in Exclude<keyof I_1["list_data_socket"]["clan_webhook_list"]["list_clan_webhooks"], keyof {
|
|
19091
19159
|
id?: string | undefined;
|
|
19092
19160
|
webhook_name?: string | undefined;
|
|
19093
19161
|
clan_id?: string | undefined;
|
|
@@ -19098,14 +19166,14 @@ export declare const Envelope: {
|
|
|
19098
19166
|
create_time?: string | undefined;
|
|
19099
19167
|
update_time?: string | undefined;
|
|
19100
19168
|
}[]>]: never; }) | undefined;
|
|
19101
|
-
} & { [
|
|
19169
|
+
} & { [K_698 in Exclude<keyof I_1["list_data_socket"]["clan_webhook_list"], "list_clan_webhooks">]: never; }) | undefined;
|
|
19102
19170
|
webhook_list_req?: ({
|
|
19103
19171
|
channel_id?: string | undefined;
|
|
19104
19172
|
clan_id?: string | undefined;
|
|
19105
19173
|
} & {
|
|
19106
19174
|
channel_id?: string | undefined;
|
|
19107
19175
|
clan_id?: string | undefined;
|
|
19108
|
-
} & { [
|
|
19176
|
+
} & { [K_699 in Exclude<keyof I_1["list_data_socket"]["webhook_list_req"], keyof WebhookListRequest>]: never; }) | undefined;
|
|
19109
19177
|
webhook_list?: ({
|
|
19110
19178
|
webhooks?: {
|
|
19111
19179
|
id?: string | undefined;
|
|
@@ -19157,7 +19225,7 @@ export declare const Envelope: {
|
|
|
19157
19225
|
avatar?: string | undefined;
|
|
19158
19226
|
status?: number | undefined;
|
|
19159
19227
|
clan_id?: string | undefined;
|
|
19160
|
-
} & { [
|
|
19228
|
+
} & { [K_700 in Exclude<keyof I_1["list_data_socket"]["webhook_list"]["webhooks"][number], keyof Webhook>]: never; })[] & { [K_701 in Exclude<keyof I_1["list_data_socket"]["webhook_list"]["webhooks"], keyof {
|
|
19161
19229
|
id?: string | undefined;
|
|
19162
19230
|
webhook_name?: string | undefined;
|
|
19163
19231
|
channel_id?: string | undefined;
|
|
@@ -19170,12 +19238,12 @@ export declare const Envelope: {
|
|
|
19170
19238
|
status?: number | undefined;
|
|
19171
19239
|
clan_id?: string | undefined;
|
|
19172
19240
|
}[]>]: never; }) | undefined;
|
|
19173
|
-
} & { [
|
|
19241
|
+
} & { [K_702 in Exclude<keyof I_1["list_data_socket"]["webhook_list"], "webhooks">]: never; }) | undefined;
|
|
19174
19242
|
permission_list_req?: ({
|
|
19175
19243
|
role_id?: string | undefined;
|
|
19176
19244
|
} & {
|
|
19177
19245
|
role_id?: string | undefined;
|
|
19178
|
-
} & { [
|
|
19246
|
+
} & { [K_703 in Exclude<keyof I_1["list_data_socket"]["permission_list_req"], "role_id">]: never; }) | undefined;
|
|
19179
19247
|
permission_list?: ({
|
|
19180
19248
|
permissions?: {
|
|
19181
19249
|
id?: string | undefined;
|
|
@@ -19212,7 +19280,7 @@ export declare const Envelope: {
|
|
|
19212
19280
|
active?: number | undefined;
|
|
19213
19281
|
scope?: number | undefined;
|
|
19214
19282
|
level?: number | undefined;
|
|
19215
|
-
} & { [
|
|
19283
|
+
} & { [K_704 in Exclude<keyof I_1["list_data_socket"]["permission_list"]["permissions"][number], keyof import("../api/api").Permission>]: never; })[] & { [K_705 in Exclude<keyof I_1["list_data_socket"]["permission_list"]["permissions"], keyof {
|
|
19216
19284
|
id?: string | undefined;
|
|
19217
19285
|
title?: string | undefined;
|
|
19218
19286
|
slug?: string | undefined;
|
|
@@ -19222,7 +19290,7 @@ export declare const Envelope: {
|
|
|
19222
19290
|
level?: number | undefined;
|
|
19223
19291
|
}[]>]: never; }) | undefined;
|
|
19224
19292
|
max_level_permission?: number | undefined;
|
|
19225
|
-
} & { [
|
|
19293
|
+
} & { [K_706 in Exclude<keyof I_1["list_data_socket"]["permission_list"], keyof PermissionList>]: never; }) | undefined;
|
|
19226
19294
|
role_user_req?: ({
|
|
19227
19295
|
role_id?: string | undefined;
|
|
19228
19296
|
limit?: number | undefined;
|
|
@@ -19231,7 +19299,7 @@ export declare const Envelope: {
|
|
|
19231
19299
|
role_id?: string | undefined;
|
|
19232
19300
|
limit?: number | undefined;
|
|
19233
19301
|
cursor?: string | undefined;
|
|
19234
|
-
} & { [
|
|
19302
|
+
} & { [K_707 in Exclude<keyof I_1["list_data_socket"]["role_user_req"], keyof ListRoleUsersRequest>]: never; }) | undefined;
|
|
19235
19303
|
role_user_list?: ({
|
|
19236
19304
|
role_users?: {
|
|
19237
19305
|
id?: string | undefined;
|
|
@@ -19268,7 +19336,7 @@ export declare const Envelope: {
|
|
|
19268
19336
|
lang_tag?: string | undefined;
|
|
19269
19337
|
location?: string | undefined;
|
|
19270
19338
|
online?: boolean | undefined;
|
|
19271
|
-
} & { [
|
|
19339
|
+
} & { [K_708 in Exclude<keyof I_1["list_data_socket"]["role_user_list"]["role_users"][number], keyof import("../api/api").RoleUserList_RoleUser>]: never; })[] & { [K_709 in Exclude<keyof I_1["list_data_socket"]["role_user_list"]["role_users"], keyof {
|
|
19272
19340
|
id?: string | undefined;
|
|
19273
19341
|
username?: string | undefined;
|
|
19274
19342
|
display_name?: string | undefined;
|
|
@@ -19278,14 +19346,14 @@ export declare const Envelope: {
|
|
|
19278
19346
|
online?: boolean | undefined;
|
|
19279
19347
|
}[]>]: never; }) | undefined;
|
|
19280
19348
|
cursor?: string | undefined;
|
|
19281
|
-
} & { [
|
|
19349
|
+
} & { [K_710 in Exclude<keyof I_1["list_data_socket"]["role_user_list"], keyof RoleUserList>]: never; }) | undefined;
|
|
19282
19350
|
permission_user_req?: ({
|
|
19283
19351
|
clan_id?: string | undefined;
|
|
19284
19352
|
channel_id?: string | undefined;
|
|
19285
19353
|
} & {
|
|
19286
19354
|
clan_id?: string | undefined;
|
|
19287
19355
|
channel_id?: string | undefined;
|
|
19288
|
-
} & { [
|
|
19356
|
+
} & { [K_711 in Exclude<keyof I_1["list_data_socket"]["permission_user_req"], keyof ListPermissionOfUsersRequest>]: never; }) | undefined;
|
|
19289
19357
|
role_list?: ({
|
|
19290
19358
|
roles?: {
|
|
19291
19359
|
id?: string | undefined;
|
|
@@ -19460,7 +19528,7 @@ export declare const Envelope: {
|
|
|
19460
19528
|
lang_tag?: string | undefined;
|
|
19461
19529
|
location?: string | undefined;
|
|
19462
19530
|
online?: boolean | undefined;
|
|
19463
|
-
} & { [
|
|
19531
|
+
} & { [K_712 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_713 in Exclude<keyof I_1["list_data_socket"]["role_list"]["roles"][number]["role_user_list"]["role_users"], keyof {
|
|
19464
19532
|
id?: string | undefined;
|
|
19465
19533
|
username?: string | undefined;
|
|
19466
19534
|
display_name?: string | undefined;
|
|
@@ -19470,7 +19538,7 @@ export declare const Envelope: {
|
|
|
19470
19538
|
online?: boolean | undefined;
|
|
19471
19539
|
}[]>]: never; }) | undefined;
|
|
19472
19540
|
cursor?: string | undefined;
|
|
19473
|
-
} & { [
|
|
19541
|
+
} & { [K_714 in Exclude<keyof I_1["list_data_socket"]["role_list"]["roles"][number]["role_user_list"], keyof RoleUserList>]: never; }) | undefined;
|
|
19474
19542
|
permission_list?: ({
|
|
19475
19543
|
permissions?: {
|
|
19476
19544
|
id?: string | undefined;
|
|
@@ -19507,7 +19575,7 @@ export declare const Envelope: {
|
|
|
19507
19575
|
active?: number | undefined;
|
|
19508
19576
|
scope?: number | undefined;
|
|
19509
19577
|
level?: number | undefined;
|
|
19510
|
-
} & { [
|
|
19578
|
+
} & { [K_715 in Exclude<keyof I_1["list_data_socket"]["role_list"]["roles"][number]["permission_list"]["permissions"][number], keyof import("../api/api").Permission>]: never; })[] & { [K_716 in Exclude<keyof I_1["list_data_socket"]["role_list"]["roles"][number]["permission_list"]["permissions"], keyof {
|
|
19511
19579
|
id?: string | undefined;
|
|
19512
19580
|
title?: string | undefined;
|
|
19513
19581
|
slug?: string | undefined;
|
|
@@ -19517,12 +19585,12 @@ export declare const Envelope: {
|
|
|
19517
19585
|
level?: number | undefined;
|
|
19518
19586
|
}[]>]: never; }) | undefined;
|
|
19519
19587
|
max_level_permission?: number | undefined;
|
|
19520
|
-
} & { [
|
|
19588
|
+
} & { [K_717 in Exclude<keyof I_1["list_data_socket"]["role_list"]["roles"][number]["permission_list"], keyof PermissionList>]: never; }) | undefined;
|
|
19521
19589
|
role_channel_active?: number | undefined;
|
|
19522
|
-
channel_ids?: (string[] & string[] & { [
|
|
19590
|
+
channel_ids?: (string[] & string[] & { [K_718 in Exclude<keyof I_1["list_data_socket"]["role_list"]["roles"][number]["channel_ids"], keyof string[]>]: never; }) | undefined;
|
|
19523
19591
|
max_level_permission?: number | undefined;
|
|
19524
19592
|
order_role?: number | undefined;
|
|
19525
|
-
} & { [
|
|
19593
|
+
} & { [K_719 in Exclude<keyof I_1["list_data_socket"]["role_list"]["roles"][number], keyof Role>]: never; })[] & { [K_720 in Exclude<keyof I_1["list_data_socket"]["role_list"]["roles"], keyof {
|
|
19526
19594
|
id?: string | undefined;
|
|
19527
19595
|
title?: string | undefined;
|
|
19528
19596
|
color?: string | undefined;
|
|
@@ -19566,7 +19634,7 @@ export declare const Envelope: {
|
|
|
19566
19634
|
next_cursor?: string | undefined;
|
|
19567
19635
|
prev_cursor?: string | undefined;
|
|
19568
19636
|
cacheable_cursor?: string | undefined;
|
|
19569
|
-
} & { [
|
|
19637
|
+
} & { [K_721 in Exclude<keyof I_1["list_data_socket"]["role_list"], keyof RoleList>]: never; }) | undefined;
|
|
19570
19638
|
role_list_event_req?: ({
|
|
19571
19639
|
clan_id?: string | undefined;
|
|
19572
19640
|
limit?: number | undefined;
|
|
@@ -19577,7 +19645,7 @@ export declare const Envelope: {
|
|
|
19577
19645
|
limit?: number | undefined;
|
|
19578
19646
|
state?: number | undefined;
|
|
19579
19647
|
cursor?: string | undefined;
|
|
19580
|
-
} & { [
|
|
19648
|
+
} & { [K_722 in Exclude<keyof I_1["list_data_socket"]["role_list_event_req"], keyof RoleListEventRequest>]: never; }) | undefined;
|
|
19581
19649
|
role_event_list?: ({
|
|
19582
19650
|
limit?: number | undefined;
|
|
19583
19651
|
state?: number | undefined;
|
|
@@ -19808,7 +19876,7 @@ export declare const Envelope: {
|
|
|
19808
19876
|
lang_tag?: string | undefined;
|
|
19809
19877
|
location?: string | undefined;
|
|
19810
19878
|
online?: boolean | undefined;
|
|
19811
|
-
} & { [
|
|
19879
|
+
} & { [K_723 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_724 in Exclude<keyof I_1["list_data_socket"]["role_event_list"]["roles"]["roles"][number]["role_user_list"]["role_users"], keyof {
|
|
19812
19880
|
id?: string | undefined;
|
|
19813
19881
|
username?: string | undefined;
|
|
19814
19882
|
display_name?: string | undefined;
|
|
@@ -19818,7 +19886,7 @@ export declare const Envelope: {
|
|
|
19818
19886
|
online?: boolean | undefined;
|
|
19819
19887
|
}[]>]: never; }) | undefined;
|
|
19820
19888
|
cursor?: string | undefined;
|
|
19821
|
-
} & { [
|
|
19889
|
+
} & { [K_725 in Exclude<keyof I_1["list_data_socket"]["role_event_list"]["roles"]["roles"][number]["role_user_list"], keyof RoleUserList>]: never; }) | undefined;
|
|
19822
19890
|
permission_list?: ({
|
|
19823
19891
|
permissions?: {
|
|
19824
19892
|
id?: string | undefined;
|
|
@@ -19855,7 +19923,7 @@ export declare const Envelope: {
|
|
|
19855
19923
|
active?: number | undefined;
|
|
19856
19924
|
scope?: number | undefined;
|
|
19857
19925
|
level?: number | undefined;
|
|
19858
|
-
} & { [
|
|
19926
|
+
} & { [K_726 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_727 in Exclude<keyof I_1["list_data_socket"]["role_event_list"]["roles"]["roles"][number]["permission_list"]["permissions"], keyof {
|
|
19859
19927
|
id?: string | undefined;
|
|
19860
19928
|
title?: string | undefined;
|
|
19861
19929
|
slug?: string | undefined;
|
|
@@ -19865,12 +19933,12 @@ export declare const Envelope: {
|
|
|
19865
19933
|
level?: number | undefined;
|
|
19866
19934
|
}[]>]: never; }) | undefined;
|
|
19867
19935
|
max_level_permission?: number | undefined;
|
|
19868
|
-
} & { [
|
|
19936
|
+
} & { [K_728 in Exclude<keyof I_1["list_data_socket"]["role_event_list"]["roles"]["roles"][number]["permission_list"], keyof PermissionList>]: never; }) | undefined;
|
|
19869
19937
|
role_channel_active?: number | undefined;
|
|
19870
|
-
channel_ids?: (string[] & string[] & { [
|
|
19938
|
+
channel_ids?: (string[] & string[] & { [K_729 in Exclude<keyof I_1["list_data_socket"]["role_event_list"]["roles"]["roles"][number]["channel_ids"], keyof string[]>]: never; }) | undefined;
|
|
19871
19939
|
max_level_permission?: number | undefined;
|
|
19872
19940
|
order_role?: number | undefined;
|
|
19873
|
-
} & { [
|
|
19941
|
+
} & { [K_730 in Exclude<keyof I_1["list_data_socket"]["role_event_list"]["roles"]["roles"][number], keyof Role>]: never; })[] & { [K_731 in Exclude<keyof I_1["list_data_socket"]["role_event_list"]["roles"]["roles"], keyof {
|
|
19874
19942
|
id?: string | undefined;
|
|
19875
19943
|
title?: string | undefined;
|
|
19876
19944
|
color?: string | undefined;
|
|
@@ -19914,15 +19982,15 @@ export declare const Envelope: {
|
|
|
19914
19982
|
next_cursor?: string | undefined;
|
|
19915
19983
|
prev_cursor?: string | undefined;
|
|
19916
19984
|
cacheable_cursor?: string | undefined;
|
|
19917
|
-
} & { [
|
|
19918
|
-
} & { [
|
|
19985
|
+
} & { [K_732 in Exclude<keyof I_1["list_data_socket"]["role_event_list"]["roles"], keyof RoleList>]: never; }) | undefined;
|
|
19986
|
+
} & { [K_733 in Exclude<keyof I_1["list_data_socket"]["role_event_list"], keyof RoleListEventResponse>]: never; }) | undefined;
|
|
19919
19987
|
user_permission_req?: ({
|
|
19920
19988
|
clan_id?: string | undefined;
|
|
19921
19989
|
channel_id?: string | undefined;
|
|
19922
19990
|
} & {
|
|
19923
19991
|
clan_id?: string | undefined;
|
|
19924
19992
|
channel_id?: string | undefined;
|
|
19925
|
-
} & { [
|
|
19993
|
+
} & { [K_734 in Exclude<keyof I_1["list_data_socket"]["user_permission_req"], keyof UserPermissionInChannelListRequest>]: never; }) | undefined;
|
|
19926
19994
|
user_permission_list?: ({
|
|
19927
19995
|
clan_id?: string | undefined;
|
|
19928
19996
|
channel_id?: string | undefined;
|
|
@@ -19977,7 +20045,7 @@ export declare const Envelope: {
|
|
|
19977
20045
|
active?: number | undefined;
|
|
19978
20046
|
scope?: number | undefined;
|
|
19979
20047
|
level?: number | undefined;
|
|
19980
|
-
} & { [
|
|
20048
|
+
} & { [K_735 in Exclude<keyof I_1["list_data_socket"]["user_permission_list"]["permissions"]["permissions"][number], keyof import("../api/api").Permission>]: never; })[] & { [K_736 in Exclude<keyof I_1["list_data_socket"]["user_permission_list"]["permissions"]["permissions"], keyof {
|
|
19981
20049
|
id?: string | undefined;
|
|
19982
20050
|
title?: string | undefined;
|
|
19983
20051
|
slug?: string | undefined;
|
|
@@ -19987,8 +20055,8 @@ export declare const Envelope: {
|
|
|
19987
20055
|
level?: number | undefined;
|
|
19988
20056
|
}[]>]: never; }) | undefined;
|
|
19989
20057
|
max_level_permission?: number | undefined;
|
|
19990
|
-
} & { [
|
|
19991
|
-
} & { [
|
|
20058
|
+
} & { [K_737 in Exclude<keyof I_1["list_data_socket"]["user_permission_list"]["permissions"], keyof PermissionList>]: never; }) | undefined;
|
|
20059
|
+
} & { [K_738 in Exclude<keyof I_1["list_data_socket"]["user_permission_list"], keyof UserPermissionInChannelListResponse>]: never; }) | undefined;
|
|
19992
20060
|
permission_role_req?: ({
|
|
19993
20061
|
role_id?: string | undefined;
|
|
19994
20062
|
channel_id?: string | undefined;
|
|
@@ -19997,7 +20065,7 @@ export declare const Envelope: {
|
|
|
19997
20065
|
role_id?: string | undefined;
|
|
19998
20066
|
channel_id?: string | undefined;
|
|
19999
20067
|
user_id?: string | undefined;
|
|
20000
|
-
} & { [
|
|
20068
|
+
} & { [K_739 in Exclude<keyof I_1["list_data_socket"]["permission_role_req"], keyof PermissionRoleChannelListEventRequest>]: never; }) | undefined;
|
|
20001
20069
|
permission_role_list?: ({
|
|
20002
20070
|
role_id?: string | undefined;
|
|
20003
20071
|
channel_id?: string | undefined;
|
|
@@ -20019,11 +20087,11 @@ export declare const Envelope: {
|
|
|
20019
20087
|
} & {
|
|
20020
20088
|
permission_id?: string | undefined;
|
|
20021
20089
|
active?: boolean | undefined;
|
|
20022
|
-
} & { [
|
|
20090
|
+
} & { [K_740 in Exclude<keyof I_1["list_data_socket"]["permission_role_list"]["permission_role_channel"][number], keyof import("../api/api").PermissionRoleChannel>]: never; })[] & { [K_741 in Exclude<keyof I_1["list_data_socket"]["permission_role_list"]["permission_role_channel"], keyof {
|
|
20023
20091
|
permission_id?: string | undefined;
|
|
20024
20092
|
active?: boolean | undefined;
|
|
20025
20093
|
}[]>]: never; }) | undefined;
|
|
20026
|
-
} & { [
|
|
20094
|
+
} & { [K_742 in Exclude<keyof I_1["list_data_socket"]["permission_role_list"], keyof PermissionRoleChannelListEventResponse>]: never; }) | undefined;
|
|
20027
20095
|
emoji_list?: ({
|
|
20028
20096
|
emoji_list?: {
|
|
20029
20097
|
id?: string | undefined;
|
|
@@ -20067,7 +20135,7 @@ export declare const Envelope: {
|
|
|
20067
20135
|
logo?: string | undefined;
|
|
20068
20136
|
clan_name?: string | undefined;
|
|
20069
20137
|
is_for_sale?: boolean | undefined;
|
|
20070
|
-
} & { [
|
|
20138
|
+
} & { [K_743 in Exclude<keyof I_1["list_data_socket"]["emoji_list"]["emoji_list"][number], keyof import("../api/api").ClanEmoji>]: never; })[] & { [K_744 in Exclude<keyof I_1["list_data_socket"]["emoji_list"]["emoji_list"], keyof {
|
|
20071
20139
|
id?: string | undefined;
|
|
20072
20140
|
src?: string | undefined;
|
|
20073
20141
|
shortname?: string | undefined;
|
|
@@ -20078,7 +20146,7 @@ export declare const Envelope: {
|
|
|
20078
20146
|
clan_name?: string | undefined;
|
|
20079
20147
|
is_for_sale?: boolean | undefined;
|
|
20080
20148
|
}[]>]: never; }) | undefined;
|
|
20081
|
-
} & { [
|
|
20149
|
+
} & { [K_745 in Exclude<keyof I_1["list_data_socket"]["emoji_list"], "emoji_list">]: never; }) | undefined;
|
|
20082
20150
|
list_friend_req?: ({
|
|
20083
20151
|
limit?: number | undefined;
|
|
20084
20152
|
state?: number | undefined;
|
|
@@ -20087,7 +20155,7 @@ export declare const Envelope: {
|
|
|
20087
20155
|
limit?: number | undefined;
|
|
20088
20156
|
state?: number | undefined;
|
|
20089
20157
|
cursor?: string | undefined;
|
|
20090
|
-
} & { [
|
|
20158
|
+
} & { [K_746 in Exclude<keyof I_1["list_data_socket"]["list_friend_req"], keyof ListFriendsRequest>]: never; }) | undefined;
|
|
20091
20159
|
friend_list?: ({
|
|
20092
20160
|
friends?: {
|
|
20093
20161
|
user?: {
|
|
@@ -20227,12 +20295,12 @@ export declare const Envelope: {
|
|
|
20227
20295
|
is_mobile?: boolean | undefined;
|
|
20228
20296
|
dob?: Date | undefined;
|
|
20229
20297
|
mezon_id?: string | undefined;
|
|
20230
|
-
list_nick_names?: (string[] & string[] & { [
|
|
20231
|
-
} & { [
|
|
20298
|
+
list_nick_names?: (string[] & string[] & { [K_747 in Exclude<keyof I_1["list_data_socket"]["friend_list"]["friends"][number]["user"]["list_nick_names"], keyof string[]>]: never; }) | undefined;
|
|
20299
|
+
} & { [K_748 in Exclude<keyof I_1["list_data_socket"]["friend_list"]["friends"][number]["user"], keyof import("../api/api").User>]: never; }) | undefined;
|
|
20232
20300
|
state?: number | undefined;
|
|
20233
20301
|
update_time?: Date | undefined;
|
|
20234
20302
|
source_id?: string | undefined;
|
|
20235
|
-
} & { [
|
|
20303
|
+
} & { [K_749 in Exclude<keyof I_1["list_data_socket"]["friend_list"]["friends"][number], keyof import("../api/api").Friend>]: never; })[] & { [K_750 in Exclude<keyof I_1["list_data_socket"]["friend_list"]["friends"], keyof {
|
|
20236
20304
|
user?: {
|
|
20237
20305
|
id?: string | undefined;
|
|
20238
20306
|
username?: string | undefined;
|
|
@@ -20263,12 +20331,12 @@ export declare const Envelope: {
|
|
|
20263
20331
|
source_id?: string | undefined;
|
|
20264
20332
|
}[]>]: never; }) | undefined;
|
|
20265
20333
|
cursor?: string | undefined;
|
|
20266
|
-
} & { [
|
|
20334
|
+
} & { [K_751 in Exclude<keyof I_1["list_data_socket"]["friend_list"], keyof FriendList>]: never; }) | undefined;
|
|
20267
20335
|
list_apps_req?: ({
|
|
20268
20336
|
clan_id?: string | undefined;
|
|
20269
20337
|
} & {
|
|
20270
20338
|
clan_id?: string | undefined;
|
|
20271
|
-
} & { [
|
|
20339
|
+
} & { [K_752 in Exclude<keyof I_1["list_data_socket"]["list_apps_req"], "clan_id">]: never; }) | undefined;
|
|
20272
20340
|
channel_apps_list?: ({
|
|
20273
20341
|
channel_apps?: {
|
|
20274
20342
|
id?: string | undefined;
|
|
@@ -20296,14 +20364,14 @@ export declare const Envelope: {
|
|
|
20296
20364
|
channel_id?: string | undefined;
|
|
20297
20365
|
app_id?: string | undefined;
|
|
20298
20366
|
app_url?: string | undefined;
|
|
20299
|
-
} & { [
|
|
20367
|
+
} & { [K_753 in Exclude<keyof I_1["list_data_socket"]["channel_apps_list"]["channel_apps"][number], keyof import("../api/api").ChannelAppResponse>]: never; })[] & { [K_754 in Exclude<keyof I_1["list_data_socket"]["channel_apps_list"]["channel_apps"], keyof {
|
|
20300
20368
|
id?: string | undefined;
|
|
20301
20369
|
clan_id?: string | undefined;
|
|
20302
20370
|
channel_id?: string | undefined;
|
|
20303
20371
|
app_id?: string | undefined;
|
|
20304
20372
|
app_url?: string | undefined;
|
|
20305
20373
|
}[]>]: never; }) | undefined;
|
|
20306
|
-
} & { [
|
|
20374
|
+
} & { [K_755 in Exclude<keyof I_1["list_data_socket"]["channel_apps_list"], "channel_apps">]: never; }) | undefined;
|
|
20307
20375
|
user_activity_list?: ({
|
|
20308
20376
|
activities?: {
|
|
20309
20377
|
user_id?: string | undefined;
|
|
@@ -20343,7 +20411,7 @@ export declare const Envelope: {
|
|
|
20343
20411
|
end_time?: Date | undefined;
|
|
20344
20412
|
application_id?: string | undefined;
|
|
20345
20413
|
status?: number | undefined;
|
|
20346
|
-
} & { [
|
|
20414
|
+
} & { [K_756 in Exclude<keyof I_1["list_data_socket"]["user_activity_list"]["activities"][number], keyof UserActivity>]: never; })[] & { [K_757 in Exclude<keyof I_1["list_data_socket"]["user_activity_list"]["activities"], keyof {
|
|
20347
20415
|
user_id?: string | undefined;
|
|
20348
20416
|
activity_name?: string | undefined;
|
|
20349
20417
|
activity_type?: number | undefined;
|
|
@@ -20353,12 +20421,12 @@ export declare const Envelope: {
|
|
|
20353
20421
|
application_id?: string | undefined;
|
|
20354
20422
|
status?: number | undefined;
|
|
20355
20423
|
}[]>]: never; }) | undefined;
|
|
20356
|
-
} & { [
|
|
20424
|
+
} & { [K_758 in Exclude<keyof I_1["list_data_socket"]["user_activity_list"], "activities">]: never; }) | undefined;
|
|
20357
20425
|
list_clan_user_req?: ({
|
|
20358
20426
|
clan_id?: string | undefined;
|
|
20359
20427
|
} & {
|
|
20360
20428
|
clan_id?: string | undefined;
|
|
20361
|
-
} & { [
|
|
20429
|
+
} & { [K_759 in Exclude<keyof I_1["list_data_socket"]["list_clan_user_req"], "clan_id">]: never; }) | undefined;
|
|
20362
20430
|
clan_user_list?: ({
|
|
20363
20431
|
clan_users?: {
|
|
20364
20432
|
user?: {
|
|
@@ -20502,13 +20570,13 @@ export declare const Envelope: {
|
|
|
20502
20570
|
is_mobile?: boolean | undefined;
|
|
20503
20571
|
dob?: Date | undefined;
|
|
20504
20572
|
mezon_id?: string | undefined;
|
|
20505
|
-
list_nick_names?: (string[] & string[] & { [
|
|
20506
|
-
} & { [
|
|
20507
|
-
role_id?: (string[] & string[] & { [
|
|
20573
|
+
list_nick_names?: (string[] & string[] & { [K_760 in Exclude<keyof I_1["list_data_socket"]["clan_user_list"]["clan_users"][number]["user"]["list_nick_names"], keyof string[]>]: never; }) | undefined;
|
|
20574
|
+
} & { [K_761 in Exclude<keyof I_1["list_data_socket"]["clan_user_list"]["clan_users"][number]["user"], keyof import("../api/api").User>]: never; }) | undefined;
|
|
20575
|
+
role_id?: (string[] & string[] & { [K_762 in Exclude<keyof I_1["list_data_socket"]["clan_user_list"]["clan_users"][number]["role_id"], keyof string[]>]: never; }) | undefined;
|
|
20508
20576
|
clan_nick?: string | undefined;
|
|
20509
20577
|
clan_avatar?: string | undefined;
|
|
20510
20578
|
clan_id?: string | undefined;
|
|
20511
|
-
} & { [
|
|
20579
|
+
} & { [K_763 in Exclude<keyof I_1["list_data_socket"]["clan_user_list"]["clan_users"][number], keyof import("../api/api").ClanUserList_ClanUser>]: never; })[] & { [K_764 in Exclude<keyof I_1["list_data_socket"]["clan_user_list"]["clan_users"], keyof {
|
|
20512
20580
|
user?: {
|
|
20513
20581
|
id?: string | undefined;
|
|
20514
20582
|
username?: string | undefined;
|
|
@@ -20541,12 +20609,12 @@ export declare const Envelope: {
|
|
|
20541
20609
|
}[]>]: never; }) | undefined;
|
|
20542
20610
|
cursor?: string | undefined;
|
|
20543
20611
|
clan_id?: string | undefined;
|
|
20544
|
-
} & { [
|
|
20612
|
+
} & { [K_765 in Exclude<keyof I_1["list_data_socket"]["clan_user_list"], keyof ClanUserList>]: never; }) | undefined;
|
|
20545
20613
|
list_event_req?: ({
|
|
20546
20614
|
clan_id?: string | undefined;
|
|
20547
20615
|
} & {
|
|
20548
20616
|
clan_id?: string | undefined;
|
|
20549
|
-
} & { [
|
|
20617
|
+
} & { [K_766 in Exclude<keyof I_1["list_data_socket"]["list_event_req"], "clan_id">]: never; }) | undefined;
|
|
20550
20618
|
event_list?: ({
|
|
20551
20619
|
events?: {
|
|
20552
20620
|
id?: string | undefined;
|
|
@@ -20644,7 +20712,7 @@ export declare const Envelope: {
|
|
|
20644
20712
|
address?: string | undefined;
|
|
20645
20713
|
start_time?: Date | undefined;
|
|
20646
20714
|
end_time?: Date | undefined;
|
|
20647
|
-
user_ids?: (string[] & string[] & { [
|
|
20715
|
+
user_ids?: (string[] & string[] & { [K_767 in Exclude<keyof I_1["list_data_socket"]["event_list"]["events"][number]["user_ids"], keyof string[]>]: never; }) | undefined;
|
|
20648
20716
|
create_time?: Date | undefined;
|
|
20649
20717
|
max_permission?: number | undefined;
|
|
20650
20718
|
channel_id?: string | undefined;
|
|
@@ -20663,8 +20731,8 @@ export declare const Envelope: {
|
|
|
20663
20731
|
external_link?: string | undefined;
|
|
20664
20732
|
creator_id?: string | undefined;
|
|
20665
20733
|
event_id?: string | undefined;
|
|
20666
|
-
} & { [
|
|
20667
|
-
} & { [
|
|
20734
|
+
} & { [K_768 in Exclude<keyof I_1["list_data_socket"]["event_list"]["events"][number]["meet_room"], keyof import("../api/api").GenerateMezonMeetResponse>]: never; }) | undefined;
|
|
20735
|
+
} & { [K_769 in Exclude<keyof I_1["list_data_socket"]["event_list"]["events"][number], keyof import("../api/api").EventManagement>]: never; })[] & { [K_770 in Exclude<keyof I_1["list_data_socket"]["event_list"]["events"], keyof {
|
|
20668
20736
|
id?: string | undefined;
|
|
20669
20737
|
title?: string | undefined;
|
|
20670
20738
|
logo?: string | undefined;
|
|
@@ -20692,7 +20760,7 @@ export declare const Envelope: {
|
|
|
20692
20760
|
event_id?: string | undefined;
|
|
20693
20761
|
} | undefined;
|
|
20694
20762
|
}[]>]: never; }) | undefined;
|
|
20695
|
-
} & { [
|
|
20763
|
+
} & { [K_771 in Exclude<keyof I_1["list_data_socket"]["event_list"], "events">]: never; }) | undefined;
|
|
20696
20764
|
list_category_req?: ({
|
|
20697
20765
|
creator_id?: string | undefined;
|
|
20698
20766
|
clan_id?: string | undefined;
|
|
@@ -20705,7 +20773,7 @@ export declare const Envelope: {
|
|
|
20705
20773
|
category_name?: string | undefined;
|
|
20706
20774
|
category_id?: string | undefined;
|
|
20707
20775
|
category_order?: number | undefined;
|
|
20708
|
-
} & { [
|
|
20776
|
+
} & { [K_772 in Exclude<keyof I_1["list_data_socket"]["list_category_req"], keyof CategoryDesc>]: never; }) | undefined;
|
|
20709
20777
|
category_list?: ({
|
|
20710
20778
|
categorydesc?: {
|
|
20711
20779
|
creator_id?: string | undefined;
|
|
@@ -20733,14 +20801,14 @@ export declare const Envelope: {
|
|
|
20733
20801
|
category_name?: string | undefined;
|
|
20734
20802
|
category_id?: string | undefined;
|
|
20735
20803
|
category_order?: number | undefined;
|
|
20736
|
-
} & { [
|
|
20804
|
+
} & { [K_773 in Exclude<keyof I_1["list_data_socket"]["category_list"]["categorydesc"][number], keyof CategoryDesc>]: never; })[] & { [K_774 in Exclude<keyof I_1["list_data_socket"]["category_list"]["categorydesc"], keyof {
|
|
20737
20805
|
creator_id?: string | undefined;
|
|
20738
20806
|
clan_id?: string | undefined;
|
|
20739
20807
|
category_name?: string | undefined;
|
|
20740
20808
|
category_id?: string | undefined;
|
|
20741
20809
|
category_order?: number | undefined;
|
|
20742
20810
|
}[]>]: never; }) | undefined;
|
|
20743
|
-
} & { [
|
|
20811
|
+
} & { [K_775 in Exclude<keyof I_1["list_data_socket"]["category_list"], "categorydesc">]: never; }) | undefined;
|
|
20744
20812
|
stream_user_list?: ({
|
|
20745
20813
|
streaming_channel_users?: {
|
|
20746
20814
|
id?: string | undefined;
|
|
@@ -20764,14 +20832,14 @@ export declare const Envelope: {
|
|
|
20764
20832
|
user_id?: string | undefined;
|
|
20765
20833
|
channel_id?: string | undefined;
|
|
20766
20834
|
participant?: string | undefined;
|
|
20767
|
-
} & { [
|
|
20835
|
+
} & { [K_776 in Exclude<keyof I_1["list_data_socket"]["stream_user_list"]["streaming_channel_users"][number], keyof import("../api/api").StreamingChannelUser>]: never; })[] & { [K_777 in Exclude<keyof I_1["list_data_socket"]["stream_user_list"]["streaming_channel_users"], keyof {
|
|
20768
20836
|
id?: string | undefined;
|
|
20769
20837
|
user_id?: string | undefined;
|
|
20770
20838
|
channel_id?: string | undefined;
|
|
20771
20839
|
participant?: string | undefined;
|
|
20772
20840
|
}[]>]: never; }) | undefined;
|
|
20773
|
-
} & { [
|
|
20774
|
-
} & { [
|
|
20841
|
+
} & { [K_778 in Exclude<keyof I_1["list_data_socket"]["stream_user_list"], "streaming_channel_users">]: never; }) | undefined;
|
|
20842
|
+
} & { [K_779 in Exclude<keyof I_1["list_data_socket"], keyof ListDataSocket>]: never; }) | undefined;
|
|
20775
20843
|
quick_menu_event?: ({
|
|
20776
20844
|
menu_name?: string | undefined;
|
|
20777
20845
|
message?: {
|
|
@@ -20892,7 +20960,7 @@ export declare const Envelope: {
|
|
|
20892
20960
|
create_time?: Date | undefined;
|
|
20893
20961
|
s?: number | undefined;
|
|
20894
20962
|
e?: number | undefined;
|
|
20895
|
-
} & { [
|
|
20963
|
+
} & { [K_780 in Exclude<keyof I_1["quick_menu_event"]["message"]["mentions"][number], keyof MessageMention>]: never; })[] & { [K_781 in Exclude<keyof I_1["quick_menu_event"]["message"]["mentions"], keyof {
|
|
20896
20964
|
id?: string | undefined;
|
|
20897
20965
|
user_id?: string | undefined;
|
|
20898
20966
|
username?: string | undefined;
|
|
@@ -20926,7 +20994,7 @@ export declare const Envelope: {
|
|
|
20926
20994
|
width?: number | undefined;
|
|
20927
20995
|
height?: number | undefined;
|
|
20928
20996
|
thumbnail?: string | undefined;
|
|
20929
|
-
} & { [
|
|
20997
|
+
} & { [K_782 in Exclude<keyof I_1["quick_menu_event"]["message"]["attachments"][number], keyof MessageAttachment>]: never; })[] & { [K_783 in Exclude<keyof I_1["quick_menu_event"]["message"]["attachments"], keyof {
|
|
20930
20998
|
filename?: string | undefined;
|
|
20931
20999
|
size?: number | undefined;
|
|
20932
21000
|
url?: string | undefined;
|
|
@@ -20968,7 +21036,7 @@ export declare const Envelope: {
|
|
|
20968
21036
|
mesages_sender_avatar?: string | undefined;
|
|
20969
21037
|
message_sender_clan_nick?: string | undefined;
|
|
20970
21038
|
message_sender_display_name?: string | undefined;
|
|
20971
|
-
} & { [
|
|
21039
|
+
} & { [K_784 in Exclude<keyof I_1["quick_menu_event"]["message"]["references"][number], keyof MessageRef>]: never; })[] & { [K_785 in Exclude<keyof I_1["quick_menu_event"]["message"]["references"], keyof {
|
|
20972
21040
|
message_id?: string | undefined;
|
|
20973
21041
|
message_ref_id?: string | undefined;
|
|
20974
21042
|
content?: string | undefined;
|
|
@@ -20987,13 +21055,13 @@ export declare const Envelope: {
|
|
|
20987
21055
|
is_public?: boolean | undefined;
|
|
20988
21056
|
code?: number | undefined;
|
|
20989
21057
|
topic_id?: string | undefined;
|
|
20990
|
-
} & { [
|
|
20991
|
-
} & { [
|
|
21058
|
+
} & { [K_786 in Exclude<keyof I_1["quick_menu_event"]["message"], keyof ChannelMessageSend>]: never; }) | undefined;
|
|
21059
|
+
} & { [K_787 in Exclude<keyof I_1["quick_menu_event"], keyof QuickMenuDataEvent>]: never; }) | undefined;
|
|
20992
21060
|
un_block_friend?: ({
|
|
20993
21061
|
user_id?: string | undefined;
|
|
20994
21062
|
} & {
|
|
20995
21063
|
user_id?: string | undefined;
|
|
20996
|
-
} & { [
|
|
21064
|
+
} & { [K_788 in Exclude<keyof I_1["un_block_friend"], "user_id">]: never; }) | undefined;
|
|
20997
21065
|
meet_participant_event?: ({
|
|
20998
21066
|
username?: string | undefined;
|
|
20999
21067
|
room_name?: string | undefined;
|
|
@@ -21006,8 +21074,17 @@ export declare const Envelope: {
|
|
|
21006
21074
|
channel_id?: string | undefined;
|
|
21007
21075
|
clan_id?: string | undefined;
|
|
21008
21076
|
action?: number | undefined;
|
|
21009
|
-
} & { [
|
|
21010
|
-
|
|
21077
|
+
} & { [K_789 in Exclude<keyof I_1["meet_participant_event"], keyof MeetParticipantEvent>]: never; }) | undefined;
|
|
21078
|
+
transfer_ownership_event?: ({
|
|
21079
|
+
clan_id?: string | undefined;
|
|
21080
|
+
prev_owner?: string | undefined;
|
|
21081
|
+
curr_owner?: string | undefined;
|
|
21082
|
+
} & {
|
|
21083
|
+
clan_id?: string | undefined;
|
|
21084
|
+
prev_owner?: string | undefined;
|
|
21085
|
+
curr_owner?: string | undefined;
|
|
21086
|
+
} & { [K_790 in Exclude<keyof I_1["transfer_ownership_event"], keyof TransferOwnershipEvent>]: never; }) | undefined;
|
|
21087
|
+
} & { [K_791 in Exclude<keyof I_1, keyof Envelope>]: never; }>(object: I_1): Envelope;
|
|
21011
21088
|
};
|
|
21012
21089
|
export declare const FollowEvent: {
|
|
21013
21090
|
encode(_: FollowEvent, writer?: _m0.Writer): _m0.Writer;
|
|
@@ -28536,6 +28613,9 @@ export declare const ListDataSocket: {
|
|
|
28536
28613
|
clan_order?: number | undefined;
|
|
28537
28614
|
is_community?: boolean | undefined;
|
|
28538
28615
|
community_banner?: string | undefined;
|
|
28616
|
+
description?: string | undefined;
|
|
28617
|
+
about?: string | undefined;
|
|
28618
|
+
short_url?: string | undefined;
|
|
28539
28619
|
}[] | undefined;
|
|
28540
28620
|
} | undefined;
|
|
28541
28621
|
list_thread_req?: {
|
|
@@ -29399,6 +29479,9 @@ export declare const ListDataSocket: {
|
|
|
29399
29479
|
clan_order?: number | undefined;
|
|
29400
29480
|
is_community?: boolean | undefined;
|
|
29401
29481
|
community_banner?: string | undefined;
|
|
29482
|
+
description?: string | undefined;
|
|
29483
|
+
about?: string | undefined;
|
|
29484
|
+
short_url?: string | undefined;
|
|
29402
29485
|
}[] | undefined;
|
|
29403
29486
|
} & {
|
|
29404
29487
|
clandesc?: ({
|
|
@@ -29415,6 +29498,9 @@ export declare const ListDataSocket: {
|
|
|
29415
29498
|
clan_order?: number | undefined;
|
|
29416
29499
|
is_community?: boolean | undefined;
|
|
29417
29500
|
community_banner?: string | undefined;
|
|
29501
|
+
description?: string | undefined;
|
|
29502
|
+
about?: string | undefined;
|
|
29503
|
+
short_url?: string | undefined;
|
|
29418
29504
|
}[] & ({
|
|
29419
29505
|
creator_id?: string | undefined;
|
|
29420
29506
|
clan_name?: string | undefined;
|
|
@@ -29429,6 +29515,9 @@ export declare const ListDataSocket: {
|
|
|
29429
29515
|
clan_order?: number | undefined;
|
|
29430
29516
|
is_community?: boolean | undefined;
|
|
29431
29517
|
community_banner?: string | undefined;
|
|
29518
|
+
description?: string | undefined;
|
|
29519
|
+
about?: string | undefined;
|
|
29520
|
+
short_url?: string | undefined;
|
|
29432
29521
|
} & {
|
|
29433
29522
|
creator_id?: string | undefined;
|
|
29434
29523
|
clan_name?: string | undefined;
|
|
@@ -29443,6 +29532,9 @@ export declare const ListDataSocket: {
|
|
|
29443
29532
|
clan_order?: number | undefined;
|
|
29444
29533
|
is_community?: boolean | undefined;
|
|
29445
29534
|
community_banner?: string | undefined;
|
|
29535
|
+
description?: string | undefined;
|
|
29536
|
+
about?: string | undefined;
|
|
29537
|
+
short_url?: string | undefined;
|
|
29446
29538
|
} & { [K_1 in Exclude<keyof I["clan_desc_list"]["clandesc"][number], keyof import("../api/api").ClanDesc>]: never; })[] & { [K_2 in Exclude<keyof I["clan_desc_list"]["clandesc"], keyof {
|
|
29447
29539
|
creator_id?: string | undefined;
|
|
29448
29540
|
clan_name?: string | undefined;
|
|
@@ -29457,6 +29549,9 @@ export declare const ListDataSocket: {
|
|
|
29457
29549
|
clan_order?: number | undefined;
|
|
29458
29550
|
is_community?: boolean | undefined;
|
|
29459
29551
|
community_banner?: string | undefined;
|
|
29552
|
+
description?: string | undefined;
|
|
29553
|
+
about?: string | undefined;
|
|
29554
|
+
short_url?: string | undefined;
|
|
29460
29555
|
}[]>]: never; }) | undefined;
|
|
29461
29556
|
} & { [K_3 in Exclude<keyof I["clan_desc_list"], "clandesc">]: never; }) | undefined;
|
|
29462
29557
|
list_thread_req?: ({
|
|
@@ -32914,6 +33009,9 @@ export declare const ListDataSocket: {
|
|
|
32914
33009
|
clan_order?: number | undefined;
|
|
32915
33010
|
is_community?: boolean | undefined;
|
|
32916
33011
|
community_banner?: string | undefined;
|
|
33012
|
+
description?: string | undefined;
|
|
33013
|
+
about?: string | undefined;
|
|
33014
|
+
short_url?: string | undefined;
|
|
32917
33015
|
}[] | undefined;
|
|
32918
33016
|
} | undefined;
|
|
32919
33017
|
list_thread_req?: {
|
|
@@ -33777,6 +33875,9 @@ export declare const ListDataSocket: {
|
|
|
33777
33875
|
clan_order?: number | undefined;
|
|
33778
33876
|
is_community?: boolean | undefined;
|
|
33779
33877
|
community_banner?: string | undefined;
|
|
33878
|
+
description?: string | undefined;
|
|
33879
|
+
about?: string | undefined;
|
|
33880
|
+
short_url?: string | undefined;
|
|
33780
33881
|
}[] | undefined;
|
|
33781
33882
|
} & {
|
|
33782
33883
|
clandesc?: ({
|
|
@@ -33793,6 +33894,9 @@ export declare const ListDataSocket: {
|
|
|
33793
33894
|
clan_order?: number | undefined;
|
|
33794
33895
|
is_community?: boolean | undefined;
|
|
33795
33896
|
community_banner?: string | undefined;
|
|
33897
|
+
description?: string | undefined;
|
|
33898
|
+
about?: string | undefined;
|
|
33899
|
+
short_url?: string | undefined;
|
|
33796
33900
|
}[] & ({
|
|
33797
33901
|
creator_id?: string | undefined;
|
|
33798
33902
|
clan_name?: string | undefined;
|
|
@@ -33807,6 +33911,9 @@ export declare const ListDataSocket: {
|
|
|
33807
33911
|
clan_order?: number | undefined;
|
|
33808
33912
|
is_community?: boolean | undefined;
|
|
33809
33913
|
community_banner?: string | undefined;
|
|
33914
|
+
description?: string | undefined;
|
|
33915
|
+
about?: string | undefined;
|
|
33916
|
+
short_url?: string | undefined;
|
|
33810
33917
|
} & {
|
|
33811
33918
|
creator_id?: string | undefined;
|
|
33812
33919
|
clan_name?: string | undefined;
|
|
@@ -33821,6 +33928,9 @@ export declare const ListDataSocket: {
|
|
|
33821
33928
|
clan_order?: number | undefined;
|
|
33822
33929
|
is_community?: boolean | undefined;
|
|
33823
33930
|
community_banner?: string | undefined;
|
|
33931
|
+
description?: string | undefined;
|
|
33932
|
+
about?: string | undefined;
|
|
33933
|
+
short_url?: string | undefined;
|
|
33824
33934
|
} & { [K_189 in Exclude<keyof I_1["clan_desc_list"]["clandesc"][number], keyof import("../api/api").ClanDesc>]: never; })[] & { [K_190 in Exclude<keyof I_1["clan_desc_list"]["clandesc"], keyof {
|
|
33825
33935
|
creator_id?: string | undefined;
|
|
33826
33936
|
clan_name?: string | undefined;
|
|
@@ -33835,6 +33945,9 @@ export declare const ListDataSocket: {
|
|
|
33835
33945
|
clan_order?: number | undefined;
|
|
33836
33946
|
is_community?: boolean | undefined;
|
|
33837
33947
|
community_banner?: string | undefined;
|
|
33948
|
+
description?: string | undefined;
|
|
33949
|
+
about?: string | undefined;
|
|
33950
|
+
short_url?: string | undefined;
|
|
33838
33951
|
}[]>]: never; }) | undefined;
|
|
33839
33952
|
} & { [K_191 in Exclude<keyof I_1["clan_desc_list"], "clandesc">]: never; }) | undefined;
|
|
33840
33953
|
list_thread_req?: ({
|
|
@@ -37303,6 +37416,30 @@ export declare const MeetParticipantEvent: {
|
|
|
37303
37416
|
action?: number | undefined;
|
|
37304
37417
|
} & { [K_1 in Exclude<keyof I_1, keyof MeetParticipantEvent>]: never; }>(object: I_1): MeetParticipantEvent;
|
|
37305
37418
|
};
|
|
37419
|
+
export declare const TransferOwnershipEvent: {
|
|
37420
|
+
encode(message: TransferOwnershipEvent, writer?: _m0.Writer): _m0.Writer;
|
|
37421
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): TransferOwnershipEvent;
|
|
37422
|
+
fromJSON(object: any): TransferOwnershipEvent;
|
|
37423
|
+
toJSON(message: TransferOwnershipEvent): unknown;
|
|
37424
|
+
create<I extends {
|
|
37425
|
+
clan_id?: string | undefined;
|
|
37426
|
+
prev_owner?: string | undefined;
|
|
37427
|
+
curr_owner?: string | undefined;
|
|
37428
|
+
} & {
|
|
37429
|
+
clan_id?: string | undefined;
|
|
37430
|
+
prev_owner?: string | undefined;
|
|
37431
|
+
curr_owner?: string | undefined;
|
|
37432
|
+
} & { [K in Exclude<keyof I, keyof TransferOwnershipEvent>]: never; }>(base?: I | undefined): TransferOwnershipEvent;
|
|
37433
|
+
fromPartial<I_1 extends {
|
|
37434
|
+
clan_id?: string | undefined;
|
|
37435
|
+
prev_owner?: string | undefined;
|
|
37436
|
+
curr_owner?: string | undefined;
|
|
37437
|
+
} & {
|
|
37438
|
+
clan_id?: string | undefined;
|
|
37439
|
+
prev_owner?: string | undefined;
|
|
37440
|
+
curr_owner?: string | undefined;
|
|
37441
|
+
} & { [K_1 in Exclude<keyof I_1, keyof TransferOwnershipEvent>]: never; }>(object: I_1): TransferOwnershipEvent;
|
|
37442
|
+
};
|
|
37306
37443
|
type Builtin = Date | Function | Uint8Array | string | number | boolean | undefined;
|
|
37307
37444
|
export type DeepPartial<T> = T extends Builtin ? T : T extends globalThis.Array<infer U> ? globalThis.Array<DeepPartial<U>> : T extends ReadonlyArray<infer U> ? ReadonlyArray<DeepPartial<U>> : T extends {} ? {
|
|
37308
37445
|
[K in keyof T]?: DeepPartial<T[K]>;
|