mezon-js-protobuf 1.8.30 → 1.8.32
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/api/api.ts +54 -0
- package/dist/mezon-js-protobuf/api/api.d.ts +48 -0
- package/dist/mezon-js-protobuf/rtapi/realtime.d.ts +530 -333
- package/dist/mezon-js-protobuf.cjs.js +226 -11
- package/dist/mezon-js-protobuf.esm.mjs +226 -11
- package/package.json +1 -1
- package/rtapi/realtime.ts +211 -2
|
@@ -174,6 +174,8 @@ export interface Envelope {
|
|
|
174
174
|
un_block_friend?: UnblockFriend | undefined;
|
|
175
175
|
/** mezon meet participant event */
|
|
176
176
|
meet_participant_event?: MeetParticipantEvent | undefined;
|
|
177
|
+
/** tranfer ownership event */
|
|
178
|
+
transfer_ownership_event?: TransferOwnershipEvent | undefined;
|
|
177
179
|
}
|
|
178
180
|
export interface FollowEvent {
|
|
179
181
|
}
|
|
@@ -977,6 +979,14 @@ export interface ClanUpdatedEvent {
|
|
|
977
979
|
welcome_channel_id: string;
|
|
978
980
|
/** onboarding_banner. */
|
|
979
981
|
onboarding_banner: string;
|
|
982
|
+
/** community banner */
|
|
983
|
+
community_banner: string;
|
|
984
|
+
/** is community */
|
|
985
|
+
is_community: boolean;
|
|
986
|
+
/** about */
|
|
987
|
+
about: string;
|
|
988
|
+
/** description */
|
|
989
|
+
description: string;
|
|
980
990
|
}
|
|
981
991
|
/** clan profile updated event */
|
|
982
992
|
export interface ClanProfileUpdatedEvent {
|
|
@@ -1169,6 +1179,8 @@ export interface HandleParticipantMeetStateEvent {
|
|
|
1169
1179
|
display_name: string;
|
|
1170
1180
|
/** state (0: join, 1: leave) */
|
|
1171
1181
|
state: number;
|
|
1182
|
+
/** room name */
|
|
1183
|
+
room_name: string;
|
|
1172
1184
|
}
|
|
1173
1185
|
export interface DeleteAccountEvent {
|
|
1174
1186
|
/** user id */
|
|
@@ -1247,6 +1259,11 @@ export interface MeetParticipantEvent {
|
|
|
1247
1259
|
clan_id: string;
|
|
1248
1260
|
action: number;
|
|
1249
1261
|
}
|
|
1262
|
+
export interface TransferOwnershipEvent {
|
|
1263
|
+
clan_id: string;
|
|
1264
|
+
prev_owner: string;
|
|
1265
|
+
curr_owner: string;
|
|
1266
|
+
}
|
|
1250
1267
|
export declare const Envelope: {
|
|
1251
1268
|
encode(message: Envelope, writer?: _m0.Writer): _m0.Writer;
|
|
1252
1269
|
decode(input: _m0.Reader | Uint8Array, length?: number): Envelope;
|
|
@@ -1865,6 +1882,10 @@ export declare const Envelope: {
|
|
|
1865
1882
|
is_onboarding?: boolean | undefined;
|
|
1866
1883
|
welcome_channel_id?: string | undefined;
|
|
1867
1884
|
onboarding_banner?: string | undefined;
|
|
1885
|
+
community_banner?: string | undefined;
|
|
1886
|
+
is_community?: boolean | undefined;
|
|
1887
|
+
about?: string | undefined;
|
|
1888
|
+
description?: string | undefined;
|
|
1868
1889
|
} | undefined;
|
|
1869
1890
|
clan_profile_updated_event?: {
|
|
1870
1891
|
user_id?: string | undefined;
|
|
@@ -2263,6 +2284,7 @@ export declare const Envelope: {
|
|
|
2263
2284
|
channel_id?: string | undefined;
|
|
2264
2285
|
display_name?: string | undefined;
|
|
2265
2286
|
state?: number | undefined;
|
|
2287
|
+
room_name?: string | undefined;
|
|
2266
2288
|
} | undefined;
|
|
2267
2289
|
delete_account_event?: {
|
|
2268
2290
|
user_id?: string | undefined;
|
|
@@ -2349,6 +2371,9 @@ export declare const Envelope: {
|
|
|
2349
2371
|
clan_order?: number | undefined;
|
|
2350
2372
|
is_community?: boolean | undefined;
|
|
2351
2373
|
community_banner?: string | undefined;
|
|
2374
|
+
description?: string | undefined;
|
|
2375
|
+
about?: string | undefined;
|
|
2376
|
+
short_url?: string | undefined;
|
|
2352
2377
|
}[] | undefined;
|
|
2353
2378
|
} | undefined;
|
|
2354
2379
|
list_thread_req?: {
|
|
@@ -3243,6 +3268,11 @@ export declare const Envelope: {
|
|
|
3243
3268
|
clan_id?: string | undefined;
|
|
3244
3269
|
action?: number | undefined;
|
|
3245
3270
|
} | undefined;
|
|
3271
|
+
transfer_ownership_event?: {
|
|
3272
|
+
clan_id?: string | undefined;
|
|
3273
|
+
prev_owner?: string | undefined;
|
|
3274
|
+
curr_owner?: string | undefined;
|
|
3275
|
+
} | undefined;
|
|
3246
3276
|
} & {
|
|
3247
3277
|
cid?: string | undefined;
|
|
3248
3278
|
channel?: ({
|
|
@@ -5237,6 +5267,10 @@ export declare const Envelope: {
|
|
|
5237
5267
|
is_onboarding?: boolean | undefined;
|
|
5238
5268
|
welcome_channel_id?: string | undefined;
|
|
5239
5269
|
onboarding_banner?: string | undefined;
|
|
5270
|
+
community_banner?: string | undefined;
|
|
5271
|
+
is_community?: boolean | undefined;
|
|
5272
|
+
about?: string | undefined;
|
|
5273
|
+
description?: string | undefined;
|
|
5240
5274
|
} & {
|
|
5241
5275
|
clan_id?: string | undefined;
|
|
5242
5276
|
clan_name?: string | undefined;
|
|
@@ -5246,6 +5280,10 @@ export declare const Envelope: {
|
|
|
5246
5280
|
is_onboarding?: boolean | undefined;
|
|
5247
5281
|
welcome_channel_id?: string | undefined;
|
|
5248
5282
|
onboarding_banner?: string | undefined;
|
|
5283
|
+
community_banner?: string | undefined;
|
|
5284
|
+
is_community?: boolean | undefined;
|
|
5285
|
+
about?: string | undefined;
|
|
5286
|
+
description?: string | undefined;
|
|
5249
5287
|
} & { [K_111 in Exclude<keyof I["clan_updated_event"], keyof ClanUpdatedEvent>]: never; }) | undefined;
|
|
5250
5288
|
clan_profile_updated_event?: ({
|
|
5251
5289
|
user_id?: string | undefined;
|
|
@@ -6263,11 +6301,13 @@ export declare const Envelope: {
|
|
|
6263
6301
|
channel_id?: string | undefined;
|
|
6264
6302
|
display_name?: string | undefined;
|
|
6265
6303
|
state?: number | undefined;
|
|
6304
|
+
room_name?: string | undefined;
|
|
6266
6305
|
} & {
|
|
6267
6306
|
clan_id?: string | undefined;
|
|
6268
6307
|
channel_id?: string | undefined;
|
|
6269
6308
|
display_name?: string | undefined;
|
|
6270
6309
|
state?: number | undefined;
|
|
6310
|
+
room_name?: string | undefined;
|
|
6271
6311
|
} & { [K_182 in Exclude<keyof I["handle_participant_meet_state_event"], keyof HandleParticipantMeetStateEvent>]: never; }) | undefined;
|
|
6272
6312
|
delete_account_event?: ({
|
|
6273
6313
|
user_id?: string | undefined;
|
|
@@ -6538,6 +6578,9 @@ export declare const Envelope: {
|
|
|
6538
6578
|
clan_order?: number | undefined;
|
|
6539
6579
|
is_community?: boolean | undefined;
|
|
6540
6580
|
community_banner?: string | undefined;
|
|
6581
|
+
description?: string | undefined;
|
|
6582
|
+
about?: string | undefined;
|
|
6583
|
+
short_url?: string | undefined;
|
|
6541
6584
|
}[] | undefined;
|
|
6542
6585
|
} | undefined;
|
|
6543
6586
|
list_thread_req?: {
|
|
@@ -7401,6 +7444,9 @@ export declare const Envelope: {
|
|
|
7401
7444
|
clan_order?: number | undefined;
|
|
7402
7445
|
is_community?: boolean | undefined;
|
|
7403
7446
|
community_banner?: string | undefined;
|
|
7447
|
+
description?: string | undefined;
|
|
7448
|
+
about?: string | undefined;
|
|
7449
|
+
short_url?: string | undefined;
|
|
7404
7450
|
}[] | undefined;
|
|
7405
7451
|
} & {
|
|
7406
7452
|
clandesc?: ({
|
|
@@ -7417,6 +7463,9 @@ export declare const Envelope: {
|
|
|
7417
7463
|
clan_order?: number | undefined;
|
|
7418
7464
|
is_community?: boolean | undefined;
|
|
7419
7465
|
community_banner?: string | undefined;
|
|
7466
|
+
description?: string | undefined;
|
|
7467
|
+
about?: string | undefined;
|
|
7468
|
+
short_url?: string | undefined;
|
|
7420
7469
|
}[] & ({
|
|
7421
7470
|
creator_id?: string | undefined;
|
|
7422
7471
|
clan_name?: string | undefined;
|
|
@@ -7431,6 +7480,9 @@ export declare const Envelope: {
|
|
|
7431
7480
|
clan_order?: number | undefined;
|
|
7432
7481
|
is_community?: boolean | undefined;
|
|
7433
7482
|
community_banner?: string | undefined;
|
|
7483
|
+
description?: string | undefined;
|
|
7484
|
+
about?: string | undefined;
|
|
7485
|
+
short_url?: string | undefined;
|
|
7434
7486
|
} & {
|
|
7435
7487
|
creator_id?: string | undefined;
|
|
7436
7488
|
clan_name?: string | undefined;
|
|
@@ -7445,6 +7497,9 @@ export declare const Envelope: {
|
|
|
7445
7497
|
clan_order?: number | undefined;
|
|
7446
7498
|
is_community?: boolean | undefined;
|
|
7447
7499
|
community_banner?: string | undefined;
|
|
7500
|
+
description?: string | undefined;
|
|
7501
|
+
about?: string | undefined;
|
|
7502
|
+
short_url?: string | undefined;
|
|
7448
7503
|
} & { [K_197 in Exclude<keyof I["list_data_socket"]["clan_desc_list"]["clandesc"][number], keyof import("../api/api").ClanDesc>]: never; })[] & { [K_198 in Exclude<keyof I["list_data_socket"]["clan_desc_list"]["clandesc"], keyof {
|
|
7449
7504
|
creator_id?: string | undefined;
|
|
7450
7505
|
clan_name?: string | undefined;
|
|
@@ -7459,6 +7514,9 @@ export declare const Envelope: {
|
|
|
7459
7514
|
clan_order?: number | undefined;
|
|
7460
7515
|
is_community?: boolean | undefined;
|
|
7461
7516
|
community_banner?: string | undefined;
|
|
7517
|
+
description?: string | undefined;
|
|
7518
|
+
about?: string | undefined;
|
|
7519
|
+
short_url?: string | undefined;
|
|
7462
7520
|
}[]>]: never; }) | undefined;
|
|
7463
7521
|
} & { [K_199 in Exclude<keyof I["list_data_socket"]["clan_desc_list"], "clandesc">]: never; }) | undefined;
|
|
7464
7522
|
list_thread_req?: ({
|
|
@@ -11129,7 +11187,16 @@ export declare const Envelope: {
|
|
|
11129
11187
|
clan_id?: string | undefined;
|
|
11130
11188
|
action?: number | undefined;
|
|
11131
11189
|
} & { [K_393 in Exclude<keyof I["meet_participant_event"], keyof MeetParticipantEvent>]: never; }) | undefined;
|
|
11132
|
-
|
|
11190
|
+
transfer_ownership_event?: ({
|
|
11191
|
+
clan_id?: string | undefined;
|
|
11192
|
+
prev_owner?: string | undefined;
|
|
11193
|
+
curr_owner?: string | undefined;
|
|
11194
|
+
} & {
|
|
11195
|
+
clan_id?: string | undefined;
|
|
11196
|
+
prev_owner?: string | undefined;
|
|
11197
|
+
curr_owner?: string | undefined;
|
|
11198
|
+
} & { [K_394 in Exclude<keyof I["transfer_ownership_event"], keyof TransferOwnershipEvent>]: never; }) | undefined;
|
|
11199
|
+
} & { [K_395 in Exclude<keyof I, keyof Envelope>]: never; }>(base?: I | undefined): Envelope;
|
|
11133
11200
|
fromPartial<I_1 extends {
|
|
11134
11201
|
cid?: string | undefined;
|
|
11135
11202
|
channel?: {
|
|
@@ -11743,6 +11810,10 @@ export declare const Envelope: {
|
|
|
11743
11810
|
is_onboarding?: boolean | undefined;
|
|
11744
11811
|
welcome_channel_id?: string | undefined;
|
|
11745
11812
|
onboarding_banner?: string | undefined;
|
|
11813
|
+
community_banner?: string | undefined;
|
|
11814
|
+
is_community?: boolean | undefined;
|
|
11815
|
+
about?: string | undefined;
|
|
11816
|
+
description?: string | undefined;
|
|
11746
11817
|
} | undefined;
|
|
11747
11818
|
clan_profile_updated_event?: {
|
|
11748
11819
|
user_id?: string | undefined;
|
|
@@ -12141,6 +12212,7 @@ export declare const Envelope: {
|
|
|
12141
12212
|
channel_id?: string | undefined;
|
|
12142
12213
|
display_name?: string | undefined;
|
|
12143
12214
|
state?: number | undefined;
|
|
12215
|
+
room_name?: string | undefined;
|
|
12144
12216
|
} | undefined;
|
|
12145
12217
|
delete_account_event?: {
|
|
12146
12218
|
user_id?: string | undefined;
|
|
@@ -12227,6 +12299,9 @@ export declare const Envelope: {
|
|
|
12227
12299
|
clan_order?: number | undefined;
|
|
12228
12300
|
is_community?: boolean | undefined;
|
|
12229
12301
|
community_banner?: string | undefined;
|
|
12302
|
+
description?: string | undefined;
|
|
12303
|
+
about?: string | undefined;
|
|
12304
|
+
short_url?: string | undefined;
|
|
12230
12305
|
}[] | undefined;
|
|
12231
12306
|
} | undefined;
|
|
12232
12307
|
list_thread_req?: {
|
|
@@ -13121,6 +13196,11 @@ export declare const Envelope: {
|
|
|
13121
13196
|
clan_id?: string | undefined;
|
|
13122
13197
|
action?: number | undefined;
|
|
13123
13198
|
} | undefined;
|
|
13199
|
+
transfer_ownership_event?: {
|
|
13200
|
+
clan_id?: string | undefined;
|
|
13201
|
+
prev_owner?: string | undefined;
|
|
13202
|
+
curr_owner?: string | undefined;
|
|
13203
|
+
} | undefined;
|
|
13124
13204
|
} & {
|
|
13125
13205
|
cid?: string | undefined;
|
|
13126
13206
|
channel?: ({
|
|
@@ -13172,7 +13252,7 @@ export declare const Envelope: {
|
|
|
13172
13252
|
status?: string | undefined;
|
|
13173
13253
|
is_mobile?: boolean | undefined;
|
|
13174
13254
|
metadata?: string | undefined;
|
|
13175
|
-
} & { [
|
|
13255
|
+
} & { [K_396 in Exclude<keyof I_1["channel"]["presences"][number], keyof UserPresence>]: never; })[] & { [K_397 in Exclude<keyof I_1["channel"]["presences"], keyof {
|
|
13176
13256
|
user_id?: string | undefined;
|
|
13177
13257
|
session_id?: string | undefined;
|
|
13178
13258
|
username?: string | undefined;
|
|
@@ -13197,16 +13277,16 @@ export declare const Envelope: {
|
|
|
13197
13277
|
status?: string | undefined;
|
|
13198
13278
|
is_mobile?: boolean | undefined;
|
|
13199
13279
|
metadata?: string | undefined;
|
|
13200
|
-
} & { [
|
|
13280
|
+
} & { [K_398 in Exclude<keyof I_1["channel"]["self"], keyof UserPresence>]: never; }) | undefined;
|
|
13201
13281
|
chanel_label?: string | undefined;
|
|
13202
13282
|
clan_logo?: string | undefined;
|
|
13203
13283
|
category_name?: string | undefined;
|
|
13204
|
-
} & { [
|
|
13284
|
+
} & { [K_399 in Exclude<keyof I_1["channel"], keyof Channel>]: never; }) | undefined;
|
|
13205
13285
|
clan_join?: ({
|
|
13206
13286
|
clan_id?: string | undefined;
|
|
13207
13287
|
} & {
|
|
13208
13288
|
clan_id?: string | undefined;
|
|
13209
|
-
} & { [
|
|
13289
|
+
} & { [K_400 in Exclude<keyof I_1["clan_join"], "clan_id">]: never; }) | undefined;
|
|
13210
13290
|
channel_join?: ({
|
|
13211
13291
|
clan_id?: string | undefined;
|
|
13212
13292
|
channel_id?: string | undefined;
|
|
@@ -13217,7 +13297,7 @@ export declare const Envelope: {
|
|
|
13217
13297
|
channel_id?: string | undefined;
|
|
13218
13298
|
channel_type?: number | undefined;
|
|
13219
13299
|
is_public?: boolean | undefined;
|
|
13220
|
-
} & { [
|
|
13300
|
+
} & { [K_401 in Exclude<keyof I_1["channel_join"], keyof ChannelJoin>]: never; }) | undefined;
|
|
13221
13301
|
channel_leave?: ({
|
|
13222
13302
|
clan_id?: string | undefined;
|
|
13223
13303
|
channel_id?: string | undefined;
|
|
@@ -13228,7 +13308,7 @@ export declare const Envelope: {
|
|
|
13228
13308
|
channel_id?: string | undefined;
|
|
13229
13309
|
channel_type?: number | undefined;
|
|
13230
13310
|
is_public?: boolean | undefined;
|
|
13231
|
-
} & { [
|
|
13311
|
+
} & { [K_402 in Exclude<keyof I_1["channel_leave"], keyof ChannelLeave>]: never; }) | undefined;
|
|
13232
13312
|
channel_message?: ({
|
|
13233
13313
|
clan_id?: string | undefined;
|
|
13234
13314
|
channel_id?: string | undefined;
|
|
@@ -13285,7 +13365,7 @@ export declare const Envelope: {
|
|
|
13285
13365
|
hide_editted?: boolean | undefined;
|
|
13286
13366
|
is_public?: boolean | undefined;
|
|
13287
13367
|
topic_id?: string | undefined;
|
|
13288
|
-
} & { [
|
|
13368
|
+
} & { [K_403 in Exclude<keyof I_1["channel_message"], keyof ChannelMessage>]: never; }) | undefined;
|
|
13289
13369
|
channel_message_ack?: ({
|
|
13290
13370
|
channel_id?: string | undefined;
|
|
13291
13371
|
message_id?: string | undefined;
|
|
@@ -13306,7 +13386,7 @@ export declare const Envelope: {
|
|
|
13306
13386
|
persistent?: boolean | undefined;
|
|
13307
13387
|
clan_logo?: string | undefined;
|
|
13308
13388
|
category_name?: string | undefined;
|
|
13309
|
-
} & { [
|
|
13389
|
+
} & { [K_404 in Exclude<keyof I_1["channel_message_ack"], keyof ChannelMessageAck>]: never; }) | undefined;
|
|
13310
13390
|
channel_message_send?: ({
|
|
13311
13391
|
clan_id?: string | undefined;
|
|
13312
13392
|
channel_id?: string | undefined;
|
|
@@ -13380,7 +13460,7 @@ export declare const Envelope: {
|
|
|
13380
13460
|
create_time?: Date | undefined;
|
|
13381
13461
|
s?: number | undefined;
|
|
13382
13462
|
e?: number | undefined;
|
|
13383
|
-
} & { [
|
|
13463
|
+
} & { [K_405 in Exclude<keyof I_1["channel_message_send"]["mentions"][number], keyof MessageMention>]: never; })[] & { [K_406 in Exclude<keyof I_1["channel_message_send"]["mentions"], keyof {
|
|
13384
13464
|
id?: string | undefined;
|
|
13385
13465
|
user_id?: string | undefined;
|
|
13386
13466
|
username?: string | undefined;
|
|
@@ -13414,7 +13494,7 @@ export declare const Envelope: {
|
|
|
13414
13494
|
width?: number | undefined;
|
|
13415
13495
|
height?: number | undefined;
|
|
13416
13496
|
thumbnail?: string | undefined;
|
|
13417
|
-
} & { [
|
|
13497
|
+
} & { [K_407 in Exclude<keyof I_1["channel_message_send"]["attachments"][number], keyof MessageAttachment>]: never; })[] & { [K_408 in Exclude<keyof I_1["channel_message_send"]["attachments"], keyof {
|
|
13418
13498
|
filename?: string | undefined;
|
|
13419
13499
|
size?: number | undefined;
|
|
13420
13500
|
url?: string | undefined;
|
|
@@ -13456,7 +13536,7 @@ export declare const Envelope: {
|
|
|
13456
13536
|
mesages_sender_avatar?: string | undefined;
|
|
13457
13537
|
message_sender_clan_nick?: string | undefined;
|
|
13458
13538
|
message_sender_display_name?: string | undefined;
|
|
13459
|
-
} & { [
|
|
13539
|
+
} & { [K_409 in Exclude<keyof I_1["channel_message_send"]["references"][number], keyof MessageRef>]: never; })[] & { [K_410 in Exclude<keyof I_1["channel_message_send"]["references"], keyof {
|
|
13460
13540
|
message_id?: string | undefined;
|
|
13461
13541
|
message_ref_id?: string | undefined;
|
|
13462
13542
|
content?: string | undefined;
|
|
@@ -13475,7 +13555,7 @@ export declare const Envelope: {
|
|
|
13475
13555
|
is_public?: boolean | undefined;
|
|
13476
13556
|
code?: number | undefined;
|
|
13477
13557
|
topic_id?: string | undefined;
|
|
13478
|
-
} & { [
|
|
13558
|
+
} & { [K_411 in Exclude<keyof I_1["channel_message_send"], keyof ChannelMessageSend>]: never; }) | undefined;
|
|
13479
13559
|
channel_message_update?: ({
|
|
13480
13560
|
clan_id?: string | undefined;
|
|
13481
13561
|
channel_id?: string | undefined;
|
|
@@ -13538,7 +13618,7 @@ export declare const Envelope: {
|
|
|
13538
13618
|
create_time?: Date | undefined;
|
|
13539
13619
|
s?: number | undefined;
|
|
13540
13620
|
e?: number | undefined;
|
|
13541
|
-
} & { [
|
|
13621
|
+
} & { [K_412 in Exclude<keyof I_1["channel_message_update"]["mentions"][number], keyof MessageMention>]: never; })[] & { [K_413 in Exclude<keyof I_1["channel_message_update"]["mentions"], keyof {
|
|
13542
13622
|
id?: string | undefined;
|
|
13543
13623
|
user_id?: string | undefined;
|
|
13544
13624
|
username?: string | undefined;
|
|
@@ -13572,7 +13652,7 @@ export declare const Envelope: {
|
|
|
13572
13652
|
width?: number | undefined;
|
|
13573
13653
|
height?: number | undefined;
|
|
13574
13654
|
thumbnail?: string | undefined;
|
|
13575
|
-
} & { [
|
|
13655
|
+
} & { [K_414 in Exclude<keyof I_1["channel_message_update"]["attachments"][number], keyof MessageAttachment>]: never; })[] & { [K_415 in Exclude<keyof I_1["channel_message_update"]["attachments"], keyof {
|
|
13576
13656
|
filename?: string | undefined;
|
|
13577
13657
|
size?: number | undefined;
|
|
13578
13658
|
url?: string | undefined;
|
|
@@ -13587,7 +13667,7 @@ export declare const Envelope: {
|
|
|
13587
13667
|
topic_id?: string | undefined;
|
|
13588
13668
|
is_update_msg_topic?: boolean | undefined;
|
|
13589
13669
|
old_mentions?: string | undefined;
|
|
13590
|
-
} & { [
|
|
13670
|
+
} & { [K_416 in Exclude<keyof I_1["channel_message_update"], keyof ChannelMessageUpdate>]: never; }) | undefined;
|
|
13591
13671
|
channel_message_remove?: ({
|
|
13592
13672
|
clan_id?: string | undefined;
|
|
13593
13673
|
channel_id?: string | undefined;
|
|
@@ -13608,7 +13688,7 @@ export declare const Envelope: {
|
|
|
13608
13688
|
topic_id?: string | undefined;
|
|
13609
13689
|
mentions?: string | undefined;
|
|
13610
13690
|
references?: string | undefined;
|
|
13611
|
-
} & { [
|
|
13691
|
+
} & { [K_417 in Exclude<keyof I_1["channel_message_remove"], keyof ChannelMessageRemove>]: never; }) | undefined;
|
|
13612
13692
|
channel_presence_event?: ({
|
|
13613
13693
|
channel_id?: string | undefined;
|
|
13614
13694
|
joins?: {
|
|
@@ -13658,7 +13738,7 @@ export declare const Envelope: {
|
|
|
13658
13738
|
status?: string | undefined;
|
|
13659
13739
|
is_mobile?: boolean | undefined;
|
|
13660
13740
|
metadata?: string | undefined;
|
|
13661
|
-
} & { [
|
|
13741
|
+
} & { [K_418 in Exclude<keyof I_1["channel_presence_event"]["joins"][number], keyof UserPresence>]: never; })[] & { [K_419 in Exclude<keyof I_1["channel_presence_event"]["joins"], keyof {
|
|
13662
13742
|
user_id?: string | undefined;
|
|
13663
13743
|
session_id?: string | undefined;
|
|
13664
13744
|
username?: string | undefined;
|
|
@@ -13691,7 +13771,7 @@ export declare const Envelope: {
|
|
|
13691
13771
|
status?: string | undefined;
|
|
13692
13772
|
is_mobile?: boolean | undefined;
|
|
13693
13773
|
metadata?: string | undefined;
|
|
13694
|
-
} & { [
|
|
13774
|
+
} & { [K_420 in Exclude<keyof I_1["channel_presence_event"]["leaves"][number], keyof UserPresence>]: never; })[] & { [K_421 in Exclude<keyof I_1["channel_presence_event"]["leaves"], keyof {
|
|
13695
13775
|
user_id?: string | undefined;
|
|
13696
13776
|
session_id?: string | undefined;
|
|
13697
13777
|
username?: string | undefined;
|
|
@@ -13703,7 +13783,7 @@ export declare const Envelope: {
|
|
|
13703
13783
|
clan_logo?: string | undefined;
|
|
13704
13784
|
category_name?: string | undefined;
|
|
13705
13785
|
mode?: number | undefined;
|
|
13706
|
-
} & { [
|
|
13786
|
+
} & { [K_422 in Exclude<keyof I_1["channel_presence_event"], keyof ChannelPresenceEvent>]: never; }) | undefined;
|
|
13707
13787
|
error?: ({
|
|
13708
13788
|
code?: number | undefined;
|
|
13709
13789
|
message?: string | undefined;
|
|
@@ -13717,8 +13797,8 @@ export declare const Envelope: {
|
|
|
13717
13797
|
[x: string]: string | undefined;
|
|
13718
13798
|
} & {
|
|
13719
13799
|
[x: string]: string | undefined;
|
|
13720
|
-
} & { [
|
|
13721
|
-
} & { [
|
|
13800
|
+
} & { [K_423 in Exclude<keyof I_1["error"]["context"], string | number>]: never; }) | undefined;
|
|
13801
|
+
} & { [K_424 in Exclude<keyof I_1["error"], keyof Error>]: never; }) | undefined;
|
|
13722
13802
|
notifications?: ({
|
|
13723
13803
|
notifications?: {
|
|
13724
13804
|
id?: string | undefined;
|
|
@@ -13997,8 +14077,8 @@ export declare const Envelope: {
|
|
|
13997
14077
|
creator_id?: string | undefined;
|
|
13998
14078
|
channel_label?: string | undefined;
|
|
13999
14079
|
channel_private?: number | undefined;
|
|
14000
|
-
channel_avatar?: (string[] & string[] & { [
|
|
14001
|
-
user_id?: (string[] & string[] & { [
|
|
14080
|
+
channel_avatar?: (string[] & string[] & { [K_425 in Exclude<keyof I_1["notifications"]["notifications"][number]["channel"]["channel_avatar"], keyof string[]>]: never; }) | undefined;
|
|
14081
|
+
user_id?: (string[] & string[] & { [K_426 in Exclude<keyof I_1["notifications"]["notifications"][number]["channel"]["user_id"], keyof string[]>]: never; }) | undefined;
|
|
14002
14082
|
last_sent_message?: ({
|
|
14003
14083
|
id?: string | undefined;
|
|
14004
14084
|
timestamp_seconds?: number | undefined;
|
|
@@ -14018,8 +14098,8 @@ export declare const Envelope: {
|
|
|
14018
14098
|
reference?: string | undefined;
|
|
14019
14099
|
mention?: string | undefined;
|
|
14020
14100
|
reaction?: string | undefined;
|
|
14021
|
-
repliers?: (string[] & string[] & { [
|
|
14022
|
-
} & { [
|
|
14101
|
+
repliers?: (string[] & string[] & { [K_427 in Exclude<keyof I_1["notifications"]["notifications"][number]["channel"]["last_sent_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
14102
|
+
} & { [K_428 in Exclude<keyof I_1["notifications"]["notifications"][number]["channel"]["last_sent_message"], keyof ChannelMessageHeader>]: never; }) | undefined;
|
|
14023
14103
|
last_seen_message?: ({
|
|
14024
14104
|
id?: string | undefined;
|
|
14025
14105
|
timestamp_seconds?: number | undefined;
|
|
@@ -14039,30 +14119,30 @@ export declare const Envelope: {
|
|
|
14039
14119
|
reference?: string | undefined;
|
|
14040
14120
|
mention?: string | undefined;
|
|
14041
14121
|
reaction?: string | undefined;
|
|
14042
|
-
repliers?: (string[] & string[] & { [
|
|
14043
|
-
} & { [
|
|
14044
|
-
is_online?: (boolean[] & boolean[] & { [
|
|
14122
|
+
repliers?: (string[] & string[] & { [K_429 in Exclude<keyof I_1["notifications"]["notifications"][number]["channel"]["last_seen_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
14123
|
+
} & { [K_430 in Exclude<keyof I_1["notifications"]["notifications"][number]["channel"]["last_seen_message"], keyof ChannelMessageHeader>]: never; }) | undefined;
|
|
14124
|
+
is_online?: (boolean[] & boolean[] & { [K_431 in Exclude<keyof I_1["notifications"]["notifications"][number]["channel"]["is_online"], keyof boolean[]>]: never; }) | undefined;
|
|
14045
14125
|
meeting_code?: string | undefined;
|
|
14046
14126
|
count_mess_unread?: number | undefined;
|
|
14047
14127
|
active?: number | undefined;
|
|
14048
14128
|
last_pin_message?: string | undefined;
|
|
14049
|
-
usernames?: (string[] & string[] & { [
|
|
14129
|
+
usernames?: (string[] & string[] & { [K_432 in Exclude<keyof I_1["notifications"]["notifications"][number]["channel"]["usernames"], keyof string[]>]: never; }) | undefined;
|
|
14050
14130
|
creator_name?: string | undefined;
|
|
14051
14131
|
create_time_seconds?: number | undefined;
|
|
14052
14132
|
update_time_seconds?: number | undefined;
|
|
14053
|
-
metadata?: (string[] & string[] & { [
|
|
14054
|
-
about_me?: (string[] & string[] & { [
|
|
14133
|
+
metadata?: (string[] & string[] & { [K_433 in Exclude<keyof I_1["notifications"]["notifications"][number]["channel"]["metadata"], keyof string[]>]: never; }) | undefined;
|
|
14134
|
+
about_me?: (string[] & string[] & { [K_434 in Exclude<keyof I_1["notifications"]["notifications"][number]["channel"]["about_me"], keyof string[]>]: never; }) | undefined;
|
|
14055
14135
|
clan_name?: string | undefined;
|
|
14056
14136
|
app_id?: string | undefined;
|
|
14057
14137
|
is_mute?: boolean | undefined;
|
|
14058
14138
|
age_restricted?: number | undefined;
|
|
14059
14139
|
topic?: string | undefined;
|
|
14060
14140
|
e2ee?: number | undefined;
|
|
14061
|
-
display_names?: (string[] & string[] & { [
|
|
14062
|
-
} & { [
|
|
14141
|
+
display_names?: (string[] & string[] & { [K_435 in Exclude<keyof I_1["notifications"]["notifications"][number]["channel"]["display_names"], keyof string[]>]: never; }) | undefined;
|
|
14142
|
+
} & { [K_436 in Exclude<keyof I_1["notifications"]["notifications"][number]["channel"], keyof ChannelDescription1>]: never; }) | undefined;
|
|
14063
14143
|
topic_id?: string | undefined;
|
|
14064
14144
|
category?: number | undefined;
|
|
14065
|
-
} & { [
|
|
14145
|
+
} & { [K_437 in Exclude<keyof I_1["notifications"]["notifications"][number], keyof Notification>]: never; })[] & { [K_438 in Exclude<keyof I_1["notifications"]["notifications"], keyof {
|
|
14066
14146
|
id?: string | undefined;
|
|
14067
14147
|
subject?: string | undefined;
|
|
14068
14148
|
content?: string | undefined;
|
|
@@ -14130,7 +14210,7 @@ export declare const Envelope: {
|
|
|
14130
14210
|
topic_id?: string | undefined;
|
|
14131
14211
|
category?: number | undefined;
|
|
14132
14212
|
}[]>]: never; }) | undefined;
|
|
14133
|
-
} & { [
|
|
14213
|
+
} & { [K_439 in Exclude<keyof I_1["notifications"], "notifications">]: never; }) | undefined;
|
|
14134
14214
|
rpc?: ({
|
|
14135
14215
|
id?: string | undefined;
|
|
14136
14216
|
payload?: string | undefined;
|
|
@@ -14139,7 +14219,7 @@ export declare const Envelope: {
|
|
|
14139
14219
|
id?: string | undefined;
|
|
14140
14220
|
payload?: string | undefined;
|
|
14141
14221
|
http_key?: string | undefined;
|
|
14142
|
-
} & { [
|
|
14222
|
+
} & { [K_440 in Exclude<keyof I_1["rpc"], keyof Rpc>]: never; }) | undefined;
|
|
14143
14223
|
status?: ({
|
|
14144
14224
|
presences?: {
|
|
14145
14225
|
user_id?: string | undefined;
|
|
@@ -14175,7 +14255,7 @@ export declare const Envelope: {
|
|
|
14175
14255
|
status?: string | undefined;
|
|
14176
14256
|
is_mobile?: boolean | undefined;
|
|
14177
14257
|
metadata?: string | undefined;
|
|
14178
|
-
} & { [
|
|
14258
|
+
} & { [K_441 in Exclude<keyof I_1["status"]["presences"][number], keyof UserPresence>]: never; })[] & { [K_442 in Exclude<keyof I_1["status"]["presences"], keyof {
|
|
14179
14259
|
user_id?: string | undefined;
|
|
14180
14260
|
session_id?: string | undefined;
|
|
14181
14261
|
username?: string | undefined;
|
|
@@ -14184,14 +14264,14 @@ export declare const Envelope: {
|
|
|
14184
14264
|
is_mobile?: boolean | undefined;
|
|
14185
14265
|
metadata?: string | undefined;
|
|
14186
14266
|
}[]>]: never; }) | undefined;
|
|
14187
|
-
} & { [
|
|
14267
|
+
} & { [K_443 in Exclude<keyof I_1["status"], "presences">]: never; }) | undefined;
|
|
14188
14268
|
status_follow?: ({
|
|
14189
14269
|
user_ids?: string[] | undefined;
|
|
14190
14270
|
usernames?: string[] | undefined;
|
|
14191
14271
|
} & {
|
|
14192
|
-
user_ids?: (string[] & string[] & { [
|
|
14193
|
-
usernames?: (string[] & string[] & { [
|
|
14194
|
-
} & { [
|
|
14272
|
+
user_ids?: (string[] & string[] & { [K_444 in Exclude<keyof I_1["status_follow"]["user_ids"], keyof string[]>]: never; }) | undefined;
|
|
14273
|
+
usernames?: (string[] & string[] & { [K_445 in Exclude<keyof I_1["status_follow"]["usernames"], keyof string[]>]: never; }) | undefined;
|
|
14274
|
+
} & { [K_446 in Exclude<keyof I_1["status_follow"], keyof StatusFollow>]: never; }) | undefined;
|
|
14195
14275
|
status_presence_event?: ({
|
|
14196
14276
|
joins?: {
|
|
14197
14277
|
user_id?: string | undefined;
|
|
@@ -14236,7 +14316,7 @@ export declare const Envelope: {
|
|
|
14236
14316
|
status?: string | undefined;
|
|
14237
14317
|
is_mobile?: boolean | undefined;
|
|
14238
14318
|
metadata?: string | undefined;
|
|
14239
|
-
} & { [
|
|
14319
|
+
} & { [K_447 in Exclude<keyof I_1["status_presence_event"]["joins"][number], keyof UserPresence>]: never; })[] & { [K_448 in Exclude<keyof I_1["status_presence_event"]["joins"], keyof {
|
|
14240
14320
|
user_id?: string | undefined;
|
|
14241
14321
|
session_id?: string | undefined;
|
|
14242
14322
|
username?: string | undefined;
|
|
@@ -14269,7 +14349,7 @@ export declare const Envelope: {
|
|
|
14269
14349
|
status?: string | undefined;
|
|
14270
14350
|
is_mobile?: boolean | undefined;
|
|
14271
14351
|
metadata?: string | undefined;
|
|
14272
|
-
} & { [
|
|
14352
|
+
} & { [K_449 in Exclude<keyof I_1["status_presence_event"]["leaves"][number], keyof UserPresence>]: never; })[] & { [K_450 in Exclude<keyof I_1["status_presence_event"]["leaves"], keyof {
|
|
14273
14353
|
user_id?: string | undefined;
|
|
14274
14354
|
session_id?: string | undefined;
|
|
14275
14355
|
username?: string | undefined;
|
|
@@ -14278,17 +14358,17 @@ export declare const Envelope: {
|
|
|
14278
14358
|
is_mobile?: boolean | undefined;
|
|
14279
14359
|
metadata?: string | undefined;
|
|
14280
14360
|
}[]>]: never; }) | undefined;
|
|
14281
|
-
} & { [
|
|
14361
|
+
} & { [K_451 in Exclude<keyof I_1["status_presence_event"], keyof StatusPresenceEvent>]: never; }) | undefined;
|
|
14282
14362
|
status_unfollow?: ({
|
|
14283
14363
|
user_ids?: string[] | undefined;
|
|
14284
14364
|
} & {
|
|
14285
|
-
user_ids?: (string[] & string[] & { [
|
|
14286
|
-
} & { [
|
|
14365
|
+
user_ids?: (string[] & string[] & { [K_452 in Exclude<keyof I_1["status_unfollow"]["user_ids"], keyof string[]>]: never; }) | undefined;
|
|
14366
|
+
} & { [K_453 in Exclude<keyof I_1["status_unfollow"], "user_ids">]: never; }) | undefined;
|
|
14287
14367
|
status_update?: ({
|
|
14288
14368
|
status?: string | undefined;
|
|
14289
14369
|
} & {
|
|
14290
14370
|
status?: string | undefined;
|
|
14291
|
-
} & { [
|
|
14371
|
+
} & { [K_454 in Exclude<keyof I_1["status_update"], "status">]: never; }) | undefined;
|
|
14292
14372
|
stream_data?: ({
|
|
14293
14373
|
stream?: {
|
|
14294
14374
|
mode?: number | undefined;
|
|
@@ -14318,7 +14398,7 @@ export declare const Envelope: {
|
|
|
14318
14398
|
channel_id?: string | undefined;
|
|
14319
14399
|
clan_id?: string | undefined;
|
|
14320
14400
|
label?: string | undefined;
|
|
14321
|
-
} & { [
|
|
14401
|
+
} & { [K_455 in Exclude<keyof I_1["stream_data"]["stream"], keyof Stream>]: never; }) | undefined;
|
|
14322
14402
|
sender?: ({
|
|
14323
14403
|
user_id?: string | undefined;
|
|
14324
14404
|
session_id?: string | undefined;
|
|
@@ -14335,10 +14415,10 @@ export declare const Envelope: {
|
|
|
14335
14415
|
status?: string | undefined;
|
|
14336
14416
|
is_mobile?: boolean | undefined;
|
|
14337
14417
|
metadata?: string | undefined;
|
|
14338
|
-
} & { [
|
|
14418
|
+
} & { [K_456 in Exclude<keyof I_1["stream_data"]["sender"], keyof UserPresence>]: never; }) | undefined;
|
|
14339
14419
|
data?: string | undefined;
|
|
14340
14420
|
reliable?: boolean | undefined;
|
|
14341
|
-
} & { [
|
|
14421
|
+
} & { [K_457 in Exclude<keyof I_1["stream_data"], keyof StreamData>]: never; }) | undefined;
|
|
14342
14422
|
stream_presence_event?: ({
|
|
14343
14423
|
stream?: {
|
|
14344
14424
|
mode?: number | undefined;
|
|
@@ -14375,7 +14455,7 @@ export declare const Envelope: {
|
|
|
14375
14455
|
channel_id?: string | undefined;
|
|
14376
14456
|
clan_id?: string | undefined;
|
|
14377
14457
|
label?: string | undefined;
|
|
14378
|
-
} & { [
|
|
14458
|
+
} & { [K_458 in Exclude<keyof I_1["stream_presence_event"]["stream"], keyof Stream>]: never; }) | undefined;
|
|
14379
14459
|
joins?: ({
|
|
14380
14460
|
user_id?: string | undefined;
|
|
14381
14461
|
session_id?: string | undefined;
|
|
@@ -14400,7 +14480,7 @@ export declare const Envelope: {
|
|
|
14400
14480
|
status?: string | undefined;
|
|
14401
14481
|
is_mobile?: boolean | undefined;
|
|
14402
14482
|
metadata?: string | undefined;
|
|
14403
|
-
} & { [
|
|
14483
|
+
} & { [K_459 in Exclude<keyof I_1["stream_presence_event"]["joins"][number], keyof UserPresence>]: never; })[] & { [K_460 in Exclude<keyof I_1["stream_presence_event"]["joins"], keyof {
|
|
14404
14484
|
user_id?: string | undefined;
|
|
14405
14485
|
session_id?: string | undefined;
|
|
14406
14486
|
username?: string | undefined;
|
|
@@ -14433,7 +14513,7 @@ export declare const Envelope: {
|
|
|
14433
14513
|
status?: string | undefined;
|
|
14434
14514
|
is_mobile?: boolean | undefined;
|
|
14435
14515
|
metadata?: string | undefined;
|
|
14436
|
-
} & { [
|
|
14516
|
+
} & { [K_461 in Exclude<keyof I_1["stream_presence_event"]["leaves"][number], keyof UserPresence>]: never; })[] & { [K_462 in Exclude<keyof I_1["stream_presence_event"]["leaves"], keyof {
|
|
14437
14517
|
user_id?: string | undefined;
|
|
14438
14518
|
session_id?: string | undefined;
|
|
14439
14519
|
username?: string | undefined;
|
|
@@ -14442,9 +14522,9 @@ export declare const Envelope: {
|
|
|
14442
14522
|
is_mobile?: boolean | undefined;
|
|
14443
14523
|
metadata?: string | undefined;
|
|
14444
14524
|
}[]>]: never; }) | undefined;
|
|
14445
|
-
} & { [
|
|
14446
|
-
ping?: ({} & {} & { [
|
|
14447
|
-
pong?: ({} & {} & { [
|
|
14525
|
+
} & { [K_463 in Exclude<keyof I_1["stream_presence_event"], keyof StreamPresenceEvent>]: never; }) | undefined;
|
|
14526
|
+
ping?: ({} & {} & { [K_464 in Exclude<keyof I_1["ping"], never>]: never; }) | undefined;
|
|
14527
|
+
pong?: ({} & {} & { [K_465 in Exclude<keyof I_1["pong"], never>]: never; }) | undefined;
|
|
14448
14528
|
message_typing_event?: ({
|
|
14449
14529
|
clan_id?: string | undefined;
|
|
14450
14530
|
channel_id?: string | undefined;
|
|
@@ -14461,7 +14541,7 @@ export declare const Envelope: {
|
|
|
14461
14541
|
is_public?: boolean | undefined;
|
|
14462
14542
|
sender_username?: string | undefined;
|
|
14463
14543
|
sender_display_name?: string | undefined;
|
|
14464
|
-
} & { [
|
|
14544
|
+
} & { [K_466 in Exclude<keyof I_1["message_typing_event"], keyof MessageTypingEvent>]: never; }) | undefined;
|
|
14465
14545
|
last_seen_message_event?: ({
|
|
14466
14546
|
clan_id?: string | undefined;
|
|
14467
14547
|
channel_id?: string | undefined;
|
|
@@ -14476,7 +14556,7 @@ export declare const Envelope: {
|
|
|
14476
14556
|
mode?: number | undefined;
|
|
14477
14557
|
timestamp_seconds?: number | undefined;
|
|
14478
14558
|
badge_count?: number | undefined;
|
|
14479
|
-
} & { [
|
|
14559
|
+
} & { [K_467 in Exclude<keyof I_1["last_seen_message_event"], keyof LastSeenMessageEvent>]: never; }) | undefined;
|
|
14480
14560
|
message_reaction_event?: ({
|
|
14481
14561
|
id?: string | undefined;
|
|
14482
14562
|
emoji_id?: string | undefined;
|
|
@@ -14511,7 +14591,7 @@ export declare const Envelope: {
|
|
|
14511
14591
|
is_public?: boolean | undefined;
|
|
14512
14592
|
topic_id?: string | undefined;
|
|
14513
14593
|
emoji_recent_id?: string | undefined;
|
|
14514
|
-
} & { [
|
|
14594
|
+
} & { [K_468 in Exclude<keyof I_1["message_reaction_event"], keyof MessageReaction>]: never; }) | undefined;
|
|
14515
14595
|
voice_joined_event?: ({
|
|
14516
14596
|
clan_id?: string | undefined;
|
|
14517
14597
|
clan_name?: string | undefined;
|
|
@@ -14530,7 +14610,7 @@ export declare const Envelope: {
|
|
|
14530
14610
|
voice_channel_label?: string | undefined;
|
|
14531
14611
|
voice_channel_id?: string | undefined;
|
|
14532
14612
|
last_screenshot?: string | undefined;
|
|
14533
|
-
} & { [
|
|
14613
|
+
} & { [K_469 in Exclude<keyof I_1["voice_joined_event"], keyof VoiceJoinedEvent>]: never; }) | undefined;
|
|
14534
14614
|
voice_leaved_event?: ({
|
|
14535
14615
|
id?: string | undefined;
|
|
14536
14616
|
clan_id?: string | undefined;
|
|
@@ -14541,7 +14621,7 @@ export declare const Envelope: {
|
|
|
14541
14621
|
clan_id?: string | undefined;
|
|
14542
14622
|
voice_channel_id?: string | undefined;
|
|
14543
14623
|
voice_user_id?: string | undefined;
|
|
14544
|
-
} & { [
|
|
14624
|
+
} & { [K_470 in Exclude<keyof I_1["voice_leaved_event"], keyof VoiceLeavedEvent>]: never; }) | undefined;
|
|
14545
14625
|
voice_started_event?: ({
|
|
14546
14626
|
id?: string | undefined;
|
|
14547
14627
|
clan_id?: string | undefined;
|
|
@@ -14550,7 +14630,7 @@ export declare const Envelope: {
|
|
|
14550
14630
|
id?: string | undefined;
|
|
14551
14631
|
clan_id?: string | undefined;
|
|
14552
14632
|
voice_channel_id?: string | undefined;
|
|
14553
|
-
} & { [
|
|
14633
|
+
} & { [K_471 in Exclude<keyof I_1["voice_started_event"], keyof VoiceStartedEvent>]: never; }) | undefined;
|
|
14554
14634
|
voice_ended_event?: ({
|
|
14555
14635
|
id?: string | undefined;
|
|
14556
14636
|
clan_id?: string | undefined;
|
|
@@ -14559,7 +14639,7 @@ export declare const Envelope: {
|
|
|
14559
14639
|
id?: string | undefined;
|
|
14560
14640
|
clan_id?: string | undefined;
|
|
14561
14641
|
voice_channel_id?: string | undefined;
|
|
14562
|
-
} & { [
|
|
14642
|
+
} & { [K_472 in Exclude<keyof I_1["voice_ended_event"], keyof VoiceEndedEvent>]: never; }) | undefined;
|
|
14563
14643
|
channel_created_event?: ({
|
|
14564
14644
|
clan_id?: string | undefined;
|
|
14565
14645
|
category_id?: string | undefined;
|
|
@@ -14584,7 +14664,7 @@ export declare const Envelope: {
|
|
|
14584
14664
|
status?: number | undefined;
|
|
14585
14665
|
app_id?: string | undefined;
|
|
14586
14666
|
clan_name?: string | undefined;
|
|
14587
|
-
} & { [
|
|
14667
|
+
} & { [K_473 in Exclude<keyof I_1["channel_created_event"], keyof ChannelCreatedEvent>]: never; }) | undefined;
|
|
14588
14668
|
channel_deleted_event?: ({
|
|
14589
14669
|
clan_id?: string | undefined;
|
|
14590
14670
|
category_id?: string | undefined;
|
|
@@ -14597,7 +14677,7 @@ export declare const Envelope: {
|
|
|
14597
14677
|
parent_id?: string | undefined;
|
|
14598
14678
|
channel_id?: string | undefined;
|
|
14599
14679
|
deletor?: string | undefined;
|
|
14600
|
-
} & { [
|
|
14680
|
+
} & { [K_474 in Exclude<keyof I_1["channel_deleted_event"], keyof ChannelDeletedEvent>]: never; }) | undefined;
|
|
14601
14681
|
channel_updated_event?: ({
|
|
14602
14682
|
clan_id?: string | undefined;
|
|
14603
14683
|
category_id?: string | undefined;
|
|
@@ -14636,9 +14716,9 @@ export declare const Envelope: {
|
|
|
14636
14716
|
age_restricted?: number | undefined;
|
|
14637
14717
|
active?: number | undefined;
|
|
14638
14718
|
count_mess_unread?: number | undefined;
|
|
14639
|
-
user_ids?: (string[] & string[] & { [
|
|
14640
|
-
role_ids?: (string[] & string[] & { [
|
|
14641
|
-
} & { [
|
|
14719
|
+
user_ids?: (string[] & string[] & { [K_475 in Exclude<keyof I_1["channel_updated_event"]["user_ids"], keyof string[]>]: never; }) | undefined;
|
|
14720
|
+
role_ids?: (string[] & string[] & { [K_476 in Exclude<keyof I_1["channel_updated_event"]["role_ids"], keyof string[]>]: never; }) | undefined;
|
|
14721
|
+
} & { [K_477 in Exclude<keyof I_1["channel_updated_event"], keyof ChannelUpdatedEvent>]: never; }) | undefined;
|
|
14642
14722
|
last_pin_message_event?: ({
|
|
14643
14723
|
clan_id?: string | undefined;
|
|
14644
14724
|
channel_id?: string | undefined;
|
|
@@ -14669,7 +14749,7 @@ export declare const Envelope: {
|
|
|
14669
14749
|
message_content?: string | undefined;
|
|
14670
14750
|
message_attachment?: string | undefined;
|
|
14671
14751
|
message_created_time?: string | undefined;
|
|
14672
|
-
} & { [
|
|
14752
|
+
} & { [K_478 in Exclude<keyof I_1["last_pin_message_event"], keyof LastPinMessageEvent>]: never; }) | undefined;
|
|
14673
14753
|
custom_status_event?: ({
|
|
14674
14754
|
clan_id?: string | undefined;
|
|
14675
14755
|
user_id?: string | undefined;
|
|
@@ -14684,7 +14764,7 @@ export declare const Envelope: {
|
|
|
14684
14764
|
status?: string | undefined;
|
|
14685
14765
|
time_reset?: number | undefined;
|
|
14686
14766
|
no_clear?: boolean | undefined;
|
|
14687
|
-
} & { [
|
|
14767
|
+
} & { [K_479 in Exclude<keyof I_1["custom_status_event"], keyof CustomStatusEvent>]: never; }) | undefined;
|
|
14688
14768
|
user_channel_added_event?: ({
|
|
14689
14769
|
channel_desc?: {
|
|
14690
14770
|
clan_id?: string | undefined;
|
|
@@ -14854,8 +14934,8 @@ export declare const Envelope: {
|
|
|
14854
14934
|
creator_id?: string | undefined;
|
|
14855
14935
|
channel_label?: string | undefined;
|
|
14856
14936
|
channel_private?: number | undefined;
|
|
14857
|
-
channel_avatar?: (string[] & string[] & { [
|
|
14858
|
-
user_id?: (string[] & string[] & { [
|
|
14937
|
+
channel_avatar?: (string[] & string[] & { [K_480 in Exclude<keyof I_1["user_channel_added_event"]["channel_desc"]["channel_avatar"], keyof string[]>]: never; }) | undefined;
|
|
14938
|
+
user_id?: (string[] & string[] & { [K_481 in Exclude<keyof I_1["user_channel_added_event"]["channel_desc"]["user_id"], keyof string[]>]: never; }) | undefined;
|
|
14859
14939
|
last_sent_message?: ({
|
|
14860
14940
|
id?: string | undefined;
|
|
14861
14941
|
timestamp_seconds?: number | undefined;
|
|
@@ -14875,8 +14955,8 @@ export declare const Envelope: {
|
|
|
14875
14955
|
reference?: string | undefined;
|
|
14876
14956
|
mention?: string | undefined;
|
|
14877
14957
|
reaction?: string | undefined;
|
|
14878
|
-
repliers?: (string[] & string[] & { [
|
|
14879
|
-
} & { [
|
|
14958
|
+
repliers?: (string[] & string[] & { [K_482 in Exclude<keyof I_1["user_channel_added_event"]["channel_desc"]["last_sent_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
14959
|
+
} & { [K_483 in Exclude<keyof I_1["user_channel_added_event"]["channel_desc"]["last_sent_message"], keyof ChannelMessageHeader>]: never; }) | undefined;
|
|
14880
14960
|
last_seen_message?: ({
|
|
14881
14961
|
id?: string | undefined;
|
|
14882
14962
|
timestamp_seconds?: number | undefined;
|
|
@@ -14896,27 +14976,27 @@ export declare const Envelope: {
|
|
|
14896
14976
|
reference?: string | undefined;
|
|
14897
14977
|
mention?: string | undefined;
|
|
14898
14978
|
reaction?: string | undefined;
|
|
14899
|
-
repliers?: (string[] & string[] & { [
|
|
14900
|
-
} & { [
|
|
14901
|
-
is_online?: (boolean[] & boolean[] & { [
|
|
14979
|
+
repliers?: (string[] & string[] & { [K_484 in Exclude<keyof I_1["user_channel_added_event"]["channel_desc"]["last_seen_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
14980
|
+
} & { [K_485 in Exclude<keyof I_1["user_channel_added_event"]["channel_desc"]["last_seen_message"], keyof ChannelMessageHeader>]: never; }) | undefined;
|
|
14981
|
+
is_online?: (boolean[] & boolean[] & { [K_486 in Exclude<keyof I_1["user_channel_added_event"]["channel_desc"]["is_online"], keyof boolean[]>]: never; }) | undefined;
|
|
14902
14982
|
meeting_code?: string | undefined;
|
|
14903
14983
|
count_mess_unread?: number | undefined;
|
|
14904
14984
|
active?: number | undefined;
|
|
14905
14985
|
last_pin_message?: string | undefined;
|
|
14906
|
-
usernames?: (string[] & string[] & { [
|
|
14986
|
+
usernames?: (string[] & string[] & { [K_487 in Exclude<keyof I_1["user_channel_added_event"]["channel_desc"]["usernames"], keyof string[]>]: never; }) | undefined;
|
|
14907
14987
|
creator_name?: string | undefined;
|
|
14908
14988
|
create_time_seconds?: number | undefined;
|
|
14909
14989
|
update_time_seconds?: number | undefined;
|
|
14910
|
-
metadata?: (string[] & string[] & { [
|
|
14911
|
-
about_me?: (string[] & string[] & { [
|
|
14990
|
+
metadata?: (string[] & string[] & { [K_488 in Exclude<keyof I_1["user_channel_added_event"]["channel_desc"]["metadata"], keyof string[]>]: never; }) | undefined;
|
|
14991
|
+
about_me?: (string[] & string[] & { [K_489 in Exclude<keyof I_1["user_channel_added_event"]["channel_desc"]["about_me"], keyof string[]>]: never; }) | undefined;
|
|
14912
14992
|
clan_name?: string | undefined;
|
|
14913
14993
|
app_id?: string | undefined;
|
|
14914
14994
|
is_mute?: boolean | undefined;
|
|
14915
14995
|
age_restricted?: number | undefined;
|
|
14916
14996
|
topic?: string | undefined;
|
|
14917
14997
|
e2ee?: number | undefined;
|
|
14918
|
-
display_names?: (string[] & string[] & { [
|
|
14919
|
-
} & { [
|
|
14998
|
+
display_names?: (string[] & string[] & { [K_490 in Exclude<keyof I_1["user_channel_added_event"]["channel_desc"]["display_names"], keyof string[]>]: never; }) | undefined;
|
|
14999
|
+
} & { [K_491 in Exclude<keyof I_1["user_channel_added_event"]["channel_desc"], keyof ChannelDescription1>]: never; }) | undefined;
|
|
14920
15000
|
users?: ({
|
|
14921
15001
|
user_id?: string | undefined;
|
|
14922
15002
|
username?: string | undefined;
|
|
@@ -14983,7 +15063,7 @@ export declare const Envelope: {
|
|
|
14983
15063
|
device_id?: string | undefined;
|
|
14984
15064
|
token_id?: string | undefined;
|
|
14985
15065
|
platform?: string | undefined;
|
|
14986
|
-
} & { [
|
|
15066
|
+
} & { [K_492 in Exclude<keyof I_1["user_channel_added_event"]["users"][number]["fcm_tokens"][number], keyof FCMTokens>]: never; })[] & { [K_493 in Exclude<keyof I_1["user_channel_added_event"]["users"][number]["fcm_tokens"], keyof {
|
|
14987
15067
|
device_id?: string | undefined;
|
|
14988
15068
|
token_id?: string | undefined;
|
|
14989
15069
|
platform?: string | undefined;
|
|
@@ -14991,14 +15071,14 @@ export declare const Envelope: {
|
|
|
14991
15071
|
online?: boolean | undefined;
|
|
14992
15072
|
metadata?: string | undefined;
|
|
14993
15073
|
is_disabled?: boolean | undefined;
|
|
14994
|
-
joined_clans?: (string[] & string[] & { [
|
|
15074
|
+
joined_clans?: (string[] & string[] & { [K_494 in Exclude<keyof I_1["user_channel_added_event"]["users"][number]["joined_clans"], keyof string[]>]: never; }) | undefined;
|
|
14995
15075
|
pubkey?: string | undefined;
|
|
14996
15076
|
mezon_id?: string | undefined;
|
|
14997
15077
|
app_token?: string | undefined;
|
|
14998
15078
|
app_url?: string | undefined;
|
|
14999
15079
|
is_bot?: boolean | undefined;
|
|
15000
15080
|
voip_token?: string | undefined;
|
|
15001
|
-
} & { [
|
|
15081
|
+
} & { [K_495 in Exclude<keyof I_1["user_channel_added_event"]["users"][number], keyof UserProfileRedis>]: never; })[] & { [K_496 in Exclude<keyof I_1["user_channel_added_event"]["users"], keyof {
|
|
15002
15082
|
user_id?: string | undefined;
|
|
15003
15083
|
username?: string | undefined;
|
|
15004
15084
|
avatar?: string | undefined;
|
|
@@ -15067,7 +15147,7 @@ export declare const Envelope: {
|
|
|
15067
15147
|
device_id?: string | undefined;
|
|
15068
15148
|
token_id?: string | undefined;
|
|
15069
15149
|
platform?: string | undefined;
|
|
15070
|
-
} & { [
|
|
15150
|
+
} & { [K_497 in Exclude<keyof I_1["user_channel_added_event"]["caller"]["fcm_tokens"][number], keyof FCMTokens>]: never; })[] & { [K_498 in Exclude<keyof I_1["user_channel_added_event"]["caller"]["fcm_tokens"], keyof {
|
|
15071
15151
|
device_id?: string | undefined;
|
|
15072
15152
|
token_id?: string | undefined;
|
|
15073
15153
|
platform?: string | undefined;
|
|
@@ -15075,17 +15155,17 @@ export declare const Envelope: {
|
|
|
15075
15155
|
online?: boolean | undefined;
|
|
15076
15156
|
metadata?: string | undefined;
|
|
15077
15157
|
is_disabled?: boolean | undefined;
|
|
15078
|
-
joined_clans?: (string[] & string[] & { [
|
|
15158
|
+
joined_clans?: (string[] & string[] & { [K_499 in Exclude<keyof I_1["user_channel_added_event"]["caller"]["joined_clans"], keyof string[]>]: never; }) | undefined;
|
|
15079
15159
|
pubkey?: string | undefined;
|
|
15080
15160
|
mezon_id?: string | undefined;
|
|
15081
15161
|
app_token?: string | undefined;
|
|
15082
15162
|
app_url?: string | undefined;
|
|
15083
15163
|
is_bot?: boolean | undefined;
|
|
15084
15164
|
voip_token?: string | undefined;
|
|
15085
|
-
} & { [
|
|
15165
|
+
} & { [K_500 in Exclude<keyof I_1["user_channel_added_event"]["caller"], keyof UserProfileRedis>]: never; }) | undefined;
|
|
15086
15166
|
create_time_second?: number | undefined;
|
|
15087
15167
|
active?: number | undefined;
|
|
15088
|
-
} & { [
|
|
15168
|
+
} & { [K_501 in Exclude<keyof I_1["user_channel_added_event"], keyof UserChannelAdded>]: never; }) | undefined;
|
|
15089
15169
|
user_channel_removed_event?: ({
|
|
15090
15170
|
channel_id?: string | undefined;
|
|
15091
15171
|
user_ids?: string[] | undefined;
|
|
@@ -15094,18 +15174,18 @@ export declare const Envelope: {
|
|
|
15094
15174
|
badge_counts?: number[] | undefined;
|
|
15095
15175
|
} & {
|
|
15096
15176
|
channel_id?: string | undefined;
|
|
15097
|
-
user_ids?: (string[] & string[] & { [
|
|
15177
|
+
user_ids?: (string[] & string[] & { [K_502 in Exclude<keyof I_1["user_channel_removed_event"]["user_ids"], keyof string[]>]: never; }) | undefined;
|
|
15098
15178
|
channel_type?: number | undefined;
|
|
15099
15179
|
clan_id?: string | undefined;
|
|
15100
|
-
badge_counts?: (number[] & number[] & { [
|
|
15101
|
-
} & { [
|
|
15180
|
+
badge_counts?: (number[] & number[] & { [K_503 in Exclude<keyof I_1["user_channel_removed_event"]["badge_counts"], keyof number[]>]: never; }) | undefined;
|
|
15181
|
+
} & { [K_504 in Exclude<keyof I_1["user_channel_removed_event"], keyof UserChannelRemoved>]: never; }) | undefined;
|
|
15102
15182
|
user_clan_removed_event?: ({
|
|
15103
15183
|
clan_id?: string | undefined;
|
|
15104
15184
|
user_ids?: string[] | undefined;
|
|
15105
15185
|
} & {
|
|
15106
15186
|
clan_id?: string | undefined;
|
|
15107
|
-
user_ids?: (string[] & string[] & { [
|
|
15108
|
-
} & { [
|
|
15187
|
+
user_ids?: (string[] & string[] & { [K_505 in Exclude<keyof I_1["user_clan_removed_event"]["user_ids"], keyof string[]>]: never; }) | undefined;
|
|
15188
|
+
} & { [K_506 in Exclude<keyof I_1["user_clan_removed_event"], keyof UserClanRemoved>]: never; }) | undefined;
|
|
15109
15189
|
clan_updated_event?: ({
|
|
15110
15190
|
clan_id?: string | undefined;
|
|
15111
15191
|
clan_name?: string | undefined;
|
|
@@ -15115,6 +15195,10 @@ export declare const Envelope: {
|
|
|
15115
15195
|
is_onboarding?: boolean | undefined;
|
|
15116
15196
|
welcome_channel_id?: string | undefined;
|
|
15117
15197
|
onboarding_banner?: string | undefined;
|
|
15198
|
+
community_banner?: string | undefined;
|
|
15199
|
+
is_community?: boolean | undefined;
|
|
15200
|
+
about?: string | undefined;
|
|
15201
|
+
description?: string | undefined;
|
|
15118
15202
|
} & {
|
|
15119
15203
|
clan_id?: string | undefined;
|
|
15120
15204
|
clan_name?: string | undefined;
|
|
@@ -15124,7 +15208,11 @@ export declare const Envelope: {
|
|
|
15124
15208
|
is_onboarding?: boolean | undefined;
|
|
15125
15209
|
welcome_channel_id?: string | undefined;
|
|
15126
15210
|
onboarding_banner?: string | undefined;
|
|
15127
|
-
|
|
15211
|
+
community_banner?: string | undefined;
|
|
15212
|
+
is_community?: boolean | undefined;
|
|
15213
|
+
about?: string | undefined;
|
|
15214
|
+
description?: string | undefined;
|
|
15215
|
+
} & { [K_507 in Exclude<keyof I_1["clan_updated_event"], keyof ClanUpdatedEvent>]: never; }) | undefined;
|
|
15128
15216
|
clan_profile_updated_event?: ({
|
|
15129
15217
|
user_id?: string | undefined;
|
|
15130
15218
|
clan_nick?: string | undefined;
|
|
@@ -15135,7 +15223,7 @@ export declare const Envelope: {
|
|
|
15135
15223
|
clan_nick?: string | undefined;
|
|
15136
15224
|
clan_avatar?: string | undefined;
|
|
15137
15225
|
clan_id?: string | undefined;
|
|
15138
|
-
} & { [
|
|
15226
|
+
} & { [K_508 in Exclude<keyof I_1["clan_profile_updated_event"], keyof ClanProfileUpdatedEvent>]: never; }) | undefined;
|
|
15139
15227
|
check_name_existed_event?: ({
|
|
15140
15228
|
name?: string | undefined;
|
|
15141
15229
|
condition_id?: string | undefined;
|
|
@@ -15146,7 +15234,7 @@ export declare const Envelope: {
|
|
|
15146
15234
|
condition_id?: string | undefined;
|
|
15147
15235
|
exist?: boolean | undefined;
|
|
15148
15236
|
type?: number | undefined;
|
|
15149
|
-
} & { [
|
|
15237
|
+
} & { [K_509 in Exclude<keyof I_1["check_name_existed_event"], keyof CheckNameExistedEvent>]: never; }) | undefined;
|
|
15150
15238
|
user_profile_updated_event?: ({
|
|
15151
15239
|
user_id?: string | undefined;
|
|
15152
15240
|
display_name?: string | undefined;
|
|
@@ -15163,7 +15251,7 @@ export declare const Envelope: {
|
|
|
15163
15251
|
channel_id?: string | undefined;
|
|
15164
15252
|
clan_id?: string | undefined;
|
|
15165
15253
|
encrypt_private_key?: string | undefined;
|
|
15166
|
-
} & { [
|
|
15254
|
+
} & { [K_510 in Exclude<keyof I_1["user_profile_updated_event"], keyof UserProfileUpdatedEvent>]: never; }) | undefined;
|
|
15167
15255
|
add_clan_user_event?: ({
|
|
15168
15256
|
clan_id?: string | undefined;
|
|
15169
15257
|
user?: {
|
|
@@ -15236,7 +15324,7 @@ export declare const Envelope: {
|
|
|
15236
15324
|
device_id?: string | undefined;
|
|
15237
15325
|
token_id?: string | undefined;
|
|
15238
15326
|
platform?: string | undefined;
|
|
15239
|
-
} & { [
|
|
15327
|
+
} & { [K_511 in Exclude<keyof I_1["add_clan_user_event"]["user"]["fcm_tokens"][number], keyof FCMTokens>]: never; })[] & { [K_512 in Exclude<keyof I_1["add_clan_user_event"]["user"]["fcm_tokens"], keyof {
|
|
15240
15328
|
device_id?: string | undefined;
|
|
15241
15329
|
token_id?: string | undefined;
|
|
15242
15330
|
platform?: string | undefined;
|
|
@@ -15244,16 +15332,16 @@ export declare const Envelope: {
|
|
|
15244
15332
|
online?: boolean | undefined;
|
|
15245
15333
|
metadata?: string | undefined;
|
|
15246
15334
|
is_disabled?: boolean | undefined;
|
|
15247
|
-
joined_clans?: (string[] & string[] & { [
|
|
15335
|
+
joined_clans?: (string[] & string[] & { [K_513 in Exclude<keyof I_1["add_clan_user_event"]["user"]["joined_clans"], keyof string[]>]: never; }) | undefined;
|
|
15248
15336
|
pubkey?: string | undefined;
|
|
15249
15337
|
mezon_id?: string | undefined;
|
|
15250
15338
|
app_token?: string | undefined;
|
|
15251
15339
|
app_url?: string | undefined;
|
|
15252
15340
|
is_bot?: boolean | undefined;
|
|
15253
15341
|
voip_token?: string | undefined;
|
|
15254
|
-
} & { [
|
|
15342
|
+
} & { [K_514 in Exclude<keyof I_1["add_clan_user_event"]["user"], keyof UserProfileRedis>]: never; }) | undefined;
|
|
15255
15343
|
invitor?: string | undefined;
|
|
15256
|
-
} & { [
|
|
15344
|
+
} & { [K_515 in Exclude<keyof I_1["add_clan_user_event"], keyof AddClanUserEvent>]: never; }) | undefined;
|
|
15257
15345
|
clan_event_created?: ({
|
|
15258
15346
|
title?: string | undefined;
|
|
15259
15347
|
logo?: string | undefined;
|
|
@@ -15307,8 +15395,8 @@ export declare const Envelope: {
|
|
|
15307
15395
|
external_link?: string | undefined;
|
|
15308
15396
|
creator_id?: string | undefined;
|
|
15309
15397
|
event_id?: string | undefined;
|
|
15310
|
-
} & { [
|
|
15311
|
-
} & { [
|
|
15398
|
+
} & { [K_516 in Exclude<keyof I_1["clan_event_created"]["meet_room"], keyof import("../api/api").GenerateMezonMeetResponse>]: never; }) | undefined;
|
|
15399
|
+
} & { [K_517 in Exclude<keyof I_1["clan_event_created"], keyof CreateEventRequest>]: never; }) | undefined;
|
|
15312
15400
|
role_assign_event?: ({
|
|
15313
15401
|
ClanId?: string | undefined;
|
|
15314
15402
|
role_id?: string | undefined;
|
|
@@ -15317,16 +15405,16 @@ export declare const Envelope: {
|
|
|
15317
15405
|
} & {
|
|
15318
15406
|
ClanId?: string | undefined;
|
|
15319
15407
|
role_id?: string | undefined;
|
|
15320
|
-
user_ids_assigned?: (string[] & string[] & { [
|
|
15321
|
-
user_ids_removed?: (string[] & string[] & { [
|
|
15322
|
-
} & { [
|
|
15408
|
+
user_ids_assigned?: (string[] & string[] & { [K_518 in Exclude<keyof I_1["role_assign_event"]["user_ids_assigned"], keyof string[]>]: never; }) | undefined;
|
|
15409
|
+
user_ids_removed?: (string[] & string[] & { [K_519 in Exclude<keyof I_1["role_assign_event"]["user_ids_removed"], keyof string[]>]: never; }) | undefined;
|
|
15410
|
+
} & { [K_520 in Exclude<keyof I_1["role_assign_event"], keyof RoleAssignedEvent>]: never; }) | undefined;
|
|
15323
15411
|
clan_deleted_event?: ({
|
|
15324
15412
|
clan_id?: string | undefined;
|
|
15325
15413
|
deletor?: string | undefined;
|
|
15326
15414
|
} & {
|
|
15327
15415
|
clan_id?: string | undefined;
|
|
15328
15416
|
deletor?: string | undefined;
|
|
15329
|
-
} & { [
|
|
15417
|
+
} & { [K_521 in Exclude<keyof I_1["clan_deleted_event"], keyof ClanDeletedEvent>]: never; }) | undefined;
|
|
15330
15418
|
give_coffee_event?: ({
|
|
15331
15419
|
sender_id?: string | undefined;
|
|
15332
15420
|
receiver_id?: string | undefined;
|
|
@@ -15341,7 +15429,7 @@ export declare const Envelope: {
|
|
|
15341
15429
|
message_ref_id?: string | undefined;
|
|
15342
15430
|
channel_id?: string | undefined;
|
|
15343
15431
|
clan_id?: string | undefined;
|
|
15344
|
-
} & { [
|
|
15432
|
+
} & { [K_522 in Exclude<keyof I_1["give_coffee_event"], keyof GiveCoffeeEvent>]: never; }) | undefined;
|
|
15345
15433
|
sticker_create_event?: ({
|
|
15346
15434
|
clan_id?: string | undefined;
|
|
15347
15435
|
source?: string | undefined;
|
|
@@ -15360,7 +15448,7 @@ export declare const Envelope: {
|
|
|
15360
15448
|
sticker_id?: string | undefined;
|
|
15361
15449
|
logo?: string | undefined;
|
|
15362
15450
|
clan_name?: string | undefined;
|
|
15363
|
-
} & { [
|
|
15451
|
+
} & { [K_523 in Exclude<keyof I_1["sticker_create_event"], keyof StickerCreateEvent>]: never; }) | undefined;
|
|
15364
15452
|
sticker_update_event?: ({
|
|
15365
15453
|
shortname?: string | undefined;
|
|
15366
15454
|
sticker_id?: string | undefined;
|
|
@@ -15369,14 +15457,14 @@ export declare const Envelope: {
|
|
|
15369
15457
|
shortname?: string | undefined;
|
|
15370
15458
|
sticker_id?: string | undefined;
|
|
15371
15459
|
user_id?: string | undefined;
|
|
15372
|
-
} & { [
|
|
15460
|
+
} & { [K_524 in Exclude<keyof I_1["sticker_update_event"], keyof StickerUpdateEvent>]: never; }) | undefined;
|
|
15373
15461
|
sticker_delete_event?: ({
|
|
15374
15462
|
sticker_id?: string | undefined;
|
|
15375
15463
|
user_id?: string | undefined;
|
|
15376
15464
|
} & {
|
|
15377
15465
|
sticker_id?: string | undefined;
|
|
15378
15466
|
user_id?: string | undefined;
|
|
15379
|
-
} & { [
|
|
15467
|
+
} & { [K_525 in Exclude<keyof I_1["sticker_delete_event"], keyof StickerDeleteEvent>]: never; }) | undefined;
|
|
15380
15468
|
role_event?: ({
|
|
15381
15469
|
role?: {
|
|
15382
15470
|
id?: string | undefined;
|
|
@@ -15514,7 +15602,7 @@ export declare const Envelope: {
|
|
|
15514
15602
|
lang_tag?: string | undefined;
|
|
15515
15603
|
location?: string | undefined;
|
|
15516
15604
|
online?: boolean | undefined;
|
|
15517
|
-
} & { [
|
|
15605
|
+
} & { [K_526 in Exclude<keyof I_1["role_event"]["role"]["role_user_list"]["role_users"][number], keyof import("../api/api").RoleUserList_RoleUser>]: never; })[] & { [K_527 in Exclude<keyof I_1["role_event"]["role"]["role_user_list"]["role_users"], keyof {
|
|
15518
15606
|
id?: string | undefined;
|
|
15519
15607
|
username?: string | undefined;
|
|
15520
15608
|
display_name?: string | undefined;
|
|
@@ -15524,7 +15612,7 @@ export declare const Envelope: {
|
|
|
15524
15612
|
online?: boolean | undefined;
|
|
15525
15613
|
}[]>]: never; }) | undefined;
|
|
15526
15614
|
cursor?: string | undefined;
|
|
15527
|
-
} & { [
|
|
15615
|
+
} & { [K_528 in Exclude<keyof I_1["role_event"]["role"]["role_user_list"], keyof RoleUserList>]: never; }) | undefined;
|
|
15528
15616
|
permission_list?: ({
|
|
15529
15617
|
permissions?: {
|
|
15530
15618
|
id?: string | undefined;
|
|
@@ -15561,7 +15649,7 @@ export declare const Envelope: {
|
|
|
15561
15649
|
active?: number | undefined;
|
|
15562
15650
|
scope?: number | undefined;
|
|
15563
15651
|
level?: number | undefined;
|
|
15564
|
-
} & { [
|
|
15652
|
+
} & { [K_529 in Exclude<keyof I_1["role_event"]["role"]["permission_list"]["permissions"][number], keyof import("../api/api").Permission>]: never; })[] & { [K_530 in Exclude<keyof I_1["role_event"]["role"]["permission_list"]["permissions"], keyof {
|
|
15565
15653
|
id?: string | undefined;
|
|
15566
15654
|
title?: string | undefined;
|
|
15567
15655
|
slug?: string | undefined;
|
|
@@ -15571,19 +15659,19 @@ export declare const Envelope: {
|
|
|
15571
15659
|
level?: number | undefined;
|
|
15572
15660
|
}[]>]: never; }) | undefined;
|
|
15573
15661
|
max_level_permission?: number | undefined;
|
|
15574
|
-
} & { [
|
|
15662
|
+
} & { [K_531 in Exclude<keyof I_1["role_event"]["role"]["permission_list"], keyof PermissionList>]: never; }) | undefined;
|
|
15575
15663
|
role_channel_active?: number | undefined;
|
|
15576
|
-
channel_ids?: (string[] & string[] & { [
|
|
15664
|
+
channel_ids?: (string[] & string[] & { [K_532 in Exclude<keyof I_1["role_event"]["role"]["channel_ids"], keyof string[]>]: never; }) | undefined;
|
|
15577
15665
|
max_level_permission?: number | undefined;
|
|
15578
15666
|
order_role?: number | undefined;
|
|
15579
|
-
} & { [
|
|
15667
|
+
} & { [K_533 in Exclude<keyof I_1["role_event"]["role"], keyof Role>]: never; }) | undefined;
|
|
15580
15668
|
status?: number | undefined;
|
|
15581
15669
|
user_id?: string | undefined;
|
|
15582
|
-
user_add_ids?: (string[] & string[] & { [
|
|
15583
|
-
user_remove_ids?: (string[] & string[] & { [
|
|
15584
|
-
active_permission_ids?: (string[] & string[] & { [
|
|
15585
|
-
remove_permission_ids?: (string[] & string[] & { [
|
|
15586
|
-
} & { [
|
|
15670
|
+
user_add_ids?: (string[] & string[] & { [K_534 in Exclude<keyof I_1["role_event"]["user_add_ids"], keyof string[]>]: never; }) | undefined;
|
|
15671
|
+
user_remove_ids?: (string[] & string[] & { [K_535 in Exclude<keyof I_1["role_event"]["user_remove_ids"], keyof string[]>]: never; }) | undefined;
|
|
15672
|
+
active_permission_ids?: (string[] & string[] & { [K_536 in Exclude<keyof I_1["role_event"]["active_permission_ids"], keyof string[]>]: never; }) | undefined;
|
|
15673
|
+
remove_permission_ids?: (string[] & string[] & { [K_537 in Exclude<keyof I_1["role_event"]["remove_permission_ids"], keyof string[]>]: never; }) | undefined;
|
|
15674
|
+
} & { [K_538 in Exclude<keyof I_1["role_event"], keyof RoleEvent>]: never; }) | undefined;
|
|
15587
15675
|
event_emoji?: ({
|
|
15588
15676
|
id?: string | undefined;
|
|
15589
15677
|
clan_id?: string | undefined;
|
|
@@ -15606,7 +15694,7 @@ export declare const Envelope: {
|
|
|
15606
15694
|
logo?: string | undefined;
|
|
15607
15695
|
clan_name?: string | undefined;
|
|
15608
15696
|
is_for_sale?: boolean | undefined;
|
|
15609
|
-
} & { [
|
|
15697
|
+
} & { [K_539 in Exclude<keyof I_1["event_emoji"], keyof EventEmoji>]: never; }) | undefined;
|
|
15610
15698
|
streaming_joined_event?: ({
|
|
15611
15699
|
clan_id?: string | undefined;
|
|
15612
15700
|
clan_name?: string | undefined;
|
|
@@ -15623,7 +15711,7 @@ export declare const Envelope: {
|
|
|
15623
15711
|
user_id?: string | undefined;
|
|
15624
15712
|
streaming_channel_label?: string | undefined;
|
|
15625
15713
|
streaming_channel_id?: string | undefined;
|
|
15626
|
-
} & { [
|
|
15714
|
+
} & { [K_540 in Exclude<keyof I_1["streaming_joined_event"], keyof StreamingJoinedEvent>]: never; }) | undefined;
|
|
15627
15715
|
streaming_leaved_event?: ({
|
|
15628
15716
|
id?: string | undefined;
|
|
15629
15717
|
clan_id?: string | undefined;
|
|
@@ -15634,7 +15722,7 @@ export declare const Envelope: {
|
|
|
15634
15722
|
clan_id?: string | undefined;
|
|
15635
15723
|
streaming_channel_id?: string | undefined;
|
|
15636
15724
|
streaming_user_id?: string | undefined;
|
|
15637
|
-
} & { [
|
|
15725
|
+
} & { [K_541 in Exclude<keyof I_1["streaming_leaved_event"], keyof StreamingLeavedEvent>]: never; }) | undefined;
|
|
15638
15726
|
streaming_started_event?: ({
|
|
15639
15727
|
clan_id?: string | undefined;
|
|
15640
15728
|
channel_id?: string | undefined;
|
|
@@ -15645,14 +15733,14 @@ export declare const Envelope: {
|
|
|
15645
15733
|
channel_id?: string | undefined;
|
|
15646
15734
|
streaming_url?: string | undefined;
|
|
15647
15735
|
is_streaming?: boolean | undefined;
|
|
15648
|
-
} & { [
|
|
15736
|
+
} & { [K_542 in Exclude<keyof I_1["streaming_started_event"], keyof StreamingStartedEvent>]: never; }) | undefined;
|
|
15649
15737
|
streaming_ended_event?: ({
|
|
15650
15738
|
clan_id?: string | undefined;
|
|
15651
15739
|
channel_id?: string | undefined;
|
|
15652
15740
|
} & {
|
|
15653
15741
|
clan_id?: string | undefined;
|
|
15654
15742
|
channel_id?: string | undefined;
|
|
15655
|
-
} & { [
|
|
15743
|
+
} & { [K_543 in Exclude<keyof I_1["streaming_ended_event"], keyof StreamingEndedEvent>]: never; }) | undefined;
|
|
15656
15744
|
permission_set_event?: ({
|
|
15657
15745
|
caller?: string | undefined;
|
|
15658
15746
|
role_id?: string | undefined;
|
|
@@ -15680,12 +15768,12 @@ export declare const Envelope: {
|
|
|
15680
15768
|
permission_id?: string | undefined;
|
|
15681
15769
|
slug?: string | undefined;
|
|
15682
15770
|
type?: number | undefined;
|
|
15683
|
-
} & { [
|
|
15771
|
+
} & { [K_544 in Exclude<keyof I_1["permission_set_event"]["permission_updates"][number], keyof PermissionUpdate>]: never; })[] & { [K_545 in Exclude<keyof I_1["permission_set_event"]["permission_updates"], keyof {
|
|
15684
15772
|
permission_id?: string | undefined;
|
|
15685
15773
|
slug?: string | undefined;
|
|
15686
15774
|
type?: number | undefined;
|
|
15687
15775
|
}[]>]: never; }) | undefined;
|
|
15688
|
-
} & { [
|
|
15776
|
+
} & { [K_546 in Exclude<keyof I_1["permission_set_event"], keyof PermissionSetEvent>]: never; }) | undefined;
|
|
15689
15777
|
permission_changed_event?: ({
|
|
15690
15778
|
user_id?: string | undefined;
|
|
15691
15779
|
channel_id?: string | undefined;
|
|
@@ -15719,7 +15807,7 @@ export declare const Envelope: {
|
|
|
15719
15807
|
permission_id?: string | undefined;
|
|
15720
15808
|
slug?: string | undefined;
|
|
15721
15809
|
type?: number | undefined;
|
|
15722
|
-
} & { [
|
|
15810
|
+
} & { [K_547 in Exclude<keyof I_1["permission_changed_event"]["add_permissions"][number], keyof PermissionUpdate>]: never; })[] & { [K_548 in Exclude<keyof I_1["permission_changed_event"]["add_permissions"], keyof {
|
|
15723
15811
|
permission_id?: string | undefined;
|
|
15724
15812
|
slug?: string | undefined;
|
|
15725
15813
|
type?: number | undefined;
|
|
@@ -15736,7 +15824,7 @@ export declare const Envelope: {
|
|
|
15736
15824
|
permission_id?: string | undefined;
|
|
15737
15825
|
slug?: string | undefined;
|
|
15738
15826
|
type?: number | undefined;
|
|
15739
|
-
} & { [
|
|
15827
|
+
} & { [K_549 in Exclude<keyof I_1["permission_changed_event"]["remove_permissions"][number], keyof PermissionUpdate>]: never; })[] & { [K_550 in Exclude<keyof I_1["permission_changed_event"]["remove_permissions"], keyof {
|
|
15740
15828
|
permission_id?: string | undefined;
|
|
15741
15829
|
slug?: string | undefined;
|
|
15742
15830
|
type?: number | undefined;
|
|
@@ -15753,12 +15841,12 @@ export declare const Envelope: {
|
|
|
15753
15841
|
permission_id?: string | undefined;
|
|
15754
15842
|
slug?: string | undefined;
|
|
15755
15843
|
type?: number | undefined;
|
|
15756
|
-
} & { [
|
|
15844
|
+
} & { [K_551 in Exclude<keyof I_1["permission_changed_event"]["default_permissions"][number], keyof PermissionUpdate>]: never; })[] & { [K_552 in Exclude<keyof I_1["permission_changed_event"]["default_permissions"], keyof {
|
|
15757
15845
|
permission_id?: string | undefined;
|
|
15758
15846
|
slug?: string | undefined;
|
|
15759
15847
|
type?: number | undefined;
|
|
15760
15848
|
}[]>]: never; }) | undefined;
|
|
15761
|
-
} & { [
|
|
15849
|
+
} & { [K_553 in Exclude<keyof I_1["permission_changed_event"], keyof PermissionChangedEvent>]: never; }) | undefined;
|
|
15762
15850
|
token_sent_event?: ({
|
|
15763
15851
|
sender_id?: string | undefined;
|
|
15764
15852
|
sender_name?: string | undefined;
|
|
@@ -15775,7 +15863,7 @@ export declare const Envelope: {
|
|
|
15775
15863
|
note?: string | undefined;
|
|
15776
15864
|
extra_attribute?: string | undefined;
|
|
15777
15865
|
transaction_id?: string | undefined;
|
|
15778
|
-
} & { [
|
|
15866
|
+
} & { [K_554 in Exclude<keyof I_1["token_sent_event"], keyof TokenSentEvent>]: never; }) | undefined;
|
|
15779
15867
|
message_button_clicked?: ({
|
|
15780
15868
|
message_id?: string | undefined;
|
|
15781
15869
|
channel_id?: string | undefined;
|
|
@@ -15790,7 +15878,7 @@ export declare const Envelope: {
|
|
|
15790
15878
|
sender_id?: string | undefined;
|
|
15791
15879
|
user_id?: string | undefined;
|
|
15792
15880
|
extra_data?: string | undefined;
|
|
15793
|
-
} & { [
|
|
15881
|
+
} & { [K_555 in Exclude<keyof I_1["message_button_clicked"], keyof MessageButtonClicked>]: never; }) | undefined;
|
|
15794
15882
|
unmute_event?: ({
|
|
15795
15883
|
channel_id?: string | undefined;
|
|
15796
15884
|
category_id?: string | undefined;
|
|
@@ -15799,7 +15887,7 @@ export declare const Envelope: {
|
|
|
15799
15887
|
channel_id?: string | undefined;
|
|
15800
15888
|
category_id?: string | undefined;
|
|
15801
15889
|
clan_id?: string | undefined;
|
|
15802
|
-
} & { [
|
|
15890
|
+
} & { [K_556 in Exclude<keyof I_1["unmute_event"], keyof UnmuteEvent>]: never; }) | undefined;
|
|
15803
15891
|
webrtc_signaling_fwd?: ({
|
|
15804
15892
|
receiver_id?: string | undefined;
|
|
15805
15893
|
data_type?: number | undefined;
|
|
@@ -15812,7 +15900,7 @@ export declare const Envelope: {
|
|
|
15812
15900
|
json_data?: string | undefined;
|
|
15813
15901
|
channel_id?: string | undefined;
|
|
15814
15902
|
caller_id?: string | undefined;
|
|
15815
|
-
} & { [
|
|
15903
|
+
} & { [K_557 in Exclude<keyof I_1["webrtc_signaling_fwd"], keyof WebrtcSignalingFwd>]: never; }) | undefined;
|
|
15816
15904
|
list_activity?: ({
|
|
15817
15905
|
acts?: {
|
|
15818
15906
|
user_id?: string | undefined;
|
|
@@ -15852,7 +15940,7 @@ export declare const Envelope: {
|
|
|
15852
15940
|
end_time?: Date | undefined;
|
|
15853
15941
|
application_id?: string | undefined;
|
|
15854
15942
|
status?: number | undefined;
|
|
15855
|
-
} & { [
|
|
15943
|
+
} & { [K_558 in Exclude<keyof I_1["list_activity"]["acts"][number], keyof UserActivity>]: never; })[] & { [K_559 in Exclude<keyof I_1["list_activity"]["acts"], keyof {
|
|
15856
15944
|
user_id?: string | undefined;
|
|
15857
15945
|
activity_name?: string | undefined;
|
|
15858
15946
|
activity_type?: number | undefined;
|
|
@@ -15862,7 +15950,7 @@ export declare const Envelope: {
|
|
|
15862
15950
|
application_id?: string | undefined;
|
|
15863
15951
|
status?: number | undefined;
|
|
15864
15952
|
}[]>]: never; }) | undefined;
|
|
15865
|
-
} & { [
|
|
15953
|
+
} & { [K_560 in Exclude<keyof I_1["list_activity"], "acts">]: never; }) | undefined;
|
|
15866
15954
|
dropdown_box_selected?: ({
|
|
15867
15955
|
message_id?: string | undefined;
|
|
15868
15956
|
channel_id?: string | undefined;
|
|
@@ -15876,8 +15964,8 @@ export declare const Envelope: {
|
|
|
15876
15964
|
selectbox_id?: string | undefined;
|
|
15877
15965
|
sender_id?: string | undefined;
|
|
15878
15966
|
user_id?: string | undefined;
|
|
15879
|
-
values?: (string[] & string[] & { [
|
|
15880
|
-
} & { [
|
|
15967
|
+
values?: (string[] & string[] & { [K_561 in Exclude<keyof I_1["dropdown_box_selected"]["values"], keyof string[]>]: never; }) | undefined;
|
|
15968
|
+
} & { [K_562 in Exclude<keyof I_1["dropdown_box_selected"], keyof DropdownBoxSelected>]: never; }) | undefined;
|
|
15881
15969
|
incoming_call_push?: ({
|
|
15882
15970
|
receiver_id?: string | undefined;
|
|
15883
15971
|
json_data?: string | undefined;
|
|
@@ -15888,7 +15976,7 @@ export declare const Envelope: {
|
|
|
15888
15976
|
json_data?: string | undefined;
|
|
15889
15977
|
channel_id?: string | undefined;
|
|
15890
15978
|
caller_id?: string | undefined;
|
|
15891
|
-
} & { [
|
|
15979
|
+
} & { [K_563 in Exclude<keyof I_1["incoming_call_push"], keyof IncomingCallPush>]: never; }) | undefined;
|
|
15892
15980
|
sd_topic_event?: ({
|
|
15893
15981
|
id?: string | undefined;
|
|
15894
15982
|
clan_id?: string | undefined;
|
|
@@ -15960,8 +16048,8 @@ export declare const Envelope: {
|
|
|
15960
16048
|
reference?: string | undefined;
|
|
15961
16049
|
mention?: string | undefined;
|
|
15962
16050
|
reaction?: string | undefined;
|
|
15963
|
-
repliers?: (string[] & string[] & { [
|
|
15964
|
-
} & { [
|
|
16051
|
+
repliers?: (string[] & string[] & { [K_564 in Exclude<keyof I_1["sd_topic_event"]["last_sent_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
16052
|
+
} & { [K_565 in Exclude<keyof I_1["sd_topic_event"]["last_sent_message"], keyof ChannelMessageHeader>]: never; }) | undefined;
|
|
15965
16053
|
message?: ({
|
|
15966
16054
|
clan_id?: string | undefined;
|
|
15967
16055
|
channel_id?: string | undefined;
|
|
@@ -16018,9 +16106,9 @@ export declare const Envelope: {
|
|
|
16018
16106
|
hide_editted?: boolean | undefined;
|
|
16019
16107
|
is_public?: boolean | undefined;
|
|
16020
16108
|
topic_id?: string | undefined;
|
|
16021
|
-
} & { [
|
|
16022
|
-
} & { [
|
|
16023
|
-
follow_event?: ({} & {} & { [
|
|
16109
|
+
} & { [K_566 in Exclude<keyof I_1["sd_topic_event"]["message"], keyof ChannelMessage>]: never; }) | undefined;
|
|
16110
|
+
} & { [K_567 in Exclude<keyof I_1["sd_topic_event"], keyof SdTopicEvent>]: never; }) | undefined;
|
|
16111
|
+
follow_event?: ({} & {} & { [K_568 in Exclude<keyof I_1["follow_event"], never>]: never; }) | undefined;
|
|
16024
16112
|
channel_app_event?: ({
|
|
16025
16113
|
user_id?: string | undefined;
|
|
16026
16114
|
username?: string | undefined;
|
|
@@ -16033,19 +16121,19 @@ export declare const Envelope: {
|
|
|
16033
16121
|
clan_id?: string | undefined;
|
|
16034
16122
|
channel_id?: string | undefined;
|
|
16035
16123
|
action?: number | undefined;
|
|
16036
|
-
} & { [
|
|
16124
|
+
} & { [K_569 in Exclude<keyof I_1["channel_app_event"], keyof ChannelAppEvent>]: never; }) | undefined;
|
|
16037
16125
|
user_status_event?: ({
|
|
16038
16126
|
user_id?: string | undefined;
|
|
16039
16127
|
custom_status?: string | undefined;
|
|
16040
16128
|
} & {
|
|
16041
16129
|
user_id?: string | undefined;
|
|
16042
16130
|
custom_status?: string | undefined;
|
|
16043
|
-
} & { [
|
|
16131
|
+
} & { [K_570 in Exclude<keyof I_1["user_status_event"], keyof UserStatusEvent>]: never; }) | undefined;
|
|
16044
16132
|
remove_friend?: ({
|
|
16045
16133
|
user_id?: string | undefined;
|
|
16046
16134
|
} & {
|
|
16047
16135
|
user_id?: string | undefined;
|
|
16048
|
-
} & { [
|
|
16136
|
+
} & { [K_571 in Exclude<keyof I_1["remove_friend"], "user_id">]: never; }) | undefined;
|
|
16049
16137
|
webhook_event?: ({
|
|
16050
16138
|
id?: string | undefined;
|
|
16051
16139
|
webhook_name?: string | undefined;
|
|
@@ -16070,7 +16158,7 @@ export declare const Envelope: {
|
|
|
16070
16158
|
avatar?: string | undefined;
|
|
16071
16159
|
status?: number | undefined;
|
|
16072
16160
|
clan_id?: string | undefined;
|
|
16073
|
-
} & { [
|
|
16161
|
+
} & { [K_572 in Exclude<keyof I_1["webhook_event"], keyof Webhook>]: never; }) | undefined;
|
|
16074
16162
|
noti_user_channel?: ({
|
|
16075
16163
|
id?: string | undefined;
|
|
16076
16164
|
notification_setting_type?: number | undefined;
|
|
@@ -16083,7 +16171,7 @@ export declare const Envelope: {
|
|
|
16083
16171
|
time_mute?: Date | undefined;
|
|
16084
16172
|
active?: number | undefined;
|
|
16085
16173
|
channel_id?: string | undefined;
|
|
16086
|
-
} & { [
|
|
16174
|
+
} & { [K_573 in Exclude<keyof I_1["noti_user_channel"], keyof NotificationUserChannel>]: never; }) | undefined;
|
|
16087
16175
|
join_channel_app_data?: ({
|
|
16088
16176
|
user_id?: string | undefined;
|
|
16089
16177
|
username?: string | undefined;
|
|
@@ -16092,7 +16180,7 @@ export declare const Envelope: {
|
|
|
16092
16180
|
user_id?: string | undefined;
|
|
16093
16181
|
username?: string | undefined;
|
|
16094
16182
|
hash?: string | undefined;
|
|
16095
|
-
} & { [
|
|
16183
|
+
} & { [K_574 in Exclude<keyof I_1["join_channel_app_data"], keyof JoinChannelAppData>]: never; }) | undefined;
|
|
16096
16184
|
canvas_event?: ({
|
|
16097
16185
|
id?: string | undefined;
|
|
16098
16186
|
title?: string | undefined;
|
|
@@ -16111,7 +16199,7 @@ export declare const Envelope: {
|
|
|
16111
16199
|
is_default?: boolean | undefined;
|
|
16112
16200
|
channel_id?: string | undefined;
|
|
16113
16201
|
status?: number | undefined;
|
|
16114
|
-
} & { [
|
|
16202
|
+
} & { [K_575 in Exclude<keyof I_1["canvas_event"], keyof ChannelCanvas>]: never; }) | undefined;
|
|
16115
16203
|
unpin_message_event?: ({
|
|
16116
16204
|
id?: string | undefined;
|
|
16117
16205
|
message_id?: string | undefined;
|
|
@@ -16122,7 +16210,7 @@ export declare const Envelope: {
|
|
|
16122
16210
|
message_id?: string | undefined;
|
|
16123
16211
|
channel_id?: string | undefined;
|
|
16124
16212
|
clan_id?: string | undefined;
|
|
16125
|
-
} & { [
|
|
16213
|
+
} & { [K_576 in Exclude<keyof I_1["unpin_message_event"], keyof UnpinMessageEvent>]: never; }) | undefined;
|
|
16126
16214
|
category_event?: ({
|
|
16127
16215
|
creator_id?: string | undefined;
|
|
16128
16216
|
clan_id?: string | undefined;
|
|
@@ -16135,23 +16223,25 @@ export declare const Envelope: {
|
|
|
16135
16223
|
category_name?: string | undefined;
|
|
16136
16224
|
id?: string | undefined;
|
|
16137
16225
|
status?: number | undefined;
|
|
16138
|
-
} & { [
|
|
16226
|
+
} & { [K_577 in Exclude<keyof I_1["category_event"], keyof CategoryEvent>]: never; }) | undefined;
|
|
16139
16227
|
handle_participant_meet_state_event?: ({
|
|
16140
16228
|
clan_id?: string | undefined;
|
|
16141
16229
|
channel_id?: string | undefined;
|
|
16142
16230
|
display_name?: string | undefined;
|
|
16143
16231
|
state?: number | undefined;
|
|
16232
|
+
room_name?: string | undefined;
|
|
16144
16233
|
} & {
|
|
16145
16234
|
clan_id?: string | undefined;
|
|
16146
16235
|
channel_id?: string | undefined;
|
|
16147
16236
|
display_name?: string | undefined;
|
|
16148
16237
|
state?: number | undefined;
|
|
16149
|
-
|
|
16238
|
+
room_name?: string | undefined;
|
|
16239
|
+
} & { [K_578 in Exclude<keyof I_1["handle_participant_meet_state_event"], keyof HandleParticipantMeetStateEvent>]: never; }) | undefined;
|
|
16150
16240
|
delete_account_event?: ({
|
|
16151
16241
|
user_id?: string | undefined;
|
|
16152
16242
|
} & {
|
|
16153
16243
|
user_id?: string | undefined;
|
|
16154
|
-
} & { [
|
|
16244
|
+
} & { [K_579 in Exclude<keyof I_1["delete_account_event"], "user_id">]: never; }) | undefined;
|
|
16155
16245
|
ephemeral_message_send?: ({
|
|
16156
16246
|
message?: {
|
|
16157
16247
|
clan_id?: string | undefined;
|
|
@@ -16271,7 +16361,7 @@ export declare const Envelope: {
|
|
|
16271
16361
|
create_time?: Date | undefined;
|
|
16272
16362
|
s?: number | undefined;
|
|
16273
16363
|
e?: number | undefined;
|
|
16274
|
-
} & { [
|
|
16364
|
+
} & { [K_580 in Exclude<keyof I_1["ephemeral_message_send"]["message"]["mentions"][number], keyof MessageMention>]: never; })[] & { [K_581 in Exclude<keyof I_1["ephemeral_message_send"]["message"]["mentions"], keyof {
|
|
16275
16365
|
id?: string | undefined;
|
|
16276
16366
|
user_id?: string | undefined;
|
|
16277
16367
|
username?: string | undefined;
|
|
@@ -16305,7 +16395,7 @@ export declare const Envelope: {
|
|
|
16305
16395
|
width?: number | undefined;
|
|
16306
16396
|
height?: number | undefined;
|
|
16307
16397
|
thumbnail?: string | undefined;
|
|
16308
|
-
} & { [
|
|
16398
|
+
} & { [K_582 in Exclude<keyof I_1["ephemeral_message_send"]["message"]["attachments"][number], keyof MessageAttachment>]: never; })[] & { [K_583 in Exclude<keyof I_1["ephemeral_message_send"]["message"]["attachments"], keyof {
|
|
16309
16399
|
filename?: string | undefined;
|
|
16310
16400
|
size?: number | undefined;
|
|
16311
16401
|
url?: string | undefined;
|
|
@@ -16347,7 +16437,7 @@ export declare const Envelope: {
|
|
|
16347
16437
|
mesages_sender_avatar?: string | undefined;
|
|
16348
16438
|
message_sender_clan_nick?: string | undefined;
|
|
16349
16439
|
message_sender_display_name?: string | undefined;
|
|
16350
|
-
} & { [
|
|
16440
|
+
} & { [K_584 in Exclude<keyof I_1["ephemeral_message_send"]["message"]["references"][number], keyof MessageRef>]: never; })[] & { [K_585 in Exclude<keyof I_1["ephemeral_message_send"]["message"]["references"], keyof {
|
|
16351
16441
|
message_id?: string | undefined;
|
|
16352
16442
|
message_ref_id?: string | undefined;
|
|
16353
16443
|
content?: string | undefined;
|
|
@@ -16366,25 +16456,25 @@ export declare const Envelope: {
|
|
|
16366
16456
|
is_public?: boolean | undefined;
|
|
16367
16457
|
code?: number | undefined;
|
|
16368
16458
|
topic_id?: string | undefined;
|
|
16369
|
-
} & { [
|
|
16459
|
+
} & { [K_586 in Exclude<keyof I_1["ephemeral_message_send"]["message"], keyof ChannelMessageSend>]: never; }) | undefined;
|
|
16370
16460
|
receiver_id?: string | undefined;
|
|
16371
|
-
} & { [
|
|
16461
|
+
} & { [K_587 in Exclude<keyof I_1["ephemeral_message_send"], keyof EphemeralMessageSend>]: never; }) | undefined;
|
|
16372
16462
|
block_friend?: ({
|
|
16373
16463
|
user_id?: string | undefined;
|
|
16374
16464
|
} & {
|
|
16375
16465
|
user_id?: string | undefined;
|
|
16376
|
-
} & { [
|
|
16466
|
+
} & { [K_588 in Exclude<keyof I_1["block_friend"], "user_id">]: never; }) | undefined;
|
|
16377
16467
|
voice_reaction_send?: ({
|
|
16378
16468
|
emojis?: string[] | undefined;
|
|
16379
16469
|
channel_id?: string | undefined;
|
|
16380
16470
|
sender_id?: string | undefined;
|
|
16381
16471
|
media_type?: number | undefined;
|
|
16382
16472
|
} & {
|
|
16383
|
-
emojis?: (string[] & string[] & { [
|
|
16473
|
+
emojis?: (string[] & string[] & { [K_589 in Exclude<keyof I_1["voice_reaction_send"]["emojis"], keyof string[]>]: never; }) | undefined;
|
|
16384
16474
|
channel_id?: string | undefined;
|
|
16385
16475
|
sender_id?: string | undefined;
|
|
16386
16476
|
media_type?: number | undefined;
|
|
16387
|
-
} & { [
|
|
16477
|
+
} & { [K_590 in Exclude<keyof I_1["voice_reaction_send"], keyof VoiceReactionSend>]: never; }) | undefined;
|
|
16388
16478
|
mark_as_read?: ({
|
|
16389
16479
|
channel_id?: string | undefined;
|
|
16390
16480
|
category_id?: string | undefined;
|
|
@@ -16393,7 +16483,7 @@ export declare const Envelope: {
|
|
|
16393
16483
|
channel_id?: string | undefined;
|
|
16394
16484
|
category_id?: string | undefined;
|
|
16395
16485
|
clan_id?: string | undefined;
|
|
16396
|
-
} & { [
|
|
16486
|
+
} & { [K_591 in Exclude<keyof I_1["mark_as_read"], keyof MarkAsRead>]: never; }) | undefined;
|
|
16397
16487
|
list_data_socket?: ({
|
|
16398
16488
|
api_name?: string | undefined;
|
|
16399
16489
|
list_clan_req?: {
|
|
@@ -16416,6 +16506,9 @@ export declare const Envelope: {
|
|
|
16416
16506
|
clan_order?: number | undefined;
|
|
16417
16507
|
is_community?: boolean | undefined;
|
|
16418
16508
|
community_banner?: string | undefined;
|
|
16509
|
+
description?: string | undefined;
|
|
16510
|
+
about?: string | undefined;
|
|
16511
|
+
short_url?: string | undefined;
|
|
16419
16512
|
}[] | undefined;
|
|
16420
16513
|
} | undefined;
|
|
16421
16514
|
list_thread_req?: {
|
|
@@ -17263,7 +17356,7 @@ export declare const Envelope: {
|
|
|
17263
17356
|
limit?: number | undefined;
|
|
17264
17357
|
state?: number | undefined;
|
|
17265
17358
|
cursor?: string | undefined;
|
|
17266
|
-
} & { [
|
|
17359
|
+
} & { [K_592 in Exclude<keyof I_1["list_data_socket"]["list_clan_req"], keyof ListClanDescRequest>]: never; }) | undefined;
|
|
17267
17360
|
clan_desc_list?: ({
|
|
17268
17361
|
clandesc?: {
|
|
17269
17362
|
creator_id?: string | undefined;
|
|
@@ -17279,6 +17372,9 @@ export declare const Envelope: {
|
|
|
17279
17372
|
clan_order?: number | undefined;
|
|
17280
17373
|
is_community?: boolean | undefined;
|
|
17281
17374
|
community_banner?: string | undefined;
|
|
17375
|
+
description?: string | undefined;
|
|
17376
|
+
about?: string | undefined;
|
|
17377
|
+
short_url?: string | undefined;
|
|
17282
17378
|
}[] | undefined;
|
|
17283
17379
|
} & {
|
|
17284
17380
|
clandesc?: ({
|
|
@@ -17295,6 +17391,9 @@ export declare const Envelope: {
|
|
|
17295
17391
|
clan_order?: number | undefined;
|
|
17296
17392
|
is_community?: boolean | undefined;
|
|
17297
17393
|
community_banner?: string | undefined;
|
|
17394
|
+
description?: string | undefined;
|
|
17395
|
+
about?: string | undefined;
|
|
17396
|
+
short_url?: string | undefined;
|
|
17298
17397
|
}[] & ({
|
|
17299
17398
|
creator_id?: string | undefined;
|
|
17300
17399
|
clan_name?: string | undefined;
|
|
@@ -17309,6 +17408,9 @@ export declare const Envelope: {
|
|
|
17309
17408
|
clan_order?: number | undefined;
|
|
17310
17409
|
is_community?: boolean | undefined;
|
|
17311
17410
|
community_banner?: string | undefined;
|
|
17411
|
+
description?: string | undefined;
|
|
17412
|
+
about?: string | undefined;
|
|
17413
|
+
short_url?: string | undefined;
|
|
17312
17414
|
} & {
|
|
17313
17415
|
creator_id?: string | undefined;
|
|
17314
17416
|
clan_name?: string | undefined;
|
|
@@ -17323,7 +17425,10 @@ export declare const Envelope: {
|
|
|
17323
17425
|
clan_order?: number | undefined;
|
|
17324
17426
|
is_community?: boolean | undefined;
|
|
17325
17427
|
community_banner?: string | undefined;
|
|
17326
|
-
|
|
17428
|
+
description?: string | undefined;
|
|
17429
|
+
about?: string | undefined;
|
|
17430
|
+
short_url?: string | undefined;
|
|
17431
|
+
} & { [K_593 in Exclude<keyof I_1["list_data_socket"]["clan_desc_list"]["clandesc"][number], keyof import("../api/api").ClanDesc>]: never; })[] & { [K_594 in Exclude<keyof I_1["list_data_socket"]["clan_desc_list"]["clandesc"], keyof {
|
|
17327
17432
|
creator_id?: string | undefined;
|
|
17328
17433
|
clan_name?: string | undefined;
|
|
17329
17434
|
logo?: string | undefined;
|
|
@@ -17337,8 +17442,11 @@ export declare const Envelope: {
|
|
|
17337
17442
|
clan_order?: number | undefined;
|
|
17338
17443
|
is_community?: boolean | undefined;
|
|
17339
17444
|
community_banner?: string | undefined;
|
|
17445
|
+
description?: string | undefined;
|
|
17446
|
+
about?: string | undefined;
|
|
17447
|
+
short_url?: string | undefined;
|
|
17340
17448
|
}[]>]: never; }) | undefined;
|
|
17341
|
-
} & { [
|
|
17449
|
+
} & { [K_595 in Exclude<keyof I_1["list_data_socket"]["clan_desc_list"], "clandesc">]: never; }) | undefined;
|
|
17342
17450
|
list_thread_req?: ({
|
|
17343
17451
|
limit?: number | undefined;
|
|
17344
17452
|
state?: number | undefined;
|
|
@@ -17353,7 +17461,7 @@ export declare const Envelope: {
|
|
|
17353
17461
|
channel_id?: string | undefined;
|
|
17354
17462
|
thread_id?: string | undefined;
|
|
17355
17463
|
page?: number | undefined;
|
|
17356
|
-
} & { [
|
|
17464
|
+
} & { [K_596 in Exclude<keyof I_1["list_data_socket"]["list_thread_req"], keyof ListThreadRequest>]: never; }) | undefined;
|
|
17357
17465
|
channel_desc_list?: ({
|
|
17358
17466
|
channeldesc?: {
|
|
17359
17467
|
clan_id?: string | undefined;
|
|
@@ -17527,8 +17635,8 @@ export declare const Envelope: {
|
|
|
17527
17635
|
creator_id?: string | undefined;
|
|
17528
17636
|
channel_label?: string | undefined;
|
|
17529
17637
|
channel_private?: number | undefined;
|
|
17530
|
-
channel_avatar?: (string[] & string[] & { [
|
|
17531
|
-
user_id?: (string[] & string[] & { [
|
|
17638
|
+
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;
|
|
17639
|
+
user_id?: (string[] & string[] & { [K_598 in Exclude<keyof I_1["list_data_socket"]["channel_desc_list"]["channeldesc"][number]["user_id"], keyof string[]>]: never; }) | undefined;
|
|
17532
17640
|
last_sent_message?: ({
|
|
17533
17641
|
id?: string | undefined;
|
|
17534
17642
|
timestamp_seconds?: number | undefined;
|
|
@@ -17548,8 +17656,8 @@ export declare const Envelope: {
|
|
|
17548
17656
|
reference?: string | undefined;
|
|
17549
17657
|
mention?: string | undefined;
|
|
17550
17658
|
reaction?: string | undefined;
|
|
17551
|
-
repliers?: (string[] & string[] & { [
|
|
17552
|
-
} & { [
|
|
17659
|
+
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;
|
|
17660
|
+
} & { [K_600 in Exclude<keyof I_1["list_data_socket"]["channel_desc_list"]["channeldesc"][number]["last_sent_message"], keyof ChannelMessageHeader>]: never; }) | undefined;
|
|
17553
17661
|
last_seen_message?: ({
|
|
17554
17662
|
id?: string | undefined;
|
|
17555
17663
|
timestamp_seconds?: number | undefined;
|
|
@@ -17569,27 +17677,27 @@ export declare const Envelope: {
|
|
|
17569
17677
|
reference?: string | undefined;
|
|
17570
17678
|
mention?: string | undefined;
|
|
17571
17679
|
reaction?: string | undefined;
|
|
17572
|
-
repliers?: (string[] & string[] & { [
|
|
17573
|
-
} & { [
|
|
17574
|
-
is_online?: (boolean[] & boolean[] & { [
|
|
17680
|
+
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;
|
|
17681
|
+
} & { [K_602 in Exclude<keyof I_1["list_data_socket"]["channel_desc_list"]["channeldesc"][number]["last_seen_message"], keyof ChannelMessageHeader>]: never; }) | undefined;
|
|
17682
|
+
is_online?: (boolean[] & boolean[] & { [K_603 in Exclude<keyof I_1["list_data_socket"]["channel_desc_list"]["channeldesc"][number]["is_online"], keyof boolean[]>]: never; }) | undefined;
|
|
17575
17683
|
meeting_code?: string | undefined;
|
|
17576
17684
|
count_mess_unread?: number | undefined;
|
|
17577
17685
|
active?: number | undefined;
|
|
17578
17686
|
last_pin_message?: string | undefined;
|
|
17579
|
-
usernames?: (string[] & string[] & { [
|
|
17687
|
+
usernames?: (string[] & string[] & { [K_604 in Exclude<keyof I_1["list_data_socket"]["channel_desc_list"]["channeldesc"][number]["usernames"], keyof string[]>]: never; }) | undefined;
|
|
17580
17688
|
creator_name?: string | undefined;
|
|
17581
17689
|
create_time_seconds?: number | undefined;
|
|
17582
17690
|
update_time_seconds?: number | undefined;
|
|
17583
|
-
metadata?: (string[] & string[] & { [
|
|
17584
|
-
about_me?: (string[] & string[] & { [
|
|
17691
|
+
metadata?: (string[] & string[] & { [K_605 in Exclude<keyof I_1["list_data_socket"]["channel_desc_list"]["channeldesc"][number]["metadata"], keyof string[]>]: never; }) | undefined;
|
|
17692
|
+
about_me?: (string[] & string[] & { [K_606 in Exclude<keyof I_1["list_data_socket"]["channel_desc_list"]["channeldesc"][number]["about_me"], keyof string[]>]: never; }) | undefined;
|
|
17585
17693
|
clan_name?: string | undefined;
|
|
17586
17694
|
app_id?: string | undefined;
|
|
17587
17695
|
is_mute?: boolean | undefined;
|
|
17588
17696
|
age_restricted?: number | undefined;
|
|
17589
17697
|
topic?: string | undefined;
|
|
17590
17698
|
e2ee?: number | undefined;
|
|
17591
|
-
display_names?: (string[] & string[] & { [
|
|
17592
|
-
} & { [
|
|
17699
|
+
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;
|
|
17700
|
+
} & { [K_608 in Exclude<keyof I_1["list_data_socket"]["channel_desc_list"]["channeldesc"][number], keyof ChannelDescription1>]: never; })[] & { [K_609 in Exclude<keyof I_1["list_data_socket"]["channel_desc_list"]["channeldesc"], keyof {
|
|
17593
17701
|
clan_id?: string | undefined;
|
|
17594
17702
|
parent_id?: string | undefined;
|
|
17595
17703
|
channel_id?: string | undefined;
|
|
@@ -17646,28 +17754,28 @@ export declare const Envelope: {
|
|
|
17646
17754
|
prev_cursor?: string | undefined;
|
|
17647
17755
|
cacheable_cursor?: string | undefined;
|
|
17648
17756
|
page?: number | undefined;
|
|
17649
|
-
} & { [
|
|
17757
|
+
} & { [K_610 in Exclude<keyof I_1["list_data_socket"]["channel_desc_list"], keyof ChannelDescList>]: never; }) | undefined;
|
|
17650
17758
|
list_channel_users_uc_req?: ({
|
|
17651
17759
|
channel_id?: string | undefined;
|
|
17652
17760
|
limit?: number | undefined;
|
|
17653
17761
|
} & {
|
|
17654
17762
|
channel_id?: string | undefined;
|
|
17655
17763
|
limit?: number | undefined;
|
|
17656
|
-
} & { [
|
|
17764
|
+
} & { [K_611 in Exclude<keyof I_1["list_data_socket"]["list_channel_users_uc_req"], keyof AllUsersAddChannelRequest>]: never; }) | undefined;
|
|
17657
17765
|
channel_users_uc_list?: ({
|
|
17658
17766
|
channel_id?: string | undefined;
|
|
17659
17767
|
user_ids?: string[] | undefined;
|
|
17660
17768
|
limit?: number | undefined;
|
|
17661
17769
|
} & {
|
|
17662
17770
|
channel_id?: string | undefined;
|
|
17663
|
-
user_ids?: (string[] & string[] & { [
|
|
17771
|
+
user_ids?: (string[] & string[] & { [K_612 in Exclude<keyof I_1["list_data_socket"]["channel_users_uc_list"]["user_ids"], keyof string[]>]: never; }) | undefined;
|
|
17664
17772
|
limit?: number | undefined;
|
|
17665
|
-
} & { [
|
|
17773
|
+
} & { [K_613 in Exclude<keyof I_1["list_data_socket"]["channel_users_uc_list"], keyof AllUsersAddChannelResponse>]: never; }) | undefined;
|
|
17666
17774
|
list_channel_detail_req?: ({
|
|
17667
17775
|
channel_id?: string | undefined;
|
|
17668
17776
|
} & {
|
|
17669
17777
|
channel_id?: string | undefined;
|
|
17670
|
-
} & { [
|
|
17778
|
+
} & { [K_614 in Exclude<keyof I_1["list_data_socket"]["list_channel_detail_req"], "channel_id">]: never; }) | undefined;
|
|
17671
17779
|
channel_desc?: ({
|
|
17672
17780
|
clan_id?: string | undefined;
|
|
17673
17781
|
parent_id?: string | undefined;
|
|
@@ -17730,8 +17838,8 @@ export declare const Envelope: {
|
|
|
17730
17838
|
creator_id?: string | undefined;
|
|
17731
17839
|
channel_label?: string | undefined;
|
|
17732
17840
|
channel_private?: number | undefined;
|
|
17733
|
-
channel_avatar?: (string[] & string[] & { [
|
|
17734
|
-
user_id?: (string[] & string[] & { [
|
|
17841
|
+
channel_avatar?: (string[] & string[] & { [K_615 in Exclude<keyof I_1["list_data_socket"]["channel_desc"]["channel_avatar"], keyof string[]>]: never; }) | undefined;
|
|
17842
|
+
user_id?: (string[] & string[] & { [K_616 in Exclude<keyof I_1["list_data_socket"]["channel_desc"]["user_id"], keyof string[]>]: never; }) | undefined;
|
|
17735
17843
|
last_sent_message?: ({
|
|
17736
17844
|
id?: string | undefined;
|
|
17737
17845
|
timestamp_seconds?: number | undefined;
|
|
@@ -17751,8 +17859,8 @@ export declare const Envelope: {
|
|
|
17751
17859
|
reference?: string | undefined;
|
|
17752
17860
|
mention?: string | undefined;
|
|
17753
17861
|
reaction?: string | undefined;
|
|
17754
|
-
repliers?: (string[] & string[] & { [
|
|
17755
|
-
} & { [
|
|
17862
|
+
repliers?: (string[] & string[] & { [K_617 in Exclude<keyof I_1["list_data_socket"]["channel_desc"]["last_sent_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
17863
|
+
} & { [K_618 in Exclude<keyof I_1["list_data_socket"]["channel_desc"]["last_sent_message"], keyof ChannelMessageHeader>]: never; }) | undefined;
|
|
17756
17864
|
last_seen_message?: ({
|
|
17757
17865
|
id?: string | undefined;
|
|
17758
17866
|
timestamp_seconds?: number | undefined;
|
|
@@ -17772,27 +17880,27 @@ export declare const Envelope: {
|
|
|
17772
17880
|
reference?: string | undefined;
|
|
17773
17881
|
mention?: string | undefined;
|
|
17774
17882
|
reaction?: string | undefined;
|
|
17775
|
-
repliers?: (string[] & string[] & { [
|
|
17776
|
-
} & { [
|
|
17777
|
-
is_online?: (boolean[] & boolean[] & { [
|
|
17883
|
+
repliers?: (string[] & string[] & { [K_619 in Exclude<keyof I_1["list_data_socket"]["channel_desc"]["last_seen_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
17884
|
+
} & { [K_620 in Exclude<keyof I_1["list_data_socket"]["channel_desc"]["last_seen_message"], keyof ChannelMessageHeader>]: never; }) | undefined;
|
|
17885
|
+
is_online?: (boolean[] & boolean[] & { [K_621 in Exclude<keyof I_1["list_data_socket"]["channel_desc"]["is_online"], keyof boolean[]>]: never; }) | undefined;
|
|
17778
17886
|
meeting_code?: string | undefined;
|
|
17779
17887
|
count_mess_unread?: number | undefined;
|
|
17780
17888
|
active?: number | undefined;
|
|
17781
17889
|
last_pin_message?: string | undefined;
|
|
17782
|
-
usernames?: (string[] & string[] & { [
|
|
17890
|
+
usernames?: (string[] & string[] & { [K_622 in Exclude<keyof I_1["list_data_socket"]["channel_desc"]["usernames"], keyof string[]>]: never; }) | undefined;
|
|
17783
17891
|
creator_name?: string | undefined;
|
|
17784
17892
|
create_time_seconds?: number | undefined;
|
|
17785
17893
|
update_time_seconds?: number | undefined;
|
|
17786
|
-
metadata?: (string[] & string[] & { [
|
|
17787
|
-
about_me?: (string[] & string[] & { [
|
|
17894
|
+
metadata?: (string[] & string[] & { [K_623 in Exclude<keyof I_1["list_data_socket"]["channel_desc"]["metadata"], keyof string[]>]: never; }) | undefined;
|
|
17895
|
+
about_me?: (string[] & string[] & { [K_624 in Exclude<keyof I_1["list_data_socket"]["channel_desc"]["about_me"], keyof string[]>]: never; }) | undefined;
|
|
17788
17896
|
clan_name?: string | undefined;
|
|
17789
17897
|
app_id?: string | undefined;
|
|
17790
17898
|
is_mute?: boolean | undefined;
|
|
17791
17899
|
age_restricted?: number | undefined;
|
|
17792
17900
|
topic?: string | undefined;
|
|
17793
17901
|
e2ee?: number | undefined;
|
|
17794
|
-
display_names?: (string[] & string[] & { [
|
|
17795
|
-
} & { [
|
|
17902
|
+
display_names?: (string[] & string[] & { [K_625 in Exclude<keyof I_1["list_data_socket"]["channel_desc"]["display_names"], keyof string[]>]: never; }) | undefined;
|
|
17903
|
+
} & { [K_626 in Exclude<keyof I_1["list_data_socket"]["channel_desc"], keyof ChannelDescription1>]: never; }) | undefined;
|
|
17796
17904
|
list_channel_req?: ({
|
|
17797
17905
|
limit?: number | undefined;
|
|
17798
17906
|
state?: number | undefined;
|
|
@@ -17805,7 +17913,7 @@ export declare const Envelope: {
|
|
|
17805
17913
|
cursor?: string | undefined;
|
|
17806
17914
|
clan_id?: string | undefined;
|
|
17807
17915
|
channel_type?: number | undefined;
|
|
17808
|
-
} & { [
|
|
17916
|
+
} & { [K_627 in Exclude<keyof I_1["list_data_socket"]["list_channel_req"], keyof ListChannelDescsRequest>]: never; }) | undefined;
|
|
17809
17917
|
list_channel_message_req?: ({
|
|
17810
17918
|
clan_id?: string | undefined;
|
|
17811
17919
|
channel_id?: string | undefined;
|
|
@@ -17820,7 +17928,7 @@ export declare const Envelope: {
|
|
|
17820
17928
|
limit?: number | undefined;
|
|
17821
17929
|
direction?: number | undefined;
|
|
17822
17930
|
topic_id?: string | undefined;
|
|
17823
|
-
} & { [
|
|
17931
|
+
} & { [K_628 in Exclude<keyof I_1["list_data_socket"]["list_channel_message_req"], keyof ListChannelMessagesRequest>]: never; }) | undefined;
|
|
17824
17932
|
channel_message_list?: ({
|
|
17825
17933
|
messages?: {
|
|
17826
17934
|
clan_id?: string | undefined;
|
|
@@ -17958,7 +18066,7 @@ export declare const Envelope: {
|
|
|
17958
18066
|
hide_editted?: boolean | undefined;
|
|
17959
18067
|
is_public?: boolean | undefined;
|
|
17960
18068
|
topic_id?: string | undefined;
|
|
17961
|
-
} & { [
|
|
18069
|
+
} & { [K_629 in Exclude<keyof I_1["list_data_socket"]["channel_message_list"]["messages"][number], keyof ChannelMessage>]: never; })[] & { [K_630 in Exclude<keyof I_1["list_data_socket"]["channel_message_list"]["messages"], keyof {
|
|
17962
18070
|
clan_id?: string | undefined;
|
|
17963
18071
|
channel_id?: string | undefined;
|
|
17964
18072
|
message_id?: string | undefined;
|
|
@@ -18006,8 +18114,8 @@ export declare const Envelope: {
|
|
|
18006
18114
|
reference?: string | undefined;
|
|
18007
18115
|
mention?: string | undefined;
|
|
18008
18116
|
reaction?: string | undefined;
|
|
18009
|
-
repliers?: (string[] & string[] & { [
|
|
18010
|
-
} & { [
|
|
18117
|
+
repliers?: (string[] & string[] & { [K_631 in Exclude<keyof I_1["list_data_socket"]["channel_message_list"]["last_seen_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
18118
|
+
} & { [K_632 in Exclude<keyof I_1["list_data_socket"]["channel_message_list"]["last_seen_message"], keyof ChannelMessageHeader>]: never; }) | undefined;
|
|
18011
18119
|
last_sent_message?: ({
|
|
18012
18120
|
id?: string | undefined;
|
|
18013
18121
|
timestamp_seconds?: number | undefined;
|
|
@@ -18027,9 +18135,9 @@ export declare const Envelope: {
|
|
|
18027
18135
|
reference?: string | undefined;
|
|
18028
18136
|
mention?: string | undefined;
|
|
18029
18137
|
reaction?: string | undefined;
|
|
18030
|
-
repliers?: (string[] & string[] & { [
|
|
18031
|
-
} & { [
|
|
18032
|
-
} & { [
|
|
18138
|
+
repliers?: (string[] & string[] & { [K_633 in Exclude<keyof I_1["list_data_socket"]["channel_message_list"]["last_sent_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
18139
|
+
} & { [K_634 in Exclude<keyof I_1["list_data_socket"]["channel_message_list"]["last_sent_message"], keyof ChannelMessageHeader>]: never; }) | undefined;
|
|
18140
|
+
} & { [K_635 in Exclude<keyof I_1["list_data_socket"]["channel_message_list"], keyof ChannelMessageList>]: never; }) | undefined;
|
|
18033
18141
|
list_channel_users_req?: ({
|
|
18034
18142
|
clan_id?: string | undefined;
|
|
18035
18143
|
channel_id?: string | undefined;
|
|
@@ -18044,7 +18152,7 @@ export declare const Envelope: {
|
|
|
18044
18152
|
limit?: number | undefined;
|
|
18045
18153
|
state?: number | undefined;
|
|
18046
18154
|
cursor?: string | undefined;
|
|
18047
|
-
} & { [
|
|
18155
|
+
} & { [K_636 in Exclude<keyof I_1["list_data_socket"]["list_channel_users_req"], keyof ListChannelUsersRequest>]: never; }) | undefined;
|
|
18048
18156
|
voice_user_list?: ({
|
|
18049
18157
|
voice_channel_users?: {
|
|
18050
18158
|
id?: string | undefined;
|
|
@@ -18068,13 +18176,13 @@ export declare const Envelope: {
|
|
|
18068
18176
|
user_id?: string | undefined;
|
|
18069
18177
|
channel_id?: string | undefined;
|
|
18070
18178
|
participant?: string | undefined;
|
|
18071
|
-
} & { [
|
|
18179
|
+
} & { [K_637 in Exclude<keyof I_1["list_data_socket"]["voice_user_list"]["voice_channel_users"][number], keyof import("../api/api").VoiceChannelUser>]: never; })[] & { [K_638 in Exclude<keyof I_1["list_data_socket"]["voice_user_list"]["voice_channel_users"], keyof {
|
|
18072
18180
|
id?: string | undefined;
|
|
18073
18181
|
user_id?: string | undefined;
|
|
18074
18182
|
channel_id?: string | undefined;
|
|
18075
18183
|
participant?: string | undefined;
|
|
18076
18184
|
}[]>]: never; }) | undefined;
|
|
18077
|
-
} & { [
|
|
18185
|
+
} & { [K_639 in Exclude<keyof I_1["list_data_socket"]["voice_user_list"], "voice_channel_users">]: never; }) | undefined;
|
|
18078
18186
|
channel_user_list?: ({
|
|
18079
18187
|
channel_users?: {
|
|
18080
18188
|
user_id?: string | undefined;
|
|
@@ -18109,14 +18217,14 @@ export declare const Envelope: {
|
|
|
18109
18217
|
added_by?: string | undefined;
|
|
18110
18218
|
} & {
|
|
18111
18219
|
user_id?: string | undefined;
|
|
18112
|
-
role_id?: (string[] & string[] & { [
|
|
18220
|
+
role_id?: (string[] & string[] & { [K_640 in Exclude<keyof I_1["list_data_socket"]["channel_user_list"]["channel_users"][number]["role_id"], keyof string[]>]: never; }) | undefined;
|
|
18113
18221
|
id?: string | undefined;
|
|
18114
18222
|
thread_id?: string | undefined;
|
|
18115
18223
|
clan_nick?: string | undefined;
|
|
18116
18224
|
clan_avatar?: string | undefined;
|
|
18117
18225
|
clan_id?: string | undefined;
|
|
18118
18226
|
added_by?: string | undefined;
|
|
18119
|
-
} & { [
|
|
18227
|
+
} & { [K_641 in Exclude<keyof I_1["list_data_socket"]["channel_user_list"]["channel_users"][number], keyof import("../api/api").ChannelUserList_ChannelUser>]: never; })[] & { [K_642 in Exclude<keyof I_1["list_data_socket"]["channel_user_list"]["channel_users"], keyof {
|
|
18120
18228
|
user_id?: string | undefined;
|
|
18121
18229
|
role_id?: string[] | undefined;
|
|
18122
18230
|
id?: string | undefined;
|
|
@@ -18128,7 +18236,7 @@ export declare const Envelope: {
|
|
|
18128
18236
|
}[]>]: never; }) | undefined;
|
|
18129
18237
|
cursor?: string | undefined;
|
|
18130
18238
|
channel_id?: string | undefined;
|
|
18131
|
-
} & { [
|
|
18239
|
+
} & { [K_643 in Exclude<keyof I_1["list_data_socket"]["channel_user_list"], keyof ChannelUserList>]: never; }) | undefined;
|
|
18132
18240
|
list_channel_attachment_req?: ({
|
|
18133
18241
|
clan_id?: string | undefined;
|
|
18134
18242
|
channel_id?: string | undefined;
|
|
@@ -18147,7 +18255,7 @@ export declare const Envelope: {
|
|
|
18147
18255
|
before?: number | undefined;
|
|
18148
18256
|
after?: number | undefined;
|
|
18149
18257
|
around?: number | undefined;
|
|
18150
|
-
} & { [
|
|
18258
|
+
} & { [K_644 in Exclude<keyof I_1["list_data_socket"]["list_channel_attachment_req"], keyof ListChannelAttachmentRequest>]: never; }) | undefined;
|
|
18151
18259
|
channel_attachment_list?: ({
|
|
18152
18260
|
attachments?: {
|
|
18153
18261
|
id?: string | undefined;
|
|
@@ -18195,7 +18303,7 @@ export declare const Envelope: {
|
|
|
18195
18303
|
message_id?: string | undefined;
|
|
18196
18304
|
width?: number | undefined;
|
|
18197
18305
|
height?: number | undefined;
|
|
18198
|
-
} & { [
|
|
18306
|
+
} & { [K_645 in Exclude<keyof I_1["list_data_socket"]["channel_attachment_list"]["attachments"][number], keyof import("../api/api").ChannelAttachment>]: never; })[] & { [K_646 in Exclude<keyof I_1["list_data_socket"]["channel_attachment_list"]["attachments"], keyof {
|
|
18199
18307
|
id?: string | undefined;
|
|
18200
18308
|
filename?: string | undefined;
|
|
18201
18309
|
filetype?: string | undefined;
|
|
@@ -18207,14 +18315,14 @@ export declare const Envelope: {
|
|
|
18207
18315
|
width?: number | undefined;
|
|
18208
18316
|
height?: number | undefined;
|
|
18209
18317
|
}[]>]: never; }) | undefined;
|
|
18210
|
-
} & { [
|
|
18318
|
+
} & { [K_647 in Exclude<keyof I_1["list_data_socket"]["channel_attachment_list"], "attachments">]: never; }) | undefined;
|
|
18211
18319
|
hashtag_dm_req?: ({
|
|
18212
18320
|
user_id?: string[] | undefined;
|
|
18213
18321
|
limit?: number | undefined;
|
|
18214
18322
|
} & {
|
|
18215
|
-
user_id?: (string[] & string[] & { [
|
|
18323
|
+
user_id?: (string[] & string[] & { [K_648 in Exclude<keyof I_1["list_data_socket"]["hashtag_dm_req"]["user_id"], keyof string[]>]: never; }) | undefined;
|
|
18216
18324
|
limit?: number | undefined;
|
|
18217
|
-
} & { [
|
|
18325
|
+
} & { [K_649 in Exclude<keyof I_1["list_data_socket"]["hashtag_dm_req"], keyof HashtagDmListRequest>]: never; }) | undefined;
|
|
18218
18326
|
hashtag_dm_list?: ({
|
|
18219
18327
|
hashtag_dm?: {
|
|
18220
18328
|
channel_id?: string | undefined;
|
|
@@ -18254,7 +18362,7 @@ export declare const Envelope: {
|
|
|
18254
18362
|
type?: number | undefined;
|
|
18255
18363
|
channel_private?: number | undefined;
|
|
18256
18364
|
parent_id?: string | undefined;
|
|
18257
|
-
} & { [
|
|
18365
|
+
} & { [K_650 in Exclude<keyof I_1["list_data_socket"]["hashtag_dm_list"]["hashtag_dm"][number], keyof import("../api/api").HashtagDm>]: never; })[] & { [K_651 in Exclude<keyof I_1["list_data_socket"]["hashtag_dm_list"]["hashtag_dm"], keyof {
|
|
18258
18366
|
channel_id?: string | undefined;
|
|
18259
18367
|
channel_label?: string | undefined;
|
|
18260
18368
|
clan_id?: string | undefined;
|
|
@@ -18264,7 +18372,7 @@ export declare const Envelope: {
|
|
|
18264
18372
|
channel_private?: number | undefined;
|
|
18265
18373
|
parent_id?: string | undefined;
|
|
18266
18374
|
}[]>]: never; }) | undefined;
|
|
18267
|
-
} & { [
|
|
18375
|
+
} & { [K_652 in Exclude<keyof I_1["list_data_socket"]["hashtag_dm_list"], "hashtag_dm">]: never; }) | undefined;
|
|
18268
18376
|
channel_setting_req?: ({
|
|
18269
18377
|
clan_id?: string | undefined;
|
|
18270
18378
|
parent_id?: string | undefined;
|
|
@@ -18287,7 +18395,7 @@ export declare const Envelope: {
|
|
|
18287
18395
|
limit?: number | undefined;
|
|
18288
18396
|
page?: number | undefined;
|
|
18289
18397
|
channel_label?: string | undefined;
|
|
18290
|
-
} & { [
|
|
18398
|
+
} & { [K_653 in Exclude<keyof I_1["list_data_socket"]["channel_setting_req"], keyof ChannelSettingListRequest>]: never; }) | undefined;
|
|
18291
18399
|
channel_setting_list?: ({
|
|
18292
18400
|
clan_id?: string | undefined;
|
|
18293
18401
|
channel_count?: number | undefined;
|
|
@@ -18376,7 +18484,7 @@ export declare const Envelope: {
|
|
|
18376
18484
|
channel_private?: number | undefined;
|
|
18377
18485
|
channel_type?: number | undefined;
|
|
18378
18486
|
active?: number | undefined;
|
|
18379
|
-
user_ids?: (string[] & string[] & { [
|
|
18487
|
+
user_ids?: (string[] & string[] & { [K_654 in Exclude<keyof I_1["list_data_socket"]["channel_setting_list"]["channel_setting_list"][number]["user_ids"], keyof string[]>]: never; }) | undefined;
|
|
18380
18488
|
message_count?: number | undefined;
|
|
18381
18489
|
last_sent_message?: ({
|
|
18382
18490
|
id?: string | undefined;
|
|
@@ -18397,9 +18505,9 @@ export declare const Envelope: {
|
|
|
18397
18505
|
reference?: string | undefined;
|
|
18398
18506
|
mention?: string | undefined;
|
|
18399
18507
|
reaction?: string | undefined;
|
|
18400
|
-
repliers?: (string[] & string[] & { [
|
|
18401
|
-
} & { [
|
|
18402
|
-
} & { [
|
|
18508
|
+
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;
|
|
18509
|
+
} & { [K_656 in Exclude<keyof I_1["list_data_socket"]["channel_setting_list"]["channel_setting_list"][number]["last_sent_message"], keyof ChannelMessageHeader>]: never; }) | undefined;
|
|
18510
|
+
} & { [K_657 in Exclude<keyof I_1["list_data_socket"]["channel_setting_list"]["channel_setting_list"][number], keyof import("../api/api").ChannelSettingItem>]: never; })[] & { [K_658 in Exclude<keyof I_1["list_data_socket"]["channel_setting_list"]["channel_setting_list"], keyof {
|
|
18403
18511
|
id?: string | undefined;
|
|
18404
18512
|
creator_id?: string | undefined;
|
|
18405
18513
|
parent_id?: string | undefined;
|
|
@@ -18423,17 +18531,17 @@ export declare const Envelope: {
|
|
|
18423
18531
|
repliers?: string[] | undefined;
|
|
18424
18532
|
} | undefined;
|
|
18425
18533
|
}[]>]: never; }) | undefined;
|
|
18426
|
-
} & { [
|
|
18534
|
+
} & { [K_659 in Exclude<keyof I_1["list_data_socket"]["channel_setting_list"], keyof ChannelSettingListResponse>]: never; }) | undefined;
|
|
18427
18535
|
favorite_channel_req?: ({
|
|
18428
18536
|
clan_id?: string | undefined;
|
|
18429
18537
|
} & {
|
|
18430
18538
|
clan_id?: string | undefined;
|
|
18431
|
-
} & { [
|
|
18539
|
+
} & { [K_660 in Exclude<keyof I_1["list_data_socket"]["favorite_channel_req"], "clan_id">]: never; }) | undefined;
|
|
18432
18540
|
favorite_channel_list?: ({
|
|
18433
18541
|
channel_ids?: string[] | undefined;
|
|
18434
18542
|
} & {
|
|
18435
|
-
channel_ids?: (string[] & string[] & { [
|
|
18436
|
-
} & { [
|
|
18543
|
+
channel_ids?: (string[] & string[] & { [K_661 in Exclude<keyof I_1["list_data_socket"]["favorite_channel_list"]["channel_ids"], keyof string[]>]: never; }) | undefined;
|
|
18544
|
+
} & { [K_662 in Exclude<keyof I_1["list_data_socket"]["favorite_channel_list"], "channel_ids">]: never; }) | undefined;
|
|
18437
18545
|
search_thread_req?: ({
|
|
18438
18546
|
clan_id?: string | undefined;
|
|
18439
18547
|
channel_id?: string | undefined;
|
|
@@ -18442,12 +18550,12 @@ export declare const Envelope: {
|
|
|
18442
18550
|
clan_id?: string | undefined;
|
|
18443
18551
|
channel_id?: string | undefined;
|
|
18444
18552
|
label?: string | undefined;
|
|
18445
|
-
} & { [
|
|
18553
|
+
} & { [K_663 in Exclude<keyof I_1["list_data_socket"]["search_thread_req"], keyof SearchThreadRequest>]: never; }) | undefined;
|
|
18446
18554
|
notification_channel?: ({
|
|
18447
18555
|
channel_id?: string | undefined;
|
|
18448
18556
|
} & {
|
|
18449
18557
|
channel_id?: string | undefined;
|
|
18450
|
-
} & { [
|
|
18558
|
+
} & { [K_664 in Exclude<keyof I_1["list_data_socket"]["notification_channel"], "channel_id">]: never; }) | undefined;
|
|
18451
18559
|
notificaion_user_channel?: ({
|
|
18452
18560
|
id?: string | undefined;
|
|
18453
18561
|
notification_setting_type?: number | undefined;
|
|
@@ -18460,24 +18568,24 @@ export declare const Envelope: {
|
|
|
18460
18568
|
time_mute?: Date | undefined;
|
|
18461
18569
|
active?: number | undefined;
|
|
18462
18570
|
channel_id?: string | undefined;
|
|
18463
|
-
} & { [
|
|
18571
|
+
} & { [K_665 in Exclude<keyof I_1["list_data_socket"]["notificaion_user_channel"], keyof NotificationUserChannel>]: never; }) | undefined;
|
|
18464
18572
|
notification_category?: ({
|
|
18465
18573
|
category_id?: string | undefined;
|
|
18466
18574
|
} & {
|
|
18467
18575
|
category_id?: string | undefined;
|
|
18468
|
-
} & { [
|
|
18576
|
+
} & { [K_666 in Exclude<keyof I_1["list_data_socket"]["notification_category"], "category_id">]: never; }) | undefined;
|
|
18469
18577
|
notification_clan?: ({
|
|
18470
18578
|
clan_id?: string | undefined;
|
|
18471
18579
|
} & {
|
|
18472
18580
|
clan_id?: string | undefined;
|
|
18473
|
-
} & { [
|
|
18581
|
+
} & { [K_667 in Exclude<keyof I_1["list_data_socket"]["notification_clan"], "clan_id">]: never; }) | undefined;
|
|
18474
18582
|
notification_setting?: ({
|
|
18475
18583
|
id?: string | undefined;
|
|
18476
18584
|
notification_setting_type?: number | undefined;
|
|
18477
18585
|
} & {
|
|
18478
18586
|
id?: string | undefined;
|
|
18479
18587
|
notification_setting_type?: number | undefined;
|
|
18480
|
-
} & { [
|
|
18588
|
+
} & { [K_668 in Exclude<keyof I_1["list_data_socket"]["notification_setting"], keyof NotificationSetting>]: never; }) | undefined;
|
|
18481
18589
|
notification_message?: ({
|
|
18482
18590
|
id?: string | undefined;
|
|
18483
18591
|
user_id?: string | undefined;
|
|
@@ -18486,7 +18594,7 @@ export declare const Envelope: {
|
|
|
18486
18594
|
id?: string | undefined;
|
|
18487
18595
|
user_id?: string | undefined;
|
|
18488
18596
|
channel_id?: string | undefined;
|
|
18489
|
-
} & { [
|
|
18597
|
+
} & { [K_669 in Exclude<keyof I_1["list_data_socket"]["notification_message"], keyof NotifiReactMessage>]: never; }) | undefined;
|
|
18490
18598
|
noti_channel_cat_setting_list?: ({
|
|
18491
18599
|
notification_channel_category_settings_list?: {
|
|
18492
18600
|
id?: string | undefined;
|
|
@@ -18514,14 +18622,14 @@ export declare const Envelope: {
|
|
|
18514
18622
|
notification_setting_type?: number | undefined;
|
|
18515
18623
|
channel_category_title?: string | undefined;
|
|
18516
18624
|
action?: number | undefined;
|
|
18517
|
-
} & { [
|
|
18625
|
+
} & { [K_670 in Exclude<keyof I_1["list_data_socket"]["noti_channel_cat_setting_list"]["notification_channel_category_settings_list"][number], keyof import("../api/api").NotificationChannelCategorySetting>]: never; })[] & { [K_671 in Exclude<keyof I_1["list_data_socket"]["noti_channel_cat_setting_list"]["notification_channel_category_settings_list"], keyof {
|
|
18518
18626
|
id?: string | undefined;
|
|
18519
18627
|
channel_category_label?: string | undefined;
|
|
18520
18628
|
notification_setting_type?: number | undefined;
|
|
18521
18629
|
channel_category_title?: string | undefined;
|
|
18522
18630
|
action?: number | undefined;
|
|
18523
18631
|
}[]>]: never; }) | undefined;
|
|
18524
|
-
} & { [
|
|
18632
|
+
} & { [K_672 in Exclude<keyof I_1["list_data_socket"]["noti_channel_cat_setting_list"], "notification_channel_category_settings_list">]: never; }) | undefined;
|
|
18525
18633
|
list_notification_req?: ({
|
|
18526
18634
|
limit?: number | undefined;
|
|
18527
18635
|
clan_id?: string | undefined;
|
|
@@ -18534,7 +18642,7 @@ export declare const Envelope: {
|
|
|
18534
18642
|
notification_id?: string | undefined;
|
|
18535
18643
|
category?: number | undefined;
|
|
18536
18644
|
direction?: number | undefined;
|
|
18537
|
-
} & { [
|
|
18645
|
+
} & { [K_673 in Exclude<keyof I_1["list_data_socket"]["list_notification_req"], keyof ListNotificationsRequest>]: never; }) | undefined;
|
|
18538
18646
|
notification_list?: ({
|
|
18539
18647
|
notifications?: {
|
|
18540
18648
|
id?: string | undefined;
|
|
@@ -18814,8 +18922,8 @@ export declare const Envelope: {
|
|
|
18814
18922
|
creator_id?: string | undefined;
|
|
18815
18923
|
channel_label?: string | undefined;
|
|
18816
18924
|
channel_private?: number | undefined;
|
|
18817
|
-
channel_avatar?: (string[] & string[] & { [
|
|
18818
|
-
user_id?: (string[] & string[] & { [
|
|
18925
|
+
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;
|
|
18926
|
+
user_id?: (string[] & string[] & { [K_675 in Exclude<keyof I_1["list_data_socket"]["notification_list"]["notifications"][number]["channel"]["user_id"], keyof string[]>]: never; }) | undefined;
|
|
18819
18927
|
last_sent_message?: ({
|
|
18820
18928
|
id?: string | undefined;
|
|
18821
18929
|
timestamp_seconds?: number | undefined;
|
|
@@ -18835,8 +18943,8 @@ export declare const Envelope: {
|
|
|
18835
18943
|
reference?: string | undefined;
|
|
18836
18944
|
mention?: string | undefined;
|
|
18837
18945
|
reaction?: string | undefined;
|
|
18838
|
-
repliers?: (string[] & string[] & { [
|
|
18839
|
-
} & { [
|
|
18946
|
+
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;
|
|
18947
|
+
} & { [K_677 in Exclude<keyof I_1["list_data_socket"]["notification_list"]["notifications"][number]["channel"]["last_sent_message"], keyof ChannelMessageHeader>]: never; }) | undefined;
|
|
18840
18948
|
last_seen_message?: ({
|
|
18841
18949
|
id?: string | undefined;
|
|
18842
18950
|
timestamp_seconds?: number | undefined;
|
|
@@ -18856,30 +18964,30 @@ export declare const Envelope: {
|
|
|
18856
18964
|
reference?: string | undefined;
|
|
18857
18965
|
mention?: string | undefined;
|
|
18858
18966
|
reaction?: string | undefined;
|
|
18859
|
-
repliers?: (string[] & string[] & { [
|
|
18860
|
-
} & { [
|
|
18861
|
-
is_online?: (boolean[] & boolean[] & { [
|
|
18967
|
+
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;
|
|
18968
|
+
} & { [K_679 in Exclude<keyof I_1["list_data_socket"]["notification_list"]["notifications"][number]["channel"]["last_seen_message"], keyof ChannelMessageHeader>]: never; }) | undefined;
|
|
18969
|
+
is_online?: (boolean[] & boolean[] & { [K_680 in Exclude<keyof I_1["list_data_socket"]["notification_list"]["notifications"][number]["channel"]["is_online"], keyof boolean[]>]: never; }) | undefined;
|
|
18862
18970
|
meeting_code?: string | undefined;
|
|
18863
18971
|
count_mess_unread?: number | undefined;
|
|
18864
18972
|
active?: number | undefined;
|
|
18865
18973
|
last_pin_message?: string | undefined;
|
|
18866
|
-
usernames?: (string[] & string[] & { [
|
|
18974
|
+
usernames?: (string[] & string[] & { [K_681 in Exclude<keyof I_1["list_data_socket"]["notification_list"]["notifications"][number]["channel"]["usernames"], keyof string[]>]: never; }) | undefined;
|
|
18867
18975
|
creator_name?: string | undefined;
|
|
18868
18976
|
create_time_seconds?: number | undefined;
|
|
18869
18977
|
update_time_seconds?: number | undefined;
|
|
18870
|
-
metadata?: (string[] & string[] & { [
|
|
18871
|
-
about_me?: (string[] & string[] & { [
|
|
18978
|
+
metadata?: (string[] & string[] & { [K_682 in Exclude<keyof I_1["list_data_socket"]["notification_list"]["notifications"][number]["channel"]["metadata"], keyof string[]>]: never; }) | undefined;
|
|
18979
|
+
about_me?: (string[] & string[] & { [K_683 in Exclude<keyof I_1["list_data_socket"]["notification_list"]["notifications"][number]["channel"]["about_me"], keyof string[]>]: never; }) | undefined;
|
|
18872
18980
|
clan_name?: string | undefined;
|
|
18873
18981
|
app_id?: string | undefined;
|
|
18874
18982
|
is_mute?: boolean | undefined;
|
|
18875
18983
|
age_restricted?: number | undefined;
|
|
18876
18984
|
topic?: string | undefined;
|
|
18877
18985
|
e2ee?: number | undefined;
|
|
18878
|
-
display_names?: (string[] & string[] & { [
|
|
18879
|
-
} & { [
|
|
18986
|
+
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;
|
|
18987
|
+
} & { [K_685 in Exclude<keyof I_1["list_data_socket"]["notification_list"]["notifications"][number]["channel"], keyof ChannelDescription1>]: never; }) | undefined;
|
|
18880
18988
|
topic_id?: string | undefined;
|
|
18881
18989
|
category?: number | undefined;
|
|
18882
|
-
} & { [
|
|
18990
|
+
} & { [K_686 in Exclude<keyof I_1["list_data_socket"]["notification_list"]["notifications"][number], keyof Notification>]: never; })[] & { [K_687 in Exclude<keyof I_1["list_data_socket"]["notification_list"]["notifications"], keyof {
|
|
18883
18991
|
id?: string | undefined;
|
|
18884
18992
|
subject?: string | undefined;
|
|
18885
18993
|
content?: string | undefined;
|
|
@@ -18948,7 +19056,7 @@ export declare const Envelope: {
|
|
|
18948
19056
|
category?: number | undefined;
|
|
18949
19057
|
}[]>]: never; }) | undefined;
|
|
18950
19058
|
cacheable_cursor?: string | undefined;
|
|
18951
|
-
} & { [
|
|
19059
|
+
} & { [K_688 in Exclude<keyof I_1["list_data_socket"]["notification_list"], keyof NotificationList>]: never; }) | undefined;
|
|
18952
19060
|
sticker_list?: ({
|
|
18953
19061
|
stickers?: {
|
|
18954
19062
|
id?: string | undefined;
|
|
@@ -19000,7 +19108,7 @@ export declare const Envelope: {
|
|
|
19000
19108
|
clan_name?: string | undefined;
|
|
19001
19109
|
media_type?: number | undefined;
|
|
19002
19110
|
is_for_sale?: boolean | undefined;
|
|
19003
|
-
} & { [
|
|
19111
|
+
} & { [K_689 in Exclude<keyof I_1["list_data_socket"]["sticker_list"]["stickers"][number], keyof import("../api/api").ClanSticker>]: never; })[] & { [K_690 in Exclude<keyof I_1["list_data_socket"]["sticker_list"]["stickers"], keyof {
|
|
19004
19112
|
id?: string | undefined;
|
|
19005
19113
|
source?: string | undefined;
|
|
19006
19114
|
shortname?: string | undefined;
|
|
@@ -19013,7 +19121,7 @@ export declare const Envelope: {
|
|
|
19013
19121
|
media_type?: number | undefined;
|
|
19014
19122
|
is_for_sale?: boolean | undefined;
|
|
19015
19123
|
}[]>]: never; }) | undefined;
|
|
19016
|
-
} & { [
|
|
19124
|
+
} & { [K_691 in Exclude<keyof I_1["list_data_socket"]["sticker_list"], "stickers">]: never; }) | undefined;
|
|
19017
19125
|
emoji_recent_list?: ({
|
|
19018
19126
|
emoji_recents?: {
|
|
19019
19127
|
emoji_recents_id?: string | undefined;
|
|
@@ -19033,17 +19141,17 @@ export declare const Envelope: {
|
|
|
19033
19141
|
emoji_recents_id?: string | undefined;
|
|
19034
19142
|
emoji_id?: string | undefined;
|
|
19035
19143
|
update_time?: Date | undefined;
|
|
19036
|
-
} & { [
|
|
19144
|
+
} & { [K_692 in Exclude<keyof I_1["list_data_socket"]["emoji_recent_list"]["emoji_recents"][number], keyof import("../api/api").EmojiRecent>]: never; })[] & { [K_693 in Exclude<keyof I_1["list_data_socket"]["emoji_recent_list"]["emoji_recents"], keyof {
|
|
19037
19145
|
emoji_recents_id?: string | undefined;
|
|
19038
19146
|
emoji_id?: string | undefined;
|
|
19039
19147
|
update_time?: Date | undefined;
|
|
19040
19148
|
}[]>]: never; }) | undefined;
|
|
19041
|
-
} & { [
|
|
19149
|
+
} & { [K_694 in Exclude<keyof I_1["list_data_socket"]["emoji_recent_list"], "emoji_recents">]: never; }) | undefined;
|
|
19042
19150
|
clan_webhook_req?: ({
|
|
19043
19151
|
clan_id?: string | undefined;
|
|
19044
19152
|
} & {
|
|
19045
19153
|
clan_id?: string | undefined;
|
|
19046
|
-
} & { [
|
|
19154
|
+
} & { [K_695 in Exclude<keyof I_1["list_data_socket"]["clan_webhook_req"], "clan_id">]: never; }) | undefined;
|
|
19047
19155
|
clan_webhook_list?: ({
|
|
19048
19156
|
list_clan_webhooks?: {
|
|
19049
19157
|
id?: string | undefined;
|
|
@@ -19087,7 +19195,7 @@ export declare const Envelope: {
|
|
|
19087
19195
|
avatar?: string | undefined;
|
|
19088
19196
|
create_time?: string | undefined;
|
|
19089
19197
|
update_time?: string | undefined;
|
|
19090
|
-
} & { [
|
|
19198
|
+
} & { [K_696 in Exclude<keyof I_1["list_data_socket"]["clan_webhook_list"]["list_clan_webhooks"][number], keyof import("../api/api").ClanWebhook>]: never; })[] & { [K_697 in Exclude<keyof I_1["list_data_socket"]["clan_webhook_list"]["list_clan_webhooks"], keyof {
|
|
19091
19199
|
id?: string | undefined;
|
|
19092
19200
|
webhook_name?: string | undefined;
|
|
19093
19201
|
clan_id?: string | undefined;
|
|
@@ -19098,14 +19206,14 @@ export declare const Envelope: {
|
|
|
19098
19206
|
create_time?: string | undefined;
|
|
19099
19207
|
update_time?: string | undefined;
|
|
19100
19208
|
}[]>]: never; }) | undefined;
|
|
19101
|
-
} & { [
|
|
19209
|
+
} & { [K_698 in Exclude<keyof I_1["list_data_socket"]["clan_webhook_list"], "list_clan_webhooks">]: never; }) | undefined;
|
|
19102
19210
|
webhook_list_req?: ({
|
|
19103
19211
|
channel_id?: string | undefined;
|
|
19104
19212
|
clan_id?: string | undefined;
|
|
19105
19213
|
} & {
|
|
19106
19214
|
channel_id?: string | undefined;
|
|
19107
19215
|
clan_id?: string | undefined;
|
|
19108
|
-
} & { [
|
|
19216
|
+
} & { [K_699 in Exclude<keyof I_1["list_data_socket"]["webhook_list_req"], keyof WebhookListRequest>]: never; }) | undefined;
|
|
19109
19217
|
webhook_list?: ({
|
|
19110
19218
|
webhooks?: {
|
|
19111
19219
|
id?: string | undefined;
|
|
@@ -19157,7 +19265,7 @@ export declare const Envelope: {
|
|
|
19157
19265
|
avatar?: string | undefined;
|
|
19158
19266
|
status?: number | undefined;
|
|
19159
19267
|
clan_id?: string | undefined;
|
|
19160
|
-
} & { [
|
|
19268
|
+
} & { [K_700 in Exclude<keyof I_1["list_data_socket"]["webhook_list"]["webhooks"][number], keyof Webhook>]: never; })[] & { [K_701 in Exclude<keyof I_1["list_data_socket"]["webhook_list"]["webhooks"], keyof {
|
|
19161
19269
|
id?: string | undefined;
|
|
19162
19270
|
webhook_name?: string | undefined;
|
|
19163
19271
|
channel_id?: string | undefined;
|
|
@@ -19170,12 +19278,12 @@ export declare const Envelope: {
|
|
|
19170
19278
|
status?: number | undefined;
|
|
19171
19279
|
clan_id?: string | undefined;
|
|
19172
19280
|
}[]>]: never; }) | undefined;
|
|
19173
|
-
} & { [
|
|
19281
|
+
} & { [K_702 in Exclude<keyof I_1["list_data_socket"]["webhook_list"], "webhooks">]: never; }) | undefined;
|
|
19174
19282
|
permission_list_req?: ({
|
|
19175
19283
|
role_id?: string | undefined;
|
|
19176
19284
|
} & {
|
|
19177
19285
|
role_id?: string | undefined;
|
|
19178
|
-
} & { [
|
|
19286
|
+
} & { [K_703 in Exclude<keyof I_1["list_data_socket"]["permission_list_req"], "role_id">]: never; }) | undefined;
|
|
19179
19287
|
permission_list?: ({
|
|
19180
19288
|
permissions?: {
|
|
19181
19289
|
id?: string | undefined;
|
|
@@ -19212,7 +19320,7 @@ export declare const Envelope: {
|
|
|
19212
19320
|
active?: number | undefined;
|
|
19213
19321
|
scope?: number | undefined;
|
|
19214
19322
|
level?: number | undefined;
|
|
19215
|
-
} & { [
|
|
19323
|
+
} & { [K_704 in Exclude<keyof I_1["list_data_socket"]["permission_list"]["permissions"][number], keyof import("../api/api").Permission>]: never; })[] & { [K_705 in Exclude<keyof I_1["list_data_socket"]["permission_list"]["permissions"], keyof {
|
|
19216
19324
|
id?: string | undefined;
|
|
19217
19325
|
title?: string | undefined;
|
|
19218
19326
|
slug?: string | undefined;
|
|
@@ -19222,7 +19330,7 @@ export declare const Envelope: {
|
|
|
19222
19330
|
level?: number | undefined;
|
|
19223
19331
|
}[]>]: never; }) | undefined;
|
|
19224
19332
|
max_level_permission?: number | undefined;
|
|
19225
|
-
} & { [
|
|
19333
|
+
} & { [K_706 in Exclude<keyof I_1["list_data_socket"]["permission_list"], keyof PermissionList>]: never; }) | undefined;
|
|
19226
19334
|
role_user_req?: ({
|
|
19227
19335
|
role_id?: string | undefined;
|
|
19228
19336
|
limit?: number | undefined;
|
|
@@ -19231,7 +19339,7 @@ export declare const Envelope: {
|
|
|
19231
19339
|
role_id?: string | undefined;
|
|
19232
19340
|
limit?: number | undefined;
|
|
19233
19341
|
cursor?: string | undefined;
|
|
19234
|
-
} & { [
|
|
19342
|
+
} & { [K_707 in Exclude<keyof I_1["list_data_socket"]["role_user_req"], keyof ListRoleUsersRequest>]: never; }) | undefined;
|
|
19235
19343
|
role_user_list?: ({
|
|
19236
19344
|
role_users?: {
|
|
19237
19345
|
id?: string | undefined;
|
|
@@ -19268,7 +19376,7 @@ export declare const Envelope: {
|
|
|
19268
19376
|
lang_tag?: string | undefined;
|
|
19269
19377
|
location?: string | undefined;
|
|
19270
19378
|
online?: boolean | undefined;
|
|
19271
|
-
} & { [
|
|
19379
|
+
} & { [K_708 in Exclude<keyof I_1["list_data_socket"]["role_user_list"]["role_users"][number], keyof import("../api/api").RoleUserList_RoleUser>]: never; })[] & { [K_709 in Exclude<keyof I_1["list_data_socket"]["role_user_list"]["role_users"], keyof {
|
|
19272
19380
|
id?: string | undefined;
|
|
19273
19381
|
username?: string | undefined;
|
|
19274
19382
|
display_name?: string | undefined;
|
|
@@ -19278,14 +19386,14 @@ export declare const Envelope: {
|
|
|
19278
19386
|
online?: boolean | undefined;
|
|
19279
19387
|
}[]>]: never; }) | undefined;
|
|
19280
19388
|
cursor?: string | undefined;
|
|
19281
|
-
} & { [
|
|
19389
|
+
} & { [K_710 in Exclude<keyof I_1["list_data_socket"]["role_user_list"], keyof RoleUserList>]: never; }) | undefined;
|
|
19282
19390
|
permission_user_req?: ({
|
|
19283
19391
|
clan_id?: string | undefined;
|
|
19284
19392
|
channel_id?: string | undefined;
|
|
19285
19393
|
} & {
|
|
19286
19394
|
clan_id?: string | undefined;
|
|
19287
19395
|
channel_id?: string | undefined;
|
|
19288
|
-
} & { [
|
|
19396
|
+
} & { [K_711 in Exclude<keyof I_1["list_data_socket"]["permission_user_req"], keyof ListPermissionOfUsersRequest>]: never; }) | undefined;
|
|
19289
19397
|
role_list?: ({
|
|
19290
19398
|
roles?: {
|
|
19291
19399
|
id?: string | undefined;
|
|
@@ -19460,7 +19568,7 @@ export declare const Envelope: {
|
|
|
19460
19568
|
lang_tag?: string | undefined;
|
|
19461
19569
|
location?: string | undefined;
|
|
19462
19570
|
online?: boolean | undefined;
|
|
19463
|
-
} & { [
|
|
19571
|
+
} & { [K_712 in Exclude<keyof I_1["list_data_socket"]["role_list"]["roles"][number]["role_user_list"]["role_users"][number], keyof import("../api/api").RoleUserList_RoleUser>]: never; })[] & { [K_713 in Exclude<keyof I_1["list_data_socket"]["role_list"]["roles"][number]["role_user_list"]["role_users"], keyof {
|
|
19464
19572
|
id?: string | undefined;
|
|
19465
19573
|
username?: string | undefined;
|
|
19466
19574
|
display_name?: string | undefined;
|
|
@@ -19470,7 +19578,7 @@ export declare const Envelope: {
|
|
|
19470
19578
|
online?: boolean | undefined;
|
|
19471
19579
|
}[]>]: never; }) | undefined;
|
|
19472
19580
|
cursor?: string | undefined;
|
|
19473
|
-
} & { [
|
|
19581
|
+
} & { [K_714 in Exclude<keyof I_1["list_data_socket"]["role_list"]["roles"][number]["role_user_list"], keyof RoleUserList>]: never; }) | undefined;
|
|
19474
19582
|
permission_list?: ({
|
|
19475
19583
|
permissions?: {
|
|
19476
19584
|
id?: string | undefined;
|
|
@@ -19507,7 +19615,7 @@ export declare const Envelope: {
|
|
|
19507
19615
|
active?: number | undefined;
|
|
19508
19616
|
scope?: number | undefined;
|
|
19509
19617
|
level?: number | undefined;
|
|
19510
|
-
} & { [
|
|
19618
|
+
} & { [K_715 in Exclude<keyof I_1["list_data_socket"]["role_list"]["roles"][number]["permission_list"]["permissions"][number], keyof import("../api/api").Permission>]: never; })[] & { [K_716 in Exclude<keyof I_1["list_data_socket"]["role_list"]["roles"][number]["permission_list"]["permissions"], keyof {
|
|
19511
19619
|
id?: string | undefined;
|
|
19512
19620
|
title?: string | undefined;
|
|
19513
19621
|
slug?: string | undefined;
|
|
@@ -19517,12 +19625,12 @@ export declare const Envelope: {
|
|
|
19517
19625
|
level?: number | undefined;
|
|
19518
19626
|
}[]>]: never; }) | undefined;
|
|
19519
19627
|
max_level_permission?: number | undefined;
|
|
19520
|
-
} & { [
|
|
19628
|
+
} & { [K_717 in Exclude<keyof I_1["list_data_socket"]["role_list"]["roles"][number]["permission_list"], keyof PermissionList>]: never; }) | undefined;
|
|
19521
19629
|
role_channel_active?: number | undefined;
|
|
19522
|
-
channel_ids?: (string[] & string[] & { [
|
|
19630
|
+
channel_ids?: (string[] & string[] & { [K_718 in Exclude<keyof I_1["list_data_socket"]["role_list"]["roles"][number]["channel_ids"], keyof string[]>]: never; }) | undefined;
|
|
19523
19631
|
max_level_permission?: number | undefined;
|
|
19524
19632
|
order_role?: number | undefined;
|
|
19525
|
-
} & { [
|
|
19633
|
+
} & { [K_719 in Exclude<keyof I_1["list_data_socket"]["role_list"]["roles"][number], keyof Role>]: never; })[] & { [K_720 in Exclude<keyof I_1["list_data_socket"]["role_list"]["roles"], keyof {
|
|
19526
19634
|
id?: string | undefined;
|
|
19527
19635
|
title?: string | undefined;
|
|
19528
19636
|
color?: string | undefined;
|
|
@@ -19566,7 +19674,7 @@ export declare const Envelope: {
|
|
|
19566
19674
|
next_cursor?: string | undefined;
|
|
19567
19675
|
prev_cursor?: string | undefined;
|
|
19568
19676
|
cacheable_cursor?: string | undefined;
|
|
19569
|
-
} & { [
|
|
19677
|
+
} & { [K_721 in Exclude<keyof I_1["list_data_socket"]["role_list"], keyof RoleList>]: never; }) | undefined;
|
|
19570
19678
|
role_list_event_req?: ({
|
|
19571
19679
|
clan_id?: string | undefined;
|
|
19572
19680
|
limit?: number | undefined;
|
|
@@ -19577,7 +19685,7 @@ export declare const Envelope: {
|
|
|
19577
19685
|
limit?: number | undefined;
|
|
19578
19686
|
state?: number | undefined;
|
|
19579
19687
|
cursor?: string | undefined;
|
|
19580
|
-
} & { [
|
|
19688
|
+
} & { [K_722 in Exclude<keyof I_1["list_data_socket"]["role_list_event_req"], keyof RoleListEventRequest>]: never; }) | undefined;
|
|
19581
19689
|
role_event_list?: ({
|
|
19582
19690
|
limit?: number | undefined;
|
|
19583
19691
|
state?: number | undefined;
|
|
@@ -19808,7 +19916,7 @@ export declare const Envelope: {
|
|
|
19808
19916
|
lang_tag?: string | undefined;
|
|
19809
19917
|
location?: string | undefined;
|
|
19810
19918
|
online?: boolean | undefined;
|
|
19811
|
-
} & { [
|
|
19919
|
+
} & { [K_723 in Exclude<keyof I_1["list_data_socket"]["role_event_list"]["roles"]["roles"][number]["role_user_list"]["role_users"][number], keyof import("../api/api").RoleUserList_RoleUser>]: never; })[] & { [K_724 in Exclude<keyof I_1["list_data_socket"]["role_event_list"]["roles"]["roles"][number]["role_user_list"]["role_users"], keyof {
|
|
19812
19920
|
id?: string | undefined;
|
|
19813
19921
|
username?: string | undefined;
|
|
19814
19922
|
display_name?: string | undefined;
|
|
@@ -19818,7 +19926,7 @@ export declare const Envelope: {
|
|
|
19818
19926
|
online?: boolean | undefined;
|
|
19819
19927
|
}[]>]: never; }) | undefined;
|
|
19820
19928
|
cursor?: string | undefined;
|
|
19821
|
-
} & { [
|
|
19929
|
+
} & { [K_725 in Exclude<keyof I_1["list_data_socket"]["role_event_list"]["roles"]["roles"][number]["role_user_list"], keyof RoleUserList>]: never; }) | undefined;
|
|
19822
19930
|
permission_list?: ({
|
|
19823
19931
|
permissions?: {
|
|
19824
19932
|
id?: string | undefined;
|
|
@@ -19855,7 +19963,7 @@ export declare const Envelope: {
|
|
|
19855
19963
|
active?: number | undefined;
|
|
19856
19964
|
scope?: number | undefined;
|
|
19857
19965
|
level?: number | undefined;
|
|
19858
|
-
} & { [
|
|
19966
|
+
} & { [K_726 in Exclude<keyof I_1["list_data_socket"]["role_event_list"]["roles"]["roles"][number]["permission_list"]["permissions"][number], keyof import("../api/api").Permission>]: never; })[] & { [K_727 in Exclude<keyof I_1["list_data_socket"]["role_event_list"]["roles"]["roles"][number]["permission_list"]["permissions"], keyof {
|
|
19859
19967
|
id?: string | undefined;
|
|
19860
19968
|
title?: string | undefined;
|
|
19861
19969
|
slug?: string | undefined;
|
|
@@ -19865,12 +19973,12 @@ export declare const Envelope: {
|
|
|
19865
19973
|
level?: number | undefined;
|
|
19866
19974
|
}[]>]: never; }) | undefined;
|
|
19867
19975
|
max_level_permission?: number | undefined;
|
|
19868
|
-
} & { [
|
|
19976
|
+
} & { [K_728 in Exclude<keyof I_1["list_data_socket"]["role_event_list"]["roles"]["roles"][number]["permission_list"], keyof PermissionList>]: never; }) | undefined;
|
|
19869
19977
|
role_channel_active?: number | undefined;
|
|
19870
|
-
channel_ids?: (string[] & string[] & { [
|
|
19978
|
+
channel_ids?: (string[] & string[] & { [K_729 in Exclude<keyof I_1["list_data_socket"]["role_event_list"]["roles"]["roles"][number]["channel_ids"], keyof string[]>]: never; }) | undefined;
|
|
19871
19979
|
max_level_permission?: number | undefined;
|
|
19872
19980
|
order_role?: number | undefined;
|
|
19873
|
-
} & { [
|
|
19981
|
+
} & { [K_730 in Exclude<keyof I_1["list_data_socket"]["role_event_list"]["roles"]["roles"][number], keyof Role>]: never; })[] & { [K_731 in Exclude<keyof I_1["list_data_socket"]["role_event_list"]["roles"]["roles"], keyof {
|
|
19874
19982
|
id?: string | undefined;
|
|
19875
19983
|
title?: string | undefined;
|
|
19876
19984
|
color?: string | undefined;
|
|
@@ -19914,15 +20022,15 @@ export declare const Envelope: {
|
|
|
19914
20022
|
next_cursor?: string | undefined;
|
|
19915
20023
|
prev_cursor?: string | undefined;
|
|
19916
20024
|
cacheable_cursor?: string | undefined;
|
|
19917
|
-
} & { [
|
|
19918
|
-
} & { [
|
|
20025
|
+
} & { [K_732 in Exclude<keyof I_1["list_data_socket"]["role_event_list"]["roles"], keyof RoleList>]: never; }) | undefined;
|
|
20026
|
+
} & { [K_733 in Exclude<keyof I_1["list_data_socket"]["role_event_list"], keyof RoleListEventResponse>]: never; }) | undefined;
|
|
19919
20027
|
user_permission_req?: ({
|
|
19920
20028
|
clan_id?: string | undefined;
|
|
19921
20029
|
channel_id?: string | undefined;
|
|
19922
20030
|
} & {
|
|
19923
20031
|
clan_id?: string | undefined;
|
|
19924
20032
|
channel_id?: string | undefined;
|
|
19925
|
-
} & { [
|
|
20033
|
+
} & { [K_734 in Exclude<keyof I_1["list_data_socket"]["user_permission_req"], keyof UserPermissionInChannelListRequest>]: never; }) | undefined;
|
|
19926
20034
|
user_permission_list?: ({
|
|
19927
20035
|
clan_id?: string | undefined;
|
|
19928
20036
|
channel_id?: string | undefined;
|
|
@@ -19977,7 +20085,7 @@ export declare const Envelope: {
|
|
|
19977
20085
|
active?: number | undefined;
|
|
19978
20086
|
scope?: number | undefined;
|
|
19979
20087
|
level?: number | undefined;
|
|
19980
|
-
} & { [
|
|
20088
|
+
} & { [K_735 in Exclude<keyof I_1["list_data_socket"]["user_permission_list"]["permissions"]["permissions"][number], keyof import("../api/api").Permission>]: never; })[] & { [K_736 in Exclude<keyof I_1["list_data_socket"]["user_permission_list"]["permissions"]["permissions"], keyof {
|
|
19981
20089
|
id?: string | undefined;
|
|
19982
20090
|
title?: string | undefined;
|
|
19983
20091
|
slug?: string | undefined;
|
|
@@ -19987,8 +20095,8 @@ export declare const Envelope: {
|
|
|
19987
20095
|
level?: number | undefined;
|
|
19988
20096
|
}[]>]: never; }) | undefined;
|
|
19989
20097
|
max_level_permission?: number | undefined;
|
|
19990
|
-
} & { [
|
|
19991
|
-
} & { [
|
|
20098
|
+
} & { [K_737 in Exclude<keyof I_1["list_data_socket"]["user_permission_list"]["permissions"], keyof PermissionList>]: never; }) | undefined;
|
|
20099
|
+
} & { [K_738 in Exclude<keyof I_1["list_data_socket"]["user_permission_list"], keyof UserPermissionInChannelListResponse>]: never; }) | undefined;
|
|
19992
20100
|
permission_role_req?: ({
|
|
19993
20101
|
role_id?: string | undefined;
|
|
19994
20102
|
channel_id?: string | undefined;
|
|
@@ -19997,7 +20105,7 @@ export declare const Envelope: {
|
|
|
19997
20105
|
role_id?: string | undefined;
|
|
19998
20106
|
channel_id?: string | undefined;
|
|
19999
20107
|
user_id?: string | undefined;
|
|
20000
|
-
} & { [
|
|
20108
|
+
} & { [K_739 in Exclude<keyof I_1["list_data_socket"]["permission_role_req"], keyof PermissionRoleChannelListEventRequest>]: never; }) | undefined;
|
|
20001
20109
|
permission_role_list?: ({
|
|
20002
20110
|
role_id?: string | undefined;
|
|
20003
20111
|
channel_id?: string | undefined;
|
|
@@ -20019,11 +20127,11 @@ export declare const Envelope: {
|
|
|
20019
20127
|
} & {
|
|
20020
20128
|
permission_id?: string | undefined;
|
|
20021
20129
|
active?: boolean | undefined;
|
|
20022
|
-
} & { [
|
|
20130
|
+
} & { [K_740 in Exclude<keyof I_1["list_data_socket"]["permission_role_list"]["permission_role_channel"][number], keyof import("../api/api").PermissionRoleChannel>]: never; })[] & { [K_741 in Exclude<keyof I_1["list_data_socket"]["permission_role_list"]["permission_role_channel"], keyof {
|
|
20023
20131
|
permission_id?: string | undefined;
|
|
20024
20132
|
active?: boolean | undefined;
|
|
20025
20133
|
}[]>]: never; }) | undefined;
|
|
20026
|
-
} & { [
|
|
20134
|
+
} & { [K_742 in Exclude<keyof I_1["list_data_socket"]["permission_role_list"], keyof PermissionRoleChannelListEventResponse>]: never; }) | undefined;
|
|
20027
20135
|
emoji_list?: ({
|
|
20028
20136
|
emoji_list?: {
|
|
20029
20137
|
id?: string | undefined;
|
|
@@ -20067,7 +20175,7 @@ export declare const Envelope: {
|
|
|
20067
20175
|
logo?: string | undefined;
|
|
20068
20176
|
clan_name?: string | undefined;
|
|
20069
20177
|
is_for_sale?: boolean | undefined;
|
|
20070
|
-
} & { [
|
|
20178
|
+
} & { [K_743 in Exclude<keyof I_1["list_data_socket"]["emoji_list"]["emoji_list"][number], keyof import("../api/api").ClanEmoji>]: never; })[] & { [K_744 in Exclude<keyof I_1["list_data_socket"]["emoji_list"]["emoji_list"], keyof {
|
|
20071
20179
|
id?: string | undefined;
|
|
20072
20180
|
src?: string | undefined;
|
|
20073
20181
|
shortname?: string | undefined;
|
|
@@ -20078,7 +20186,7 @@ export declare const Envelope: {
|
|
|
20078
20186
|
clan_name?: string | undefined;
|
|
20079
20187
|
is_for_sale?: boolean | undefined;
|
|
20080
20188
|
}[]>]: never; }) | undefined;
|
|
20081
|
-
} & { [
|
|
20189
|
+
} & { [K_745 in Exclude<keyof I_1["list_data_socket"]["emoji_list"], "emoji_list">]: never; }) | undefined;
|
|
20082
20190
|
list_friend_req?: ({
|
|
20083
20191
|
limit?: number | undefined;
|
|
20084
20192
|
state?: number | undefined;
|
|
@@ -20087,7 +20195,7 @@ export declare const Envelope: {
|
|
|
20087
20195
|
limit?: number | undefined;
|
|
20088
20196
|
state?: number | undefined;
|
|
20089
20197
|
cursor?: string | undefined;
|
|
20090
|
-
} & { [
|
|
20198
|
+
} & { [K_746 in Exclude<keyof I_1["list_data_socket"]["list_friend_req"], keyof ListFriendsRequest>]: never; }) | undefined;
|
|
20091
20199
|
friend_list?: ({
|
|
20092
20200
|
friends?: {
|
|
20093
20201
|
user?: {
|
|
@@ -20227,12 +20335,12 @@ export declare const Envelope: {
|
|
|
20227
20335
|
is_mobile?: boolean | undefined;
|
|
20228
20336
|
dob?: Date | undefined;
|
|
20229
20337
|
mezon_id?: string | undefined;
|
|
20230
|
-
list_nick_names?: (string[] & string[] & { [
|
|
20231
|
-
} & { [
|
|
20338
|
+
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;
|
|
20339
|
+
} & { [K_748 in Exclude<keyof I_1["list_data_socket"]["friend_list"]["friends"][number]["user"], keyof import("../api/api").User>]: never; }) | undefined;
|
|
20232
20340
|
state?: number | undefined;
|
|
20233
20341
|
update_time?: Date | undefined;
|
|
20234
20342
|
source_id?: string | undefined;
|
|
20235
|
-
} & { [
|
|
20343
|
+
} & { [K_749 in Exclude<keyof I_1["list_data_socket"]["friend_list"]["friends"][number], keyof import("../api/api").Friend>]: never; })[] & { [K_750 in Exclude<keyof I_1["list_data_socket"]["friend_list"]["friends"], keyof {
|
|
20236
20344
|
user?: {
|
|
20237
20345
|
id?: string | undefined;
|
|
20238
20346
|
username?: string | undefined;
|
|
@@ -20263,12 +20371,12 @@ export declare const Envelope: {
|
|
|
20263
20371
|
source_id?: string | undefined;
|
|
20264
20372
|
}[]>]: never; }) | undefined;
|
|
20265
20373
|
cursor?: string | undefined;
|
|
20266
|
-
} & { [
|
|
20374
|
+
} & { [K_751 in Exclude<keyof I_1["list_data_socket"]["friend_list"], keyof FriendList>]: never; }) | undefined;
|
|
20267
20375
|
list_apps_req?: ({
|
|
20268
20376
|
clan_id?: string | undefined;
|
|
20269
20377
|
} & {
|
|
20270
20378
|
clan_id?: string | undefined;
|
|
20271
|
-
} & { [
|
|
20379
|
+
} & { [K_752 in Exclude<keyof I_1["list_data_socket"]["list_apps_req"], "clan_id">]: never; }) | undefined;
|
|
20272
20380
|
channel_apps_list?: ({
|
|
20273
20381
|
channel_apps?: {
|
|
20274
20382
|
id?: string | undefined;
|
|
@@ -20296,14 +20404,14 @@ export declare const Envelope: {
|
|
|
20296
20404
|
channel_id?: string | undefined;
|
|
20297
20405
|
app_id?: string | undefined;
|
|
20298
20406
|
app_url?: string | undefined;
|
|
20299
|
-
} & { [
|
|
20407
|
+
} & { [K_753 in Exclude<keyof I_1["list_data_socket"]["channel_apps_list"]["channel_apps"][number], keyof import("../api/api").ChannelAppResponse>]: never; })[] & { [K_754 in Exclude<keyof I_1["list_data_socket"]["channel_apps_list"]["channel_apps"], keyof {
|
|
20300
20408
|
id?: string | undefined;
|
|
20301
20409
|
clan_id?: string | undefined;
|
|
20302
20410
|
channel_id?: string | undefined;
|
|
20303
20411
|
app_id?: string | undefined;
|
|
20304
20412
|
app_url?: string | undefined;
|
|
20305
20413
|
}[]>]: never; }) | undefined;
|
|
20306
|
-
} & { [
|
|
20414
|
+
} & { [K_755 in Exclude<keyof I_1["list_data_socket"]["channel_apps_list"], "channel_apps">]: never; }) | undefined;
|
|
20307
20415
|
user_activity_list?: ({
|
|
20308
20416
|
activities?: {
|
|
20309
20417
|
user_id?: string | undefined;
|
|
@@ -20343,7 +20451,7 @@ export declare const Envelope: {
|
|
|
20343
20451
|
end_time?: Date | undefined;
|
|
20344
20452
|
application_id?: string | undefined;
|
|
20345
20453
|
status?: number | undefined;
|
|
20346
|
-
} & { [
|
|
20454
|
+
} & { [K_756 in Exclude<keyof I_1["list_data_socket"]["user_activity_list"]["activities"][number], keyof UserActivity>]: never; })[] & { [K_757 in Exclude<keyof I_1["list_data_socket"]["user_activity_list"]["activities"], keyof {
|
|
20347
20455
|
user_id?: string | undefined;
|
|
20348
20456
|
activity_name?: string | undefined;
|
|
20349
20457
|
activity_type?: number | undefined;
|
|
@@ -20353,12 +20461,12 @@ export declare const Envelope: {
|
|
|
20353
20461
|
application_id?: string | undefined;
|
|
20354
20462
|
status?: number | undefined;
|
|
20355
20463
|
}[]>]: never; }) | undefined;
|
|
20356
|
-
} & { [
|
|
20464
|
+
} & { [K_758 in Exclude<keyof I_1["list_data_socket"]["user_activity_list"], "activities">]: never; }) | undefined;
|
|
20357
20465
|
list_clan_user_req?: ({
|
|
20358
20466
|
clan_id?: string | undefined;
|
|
20359
20467
|
} & {
|
|
20360
20468
|
clan_id?: string | undefined;
|
|
20361
|
-
} & { [
|
|
20469
|
+
} & { [K_759 in Exclude<keyof I_1["list_data_socket"]["list_clan_user_req"], "clan_id">]: never; }) | undefined;
|
|
20362
20470
|
clan_user_list?: ({
|
|
20363
20471
|
clan_users?: {
|
|
20364
20472
|
user?: {
|
|
@@ -20502,13 +20610,13 @@ export declare const Envelope: {
|
|
|
20502
20610
|
is_mobile?: boolean | undefined;
|
|
20503
20611
|
dob?: Date | undefined;
|
|
20504
20612
|
mezon_id?: string | undefined;
|
|
20505
|
-
list_nick_names?: (string[] & string[] & { [
|
|
20506
|
-
} & { [
|
|
20507
|
-
role_id?: (string[] & string[] & { [
|
|
20613
|
+
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;
|
|
20614
|
+
} & { [K_761 in Exclude<keyof I_1["list_data_socket"]["clan_user_list"]["clan_users"][number]["user"], keyof import("../api/api").User>]: never; }) | undefined;
|
|
20615
|
+
role_id?: (string[] & string[] & { [K_762 in Exclude<keyof I_1["list_data_socket"]["clan_user_list"]["clan_users"][number]["role_id"], keyof string[]>]: never; }) | undefined;
|
|
20508
20616
|
clan_nick?: string | undefined;
|
|
20509
20617
|
clan_avatar?: string | undefined;
|
|
20510
20618
|
clan_id?: string | undefined;
|
|
20511
|
-
} & { [
|
|
20619
|
+
} & { [K_763 in Exclude<keyof I_1["list_data_socket"]["clan_user_list"]["clan_users"][number], keyof import("../api/api").ClanUserList_ClanUser>]: never; })[] & { [K_764 in Exclude<keyof I_1["list_data_socket"]["clan_user_list"]["clan_users"], keyof {
|
|
20512
20620
|
user?: {
|
|
20513
20621
|
id?: string | undefined;
|
|
20514
20622
|
username?: string | undefined;
|
|
@@ -20541,12 +20649,12 @@ export declare const Envelope: {
|
|
|
20541
20649
|
}[]>]: never; }) | undefined;
|
|
20542
20650
|
cursor?: string | undefined;
|
|
20543
20651
|
clan_id?: string | undefined;
|
|
20544
|
-
} & { [
|
|
20652
|
+
} & { [K_765 in Exclude<keyof I_1["list_data_socket"]["clan_user_list"], keyof ClanUserList>]: never; }) | undefined;
|
|
20545
20653
|
list_event_req?: ({
|
|
20546
20654
|
clan_id?: string | undefined;
|
|
20547
20655
|
} & {
|
|
20548
20656
|
clan_id?: string | undefined;
|
|
20549
|
-
} & { [
|
|
20657
|
+
} & { [K_766 in Exclude<keyof I_1["list_data_socket"]["list_event_req"], "clan_id">]: never; }) | undefined;
|
|
20550
20658
|
event_list?: ({
|
|
20551
20659
|
events?: {
|
|
20552
20660
|
id?: string | undefined;
|
|
@@ -20644,7 +20752,7 @@ export declare const Envelope: {
|
|
|
20644
20752
|
address?: string | undefined;
|
|
20645
20753
|
start_time?: Date | undefined;
|
|
20646
20754
|
end_time?: Date | undefined;
|
|
20647
|
-
user_ids?: (string[] & string[] & { [
|
|
20755
|
+
user_ids?: (string[] & string[] & { [K_767 in Exclude<keyof I_1["list_data_socket"]["event_list"]["events"][number]["user_ids"], keyof string[]>]: never; }) | undefined;
|
|
20648
20756
|
create_time?: Date | undefined;
|
|
20649
20757
|
max_permission?: number | undefined;
|
|
20650
20758
|
channel_id?: string | undefined;
|
|
@@ -20663,8 +20771,8 @@ export declare const Envelope: {
|
|
|
20663
20771
|
external_link?: string | undefined;
|
|
20664
20772
|
creator_id?: string | undefined;
|
|
20665
20773
|
event_id?: string | undefined;
|
|
20666
|
-
} & { [
|
|
20667
|
-
} & { [
|
|
20774
|
+
} & { [K_768 in Exclude<keyof I_1["list_data_socket"]["event_list"]["events"][number]["meet_room"], keyof import("../api/api").GenerateMezonMeetResponse>]: never; }) | undefined;
|
|
20775
|
+
} & { [K_769 in Exclude<keyof I_1["list_data_socket"]["event_list"]["events"][number], keyof import("../api/api").EventManagement>]: never; })[] & { [K_770 in Exclude<keyof I_1["list_data_socket"]["event_list"]["events"], keyof {
|
|
20668
20776
|
id?: string | undefined;
|
|
20669
20777
|
title?: string | undefined;
|
|
20670
20778
|
logo?: string | undefined;
|
|
@@ -20692,7 +20800,7 @@ export declare const Envelope: {
|
|
|
20692
20800
|
event_id?: string | undefined;
|
|
20693
20801
|
} | undefined;
|
|
20694
20802
|
}[]>]: never; }) | undefined;
|
|
20695
|
-
} & { [
|
|
20803
|
+
} & { [K_771 in Exclude<keyof I_1["list_data_socket"]["event_list"], "events">]: never; }) | undefined;
|
|
20696
20804
|
list_category_req?: ({
|
|
20697
20805
|
creator_id?: string | undefined;
|
|
20698
20806
|
clan_id?: string | undefined;
|
|
@@ -20705,7 +20813,7 @@ export declare const Envelope: {
|
|
|
20705
20813
|
category_name?: string | undefined;
|
|
20706
20814
|
category_id?: string | undefined;
|
|
20707
20815
|
category_order?: number | undefined;
|
|
20708
|
-
} & { [
|
|
20816
|
+
} & { [K_772 in Exclude<keyof I_1["list_data_socket"]["list_category_req"], keyof CategoryDesc>]: never; }) | undefined;
|
|
20709
20817
|
category_list?: ({
|
|
20710
20818
|
categorydesc?: {
|
|
20711
20819
|
creator_id?: string | undefined;
|
|
@@ -20733,14 +20841,14 @@ export declare const Envelope: {
|
|
|
20733
20841
|
category_name?: string | undefined;
|
|
20734
20842
|
category_id?: string | undefined;
|
|
20735
20843
|
category_order?: number | undefined;
|
|
20736
|
-
} & { [
|
|
20844
|
+
} & { [K_773 in Exclude<keyof I_1["list_data_socket"]["category_list"]["categorydesc"][number], keyof CategoryDesc>]: never; })[] & { [K_774 in Exclude<keyof I_1["list_data_socket"]["category_list"]["categorydesc"], keyof {
|
|
20737
20845
|
creator_id?: string | undefined;
|
|
20738
20846
|
clan_id?: string | undefined;
|
|
20739
20847
|
category_name?: string | undefined;
|
|
20740
20848
|
category_id?: string | undefined;
|
|
20741
20849
|
category_order?: number | undefined;
|
|
20742
20850
|
}[]>]: never; }) | undefined;
|
|
20743
|
-
} & { [
|
|
20851
|
+
} & { [K_775 in Exclude<keyof I_1["list_data_socket"]["category_list"], "categorydesc">]: never; }) | undefined;
|
|
20744
20852
|
stream_user_list?: ({
|
|
20745
20853
|
streaming_channel_users?: {
|
|
20746
20854
|
id?: string | undefined;
|
|
@@ -20764,14 +20872,14 @@ export declare const Envelope: {
|
|
|
20764
20872
|
user_id?: string | undefined;
|
|
20765
20873
|
channel_id?: string | undefined;
|
|
20766
20874
|
participant?: string | undefined;
|
|
20767
|
-
} & { [
|
|
20875
|
+
} & { [K_776 in Exclude<keyof I_1["list_data_socket"]["stream_user_list"]["streaming_channel_users"][number], keyof import("../api/api").StreamingChannelUser>]: never; })[] & { [K_777 in Exclude<keyof I_1["list_data_socket"]["stream_user_list"]["streaming_channel_users"], keyof {
|
|
20768
20876
|
id?: string | undefined;
|
|
20769
20877
|
user_id?: string | undefined;
|
|
20770
20878
|
channel_id?: string | undefined;
|
|
20771
20879
|
participant?: string | undefined;
|
|
20772
20880
|
}[]>]: never; }) | undefined;
|
|
20773
|
-
} & { [
|
|
20774
|
-
} & { [
|
|
20881
|
+
} & { [K_778 in Exclude<keyof I_1["list_data_socket"]["stream_user_list"], "streaming_channel_users">]: never; }) | undefined;
|
|
20882
|
+
} & { [K_779 in Exclude<keyof I_1["list_data_socket"], keyof ListDataSocket>]: never; }) | undefined;
|
|
20775
20883
|
quick_menu_event?: ({
|
|
20776
20884
|
menu_name?: string | undefined;
|
|
20777
20885
|
message?: {
|
|
@@ -20892,7 +21000,7 @@ export declare const Envelope: {
|
|
|
20892
21000
|
create_time?: Date | undefined;
|
|
20893
21001
|
s?: number | undefined;
|
|
20894
21002
|
e?: number | undefined;
|
|
20895
|
-
} & { [
|
|
21003
|
+
} & { [K_780 in Exclude<keyof I_1["quick_menu_event"]["message"]["mentions"][number], keyof MessageMention>]: never; })[] & { [K_781 in Exclude<keyof I_1["quick_menu_event"]["message"]["mentions"], keyof {
|
|
20896
21004
|
id?: string | undefined;
|
|
20897
21005
|
user_id?: string | undefined;
|
|
20898
21006
|
username?: string | undefined;
|
|
@@ -20926,7 +21034,7 @@ export declare const Envelope: {
|
|
|
20926
21034
|
width?: number | undefined;
|
|
20927
21035
|
height?: number | undefined;
|
|
20928
21036
|
thumbnail?: string | undefined;
|
|
20929
|
-
} & { [
|
|
21037
|
+
} & { [K_782 in Exclude<keyof I_1["quick_menu_event"]["message"]["attachments"][number], keyof MessageAttachment>]: never; })[] & { [K_783 in Exclude<keyof I_1["quick_menu_event"]["message"]["attachments"], keyof {
|
|
20930
21038
|
filename?: string | undefined;
|
|
20931
21039
|
size?: number | undefined;
|
|
20932
21040
|
url?: string | undefined;
|
|
@@ -20968,7 +21076,7 @@ export declare const Envelope: {
|
|
|
20968
21076
|
mesages_sender_avatar?: string | undefined;
|
|
20969
21077
|
message_sender_clan_nick?: string | undefined;
|
|
20970
21078
|
message_sender_display_name?: string | undefined;
|
|
20971
|
-
} & { [
|
|
21079
|
+
} & { [K_784 in Exclude<keyof I_1["quick_menu_event"]["message"]["references"][number], keyof MessageRef>]: never; })[] & { [K_785 in Exclude<keyof I_1["quick_menu_event"]["message"]["references"], keyof {
|
|
20972
21080
|
message_id?: string | undefined;
|
|
20973
21081
|
message_ref_id?: string | undefined;
|
|
20974
21082
|
content?: string | undefined;
|
|
@@ -20987,13 +21095,13 @@ export declare const Envelope: {
|
|
|
20987
21095
|
is_public?: boolean | undefined;
|
|
20988
21096
|
code?: number | undefined;
|
|
20989
21097
|
topic_id?: string | undefined;
|
|
20990
|
-
} & { [
|
|
20991
|
-
} & { [
|
|
21098
|
+
} & { [K_786 in Exclude<keyof I_1["quick_menu_event"]["message"], keyof ChannelMessageSend>]: never; }) | undefined;
|
|
21099
|
+
} & { [K_787 in Exclude<keyof I_1["quick_menu_event"], keyof QuickMenuDataEvent>]: never; }) | undefined;
|
|
20992
21100
|
un_block_friend?: ({
|
|
20993
21101
|
user_id?: string | undefined;
|
|
20994
21102
|
} & {
|
|
20995
21103
|
user_id?: string | undefined;
|
|
20996
|
-
} & { [
|
|
21104
|
+
} & { [K_788 in Exclude<keyof I_1["un_block_friend"], "user_id">]: never; }) | undefined;
|
|
20997
21105
|
meet_participant_event?: ({
|
|
20998
21106
|
username?: string | undefined;
|
|
20999
21107
|
room_name?: string | undefined;
|
|
@@ -21006,8 +21114,17 @@ export declare const Envelope: {
|
|
|
21006
21114
|
channel_id?: string | undefined;
|
|
21007
21115
|
clan_id?: string | undefined;
|
|
21008
21116
|
action?: number | undefined;
|
|
21009
|
-
} & { [
|
|
21010
|
-
|
|
21117
|
+
} & { [K_789 in Exclude<keyof I_1["meet_participant_event"], keyof MeetParticipantEvent>]: never; }) | undefined;
|
|
21118
|
+
transfer_ownership_event?: ({
|
|
21119
|
+
clan_id?: string | undefined;
|
|
21120
|
+
prev_owner?: string | undefined;
|
|
21121
|
+
curr_owner?: string | undefined;
|
|
21122
|
+
} & {
|
|
21123
|
+
clan_id?: string | undefined;
|
|
21124
|
+
prev_owner?: string | undefined;
|
|
21125
|
+
curr_owner?: string | undefined;
|
|
21126
|
+
} & { [K_790 in Exclude<keyof I_1["transfer_ownership_event"], keyof TransferOwnershipEvent>]: never; }) | undefined;
|
|
21127
|
+
} & { [K_791 in Exclude<keyof I_1, keyof Envelope>]: never; }>(object: I_1): Envelope;
|
|
21011
21128
|
};
|
|
21012
21129
|
export declare const FollowEvent: {
|
|
21013
21130
|
encode(_: FollowEvent, writer?: _m0.Writer): _m0.Writer;
|
|
@@ -27309,6 +27426,10 @@ export declare const ClanUpdatedEvent: {
|
|
|
27309
27426
|
is_onboarding?: boolean | undefined;
|
|
27310
27427
|
welcome_channel_id?: string | undefined;
|
|
27311
27428
|
onboarding_banner?: string | undefined;
|
|
27429
|
+
community_banner?: string | undefined;
|
|
27430
|
+
is_community?: boolean | undefined;
|
|
27431
|
+
about?: string | undefined;
|
|
27432
|
+
description?: string | undefined;
|
|
27312
27433
|
} & {
|
|
27313
27434
|
clan_id?: string | undefined;
|
|
27314
27435
|
clan_name?: string | undefined;
|
|
@@ -27318,6 +27439,10 @@ export declare const ClanUpdatedEvent: {
|
|
|
27318
27439
|
is_onboarding?: boolean | undefined;
|
|
27319
27440
|
welcome_channel_id?: string | undefined;
|
|
27320
27441
|
onboarding_banner?: string | undefined;
|
|
27442
|
+
community_banner?: string | undefined;
|
|
27443
|
+
is_community?: boolean | undefined;
|
|
27444
|
+
about?: string | undefined;
|
|
27445
|
+
description?: string | undefined;
|
|
27321
27446
|
} & { [K in Exclude<keyof I, keyof ClanUpdatedEvent>]: never; }>(base?: I | undefined): ClanUpdatedEvent;
|
|
27322
27447
|
fromPartial<I_1 extends {
|
|
27323
27448
|
clan_id?: string | undefined;
|
|
@@ -27328,6 +27453,10 @@ export declare const ClanUpdatedEvent: {
|
|
|
27328
27453
|
is_onboarding?: boolean | undefined;
|
|
27329
27454
|
welcome_channel_id?: string | undefined;
|
|
27330
27455
|
onboarding_banner?: string | undefined;
|
|
27456
|
+
community_banner?: string | undefined;
|
|
27457
|
+
is_community?: boolean | undefined;
|
|
27458
|
+
about?: string | undefined;
|
|
27459
|
+
description?: string | undefined;
|
|
27331
27460
|
} & {
|
|
27332
27461
|
clan_id?: string | undefined;
|
|
27333
27462
|
clan_name?: string | undefined;
|
|
@@ -27337,6 +27466,10 @@ export declare const ClanUpdatedEvent: {
|
|
|
27337
27466
|
is_onboarding?: boolean | undefined;
|
|
27338
27467
|
welcome_channel_id?: string | undefined;
|
|
27339
27468
|
onboarding_banner?: string | undefined;
|
|
27469
|
+
community_banner?: string | undefined;
|
|
27470
|
+
is_community?: boolean | undefined;
|
|
27471
|
+
about?: string | undefined;
|
|
27472
|
+
description?: string | undefined;
|
|
27340
27473
|
} & { [K_1 in Exclude<keyof I_1, keyof ClanUpdatedEvent>]: never; }>(object: I_1): ClanUpdatedEvent;
|
|
27341
27474
|
};
|
|
27342
27475
|
export declare const ClanProfileUpdatedEvent: {
|
|
@@ -28475,22 +28608,26 @@ export declare const HandleParticipantMeetStateEvent: {
|
|
|
28475
28608
|
channel_id?: string | undefined;
|
|
28476
28609
|
display_name?: string | undefined;
|
|
28477
28610
|
state?: number | undefined;
|
|
28611
|
+
room_name?: string | undefined;
|
|
28478
28612
|
} & {
|
|
28479
28613
|
clan_id?: string | undefined;
|
|
28480
28614
|
channel_id?: string | undefined;
|
|
28481
28615
|
display_name?: string | undefined;
|
|
28482
28616
|
state?: number | undefined;
|
|
28617
|
+
room_name?: string | undefined;
|
|
28483
28618
|
} & { [K in Exclude<keyof I, keyof HandleParticipantMeetStateEvent>]: never; }>(base?: I | undefined): HandleParticipantMeetStateEvent;
|
|
28484
28619
|
fromPartial<I_1 extends {
|
|
28485
28620
|
clan_id?: string | undefined;
|
|
28486
28621
|
channel_id?: string | undefined;
|
|
28487
28622
|
display_name?: string | undefined;
|
|
28488
28623
|
state?: number | undefined;
|
|
28624
|
+
room_name?: string | undefined;
|
|
28489
28625
|
} & {
|
|
28490
28626
|
clan_id?: string | undefined;
|
|
28491
28627
|
channel_id?: string | undefined;
|
|
28492
28628
|
display_name?: string | undefined;
|
|
28493
28629
|
state?: number | undefined;
|
|
28630
|
+
room_name?: string | undefined;
|
|
28494
28631
|
} & { [K_1 in Exclude<keyof I_1, keyof HandleParticipantMeetStateEvent>]: never; }>(object: I_1): HandleParticipantMeetStateEvent;
|
|
28495
28632
|
};
|
|
28496
28633
|
export declare const DeleteAccountEvent: {
|
|
@@ -28536,6 +28673,9 @@ export declare const ListDataSocket: {
|
|
|
28536
28673
|
clan_order?: number | undefined;
|
|
28537
28674
|
is_community?: boolean | undefined;
|
|
28538
28675
|
community_banner?: string | undefined;
|
|
28676
|
+
description?: string | undefined;
|
|
28677
|
+
about?: string | undefined;
|
|
28678
|
+
short_url?: string | undefined;
|
|
28539
28679
|
}[] | undefined;
|
|
28540
28680
|
} | undefined;
|
|
28541
28681
|
list_thread_req?: {
|
|
@@ -29399,6 +29539,9 @@ export declare const ListDataSocket: {
|
|
|
29399
29539
|
clan_order?: number | undefined;
|
|
29400
29540
|
is_community?: boolean | undefined;
|
|
29401
29541
|
community_banner?: string | undefined;
|
|
29542
|
+
description?: string | undefined;
|
|
29543
|
+
about?: string | undefined;
|
|
29544
|
+
short_url?: string | undefined;
|
|
29402
29545
|
}[] | undefined;
|
|
29403
29546
|
} & {
|
|
29404
29547
|
clandesc?: ({
|
|
@@ -29415,6 +29558,9 @@ export declare const ListDataSocket: {
|
|
|
29415
29558
|
clan_order?: number | undefined;
|
|
29416
29559
|
is_community?: boolean | undefined;
|
|
29417
29560
|
community_banner?: string | undefined;
|
|
29561
|
+
description?: string | undefined;
|
|
29562
|
+
about?: string | undefined;
|
|
29563
|
+
short_url?: string | undefined;
|
|
29418
29564
|
}[] & ({
|
|
29419
29565
|
creator_id?: string | undefined;
|
|
29420
29566
|
clan_name?: string | undefined;
|
|
@@ -29429,6 +29575,9 @@ export declare const ListDataSocket: {
|
|
|
29429
29575
|
clan_order?: number | undefined;
|
|
29430
29576
|
is_community?: boolean | undefined;
|
|
29431
29577
|
community_banner?: string | undefined;
|
|
29578
|
+
description?: string | undefined;
|
|
29579
|
+
about?: string | undefined;
|
|
29580
|
+
short_url?: string | undefined;
|
|
29432
29581
|
} & {
|
|
29433
29582
|
creator_id?: string | undefined;
|
|
29434
29583
|
clan_name?: string | undefined;
|
|
@@ -29443,6 +29592,9 @@ export declare const ListDataSocket: {
|
|
|
29443
29592
|
clan_order?: number | undefined;
|
|
29444
29593
|
is_community?: boolean | undefined;
|
|
29445
29594
|
community_banner?: string | undefined;
|
|
29595
|
+
description?: string | undefined;
|
|
29596
|
+
about?: string | undefined;
|
|
29597
|
+
short_url?: string | undefined;
|
|
29446
29598
|
} & { [K_1 in Exclude<keyof I["clan_desc_list"]["clandesc"][number], keyof import("../api/api").ClanDesc>]: never; })[] & { [K_2 in Exclude<keyof I["clan_desc_list"]["clandesc"], keyof {
|
|
29447
29599
|
creator_id?: string | undefined;
|
|
29448
29600
|
clan_name?: string | undefined;
|
|
@@ -29457,6 +29609,9 @@ export declare const ListDataSocket: {
|
|
|
29457
29609
|
clan_order?: number | undefined;
|
|
29458
29610
|
is_community?: boolean | undefined;
|
|
29459
29611
|
community_banner?: string | undefined;
|
|
29612
|
+
description?: string | undefined;
|
|
29613
|
+
about?: string | undefined;
|
|
29614
|
+
short_url?: string | undefined;
|
|
29460
29615
|
}[]>]: never; }) | undefined;
|
|
29461
29616
|
} & { [K_3 in Exclude<keyof I["clan_desc_list"], "clandesc">]: never; }) | undefined;
|
|
29462
29617
|
list_thread_req?: ({
|
|
@@ -32914,6 +33069,9 @@ export declare const ListDataSocket: {
|
|
|
32914
33069
|
clan_order?: number | undefined;
|
|
32915
33070
|
is_community?: boolean | undefined;
|
|
32916
33071
|
community_banner?: string | undefined;
|
|
33072
|
+
description?: string | undefined;
|
|
33073
|
+
about?: string | undefined;
|
|
33074
|
+
short_url?: string | undefined;
|
|
32917
33075
|
}[] | undefined;
|
|
32918
33076
|
} | undefined;
|
|
32919
33077
|
list_thread_req?: {
|
|
@@ -33777,6 +33935,9 @@ export declare const ListDataSocket: {
|
|
|
33777
33935
|
clan_order?: number | undefined;
|
|
33778
33936
|
is_community?: boolean | undefined;
|
|
33779
33937
|
community_banner?: string | undefined;
|
|
33938
|
+
description?: string | undefined;
|
|
33939
|
+
about?: string | undefined;
|
|
33940
|
+
short_url?: string | undefined;
|
|
33780
33941
|
}[] | undefined;
|
|
33781
33942
|
} & {
|
|
33782
33943
|
clandesc?: ({
|
|
@@ -33793,6 +33954,9 @@ export declare const ListDataSocket: {
|
|
|
33793
33954
|
clan_order?: number | undefined;
|
|
33794
33955
|
is_community?: boolean | undefined;
|
|
33795
33956
|
community_banner?: string | undefined;
|
|
33957
|
+
description?: string | undefined;
|
|
33958
|
+
about?: string | undefined;
|
|
33959
|
+
short_url?: string | undefined;
|
|
33796
33960
|
}[] & ({
|
|
33797
33961
|
creator_id?: string | undefined;
|
|
33798
33962
|
clan_name?: string | undefined;
|
|
@@ -33807,6 +33971,9 @@ export declare const ListDataSocket: {
|
|
|
33807
33971
|
clan_order?: number | undefined;
|
|
33808
33972
|
is_community?: boolean | undefined;
|
|
33809
33973
|
community_banner?: string | undefined;
|
|
33974
|
+
description?: string | undefined;
|
|
33975
|
+
about?: string | undefined;
|
|
33976
|
+
short_url?: string | undefined;
|
|
33810
33977
|
} & {
|
|
33811
33978
|
creator_id?: string | undefined;
|
|
33812
33979
|
clan_name?: string | undefined;
|
|
@@ -33821,6 +33988,9 @@ export declare const ListDataSocket: {
|
|
|
33821
33988
|
clan_order?: number | undefined;
|
|
33822
33989
|
is_community?: boolean | undefined;
|
|
33823
33990
|
community_banner?: string | undefined;
|
|
33991
|
+
description?: string | undefined;
|
|
33992
|
+
about?: string | undefined;
|
|
33993
|
+
short_url?: string | undefined;
|
|
33824
33994
|
} & { [K_189 in Exclude<keyof I_1["clan_desc_list"]["clandesc"][number], keyof import("../api/api").ClanDesc>]: never; })[] & { [K_190 in Exclude<keyof I_1["clan_desc_list"]["clandesc"], keyof {
|
|
33825
33995
|
creator_id?: string | undefined;
|
|
33826
33996
|
clan_name?: string | undefined;
|
|
@@ -33835,6 +34005,9 @@ export declare const ListDataSocket: {
|
|
|
33835
34005
|
clan_order?: number | undefined;
|
|
33836
34006
|
is_community?: boolean | undefined;
|
|
33837
34007
|
community_banner?: string | undefined;
|
|
34008
|
+
description?: string | undefined;
|
|
34009
|
+
about?: string | undefined;
|
|
34010
|
+
short_url?: string | undefined;
|
|
33838
34011
|
}[]>]: never; }) | undefined;
|
|
33839
34012
|
} & { [K_191 in Exclude<keyof I_1["clan_desc_list"], "clandesc">]: never; }) | undefined;
|
|
33840
34013
|
list_thread_req?: ({
|
|
@@ -37303,6 +37476,30 @@ export declare const MeetParticipantEvent: {
|
|
|
37303
37476
|
action?: number | undefined;
|
|
37304
37477
|
} & { [K_1 in Exclude<keyof I_1, keyof MeetParticipantEvent>]: never; }>(object: I_1): MeetParticipantEvent;
|
|
37305
37478
|
};
|
|
37479
|
+
export declare const TransferOwnershipEvent: {
|
|
37480
|
+
encode(message: TransferOwnershipEvent, writer?: _m0.Writer): _m0.Writer;
|
|
37481
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): TransferOwnershipEvent;
|
|
37482
|
+
fromJSON(object: any): TransferOwnershipEvent;
|
|
37483
|
+
toJSON(message: TransferOwnershipEvent): unknown;
|
|
37484
|
+
create<I extends {
|
|
37485
|
+
clan_id?: string | undefined;
|
|
37486
|
+
prev_owner?: string | undefined;
|
|
37487
|
+
curr_owner?: string | undefined;
|
|
37488
|
+
} & {
|
|
37489
|
+
clan_id?: string | undefined;
|
|
37490
|
+
prev_owner?: string | undefined;
|
|
37491
|
+
curr_owner?: string | undefined;
|
|
37492
|
+
} & { [K in Exclude<keyof I, keyof TransferOwnershipEvent>]: never; }>(base?: I | undefined): TransferOwnershipEvent;
|
|
37493
|
+
fromPartial<I_1 extends {
|
|
37494
|
+
clan_id?: string | undefined;
|
|
37495
|
+
prev_owner?: string | undefined;
|
|
37496
|
+
curr_owner?: string | undefined;
|
|
37497
|
+
} & {
|
|
37498
|
+
clan_id?: string | undefined;
|
|
37499
|
+
prev_owner?: string | undefined;
|
|
37500
|
+
curr_owner?: string | undefined;
|
|
37501
|
+
} & { [K_1 in Exclude<keyof I_1, keyof TransferOwnershipEvent>]: never; }>(object: I_1): TransferOwnershipEvent;
|
|
37502
|
+
};
|
|
37306
37503
|
type Builtin = Date | Function | Uint8Array | string | number | boolean | undefined;
|
|
37307
37504
|
export type DeepPartial<T> = T extends Builtin ? T : T extends globalThis.Array<infer U> ? globalThis.Array<DeepPartial<U>> : T extends ReadonlyArray<infer U> ? ReadonlyArray<DeepPartial<U>> : T extends {} ? {
|
|
37308
37505
|
[K in keyof T]?: DeepPartial<T[K]>;
|