mezon-js-protobuf 1.8.29 → 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 +72 -2
- package/dist/mezon-js-protobuf/api/api.d.ts +53 -0
- package/dist/mezon-js-protobuf/rtapi/realtime.d.ts +550 -332
- package/dist/mezon-js-protobuf.cjs.js +270 -5
- package/dist/mezon-js-protobuf.esm.mjs +270 -5
- package/package.json +1 -1
- package/rtapi/realtime.ts +273 -1
|
@@ -172,6 +172,10 @@ export interface Envelope {
|
|
|
172
172
|
quick_menu_event?: QuickMenuDataEvent | undefined;
|
|
173
173
|
/** unblock friend */
|
|
174
174
|
un_block_friend?: UnblockFriend | undefined;
|
|
175
|
+
/** mezon meet participant event */
|
|
176
|
+
meet_participant_event?: MeetParticipantEvent | undefined;
|
|
177
|
+
/** tranfer ownership event */
|
|
178
|
+
transfer_ownership_event?: TransferOwnershipEvent | undefined;
|
|
175
179
|
}
|
|
176
180
|
export interface FollowEvent {
|
|
177
181
|
}
|
|
@@ -1238,6 +1242,18 @@ export interface ListDataSocket {
|
|
|
1238
1242
|
category_list: CategoryDescList | undefined;
|
|
1239
1243
|
stream_user_list: StreamingChannelUserList | undefined;
|
|
1240
1244
|
}
|
|
1245
|
+
export interface MeetParticipantEvent {
|
|
1246
|
+
username: string;
|
|
1247
|
+
room_name: string;
|
|
1248
|
+
channel_id: string;
|
|
1249
|
+
clan_id: string;
|
|
1250
|
+
action: number;
|
|
1251
|
+
}
|
|
1252
|
+
export interface TransferOwnershipEvent {
|
|
1253
|
+
clan_id: string;
|
|
1254
|
+
prev_owner: string;
|
|
1255
|
+
curr_owner: string;
|
|
1256
|
+
}
|
|
1241
1257
|
export declare const Envelope: {
|
|
1242
1258
|
encode(message: Envelope, writer?: _m0.Writer): _m0.Writer;
|
|
1243
1259
|
decode(input: _m0.Reader | Uint8Array, length?: number): Envelope;
|
|
@@ -2340,6 +2356,9 @@ export declare const Envelope: {
|
|
|
2340
2356
|
clan_order?: number | undefined;
|
|
2341
2357
|
is_community?: boolean | undefined;
|
|
2342
2358
|
community_banner?: string | undefined;
|
|
2359
|
+
description?: string | undefined;
|
|
2360
|
+
about?: string | undefined;
|
|
2361
|
+
short_url?: string | undefined;
|
|
2343
2362
|
}[] | undefined;
|
|
2344
2363
|
} | undefined;
|
|
2345
2364
|
list_thread_req?: {
|
|
@@ -3227,6 +3246,18 @@ export declare const Envelope: {
|
|
|
3227
3246
|
un_block_friend?: {
|
|
3228
3247
|
user_id?: string | undefined;
|
|
3229
3248
|
} | undefined;
|
|
3249
|
+
meet_participant_event?: {
|
|
3250
|
+
username?: string | undefined;
|
|
3251
|
+
room_name?: string | undefined;
|
|
3252
|
+
channel_id?: string | undefined;
|
|
3253
|
+
clan_id?: string | undefined;
|
|
3254
|
+
action?: number | undefined;
|
|
3255
|
+
} | undefined;
|
|
3256
|
+
transfer_ownership_event?: {
|
|
3257
|
+
clan_id?: string | undefined;
|
|
3258
|
+
prev_owner?: string | undefined;
|
|
3259
|
+
curr_owner?: string | undefined;
|
|
3260
|
+
} | undefined;
|
|
3230
3261
|
} & {
|
|
3231
3262
|
cid?: string | undefined;
|
|
3232
3263
|
channel?: ({
|
|
@@ -6522,6 +6553,9 @@ export declare const Envelope: {
|
|
|
6522
6553
|
clan_order?: number | undefined;
|
|
6523
6554
|
is_community?: boolean | undefined;
|
|
6524
6555
|
community_banner?: string | undefined;
|
|
6556
|
+
description?: string | undefined;
|
|
6557
|
+
about?: string | undefined;
|
|
6558
|
+
short_url?: string | undefined;
|
|
6525
6559
|
}[] | undefined;
|
|
6526
6560
|
} | undefined;
|
|
6527
6561
|
list_thread_req?: {
|
|
@@ -7385,6 +7419,9 @@ export declare const Envelope: {
|
|
|
7385
7419
|
clan_order?: number | undefined;
|
|
7386
7420
|
is_community?: boolean | undefined;
|
|
7387
7421
|
community_banner?: string | undefined;
|
|
7422
|
+
description?: string | undefined;
|
|
7423
|
+
about?: string | undefined;
|
|
7424
|
+
short_url?: string | undefined;
|
|
7388
7425
|
}[] | undefined;
|
|
7389
7426
|
} & {
|
|
7390
7427
|
clandesc?: ({
|
|
@@ -7401,6 +7438,9 @@ export declare const Envelope: {
|
|
|
7401
7438
|
clan_order?: number | undefined;
|
|
7402
7439
|
is_community?: boolean | undefined;
|
|
7403
7440
|
community_banner?: string | undefined;
|
|
7441
|
+
description?: string | undefined;
|
|
7442
|
+
about?: string | undefined;
|
|
7443
|
+
short_url?: string | undefined;
|
|
7404
7444
|
}[] & ({
|
|
7405
7445
|
creator_id?: string | undefined;
|
|
7406
7446
|
clan_name?: string | undefined;
|
|
@@ -7415,6 +7455,9 @@ export declare const Envelope: {
|
|
|
7415
7455
|
clan_order?: number | undefined;
|
|
7416
7456
|
is_community?: boolean | undefined;
|
|
7417
7457
|
community_banner?: string | undefined;
|
|
7458
|
+
description?: string | undefined;
|
|
7459
|
+
about?: string | undefined;
|
|
7460
|
+
short_url?: string | undefined;
|
|
7418
7461
|
} & {
|
|
7419
7462
|
creator_id?: string | undefined;
|
|
7420
7463
|
clan_name?: string | undefined;
|
|
@@ -7429,6 +7472,9 @@ export declare const Envelope: {
|
|
|
7429
7472
|
clan_order?: number | undefined;
|
|
7430
7473
|
is_community?: boolean | undefined;
|
|
7431
7474
|
community_banner?: string | undefined;
|
|
7475
|
+
description?: string | undefined;
|
|
7476
|
+
about?: string | undefined;
|
|
7477
|
+
short_url?: string | undefined;
|
|
7432
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 {
|
|
7433
7479
|
creator_id?: string | undefined;
|
|
7434
7480
|
clan_name?: string | undefined;
|
|
@@ -7443,6 +7489,9 @@ export declare const Envelope: {
|
|
|
7443
7489
|
clan_order?: number | undefined;
|
|
7444
7490
|
is_community?: boolean | undefined;
|
|
7445
7491
|
community_banner?: string | undefined;
|
|
7492
|
+
description?: string | undefined;
|
|
7493
|
+
about?: string | undefined;
|
|
7494
|
+
short_url?: string | undefined;
|
|
7446
7495
|
}[]>]: never; }) | undefined;
|
|
7447
7496
|
} & { [K_199 in Exclude<keyof I["list_data_socket"]["clan_desc_list"], "clandesc">]: never; }) | undefined;
|
|
7448
7497
|
list_thread_req?: ({
|
|
@@ -11100,7 +11149,29 @@ export declare const Envelope: {
|
|
|
11100
11149
|
} & {
|
|
11101
11150
|
user_id?: string | undefined;
|
|
11102
11151
|
} & { [K_392 in Exclude<keyof I["un_block_friend"], "user_id">]: never; }) | undefined;
|
|
11103
|
-
|
|
11152
|
+
meet_participant_event?: ({
|
|
11153
|
+
username?: string | undefined;
|
|
11154
|
+
room_name?: string | undefined;
|
|
11155
|
+
channel_id?: string | undefined;
|
|
11156
|
+
clan_id?: string | undefined;
|
|
11157
|
+
action?: number | undefined;
|
|
11158
|
+
} & {
|
|
11159
|
+
username?: string | undefined;
|
|
11160
|
+
room_name?: string | undefined;
|
|
11161
|
+
channel_id?: string | undefined;
|
|
11162
|
+
clan_id?: string | undefined;
|
|
11163
|
+
action?: number | undefined;
|
|
11164
|
+
} & { [K_393 in Exclude<keyof I["meet_participant_event"], keyof MeetParticipantEvent>]: never; }) | undefined;
|
|
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;
|
|
11104
11175
|
fromPartial<I_1 extends {
|
|
11105
11176
|
cid?: string | undefined;
|
|
11106
11177
|
channel?: {
|
|
@@ -12198,6 +12269,9 @@ export declare const Envelope: {
|
|
|
12198
12269
|
clan_order?: number | undefined;
|
|
12199
12270
|
is_community?: boolean | undefined;
|
|
12200
12271
|
community_banner?: string | undefined;
|
|
12272
|
+
description?: string | undefined;
|
|
12273
|
+
about?: string | undefined;
|
|
12274
|
+
short_url?: string | undefined;
|
|
12201
12275
|
}[] | undefined;
|
|
12202
12276
|
} | undefined;
|
|
12203
12277
|
list_thread_req?: {
|
|
@@ -13085,6 +13159,18 @@ export declare const Envelope: {
|
|
|
13085
13159
|
un_block_friend?: {
|
|
13086
13160
|
user_id?: string | undefined;
|
|
13087
13161
|
} | undefined;
|
|
13162
|
+
meet_participant_event?: {
|
|
13163
|
+
username?: string | undefined;
|
|
13164
|
+
room_name?: string | undefined;
|
|
13165
|
+
channel_id?: string | undefined;
|
|
13166
|
+
clan_id?: string | undefined;
|
|
13167
|
+
action?: number | undefined;
|
|
13168
|
+
} | undefined;
|
|
13169
|
+
transfer_ownership_event?: {
|
|
13170
|
+
clan_id?: string | undefined;
|
|
13171
|
+
prev_owner?: string | undefined;
|
|
13172
|
+
curr_owner?: string | undefined;
|
|
13173
|
+
} | undefined;
|
|
13088
13174
|
} & {
|
|
13089
13175
|
cid?: string | undefined;
|
|
13090
13176
|
channel?: ({
|
|
@@ -13136,7 +13222,7 @@ export declare const Envelope: {
|
|
|
13136
13222
|
status?: string | undefined;
|
|
13137
13223
|
is_mobile?: boolean | undefined;
|
|
13138
13224
|
metadata?: string | undefined;
|
|
13139
|
-
} & { [
|
|
13225
|
+
} & { [K_396 in Exclude<keyof I_1["channel"]["presences"][number], keyof UserPresence>]: never; })[] & { [K_397 in Exclude<keyof I_1["channel"]["presences"], keyof {
|
|
13140
13226
|
user_id?: string | undefined;
|
|
13141
13227
|
session_id?: string | undefined;
|
|
13142
13228
|
username?: string | undefined;
|
|
@@ -13161,16 +13247,16 @@ export declare const Envelope: {
|
|
|
13161
13247
|
status?: string | undefined;
|
|
13162
13248
|
is_mobile?: boolean | undefined;
|
|
13163
13249
|
metadata?: string | undefined;
|
|
13164
|
-
} & { [
|
|
13250
|
+
} & { [K_398 in Exclude<keyof I_1["channel"]["self"], keyof UserPresence>]: never; }) | undefined;
|
|
13165
13251
|
chanel_label?: string | undefined;
|
|
13166
13252
|
clan_logo?: string | undefined;
|
|
13167
13253
|
category_name?: string | undefined;
|
|
13168
|
-
} & { [
|
|
13254
|
+
} & { [K_399 in Exclude<keyof I_1["channel"], keyof Channel>]: never; }) | undefined;
|
|
13169
13255
|
clan_join?: ({
|
|
13170
13256
|
clan_id?: string | undefined;
|
|
13171
13257
|
} & {
|
|
13172
13258
|
clan_id?: string | undefined;
|
|
13173
|
-
} & { [
|
|
13259
|
+
} & { [K_400 in Exclude<keyof I_1["clan_join"], "clan_id">]: never; }) | undefined;
|
|
13174
13260
|
channel_join?: ({
|
|
13175
13261
|
clan_id?: string | undefined;
|
|
13176
13262
|
channel_id?: string | undefined;
|
|
@@ -13181,7 +13267,7 @@ export declare const Envelope: {
|
|
|
13181
13267
|
channel_id?: string | undefined;
|
|
13182
13268
|
channel_type?: number | undefined;
|
|
13183
13269
|
is_public?: boolean | undefined;
|
|
13184
|
-
} & { [
|
|
13270
|
+
} & { [K_401 in Exclude<keyof I_1["channel_join"], keyof ChannelJoin>]: never; }) | undefined;
|
|
13185
13271
|
channel_leave?: ({
|
|
13186
13272
|
clan_id?: string | undefined;
|
|
13187
13273
|
channel_id?: string | undefined;
|
|
@@ -13192,7 +13278,7 @@ export declare const Envelope: {
|
|
|
13192
13278
|
channel_id?: string | undefined;
|
|
13193
13279
|
channel_type?: number | undefined;
|
|
13194
13280
|
is_public?: boolean | undefined;
|
|
13195
|
-
} & { [
|
|
13281
|
+
} & { [K_402 in Exclude<keyof I_1["channel_leave"], keyof ChannelLeave>]: never; }) | undefined;
|
|
13196
13282
|
channel_message?: ({
|
|
13197
13283
|
clan_id?: string | undefined;
|
|
13198
13284
|
channel_id?: string | undefined;
|
|
@@ -13249,7 +13335,7 @@ export declare const Envelope: {
|
|
|
13249
13335
|
hide_editted?: boolean | undefined;
|
|
13250
13336
|
is_public?: boolean | undefined;
|
|
13251
13337
|
topic_id?: string | undefined;
|
|
13252
|
-
} & { [
|
|
13338
|
+
} & { [K_403 in Exclude<keyof I_1["channel_message"], keyof ChannelMessage>]: never; }) | undefined;
|
|
13253
13339
|
channel_message_ack?: ({
|
|
13254
13340
|
channel_id?: string | undefined;
|
|
13255
13341
|
message_id?: string | undefined;
|
|
@@ -13270,7 +13356,7 @@ export declare const Envelope: {
|
|
|
13270
13356
|
persistent?: boolean | undefined;
|
|
13271
13357
|
clan_logo?: string | undefined;
|
|
13272
13358
|
category_name?: string | undefined;
|
|
13273
|
-
} & { [
|
|
13359
|
+
} & { [K_404 in Exclude<keyof I_1["channel_message_ack"], keyof ChannelMessageAck>]: never; }) | undefined;
|
|
13274
13360
|
channel_message_send?: ({
|
|
13275
13361
|
clan_id?: string | undefined;
|
|
13276
13362
|
channel_id?: string | undefined;
|
|
@@ -13344,7 +13430,7 @@ export declare const Envelope: {
|
|
|
13344
13430
|
create_time?: Date | undefined;
|
|
13345
13431
|
s?: number | undefined;
|
|
13346
13432
|
e?: number | undefined;
|
|
13347
|
-
} & { [
|
|
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 {
|
|
13348
13434
|
id?: string | undefined;
|
|
13349
13435
|
user_id?: string | undefined;
|
|
13350
13436
|
username?: string | undefined;
|
|
@@ -13378,7 +13464,7 @@ export declare const Envelope: {
|
|
|
13378
13464
|
width?: number | undefined;
|
|
13379
13465
|
height?: number | undefined;
|
|
13380
13466
|
thumbnail?: string | undefined;
|
|
13381
|
-
} & { [
|
|
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 {
|
|
13382
13468
|
filename?: string | undefined;
|
|
13383
13469
|
size?: number | undefined;
|
|
13384
13470
|
url?: string | undefined;
|
|
@@ -13420,7 +13506,7 @@ export declare const Envelope: {
|
|
|
13420
13506
|
mesages_sender_avatar?: string | undefined;
|
|
13421
13507
|
message_sender_clan_nick?: string | undefined;
|
|
13422
13508
|
message_sender_display_name?: string | undefined;
|
|
13423
|
-
} & { [
|
|
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 {
|
|
13424
13510
|
message_id?: string | undefined;
|
|
13425
13511
|
message_ref_id?: string | undefined;
|
|
13426
13512
|
content?: string | undefined;
|
|
@@ -13439,7 +13525,7 @@ export declare const Envelope: {
|
|
|
13439
13525
|
is_public?: boolean | undefined;
|
|
13440
13526
|
code?: number | undefined;
|
|
13441
13527
|
topic_id?: string | undefined;
|
|
13442
|
-
} & { [
|
|
13528
|
+
} & { [K_411 in Exclude<keyof I_1["channel_message_send"], keyof ChannelMessageSend>]: never; }) | undefined;
|
|
13443
13529
|
channel_message_update?: ({
|
|
13444
13530
|
clan_id?: string | undefined;
|
|
13445
13531
|
channel_id?: string | undefined;
|
|
@@ -13502,7 +13588,7 @@ export declare const Envelope: {
|
|
|
13502
13588
|
create_time?: Date | undefined;
|
|
13503
13589
|
s?: number | undefined;
|
|
13504
13590
|
e?: number | undefined;
|
|
13505
|
-
} & { [
|
|
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 {
|
|
13506
13592
|
id?: string | undefined;
|
|
13507
13593
|
user_id?: string | undefined;
|
|
13508
13594
|
username?: string | undefined;
|
|
@@ -13536,7 +13622,7 @@ export declare const Envelope: {
|
|
|
13536
13622
|
width?: number | undefined;
|
|
13537
13623
|
height?: number | undefined;
|
|
13538
13624
|
thumbnail?: string | undefined;
|
|
13539
|
-
} & { [
|
|
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 {
|
|
13540
13626
|
filename?: string | undefined;
|
|
13541
13627
|
size?: number | undefined;
|
|
13542
13628
|
url?: string | undefined;
|
|
@@ -13551,7 +13637,7 @@ export declare const Envelope: {
|
|
|
13551
13637
|
topic_id?: string | undefined;
|
|
13552
13638
|
is_update_msg_topic?: boolean | undefined;
|
|
13553
13639
|
old_mentions?: string | undefined;
|
|
13554
|
-
} & { [
|
|
13640
|
+
} & { [K_416 in Exclude<keyof I_1["channel_message_update"], keyof ChannelMessageUpdate>]: never; }) | undefined;
|
|
13555
13641
|
channel_message_remove?: ({
|
|
13556
13642
|
clan_id?: string | undefined;
|
|
13557
13643
|
channel_id?: string | undefined;
|
|
@@ -13572,7 +13658,7 @@ export declare const Envelope: {
|
|
|
13572
13658
|
topic_id?: string | undefined;
|
|
13573
13659
|
mentions?: string | undefined;
|
|
13574
13660
|
references?: string | undefined;
|
|
13575
|
-
} & { [
|
|
13661
|
+
} & { [K_417 in Exclude<keyof I_1["channel_message_remove"], keyof ChannelMessageRemove>]: never; }) | undefined;
|
|
13576
13662
|
channel_presence_event?: ({
|
|
13577
13663
|
channel_id?: string | undefined;
|
|
13578
13664
|
joins?: {
|
|
@@ -13622,7 +13708,7 @@ export declare const Envelope: {
|
|
|
13622
13708
|
status?: string | undefined;
|
|
13623
13709
|
is_mobile?: boolean | undefined;
|
|
13624
13710
|
metadata?: string | undefined;
|
|
13625
|
-
} & { [
|
|
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 {
|
|
13626
13712
|
user_id?: string | undefined;
|
|
13627
13713
|
session_id?: string | undefined;
|
|
13628
13714
|
username?: string | undefined;
|
|
@@ -13655,7 +13741,7 @@ export declare const Envelope: {
|
|
|
13655
13741
|
status?: string | undefined;
|
|
13656
13742
|
is_mobile?: boolean | undefined;
|
|
13657
13743
|
metadata?: string | undefined;
|
|
13658
|
-
} & { [
|
|
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 {
|
|
13659
13745
|
user_id?: string | undefined;
|
|
13660
13746
|
session_id?: string | undefined;
|
|
13661
13747
|
username?: string | undefined;
|
|
@@ -13667,7 +13753,7 @@ export declare const Envelope: {
|
|
|
13667
13753
|
clan_logo?: string | undefined;
|
|
13668
13754
|
category_name?: string | undefined;
|
|
13669
13755
|
mode?: number | undefined;
|
|
13670
|
-
} & { [
|
|
13756
|
+
} & { [K_422 in Exclude<keyof I_1["channel_presence_event"], keyof ChannelPresenceEvent>]: never; }) | undefined;
|
|
13671
13757
|
error?: ({
|
|
13672
13758
|
code?: number | undefined;
|
|
13673
13759
|
message?: string | undefined;
|
|
@@ -13681,8 +13767,8 @@ export declare const Envelope: {
|
|
|
13681
13767
|
[x: string]: string | undefined;
|
|
13682
13768
|
} & {
|
|
13683
13769
|
[x: string]: string | undefined;
|
|
13684
|
-
} & { [
|
|
13685
|
-
} & { [
|
|
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;
|
|
13686
13772
|
notifications?: ({
|
|
13687
13773
|
notifications?: {
|
|
13688
13774
|
id?: string | undefined;
|
|
@@ -13961,8 +14047,8 @@ export declare const Envelope: {
|
|
|
13961
14047
|
creator_id?: string | undefined;
|
|
13962
14048
|
channel_label?: string | undefined;
|
|
13963
14049
|
channel_private?: number | undefined;
|
|
13964
|
-
channel_avatar?: (string[] & string[] & { [
|
|
13965
|
-
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;
|
|
13966
14052
|
last_sent_message?: ({
|
|
13967
14053
|
id?: string | undefined;
|
|
13968
14054
|
timestamp_seconds?: number | undefined;
|
|
@@ -13982,8 +14068,8 @@ export declare const Envelope: {
|
|
|
13982
14068
|
reference?: string | undefined;
|
|
13983
14069
|
mention?: string | undefined;
|
|
13984
14070
|
reaction?: string | undefined;
|
|
13985
|
-
repliers?: (string[] & string[] & { [
|
|
13986
|
-
} & { [
|
|
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;
|
|
13987
14073
|
last_seen_message?: ({
|
|
13988
14074
|
id?: string | undefined;
|
|
13989
14075
|
timestamp_seconds?: number | undefined;
|
|
@@ -14003,30 +14089,30 @@ export declare const Envelope: {
|
|
|
14003
14089
|
reference?: string | undefined;
|
|
14004
14090
|
mention?: string | undefined;
|
|
14005
14091
|
reaction?: string | undefined;
|
|
14006
|
-
repliers?: (string[] & string[] & { [
|
|
14007
|
-
} & { [
|
|
14008
|
-
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;
|
|
14009
14095
|
meeting_code?: string | undefined;
|
|
14010
14096
|
count_mess_unread?: number | undefined;
|
|
14011
14097
|
active?: number | undefined;
|
|
14012
14098
|
last_pin_message?: string | undefined;
|
|
14013
|
-
usernames?: (string[] & string[] & { [
|
|
14099
|
+
usernames?: (string[] & string[] & { [K_432 in Exclude<keyof I_1["notifications"]["notifications"][number]["channel"]["usernames"], keyof string[]>]: never; }) | undefined;
|
|
14014
14100
|
creator_name?: string | undefined;
|
|
14015
14101
|
create_time_seconds?: number | undefined;
|
|
14016
14102
|
update_time_seconds?: number | undefined;
|
|
14017
|
-
metadata?: (string[] & string[] & { [
|
|
14018
|
-
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;
|
|
14019
14105
|
clan_name?: string | undefined;
|
|
14020
14106
|
app_id?: string | undefined;
|
|
14021
14107
|
is_mute?: boolean | undefined;
|
|
14022
14108
|
age_restricted?: number | undefined;
|
|
14023
14109
|
topic?: string | undefined;
|
|
14024
14110
|
e2ee?: number | undefined;
|
|
14025
|
-
display_names?: (string[] & string[] & { [
|
|
14026
|
-
} & { [
|
|
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;
|
|
14027
14113
|
topic_id?: string | undefined;
|
|
14028
14114
|
category?: number | undefined;
|
|
14029
|
-
} & { [
|
|
14115
|
+
} & { [K_437 in Exclude<keyof I_1["notifications"]["notifications"][number], keyof Notification>]: never; })[] & { [K_438 in Exclude<keyof I_1["notifications"]["notifications"], keyof {
|
|
14030
14116
|
id?: string | undefined;
|
|
14031
14117
|
subject?: string | undefined;
|
|
14032
14118
|
content?: string | undefined;
|
|
@@ -14094,7 +14180,7 @@ export declare const Envelope: {
|
|
|
14094
14180
|
topic_id?: string | undefined;
|
|
14095
14181
|
category?: number | undefined;
|
|
14096
14182
|
}[]>]: never; }) | undefined;
|
|
14097
|
-
} & { [
|
|
14183
|
+
} & { [K_439 in Exclude<keyof I_1["notifications"], "notifications">]: never; }) | undefined;
|
|
14098
14184
|
rpc?: ({
|
|
14099
14185
|
id?: string | undefined;
|
|
14100
14186
|
payload?: string | undefined;
|
|
@@ -14103,7 +14189,7 @@ export declare const Envelope: {
|
|
|
14103
14189
|
id?: string | undefined;
|
|
14104
14190
|
payload?: string | undefined;
|
|
14105
14191
|
http_key?: string | undefined;
|
|
14106
|
-
} & { [
|
|
14192
|
+
} & { [K_440 in Exclude<keyof I_1["rpc"], keyof Rpc>]: never; }) | undefined;
|
|
14107
14193
|
status?: ({
|
|
14108
14194
|
presences?: {
|
|
14109
14195
|
user_id?: string | undefined;
|
|
@@ -14139,7 +14225,7 @@ export declare const Envelope: {
|
|
|
14139
14225
|
status?: string | undefined;
|
|
14140
14226
|
is_mobile?: boolean | undefined;
|
|
14141
14227
|
metadata?: string | undefined;
|
|
14142
|
-
} & { [
|
|
14228
|
+
} & { [K_441 in Exclude<keyof I_1["status"]["presences"][number], keyof UserPresence>]: never; })[] & { [K_442 in Exclude<keyof I_1["status"]["presences"], keyof {
|
|
14143
14229
|
user_id?: string | undefined;
|
|
14144
14230
|
session_id?: string | undefined;
|
|
14145
14231
|
username?: string | undefined;
|
|
@@ -14148,14 +14234,14 @@ export declare const Envelope: {
|
|
|
14148
14234
|
is_mobile?: boolean | undefined;
|
|
14149
14235
|
metadata?: string | undefined;
|
|
14150
14236
|
}[]>]: never; }) | undefined;
|
|
14151
|
-
} & { [
|
|
14237
|
+
} & { [K_443 in Exclude<keyof I_1["status"], "presences">]: never; }) | undefined;
|
|
14152
14238
|
status_follow?: ({
|
|
14153
14239
|
user_ids?: string[] | undefined;
|
|
14154
14240
|
usernames?: string[] | undefined;
|
|
14155
14241
|
} & {
|
|
14156
|
-
user_ids?: (string[] & string[] & { [
|
|
14157
|
-
usernames?: (string[] & string[] & { [
|
|
14158
|
-
} & { [
|
|
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;
|
|
14159
14245
|
status_presence_event?: ({
|
|
14160
14246
|
joins?: {
|
|
14161
14247
|
user_id?: string | undefined;
|
|
@@ -14200,7 +14286,7 @@ export declare const Envelope: {
|
|
|
14200
14286
|
status?: string | undefined;
|
|
14201
14287
|
is_mobile?: boolean | undefined;
|
|
14202
14288
|
metadata?: string | undefined;
|
|
14203
|
-
} & { [
|
|
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 {
|
|
14204
14290
|
user_id?: string | undefined;
|
|
14205
14291
|
session_id?: string | undefined;
|
|
14206
14292
|
username?: string | undefined;
|
|
@@ -14233,7 +14319,7 @@ export declare const Envelope: {
|
|
|
14233
14319
|
status?: string | undefined;
|
|
14234
14320
|
is_mobile?: boolean | undefined;
|
|
14235
14321
|
metadata?: string | undefined;
|
|
14236
|
-
} & { [
|
|
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 {
|
|
14237
14323
|
user_id?: string | undefined;
|
|
14238
14324
|
session_id?: string | undefined;
|
|
14239
14325
|
username?: string | undefined;
|
|
@@ -14242,17 +14328,17 @@ export declare const Envelope: {
|
|
|
14242
14328
|
is_mobile?: boolean | undefined;
|
|
14243
14329
|
metadata?: string | undefined;
|
|
14244
14330
|
}[]>]: never; }) | undefined;
|
|
14245
|
-
} & { [
|
|
14331
|
+
} & { [K_451 in Exclude<keyof I_1["status_presence_event"], keyof StatusPresenceEvent>]: never; }) | undefined;
|
|
14246
14332
|
status_unfollow?: ({
|
|
14247
14333
|
user_ids?: string[] | undefined;
|
|
14248
14334
|
} & {
|
|
14249
|
-
user_ids?: (string[] & string[] & { [
|
|
14250
|
-
} & { [
|
|
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;
|
|
14251
14337
|
status_update?: ({
|
|
14252
14338
|
status?: string | undefined;
|
|
14253
14339
|
} & {
|
|
14254
14340
|
status?: string | undefined;
|
|
14255
|
-
} & { [
|
|
14341
|
+
} & { [K_454 in Exclude<keyof I_1["status_update"], "status">]: never; }) | undefined;
|
|
14256
14342
|
stream_data?: ({
|
|
14257
14343
|
stream?: {
|
|
14258
14344
|
mode?: number | undefined;
|
|
@@ -14282,7 +14368,7 @@ export declare const Envelope: {
|
|
|
14282
14368
|
channel_id?: string | undefined;
|
|
14283
14369
|
clan_id?: string | undefined;
|
|
14284
14370
|
label?: string | undefined;
|
|
14285
|
-
} & { [
|
|
14371
|
+
} & { [K_455 in Exclude<keyof I_1["stream_data"]["stream"], keyof Stream>]: never; }) | undefined;
|
|
14286
14372
|
sender?: ({
|
|
14287
14373
|
user_id?: string | undefined;
|
|
14288
14374
|
session_id?: string | undefined;
|
|
@@ -14299,10 +14385,10 @@ export declare const Envelope: {
|
|
|
14299
14385
|
status?: string | undefined;
|
|
14300
14386
|
is_mobile?: boolean | undefined;
|
|
14301
14387
|
metadata?: string | undefined;
|
|
14302
|
-
} & { [
|
|
14388
|
+
} & { [K_456 in Exclude<keyof I_1["stream_data"]["sender"], keyof UserPresence>]: never; }) | undefined;
|
|
14303
14389
|
data?: string | undefined;
|
|
14304
14390
|
reliable?: boolean | undefined;
|
|
14305
|
-
} & { [
|
|
14391
|
+
} & { [K_457 in Exclude<keyof I_1["stream_data"], keyof StreamData>]: never; }) | undefined;
|
|
14306
14392
|
stream_presence_event?: ({
|
|
14307
14393
|
stream?: {
|
|
14308
14394
|
mode?: number | undefined;
|
|
@@ -14339,7 +14425,7 @@ export declare const Envelope: {
|
|
|
14339
14425
|
channel_id?: string | undefined;
|
|
14340
14426
|
clan_id?: string | undefined;
|
|
14341
14427
|
label?: string | undefined;
|
|
14342
|
-
} & { [
|
|
14428
|
+
} & { [K_458 in Exclude<keyof I_1["stream_presence_event"]["stream"], keyof Stream>]: never; }) | undefined;
|
|
14343
14429
|
joins?: ({
|
|
14344
14430
|
user_id?: string | undefined;
|
|
14345
14431
|
session_id?: string | undefined;
|
|
@@ -14364,7 +14450,7 @@ export declare const Envelope: {
|
|
|
14364
14450
|
status?: string | undefined;
|
|
14365
14451
|
is_mobile?: boolean | undefined;
|
|
14366
14452
|
metadata?: string | undefined;
|
|
14367
|
-
} & { [
|
|
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 {
|
|
14368
14454
|
user_id?: string | undefined;
|
|
14369
14455
|
session_id?: string | undefined;
|
|
14370
14456
|
username?: string | undefined;
|
|
@@ -14397,7 +14483,7 @@ export declare const Envelope: {
|
|
|
14397
14483
|
status?: string | undefined;
|
|
14398
14484
|
is_mobile?: boolean | undefined;
|
|
14399
14485
|
metadata?: string | undefined;
|
|
14400
|
-
} & { [
|
|
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 {
|
|
14401
14487
|
user_id?: string | undefined;
|
|
14402
14488
|
session_id?: string | undefined;
|
|
14403
14489
|
username?: string | undefined;
|
|
@@ -14406,9 +14492,9 @@ export declare const Envelope: {
|
|
|
14406
14492
|
is_mobile?: boolean | undefined;
|
|
14407
14493
|
metadata?: string | undefined;
|
|
14408
14494
|
}[]>]: never; }) | undefined;
|
|
14409
|
-
} & { [
|
|
14410
|
-
ping?: ({} & {} & { [
|
|
14411
|
-
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;
|
|
14412
14498
|
message_typing_event?: ({
|
|
14413
14499
|
clan_id?: string | undefined;
|
|
14414
14500
|
channel_id?: string | undefined;
|
|
@@ -14425,7 +14511,7 @@ export declare const Envelope: {
|
|
|
14425
14511
|
is_public?: boolean | undefined;
|
|
14426
14512
|
sender_username?: string | undefined;
|
|
14427
14513
|
sender_display_name?: string | undefined;
|
|
14428
|
-
} & { [
|
|
14514
|
+
} & { [K_466 in Exclude<keyof I_1["message_typing_event"], keyof MessageTypingEvent>]: never; }) | undefined;
|
|
14429
14515
|
last_seen_message_event?: ({
|
|
14430
14516
|
clan_id?: string | undefined;
|
|
14431
14517
|
channel_id?: string | undefined;
|
|
@@ -14440,7 +14526,7 @@ export declare const Envelope: {
|
|
|
14440
14526
|
mode?: number | undefined;
|
|
14441
14527
|
timestamp_seconds?: number | undefined;
|
|
14442
14528
|
badge_count?: number | undefined;
|
|
14443
|
-
} & { [
|
|
14529
|
+
} & { [K_467 in Exclude<keyof I_1["last_seen_message_event"], keyof LastSeenMessageEvent>]: never; }) | undefined;
|
|
14444
14530
|
message_reaction_event?: ({
|
|
14445
14531
|
id?: string | undefined;
|
|
14446
14532
|
emoji_id?: string | undefined;
|
|
@@ -14475,7 +14561,7 @@ export declare const Envelope: {
|
|
|
14475
14561
|
is_public?: boolean | undefined;
|
|
14476
14562
|
topic_id?: string | undefined;
|
|
14477
14563
|
emoji_recent_id?: string | undefined;
|
|
14478
|
-
} & { [
|
|
14564
|
+
} & { [K_468 in Exclude<keyof I_1["message_reaction_event"], keyof MessageReaction>]: never; }) | undefined;
|
|
14479
14565
|
voice_joined_event?: ({
|
|
14480
14566
|
clan_id?: string | undefined;
|
|
14481
14567
|
clan_name?: string | undefined;
|
|
@@ -14494,7 +14580,7 @@ export declare const Envelope: {
|
|
|
14494
14580
|
voice_channel_label?: string | undefined;
|
|
14495
14581
|
voice_channel_id?: string | undefined;
|
|
14496
14582
|
last_screenshot?: string | undefined;
|
|
14497
|
-
} & { [
|
|
14583
|
+
} & { [K_469 in Exclude<keyof I_1["voice_joined_event"], keyof VoiceJoinedEvent>]: never; }) | undefined;
|
|
14498
14584
|
voice_leaved_event?: ({
|
|
14499
14585
|
id?: string | undefined;
|
|
14500
14586
|
clan_id?: string | undefined;
|
|
@@ -14505,7 +14591,7 @@ export declare const Envelope: {
|
|
|
14505
14591
|
clan_id?: string | undefined;
|
|
14506
14592
|
voice_channel_id?: string | undefined;
|
|
14507
14593
|
voice_user_id?: string | undefined;
|
|
14508
|
-
} & { [
|
|
14594
|
+
} & { [K_470 in Exclude<keyof I_1["voice_leaved_event"], keyof VoiceLeavedEvent>]: never; }) | undefined;
|
|
14509
14595
|
voice_started_event?: ({
|
|
14510
14596
|
id?: string | undefined;
|
|
14511
14597
|
clan_id?: string | undefined;
|
|
@@ -14514,7 +14600,7 @@ export declare const Envelope: {
|
|
|
14514
14600
|
id?: string | undefined;
|
|
14515
14601
|
clan_id?: string | undefined;
|
|
14516
14602
|
voice_channel_id?: string | undefined;
|
|
14517
|
-
} & { [
|
|
14603
|
+
} & { [K_471 in Exclude<keyof I_1["voice_started_event"], keyof VoiceStartedEvent>]: never; }) | undefined;
|
|
14518
14604
|
voice_ended_event?: ({
|
|
14519
14605
|
id?: string | undefined;
|
|
14520
14606
|
clan_id?: string | undefined;
|
|
@@ -14523,7 +14609,7 @@ export declare const Envelope: {
|
|
|
14523
14609
|
id?: string | undefined;
|
|
14524
14610
|
clan_id?: string | undefined;
|
|
14525
14611
|
voice_channel_id?: string | undefined;
|
|
14526
|
-
} & { [
|
|
14612
|
+
} & { [K_472 in Exclude<keyof I_1["voice_ended_event"], keyof VoiceEndedEvent>]: never; }) | undefined;
|
|
14527
14613
|
channel_created_event?: ({
|
|
14528
14614
|
clan_id?: string | undefined;
|
|
14529
14615
|
category_id?: string | undefined;
|
|
@@ -14548,7 +14634,7 @@ export declare const Envelope: {
|
|
|
14548
14634
|
status?: number | undefined;
|
|
14549
14635
|
app_id?: string | undefined;
|
|
14550
14636
|
clan_name?: string | undefined;
|
|
14551
|
-
} & { [
|
|
14637
|
+
} & { [K_473 in Exclude<keyof I_1["channel_created_event"], keyof ChannelCreatedEvent>]: never; }) | undefined;
|
|
14552
14638
|
channel_deleted_event?: ({
|
|
14553
14639
|
clan_id?: string | undefined;
|
|
14554
14640
|
category_id?: string | undefined;
|
|
@@ -14561,7 +14647,7 @@ export declare const Envelope: {
|
|
|
14561
14647
|
parent_id?: string | undefined;
|
|
14562
14648
|
channel_id?: string | undefined;
|
|
14563
14649
|
deletor?: string | undefined;
|
|
14564
|
-
} & { [
|
|
14650
|
+
} & { [K_474 in Exclude<keyof I_1["channel_deleted_event"], keyof ChannelDeletedEvent>]: never; }) | undefined;
|
|
14565
14651
|
channel_updated_event?: ({
|
|
14566
14652
|
clan_id?: string | undefined;
|
|
14567
14653
|
category_id?: string | undefined;
|
|
@@ -14600,9 +14686,9 @@ export declare const Envelope: {
|
|
|
14600
14686
|
age_restricted?: number | undefined;
|
|
14601
14687
|
active?: number | undefined;
|
|
14602
14688
|
count_mess_unread?: number | undefined;
|
|
14603
|
-
user_ids?: (string[] & string[] & { [
|
|
14604
|
-
role_ids?: (string[] & string[] & { [
|
|
14605
|
-
} & { [
|
|
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;
|
|
14606
14692
|
last_pin_message_event?: ({
|
|
14607
14693
|
clan_id?: string | undefined;
|
|
14608
14694
|
channel_id?: string | undefined;
|
|
@@ -14633,7 +14719,7 @@ export declare const Envelope: {
|
|
|
14633
14719
|
message_content?: string | undefined;
|
|
14634
14720
|
message_attachment?: string | undefined;
|
|
14635
14721
|
message_created_time?: string | undefined;
|
|
14636
|
-
} & { [
|
|
14722
|
+
} & { [K_478 in Exclude<keyof I_1["last_pin_message_event"], keyof LastPinMessageEvent>]: never; }) | undefined;
|
|
14637
14723
|
custom_status_event?: ({
|
|
14638
14724
|
clan_id?: string | undefined;
|
|
14639
14725
|
user_id?: string | undefined;
|
|
@@ -14648,7 +14734,7 @@ export declare const Envelope: {
|
|
|
14648
14734
|
status?: string | undefined;
|
|
14649
14735
|
time_reset?: number | undefined;
|
|
14650
14736
|
no_clear?: boolean | undefined;
|
|
14651
|
-
} & { [
|
|
14737
|
+
} & { [K_479 in Exclude<keyof I_1["custom_status_event"], keyof CustomStatusEvent>]: never; }) | undefined;
|
|
14652
14738
|
user_channel_added_event?: ({
|
|
14653
14739
|
channel_desc?: {
|
|
14654
14740
|
clan_id?: string | undefined;
|
|
@@ -14818,8 +14904,8 @@ export declare const Envelope: {
|
|
|
14818
14904
|
creator_id?: string | undefined;
|
|
14819
14905
|
channel_label?: string | undefined;
|
|
14820
14906
|
channel_private?: number | undefined;
|
|
14821
|
-
channel_avatar?: (string[] & string[] & { [
|
|
14822
|
-
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;
|
|
14823
14909
|
last_sent_message?: ({
|
|
14824
14910
|
id?: string | undefined;
|
|
14825
14911
|
timestamp_seconds?: number | undefined;
|
|
@@ -14839,8 +14925,8 @@ export declare const Envelope: {
|
|
|
14839
14925
|
reference?: string | undefined;
|
|
14840
14926
|
mention?: string | undefined;
|
|
14841
14927
|
reaction?: string | undefined;
|
|
14842
|
-
repliers?: (string[] & string[] & { [
|
|
14843
|
-
} & { [
|
|
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;
|
|
14844
14930
|
last_seen_message?: ({
|
|
14845
14931
|
id?: string | undefined;
|
|
14846
14932
|
timestamp_seconds?: number | undefined;
|
|
@@ -14860,27 +14946,27 @@ export declare const Envelope: {
|
|
|
14860
14946
|
reference?: string | undefined;
|
|
14861
14947
|
mention?: string | undefined;
|
|
14862
14948
|
reaction?: string | undefined;
|
|
14863
|
-
repliers?: (string[] & string[] & { [
|
|
14864
|
-
} & { [
|
|
14865
|
-
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;
|
|
14866
14952
|
meeting_code?: string | undefined;
|
|
14867
14953
|
count_mess_unread?: number | undefined;
|
|
14868
14954
|
active?: number | undefined;
|
|
14869
14955
|
last_pin_message?: string | undefined;
|
|
14870
|
-
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;
|
|
14871
14957
|
creator_name?: string | undefined;
|
|
14872
14958
|
create_time_seconds?: number | undefined;
|
|
14873
14959
|
update_time_seconds?: number | undefined;
|
|
14874
|
-
metadata?: (string[] & string[] & { [
|
|
14875
|
-
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;
|
|
14876
14962
|
clan_name?: string | undefined;
|
|
14877
14963
|
app_id?: string | undefined;
|
|
14878
14964
|
is_mute?: boolean | undefined;
|
|
14879
14965
|
age_restricted?: number | undefined;
|
|
14880
14966
|
topic?: string | undefined;
|
|
14881
14967
|
e2ee?: number | undefined;
|
|
14882
|
-
display_names?: (string[] & string[] & { [
|
|
14883
|
-
} & { [
|
|
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;
|
|
14884
14970
|
users?: ({
|
|
14885
14971
|
user_id?: string | undefined;
|
|
14886
14972
|
username?: string | undefined;
|
|
@@ -14947,7 +15033,7 @@ export declare const Envelope: {
|
|
|
14947
15033
|
device_id?: string | undefined;
|
|
14948
15034
|
token_id?: string | undefined;
|
|
14949
15035
|
platform?: string | undefined;
|
|
14950
|
-
} & { [
|
|
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 {
|
|
14951
15037
|
device_id?: string | undefined;
|
|
14952
15038
|
token_id?: string | undefined;
|
|
14953
15039
|
platform?: string | undefined;
|
|
@@ -14955,14 +15041,14 @@ export declare const Envelope: {
|
|
|
14955
15041
|
online?: boolean | undefined;
|
|
14956
15042
|
metadata?: string | undefined;
|
|
14957
15043
|
is_disabled?: boolean | undefined;
|
|
14958
|
-
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;
|
|
14959
15045
|
pubkey?: string | undefined;
|
|
14960
15046
|
mezon_id?: string | undefined;
|
|
14961
15047
|
app_token?: string | undefined;
|
|
14962
15048
|
app_url?: string | undefined;
|
|
14963
15049
|
is_bot?: boolean | undefined;
|
|
14964
15050
|
voip_token?: string | undefined;
|
|
14965
|
-
} & { [
|
|
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 {
|
|
14966
15052
|
user_id?: string | undefined;
|
|
14967
15053
|
username?: string | undefined;
|
|
14968
15054
|
avatar?: string | undefined;
|
|
@@ -15031,7 +15117,7 @@ export declare const Envelope: {
|
|
|
15031
15117
|
device_id?: string | undefined;
|
|
15032
15118
|
token_id?: string | undefined;
|
|
15033
15119
|
platform?: string | undefined;
|
|
15034
|
-
} & { [
|
|
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 {
|
|
15035
15121
|
device_id?: string | undefined;
|
|
15036
15122
|
token_id?: string | undefined;
|
|
15037
15123
|
platform?: string | undefined;
|
|
@@ -15039,17 +15125,17 @@ export declare const Envelope: {
|
|
|
15039
15125
|
online?: boolean | undefined;
|
|
15040
15126
|
metadata?: string | undefined;
|
|
15041
15127
|
is_disabled?: boolean | undefined;
|
|
15042
|
-
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;
|
|
15043
15129
|
pubkey?: string | undefined;
|
|
15044
15130
|
mezon_id?: string | undefined;
|
|
15045
15131
|
app_token?: string | undefined;
|
|
15046
15132
|
app_url?: string | undefined;
|
|
15047
15133
|
is_bot?: boolean | undefined;
|
|
15048
15134
|
voip_token?: string | undefined;
|
|
15049
|
-
} & { [
|
|
15135
|
+
} & { [K_500 in Exclude<keyof I_1["user_channel_added_event"]["caller"], keyof UserProfileRedis>]: never; }) | undefined;
|
|
15050
15136
|
create_time_second?: number | undefined;
|
|
15051
15137
|
active?: number | undefined;
|
|
15052
|
-
} & { [
|
|
15138
|
+
} & { [K_501 in Exclude<keyof I_1["user_channel_added_event"], keyof UserChannelAdded>]: never; }) | undefined;
|
|
15053
15139
|
user_channel_removed_event?: ({
|
|
15054
15140
|
channel_id?: string | undefined;
|
|
15055
15141
|
user_ids?: string[] | undefined;
|
|
@@ -15058,18 +15144,18 @@ export declare const Envelope: {
|
|
|
15058
15144
|
badge_counts?: number[] | undefined;
|
|
15059
15145
|
} & {
|
|
15060
15146
|
channel_id?: string | undefined;
|
|
15061
|
-
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;
|
|
15062
15148
|
channel_type?: number | undefined;
|
|
15063
15149
|
clan_id?: string | undefined;
|
|
15064
|
-
badge_counts?: (number[] & number[] & { [
|
|
15065
|
-
} & { [
|
|
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;
|
|
15066
15152
|
user_clan_removed_event?: ({
|
|
15067
15153
|
clan_id?: string | undefined;
|
|
15068
15154
|
user_ids?: string[] | undefined;
|
|
15069
15155
|
} & {
|
|
15070
15156
|
clan_id?: string | undefined;
|
|
15071
|
-
user_ids?: (string[] & string[] & { [
|
|
15072
|
-
} & { [
|
|
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;
|
|
15073
15159
|
clan_updated_event?: ({
|
|
15074
15160
|
clan_id?: string | undefined;
|
|
15075
15161
|
clan_name?: string | undefined;
|
|
@@ -15088,7 +15174,7 @@ export declare const Envelope: {
|
|
|
15088
15174
|
is_onboarding?: boolean | undefined;
|
|
15089
15175
|
welcome_channel_id?: string | undefined;
|
|
15090
15176
|
onboarding_banner?: string | undefined;
|
|
15091
|
-
} & { [
|
|
15177
|
+
} & { [K_507 in Exclude<keyof I_1["clan_updated_event"], keyof ClanUpdatedEvent>]: never; }) | undefined;
|
|
15092
15178
|
clan_profile_updated_event?: ({
|
|
15093
15179
|
user_id?: string | undefined;
|
|
15094
15180
|
clan_nick?: string | undefined;
|
|
@@ -15099,7 +15185,7 @@ export declare const Envelope: {
|
|
|
15099
15185
|
clan_nick?: string | undefined;
|
|
15100
15186
|
clan_avatar?: string | undefined;
|
|
15101
15187
|
clan_id?: string | undefined;
|
|
15102
|
-
} & { [
|
|
15188
|
+
} & { [K_508 in Exclude<keyof I_1["clan_profile_updated_event"], keyof ClanProfileUpdatedEvent>]: never; }) | undefined;
|
|
15103
15189
|
check_name_existed_event?: ({
|
|
15104
15190
|
name?: string | undefined;
|
|
15105
15191
|
condition_id?: string | undefined;
|
|
@@ -15110,7 +15196,7 @@ export declare const Envelope: {
|
|
|
15110
15196
|
condition_id?: string | undefined;
|
|
15111
15197
|
exist?: boolean | undefined;
|
|
15112
15198
|
type?: number | undefined;
|
|
15113
|
-
} & { [
|
|
15199
|
+
} & { [K_509 in Exclude<keyof I_1["check_name_existed_event"], keyof CheckNameExistedEvent>]: never; }) | undefined;
|
|
15114
15200
|
user_profile_updated_event?: ({
|
|
15115
15201
|
user_id?: string | undefined;
|
|
15116
15202
|
display_name?: string | undefined;
|
|
@@ -15127,7 +15213,7 @@ export declare const Envelope: {
|
|
|
15127
15213
|
channel_id?: string | undefined;
|
|
15128
15214
|
clan_id?: string | undefined;
|
|
15129
15215
|
encrypt_private_key?: string | undefined;
|
|
15130
|
-
} & { [
|
|
15216
|
+
} & { [K_510 in Exclude<keyof I_1["user_profile_updated_event"], keyof UserProfileUpdatedEvent>]: never; }) | undefined;
|
|
15131
15217
|
add_clan_user_event?: ({
|
|
15132
15218
|
clan_id?: string | undefined;
|
|
15133
15219
|
user?: {
|
|
@@ -15200,7 +15286,7 @@ export declare const Envelope: {
|
|
|
15200
15286
|
device_id?: string | undefined;
|
|
15201
15287
|
token_id?: string | undefined;
|
|
15202
15288
|
platform?: string | undefined;
|
|
15203
|
-
} & { [
|
|
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 {
|
|
15204
15290
|
device_id?: string | undefined;
|
|
15205
15291
|
token_id?: string | undefined;
|
|
15206
15292
|
platform?: string | undefined;
|
|
@@ -15208,16 +15294,16 @@ export declare const Envelope: {
|
|
|
15208
15294
|
online?: boolean | undefined;
|
|
15209
15295
|
metadata?: string | undefined;
|
|
15210
15296
|
is_disabled?: boolean | undefined;
|
|
15211
|
-
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;
|
|
15212
15298
|
pubkey?: string | undefined;
|
|
15213
15299
|
mezon_id?: string | undefined;
|
|
15214
15300
|
app_token?: string | undefined;
|
|
15215
15301
|
app_url?: string | undefined;
|
|
15216
15302
|
is_bot?: boolean | undefined;
|
|
15217
15303
|
voip_token?: string | undefined;
|
|
15218
|
-
} & { [
|
|
15304
|
+
} & { [K_514 in Exclude<keyof I_1["add_clan_user_event"]["user"], keyof UserProfileRedis>]: never; }) | undefined;
|
|
15219
15305
|
invitor?: string | undefined;
|
|
15220
|
-
} & { [
|
|
15306
|
+
} & { [K_515 in Exclude<keyof I_1["add_clan_user_event"], keyof AddClanUserEvent>]: never; }) | undefined;
|
|
15221
15307
|
clan_event_created?: ({
|
|
15222
15308
|
title?: string | undefined;
|
|
15223
15309
|
logo?: string | undefined;
|
|
@@ -15271,8 +15357,8 @@ export declare const Envelope: {
|
|
|
15271
15357
|
external_link?: string | undefined;
|
|
15272
15358
|
creator_id?: string | undefined;
|
|
15273
15359
|
event_id?: string | undefined;
|
|
15274
|
-
} & { [
|
|
15275
|
-
} & { [
|
|
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;
|
|
15276
15362
|
role_assign_event?: ({
|
|
15277
15363
|
ClanId?: string | undefined;
|
|
15278
15364
|
role_id?: string | undefined;
|
|
@@ -15281,16 +15367,16 @@ export declare const Envelope: {
|
|
|
15281
15367
|
} & {
|
|
15282
15368
|
ClanId?: string | undefined;
|
|
15283
15369
|
role_id?: string | undefined;
|
|
15284
|
-
user_ids_assigned?: (string[] & string[] & { [
|
|
15285
|
-
user_ids_removed?: (string[] & string[] & { [
|
|
15286
|
-
} & { [
|
|
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;
|
|
15287
15373
|
clan_deleted_event?: ({
|
|
15288
15374
|
clan_id?: string | undefined;
|
|
15289
15375
|
deletor?: string | undefined;
|
|
15290
15376
|
} & {
|
|
15291
15377
|
clan_id?: string | undefined;
|
|
15292
15378
|
deletor?: string | undefined;
|
|
15293
|
-
} & { [
|
|
15379
|
+
} & { [K_521 in Exclude<keyof I_1["clan_deleted_event"], keyof ClanDeletedEvent>]: never; }) | undefined;
|
|
15294
15380
|
give_coffee_event?: ({
|
|
15295
15381
|
sender_id?: string | undefined;
|
|
15296
15382
|
receiver_id?: string | undefined;
|
|
@@ -15305,7 +15391,7 @@ export declare const Envelope: {
|
|
|
15305
15391
|
message_ref_id?: string | undefined;
|
|
15306
15392
|
channel_id?: string | undefined;
|
|
15307
15393
|
clan_id?: string | undefined;
|
|
15308
|
-
} & { [
|
|
15394
|
+
} & { [K_522 in Exclude<keyof I_1["give_coffee_event"], keyof GiveCoffeeEvent>]: never; }) | undefined;
|
|
15309
15395
|
sticker_create_event?: ({
|
|
15310
15396
|
clan_id?: string | undefined;
|
|
15311
15397
|
source?: string | undefined;
|
|
@@ -15324,7 +15410,7 @@ export declare const Envelope: {
|
|
|
15324
15410
|
sticker_id?: string | undefined;
|
|
15325
15411
|
logo?: string | undefined;
|
|
15326
15412
|
clan_name?: string | undefined;
|
|
15327
|
-
} & { [
|
|
15413
|
+
} & { [K_523 in Exclude<keyof I_1["sticker_create_event"], keyof StickerCreateEvent>]: never; }) | undefined;
|
|
15328
15414
|
sticker_update_event?: ({
|
|
15329
15415
|
shortname?: string | undefined;
|
|
15330
15416
|
sticker_id?: string | undefined;
|
|
@@ -15333,14 +15419,14 @@ export declare const Envelope: {
|
|
|
15333
15419
|
shortname?: string | undefined;
|
|
15334
15420
|
sticker_id?: string | undefined;
|
|
15335
15421
|
user_id?: string | undefined;
|
|
15336
|
-
} & { [
|
|
15422
|
+
} & { [K_524 in Exclude<keyof I_1["sticker_update_event"], keyof StickerUpdateEvent>]: never; }) | undefined;
|
|
15337
15423
|
sticker_delete_event?: ({
|
|
15338
15424
|
sticker_id?: string | undefined;
|
|
15339
15425
|
user_id?: string | undefined;
|
|
15340
15426
|
} & {
|
|
15341
15427
|
sticker_id?: string | undefined;
|
|
15342
15428
|
user_id?: string | undefined;
|
|
15343
|
-
} & { [
|
|
15429
|
+
} & { [K_525 in Exclude<keyof I_1["sticker_delete_event"], keyof StickerDeleteEvent>]: never; }) | undefined;
|
|
15344
15430
|
role_event?: ({
|
|
15345
15431
|
role?: {
|
|
15346
15432
|
id?: string | undefined;
|
|
@@ -15478,7 +15564,7 @@ export declare const Envelope: {
|
|
|
15478
15564
|
lang_tag?: string | undefined;
|
|
15479
15565
|
location?: string | undefined;
|
|
15480
15566
|
online?: boolean | undefined;
|
|
15481
|
-
} & { [
|
|
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 {
|
|
15482
15568
|
id?: string | undefined;
|
|
15483
15569
|
username?: string | undefined;
|
|
15484
15570
|
display_name?: string | undefined;
|
|
@@ -15488,7 +15574,7 @@ export declare const Envelope: {
|
|
|
15488
15574
|
online?: boolean | undefined;
|
|
15489
15575
|
}[]>]: never; }) | undefined;
|
|
15490
15576
|
cursor?: string | undefined;
|
|
15491
|
-
} & { [
|
|
15577
|
+
} & { [K_528 in Exclude<keyof I_1["role_event"]["role"]["role_user_list"], keyof RoleUserList>]: never; }) | undefined;
|
|
15492
15578
|
permission_list?: ({
|
|
15493
15579
|
permissions?: {
|
|
15494
15580
|
id?: string | undefined;
|
|
@@ -15525,7 +15611,7 @@ export declare const Envelope: {
|
|
|
15525
15611
|
active?: number | undefined;
|
|
15526
15612
|
scope?: number | undefined;
|
|
15527
15613
|
level?: number | undefined;
|
|
15528
|
-
} & { [
|
|
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 {
|
|
15529
15615
|
id?: string | undefined;
|
|
15530
15616
|
title?: string | undefined;
|
|
15531
15617
|
slug?: string | undefined;
|
|
@@ -15535,19 +15621,19 @@ export declare const Envelope: {
|
|
|
15535
15621
|
level?: number | undefined;
|
|
15536
15622
|
}[]>]: never; }) | undefined;
|
|
15537
15623
|
max_level_permission?: number | undefined;
|
|
15538
|
-
} & { [
|
|
15624
|
+
} & { [K_531 in Exclude<keyof I_1["role_event"]["role"]["permission_list"], keyof PermissionList>]: never; }) | undefined;
|
|
15539
15625
|
role_channel_active?: number | undefined;
|
|
15540
|
-
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;
|
|
15541
15627
|
max_level_permission?: number | undefined;
|
|
15542
15628
|
order_role?: number | undefined;
|
|
15543
|
-
} & { [
|
|
15629
|
+
} & { [K_533 in Exclude<keyof I_1["role_event"]["role"], keyof Role>]: never; }) | undefined;
|
|
15544
15630
|
status?: number | undefined;
|
|
15545
15631
|
user_id?: string | undefined;
|
|
15546
|
-
user_add_ids?: (string[] & string[] & { [
|
|
15547
|
-
user_remove_ids?: (string[] & string[] & { [
|
|
15548
|
-
active_permission_ids?: (string[] & string[] & { [
|
|
15549
|
-
remove_permission_ids?: (string[] & string[] & { [
|
|
15550
|
-
} & { [
|
|
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;
|
|
15551
15637
|
event_emoji?: ({
|
|
15552
15638
|
id?: string | undefined;
|
|
15553
15639
|
clan_id?: string | undefined;
|
|
@@ -15570,7 +15656,7 @@ export declare const Envelope: {
|
|
|
15570
15656
|
logo?: string | undefined;
|
|
15571
15657
|
clan_name?: string | undefined;
|
|
15572
15658
|
is_for_sale?: boolean | undefined;
|
|
15573
|
-
} & { [
|
|
15659
|
+
} & { [K_539 in Exclude<keyof I_1["event_emoji"], keyof EventEmoji>]: never; }) | undefined;
|
|
15574
15660
|
streaming_joined_event?: ({
|
|
15575
15661
|
clan_id?: string | undefined;
|
|
15576
15662
|
clan_name?: string | undefined;
|
|
@@ -15587,7 +15673,7 @@ export declare const Envelope: {
|
|
|
15587
15673
|
user_id?: string | undefined;
|
|
15588
15674
|
streaming_channel_label?: string | undefined;
|
|
15589
15675
|
streaming_channel_id?: string | undefined;
|
|
15590
|
-
} & { [
|
|
15676
|
+
} & { [K_540 in Exclude<keyof I_1["streaming_joined_event"], keyof StreamingJoinedEvent>]: never; }) | undefined;
|
|
15591
15677
|
streaming_leaved_event?: ({
|
|
15592
15678
|
id?: string | undefined;
|
|
15593
15679
|
clan_id?: string | undefined;
|
|
@@ -15598,7 +15684,7 @@ export declare const Envelope: {
|
|
|
15598
15684
|
clan_id?: string | undefined;
|
|
15599
15685
|
streaming_channel_id?: string | undefined;
|
|
15600
15686
|
streaming_user_id?: string | undefined;
|
|
15601
|
-
} & { [
|
|
15687
|
+
} & { [K_541 in Exclude<keyof I_1["streaming_leaved_event"], keyof StreamingLeavedEvent>]: never; }) | undefined;
|
|
15602
15688
|
streaming_started_event?: ({
|
|
15603
15689
|
clan_id?: string | undefined;
|
|
15604
15690
|
channel_id?: string | undefined;
|
|
@@ -15609,14 +15695,14 @@ export declare const Envelope: {
|
|
|
15609
15695
|
channel_id?: string | undefined;
|
|
15610
15696
|
streaming_url?: string | undefined;
|
|
15611
15697
|
is_streaming?: boolean | undefined;
|
|
15612
|
-
} & { [
|
|
15698
|
+
} & { [K_542 in Exclude<keyof I_1["streaming_started_event"], keyof StreamingStartedEvent>]: never; }) | undefined;
|
|
15613
15699
|
streaming_ended_event?: ({
|
|
15614
15700
|
clan_id?: string | undefined;
|
|
15615
15701
|
channel_id?: string | undefined;
|
|
15616
15702
|
} & {
|
|
15617
15703
|
clan_id?: string | undefined;
|
|
15618
15704
|
channel_id?: string | undefined;
|
|
15619
|
-
} & { [
|
|
15705
|
+
} & { [K_543 in Exclude<keyof I_1["streaming_ended_event"], keyof StreamingEndedEvent>]: never; }) | undefined;
|
|
15620
15706
|
permission_set_event?: ({
|
|
15621
15707
|
caller?: string | undefined;
|
|
15622
15708
|
role_id?: string | undefined;
|
|
@@ -15644,12 +15730,12 @@ export declare const Envelope: {
|
|
|
15644
15730
|
permission_id?: string | undefined;
|
|
15645
15731
|
slug?: string | undefined;
|
|
15646
15732
|
type?: number | undefined;
|
|
15647
|
-
} & { [
|
|
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 {
|
|
15648
15734
|
permission_id?: string | undefined;
|
|
15649
15735
|
slug?: string | undefined;
|
|
15650
15736
|
type?: number | undefined;
|
|
15651
15737
|
}[]>]: never; }) | undefined;
|
|
15652
|
-
} & { [
|
|
15738
|
+
} & { [K_546 in Exclude<keyof I_1["permission_set_event"], keyof PermissionSetEvent>]: never; }) | undefined;
|
|
15653
15739
|
permission_changed_event?: ({
|
|
15654
15740
|
user_id?: string | undefined;
|
|
15655
15741
|
channel_id?: string | undefined;
|
|
@@ -15683,7 +15769,7 @@ export declare const Envelope: {
|
|
|
15683
15769
|
permission_id?: string | undefined;
|
|
15684
15770
|
slug?: string | undefined;
|
|
15685
15771
|
type?: number | undefined;
|
|
15686
|
-
} & { [
|
|
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 {
|
|
15687
15773
|
permission_id?: string | undefined;
|
|
15688
15774
|
slug?: string | undefined;
|
|
15689
15775
|
type?: number | undefined;
|
|
@@ -15700,7 +15786,7 @@ export declare const Envelope: {
|
|
|
15700
15786
|
permission_id?: string | undefined;
|
|
15701
15787
|
slug?: string | undefined;
|
|
15702
15788
|
type?: number | undefined;
|
|
15703
|
-
} & { [
|
|
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 {
|
|
15704
15790
|
permission_id?: string | undefined;
|
|
15705
15791
|
slug?: string | undefined;
|
|
15706
15792
|
type?: number | undefined;
|
|
@@ -15717,12 +15803,12 @@ export declare const Envelope: {
|
|
|
15717
15803
|
permission_id?: string | undefined;
|
|
15718
15804
|
slug?: string | undefined;
|
|
15719
15805
|
type?: number | undefined;
|
|
15720
|
-
} & { [
|
|
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 {
|
|
15721
15807
|
permission_id?: string | undefined;
|
|
15722
15808
|
slug?: string | undefined;
|
|
15723
15809
|
type?: number | undefined;
|
|
15724
15810
|
}[]>]: never; }) | undefined;
|
|
15725
|
-
} & { [
|
|
15811
|
+
} & { [K_553 in Exclude<keyof I_1["permission_changed_event"], keyof PermissionChangedEvent>]: never; }) | undefined;
|
|
15726
15812
|
token_sent_event?: ({
|
|
15727
15813
|
sender_id?: string | undefined;
|
|
15728
15814
|
sender_name?: string | undefined;
|
|
@@ -15739,7 +15825,7 @@ export declare const Envelope: {
|
|
|
15739
15825
|
note?: string | undefined;
|
|
15740
15826
|
extra_attribute?: string | undefined;
|
|
15741
15827
|
transaction_id?: string | undefined;
|
|
15742
|
-
} & { [
|
|
15828
|
+
} & { [K_554 in Exclude<keyof I_1["token_sent_event"], keyof TokenSentEvent>]: never; }) | undefined;
|
|
15743
15829
|
message_button_clicked?: ({
|
|
15744
15830
|
message_id?: string | undefined;
|
|
15745
15831
|
channel_id?: string | undefined;
|
|
@@ -15754,7 +15840,7 @@ export declare const Envelope: {
|
|
|
15754
15840
|
sender_id?: string | undefined;
|
|
15755
15841
|
user_id?: string | undefined;
|
|
15756
15842
|
extra_data?: string | undefined;
|
|
15757
|
-
} & { [
|
|
15843
|
+
} & { [K_555 in Exclude<keyof I_1["message_button_clicked"], keyof MessageButtonClicked>]: never; }) | undefined;
|
|
15758
15844
|
unmute_event?: ({
|
|
15759
15845
|
channel_id?: string | undefined;
|
|
15760
15846
|
category_id?: string | undefined;
|
|
@@ -15763,7 +15849,7 @@ export declare const Envelope: {
|
|
|
15763
15849
|
channel_id?: string | undefined;
|
|
15764
15850
|
category_id?: string | undefined;
|
|
15765
15851
|
clan_id?: string | undefined;
|
|
15766
|
-
} & { [
|
|
15852
|
+
} & { [K_556 in Exclude<keyof I_1["unmute_event"], keyof UnmuteEvent>]: never; }) | undefined;
|
|
15767
15853
|
webrtc_signaling_fwd?: ({
|
|
15768
15854
|
receiver_id?: string | undefined;
|
|
15769
15855
|
data_type?: number | undefined;
|
|
@@ -15776,7 +15862,7 @@ export declare const Envelope: {
|
|
|
15776
15862
|
json_data?: string | undefined;
|
|
15777
15863
|
channel_id?: string | undefined;
|
|
15778
15864
|
caller_id?: string | undefined;
|
|
15779
|
-
} & { [
|
|
15865
|
+
} & { [K_557 in Exclude<keyof I_1["webrtc_signaling_fwd"], keyof WebrtcSignalingFwd>]: never; }) | undefined;
|
|
15780
15866
|
list_activity?: ({
|
|
15781
15867
|
acts?: {
|
|
15782
15868
|
user_id?: string | undefined;
|
|
@@ -15816,7 +15902,7 @@ export declare const Envelope: {
|
|
|
15816
15902
|
end_time?: Date | undefined;
|
|
15817
15903
|
application_id?: string | undefined;
|
|
15818
15904
|
status?: number | undefined;
|
|
15819
|
-
} & { [
|
|
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 {
|
|
15820
15906
|
user_id?: string | undefined;
|
|
15821
15907
|
activity_name?: string | undefined;
|
|
15822
15908
|
activity_type?: number | undefined;
|
|
@@ -15826,7 +15912,7 @@ export declare const Envelope: {
|
|
|
15826
15912
|
application_id?: string | undefined;
|
|
15827
15913
|
status?: number | undefined;
|
|
15828
15914
|
}[]>]: never; }) | undefined;
|
|
15829
|
-
} & { [
|
|
15915
|
+
} & { [K_560 in Exclude<keyof I_1["list_activity"], "acts">]: never; }) | undefined;
|
|
15830
15916
|
dropdown_box_selected?: ({
|
|
15831
15917
|
message_id?: string | undefined;
|
|
15832
15918
|
channel_id?: string | undefined;
|
|
@@ -15840,8 +15926,8 @@ export declare const Envelope: {
|
|
|
15840
15926
|
selectbox_id?: string | undefined;
|
|
15841
15927
|
sender_id?: string | undefined;
|
|
15842
15928
|
user_id?: string | undefined;
|
|
15843
|
-
values?: (string[] & string[] & { [
|
|
15844
|
-
} & { [
|
|
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;
|
|
15845
15931
|
incoming_call_push?: ({
|
|
15846
15932
|
receiver_id?: string | undefined;
|
|
15847
15933
|
json_data?: string | undefined;
|
|
@@ -15852,7 +15938,7 @@ export declare const Envelope: {
|
|
|
15852
15938
|
json_data?: string | undefined;
|
|
15853
15939
|
channel_id?: string | undefined;
|
|
15854
15940
|
caller_id?: string | undefined;
|
|
15855
|
-
} & { [
|
|
15941
|
+
} & { [K_563 in Exclude<keyof I_1["incoming_call_push"], keyof IncomingCallPush>]: never; }) | undefined;
|
|
15856
15942
|
sd_topic_event?: ({
|
|
15857
15943
|
id?: string | undefined;
|
|
15858
15944
|
clan_id?: string | undefined;
|
|
@@ -15924,8 +16010,8 @@ export declare const Envelope: {
|
|
|
15924
16010
|
reference?: string | undefined;
|
|
15925
16011
|
mention?: string | undefined;
|
|
15926
16012
|
reaction?: string | undefined;
|
|
15927
|
-
repliers?: (string[] & string[] & { [
|
|
15928
|
-
} & { [
|
|
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;
|
|
15929
16015
|
message?: ({
|
|
15930
16016
|
clan_id?: string | undefined;
|
|
15931
16017
|
channel_id?: string | undefined;
|
|
@@ -15982,9 +16068,9 @@ export declare const Envelope: {
|
|
|
15982
16068
|
hide_editted?: boolean | undefined;
|
|
15983
16069
|
is_public?: boolean | undefined;
|
|
15984
16070
|
topic_id?: string | undefined;
|
|
15985
|
-
} & { [
|
|
15986
|
-
} & { [
|
|
15987
|
-
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;
|
|
15988
16074
|
channel_app_event?: ({
|
|
15989
16075
|
user_id?: string | undefined;
|
|
15990
16076
|
username?: string | undefined;
|
|
@@ -15997,19 +16083,19 @@ export declare const Envelope: {
|
|
|
15997
16083
|
clan_id?: string | undefined;
|
|
15998
16084
|
channel_id?: string | undefined;
|
|
15999
16085
|
action?: number | undefined;
|
|
16000
|
-
} & { [
|
|
16086
|
+
} & { [K_569 in Exclude<keyof I_1["channel_app_event"], keyof ChannelAppEvent>]: never; }) | undefined;
|
|
16001
16087
|
user_status_event?: ({
|
|
16002
16088
|
user_id?: string | undefined;
|
|
16003
16089
|
custom_status?: string | undefined;
|
|
16004
16090
|
} & {
|
|
16005
16091
|
user_id?: string | undefined;
|
|
16006
16092
|
custom_status?: string | undefined;
|
|
16007
|
-
} & { [
|
|
16093
|
+
} & { [K_570 in Exclude<keyof I_1["user_status_event"], keyof UserStatusEvent>]: never; }) | undefined;
|
|
16008
16094
|
remove_friend?: ({
|
|
16009
16095
|
user_id?: string | undefined;
|
|
16010
16096
|
} & {
|
|
16011
16097
|
user_id?: string | undefined;
|
|
16012
|
-
} & { [
|
|
16098
|
+
} & { [K_571 in Exclude<keyof I_1["remove_friend"], "user_id">]: never; }) | undefined;
|
|
16013
16099
|
webhook_event?: ({
|
|
16014
16100
|
id?: string | undefined;
|
|
16015
16101
|
webhook_name?: string | undefined;
|
|
@@ -16034,7 +16120,7 @@ export declare const Envelope: {
|
|
|
16034
16120
|
avatar?: string | undefined;
|
|
16035
16121
|
status?: number | undefined;
|
|
16036
16122
|
clan_id?: string | undefined;
|
|
16037
|
-
} & { [
|
|
16123
|
+
} & { [K_572 in Exclude<keyof I_1["webhook_event"], keyof Webhook>]: never; }) | undefined;
|
|
16038
16124
|
noti_user_channel?: ({
|
|
16039
16125
|
id?: string | undefined;
|
|
16040
16126
|
notification_setting_type?: number | undefined;
|
|
@@ -16047,7 +16133,7 @@ export declare const Envelope: {
|
|
|
16047
16133
|
time_mute?: Date | undefined;
|
|
16048
16134
|
active?: number | undefined;
|
|
16049
16135
|
channel_id?: string | undefined;
|
|
16050
|
-
} & { [
|
|
16136
|
+
} & { [K_573 in Exclude<keyof I_1["noti_user_channel"], keyof NotificationUserChannel>]: never; }) | undefined;
|
|
16051
16137
|
join_channel_app_data?: ({
|
|
16052
16138
|
user_id?: string | undefined;
|
|
16053
16139
|
username?: string | undefined;
|
|
@@ -16056,7 +16142,7 @@ export declare const Envelope: {
|
|
|
16056
16142
|
user_id?: string | undefined;
|
|
16057
16143
|
username?: string | undefined;
|
|
16058
16144
|
hash?: string | undefined;
|
|
16059
|
-
} & { [
|
|
16145
|
+
} & { [K_574 in Exclude<keyof I_1["join_channel_app_data"], keyof JoinChannelAppData>]: never; }) | undefined;
|
|
16060
16146
|
canvas_event?: ({
|
|
16061
16147
|
id?: string | undefined;
|
|
16062
16148
|
title?: string | undefined;
|
|
@@ -16075,7 +16161,7 @@ export declare const Envelope: {
|
|
|
16075
16161
|
is_default?: boolean | undefined;
|
|
16076
16162
|
channel_id?: string | undefined;
|
|
16077
16163
|
status?: number | undefined;
|
|
16078
|
-
} & { [
|
|
16164
|
+
} & { [K_575 in Exclude<keyof I_1["canvas_event"], keyof ChannelCanvas>]: never; }) | undefined;
|
|
16079
16165
|
unpin_message_event?: ({
|
|
16080
16166
|
id?: string | undefined;
|
|
16081
16167
|
message_id?: string | undefined;
|
|
@@ -16086,7 +16172,7 @@ export declare const Envelope: {
|
|
|
16086
16172
|
message_id?: string | undefined;
|
|
16087
16173
|
channel_id?: string | undefined;
|
|
16088
16174
|
clan_id?: string | undefined;
|
|
16089
|
-
} & { [
|
|
16175
|
+
} & { [K_576 in Exclude<keyof I_1["unpin_message_event"], keyof UnpinMessageEvent>]: never; }) | undefined;
|
|
16090
16176
|
category_event?: ({
|
|
16091
16177
|
creator_id?: string | undefined;
|
|
16092
16178
|
clan_id?: string | undefined;
|
|
@@ -16099,7 +16185,7 @@ export declare const Envelope: {
|
|
|
16099
16185
|
category_name?: string | undefined;
|
|
16100
16186
|
id?: string | undefined;
|
|
16101
16187
|
status?: number | undefined;
|
|
16102
|
-
} & { [
|
|
16188
|
+
} & { [K_577 in Exclude<keyof I_1["category_event"], keyof CategoryEvent>]: never; }) | undefined;
|
|
16103
16189
|
handle_participant_meet_state_event?: ({
|
|
16104
16190
|
clan_id?: string | undefined;
|
|
16105
16191
|
channel_id?: string | undefined;
|
|
@@ -16110,12 +16196,12 @@ export declare const Envelope: {
|
|
|
16110
16196
|
channel_id?: string | undefined;
|
|
16111
16197
|
display_name?: string | undefined;
|
|
16112
16198
|
state?: number | undefined;
|
|
16113
|
-
} & { [
|
|
16199
|
+
} & { [K_578 in Exclude<keyof I_1["handle_participant_meet_state_event"], keyof HandleParticipantMeetStateEvent>]: never; }) | undefined;
|
|
16114
16200
|
delete_account_event?: ({
|
|
16115
16201
|
user_id?: string | undefined;
|
|
16116
16202
|
} & {
|
|
16117
16203
|
user_id?: string | undefined;
|
|
16118
|
-
} & { [
|
|
16204
|
+
} & { [K_579 in Exclude<keyof I_1["delete_account_event"], "user_id">]: never; }) | undefined;
|
|
16119
16205
|
ephemeral_message_send?: ({
|
|
16120
16206
|
message?: {
|
|
16121
16207
|
clan_id?: string | undefined;
|
|
@@ -16235,7 +16321,7 @@ export declare const Envelope: {
|
|
|
16235
16321
|
create_time?: Date | undefined;
|
|
16236
16322
|
s?: number | undefined;
|
|
16237
16323
|
e?: number | undefined;
|
|
16238
|
-
} & { [
|
|
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 {
|
|
16239
16325
|
id?: string | undefined;
|
|
16240
16326
|
user_id?: string | undefined;
|
|
16241
16327
|
username?: string | undefined;
|
|
@@ -16269,7 +16355,7 @@ export declare const Envelope: {
|
|
|
16269
16355
|
width?: number | undefined;
|
|
16270
16356
|
height?: number | undefined;
|
|
16271
16357
|
thumbnail?: string | undefined;
|
|
16272
|
-
} & { [
|
|
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 {
|
|
16273
16359
|
filename?: string | undefined;
|
|
16274
16360
|
size?: number | undefined;
|
|
16275
16361
|
url?: string | undefined;
|
|
@@ -16311,7 +16397,7 @@ export declare const Envelope: {
|
|
|
16311
16397
|
mesages_sender_avatar?: string | undefined;
|
|
16312
16398
|
message_sender_clan_nick?: string | undefined;
|
|
16313
16399
|
message_sender_display_name?: string | undefined;
|
|
16314
|
-
} & { [
|
|
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 {
|
|
16315
16401
|
message_id?: string | undefined;
|
|
16316
16402
|
message_ref_id?: string | undefined;
|
|
16317
16403
|
content?: string | undefined;
|
|
@@ -16330,25 +16416,25 @@ export declare const Envelope: {
|
|
|
16330
16416
|
is_public?: boolean | undefined;
|
|
16331
16417
|
code?: number | undefined;
|
|
16332
16418
|
topic_id?: string | undefined;
|
|
16333
|
-
} & { [
|
|
16419
|
+
} & { [K_586 in Exclude<keyof I_1["ephemeral_message_send"]["message"], keyof ChannelMessageSend>]: never; }) | undefined;
|
|
16334
16420
|
receiver_id?: string | undefined;
|
|
16335
|
-
} & { [
|
|
16421
|
+
} & { [K_587 in Exclude<keyof I_1["ephemeral_message_send"], keyof EphemeralMessageSend>]: never; }) | undefined;
|
|
16336
16422
|
block_friend?: ({
|
|
16337
16423
|
user_id?: string | undefined;
|
|
16338
16424
|
} & {
|
|
16339
16425
|
user_id?: string | undefined;
|
|
16340
|
-
} & { [
|
|
16426
|
+
} & { [K_588 in Exclude<keyof I_1["block_friend"], "user_id">]: never; }) | undefined;
|
|
16341
16427
|
voice_reaction_send?: ({
|
|
16342
16428
|
emojis?: string[] | undefined;
|
|
16343
16429
|
channel_id?: string | undefined;
|
|
16344
16430
|
sender_id?: string | undefined;
|
|
16345
16431
|
media_type?: number | undefined;
|
|
16346
16432
|
} & {
|
|
16347
|
-
emojis?: (string[] & string[] & { [
|
|
16433
|
+
emojis?: (string[] & string[] & { [K_589 in Exclude<keyof I_1["voice_reaction_send"]["emojis"], keyof string[]>]: never; }) | undefined;
|
|
16348
16434
|
channel_id?: string | undefined;
|
|
16349
16435
|
sender_id?: string | undefined;
|
|
16350
16436
|
media_type?: number | undefined;
|
|
16351
|
-
} & { [
|
|
16437
|
+
} & { [K_590 in Exclude<keyof I_1["voice_reaction_send"], keyof VoiceReactionSend>]: never; }) | undefined;
|
|
16352
16438
|
mark_as_read?: ({
|
|
16353
16439
|
channel_id?: string | undefined;
|
|
16354
16440
|
category_id?: string | undefined;
|
|
@@ -16357,7 +16443,7 @@ export declare const Envelope: {
|
|
|
16357
16443
|
channel_id?: string | undefined;
|
|
16358
16444
|
category_id?: string | undefined;
|
|
16359
16445
|
clan_id?: string | undefined;
|
|
16360
|
-
} & { [
|
|
16446
|
+
} & { [K_591 in Exclude<keyof I_1["mark_as_read"], keyof MarkAsRead>]: never; }) | undefined;
|
|
16361
16447
|
list_data_socket?: ({
|
|
16362
16448
|
api_name?: string | undefined;
|
|
16363
16449
|
list_clan_req?: {
|
|
@@ -16380,6 +16466,9 @@ export declare const Envelope: {
|
|
|
16380
16466
|
clan_order?: number | undefined;
|
|
16381
16467
|
is_community?: boolean | undefined;
|
|
16382
16468
|
community_banner?: string | undefined;
|
|
16469
|
+
description?: string | undefined;
|
|
16470
|
+
about?: string | undefined;
|
|
16471
|
+
short_url?: string | undefined;
|
|
16383
16472
|
}[] | undefined;
|
|
16384
16473
|
} | undefined;
|
|
16385
16474
|
list_thread_req?: {
|
|
@@ -17227,7 +17316,7 @@ export declare const Envelope: {
|
|
|
17227
17316
|
limit?: number | undefined;
|
|
17228
17317
|
state?: number | undefined;
|
|
17229
17318
|
cursor?: string | undefined;
|
|
17230
|
-
} & { [
|
|
17319
|
+
} & { [K_592 in Exclude<keyof I_1["list_data_socket"]["list_clan_req"], keyof ListClanDescRequest>]: never; }) | undefined;
|
|
17231
17320
|
clan_desc_list?: ({
|
|
17232
17321
|
clandesc?: {
|
|
17233
17322
|
creator_id?: string | undefined;
|
|
@@ -17243,6 +17332,9 @@ export declare const Envelope: {
|
|
|
17243
17332
|
clan_order?: number | undefined;
|
|
17244
17333
|
is_community?: boolean | undefined;
|
|
17245
17334
|
community_banner?: string | undefined;
|
|
17335
|
+
description?: string | undefined;
|
|
17336
|
+
about?: string | undefined;
|
|
17337
|
+
short_url?: string | undefined;
|
|
17246
17338
|
}[] | undefined;
|
|
17247
17339
|
} & {
|
|
17248
17340
|
clandesc?: ({
|
|
@@ -17259,6 +17351,9 @@ export declare const Envelope: {
|
|
|
17259
17351
|
clan_order?: number | undefined;
|
|
17260
17352
|
is_community?: boolean | undefined;
|
|
17261
17353
|
community_banner?: string | undefined;
|
|
17354
|
+
description?: string | undefined;
|
|
17355
|
+
about?: string | undefined;
|
|
17356
|
+
short_url?: string | undefined;
|
|
17262
17357
|
}[] & ({
|
|
17263
17358
|
creator_id?: string | undefined;
|
|
17264
17359
|
clan_name?: string | undefined;
|
|
@@ -17273,6 +17368,9 @@ export declare const Envelope: {
|
|
|
17273
17368
|
clan_order?: number | undefined;
|
|
17274
17369
|
is_community?: boolean | undefined;
|
|
17275
17370
|
community_banner?: string | undefined;
|
|
17371
|
+
description?: string | undefined;
|
|
17372
|
+
about?: string | undefined;
|
|
17373
|
+
short_url?: string | undefined;
|
|
17276
17374
|
} & {
|
|
17277
17375
|
creator_id?: string | undefined;
|
|
17278
17376
|
clan_name?: string | undefined;
|
|
@@ -17287,7 +17385,10 @@ export declare const Envelope: {
|
|
|
17287
17385
|
clan_order?: number | undefined;
|
|
17288
17386
|
is_community?: boolean | undefined;
|
|
17289
17387
|
community_banner?: string | undefined;
|
|
17290
|
-
|
|
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 {
|
|
17291
17392
|
creator_id?: string | undefined;
|
|
17292
17393
|
clan_name?: string | undefined;
|
|
17293
17394
|
logo?: string | undefined;
|
|
@@ -17301,8 +17402,11 @@ export declare const Envelope: {
|
|
|
17301
17402
|
clan_order?: number | undefined;
|
|
17302
17403
|
is_community?: boolean | undefined;
|
|
17303
17404
|
community_banner?: string | undefined;
|
|
17405
|
+
description?: string | undefined;
|
|
17406
|
+
about?: string | undefined;
|
|
17407
|
+
short_url?: string | undefined;
|
|
17304
17408
|
}[]>]: never; }) | undefined;
|
|
17305
|
-
} & { [
|
|
17409
|
+
} & { [K_595 in Exclude<keyof I_1["list_data_socket"]["clan_desc_list"], "clandesc">]: never; }) | undefined;
|
|
17306
17410
|
list_thread_req?: ({
|
|
17307
17411
|
limit?: number | undefined;
|
|
17308
17412
|
state?: number | undefined;
|
|
@@ -17317,7 +17421,7 @@ export declare const Envelope: {
|
|
|
17317
17421
|
channel_id?: string | undefined;
|
|
17318
17422
|
thread_id?: string | undefined;
|
|
17319
17423
|
page?: number | undefined;
|
|
17320
|
-
} & { [
|
|
17424
|
+
} & { [K_596 in Exclude<keyof I_1["list_data_socket"]["list_thread_req"], keyof ListThreadRequest>]: never; }) | undefined;
|
|
17321
17425
|
channel_desc_list?: ({
|
|
17322
17426
|
channeldesc?: {
|
|
17323
17427
|
clan_id?: string | undefined;
|
|
@@ -17491,8 +17595,8 @@ export declare const Envelope: {
|
|
|
17491
17595
|
creator_id?: string | undefined;
|
|
17492
17596
|
channel_label?: string | undefined;
|
|
17493
17597
|
channel_private?: number | undefined;
|
|
17494
|
-
channel_avatar?: (string[] & string[] & { [
|
|
17495
|
-
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;
|
|
17496
17600
|
last_sent_message?: ({
|
|
17497
17601
|
id?: string | undefined;
|
|
17498
17602
|
timestamp_seconds?: number | undefined;
|
|
@@ -17512,8 +17616,8 @@ export declare const Envelope: {
|
|
|
17512
17616
|
reference?: string | undefined;
|
|
17513
17617
|
mention?: string | undefined;
|
|
17514
17618
|
reaction?: string | undefined;
|
|
17515
|
-
repliers?: (string[] & string[] & { [
|
|
17516
|
-
} & { [
|
|
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;
|
|
17517
17621
|
last_seen_message?: ({
|
|
17518
17622
|
id?: string | undefined;
|
|
17519
17623
|
timestamp_seconds?: number | undefined;
|
|
@@ -17533,27 +17637,27 @@ export declare const Envelope: {
|
|
|
17533
17637
|
reference?: string | undefined;
|
|
17534
17638
|
mention?: string | undefined;
|
|
17535
17639
|
reaction?: string | undefined;
|
|
17536
|
-
repliers?: (string[] & string[] & { [
|
|
17537
|
-
} & { [
|
|
17538
|
-
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;
|
|
17539
17643
|
meeting_code?: string | undefined;
|
|
17540
17644
|
count_mess_unread?: number | undefined;
|
|
17541
17645
|
active?: number | undefined;
|
|
17542
17646
|
last_pin_message?: string | undefined;
|
|
17543
|
-
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;
|
|
17544
17648
|
creator_name?: string | undefined;
|
|
17545
17649
|
create_time_seconds?: number | undefined;
|
|
17546
17650
|
update_time_seconds?: number | undefined;
|
|
17547
|
-
metadata?: (string[] & string[] & { [
|
|
17548
|
-
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;
|
|
17549
17653
|
clan_name?: string | undefined;
|
|
17550
17654
|
app_id?: string | undefined;
|
|
17551
17655
|
is_mute?: boolean | undefined;
|
|
17552
17656
|
age_restricted?: number | undefined;
|
|
17553
17657
|
topic?: string | undefined;
|
|
17554
17658
|
e2ee?: number | undefined;
|
|
17555
|
-
display_names?: (string[] & string[] & { [
|
|
17556
|
-
} & { [
|
|
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 {
|
|
17557
17661
|
clan_id?: string | undefined;
|
|
17558
17662
|
parent_id?: string | undefined;
|
|
17559
17663
|
channel_id?: string | undefined;
|
|
@@ -17610,28 +17714,28 @@ export declare const Envelope: {
|
|
|
17610
17714
|
prev_cursor?: string | undefined;
|
|
17611
17715
|
cacheable_cursor?: string | undefined;
|
|
17612
17716
|
page?: number | undefined;
|
|
17613
|
-
} & { [
|
|
17717
|
+
} & { [K_610 in Exclude<keyof I_1["list_data_socket"]["channel_desc_list"], keyof ChannelDescList>]: never; }) | undefined;
|
|
17614
17718
|
list_channel_users_uc_req?: ({
|
|
17615
17719
|
channel_id?: string | undefined;
|
|
17616
17720
|
limit?: number | undefined;
|
|
17617
17721
|
} & {
|
|
17618
17722
|
channel_id?: string | undefined;
|
|
17619
17723
|
limit?: number | undefined;
|
|
17620
|
-
} & { [
|
|
17724
|
+
} & { [K_611 in Exclude<keyof I_1["list_data_socket"]["list_channel_users_uc_req"], keyof AllUsersAddChannelRequest>]: never; }) | undefined;
|
|
17621
17725
|
channel_users_uc_list?: ({
|
|
17622
17726
|
channel_id?: string | undefined;
|
|
17623
17727
|
user_ids?: string[] | undefined;
|
|
17624
17728
|
limit?: number | undefined;
|
|
17625
17729
|
} & {
|
|
17626
17730
|
channel_id?: string | undefined;
|
|
17627
|
-
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;
|
|
17628
17732
|
limit?: number | undefined;
|
|
17629
|
-
} & { [
|
|
17733
|
+
} & { [K_613 in Exclude<keyof I_1["list_data_socket"]["channel_users_uc_list"], keyof AllUsersAddChannelResponse>]: never; }) | undefined;
|
|
17630
17734
|
list_channel_detail_req?: ({
|
|
17631
17735
|
channel_id?: string | undefined;
|
|
17632
17736
|
} & {
|
|
17633
17737
|
channel_id?: string | undefined;
|
|
17634
|
-
} & { [
|
|
17738
|
+
} & { [K_614 in Exclude<keyof I_1["list_data_socket"]["list_channel_detail_req"], "channel_id">]: never; }) | undefined;
|
|
17635
17739
|
channel_desc?: ({
|
|
17636
17740
|
clan_id?: string | undefined;
|
|
17637
17741
|
parent_id?: string | undefined;
|
|
@@ -17694,8 +17798,8 @@ export declare const Envelope: {
|
|
|
17694
17798
|
creator_id?: string | undefined;
|
|
17695
17799
|
channel_label?: string | undefined;
|
|
17696
17800
|
channel_private?: number | undefined;
|
|
17697
|
-
channel_avatar?: (string[] & string[] & { [
|
|
17698
|
-
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;
|
|
17699
17803
|
last_sent_message?: ({
|
|
17700
17804
|
id?: string | undefined;
|
|
17701
17805
|
timestamp_seconds?: number | undefined;
|
|
@@ -17715,8 +17819,8 @@ export declare const Envelope: {
|
|
|
17715
17819
|
reference?: string | undefined;
|
|
17716
17820
|
mention?: string | undefined;
|
|
17717
17821
|
reaction?: string | undefined;
|
|
17718
|
-
repliers?: (string[] & string[] & { [
|
|
17719
|
-
} & { [
|
|
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;
|
|
17720
17824
|
last_seen_message?: ({
|
|
17721
17825
|
id?: string | undefined;
|
|
17722
17826
|
timestamp_seconds?: number | undefined;
|
|
@@ -17736,27 +17840,27 @@ export declare const Envelope: {
|
|
|
17736
17840
|
reference?: string | undefined;
|
|
17737
17841
|
mention?: string | undefined;
|
|
17738
17842
|
reaction?: string | undefined;
|
|
17739
|
-
repliers?: (string[] & string[] & { [
|
|
17740
|
-
} & { [
|
|
17741
|
-
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;
|
|
17742
17846
|
meeting_code?: string | undefined;
|
|
17743
17847
|
count_mess_unread?: number | undefined;
|
|
17744
17848
|
active?: number | undefined;
|
|
17745
17849
|
last_pin_message?: string | undefined;
|
|
17746
|
-
usernames?: (string[] & string[] & { [
|
|
17850
|
+
usernames?: (string[] & string[] & { [K_622 in Exclude<keyof I_1["list_data_socket"]["channel_desc"]["usernames"], keyof string[]>]: never; }) | undefined;
|
|
17747
17851
|
creator_name?: string | undefined;
|
|
17748
17852
|
create_time_seconds?: number | undefined;
|
|
17749
17853
|
update_time_seconds?: number | undefined;
|
|
17750
|
-
metadata?: (string[] & string[] & { [
|
|
17751
|
-
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;
|
|
17752
17856
|
clan_name?: string | undefined;
|
|
17753
17857
|
app_id?: string | undefined;
|
|
17754
17858
|
is_mute?: boolean | undefined;
|
|
17755
17859
|
age_restricted?: number | undefined;
|
|
17756
17860
|
topic?: string | undefined;
|
|
17757
17861
|
e2ee?: number | undefined;
|
|
17758
|
-
display_names?: (string[] & string[] & { [
|
|
17759
|
-
} & { [
|
|
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;
|
|
17760
17864
|
list_channel_req?: ({
|
|
17761
17865
|
limit?: number | undefined;
|
|
17762
17866
|
state?: number | undefined;
|
|
@@ -17769,7 +17873,7 @@ export declare const Envelope: {
|
|
|
17769
17873
|
cursor?: string | undefined;
|
|
17770
17874
|
clan_id?: string | undefined;
|
|
17771
17875
|
channel_type?: number | undefined;
|
|
17772
|
-
} & { [
|
|
17876
|
+
} & { [K_627 in Exclude<keyof I_1["list_data_socket"]["list_channel_req"], keyof ListChannelDescsRequest>]: never; }) | undefined;
|
|
17773
17877
|
list_channel_message_req?: ({
|
|
17774
17878
|
clan_id?: string | undefined;
|
|
17775
17879
|
channel_id?: string | undefined;
|
|
@@ -17784,7 +17888,7 @@ export declare const Envelope: {
|
|
|
17784
17888
|
limit?: number | undefined;
|
|
17785
17889
|
direction?: number | undefined;
|
|
17786
17890
|
topic_id?: string | undefined;
|
|
17787
|
-
} & { [
|
|
17891
|
+
} & { [K_628 in Exclude<keyof I_1["list_data_socket"]["list_channel_message_req"], keyof ListChannelMessagesRequest>]: never; }) | undefined;
|
|
17788
17892
|
channel_message_list?: ({
|
|
17789
17893
|
messages?: {
|
|
17790
17894
|
clan_id?: string | undefined;
|
|
@@ -17922,7 +18026,7 @@ export declare const Envelope: {
|
|
|
17922
18026
|
hide_editted?: boolean | undefined;
|
|
17923
18027
|
is_public?: boolean | undefined;
|
|
17924
18028
|
topic_id?: string | undefined;
|
|
17925
|
-
} & { [
|
|
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 {
|
|
17926
18030
|
clan_id?: string | undefined;
|
|
17927
18031
|
channel_id?: string | undefined;
|
|
17928
18032
|
message_id?: string | undefined;
|
|
@@ -17970,8 +18074,8 @@ export declare const Envelope: {
|
|
|
17970
18074
|
reference?: string | undefined;
|
|
17971
18075
|
mention?: string | undefined;
|
|
17972
18076
|
reaction?: string | undefined;
|
|
17973
|
-
repliers?: (string[] & string[] & { [
|
|
17974
|
-
} & { [
|
|
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;
|
|
17975
18079
|
last_sent_message?: ({
|
|
17976
18080
|
id?: string | undefined;
|
|
17977
18081
|
timestamp_seconds?: number | undefined;
|
|
@@ -17991,9 +18095,9 @@ export declare const Envelope: {
|
|
|
17991
18095
|
reference?: string | undefined;
|
|
17992
18096
|
mention?: string | undefined;
|
|
17993
18097
|
reaction?: string | undefined;
|
|
17994
|
-
repliers?: (string[] & string[] & { [
|
|
17995
|
-
} & { [
|
|
17996
|
-
} & { [
|
|
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;
|
|
17997
18101
|
list_channel_users_req?: ({
|
|
17998
18102
|
clan_id?: string | undefined;
|
|
17999
18103
|
channel_id?: string | undefined;
|
|
@@ -18008,7 +18112,7 @@ export declare const Envelope: {
|
|
|
18008
18112
|
limit?: number | undefined;
|
|
18009
18113
|
state?: number | undefined;
|
|
18010
18114
|
cursor?: string | undefined;
|
|
18011
|
-
} & { [
|
|
18115
|
+
} & { [K_636 in Exclude<keyof I_1["list_data_socket"]["list_channel_users_req"], keyof ListChannelUsersRequest>]: never; }) | undefined;
|
|
18012
18116
|
voice_user_list?: ({
|
|
18013
18117
|
voice_channel_users?: {
|
|
18014
18118
|
id?: string | undefined;
|
|
@@ -18032,13 +18136,13 @@ export declare const Envelope: {
|
|
|
18032
18136
|
user_id?: string | undefined;
|
|
18033
18137
|
channel_id?: string | undefined;
|
|
18034
18138
|
participant?: string | undefined;
|
|
18035
|
-
} & { [
|
|
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 {
|
|
18036
18140
|
id?: string | undefined;
|
|
18037
18141
|
user_id?: string | undefined;
|
|
18038
18142
|
channel_id?: string | undefined;
|
|
18039
18143
|
participant?: string | undefined;
|
|
18040
18144
|
}[]>]: never; }) | undefined;
|
|
18041
|
-
} & { [
|
|
18145
|
+
} & { [K_639 in Exclude<keyof I_1["list_data_socket"]["voice_user_list"], "voice_channel_users">]: never; }) | undefined;
|
|
18042
18146
|
channel_user_list?: ({
|
|
18043
18147
|
channel_users?: {
|
|
18044
18148
|
user_id?: string | undefined;
|
|
@@ -18073,14 +18177,14 @@ export declare const Envelope: {
|
|
|
18073
18177
|
added_by?: string | undefined;
|
|
18074
18178
|
} & {
|
|
18075
18179
|
user_id?: string | undefined;
|
|
18076
|
-
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;
|
|
18077
18181
|
id?: string | undefined;
|
|
18078
18182
|
thread_id?: string | undefined;
|
|
18079
18183
|
clan_nick?: string | undefined;
|
|
18080
18184
|
clan_avatar?: string | undefined;
|
|
18081
18185
|
clan_id?: string | undefined;
|
|
18082
18186
|
added_by?: string | undefined;
|
|
18083
|
-
} & { [
|
|
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 {
|
|
18084
18188
|
user_id?: string | undefined;
|
|
18085
18189
|
role_id?: string[] | undefined;
|
|
18086
18190
|
id?: string | undefined;
|
|
@@ -18092,7 +18196,7 @@ export declare const Envelope: {
|
|
|
18092
18196
|
}[]>]: never; }) | undefined;
|
|
18093
18197
|
cursor?: string | undefined;
|
|
18094
18198
|
channel_id?: string | undefined;
|
|
18095
|
-
} & { [
|
|
18199
|
+
} & { [K_643 in Exclude<keyof I_1["list_data_socket"]["channel_user_list"], keyof ChannelUserList>]: never; }) | undefined;
|
|
18096
18200
|
list_channel_attachment_req?: ({
|
|
18097
18201
|
clan_id?: string | undefined;
|
|
18098
18202
|
channel_id?: string | undefined;
|
|
@@ -18111,7 +18215,7 @@ export declare const Envelope: {
|
|
|
18111
18215
|
before?: number | undefined;
|
|
18112
18216
|
after?: number | undefined;
|
|
18113
18217
|
around?: number | undefined;
|
|
18114
|
-
} & { [
|
|
18218
|
+
} & { [K_644 in Exclude<keyof I_1["list_data_socket"]["list_channel_attachment_req"], keyof ListChannelAttachmentRequest>]: never; }) | undefined;
|
|
18115
18219
|
channel_attachment_list?: ({
|
|
18116
18220
|
attachments?: {
|
|
18117
18221
|
id?: string | undefined;
|
|
@@ -18159,7 +18263,7 @@ export declare const Envelope: {
|
|
|
18159
18263
|
message_id?: string | undefined;
|
|
18160
18264
|
width?: number | undefined;
|
|
18161
18265
|
height?: number | undefined;
|
|
18162
|
-
} & { [
|
|
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 {
|
|
18163
18267
|
id?: string | undefined;
|
|
18164
18268
|
filename?: string | undefined;
|
|
18165
18269
|
filetype?: string | undefined;
|
|
@@ -18171,14 +18275,14 @@ export declare const Envelope: {
|
|
|
18171
18275
|
width?: number | undefined;
|
|
18172
18276
|
height?: number | undefined;
|
|
18173
18277
|
}[]>]: never; }) | undefined;
|
|
18174
|
-
} & { [
|
|
18278
|
+
} & { [K_647 in Exclude<keyof I_1["list_data_socket"]["channel_attachment_list"], "attachments">]: never; }) | undefined;
|
|
18175
18279
|
hashtag_dm_req?: ({
|
|
18176
18280
|
user_id?: string[] | undefined;
|
|
18177
18281
|
limit?: number | undefined;
|
|
18178
18282
|
} & {
|
|
18179
|
-
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;
|
|
18180
18284
|
limit?: number | undefined;
|
|
18181
|
-
} & { [
|
|
18285
|
+
} & { [K_649 in Exclude<keyof I_1["list_data_socket"]["hashtag_dm_req"], keyof HashtagDmListRequest>]: never; }) | undefined;
|
|
18182
18286
|
hashtag_dm_list?: ({
|
|
18183
18287
|
hashtag_dm?: {
|
|
18184
18288
|
channel_id?: string | undefined;
|
|
@@ -18218,7 +18322,7 @@ export declare const Envelope: {
|
|
|
18218
18322
|
type?: number | undefined;
|
|
18219
18323
|
channel_private?: number | undefined;
|
|
18220
18324
|
parent_id?: string | undefined;
|
|
18221
|
-
} & { [
|
|
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 {
|
|
18222
18326
|
channel_id?: string | undefined;
|
|
18223
18327
|
channel_label?: string | undefined;
|
|
18224
18328
|
clan_id?: string | undefined;
|
|
@@ -18228,7 +18332,7 @@ export declare const Envelope: {
|
|
|
18228
18332
|
channel_private?: number | undefined;
|
|
18229
18333
|
parent_id?: string | undefined;
|
|
18230
18334
|
}[]>]: never; }) | undefined;
|
|
18231
|
-
} & { [
|
|
18335
|
+
} & { [K_652 in Exclude<keyof I_1["list_data_socket"]["hashtag_dm_list"], "hashtag_dm">]: never; }) | undefined;
|
|
18232
18336
|
channel_setting_req?: ({
|
|
18233
18337
|
clan_id?: string | undefined;
|
|
18234
18338
|
parent_id?: string | undefined;
|
|
@@ -18251,7 +18355,7 @@ export declare const Envelope: {
|
|
|
18251
18355
|
limit?: number | undefined;
|
|
18252
18356
|
page?: number | undefined;
|
|
18253
18357
|
channel_label?: string | undefined;
|
|
18254
|
-
} & { [
|
|
18358
|
+
} & { [K_653 in Exclude<keyof I_1["list_data_socket"]["channel_setting_req"], keyof ChannelSettingListRequest>]: never; }) | undefined;
|
|
18255
18359
|
channel_setting_list?: ({
|
|
18256
18360
|
clan_id?: string | undefined;
|
|
18257
18361
|
channel_count?: number | undefined;
|
|
@@ -18340,7 +18444,7 @@ export declare const Envelope: {
|
|
|
18340
18444
|
channel_private?: number | undefined;
|
|
18341
18445
|
channel_type?: number | undefined;
|
|
18342
18446
|
active?: number | undefined;
|
|
18343
|
-
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;
|
|
18344
18448
|
message_count?: number | undefined;
|
|
18345
18449
|
last_sent_message?: ({
|
|
18346
18450
|
id?: string | undefined;
|
|
@@ -18361,9 +18465,9 @@ export declare const Envelope: {
|
|
|
18361
18465
|
reference?: string | undefined;
|
|
18362
18466
|
mention?: string | undefined;
|
|
18363
18467
|
reaction?: string | undefined;
|
|
18364
|
-
repliers?: (string[] & string[] & { [
|
|
18365
|
-
} & { [
|
|
18366
|
-
} & { [
|
|
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 {
|
|
18367
18471
|
id?: string | undefined;
|
|
18368
18472
|
creator_id?: string | undefined;
|
|
18369
18473
|
parent_id?: string | undefined;
|
|
@@ -18387,17 +18491,17 @@ export declare const Envelope: {
|
|
|
18387
18491
|
repliers?: string[] | undefined;
|
|
18388
18492
|
} | undefined;
|
|
18389
18493
|
}[]>]: never; }) | undefined;
|
|
18390
|
-
} & { [
|
|
18494
|
+
} & { [K_659 in Exclude<keyof I_1["list_data_socket"]["channel_setting_list"], keyof ChannelSettingListResponse>]: never; }) | undefined;
|
|
18391
18495
|
favorite_channel_req?: ({
|
|
18392
18496
|
clan_id?: string | undefined;
|
|
18393
18497
|
} & {
|
|
18394
18498
|
clan_id?: string | undefined;
|
|
18395
|
-
} & { [
|
|
18499
|
+
} & { [K_660 in Exclude<keyof I_1["list_data_socket"]["favorite_channel_req"], "clan_id">]: never; }) | undefined;
|
|
18396
18500
|
favorite_channel_list?: ({
|
|
18397
18501
|
channel_ids?: string[] | undefined;
|
|
18398
18502
|
} & {
|
|
18399
|
-
channel_ids?: (string[] & string[] & { [
|
|
18400
|
-
} & { [
|
|
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;
|
|
18401
18505
|
search_thread_req?: ({
|
|
18402
18506
|
clan_id?: string | undefined;
|
|
18403
18507
|
channel_id?: string | undefined;
|
|
@@ -18406,12 +18510,12 @@ export declare const Envelope: {
|
|
|
18406
18510
|
clan_id?: string | undefined;
|
|
18407
18511
|
channel_id?: string | undefined;
|
|
18408
18512
|
label?: string | undefined;
|
|
18409
|
-
} & { [
|
|
18513
|
+
} & { [K_663 in Exclude<keyof I_1["list_data_socket"]["search_thread_req"], keyof SearchThreadRequest>]: never; }) | undefined;
|
|
18410
18514
|
notification_channel?: ({
|
|
18411
18515
|
channel_id?: string | undefined;
|
|
18412
18516
|
} & {
|
|
18413
18517
|
channel_id?: string | undefined;
|
|
18414
|
-
} & { [
|
|
18518
|
+
} & { [K_664 in Exclude<keyof I_1["list_data_socket"]["notification_channel"], "channel_id">]: never; }) | undefined;
|
|
18415
18519
|
notificaion_user_channel?: ({
|
|
18416
18520
|
id?: string | undefined;
|
|
18417
18521
|
notification_setting_type?: number | undefined;
|
|
@@ -18424,24 +18528,24 @@ export declare const Envelope: {
|
|
|
18424
18528
|
time_mute?: Date | undefined;
|
|
18425
18529
|
active?: number | undefined;
|
|
18426
18530
|
channel_id?: string | undefined;
|
|
18427
|
-
} & { [
|
|
18531
|
+
} & { [K_665 in Exclude<keyof I_1["list_data_socket"]["notificaion_user_channel"], keyof NotificationUserChannel>]: never; }) | undefined;
|
|
18428
18532
|
notification_category?: ({
|
|
18429
18533
|
category_id?: string | undefined;
|
|
18430
18534
|
} & {
|
|
18431
18535
|
category_id?: string | undefined;
|
|
18432
|
-
} & { [
|
|
18536
|
+
} & { [K_666 in Exclude<keyof I_1["list_data_socket"]["notification_category"], "category_id">]: never; }) | undefined;
|
|
18433
18537
|
notification_clan?: ({
|
|
18434
18538
|
clan_id?: string | undefined;
|
|
18435
18539
|
} & {
|
|
18436
18540
|
clan_id?: string | undefined;
|
|
18437
|
-
} & { [
|
|
18541
|
+
} & { [K_667 in Exclude<keyof I_1["list_data_socket"]["notification_clan"], "clan_id">]: never; }) | undefined;
|
|
18438
18542
|
notification_setting?: ({
|
|
18439
18543
|
id?: string | undefined;
|
|
18440
18544
|
notification_setting_type?: number | undefined;
|
|
18441
18545
|
} & {
|
|
18442
18546
|
id?: string | undefined;
|
|
18443
18547
|
notification_setting_type?: number | undefined;
|
|
18444
|
-
} & { [
|
|
18548
|
+
} & { [K_668 in Exclude<keyof I_1["list_data_socket"]["notification_setting"], keyof NotificationSetting>]: never; }) | undefined;
|
|
18445
18549
|
notification_message?: ({
|
|
18446
18550
|
id?: string | undefined;
|
|
18447
18551
|
user_id?: string | undefined;
|
|
@@ -18450,7 +18554,7 @@ export declare const Envelope: {
|
|
|
18450
18554
|
id?: string | undefined;
|
|
18451
18555
|
user_id?: string | undefined;
|
|
18452
18556
|
channel_id?: string | undefined;
|
|
18453
|
-
} & { [
|
|
18557
|
+
} & { [K_669 in Exclude<keyof I_1["list_data_socket"]["notification_message"], keyof NotifiReactMessage>]: never; }) | undefined;
|
|
18454
18558
|
noti_channel_cat_setting_list?: ({
|
|
18455
18559
|
notification_channel_category_settings_list?: {
|
|
18456
18560
|
id?: string | undefined;
|
|
@@ -18478,14 +18582,14 @@ export declare const Envelope: {
|
|
|
18478
18582
|
notification_setting_type?: number | undefined;
|
|
18479
18583
|
channel_category_title?: string | undefined;
|
|
18480
18584
|
action?: number | undefined;
|
|
18481
|
-
} & { [
|
|
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 {
|
|
18482
18586
|
id?: string | undefined;
|
|
18483
18587
|
channel_category_label?: string | undefined;
|
|
18484
18588
|
notification_setting_type?: number | undefined;
|
|
18485
18589
|
channel_category_title?: string | undefined;
|
|
18486
18590
|
action?: number | undefined;
|
|
18487
18591
|
}[]>]: never; }) | undefined;
|
|
18488
|
-
} & { [
|
|
18592
|
+
} & { [K_672 in Exclude<keyof I_1["list_data_socket"]["noti_channel_cat_setting_list"], "notification_channel_category_settings_list">]: never; }) | undefined;
|
|
18489
18593
|
list_notification_req?: ({
|
|
18490
18594
|
limit?: number | undefined;
|
|
18491
18595
|
clan_id?: string | undefined;
|
|
@@ -18498,7 +18602,7 @@ export declare const Envelope: {
|
|
|
18498
18602
|
notification_id?: string | undefined;
|
|
18499
18603
|
category?: number | undefined;
|
|
18500
18604
|
direction?: number | undefined;
|
|
18501
|
-
} & { [
|
|
18605
|
+
} & { [K_673 in Exclude<keyof I_1["list_data_socket"]["list_notification_req"], keyof ListNotificationsRequest>]: never; }) | undefined;
|
|
18502
18606
|
notification_list?: ({
|
|
18503
18607
|
notifications?: {
|
|
18504
18608
|
id?: string | undefined;
|
|
@@ -18778,8 +18882,8 @@ export declare const Envelope: {
|
|
|
18778
18882
|
creator_id?: string | undefined;
|
|
18779
18883
|
channel_label?: string | undefined;
|
|
18780
18884
|
channel_private?: number | undefined;
|
|
18781
|
-
channel_avatar?: (string[] & string[] & { [
|
|
18782
|
-
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;
|
|
18783
18887
|
last_sent_message?: ({
|
|
18784
18888
|
id?: string | undefined;
|
|
18785
18889
|
timestamp_seconds?: number | undefined;
|
|
@@ -18799,8 +18903,8 @@ export declare const Envelope: {
|
|
|
18799
18903
|
reference?: string | undefined;
|
|
18800
18904
|
mention?: string | undefined;
|
|
18801
18905
|
reaction?: string | undefined;
|
|
18802
|
-
repliers?: (string[] & string[] & { [
|
|
18803
|
-
} & { [
|
|
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;
|
|
18804
18908
|
last_seen_message?: ({
|
|
18805
18909
|
id?: string | undefined;
|
|
18806
18910
|
timestamp_seconds?: number | undefined;
|
|
@@ -18820,30 +18924,30 @@ export declare const Envelope: {
|
|
|
18820
18924
|
reference?: string | undefined;
|
|
18821
18925
|
mention?: string | undefined;
|
|
18822
18926
|
reaction?: string | undefined;
|
|
18823
|
-
repliers?: (string[] & string[] & { [
|
|
18824
|
-
} & { [
|
|
18825
|
-
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;
|
|
18826
18930
|
meeting_code?: string | undefined;
|
|
18827
18931
|
count_mess_unread?: number | undefined;
|
|
18828
18932
|
active?: number | undefined;
|
|
18829
18933
|
last_pin_message?: string | undefined;
|
|
18830
|
-
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;
|
|
18831
18935
|
creator_name?: string | undefined;
|
|
18832
18936
|
create_time_seconds?: number | undefined;
|
|
18833
18937
|
update_time_seconds?: number | undefined;
|
|
18834
|
-
metadata?: (string[] & string[] & { [
|
|
18835
|
-
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;
|
|
18836
18940
|
clan_name?: string | undefined;
|
|
18837
18941
|
app_id?: string | undefined;
|
|
18838
18942
|
is_mute?: boolean | undefined;
|
|
18839
18943
|
age_restricted?: number | undefined;
|
|
18840
18944
|
topic?: string | undefined;
|
|
18841
18945
|
e2ee?: number | undefined;
|
|
18842
|
-
display_names?: (string[] & string[] & { [
|
|
18843
|
-
} & { [
|
|
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;
|
|
18844
18948
|
topic_id?: string | undefined;
|
|
18845
18949
|
category?: number | undefined;
|
|
18846
|
-
} & { [
|
|
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 {
|
|
18847
18951
|
id?: string | undefined;
|
|
18848
18952
|
subject?: string | undefined;
|
|
18849
18953
|
content?: string | undefined;
|
|
@@ -18912,7 +19016,7 @@ export declare const Envelope: {
|
|
|
18912
19016
|
category?: number | undefined;
|
|
18913
19017
|
}[]>]: never; }) | undefined;
|
|
18914
19018
|
cacheable_cursor?: string | undefined;
|
|
18915
|
-
} & { [
|
|
19019
|
+
} & { [K_688 in Exclude<keyof I_1["list_data_socket"]["notification_list"], keyof NotificationList>]: never; }) | undefined;
|
|
18916
19020
|
sticker_list?: ({
|
|
18917
19021
|
stickers?: {
|
|
18918
19022
|
id?: string | undefined;
|
|
@@ -18964,7 +19068,7 @@ export declare const Envelope: {
|
|
|
18964
19068
|
clan_name?: string | undefined;
|
|
18965
19069
|
media_type?: number | undefined;
|
|
18966
19070
|
is_for_sale?: boolean | undefined;
|
|
18967
|
-
} & { [
|
|
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 {
|
|
18968
19072
|
id?: string | undefined;
|
|
18969
19073
|
source?: string | undefined;
|
|
18970
19074
|
shortname?: string | undefined;
|
|
@@ -18977,7 +19081,7 @@ export declare const Envelope: {
|
|
|
18977
19081
|
media_type?: number | undefined;
|
|
18978
19082
|
is_for_sale?: boolean | undefined;
|
|
18979
19083
|
}[]>]: never; }) | undefined;
|
|
18980
|
-
} & { [
|
|
19084
|
+
} & { [K_691 in Exclude<keyof I_1["list_data_socket"]["sticker_list"], "stickers">]: never; }) | undefined;
|
|
18981
19085
|
emoji_recent_list?: ({
|
|
18982
19086
|
emoji_recents?: {
|
|
18983
19087
|
emoji_recents_id?: string | undefined;
|
|
@@ -18997,17 +19101,17 @@ export declare const Envelope: {
|
|
|
18997
19101
|
emoji_recents_id?: string | undefined;
|
|
18998
19102
|
emoji_id?: string | undefined;
|
|
18999
19103
|
update_time?: Date | undefined;
|
|
19000
|
-
} & { [
|
|
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 {
|
|
19001
19105
|
emoji_recents_id?: string | undefined;
|
|
19002
19106
|
emoji_id?: string | undefined;
|
|
19003
19107
|
update_time?: Date | undefined;
|
|
19004
19108
|
}[]>]: never; }) | undefined;
|
|
19005
|
-
} & { [
|
|
19109
|
+
} & { [K_694 in Exclude<keyof I_1["list_data_socket"]["emoji_recent_list"], "emoji_recents">]: never; }) | undefined;
|
|
19006
19110
|
clan_webhook_req?: ({
|
|
19007
19111
|
clan_id?: string | undefined;
|
|
19008
19112
|
} & {
|
|
19009
19113
|
clan_id?: string | undefined;
|
|
19010
|
-
} & { [
|
|
19114
|
+
} & { [K_695 in Exclude<keyof I_1["list_data_socket"]["clan_webhook_req"], "clan_id">]: never; }) | undefined;
|
|
19011
19115
|
clan_webhook_list?: ({
|
|
19012
19116
|
list_clan_webhooks?: {
|
|
19013
19117
|
id?: string | undefined;
|
|
@@ -19051,7 +19155,7 @@ export declare const Envelope: {
|
|
|
19051
19155
|
avatar?: string | undefined;
|
|
19052
19156
|
create_time?: string | undefined;
|
|
19053
19157
|
update_time?: string | undefined;
|
|
19054
|
-
} & { [
|
|
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 {
|
|
19055
19159
|
id?: string | undefined;
|
|
19056
19160
|
webhook_name?: string | undefined;
|
|
19057
19161
|
clan_id?: string | undefined;
|
|
@@ -19062,14 +19166,14 @@ export declare const Envelope: {
|
|
|
19062
19166
|
create_time?: string | undefined;
|
|
19063
19167
|
update_time?: string | undefined;
|
|
19064
19168
|
}[]>]: never; }) | undefined;
|
|
19065
|
-
} & { [
|
|
19169
|
+
} & { [K_698 in Exclude<keyof I_1["list_data_socket"]["clan_webhook_list"], "list_clan_webhooks">]: never; }) | undefined;
|
|
19066
19170
|
webhook_list_req?: ({
|
|
19067
19171
|
channel_id?: string | undefined;
|
|
19068
19172
|
clan_id?: string | undefined;
|
|
19069
19173
|
} & {
|
|
19070
19174
|
channel_id?: string | undefined;
|
|
19071
19175
|
clan_id?: string | undefined;
|
|
19072
|
-
} & { [
|
|
19176
|
+
} & { [K_699 in Exclude<keyof I_1["list_data_socket"]["webhook_list_req"], keyof WebhookListRequest>]: never; }) | undefined;
|
|
19073
19177
|
webhook_list?: ({
|
|
19074
19178
|
webhooks?: {
|
|
19075
19179
|
id?: string | undefined;
|
|
@@ -19121,7 +19225,7 @@ export declare const Envelope: {
|
|
|
19121
19225
|
avatar?: string | undefined;
|
|
19122
19226
|
status?: number | undefined;
|
|
19123
19227
|
clan_id?: string | undefined;
|
|
19124
|
-
} & { [
|
|
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 {
|
|
19125
19229
|
id?: string | undefined;
|
|
19126
19230
|
webhook_name?: string | undefined;
|
|
19127
19231
|
channel_id?: string | undefined;
|
|
@@ -19134,12 +19238,12 @@ export declare const Envelope: {
|
|
|
19134
19238
|
status?: number | undefined;
|
|
19135
19239
|
clan_id?: string | undefined;
|
|
19136
19240
|
}[]>]: never; }) | undefined;
|
|
19137
|
-
} & { [
|
|
19241
|
+
} & { [K_702 in Exclude<keyof I_1["list_data_socket"]["webhook_list"], "webhooks">]: never; }) | undefined;
|
|
19138
19242
|
permission_list_req?: ({
|
|
19139
19243
|
role_id?: string | undefined;
|
|
19140
19244
|
} & {
|
|
19141
19245
|
role_id?: string | undefined;
|
|
19142
|
-
} & { [
|
|
19246
|
+
} & { [K_703 in Exclude<keyof I_1["list_data_socket"]["permission_list_req"], "role_id">]: never; }) | undefined;
|
|
19143
19247
|
permission_list?: ({
|
|
19144
19248
|
permissions?: {
|
|
19145
19249
|
id?: string | undefined;
|
|
@@ -19176,7 +19280,7 @@ export declare const Envelope: {
|
|
|
19176
19280
|
active?: number | undefined;
|
|
19177
19281
|
scope?: number | undefined;
|
|
19178
19282
|
level?: number | undefined;
|
|
19179
|
-
} & { [
|
|
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 {
|
|
19180
19284
|
id?: string | undefined;
|
|
19181
19285
|
title?: string | undefined;
|
|
19182
19286
|
slug?: string | undefined;
|
|
@@ -19186,7 +19290,7 @@ export declare const Envelope: {
|
|
|
19186
19290
|
level?: number | undefined;
|
|
19187
19291
|
}[]>]: never; }) | undefined;
|
|
19188
19292
|
max_level_permission?: number | undefined;
|
|
19189
|
-
} & { [
|
|
19293
|
+
} & { [K_706 in Exclude<keyof I_1["list_data_socket"]["permission_list"], keyof PermissionList>]: never; }) | undefined;
|
|
19190
19294
|
role_user_req?: ({
|
|
19191
19295
|
role_id?: string | undefined;
|
|
19192
19296
|
limit?: number | undefined;
|
|
@@ -19195,7 +19299,7 @@ export declare const Envelope: {
|
|
|
19195
19299
|
role_id?: string | undefined;
|
|
19196
19300
|
limit?: number | undefined;
|
|
19197
19301
|
cursor?: string | undefined;
|
|
19198
|
-
} & { [
|
|
19302
|
+
} & { [K_707 in Exclude<keyof I_1["list_data_socket"]["role_user_req"], keyof ListRoleUsersRequest>]: never; }) | undefined;
|
|
19199
19303
|
role_user_list?: ({
|
|
19200
19304
|
role_users?: {
|
|
19201
19305
|
id?: string | undefined;
|
|
@@ -19232,7 +19336,7 @@ export declare const Envelope: {
|
|
|
19232
19336
|
lang_tag?: string | undefined;
|
|
19233
19337
|
location?: string | undefined;
|
|
19234
19338
|
online?: boolean | undefined;
|
|
19235
|
-
} & { [
|
|
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 {
|
|
19236
19340
|
id?: string | undefined;
|
|
19237
19341
|
username?: string | undefined;
|
|
19238
19342
|
display_name?: string | undefined;
|
|
@@ -19242,14 +19346,14 @@ export declare const Envelope: {
|
|
|
19242
19346
|
online?: boolean | undefined;
|
|
19243
19347
|
}[]>]: never; }) | undefined;
|
|
19244
19348
|
cursor?: string | undefined;
|
|
19245
|
-
} & { [
|
|
19349
|
+
} & { [K_710 in Exclude<keyof I_1["list_data_socket"]["role_user_list"], keyof RoleUserList>]: never; }) | undefined;
|
|
19246
19350
|
permission_user_req?: ({
|
|
19247
19351
|
clan_id?: string | undefined;
|
|
19248
19352
|
channel_id?: string | undefined;
|
|
19249
19353
|
} & {
|
|
19250
19354
|
clan_id?: string | undefined;
|
|
19251
19355
|
channel_id?: string | undefined;
|
|
19252
|
-
} & { [
|
|
19356
|
+
} & { [K_711 in Exclude<keyof I_1["list_data_socket"]["permission_user_req"], keyof ListPermissionOfUsersRequest>]: never; }) | undefined;
|
|
19253
19357
|
role_list?: ({
|
|
19254
19358
|
roles?: {
|
|
19255
19359
|
id?: string | undefined;
|
|
@@ -19424,7 +19528,7 @@ export declare const Envelope: {
|
|
|
19424
19528
|
lang_tag?: string | undefined;
|
|
19425
19529
|
location?: string | undefined;
|
|
19426
19530
|
online?: boolean | undefined;
|
|
19427
|
-
} & { [
|
|
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 {
|
|
19428
19532
|
id?: string | undefined;
|
|
19429
19533
|
username?: string | undefined;
|
|
19430
19534
|
display_name?: string | undefined;
|
|
@@ -19434,7 +19538,7 @@ export declare const Envelope: {
|
|
|
19434
19538
|
online?: boolean | undefined;
|
|
19435
19539
|
}[]>]: never; }) | undefined;
|
|
19436
19540
|
cursor?: string | undefined;
|
|
19437
|
-
} & { [
|
|
19541
|
+
} & { [K_714 in Exclude<keyof I_1["list_data_socket"]["role_list"]["roles"][number]["role_user_list"], keyof RoleUserList>]: never; }) | undefined;
|
|
19438
19542
|
permission_list?: ({
|
|
19439
19543
|
permissions?: {
|
|
19440
19544
|
id?: string | undefined;
|
|
@@ -19471,7 +19575,7 @@ export declare const Envelope: {
|
|
|
19471
19575
|
active?: number | undefined;
|
|
19472
19576
|
scope?: number | undefined;
|
|
19473
19577
|
level?: number | undefined;
|
|
19474
|
-
} & { [
|
|
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 {
|
|
19475
19579
|
id?: string | undefined;
|
|
19476
19580
|
title?: string | undefined;
|
|
19477
19581
|
slug?: string | undefined;
|
|
@@ -19481,12 +19585,12 @@ export declare const Envelope: {
|
|
|
19481
19585
|
level?: number | undefined;
|
|
19482
19586
|
}[]>]: never; }) | undefined;
|
|
19483
19587
|
max_level_permission?: number | undefined;
|
|
19484
|
-
} & { [
|
|
19588
|
+
} & { [K_717 in Exclude<keyof I_1["list_data_socket"]["role_list"]["roles"][number]["permission_list"], keyof PermissionList>]: never; }) | undefined;
|
|
19485
19589
|
role_channel_active?: number | undefined;
|
|
19486
|
-
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;
|
|
19487
19591
|
max_level_permission?: number | undefined;
|
|
19488
19592
|
order_role?: number | undefined;
|
|
19489
|
-
} & { [
|
|
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 {
|
|
19490
19594
|
id?: string | undefined;
|
|
19491
19595
|
title?: string | undefined;
|
|
19492
19596
|
color?: string | undefined;
|
|
@@ -19530,7 +19634,7 @@ export declare const Envelope: {
|
|
|
19530
19634
|
next_cursor?: string | undefined;
|
|
19531
19635
|
prev_cursor?: string | undefined;
|
|
19532
19636
|
cacheable_cursor?: string | undefined;
|
|
19533
|
-
} & { [
|
|
19637
|
+
} & { [K_721 in Exclude<keyof I_1["list_data_socket"]["role_list"], keyof RoleList>]: never; }) | undefined;
|
|
19534
19638
|
role_list_event_req?: ({
|
|
19535
19639
|
clan_id?: string | undefined;
|
|
19536
19640
|
limit?: number | undefined;
|
|
@@ -19541,7 +19645,7 @@ export declare const Envelope: {
|
|
|
19541
19645
|
limit?: number | undefined;
|
|
19542
19646
|
state?: number | undefined;
|
|
19543
19647
|
cursor?: string | undefined;
|
|
19544
|
-
} & { [
|
|
19648
|
+
} & { [K_722 in Exclude<keyof I_1["list_data_socket"]["role_list_event_req"], keyof RoleListEventRequest>]: never; }) | undefined;
|
|
19545
19649
|
role_event_list?: ({
|
|
19546
19650
|
limit?: number | undefined;
|
|
19547
19651
|
state?: number | undefined;
|
|
@@ -19772,7 +19876,7 @@ export declare const Envelope: {
|
|
|
19772
19876
|
lang_tag?: string | undefined;
|
|
19773
19877
|
location?: string | undefined;
|
|
19774
19878
|
online?: boolean | undefined;
|
|
19775
|
-
} & { [
|
|
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 {
|
|
19776
19880
|
id?: string | undefined;
|
|
19777
19881
|
username?: string | undefined;
|
|
19778
19882
|
display_name?: string | undefined;
|
|
@@ -19782,7 +19886,7 @@ export declare const Envelope: {
|
|
|
19782
19886
|
online?: boolean | undefined;
|
|
19783
19887
|
}[]>]: never; }) | undefined;
|
|
19784
19888
|
cursor?: string | undefined;
|
|
19785
|
-
} & { [
|
|
19889
|
+
} & { [K_725 in Exclude<keyof I_1["list_data_socket"]["role_event_list"]["roles"]["roles"][number]["role_user_list"], keyof RoleUserList>]: never; }) | undefined;
|
|
19786
19890
|
permission_list?: ({
|
|
19787
19891
|
permissions?: {
|
|
19788
19892
|
id?: string | undefined;
|
|
@@ -19819,7 +19923,7 @@ export declare const Envelope: {
|
|
|
19819
19923
|
active?: number | undefined;
|
|
19820
19924
|
scope?: number | undefined;
|
|
19821
19925
|
level?: number | undefined;
|
|
19822
|
-
} & { [
|
|
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 {
|
|
19823
19927
|
id?: string | undefined;
|
|
19824
19928
|
title?: string | undefined;
|
|
19825
19929
|
slug?: string | undefined;
|
|
@@ -19829,12 +19933,12 @@ export declare const Envelope: {
|
|
|
19829
19933
|
level?: number | undefined;
|
|
19830
19934
|
}[]>]: never; }) | undefined;
|
|
19831
19935
|
max_level_permission?: number | undefined;
|
|
19832
|
-
} & { [
|
|
19936
|
+
} & { [K_728 in Exclude<keyof I_1["list_data_socket"]["role_event_list"]["roles"]["roles"][number]["permission_list"], keyof PermissionList>]: never; }) | undefined;
|
|
19833
19937
|
role_channel_active?: number | undefined;
|
|
19834
|
-
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;
|
|
19835
19939
|
max_level_permission?: number | undefined;
|
|
19836
19940
|
order_role?: number | undefined;
|
|
19837
|
-
} & { [
|
|
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 {
|
|
19838
19942
|
id?: string | undefined;
|
|
19839
19943
|
title?: string | undefined;
|
|
19840
19944
|
color?: string | undefined;
|
|
@@ -19878,15 +19982,15 @@ export declare const Envelope: {
|
|
|
19878
19982
|
next_cursor?: string | undefined;
|
|
19879
19983
|
prev_cursor?: string | undefined;
|
|
19880
19984
|
cacheable_cursor?: string | undefined;
|
|
19881
|
-
} & { [
|
|
19882
|
-
} & { [
|
|
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;
|
|
19883
19987
|
user_permission_req?: ({
|
|
19884
19988
|
clan_id?: string | undefined;
|
|
19885
19989
|
channel_id?: string | undefined;
|
|
19886
19990
|
} & {
|
|
19887
19991
|
clan_id?: string | undefined;
|
|
19888
19992
|
channel_id?: string | undefined;
|
|
19889
|
-
} & { [
|
|
19993
|
+
} & { [K_734 in Exclude<keyof I_1["list_data_socket"]["user_permission_req"], keyof UserPermissionInChannelListRequest>]: never; }) | undefined;
|
|
19890
19994
|
user_permission_list?: ({
|
|
19891
19995
|
clan_id?: string | undefined;
|
|
19892
19996
|
channel_id?: string | undefined;
|
|
@@ -19941,7 +20045,7 @@ export declare const Envelope: {
|
|
|
19941
20045
|
active?: number | undefined;
|
|
19942
20046
|
scope?: number | undefined;
|
|
19943
20047
|
level?: number | undefined;
|
|
19944
|
-
} & { [
|
|
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 {
|
|
19945
20049
|
id?: string | undefined;
|
|
19946
20050
|
title?: string | undefined;
|
|
19947
20051
|
slug?: string | undefined;
|
|
@@ -19951,8 +20055,8 @@ export declare const Envelope: {
|
|
|
19951
20055
|
level?: number | undefined;
|
|
19952
20056
|
}[]>]: never; }) | undefined;
|
|
19953
20057
|
max_level_permission?: number | undefined;
|
|
19954
|
-
} & { [
|
|
19955
|
-
} & { [
|
|
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;
|
|
19956
20060
|
permission_role_req?: ({
|
|
19957
20061
|
role_id?: string | undefined;
|
|
19958
20062
|
channel_id?: string | undefined;
|
|
@@ -19961,7 +20065,7 @@ export declare const Envelope: {
|
|
|
19961
20065
|
role_id?: string | undefined;
|
|
19962
20066
|
channel_id?: string | undefined;
|
|
19963
20067
|
user_id?: string | undefined;
|
|
19964
|
-
} & { [
|
|
20068
|
+
} & { [K_739 in Exclude<keyof I_1["list_data_socket"]["permission_role_req"], keyof PermissionRoleChannelListEventRequest>]: never; }) | undefined;
|
|
19965
20069
|
permission_role_list?: ({
|
|
19966
20070
|
role_id?: string | undefined;
|
|
19967
20071
|
channel_id?: string | undefined;
|
|
@@ -19983,11 +20087,11 @@ export declare const Envelope: {
|
|
|
19983
20087
|
} & {
|
|
19984
20088
|
permission_id?: string | undefined;
|
|
19985
20089
|
active?: boolean | undefined;
|
|
19986
|
-
} & { [
|
|
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 {
|
|
19987
20091
|
permission_id?: string | undefined;
|
|
19988
20092
|
active?: boolean | undefined;
|
|
19989
20093
|
}[]>]: never; }) | undefined;
|
|
19990
|
-
} & { [
|
|
20094
|
+
} & { [K_742 in Exclude<keyof I_1["list_data_socket"]["permission_role_list"], keyof PermissionRoleChannelListEventResponse>]: never; }) | undefined;
|
|
19991
20095
|
emoji_list?: ({
|
|
19992
20096
|
emoji_list?: {
|
|
19993
20097
|
id?: string | undefined;
|
|
@@ -20031,7 +20135,7 @@ export declare const Envelope: {
|
|
|
20031
20135
|
logo?: string | undefined;
|
|
20032
20136
|
clan_name?: string | undefined;
|
|
20033
20137
|
is_for_sale?: boolean | undefined;
|
|
20034
|
-
} & { [
|
|
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 {
|
|
20035
20139
|
id?: string | undefined;
|
|
20036
20140
|
src?: string | undefined;
|
|
20037
20141
|
shortname?: string | undefined;
|
|
@@ -20042,7 +20146,7 @@ export declare const Envelope: {
|
|
|
20042
20146
|
clan_name?: string | undefined;
|
|
20043
20147
|
is_for_sale?: boolean | undefined;
|
|
20044
20148
|
}[]>]: never; }) | undefined;
|
|
20045
|
-
} & { [
|
|
20149
|
+
} & { [K_745 in Exclude<keyof I_1["list_data_socket"]["emoji_list"], "emoji_list">]: never; }) | undefined;
|
|
20046
20150
|
list_friend_req?: ({
|
|
20047
20151
|
limit?: number | undefined;
|
|
20048
20152
|
state?: number | undefined;
|
|
@@ -20051,7 +20155,7 @@ export declare const Envelope: {
|
|
|
20051
20155
|
limit?: number | undefined;
|
|
20052
20156
|
state?: number | undefined;
|
|
20053
20157
|
cursor?: string | undefined;
|
|
20054
|
-
} & { [
|
|
20158
|
+
} & { [K_746 in Exclude<keyof I_1["list_data_socket"]["list_friend_req"], keyof ListFriendsRequest>]: never; }) | undefined;
|
|
20055
20159
|
friend_list?: ({
|
|
20056
20160
|
friends?: {
|
|
20057
20161
|
user?: {
|
|
@@ -20191,12 +20295,12 @@ export declare const Envelope: {
|
|
|
20191
20295
|
is_mobile?: boolean | undefined;
|
|
20192
20296
|
dob?: Date | undefined;
|
|
20193
20297
|
mezon_id?: string | undefined;
|
|
20194
|
-
list_nick_names?: (string[] & string[] & { [
|
|
20195
|
-
} & { [
|
|
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;
|
|
20196
20300
|
state?: number | undefined;
|
|
20197
20301
|
update_time?: Date | undefined;
|
|
20198
20302
|
source_id?: string | undefined;
|
|
20199
|
-
} & { [
|
|
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 {
|
|
20200
20304
|
user?: {
|
|
20201
20305
|
id?: string | undefined;
|
|
20202
20306
|
username?: string | undefined;
|
|
@@ -20227,12 +20331,12 @@ export declare const Envelope: {
|
|
|
20227
20331
|
source_id?: string | undefined;
|
|
20228
20332
|
}[]>]: never; }) | undefined;
|
|
20229
20333
|
cursor?: string | undefined;
|
|
20230
|
-
} & { [
|
|
20334
|
+
} & { [K_751 in Exclude<keyof I_1["list_data_socket"]["friend_list"], keyof FriendList>]: never; }) | undefined;
|
|
20231
20335
|
list_apps_req?: ({
|
|
20232
20336
|
clan_id?: string | undefined;
|
|
20233
20337
|
} & {
|
|
20234
20338
|
clan_id?: string | undefined;
|
|
20235
|
-
} & { [
|
|
20339
|
+
} & { [K_752 in Exclude<keyof I_1["list_data_socket"]["list_apps_req"], "clan_id">]: never; }) | undefined;
|
|
20236
20340
|
channel_apps_list?: ({
|
|
20237
20341
|
channel_apps?: {
|
|
20238
20342
|
id?: string | undefined;
|
|
@@ -20260,14 +20364,14 @@ export declare const Envelope: {
|
|
|
20260
20364
|
channel_id?: string | undefined;
|
|
20261
20365
|
app_id?: string | undefined;
|
|
20262
20366
|
app_url?: string | undefined;
|
|
20263
|
-
} & { [
|
|
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 {
|
|
20264
20368
|
id?: string | undefined;
|
|
20265
20369
|
clan_id?: string | undefined;
|
|
20266
20370
|
channel_id?: string | undefined;
|
|
20267
20371
|
app_id?: string | undefined;
|
|
20268
20372
|
app_url?: string | undefined;
|
|
20269
20373
|
}[]>]: never; }) | undefined;
|
|
20270
|
-
} & { [
|
|
20374
|
+
} & { [K_755 in Exclude<keyof I_1["list_data_socket"]["channel_apps_list"], "channel_apps">]: never; }) | undefined;
|
|
20271
20375
|
user_activity_list?: ({
|
|
20272
20376
|
activities?: {
|
|
20273
20377
|
user_id?: string | undefined;
|
|
@@ -20307,7 +20411,7 @@ export declare const Envelope: {
|
|
|
20307
20411
|
end_time?: Date | undefined;
|
|
20308
20412
|
application_id?: string | undefined;
|
|
20309
20413
|
status?: number | undefined;
|
|
20310
|
-
} & { [
|
|
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 {
|
|
20311
20415
|
user_id?: string | undefined;
|
|
20312
20416
|
activity_name?: string | undefined;
|
|
20313
20417
|
activity_type?: number | undefined;
|
|
@@ -20317,12 +20421,12 @@ export declare const Envelope: {
|
|
|
20317
20421
|
application_id?: string | undefined;
|
|
20318
20422
|
status?: number | undefined;
|
|
20319
20423
|
}[]>]: never; }) | undefined;
|
|
20320
|
-
} & { [
|
|
20424
|
+
} & { [K_758 in Exclude<keyof I_1["list_data_socket"]["user_activity_list"], "activities">]: never; }) | undefined;
|
|
20321
20425
|
list_clan_user_req?: ({
|
|
20322
20426
|
clan_id?: string | undefined;
|
|
20323
20427
|
} & {
|
|
20324
20428
|
clan_id?: string | undefined;
|
|
20325
|
-
} & { [
|
|
20429
|
+
} & { [K_759 in Exclude<keyof I_1["list_data_socket"]["list_clan_user_req"], "clan_id">]: never; }) | undefined;
|
|
20326
20430
|
clan_user_list?: ({
|
|
20327
20431
|
clan_users?: {
|
|
20328
20432
|
user?: {
|
|
@@ -20466,13 +20570,13 @@ export declare const Envelope: {
|
|
|
20466
20570
|
is_mobile?: boolean | undefined;
|
|
20467
20571
|
dob?: Date | undefined;
|
|
20468
20572
|
mezon_id?: string | undefined;
|
|
20469
|
-
list_nick_names?: (string[] & string[] & { [
|
|
20470
|
-
} & { [
|
|
20471
|
-
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;
|
|
20472
20576
|
clan_nick?: string | undefined;
|
|
20473
20577
|
clan_avatar?: string | undefined;
|
|
20474
20578
|
clan_id?: string | undefined;
|
|
20475
|
-
} & { [
|
|
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 {
|
|
20476
20580
|
user?: {
|
|
20477
20581
|
id?: string | undefined;
|
|
20478
20582
|
username?: string | undefined;
|
|
@@ -20505,12 +20609,12 @@ export declare const Envelope: {
|
|
|
20505
20609
|
}[]>]: never; }) | undefined;
|
|
20506
20610
|
cursor?: string | undefined;
|
|
20507
20611
|
clan_id?: string | undefined;
|
|
20508
|
-
} & { [
|
|
20612
|
+
} & { [K_765 in Exclude<keyof I_1["list_data_socket"]["clan_user_list"], keyof ClanUserList>]: never; }) | undefined;
|
|
20509
20613
|
list_event_req?: ({
|
|
20510
20614
|
clan_id?: string | undefined;
|
|
20511
20615
|
} & {
|
|
20512
20616
|
clan_id?: string | undefined;
|
|
20513
|
-
} & { [
|
|
20617
|
+
} & { [K_766 in Exclude<keyof I_1["list_data_socket"]["list_event_req"], "clan_id">]: never; }) | undefined;
|
|
20514
20618
|
event_list?: ({
|
|
20515
20619
|
events?: {
|
|
20516
20620
|
id?: string | undefined;
|
|
@@ -20608,7 +20712,7 @@ export declare const Envelope: {
|
|
|
20608
20712
|
address?: string | undefined;
|
|
20609
20713
|
start_time?: Date | undefined;
|
|
20610
20714
|
end_time?: Date | undefined;
|
|
20611
|
-
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;
|
|
20612
20716
|
create_time?: Date | undefined;
|
|
20613
20717
|
max_permission?: number | undefined;
|
|
20614
20718
|
channel_id?: string | undefined;
|
|
@@ -20627,8 +20731,8 @@ export declare const Envelope: {
|
|
|
20627
20731
|
external_link?: string | undefined;
|
|
20628
20732
|
creator_id?: string | undefined;
|
|
20629
20733
|
event_id?: string | undefined;
|
|
20630
|
-
} & { [
|
|
20631
|
-
} & { [
|
|
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 {
|
|
20632
20736
|
id?: string | undefined;
|
|
20633
20737
|
title?: string | undefined;
|
|
20634
20738
|
logo?: string | undefined;
|
|
@@ -20656,7 +20760,7 @@ export declare const Envelope: {
|
|
|
20656
20760
|
event_id?: string | undefined;
|
|
20657
20761
|
} | undefined;
|
|
20658
20762
|
}[]>]: never; }) | undefined;
|
|
20659
|
-
} & { [
|
|
20763
|
+
} & { [K_771 in Exclude<keyof I_1["list_data_socket"]["event_list"], "events">]: never; }) | undefined;
|
|
20660
20764
|
list_category_req?: ({
|
|
20661
20765
|
creator_id?: string | undefined;
|
|
20662
20766
|
clan_id?: string | undefined;
|
|
@@ -20669,7 +20773,7 @@ export declare const Envelope: {
|
|
|
20669
20773
|
category_name?: string | undefined;
|
|
20670
20774
|
category_id?: string | undefined;
|
|
20671
20775
|
category_order?: number | undefined;
|
|
20672
|
-
} & { [
|
|
20776
|
+
} & { [K_772 in Exclude<keyof I_1["list_data_socket"]["list_category_req"], keyof CategoryDesc>]: never; }) | undefined;
|
|
20673
20777
|
category_list?: ({
|
|
20674
20778
|
categorydesc?: {
|
|
20675
20779
|
creator_id?: string | undefined;
|
|
@@ -20697,14 +20801,14 @@ export declare const Envelope: {
|
|
|
20697
20801
|
category_name?: string | undefined;
|
|
20698
20802
|
category_id?: string | undefined;
|
|
20699
20803
|
category_order?: number | undefined;
|
|
20700
|
-
} & { [
|
|
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 {
|
|
20701
20805
|
creator_id?: string | undefined;
|
|
20702
20806
|
clan_id?: string | undefined;
|
|
20703
20807
|
category_name?: string | undefined;
|
|
20704
20808
|
category_id?: string | undefined;
|
|
20705
20809
|
category_order?: number | undefined;
|
|
20706
20810
|
}[]>]: never; }) | undefined;
|
|
20707
|
-
} & { [
|
|
20811
|
+
} & { [K_775 in Exclude<keyof I_1["list_data_socket"]["category_list"], "categorydesc">]: never; }) | undefined;
|
|
20708
20812
|
stream_user_list?: ({
|
|
20709
20813
|
streaming_channel_users?: {
|
|
20710
20814
|
id?: string | undefined;
|
|
@@ -20728,14 +20832,14 @@ export declare const Envelope: {
|
|
|
20728
20832
|
user_id?: string | undefined;
|
|
20729
20833
|
channel_id?: string | undefined;
|
|
20730
20834
|
participant?: string | undefined;
|
|
20731
|
-
} & { [
|
|
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 {
|
|
20732
20836
|
id?: string | undefined;
|
|
20733
20837
|
user_id?: string | undefined;
|
|
20734
20838
|
channel_id?: string | undefined;
|
|
20735
20839
|
participant?: string | undefined;
|
|
20736
20840
|
}[]>]: never; }) | undefined;
|
|
20737
|
-
} & { [
|
|
20738
|
-
} & { [
|
|
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;
|
|
20739
20843
|
quick_menu_event?: ({
|
|
20740
20844
|
menu_name?: string | undefined;
|
|
20741
20845
|
message?: {
|
|
@@ -20856,7 +20960,7 @@ export declare const Envelope: {
|
|
|
20856
20960
|
create_time?: Date | undefined;
|
|
20857
20961
|
s?: number | undefined;
|
|
20858
20962
|
e?: number | undefined;
|
|
20859
|
-
} & { [
|
|
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 {
|
|
20860
20964
|
id?: string | undefined;
|
|
20861
20965
|
user_id?: string | undefined;
|
|
20862
20966
|
username?: string | undefined;
|
|
@@ -20890,7 +20994,7 @@ export declare const Envelope: {
|
|
|
20890
20994
|
width?: number | undefined;
|
|
20891
20995
|
height?: number | undefined;
|
|
20892
20996
|
thumbnail?: string | undefined;
|
|
20893
|
-
} & { [
|
|
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 {
|
|
20894
20998
|
filename?: string | undefined;
|
|
20895
20999
|
size?: number | undefined;
|
|
20896
21000
|
url?: string | undefined;
|
|
@@ -20932,7 +21036,7 @@ export declare const Envelope: {
|
|
|
20932
21036
|
mesages_sender_avatar?: string | undefined;
|
|
20933
21037
|
message_sender_clan_nick?: string | undefined;
|
|
20934
21038
|
message_sender_display_name?: string | undefined;
|
|
20935
|
-
} & { [
|
|
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 {
|
|
20936
21040
|
message_id?: string | undefined;
|
|
20937
21041
|
message_ref_id?: string | undefined;
|
|
20938
21042
|
content?: string | undefined;
|
|
@@ -20951,14 +21055,36 @@ export declare const Envelope: {
|
|
|
20951
21055
|
is_public?: boolean | undefined;
|
|
20952
21056
|
code?: number | undefined;
|
|
20953
21057
|
topic_id?: string | undefined;
|
|
20954
|
-
} & { [
|
|
20955
|
-
} & { [
|
|
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;
|
|
20956
21060
|
un_block_friend?: ({
|
|
20957
21061
|
user_id?: string | undefined;
|
|
20958
21062
|
} & {
|
|
20959
21063
|
user_id?: string | undefined;
|
|
20960
|
-
} & { [
|
|
20961
|
-
|
|
21064
|
+
} & { [K_788 in Exclude<keyof I_1["un_block_friend"], "user_id">]: never; }) | undefined;
|
|
21065
|
+
meet_participant_event?: ({
|
|
21066
|
+
username?: string | undefined;
|
|
21067
|
+
room_name?: string | undefined;
|
|
21068
|
+
channel_id?: string | undefined;
|
|
21069
|
+
clan_id?: string | undefined;
|
|
21070
|
+
action?: number | undefined;
|
|
21071
|
+
} & {
|
|
21072
|
+
username?: string | undefined;
|
|
21073
|
+
room_name?: string | undefined;
|
|
21074
|
+
channel_id?: string | undefined;
|
|
21075
|
+
clan_id?: string | undefined;
|
|
21076
|
+
action?: number | undefined;
|
|
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;
|
|
20962
21088
|
};
|
|
20963
21089
|
export declare const FollowEvent: {
|
|
20964
21090
|
encode(_: FollowEvent, writer?: _m0.Writer): _m0.Writer;
|
|
@@ -28487,6 +28613,9 @@ export declare const ListDataSocket: {
|
|
|
28487
28613
|
clan_order?: number | undefined;
|
|
28488
28614
|
is_community?: boolean | undefined;
|
|
28489
28615
|
community_banner?: string | undefined;
|
|
28616
|
+
description?: string | undefined;
|
|
28617
|
+
about?: string | undefined;
|
|
28618
|
+
short_url?: string | undefined;
|
|
28490
28619
|
}[] | undefined;
|
|
28491
28620
|
} | undefined;
|
|
28492
28621
|
list_thread_req?: {
|
|
@@ -29350,6 +29479,9 @@ export declare const ListDataSocket: {
|
|
|
29350
29479
|
clan_order?: number | undefined;
|
|
29351
29480
|
is_community?: boolean | undefined;
|
|
29352
29481
|
community_banner?: string | undefined;
|
|
29482
|
+
description?: string | undefined;
|
|
29483
|
+
about?: string | undefined;
|
|
29484
|
+
short_url?: string | undefined;
|
|
29353
29485
|
}[] | undefined;
|
|
29354
29486
|
} & {
|
|
29355
29487
|
clandesc?: ({
|
|
@@ -29366,6 +29498,9 @@ export declare const ListDataSocket: {
|
|
|
29366
29498
|
clan_order?: number | undefined;
|
|
29367
29499
|
is_community?: boolean | undefined;
|
|
29368
29500
|
community_banner?: string | undefined;
|
|
29501
|
+
description?: string | undefined;
|
|
29502
|
+
about?: string | undefined;
|
|
29503
|
+
short_url?: string | undefined;
|
|
29369
29504
|
}[] & ({
|
|
29370
29505
|
creator_id?: string | undefined;
|
|
29371
29506
|
clan_name?: string | undefined;
|
|
@@ -29380,6 +29515,9 @@ export declare const ListDataSocket: {
|
|
|
29380
29515
|
clan_order?: number | undefined;
|
|
29381
29516
|
is_community?: boolean | undefined;
|
|
29382
29517
|
community_banner?: string | undefined;
|
|
29518
|
+
description?: string | undefined;
|
|
29519
|
+
about?: string | undefined;
|
|
29520
|
+
short_url?: string | undefined;
|
|
29383
29521
|
} & {
|
|
29384
29522
|
creator_id?: string | undefined;
|
|
29385
29523
|
clan_name?: string | undefined;
|
|
@@ -29394,6 +29532,9 @@ export declare const ListDataSocket: {
|
|
|
29394
29532
|
clan_order?: number | undefined;
|
|
29395
29533
|
is_community?: boolean | undefined;
|
|
29396
29534
|
community_banner?: string | undefined;
|
|
29535
|
+
description?: string | undefined;
|
|
29536
|
+
about?: string | undefined;
|
|
29537
|
+
short_url?: string | undefined;
|
|
29397
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 {
|
|
29398
29539
|
creator_id?: string | undefined;
|
|
29399
29540
|
clan_name?: string | undefined;
|
|
@@ -29408,6 +29549,9 @@ export declare const ListDataSocket: {
|
|
|
29408
29549
|
clan_order?: number | undefined;
|
|
29409
29550
|
is_community?: boolean | undefined;
|
|
29410
29551
|
community_banner?: string | undefined;
|
|
29552
|
+
description?: string | undefined;
|
|
29553
|
+
about?: string | undefined;
|
|
29554
|
+
short_url?: string | undefined;
|
|
29411
29555
|
}[]>]: never; }) | undefined;
|
|
29412
29556
|
} & { [K_3 in Exclude<keyof I["clan_desc_list"], "clandesc">]: never; }) | undefined;
|
|
29413
29557
|
list_thread_req?: ({
|
|
@@ -32865,6 +33009,9 @@ export declare const ListDataSocket: {
|
|
|
32865
33009
|
clan_order?: number | undefined;
|
|
32866
33010
|
is_community?: boolean | undefined;
|
|
32867
33011
|
community_banner?: string | undefined;
|
|
33012
|
+
description?: string | undefined;
|
|
33013
|
+
about?: string | undefined;
|
|
33014
|
+
short_url?: string | undefined;
|
|
32868
33015
|
}[] | undefined;
|
|
32869
33016
|
} | undefined;
|
|
32870
33017
|
list_thread_req?: {
|
|
@@ -33728,6 +33875,9 @@ export declare const ListDataSocket: {
|
|
|
33728
33875
|
clan_order?: number | undefined;
|
|
33729
33876
|
is_community?: boolean | undefined;
|
|
33730
33877
|
community_banner?: string | undefined;
|
|
33878
|
+
description?: string | undefined;
|
|
33879
|
+
about?: string | undefined;
|
|
33880
|
+
short_url?: string | undefined;
|
|
33731
33881
|
}[] | undefined;
|
|
33732
33882
|
} & {
|
|
33733
33883
|
clandesc?: ({
|
|
@@ -33744,6 +33894,9 @@ export declare const ListDataSocket: {
|
|
|
33744
33894
|
clan_order?: number | undefined;
|
|
33745
33895
|
is_community?: boolean | undefined;
|
|
33746
33896
|
community_banner?: string | undefined;
|
|
33897
|
+
description?: string | undefined;
|
|
33898
|
+
about?: string | undefined;
|
|
33899
|
+
short_url?: string | undefined;
|
|
33747
33900
|
}[] & ({
|
|
33748
33901
|
creator_id?: string | undefined;
|
|
33749
33902
|
clan_name?: string | undefined;
|
|
@@ -33758,6 +33911,9 @@ export declare const ListDataSocket: {
|
|
|
33758
33911
|
clan_order?: number | undefined;
|
|
33759
33912
|
is_community?: boolean | undefined;
|
|
33760
33913
|
community_banner?: string | undefined;
|
|
33914
|
+
description?: string | undefined;
|
|
33915
|
+
about?: string | undefined;
|
|
33916
|
+
short_url?: string | undefined;
|
|
33761
33917
|
} & {
|
|
33762
33918
|
creator_id?: string | undefined;
|
|
33763
33919
|
clan_name?: string | undefined;
|
|
@@ -33772,6 +33928,9 @@ export declare const ListDataSocket: {
|
|
|
33772
33928
|
clan_order?: number | undefined;
|
|
33773
33929
|
is_community?: boolean | undefined;
|
|
33774
33930
|
community_banner?: string | undefined;
|
|
33931
|
+
description?: string | undefined;
|
|
33932
|
+
about?: string | undefined;
|
|
33933
|
+
short_url?: string | undefined;
|
|
33775
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 {
|
|
33776
33935
|
creator_id?: string | undefined;
|
|
33777
33936
|
clan_name?: string | undefined;
|
|
@@ -33786,6 +33945,9 @@ export declare const ListDataSocket: {
|
|
|
33786
33945
|
clan_order?: number | undefined;
|
|
33787
33946
|
is_community?: boolean | undefined;
|
|
33788
33947
|
community_banner?: string | undefined;
|
|
33948
|
+
description?: string | undefined;
|
|
33949
|
+
about?: string | undefined;
|
|
33950
|
+
short_url?: string | undefined;
|
|
33789
33951
|
}[]>]: never; }) | undefined;
|
|
33790
33952
|
} & { [K_191 in Exclude<keyof I_1["clan_desc_list"], "clandesc">]: never; }) | undefined;
|
|
33791
33953
|
list_thread_req?: ({
|
|
@@ -37222,6 +37384,62 @@ export declare const ListDataSocket: {
|
|
|
37222
37384
|
} & { [K_374 in Exclude<keyof I_1["stream_user_list"], "streaming_channel_users">]: never; }) | undefined;
|
|
37223
37385
|
} & { [K_375 in Exclude<keyof I_1, keyof ListDataSocket>]: never; }>(object: I_1): ListDataSocket;
|
|
37224
37386
|
};
|
|
37387
|
+
export declare const MeetParticipantEvent: {
|
|
37388
|
+
encode(message: MeetParticipantEvent, writer?: _m0.Writer): _m0.Writer;
|
|
37389
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): MeetParticipantEvent;
|
|
37390
|
+
fromJSON(object: any): MeetParticipantEvent;
|
|
37391
|
+
toJSON(message: MeetParticipantEvent): unknown;
|
|
37392
|
+
create<I extends {
|
|
37393
|
+
username?: string | undefined;
|
|
37394
|
+
room_name?: string | undefined;
|
|
37395
|
+
channel_id?: string | undefined;
|
|
37396
|
+
clan_id?: string | undefined;
|
|
37397
|
+
action?: number | undefined;
|
|
37398
|
+
} & {
|
|
37399
|
+
username?: string | undefined;
|
|
37400
|
+
room_name?: string | undefined;
|
|
37401
|
+
channel_id?: string | undefined;
|
|
37402
|
+
clan_id?: string | undefined;
|
|
37403
|
+
action?: number | undefined;
|
|
37404
|
+
} & { [K in Exclude<keyof I, keyof MeetParticipantEvent>]: never; }>(base?: I | undefined): MeetParticipantEvent;
|
|
37405
|
+
fromPartial<I_1 extends {
|
|
37406
|
+
username?: string | undefined;
|
|
37407
|
+
room_name?: string | undefined;
|
|
37408
|
+
channel_id?: string | undefined;
|
|
37409
|
+
clan_id?: string | undefined;
|
|
37410
|
+
action?: number | undefined;
|
|
37411
|
+
} & {
|
|
37412
|
+
username?: string | undefined;
|
|
37413
|
+
room_name?: string | undefined;
|
|
37414
|
+
channel_id?: string | undefined;
|
|
37415
|
+
clan_id?: string | undefined;
|
|
37416
|
+
action?: number | undefined;
|
|
37417
|
+
} & { [K_1 in Exclude<keyof I_1, keyof MeetParticipantEvent>]: never; }>(object: I_1): MeetParticipantEvent;
|
|
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
|
+
};
|
|
37225
37443
|
type Builtin = Date | Function | Uint8Array | string | number | boolean | undefined;
|
|
37226
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 {} ? {
|
|
37227
37445
|
[K in keyof T]?: DeepPartial<T[K]>;
|