mezon-js-protobuf 1.8.71 → 1.8.73
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 +947 -30
- package/dist/mezon-js-protobuf/api/api.d.ts +505 -2
- package/dist/mezon-js-protobuf/rtapi/realtime.d.ts +371 -323
- package/dist/mezon-js-protobuf.cjs.js +121 -38
- package/dist/mezon-js-protobuf.esm.mjs +121 -38
- package/package.json +1 -1
- package/rtapi/realtime.ts +127 -25
|
@@ -184,6 +184,12 @@ export interface Envelope {
|
|
|
184
184
|
active_archived_thread?: ActiveArchivedThread | undefined;
|
|
185
185
|
/** Config Allow Anonymous */
|
|
186
186
|
allow_anonymous_event?: AllowAnonymousEvent | undefined;
|
|
187
|
+
/** Message sending to another server for update localcache */
|
|
188
|
+
update_localcache_event?: UpdateLocalCacheEvent | undefined;
|
|
189
|
+
}
|
|
190
|
+
export interface UpdateLocalCacheEvent {
|
|
191
|
+
user_ids: string[];
|
|
192
|
+
channel_ids: string[];
|
|
187
193
|
}
|
|
188
194
|
export interface FollowEvent {
|
|
189
195
|
}
|
|
@@ -365,7 +371,7 @@ export interface ChannelMessageAck {
|
|
|
365
371
|
/** The unique ID assigned to the message. */
|
|
366
372
|
message_id: string;
|
|
367
373
|
/** The code representing a message type or category. */
|
|
368
|
-
code: number
|
|
374
|
+
code: number;
|
|
369
375
|
/** Username of the message sender. */
|
|
370
376
|
username: string;
|
|
371
377
|
/** The UNIX time (for gRPC clients) or ISO string (for REST clients) when the message was created. */
|
|
@@ -868,7 +874,7 @@ export interface ChannelUpdatedEvent {
|
|
|
868
874
|
/** channel label */
|
|
869
875
|
channel_label: string;
|
|
870
876
|
/** channel type */
|
|
871
|
-
channel_type: number
|
|
877
|
+
channel_type: number;
|
|
872
878
|
/** status */
|
|
873
879
|
status: number;
|
|
874
880
|
/** meeting code */
|
|
@@ -3348,6 +3354,10 @@ export declare const Envelope: {
|
|
|
3348
3354
|
clan_id?: string | undefined;
|
|
3349
3355
|
allow?: boolean | undefined;
|
|
3350
3356
|
} | undefined;
|
|
3357
|
+
update_localcache_event?: {
|
|
3358
|
+
user_ids?: string[] | undefined;
|
|
3359
|
+
channel_ids?: string[] | undefined;
|
|
3360
|
+
} | undefined;
|
|
3351
3361
|
} & {
|
|
3352
3362
|
cid?: string | undefined;
|
|
3353
3363
|
channel?: ({
|
|
@@ -11195,7 +11205,14 @@ export declare const Envelope: {
|
|
|
11195
11205
|
clan_id?: string | undefined;
|
|
11196
11206
|
allow?: boolean | undefined;
|
|
11197
11207
|
} & { [K_381 in Exclude<keyof I["allow_anonymous_event"], keyof AllowAnonymousEvent>]: never; }) | undefined;
|
|
11198
|
-
|
|
11208
|
+
update_localcache_event?: ({
|
|
11209
|
+
user_ids?: string[] | undefined;
|
|
11210
|
+
channel_ids?: string[] | undefined;
|
|
11211
|
+
} & {
|
|
11212
|
+
user_ids?: (string[] & string[] & { [K_382 in Exclude<keyof I["update_localcache_event"]["user_ids"], keyof string[]>]: never; }) | undefined;
|
|
11213
|
+
channel_ids?: (string[] & string[] & { [K_383 in Exclude<keyof I["update_localcache_event"]["channel_ids"], keyof string[]>]: never; }) | undefined;
|
|
11214
|
+
} & { [K_384 in Exclude<keyof I["update_localcache_event"], keyof UpdateLocalCacheEvent>]: never; }) | undefined;
|
|
11215
|
+
} & { [K_385 in Exclude<keyof I, keyof Envelope>]: never; }>(base?: I | undefined): Envelope;
|
|
11199
11216
|
fromPartial<I_1 extends {
|
|
11200
11217
|
cid?: string | undefined;
|
|
11201
11218
|
channel?: {
|
|
@@ -13207,6 +13224,10 @@ export declare const Envelope: {
|
|
|
13207
13224
|
clan_id?: string | undefined;
|
|
13208
13225
|
allow?: boolean | undefined;
|
|
13209
13226
|
} | undefined;
|
|
13227
|
+
update_localcache_event?: {
|
|
13228
|
+
user_ids?: string[] | undefined;
|
|
13229
|
+
channel_ids?: string[] | undefined;
|
|
13230
|
+
} | undefined;
|
|
13210
13231
|
} & {
|
|
13211
13232
|
cid?: string | undefined;
|
|
13212
13233
|
channel?: ({
|
|
@@ -13253,7 +13274,7 @@ export declare const Envelope: {
|
|
|
13253
13274
|
status?: string | undefined;
|
|
13254
13275
|
is_mobile?: boolean | undefined;
|
|
13255
13276
|
user_status?: string | undefined;
|
|
13256
|
-
} & { [
|
|
13277
|
+
} & { [K_386 in Exclude<keyof I_1["channel"]["presences"][number], keyof UserPresence>]: never; })[] & { [K_387 in Exclude<keyof I_1["channel"]["presences"], keyof {
|
|
13257
13278
|
user_id?: string | undefined;
|
|
13258
13279
|
session_id?: string | undefined;
|
|
13259
13280
|
username?: string | undefined;
|
|
@@ -13275,16 +13296,16 @@ export declare const Envelope: {
|
|
|
13275
13296
|
status?: string | undefined;
|
|
13276
13297
|
is_mobile?: boolean | undefined;
|
|
13277
13298
|
user_status?: string | undefined;
|
|
13278
|
-
} & { [
|
|
13299
|
+
} & { [K_388 in Exclude<keyof I_1["channel"]["self"], keyof UserPresence>]: never; }) | undefined;
|
|
13279
13300
|
chanel_label?: string | undefined;
|
|
13280
13301
|
clan_logo?: string | undefined;
|
|
13281
13302
|
category_name?: string | undefined;
|
|
13282
|
-
} & { [
|
|
13303
|
+
} & { [K_389 in Exclude<keyof I_1["channel"], keyof Channel>]: never; }) | undefined;
|
|
13283
13304
|
clan_join?: ({
|
|
13284
13305
|
clan_id?: string | undefined;
|
|
13285
13306
|
} & {
|
|
13286
13307
|
clan_id?: string | undefined;
|
|
13287
|
-
} & { [
|
|
13308
|
+
} & { [K_390 in Exclude<keyof I_1["clan_join"], "clan_id">]: never; }) | undefined;
|
|
13288
13309
|
channel_join?: ({
|
|
13289
13310
|
clan_id?: string | undefined;
|
|
13290
13311
|
channel_id?: string | undefined;
|
|
@@ -13295,7 +13316,7 @@ export declare const Envelope: {
|
|
|
13295
13316
|
channel_id?: string | undefined;
|
|
13296
13317
|
channel_type?: number | undefined;
|
|
13297
13318
|
is_public?: boolean | undefined;
|
|
13298
|
-
} & { [
|
|
13319
|
+
} & { [K_391 in Exclude<keyof I_1["channel_join"], keyof ChannelJoin>]: never; }) | undefined;
|
|
13299
13320
|
channel_leave?: ({
|
|
13300
13321
|
clan_id?: string | undefined;
|
|
13301
13322
|
channel_id?: string | undefined;
|
|
@@ -13306,7 +13327,7 @@ export declare const Envelope: {
|
|
|
13306
13327
|
channel_id?: string | undefined;
|
|
13307
13328
|
channel_type?: number | undefined;
|
|
13308
13329
|
is_public?: boolean | undefined;
|
|
13309
|
-
} & { [
|
|
13330
|
+
} & { [K_392 in Exclude<keyof I_1["channel_leave"], keyof ChannelLeave>]: never; }) | undefined;
|
|
13310
13331
|
channel_message?: ({
|
|
13311
13332
|
clan_id?: string | undefined;
|
|
13312
13333
|
channel_id?: string | undefined;
|
|
@@ -13363,7 +13384,7 @@ export declare const Envelope: {
|
|
|
13363
13384
|
hide_editted?: boolean | undefined;
|
|
13364
13385
|
is_public?: boolean | undefined;
|
|
13365
13386
|
topic_id?: string | undefined;
|
|
13366
|
-
} & { [
|
|
13387
|
+
} & { [K_393 in Exclude<keyof I_1["channel_message"], keyof ChannelMessage>]: never; }) | undefined;
|
|
13367
13388
|
channel_message_ack?: ({
|
|
13368
13389
|
channel_id?: string | undefined;
|
|
13369
13390
|
message_id?: string | undefined;
|
|
@@ -13384,7 +13405,7 @@ export declare const Envelope: {
|
|
|
13384
13405
|
persistent?: boolean | undefined;
|
|
13385
13406
|
clan_logo?: string | undefined;
|
|
13386
13407
|
category_name?: string | undefined;
|
|
13387
|
-
} & { [
|
|
13408
|
+
} & { [K_394 in Exclude<keyof I_1["channel_message_ack"], keyof ChannelMessageAck>]: never; }) | undefined;
|
|
13388
13409
|
channel_message_send?: ({
|
|
13389
13410
|
clan_id?: string | undefined;
|
|
13390
13411
|
channel_id?: string | undefined;
|
|
@@ -13460,7 +13481,7 @@ export declare const Envelope: {
|
|
|
13460
13481
|
create_time?: Date | undefined;
|
|
13461
13482
|
s?: number | undefined;
|
|
13462
13483
|
e?: number | undefined;
|
|
13463
|
-
} & { [
|
|
13484
|
+
} & { [K_395 in Exclude<keyof I_1["channel_message_send"]["mentions"][number], keyof MessageMention>]: never; })[] & { [K_396 in Exclude<keyof I_1["channel_message_send"]["mentions"], keyof {
|
|
13464
13485
|
id?: string | undefined;
|
|
13465
13486
|
user_id?: string | undefined;
|
|
13466
13487
|
username?: string | undefined;
|
|
@@ -13497,7 +13518,7 @@ export declare const Envelope: {
|
|
|
13497
13518
|
height?: number | undefined;
|
|
13498
13519
|
thumbnail?: string | undefined;
|
|
13499
13520
|
duration?: number | undefined;
|
|
13500
|
-
} & { [
|
|
13521
|
+
} & { [K_397 in Exclude<keyof I_1["channel_message_send"]["attachments"][number], keyof MessageAttachment>]: never; })[] & { [K_398 in Exclude<keyof I_1["channel_message_send"]["attachments"], keyof {
|
|
13501
13522
|
filename?: string | undefined;
|
|
13502
13523
|
size?: number | undefined;
|
|
13503
13524
|
url?: string | undefined;
|
|
@@ -13540,7 +13561,7 @@ export declare const Envelope: {
|
|
|
13540
13561
|
mesages_sender_avatar?: string | undefined;
|
|
13541
13562
|
message_sender_clan_nick?: string | undefined;
|
|
13542
13563
|
message_sender_display_name?: string | undefined;
|
|
13543
|
-
} & { [
|
|
13564
|
+
} & { [K_399 in Exclude<keyof I_1["channel_message_send"]["references"][number], keyof MessageRef>]: never; })[] & { [K_400 in Exclude<keyof I_1["channel_message_send"]["references"], keyof {
|
|
13544
13565
|
message_id?: string | undefined;
|
|
13545
13566
|
message_ref_id?: string | undefined;
|
|
13546
13567
|
content?: string | undefined;
|
|
@@ -13560,7 +13581,7 @@ export declare const Envelope: {
|
|
|
13560
13581
|
code?: number | undefined;
|
|
13561
13582
|
topic_id?: string | undefined;
|
|
13562
13583
|
id?: string | undefined;
|
|
13563
|
-
} & { [
|
|
13584
|
+
} & { [K_401 in Exclude<keyof I_1["channel_message_send"], keyof ChannelMessageSend>]: never; }) | undefined;
|
|
13564
13585
|
channel_message_update?: ({
|
|
13565
13586
|
clan_id?: string | undefined;
|
|
13566
13587
|
channel_id?: string | undefined;
|
|
@@ -13624,7 +13645,7 @@ export declare const Envelope: {
|
|
|
13624
13645
|
create_time?: Date | undefined;
|
|
13625
13646
|
s?: number | undefined;
|
|
13626
13647
|
e?: number | undefined;
|
|
13627
|
-
} & { [
|
|
13648
|
+
} & { [K_402 in Exclude<keyof I_1["channel_message_update"]["mentions"][number], keyof MessageMention>]: never; })[] & { [K_403 in Exclude<keyof I_1["channel_message_update"]["mentions"], keyof {
|
|
13628
13649
|
id?: string | undefined;
|
|
13629
13650
|
user_id?: string | undefined;
|
|
13630
13651
|
username?: string | undefined;
|
|
@@ -13661,7 +13682,7 @@ export declare const Envelope: {
|
|
|
13661
13682
|
height?: number | undefined;
|
|
13662
13683
|
thumbnail?: string | undefined;
|
|
13663
13684
|
duration?: number | undefined;
|
|
13664
|
-
} & { [
|
|
13685
|
+
} & { [K_404 in Exclude<keyof I_1["channel_message_update"]["attachments"][number], keyof MessageAttachment>]: never; })[] & { [K_405 in Exclude<keyof I_1["channel_message_update"]["attachments"], keyof {
|
|
13665
13686
|
filename?: string | undefined;
|
|
13666
13687
|
size?: number | undefined;
|
|
13667
13688
|
url?: string | undefined;
|
|
@@ -13677,7 +13698,7 @@ export declare const Envelope: {
|
|
|
13677
13698
|
topic_id?: string | undefined;
|
|
13678
13699
|
is_update_msg_topic?: boolean | undefined;
|
|
13679
13700
|
old_mentions?: string | undefined;
|
|
13680
|
-
} & { [
|
|
13701
|
+
} & { [K_406 in Exclude<keyof I_1["channel_message_update"], keyof ChannelMessageUpdate>]: never; }) | undefined;
|
|
13681
13702
|
channel_message_remove?: ({
|
|
13682
13703
|
clan_id?: string | undefined;
|
|
13683
13704
|
channel_id?: string | undefined;
|
|
@@ -13698,7 +13719,7 @@ export declare const Envelope: {
|
|
|
13698
13719
|
topic_id?: string | undefined;
|
|
13699
13720
|
mentions?: string | undefined;
|
|
13700
13721
|
references?: string | undefined;
|
|
13701
|
-
} & { [
|
|
13722
|
+
} & { [K_407 in Exclude<keyof I_1["channel_message_remove"], keyof ChannelMessageRemove>]: never; }) | undefined;
|
|
13702
13723
|
channel_presence_event?: ({
|
|
13703
13724
|
channel_id?: string | undefined;
|
|
13704
13725
|
joins?: {
|
|
@@ -13743,7 +13764,7 @@ export declare const Envelope: {
|
|
|
13743
13764
|
status?: string | undefined;
|
|
13744
13765
|
is_mobile?: boolean | undefined;
|
|
13745
13766
|
user_status?: string | undefined;
|
|
13746
|
-
} & { [
|
|
13767
|
+
} & { [K_408 in Exclude<keyof I_1["channel_presence_event"]["joins"][number], keyof UserPresence>]: never; })[] & { [K_409 in Exclude<keyof I_1["channel_presence_event"]["joins"], keyof {
|
|
13747
13768
|
user_id?: string | undefined;
|
|
13748
13769
|
session_id?: string | undefined;
|
|
13749
13770
|
username?: string | undefined;
|
|
@@ -13772,7 +13793,7 @@ export declare const Envelope: {
|
|
|
13772
13793
|
status?: string | undefined;
|
|
13773
13794
|
is_mobile?: boolean | undefined;
|
|
13774
13795
|
user_status?: string | undefined;
|
|
13775
|
-
} & { [
|
|
13796
|
+
} & { [K_410 in Exclude<keyof I_1["channel_presence_event"]["leaves"][number], keyof UserPresence>]: never; })[] & { [K_411 in Exclude<keyof I_1["channel_presence_event"]["leaves"], keyof {
|
|
13776
13797
|
user_id?: string | undefined;
|
|
13777
13798
|
session_id?: string | undefined;
|
|
13778
13799
|
username?: string | undefined;
|
|
@@ -13783,7 +13804,7 @@ export declare const Envelope: {
|
|
|
13783
13804
|
clan_logo?: string | undefined;
|
|
13784
13805
|
category_name?: string | undefined;
|
|
13785
13806
|
mode?: number | undefined;
|
|
13786
|
-
} & { [
|
|
13807
|
+
} & { [K_412 in Exclude<keyof I_1["channel_presence_event"], keyof ChannelPresenceEvent>]: never; }) | undefined;
|
|
13787
13808
|
error?: ({
|
|
13788
13809
|
code?: number | undefined;
|
|
13789
13810
|
message?: string | undefined;
|
|
@@ -13797,8 +13818,8 @@ export declare const Envelope: {
|
|
|
13797
13818
|
[x: string]: string | undefined;
|
|
13798
13819
|
} & {
|
|
13799
13820
|
[x: string]: string | undefined;
|
|
13800
|
-
} & { [
|
|
13801
|
-
} & { [
|
|
13821
|
+
} & { [K_413 in Exclude<keyof I_1["error"]["context"], string | number>]: never; }) | undefined;
|
|
13822
|
+
} & { [K_414 in Exclude<keyof I_1["error"], keyof Error>]: never; }) | undefined;
|
|
13802
13823
|
notifications?: ({
|
|
13803
13824
|
notifications?: {
|
|
13804
13825
|
id?: string | undefined;
|
|
@@ -14069,8 +14090,8 @@ export declare const Envelope: {
|
|
|
14069
14090
|
creator_id?: string | undefined;
|
|
14070
14091
|
channel_label?: string | undefined;
|
|
14071
14092
|
channel_private?: number | undefined;
|
|
14072
|
-
avatars?: (string[] & string[] & { [
|
|
14073
|
-
user_ids?: (string[] & string[] & { [
|
|
14093
|
+
avatars?: (string[] & string[] & { [K_415 in Exclude<keyof I_1["notifications"]["notifications"][number]["channel"]["avatars"], keyof string[]>]: never; }) | undefined;
|
|
14094
|
+
user_ids?: (string[] & string[] & { [K_416 in Exclude<keyof I_1["notifications"]["notifications"][number]["channel"]["user_ids"], keyof string[]>]: never; }) | undefined;
|
|
14074
14095
|
last_sent_message?: ({
|
|
14075
14096
|
id?: string | undefined;
|
|
14076
14097
|
timestamp_seconds?: number | undefined;
|
|
@@ -14089,7 +14110,7 @@ export declare const Envelope: {
|
|
|
14089
14110
|
reference?: string | undefined;
|
|
14090
14111
|
mention?: string | undefined;
|
|
14091
14112
|
reaction?: string | undefined;
|
|
14092
|
-
} & { [
|
|
14113
|
+
} & { [K_417 in Exclude<keyof I_1["notifications"]["notifications"][number]["channel"]["last_sent_message"], keyof ChannelMessageHeader>]: never; }) | undefined;
|
|
14093
14114
|
last_seen_message?: ({
|
|
14094
14115
|
id?: string | undefined;
|
|
14095
14116
|
timestamp_seconds?: number | undefined;
|
|
@@ -14108,17 +14129,17 @@ export declare const Envelope: {
|
|
|
14108
14129
|
reference?: string | undefined;
|
|
14109
14130
|
mention?: string | undefined;
|
|
14110
14131
|
reaction?: string | undefined;
|
|
14111
|
-
} & { [
|
|
14112
|
-
onlines?: (boolean[] & boolean[] & { [
|
|
14132
|
+
} & { [K_418 in Exclude<keyof I_1["notifications"]["notifications"][number]["channel"]["last_seen_message"], keyof ChannelMessageHeader>]: never; }) | undefined;
|
|
14133
|
+
onlines?: (boolean[] & boolean[] & { [K_419 in Exclude<keyof I_1["notifications"]["notifications"][number]["channel"]["onlines"], keyof boolean[]>]: never; }) | undefined;
|
|
14113
14134
|
meeting_code?: string | undefined;
|
|
14114
14135
|
count_mess_unread?: number | undefined;
|
|
14115
14136
|
active?: number | undefined;
|
|
14116
14137
|
last_pin_message?: string | undefined;
|
|
14117
|
-
usernames?: (string[] & string[] & { [
|
|
14138
|
+
usernames?: (string[] & string[] & { [K_420 in Exclude<keyof I_1["notifications"]["notifications"][number]["channel"]["usernames"], keyof string[]>]: never; }) | undefined;
|
|
14118
14139
|
creator_name?: string | undefined;
|
|
14119
14140
|
create_time_seconds?: number | undefined;
|
|
14120
14141
|
update_time_seconds?: number | undefined;
|
|
14121
|
-
display_names?: (string[] & string[] & { [
|
|
14142
|
+
display_names?: (string[] & string[] & { [K_421 in Exclude<keyof I_1["notifications"]["notifications"][number]["channel"]["display_names"], keyof string[]>]: never; }) | undefined;
|
|
14122
14143
|
channel_avatar?: string | undefined;
|
|
14123
14144
|
clan_name?: string | undefined;
|
|
14124
14145
|
app_id?: string | undefined;
|
|
@@ -14127,10 +14148,10 @@ export declare const Envelope: {
|
|
|
14127
14148
|
topic?: string | undefined;
|
|
14128
14149
|
e2ee?: number | undefined;
|
|
14129
14150
|
member_count?: number | undefined;
|
|
14130
|
-
} & { [
|
|
14151
|
+
} & { [K_422 in Exclude<keyof I_1["notifications"]["notifications"][number]["channel"], keyof ChannelDescription1>]: never; }) | undefined;
|
|
14131
14152
|
topic_id?: string | undefined;
|
|
14132
14153
|
category?: number | undefined;
|
|
14133
|
-
} & { [
|
|
14154
|
+
} & { [K_423 in Exclude<keyof I_1["notifications"]["notifications"][number], keyof Notification>]: never; })[] & { [K_424 in Exclude<keyof I_1["notifications"]["notifications"], keyof {
|
|
14134
14155
|
id?: string | undefined;
|
|
14135
14156
|
subject?: string | undefined;
|
|
14136
14157
|
content?: string | undefined;
|
|
@@ -14196,7 +14217,7 @@ export declare const Envelope: {
|
|
|
14196
14217
|
topic_id?: string | undefined;
|
|
14197
14218
|
category?: number | undefined;
|
|
14198
14219
|
}[]>]: never; }) | undefined;
|
|
14199
|
-
} & { [
|
|
14220
|
+
} & { [K_425 in Exclude<keyof I_1["notifications"], "notifications">]: never; }) | undefined;
|
|
14200
14221
|
rpc?: ({
|
|
14201
14222
|
id?: string | undefined;
|
|
14202
14223
|
payload?: string | undefined;
|
|
@@ -14205,7 +14226,7 @@ export declare const Envelope: {
|
|
|
14205
14226
|
id?: string | undefined;
|
|
14206
14227
|
payload?: string | undefined;
|
|
14207
14228
|
http_key?: string | undefined;
|
|
14208
|
-
} & { [
|
|
14229
|
+
} & { [K_426 in Exclude<keyof I_1["rpc"], keyof Rpc>]: never; }) | undefined;
|
|
14209
14230
|
status?: ({
|
|
14210
14231
|
presences?: {
|
|
14211
14232
|
user_id?: string | undefined;
|
|
@@ -14237,7 +14258,7 @@ export declare const Envelope: {
|
|
|
14237
14258
|
status?: string | undefined;
|
|
14238
14259
|
is_mobile?: boolean | undefined;
|
|
14239
14260
|
user_status?: string | undefined;
|
|
14240
|
-
} & { [
|
|
14261
|
+
} & { [K_427 in Exclude<keyof I_1["status"]["presences"][number], keyof UserPresence>]: never; })[] & { [K_428 in Exclude<keyof I_1["status"]["presences"], keyof {
|
|
14241
14262
|
user_id?: string | undefined;
|
|
14242
14263
|
session_id?: string | undefined;
|
|
14243
14264
|
username?: string | undefined;
|
|
@@ -14245,14 +14266,14 @@ export declare const Envelope: {
|
|
|
14245
14266
|
is_mobile?: boolean | undefined;
|
|
14246
14267
|
user_status?: string | undefined;
|
|
14247
14268
|
}[]>]: never; }) | undefined;
|
|
14248
|
-
} & { [
|
|
14269
|
+
} & { [K_429 in Exclude<keyof I_1["status"], "presences">]: never; }) | undefined;
|
|
14249
14270
|
status_follow?: ({
|
|
14250
14271
|
user_ids?: string[] | undefined;
|
|
14251
14272
|
usernames?: string[] | undefined;
|
|
14252
14273
|
} & {
|
|
14253
|
-
user_ids?: (string[] & string[] & { [
|
|
14254
|
-
usernames?: (string[] & string[] & { [
|
|
14255
|
-
} & { [
|
|
14274
|
+
user_ids?: (string[] & string[] & { [K_430 in Exclude<keyof I_1["status_follow"]["user_ids"], keyof string[]>]: never; }) | undefined;
|
|
14275
|
+
usernames?: (string[] & string[] & { [K_431 in Exclude<keyof I_1["status_follow"]["usernames"], keyof string[]>]: never; }) | undefined;
|
|
14276
|
+
} & { [K_432 in Exclude<keyof I_1["status_follow"], keyof StatusFollow>]: never; }) | undefined;
|
|
14256
14277
|
status_presence_event?: ({
|
|
14257
14278
|
joins?: {
|
|
14258
14279
|
user_id?: string | undefined;
|
|
@@ -14292,7 +14313,7 @@ export declare const Envelope: {
|
|
|
14292
14313
|
status?: string | undefined;
|
|
14293
14314
|
is_mobile?: boolean | undefined;
|
|
14294
14315
|
user_status?: string | undefined;
|
|
14295
|
-
} & { [
|
|
14316
|
+
} & { [K_433 in Exclude<keyof I_1["status_presence_event"]["joins"][number], keyof UserPresence>]: never; })[] & { [K_434 in Exclude<keyof I_1["status_presence_event"]["joins"], keyof {
|
|
14296
14317
|
user_id?: string | undefined;
|
|
14297
14318
|
session_id?: string | undefined;
|
|
14298
14319
|
username?: string | undefined;
|
|
@@ -14321,7 +14342,7 @@ export declare const Envelope: {
|
|
|
14321
14342
|
status?: string | undefined;
|
|
14322
14343
|
is_mobile?: boolean | undefined;
|
|
14323
14344
|
user_status?: string | undefined;
|
|
14324
|
-
} & { [
|
|
14345
|
+
} & { [K_435 in Exclude<keyof I_1["status_presence_event"]["leaves"][number], keyof UserPresence>]: never; })[] & { [K_436 in Exclude<keyof I_1["status_presence_event"]["leaves"], keyof {
|
|
14325
14346
|
user_id?: string | undefined;
|
|
14326
14347
|
session_id?: string | undefined;
|
|
14327
14348
|
username?: string | undefined;
|
|
@@ -14329,17 +14350,17 @@ export declare const Envelope: {
|
|
|
14329
14350
|
is_mobile?: boolean | undefined;
|
|
14330
14351
|
user_status?: string | undefined;
|
|
14331
14352
|
}[]>]: never; }) | undefined;
|
|
14332
|
-
} & { [
|
|
14353
|
+
} & { [K_437 in Exclude<keyof I_1["status_presence_event"], keyof StatusPresenceEvent>]: never; }) | undefined;
|
|
14333
14354
|
status_unfollow?: ({
|
|
14334
14355
|
user_ids?: string[] | undefined;
|
|
14335
14356
|
} & {
|
|
14336
|
-
user_ids?: (string[] & string[] & { [
|
|
14337
|
-
} & { [
|
|
14357
|
+
user_ids?: (string[] & string[] & { [K_438 in Exclude<keyof I_1["status_unfollow"]["user_ids"], keyof string[]>]: never; }) | undefined;
|
|
14358
|
+
} & { [K_439 in Exclude<keyof I_1["status_unfollow"], "user_ids">]: never; }) | undefined;
|
|
14338
14359
|
status_update?: ({
|
|
14339
14360
|
status?: string | undefined;
|
|
14340
14361
|
} & {
|
|
14341
14362
|
status?: string | undefined;
|
|
14342
|
-
} & { [
|
|
14363
|
+
} & { [K_440 in Exclude<keyof I_1["status_update"], "status">]: never; }) | undefined;
|
|
14343
14364
|
stream_data?: ({
|
|
14344
14365
|
stream?: {
|
|
14345
14366
|
mode?: number | undefined;
|
|
@@ -14368,7 +14389,7 @@ export declare const Envelope: {
|
|
|
14368
14389
|
channel_id?: string | undefined;
|
|
14369
14390
|
clan_id?: string | undefined;
|
|
14370
14391
|
label?: string | undefined;
|
|
14371
|
-
} & { [
|
|
14392
|
+
} & { [K_441 in Exclude<keyof I_1["stream_data"]["stream"], keyof Stream>]: never; }) | undefined;
|
|
14372
14393
|
sender?: ({
|
|
14373
14394
|
user_id?: string | undefined;
|
|
14374
14395
|
session_id?: string | undefined;
|
|
@@ -14383,10 +14404,10 @@ export declare const Envelope: {
|
|
|
14383
14404
|
status?: string | undefined;
|
|
14384
14405
|
is_mobile?: boolean | undefined;
|
|
14385
14406
|
user_status?: string | undefined;
|
|
14386
|
-
} & { [
|
|
14407
|
+
} & { [K_442 in Exclude<keyof I_1["stream_data"]["sender"], keyof UserPresence>]: never; }) | undefined;
|
|
14387
14408
|
data?: string | undefined;
|
|
14388
14409
|
reliable?: boolean | undefined;
|
|
14389
|
-
} & { [
|
|
14410
|
+
} & { [K_443 in Exclude<keyof I_1["stream_data"], keyof StreamData>]: never; }) | undefined;
|
|
14390
14411
|
stream_presence_event?: ({
|
|
14391
14412
|
stream?: {
|
|
14392
14413
|
mode?: number | undefined;
|
|
@@ -14421,7 +14442,7 @@ export declare const Envelope: {
|
|
|
14421
14442
|
channel_id?: string | undefined;
|
|
14422
14443
|
clan_id?: string | undefined;
|
|
14423
14444
|
label?: string | undefined;
|
|
14424
|
-
} & { [
|
|
14445
|
+
} & { [K_444 in Exclude<keyof I_1["stream_presence_event"]["stream"], keyof Stream>]: never; }) | undefined;
|
|
14425
14446
|
joins?: ({
|
|
14426
14447
|
user_id?: string | undefined;
|
|
14427
14448
|
session_id?: string | undefined;
|
|
@@ -14443,7 +14464,7 @@ export declare const Envelope: {
|
|
|
14443
14464
|
status?: string | undefined;
|
|
14444
14465
|
is_mobile?: boolean | undefined;
|
|
14445
14466
|
user_status?: string | undefined;
|
|
14446
|
-
} & { [
|
|
14467
|
+
} & { [K_445 in Exclude<keyof I_1["stream_presence_event"]["joins"][number], keyof UserPresence>]: never; })[] & { [K_446 in Exclude<keyof I_1["stream_presence_event"]["joins"], keyof {
|
|
14447
14468
|
user_id?: string | undefined;
|
|
14448
14469
|
session_id?: string | undefined;
|
|
14449
14470
|
username?: string | undefined;
|
|
@@ -14472,7 +14493,7 @@ export declare const Envelope: {
|
|
|
14472
14493
|
status?: string | undefined;
|
|
14473
14494
|
is_mobile?: boolean | undefined;
|
|
14474
14495
|
user_status?: string | undefined;
|
|
14475
|
-
} & { [
|
|
14496
|
+
} & { [K_447 in Exclude<keyof I_1["stream_presence_event"]["leaves"][number], keyof UserPresence>]: never; })[] & { [K_448 in Exclude<keyof I_1["stream_presence_event"]["leaves"], keyof {
|
|
14476
14497
|
user_id?: string | undefined;
|
|
14477
14498
|
session_id?: string | undefined;
|
|
14478
14499
|
username?: string | undefined;
|
|
@@ -14480,9 +14501,9 @@ export declare const Envelope: {
|
|
|
14480
14501
|
is_mobile?: boolean | undefined;
|
|
14481
14502
|
user_status?: string | undefined;
|
|
14482
14503
|
}[]>]: never; }) | undefined;
|
|
14483
|
-
} & { [
|
|
14484
|
-
ping?: ({} & {} & { [
|
|
14485
|
-
pong?: ({} & {} & { [
|
|
14504
|
+
} & { [K_449 in Exclude<keyof I_1["stream_presence_event"], keyof StreamPresenceEvent>]: never; }) | undefined;
|
|
14505
|
+
ping?: ({} & {} & { [K_450 in Exclude<keyof I_1["ping"], never>]: never; }) | undefined;
|
|
14506
|
+
pong?: ({} & {} & { [K_451 in Exclude<keyof I_1["pong"], never>]: never; }) | undefined;
|
|
14486
14507
|
message_typing_event?: ({
|
|
14487
14508
|
clan_id?: string | undefined;
|
|
14488
14509
|
channel_id?: string | undefined;
|
|
@@ -14501,7 +14522,7 @@ export declare const Envelope: {
|
|
|
14501
14522
|
sender_username?: string | undefined;
|
|
14502
14523
|
sender_display_name?: string | undefined;
|
|
14503
14524
|
topic_id?: string | undefined;
|
|
14504
|
-
} & { [
|
|
14525
|
+
} & { [K_452 in Exclude<keyof I_1["message_typing_event"], keyof MessageTypingEvent>]: never; }) | undefined;
|
|
14505
14526
|
last_seen_message_event?: ({
|
|
14506
14527
|
clan_id?: string | undefined;
|
|
14507
14528
|
channel_id?: string | undefined;
|
|
@@ -14516,7 +14537,7 @@ export declare const Envelope: {
|
|
|
14516
14537
|
mode?: number | undefined;
|
|
14517
14538
|
timestamp_seconds?: number | undefined;
|
|
14518
14539
|
badge_count?: number | undefined;
|
|
14519
|
-
} & { [
|
|
14540
|
+
} & { [K_453 in Exclude<keyof I_1["last_seen_message_event"], keyof LastSeenMessageEvent>]: never; }) | undefined;
|
|
14520
14541
|
message_reaction_event?: ({
|
|
14521
14542
|
id?: string | undefined;
|
|
14522
14543
|
emoji_id?: string | undefined;
|
|
@@ -14551,7 +14572,7 @@ export declare const Envelope: {
|
|
|
14551
14572
|
is_public?: boolean | undefined;
|
|
14552
14573
|
topic_id?: string | undefined;
|
|
14553
14574
|
emoji_recent_id?: string | undefined;
|
|
14554
|
-
} & { [
|
|
14575
|
+
} & { [K_454 in Exclude<keyof I_1["message_reaction_event"], keyof MessageReaction>]: never; }) | undefined;
|
|
14555
14576
|
voice_joined_event?: ({
|
|
14556
14577
|
clan_id?: string | undefined;
|
|
14557
14578
|
clan_name?: string | undefined;
|
|
@@ -14570,7 +14591,7 @@ export declare const Envelope: {
|
|
|
14570
14591
|
voice_channel_label?: string | undefined;
|
|
14571
14592
|
voice_channel_id?: string | undefined;
|
|
14572
14593
|
last_screenshot?: string | undefined;
|
|
14573
|
-
} & { [
|
|
14594
|
+
} & { [K_455 in Exclude<keyof I_1["voice_joined_event"], keyof VoiceJoinedEvent>]: never; }) | undefined;
|
|
14574
14595
|
voice_leaved_event?: ({
|
|
14575
14596
|
id?: string | undefined;
|
|
14576
14597
|
clan_id?: string | undefined;
|
|
@@ -14581,7 +14602,7 @@ export declare const Envelope: {
|
|
|
14581
14602
|
clan_id?: string | undefined;
|
|
14582
14603
|
voice_channel_id?: string | undefined;
|
|
14583
14604
|
voice_user_id?: string | undefined;
|
|
14584
|
-
} & { [
|
|
14605
|
+
} & { [K_456 in Exclude<keyof I_1["voice_leaved_event"], keyof VoiceLeavedEvent>]: never; }) | undefined;
|
|
14585
14606
|
voice_started_event?: ({
|
|
14586
14607
|
id?: string | undefined;
|
|
14587
14608
|
clan_id?: string | undefined;
|
|
@@ -14590,7 +14611,7 @@ export declare const Envelope: {
|
|
|
14590
14611
|
id?: string | undefined;
|
|
14591
14612
|
clan_id?: string | undefined;
|
|
14592
14613
|
voice_channel_id?: string | undefined;
|
|
14593
|
-
} & { [
|
|
14614
|
+
} & { [K_457 in Exclude<keyof I_1["voice_started_event"], keyof VoiceStartedEvent>]: never; }) | undefined;
|
|
14594
14615
|
voice_ended_event?: ({
|
|
14595
14616
|
id?: string | undefined;
|
|
14596
14617
|
clan_id?: string | undefined;
|
|
@@ -14599,7 +14620,7 @@ export declare const Envelope: {
|
|
|
14599
14620
|
id?: string | undefined;
|
|
14600
14621
|
clan_id?: string | undefined;
|
|
14601
14622
|
voice_channel_id?: string | undefined;
|
|
14602
|
-
} & { [
|
|
14623
|
+
} & { [K_458 in Exclude<keyof I_1["voice_ended_event"], keyof VoiceEndedEvent>]: never; }) | undefined;
|
|
14603
14624
|
channel_created_event?: ({
|
|
14604
14625
|
clan_id?: string | undefined;
|
|
14605
14626
|
category_id?: string | undefined;
|
|
@@ -14626,7 +14647,7 @@ export declare const Envelope: {
|
|
|
14626
14647
|
app_id?: string | undefined;
|
|
14627
14648
|
clan_name?: string | undefined;
|
|
14628
14649
|
channel_avatar?: string | undefined;
|
|
14629
|
-
} & { [
|
|
14650
|
+
} & { [K_459 in Exclude<keyof I_1["channel_created_event"], keyof ChannelCreatedEvent>]: never; }) | undefined;
|
|
14630
14651
|
channel_deleted_event?: ({
|
|
14631
14652
|
clan_id?: string | undefined;
|
|
14632
14653
|
category_id?: string | undefined;
|
|
@@ -14639,7 +14660,7 @@ export declare const Envelope: {
|
|
|
14639
14660
|
parent_id?: string | undefined;
|
|
14640
14661
|
channel_id?: string | undefined;
|
|
14641
14662
|
deletor?: string | undefined;
|
|
14642
|
-
} & { [
|
|
14663
|
+
} & { [K_460 in Exclude<keyof I_1["channel_deleted_event"], keyof ChannelDeletedEvent>]: never; }) | undefined;
|
|
14643
14664
|
channel_updated_event?: ({
|
|
14644
14665
|
clan_id?: string | undefined;
|
|
14645
14666
|
category_id?: string | undefined;
|
|
@@ -14679,10 +14700,10 @@ export declare const Envelope: {
|
|
|
14679
14700
|
age_restricted?: number | undefined;
|
|
14680
14701
|
active?: number | undefined;
|
|
14681
14702
|
count_mess_unread?: number | undefined;
|
|
14682
|
-
user_ids?: (string[] & string[] & { [
|
|
14683
|
-
role_ids?: (string[] & string[] & { [
|
|
14703
|
+
user_ids?: (string[] & string[] & { [K_461 in Exclude<keyof I_1["channel_updated_event"]["user_ids"], keyof string[]>]: never; }) | undefined;
|
|
14704
|
+
role_ids?: (string[] & string[] & { [K_462 in Exclude<keyof I_1["channel_updated_event"]["role_ids"], keyof string[]>]: never; }) | undefined;
|
|
14684
14705
|
channel_avatar?: string | undefined;
|
|
14685
|
-
} & { [
|
|
14706
|
+
} & { [K_463 in Exclude<keyof I_1["channel_updated_event"], keyof ChannelUpdatedEvent>]: never; }) | undefined;
|
|
14686
14707
|
last_pin_message_event?: ({
|
|
14687
14708
|
clan_id?: string | undefined;
|
|
14688
14709
|
channel_id?: string | undefined;
|
|
@@ -14713,7 +14734,7 @@ export declare const Envelope: {
|
|
|
14713
14734
|
message_content?: string | undefined;
|
|
14714
14735
|
message_attachment?: string | undefined;
|
|
14715
14736
|
message_created_time?: string | undefined;
|
|
14716
|
-
} & { [
|
|
14737
|
+
} & { [K_464 in Exclude<keyof I_1["last_pin_message_event"], keyof LastPinMessageEvent>]: never; }) | undefined;
|
|
14717
14738
|
custom_status_event?: ({
|
|
14718
14739
|
clan_id?: string | undefined;
|
|
14719
14740
|
user_id?: string | undefined;
|
|
@@ -14728,7 +14749,7 @@ export declare const Envelope: {
|
|
|
14728
14749
|
status?: string | undefined;
|
|
14729
14750
|
time_reset?: number | undefined;
|
|
14730
14751
|
no_clear?: boolean | undefined;
|
|
14731
|
-
} & { [
|
|
14752
|
+
} & { [K_465 in Exclude<keyof I_1["custom_status_event"], keyof CustomStatusEvent>]: never; }) | undefined;
|
|
14732
14753
|
user_channel_added_event?: ({
|
|
14733
14754
|
channel_desc?: {
|
|
14734
14755
|
clan_id?: string | undefined;
|
|
@@ -14886,8 +14907,8 @@ export declare const Envelope: {
|
|
|
14886
14907
|
creator_id?: string | undefined;
|
|
14887
14908
|
channel_label?: string | undefined;
|
|
14888
14909
|
channel_private?: number | undefined;
|
|
14889
|
-
avatars?: (string[] & string[] & { [
|
|
14890
|
-
user_ids?: (string[] & string[] & { [
|
|
14910
|
+
avatars?: (string[] & string[] & { [K_466 in Exclude<keyof I_1["user_channel_added_event"]["channel_desc"]["avatars"], keyof string[]>]: never; }) | undefined;
|
|
14911
|
+
user_ids?: (string[] & string[] & { [K_467 in Exclude<keyof I_1["user_channel_added_event"]["channel_desc"]["user_ids"], keyof string[]>]: never; }) | undefined;
|
|
14891
14912
|
last_sent_message?: ({
|
|
14892
14913
|
id?: string | undefined;
|
|
14893
14914
|
timestamp_seconds?: number | undefined;
|
|
@@ -14906,7 +14927,7 @@ export declare const Envelope: {
|
|
|
14906
14927
|
reference?: string | undefined;
|
|
14907
14928
|
mention?: string | undefined;
|
|
14908
14929
|
reaction?: string | undefined;
|
|
14909
|
-
} & { [
|
|
14930
|
+
} & { [K_468 in Exclude<keyof I_1["user_channel_added_event"]["channel_desc"]["last_sent_message"], keyof ChannelMessageHeader>]: never; }) | undefined;
|
|
14910
14931
|
last_seen_message?: ({
|
|
14911
14932
|
id?: string | undefined;
|
|
14912
14933
|
timestamp_seconds?: number | undefined;
|
|
@@ -14925,17 +14946,17 @@ export declare const Envelope: {
|
|
|
14925
14946
|
reference?: string | undefined;
|
|
14926
14947
|
mention?: string | undefined;
|
|
14927
14948
|
reaction?: string | undefined;
|
|
14928
|
-
} & { [
|
|
14929
|
-
onlines?: (boolean[] & boolean[] & { [
|
|
14949
|
+
} & { [K_469 in Exclude<keyof I_1["user_channel_added_event"]["channel_desc"]["last_seen_message"], keyof ChannelMessageHeader>]: never; }) | undefined;
|
|
14950
|
+
onlines?: (boolean[] & boolean[] & { [K_470 in Exclude<keyof I_1["user_channel_added_event"]["channel_desc"]["onlines"], keyof boolean[]>]: never; }) | undefined;
|
|
14930
14951
|
meeting_code?: string | undefined;
|
|
14931
14952
|
count_mess_unread?: number | undefined;
|
|
14932
14953
|
active?: number | undefined;
|
|
14933
14954
|
last_pin_message?: string | undefined;
|
|
14934
|
-
usernames?: (string[] & string[] & { [
|
|
14955
|
+
usernames?: (string[] & string[] & { [K_471 in Exclude<keyof I_1["user_channel_added_event"]["channel_desc"]["usernames"], keyof string[]>]: never; }) | undefined;
|
|
14935
14956
|
creator_name?: string | undefined;
|
|
14936
14957
|
create_time_seconds?: number | undefined;
|
|
14937
14958
|
update_time_seconds?: number | undefined;
|
|
14938
|
-
display_names?: (string[] & string[] & { [
|
|
14959
|
+
display_names?: (string[] & string[] & { [K_472 in Exclude<keyof I_1["user_channel_added_event"]["channel_desc"]["display_names"], keyof string[]>]: never; }) | undefined;
|
|
14939
14960
|
channel_avatar?: string | undefined;
|
|
14940
14961
|
clan_name?: string | undefined;
|
|
14941
14962
|
app_id?: string | undefined;
|
|
@@ -14944,7 +14965,7 @@ export declare const Envelope: {
|
|
|
14944
14965
|
topic?: string | undefined;
|
|
14945
14966
|
e2ee?: number | undefined;
|
|
14946
14967
|
member_count?: number | undefined;
|
|
14947
|
-
} & { [
|
|
14968
|
+
} & { [K_473 in Exclude<keyof I_1["user_channel_added_event"]["channel_desc"], keyof ChannelDescription1>]: never; }) | undefined;
|
|
14948
14969
|
users?: ({
|
|
14949
14970
|
user_id?: string | undefined;
|
|
14950
14971
|
username?: string | undefined;
|
|
@@ -15003,18 +15024,18 @@ export declare const Envelope: {
|
|
|
15003
15024
|
device_id?: string | undefined;
|
|
15004
15025
|
token_id?: string | undefined;
|
|
15005
15026
|
platform?: string | undefined;
|
|
15006
|
-
} & { [
|
|
15027
|
+
} & { [K_474 in Exclude<keyof I_1["user_channel_added_event"]["users"][number]["fcm_tokens"][number], keyof FCMTokens>]: never; })[] & { [K_475 in Exclude<keyof I_1["user_channel_added_event"]["users"][number]["fcm_tokens"], keyof {
|
|
15007
15028
|
device_id?: string | undefined;
|
|
15008
15029
|
token_id?: string | undefined;
|
|
15009
15030
|
platform?: string | undefined;
|
|
15010
15031
|
}[]>]: never; }) | undefined;
|
|
15011
|
-
joined_clans?: (string[] & string[] & { [
|
|
15032
|
+
joined_clans?: (string[] & string[] & { [K_476 in Exclude<keyof I_1["user_channel_added_event"]["users"][number]["joined_clans"], keyof string[]>]: never; }) | undefined;
|
|
15012
15033
|
app_token?: string | undefined;
|
|
15013
15034
|
create_time_second?: number | undefined;
|
|
15014
15035
|
app_url?: string | undefined;
|
|
15015
15036
|
is_bot?: boolean | undefined;
|
|
15016
15037
|
voip_token?: string | undefined;
|
|
15017
|
-
} & { [
|
|
15038
|
+
} & { [K_477 in Exclude<keyof I_1["user_channel_added_event"]["users"][number], keyof UserProfileRedis>]: never; })[] & { [K_478 in Exclude<keyof I_1["user_channel_added_event"]["users"], keyof {
|
|
15018
15039
|
user_id?: string | undefined;
|
|
15019
15040
|
username?: string | undefined;
|
|
15020
15041
|
avatar?: string | undefined;
|
|
@@ -15075,21 +15096,21 @@ export declare const Envelope: {
|
|
|
15075
15096
|
device_id?: string | undefined;
|
|
15076
15097
|
token_id?: string | undefined;
|
|
15077
15098
|
platform?: string | undefined;
|
|
15078
|
-
} & { [
|
|
15099
|
+
} & { [K_479 in Exclude<keyof I_1["user_channel_added_event"]["caller"]["fcm_tokens"][number], keyof FCMTokens>]: never; })[] & { [K_480 in Exclude<keyof I_1["user_channel_added_event"]["caller"]["fcm_tokens"], keyof {
|
|
15079
15100
|
device_id?: string | undefined;
|
|
15080
15101
|
token_id?: string | undefined;
|
|
15081
15102
|
platform?: string | undefined;
|
|
15082
15103
|
}[]>]: never; }) | undefined;
|
|
15083
|
-
joined_clans?: (string[] & string[] & { [
|
|
15104
|
+
joined_clans?: (string[] & string[] & { [K_481 in Exclude<keyof I_1["user_channel_added_event"]["caller"]["joined_clans"], keyof string[]>]: never; }) | undefined;
|
|
15084
15105
|
app_token?: string | undefined;
|
|
15085
15106
|
create_time_second?: number | undefined;
|
|
15086
15107
|
app_url?: string | undefined;
|
|
15087
15108
|
is_bot?: boolean | undefined;
|
|
15088
15109
|
voip_token?: string | undefined;
|
|
15089
|
-
} & { [
|
|
15110
|
+
} & { [K_482 in Exclude<keyof I_1["user_channel_added_event"]["caller"], keyof UserProfileRedis>]: never; }) | undefined;
|
|
15090
15111
|
create_time_second?: number | undefined;
|
|
15091
15112
|
active?: number | undefined;
|
|
15092
|
-
} & { [
|
|
15113
|
+
} & { [K_483 in Exclude<keyof I_1["user_channel_added_event"], keyof UserChannelAdded>]: never; }) | undefined;
|
|
15093
15114
|
user_channel_removed_event?: ({
|
|
15094
15115
|
channel_id?: string | undefined;
|
|
15095
15116
|
user_ids?: string[] | undefined;
|
|
@@ -15098,18 +15119,18 @@ export declare const Envelope: {
|
|
|
15098
15119
|
badge_counts?: number[] | undefined;
|
|
15099
15120
|
} & {
|
|
15100
15121
|
channel_id?: string | undefined;
|
|
15101
|
-
user_ids?: (string[] & string[] & { [
|
|
15122
|
+
user_ids?: (string[] & string[] & { [K_484 in Exclude<keyof I_1["user_channel_removed_event"]["user_ids"], keyof string[]>]: never; }) | undefined;
|
|
15102
15123
|
channel_type?: number | undefined;
|
|
15103
15124
|
clan_id?: string | undefined;
|
|
15104
|
-
badge_counts?: (number[] & number[] & { [
|
|
15105
|
-
} & { [
|
|
15125
|
+
badge_counts?: (number[] & number[] & { [K_485 in Exclude<keyof I_1["user_channel_removed_event"]["badge_counts"], keyof number[]>]: never; }) | undefined;
|
|
15126
|
+
} & { [K_486 in Exclude<keyof I_1["user_channel_removed_event"], keyof UserChannelRemoved>]: never; }) | undefined;
|
|
15106
15127
|
user_clan_removed_event?: ({
|
|
15107
15128
|
clan_id?: string | undefined;
|
|
15108
15129
|
user_ids?: string[] | undefined;
|
|
15109
15130
|
} & {
|
|
15110
15131
|
clan_id?: string | undefined;
|
|
15111
|
-
user_ids?: (string[] & string[] & { [
|
|
15112
|
-
} & { [
|
|
15132
|
+
user_ids?: (string[] & string[] & { [K_487 in Exclude<keyof I_1["user_clan_removed_event"]["user_ids"], keyof string[]>]: never; }) | undefined;
|
|
15133
|
+
} & { [K_488 in Exclude<keyof I_1["user_clan_removed_event"], keyof UserClanRemoved>]: never; }) | undefined;
|
|
15113
15134
|
clan_updated_event?: ({
|
|
15114
15135
|
clan_id?: string | undefined;
|
|
15115
15136
|
clan_name?: string | undefined;
|
|
@@ -15138,7 +15159,7 @@ export declare const Envelope: {
|
|
|
15138
15159
|
about?: string | undefined;
|
|
15139
15160
|
description?: string | undefined;
|
|
15140
15161
|
prevent_anonymous?: boolean | undefined;
|
|
15141
|
-
} & { [
|
|
15162
|
+
} & { [K_489 in Exclude<keyof I_1["clan_updated_event"], keyof ClanUpdatedEvent>]: never; }) | undefined;
|
|
15142
15163
|
clan_profile_updated_event?: ({
|
|
15143
15164
|
user_id?: string | undefined;
|
|
15144
15165
|
clan_nick?: string | undefined;
|
|
@@ -15149,7 +15170,7 @@ export declare const Envelope: {
|
|
|
15149
15170
|
clan_nick?: string | undefined;
|
|
15150
15171
|
clan_avatar?: string | undefined;
|
|
15151
15172
|
clan_id?: string | undefined;
|
|
15152
|
-
} & { [
|
|
15173
|
+
} & { [K_490 in Exclude<keyof I_1["clan_profile_updated_event"], keyof ClanProfileUpdatedEvent>]: never; }) | undefined;
|
|
15153
15174
|
check_name_existed_event?: ({
|
|
15154
15175
|
name?: string | undefined;
|
|
15155
15176
|
condition_id?: string | undefined;
|
|
@@ -15162,7 +15183,7 @@ export declare const Envelope: {
|
|
|
15162
15183
|
exist?: boolean | undefined;
|
|
15163
15184
|
type?: number | undefined;
|
|
15164
15185
|
clan_id?: string | undefined;
|
|
15165
|
-
} & { [
|
|
15186
|
+
} & { [K_491 in Exclude<keyof I_1["check_name_existed_event"], keyof CheckNameExistedEvent>]: never; }) | undefined;
|
|
15166
15187
|
user_profile_updated_event?: ({
|
|
15167
15188
|
user_id?: string | undefined;
|
|
15168
15189
|
display_name?: string | undefined;
|
|
@@ -15179,7 +15200,7 @@ export declare const Envelope: {
|
|
|
15179
15200
|
channel_id?: string | undefined;
|
|
15180
15201
|
clan_id?: string | undefined;
|
|
15181
15202
|
encrypt_private_key?: string | undefined;
|
|
15182
|
-
} & { [
|
|
15203
|
+
} & { [K_492 in Exclude<keyof I_1["user_profile_updated_event"], keyof UserProfileUpdatedEvent>]: never; }) | undefined;
|
|
15183
15204
|
add_clan_user_event?: ({
|
|
15184
15205
|
clan_id?: string | undefined;
|
|
15185
15206
|
user?: {
|
|
@@ -15244,20 +15265,20 @@ export declare const Envelope: {
|
|
|
15244
15265
|
device_id?: string | undefined;
|
|
15245
15266
|
token_id?: string | undefined;
|
|
15246
15267
|
platform?: string | undefined;
|
|
15247
|
-
} & { [
|
|
15268
|
+
} & { [K_493 in Exclude<keyof I_1["add_clan_user_event"]["user"]["fcm_tokens"][number], keyof FCMTokens>]: never; })[] & { [K_494 in Exclude<keyof I_1["add_clan_user_event"]["user"]["fcm_tokens"], keyof {
|
|
15248
15269
|
device_id?: string | undefined;
|
|
15249
15270
|
token_id?: string | undefined;
|
|
15250
15271
|
platform?: string | undefined;
|
|
15251
15272
|
}[]>]: never; }) | undefined;
|
|
15252
|
-
joined_clans?: (string[] & string[] & { [
|
|
15273
|
+
joined_clans?: (string[] & string[] & { [K_495 in Exclude<keyof I_1["add_clan_user_event"]["user"]["joined_clans"], keyof string[]>]: never; }) | undefined;
|
|
15253
15274
|
app_token?: string | undefined;
|
|
15254
15275
|
create_time_second?: number | undefined;
|
|
15255
15276
|
app_url?: string | undefined;
|
|
15256
15277
|
is_bot?: boolean | undefined;
|
|
15257
15278
|
voip_token?: string | undefined;
|
|
15258
|
-
} & { [
|
|
15279
|
+
} & { [K_496 in Exclude<keyof I_1["add_clan_user_event"]["user"], keyof UserProfileRedis>]: never; }) | undefined;
|
|
15259
15280
|
invitor?: string | undefined;
|
|
15260
|
-
} & { [
|
|
15281
|
+
} & { [K_497 in Exclude<keyof I_1["add_clan_user_event"], keyof AddClanUserEvent>]: never; }) | undefined;
|
|
15261
15282
|
clan_event_created?: ({
|
|
15262
15283
|
title?: string | undefined;
|
|
15263
15284
|
logo?: string | undefined;
|
|
@@ -15311,8 +15332,8 @@ export declare const Envelope: {
|
|
|
15311
15332
|
external_link?: string | undefined;
|
|
15312
15333
|
creator_id?: string | undefined;
|
|
15313
15334
|
event_id?: string | undefined;
|
|
15314
|
-
} & { [
|
|
15315
|
-
} & { [
|
|
15335
|
+
} & { [K_498 in Exclude<keyof I_1["clan_event_created"]["meet_room"], keyof import("../api/api").GenerateMezonMeetResponse>]: never; }) | undefined;
|
|
15336
|
+
} & { [K_499 in Exclude<keyof I_1["clan_event_created"], keyof CreateEventRequest>]: never; }) | undefined;
|
|
15316
15337
|
role_assign_event?: ({
|
|
15317
15338
|
ClanId?: string | undefined;
|
|
15318
15339
|
role_id?: string | undefined;
|
|
@@ -15321,16 +15342,16 @@ export declare const Envelope: {
|
|
|
15321
15342
|
} & {
|
|
15322
15343
|
ClanId?: string | undefined;
|
|
15323
15344
|
role_id?: string | undefined;
|
|
15324
|
-
user_ids_assigned?: (string[] & string[] & { [
|
|
15325
|
-
user_ids_removed?: (string[] & string[] & { [
|
|
15326
|
-
} & { [
|
|
15345
|
+
user_ids_assigned?: (string[] & string[] & { [K_500 in Exclude<keyof I_1["role_assign_event"]["user_ids_assigned"], keyof string[]>]: never; }) | undefined;
|
|
15346
|
+
user_ids_removed?: (string[] & string[] & { [K_501 in Exclude<keyof I_1["role_assign_event"]["user_ids_removed"], keyof string[]>]: never; }) | undefined;
|
|
15347
|
+
} & { [K_502 in Exclude<keyof I_1["role_assign_event"], keyof RoleAssignedEvent>]: never; }) | undefined;
|
|
15327
15348
|
clan_deleted_event?: ({
|
|
15328
15349
|
clan_id?: string | undefined;
|
|
15329
15350
|
deletor?: string | undefined;
|
|
15330
15351
|
} & {
|
|
15331
15352
|
clan_id?: string | undefined;
|
|
15332
15353
|
deletor?: string | undefined;
|
|
15333
|
-
} & { [
|
|
15354
|
+
} & { [K_503 in Exclude<keyof I_1["clan_deleted_event"], keyof ClanDeletedEvent>]: never; }) | undefined;
|
|
15334
15355
|
give_coffee_event?: ({
|
|
15335
15356
|
sender_id?: string | undefined;
|
|
15336
15357
|
receiver_id?: string | undefined;
|
|
@@ -15345,7 +15366,7 @@ export declare const Envelope: {
|
|
|
15345
15366
|
message_ref_id?: string | undefined;
|
|
15346
15367
|
channel_id?: string | undefined;
|
|
15347
15368
|
clan_id?: string | undefined;
|
|
15348
|
-
} & { [
|
|
15369
|
+
} & { [K_504 in Exclude<keyof I_1["give_coffee_event"], keyof GiveCoffeeEvent>]: never; }) | undefined;
|
|
15349
15370
|
sticker_create_event?: ({
|
|
15350
15371
|
clan_id?: string | undefined;
|
|
15351
15372
|
source?: string | undefined;
|
|
@@ -15364,7 +15385,7 @@ export declare const Envelope: {
|
|
|
15364
15385
|
sticker_id?: string | undefined;
|
|
15365
15386
|
logo?: string | undefined;
|
|
15366
15387
|
clan_name?: string | undefined;
|
|
15367
|
-
} & { [
|
|
15388
|
+
} & { [K_505 in Exclude<keyof I_1["sticker_create_event"], keyof StickerCreateEvent>]: never; }) | undefined;
|
|
15368
15389
|
sticker_update_event?: ({
|
|
15369
15390
|
shortname?: string | undefined;
|
|
15370
15391
|
sticker_id?: string | undefined;
|
|
@@ -15373,14 +15394,14 @@ export declare const Envelope: {
|
|
|
15373
15394
|
shortname?: string | undefined;
|
|
15374
15395
|
sticker_id?: string | undefined;
|
|
15375
15396
|
user_id?: string | undefined;
|
|
15376
|
-
} & { [
|
|
15397
|
+
} & { [K_506 in Exclude<keyof I_1["sticker_update_event"], keyof StickerUpdateEvent>]: never; }) | undefined;
|
|
15377
15398
|
sticker_delete_event?: ({
|
|
15378
15399
|
sticker_id?: string | undefined;
|
|
15379
15400
|
user_id?: string | undefined;
|
|
15380
15401
|
} & {
|
|
15381
15402
|
sticker_id?: string | undefined;
|
|
15382
15403
|
user_id?: string | undefined;
|
|
15383
|
-
} & { [
|
|
15404
|
+
} & { [K_507 in Exclude<keyof I_1["sticker_delete_event"], keyof StickerDeleteEvent>]: never; }) | undefined;
|
|
15384
15405
|
role_event?: ({
|
|
15385
15406
|
role?: {
|
|
15386
15407
|
id?: string | undefined;
|
|
@@ -15518,7 +15539,7 @@ export declare const Envelope: {
|
|
|
15518
15539
|
lang_tag?: string | undefined;
|
|
15519
15540
|
location?: string | undefined;
|
|
15520
15541
|
online?: boolean | undefined;
|
|
15521
|
-
} & { [
|
|
15542
|
+
} & { [K_508 in Exclude<keyof I_1["role_event"]["role"]["role_user_list"]["role_users"][number], keyof import("../api/api").RoleUserList_RoleUser>]: never; })[] & { [K_509 in Exclude<keyof I_1["role_event"]["role"]["role_user_list"]["role_users"], keyof {
|
|
15522
15543
|
id?: string | undefined;
|
|
15523
15544
|
username?: string | undefined;
|
|
15524
15545
|
display_name?: string | undefined;
|
|
@@ -15528,7 +15549,7 @@ export declare const Envelope: {
|
|
|
15528
15549
|
online?: boolean | undefined;
|
|
15529
15550
|
}[]>]: never; }) | undefined;
|
|
15530
15551
|
cursor?: string | undefined;
|
|
15531
|
-
} & { [
|
|
15552
|
+
} & { [K_510 in Exclude<keyof I_1["role_event"]["role"]["role_user_list"], keyof RoleUserList>]: never; }) | undefined;
|
|
15532
15553
|
permission_list?: ({
|
|
15533
15554
|
permissions?: {
|
|
15534
15555
|
id?: string | undefined;
|
|
@@ -15565,7 +15586,7 @@ export declare const Envelope: {
|
|
|
15565
15586
|
active?: number | undefined;
|
|
15566
15587
|
scope?: number | undefined;
|
|
15567
15588
|
level?: number | undefined;
|
|
15568
|
-
} & { [
|
|
15589
|
+
} & { [K_511 in Exclude<keyof I_1["role_event"]["role"]["permission_list"]["permissions"][number], keyof import("../api/api").Permission>]: never; })[] & { [K_512 in Exclude<keyof I_1["role_event"]["role"]["permission_list"]["permissions"], keyof {
|
|
15569
15590
|
id?: string | undefined;
|
|
15570
15591
|
title?: string | undefined;
|
|
15571
15592
|
slug?: string | undefined;
|
|
@@ -15575,19 +15596,19 @@ export declare const Envelope: {
|
|
|
15575
15596
|
level?: number | undefined;
|
|
15576
15597
|
}[]>]: never; }) | undefined;
|
|
15577
15598
|
max_level_permission?: number | undefined;
|
|
15578
|
-
} & { [
|
|
15599
|
+
} & { [K_513 in Exclude<keyof I_1["role_event"]["role"]["permission_list"], keyof PermissionList>]: never; }) | undefined;
|
|
15579
15600
|
role_channel_active?: number | undefined;
|
|
15580
|
-
channel_ids?: (string[] & string[] & { [
|
|
15601
|
+
channel_ids?: (string[] & string[] & { [K_514 in Exclude<keyof I_1["role_event"]["role"]["channel_ids"], keyof string[]>]: never; }) | undefined;
|
|
15581
15602
|
max_level_permission?: number | undefined;
|
|
15582
15603
|
order_role?: number | undefined;
|
|
15583
|
-
} & { [
|
|
15604
|
+
} & { [K_515 in Exclude<keyof I_1["role_event"]["role"], keyof Role>]: never; }) | undefined;
|
|
15584
15605
|
status?: number | undefined;
|
|
15585
15606
|
user_id?: string | undefined;
|
|
15586
|
-
user_add_ids?: (string[] & string[] & { [
|
|
15587
|
-
user_remove_ids?: (string[] & string[] & { [
|
|
15588
|
-
active_permission_ids?: (string[] & string[] & { [
|
|
15589
|
-
remove_permission_ids?: (string[] & string[] & { [
|
|
15590
|
-
} & { [
|
|
15607
|
+
user_add_ids?: (string[] & string[] & { [K_516 in Exclude<keyof I_1["role_event"]["user_add_ids"], keyof string[]>]: never; }) | undefined;
|
|
15608
|
+
user_remove_ids?: (string[] & string[] & { [K_517 in Exclude<keyof I_1["role_event"]["user_remove_ids"], keyof string[]>]: never; }) | undefined;
|
|
15609
|
+
active_permission_ids?: (string[] & string[] & { [K_518 in Exclude<keyof I_1["role_event"]["active_permission_ids"], keyof string[]>]: never; }) | undefined;
|
|
15610
|
+
remove_permission_ids?: (string[] & string[] & { [K_519 in Exclude<keyof I_1["role_event"]["remove_permission_ids"], keyof string[]>]: never; }) | undefined;
|
|
15611
|
+
} & { [K_520 in Exclude<keyof I_1["role_event"], keyof RoleEvent>]: never; }) | undefined;
|
|
15591
15612
|
event_emoji?: ({
|
|
15592
15613
|
id?: string | undefined;
|
|
15593
15614
|
clan_id?: string | undefined;
|
|
@@ -15610,7 +15631,7 @@ export declare const Envelope: {
|
|
|
15610
15631
|
logo?: string | undefined;
|
|
15611
15632
|
clan_name?: string | undefined;
|
|
15612
15633
|
is_for_sale?: boolean | undefined;
|
|
15613
|
-
} & { [
|
|
15634
|
+
} & { [K_521 in Exclude<keyof I_1["event_emoji"], keyof EventEmoji>]: never; }) | undefined;
|
|
15614
15635
|
streaming_joined_event?: ({
|
|
15615
15636
|
clan_id?: string | undefined;
|
|
15616
15637
|
clan_name?: string | undefined;
|
|
@@ -15627,7 +15648,7 @@ export declare const Envelope: {
|
|
|
15627
15648
|
user_id?: string | undefined;
|
|
15628
15649
|
streaming_channel_label?: string | undefined;
|
|
15629
15650
|
streaming_channel_id?: string | undefined;
|
|
15630
|
-
} & { [
|
|
15651
|
+
} & { [K_522 in Exclude<keyof I_1["streaming_joined_event"], keyof StreamingJoinedEvent>]: never; }) | undefined;
|
|
15631
15652
|
streaming_leaved_event?: ({
|
|
15632
15653
|
id?: string | undefined;
|
|
15633
15654
|
clan_id?: string | undefined;
|
|
@@ -15638,7 +15659,7 @@ export declare const Envelope: {
|
|
|
15638
15659
|
clan_id?: string | undefined;
|
|
15639
15660
|
streaming_channel_id?: string | undefined;
|
|
15640
15661
|
streaming_user_id?: string | undefined;
|
|
15641
|
-
} & { [
|
|
15662
|
+
} & { [K_523 in Exclude<keyof I_1["streaming_leaved_event"], keyof StreamingLeavedEvent>]: never; }) | undefined;
|
|
15642
15663
|
streaming_started_event?: ({
|
|
15643
15664
|
clan_id?: string | undefined;
|
|
15644
15665
|
channel_id?: string | undefined;
|
|
@@ -15649,14 +15670,14 @@ export declare const Envelope: {
|
|
|
15649
15670
|
channel_id?: string | undefined;
|
|
15650
15671
|
streaming_url?: string | undefined;
|
|
15651
15672
|
is_streaming?: boolean | undefined;
|
|
15652
|
-
} & { [
|
|
15673
|
+
} & { [K_524 in Exclude<keyof I_1["streaming_started_event"], keyof StreamingStartedEvent>]: never; }) | undefined;
|
|
15653
15674
|
streaming_ended_event?: ({
|
|
15654
15675
|
clan_id?: string | undefined;
|
|
15655
15676
|
channel_id?: string | undefined;
|
|
15656
15677
|
} & {
|
|
15657
15678
|
clan_id?: string | undefined;
|
|
15658
15679
|
channel_id?: string | undefined;
|
|
15659
|
-
} & { [
|
|
15680
|
+
} & { [K_525 in Exclude<keyof I_1["streaming_ended_event"], keyof StreamingEndedEvent>]: never; }) | undefined;
|
|
15660
15681
|
permission_set_event?: ({
|
|
15661
15682
|
caller?: string | undefined;
|
|
15662
15683
|
role_id?: string | undefined;
|
|
@@ -15684,12 +15705,12 @@ export declare const Envelope: {
|
|
|
15684
15705
|
permission_id?: string | undefined;
|
|
15685
15706
|
slug?: string | undefined;
|
|
15686
15707
|
type?: number | undefined;
|
|
15687
|
-
} & { [
|
|
15708
|
+
} & { [K_526 in Exclude<keyof I_1["permission_set_event"]["permission_updates"][number], keyof PermissionUpdate>]: never; })[] & { [K_527 in Exclude<keyof I_1["permission_set_event"]["permission_updates"], keyof {
|
|
15688
15709
|
permission_id?: string | undefined;
|
|
15689
15710
|
slug?: string | undefined;
|
|
15690
15711
|
type?: number | undefined;
|
|
15691
15712
|
}[]>]: never; }) | undefined;
|
|
15692
|
-
} & { [
|
|
15713
|
+
} & { [K_528 in Exclude<keyof I_1["permission_set_event"], keyof PermissionSetEvent>]: never; }) | undefined;
|
|
15693
15714
|
permission_changed_event?: ({
|
|
15694
15715
|
user_id?: string | undefined;
|
|
15695
15716
|
channel_id?: string | undefined;
|
|
@@ -15723,7 +15744,7 @@ export declare const Envelope: {
|
|
|
15723
15744
|
permission_id?: string | undefined;
|
|
15724
15745
|
slug?: string | undefined;
|
|
15725
15746
|
type?: number | undefined;
|
|
15726
|
-
} & { [
|
|
15747
|
+
} & { [K_529 in Exclude<keyof I_1["permission_changed_event"]["add_permissions"][number], keyof PermissionUpdate>]: never; })[] & { [K_530 in Exclude<keyof I_1["permission_changed_event"]["add_permissions"], keyof {
|
|
15727
15748
|
permission_id?: string | undefined;
|
|
15728
15749
|
slug?: string | undefined;
|
|
15729
15750
|
type?: number | undefined;
|
|
@@ -15740,7 +15761,7 @@ export declare const Envelope: {
|
|
|
15740
15761
|
permission_id?: string | undefined;
|
|
15741
15762
|
slug?: string | undefined;
|
|
15742
15763
|
type?: number | undefined;
|
|
15743
|
-
} & { [
|
|
15764
|
+
} & { [K_531 in Exclude<keyof I_1["permission_changed_event"]["remove_permissions"][number], keyof PermissionUpdate>]: never; })[] & { [K_532 in Exclude<keyof I_1["permission_changed_event"]["remove_permissions"], keyof {
|
|
15744
15765
|
permission_id?: string | undefined;
|
|
15745
15766
|
slug?: string | undefined;
|
|
15746
15767
|
type?: number | undefined;
|
|
@@ -15757,12 +15778,12 @@ export declare const Envelope: {
|
|
|
15757
15778
|
permission_id?: string | undefined;
|
|
15758
15779
|
slug?: string | undefined;
|
|
15759
15780
|
type?: number | undefined;
|
|
15760
|
-
} & { [
|
|
15781
|
+
} & { [K_533 in Exclude<keyof I_1["permission_changed_event"]["default_permissions"][number], keyof PermissionUpdate>]: never; })[] & { [K_534 in Exclude<keyof I_1["permission_changed_event"]["default_permissions"], keyof {
|
|
15761
15782
|
permission_id?: string | undefined;
|
|
15762
15783
|
slug?: string | undefined;
|
|
15763
15784
|
type?: number | undefined;
|
|
15764
15785
|
}[]>]: never; }) | undefined;
|
|
15765
|
-
} & { [
|
|
15786
|
+
} & { [K_535 in Exclude<keyof I_1["permission_changed_event"], keyof PermissionChangedEvent>]: never; }) | undefined;
|
|
15766
15787
|
token_sent_event?: ({
|
|
15767
15788
|
sender_id?: string | undefined;
|
|
15768
15789
|
sender_name?: string | undefined;
|
|
@@ -15779,7 +15800,7 @@ export declare const Envelope: {
|
|
|
15779
15800
|
note?: string | undefined;
|
|
15780
15801
|
extra_attribute?: string | undefined;
|
|
15781
15802
|
transaction_id?: string | undefined;
|
|
15782
|
-
} & { [
|
|
15803
|
+
} & { [K_536 in Exclude<keyof I_1["token_sent_event"], keyof TokenSentEvent>]: never; }) | undefined;
|
|
15783
15804
|
message_button_clicked?: ({
|
|
15784
15805
|
message_id?: string | undefined;
|
|
15785
15806
|
channel_id?: string | undefined;
|
|
@@ -15794,7 +15815,7 @@ export declare const Envelope: {
|
|
|
15794
15815
|
sender_id?: string | undefined;
|
|
15795
15816
|
user_id?: string | undefined;
|
|
15796
15817
|
extra_data?: string | undefined;
|
|
15797
|
-
} & { [
|
|
15818
|
+
} & { [K_537 in Exclude<keyof I_1["message_button_clicked"], keyof MessageButtonClicked>]: never; }) | undefined;
|
|
15798
15819
|
unmute_event?: ({
|
|
15799
15820
|
channel_id?: string | undefined;
|
|
15800
15821
|
category_id?: string | undefined;
|
|
@@ -15803,7 +15824,7 @@ export declare const Envelope: {
|
|
|
15803
15824
|
channel_id?: string | undefined;
|
|
15804
15825
|
category_id?: string | undefined;
|
|
15805
15826
|
clan_id?: string | undefined;
|
|
15806
|
-
} & { [
|
|
15827
|
+
} & { [K_538 in Exclude<keyof I_1["unmute_event"], keyof UnmuteEvent>]: never; }) | undefined;
|
|
15807
15828
|
webrtc_signaling_fwd?: ({
|
|
15808
15829
|
receiver_id?: string | undefined;
|
|
15809
15830
|
data_type?: number | undefined;
|
|
@@ -15816,7 +15837,7 @@ export declare const Envelope: {
|
|
|
15816
15837
|
json_data?: string | undefined;
|
|
15817
15838
|
channel_id?: string | undefined;
|
|
15818
15839
|
caller_id?: string | undefined;
|
|
15819
|
-
} & { [
|
|
15840
|
+
} & { [K_539 in Exclude<keyof I_1["webrtc_signaling_fwd"], keyof WebrtcSignalingFwd>]: never; }) | undefined;
|
|
15820
15841
|
list_activity?: ({
|
|
15821
15842
|
acts?: {
|
|
15822
15843
|
user_id?: string | undefined;
|
|
@@ -15856,7 +15877,7 @@ export declare const Envelope: {
|
|
|
15856
15877
|
end_time?: Date | undefined;
|
|
15857
15878
|
application_id?: string | undefined;
|
|
15858
15879
|
status?: number | undefined;
|
|
15859
|
-
} & { [
|
|
15880
|
+
} & { [K_540 in Exclude<keyof I_1["list_activity"]["acts"][number], keyof UserActivity>]: never; })[] & { [K_541 in Exclude<keyof I_1["list_activity"]["acts"], keyof {
|
|
15860
15881
|
user_id?: string | undefined;
|
|
15861
15882
|
activity_name?: string | undefined;
|
|
15862
15883
|
activity_type?: number | undefined;
|
|
@@ -15866,7 +15887,7 @@ export declare const Envelope: {
|
|
|
15866
15887
|
application_id?: string | undefined;
|
|
15867
15888
|
status?: number | undefined;
|
|
15868
15889
|
}[]>]: never; }) | undefined;
|
|
15869
|
-
} & { [
|
|
15890
|
+
} & { [K_542 in Exclude<keyof I_1["list_activity"], "acts">]: never; }) | undefined;
|
|
15870
15891
|
dropdown_box_selected?: ({
|
|
15871
15892
|
message_id?: string | undefined;
|
|
15872
15893
|
channel_id?: string | undefined;
|
|
@@ -15880,8 +15901,8 @@ export declare const Envelope: {
|
|
|
15880
15901
|
selectbox_id?: string | undefined;
|
|
15881
15902
|
sender_id?: string | undefined;
|
|
15882
15903
|
user_id?: string | undefined;
|
|
15883
|
-
values?: (string[] & string[] & { [
|
|
15884
|
-
} & { [
|
|
15904
|
+
values?: (string[] & string[] & { [K_543 in Exclude<keyof I_1["dropdown_box_selected"]["values"], keyof string[]>]: never; }) | undefined;
|
|
15905
|
+
} & { [K_544 in Exclude<keyof I_1["dropdown_box_selected"], keyof DropdownBoxSelected>]: never; }) | undefined;
|
|
15885
15906
|
incoming_call_push?: ({
|
|
15886
15907
|
receiver_id?: string | undefined;
|
|
15887
15908
|
json_data?: string | undefined;
|
|
@@ -15892,7 +15913,7 @@ export declare const Envelope: {
|
|
|
15892
15913
|
json_data?: string | undefined;
|
|
15893
15914
|
channel_id?: string | undefined;
|
|
15894
15915
|
caller_id?: string | undefined;
|
|
15895
|
-
} & { [
|
|
15916
|
+
} & { [K_545 in Exclude<keyof I_1["incoming_call_push"], keyof IncomingCallPush>]: never; }) | undefined;
|
|
15896
15917
|
sd_topic_event?: ({
|
|
15897
15918
|
id?: string | undefined;
|
|
15898
15919
|
clan_id?: string | undefined;
|
|
@@ -15962,7 +15983,7 @@ export declare const Envelope: {
|
|
|
15962
15983
|
reference?: string | undefined;
|
|
15963
15984
|
mention?: string | undefined;
|
|
15964
15985
|
reaction?: string | undefined;
|
|
15965
|
-
} & { [
|
|
15986
|
+
} & { [K_546 in Exclude<keyof I_1["sd_topic_event"]["last_sent_message"], keyof ChannelMessageHeader>]: never; }) | undefined;
|
|
15966
15987
|
message?: ({
|
|
15967
15988
|
clan_id?: string | undefined;
|
|
15968
15989
|
channel_id?: string | undefined;
|
|
@@ -16019,9 +16040,9 @@ export declare const Envelope: {
|
|
|
16019
16040
|
hide_editted?: boolean | undefined;
|
|
16020
16041
|
is_public?: boolean | undefined;
|
|
16021
16042
|
topic_id?: string | undefined;
|
|
16022
|
-
} & { [
|
|
16023
|
-
} & { [
|
|
16024
|
-
follow_event?: ({} & {} & { [
|
|
16043
|
+
} & { [K_547 in Exclude<keyof I_1["sd_topic_event"]["message"], keyof ChannelMessage>]: never; }) | undefined;
|
|
16044
|
+
} & { [K_548 in Exclude<keyof I_1["sd_topic_event"], keyof SdTopicEvent>]: never; }) | undefined;
|
|
16045
|
+
follow_event?: ({} & {} & { [K_549 in Exclude<keyof I_1["follow_event"], never>]: never; }) | undefined;
|
|
16025
16046
|
channel_app_event?: ({
|
|
16026
16047
|
user_id?: string | undefined;
|
|
16027
16048
|
username?: string | undefined;
|
|
@@ -16034,19 +16055,19 @@ export declare const Envelope: {
|
|
|
16034
16055
|
clan_id?: string | undefined;
|
|
16035
16056
|
channel_id?: string | undefined;
|
|
16036
16057
|
action?: number | undefined;
|
|
16037
|
-
} & { [
|
|
16058
|
+
} & { [K_550 in Exclude<keyof I_1["channel_app_event"], keyof ChannelAppEvent>]: never; }) | undefined;
|
|
16038
16059
|
user_status_event?: ({
|
|
16039
16060
|
user_id?: string | undefined;
|
|
16040
16061
|
custom_status?: string | undefined;
|
|
16041
16062
|
} & {
|
|
16042
16063
|
user_id?: string | undefined;
|
|
16043
16064
|
custom_status?: string | undefined;
|
|
16044
|
-
} & { [
|
|
16065
|
+
} & { [K_551 in Exclude<keyof I_1["user_status_event"], keyof UserStatusEvent>]: never; }) | undefined;
|
|
16045
16066
|
remove_friend?: ({
|
|
16046
16067
|
user_id?: string | undefined;
|
|
16047
16068
|
} & {
|
|
16048
16069
|
user_id?: string | undefined;
|
|
16049
|
-
} & { [
|
|
16070
|
+
} & { [K_552 in Exclude<keyof I_1["remove_friend"], "user_id">]: never; }) | undefined;
|
|
16050
16071
|
webhook_event?: ({
|
|
16051
16072
|
id?: string | undefined;
|
|
16052
16073
|
webhook_name?: string | undefined;
|
|
@@ -16071,7 +16092,7 @@ export declare const Envelope: {
|
|
|
16071
16092
|
avatar?: string | undefined;
|
|
16072
16093
|
status?: number | undefined;
|
|
16073
16094
|
clan_id?: string | undefined;
|
|
16074
|
-
} & { [
|
|
16095
|
+
} & { [K_553 in Exclude<keyof I_1["webhook_event"], keyof Webhook>]: never; }) | undefined;
|
|
16075
16096
|
noti_user_channel?: ({
|
|
16076
16097
|
id?: string | undefined;
|
|
16077
16098
|
notification_setting_type?: number | undefined;
|
|
@@ -16084,7 +16105,7 @@ export declare const Envelope: {
|
|
|
16084
16105
|
time_mute?: Date | undefined;
|
|
16085
16106
|
active?: number | undefined;
|
|
16086
16107
|
channel_id?: string | undefined;
|
|
16087
|
-
} & { [
|
|
16108
|
+
} & { [K_554 in Exclude<keyof I_1["noti_user_channel"], keyof NotificationUserChannel>]: never; }) | undefined;
|
|
16088
16109
|
join_channel_app_data?: ({
|
|
16089
16110
|
user_id?: string | undefined;
|
|
16090
16111
|
username?: string | undefined;
|
|
@@ -16093,7 +16114,7 @@ export declare const Envelope: {
|
|
|
16093
16114
|
user_id?: string | undefined;
|
|
16094
16115
|
username?: string | undefined;
|
|
16095
16116
|
hash?: string | undefined;
|
|
16096
|
-
} & { [
|
|
16117
|
+
} & { [K_555 in Exclude<keyof I_1["join_channel_app_data"], keyof JoinChannelAppData>]: never; }) | undefined;
|
|
16097
16118
|
canvas_event?: ({
|
|
16098
16119
|
id?: string | undefined;
|
|
16099
16120
|
title?: string | undefined;
|
|
@@ -16112,7 +16133,7 @@ export declare const Envelope: {
|
|
|
16112
16133
|
is_default?: boolean | undefined;
|
|
16113
16134
|
channel_id?: string | undefined;
|
|
16114
16135
|
status?: number | undefined;
|
|
16115
|
-
} & { [
|
|
16136
|
+
} & { [K_556 in Exclude<keyof I_1["canvas_event"], keyof ChannelCanvas>]: never; }) | undefined;
|
|
16116
16137
|
unpin_message_event?: ({
|
|
16117
16138
|
id?: string | undefined;
|
|
16118
16139
|
message_id?: string | undefined;
|
|
@@ -16123,7 +16144,7 @@ export declare const Envelope: {
|
|
|
16123
16144
|
message_id?: string | undefined;
|
|
16124
16145
|
channel_id?: string | undefined;
|
|
16125
16146
|
clan_id?: string | undefined;
|
|
16126
|
-
} & { [
|
|
16147
|
+
} & { [K_557 in Exclude<keyof I_1["unpin_message_event"], keyof UnpinMessageEvent>]: never; }) | undefined;
|
|
16127
16148
|
category_event?: ({
|
|
16128
16149
|
creator_id?: string | undefined;
|
|
16129
16150
|
clan_id?: string | undefined;
|
|
@@ -16136,7 +16157,7 @@ export declare const Envelope: {
|
|
|
16136
16157
|
category_name?: string | undefined;
|
|
16137
16158
|
id?: string | undefined;
|
|
16138
16159
|
status?: number | undefined;
|
|
16139
|
-
} & { [
|
|
16160
|
+
} & { [K_558 in Exclude<keyof I_1["category_event"], keyof CategoryEvent>]: never; }) | undefined;
|
|
16140
16161
|
handle_participant_meet_state_event?: ({
|
|
16141
16162
|
clan_id?: string | undefined;
|
|
16142
16163
|
channel_id?: string | undefined;
|
|
@@ -16149,12 +16170,12 @@ export declare const Envelope: {
|
|
|
16149
16170
|
display_name?: string | undefined;
|
|
16150
16171
|
state?: number | undefined;
|
|
16151
16172
|
room_name?: string | undefined;
|
|
16152
|
-
} & { [
|
|
16173
|
+
} & { [K_559 in Exclude<keyof I_1["handle_participant_meet_state_event"], keyof HandleParticipantMeetStateEvent>]: never; }) | undefined;
|
|
16153
16174
|
delete_account_event?: ({
|
|
16154
16175
|
user_id?: string | undefined;
|
|
16155
16176
|
} & {
|
|
16156
16177
|
user_id?: string | undefined;
|
|
16157
|
-
} & { [
|
|
16178
|
+
} & { [K_560 in Exclude<keyof I_1["delete_account_event"], "user_id">]: never; }) | undefined;
|
|
16158
16179
|
ephemeral_message_send?: ({
|
|
16159
16180
|
message?: {
|
|
16160
16181
|
clan_id?: string | undefined;
|
|
@@ -16278,7 +16299,7 @@ export declare const Envelope: {
|
|
|
16278
16299
|
create_time?: Date | undefined;
|
|
16279
16300
|
s?: number | undefined;
|
|
16280
16301
|
e?: number | undefined;
|
|
16281
|
-
} & { [
|
|
16302
|
+
} & { [K_561 in Exclude<keyof I_1["ephemeral_message_send"]["message"]["mentions"][number], keyof MessageMention>]: never; })[] & { [K_562 in Exclude<keyof I_1["ephemeral_message_send"]["message"]["mentions"], keyof {
|
|
16282
16303
|
id?: string | undefined;
|
|
16283
16304
|
user_id?: string | undefined;
|
|
16284
16305
|
username?: string | undefined;
|
|
@@ -16315,7 +16336,7 @@ export declare const Envelope: {
|
|
|
16315
16336
|
height?: number | undefined;
|
|
16316
16337
|
thumbnail?: string | undefined;
|
|
16317
16338
|
duration?: number | undefined;
|
|
16318
|
-
} & { [
|
|
16339
|
+
} & { [K_563 in Exclude<keyof I_1["ephemeral_message_send"]["message"]["attachments"][number], keyof MessageAttachment>]: never; })[] & { [K_564 in Exclude<keyof I_1["ephemeral_message_send"]["message"]["attachments"], keyof {
|
|
16319
16340
|
filename?: string | undefined;
|
|
16320
16341
|
size?: number | undefined;
|
|
16321
16342
|
url?: string | undefined;
|
|
@@ -16358,7 +16379,7 @@ export declare const Envelope: {
|
|
|
16358
16379
|
mesages_sender_avatar?: string | undefined;
|
|
16359
16380
|
message_sender_clan_nick?: string | undefined;
|
|
16360
16381
|
message_sender_display_name?: string | undefined;
|
|
16361
|
-
} & { [
|
|
16382
|
+
} & { [K_565 in Exclude<keyof I_1["ephemeral_message_send"]["message"]["references"][number], keyof MessageRef>]: never; })[] & { [K_566 in Exclude<keyof I_1["ephemeral_message_send"]["message"]["references"], keyof {
|
|
16362
16383
|
message_id?: string | undefined;
|
|
16363
16384
|
message_ref_id?: string | undefined;
|
|
16364
16385
|
content?: string | undefined;
|
|
@@ -16378,25 +16399,25 @@ export declare const Envelope: {
|
|
|
16378
16399
|
code?: number | undefined;
|
|
16379
16400
|
topic_id?: string | undefined;
|
|
16380
16401
|
id?: string | undefined;
|
|
16381
|
-
} & { [
|
|
16402
|
+
} & { [K_567 in Exclude<keyof I_1["ephemeral_message_send"]["message"], keyof ChannelMessageSend>]: never; }) | undefined;
|
|
16382
16403
|
receiver_id?: string | undefined;
|
|
16383
|
-
} & { [
|
|
16404
|
+
} & { [K_568 in Exclude<keyof I_1["ephemeral_message_send"], keyof EphemeralMessageSend>]: never; }) | undefined;
|
|
16384
16405
|
block_friend?: ({
|
|
16385
16406
|
user_id?: string | undefined;
|
|
16386
16407
|
} & {
|
|
16387
16408
|
user_id?: string | undefined;
|
|
16388
|
-
} & { [
|
|
16409
|
+
} & { [K_569 in Exclude<keyof I_1["block_friend"], "user_id">]: never; }) | undefined;
|
|
16389
16410
|
voice_reaction_send?: ({
|
|
16390
16411
|
emojis?: string[] | undefined;
|
|
16391
16412
|
channel_id?: string | undefined;
|
|
16392
16413
|
sender_id?: string | undefined;
|
|
16393
16414
|
media_type?: number | undefined;
|
|
16394
16415
|
} & {
|
|
16395
|
-
emojis?: (string[] & string[] & { [
|
|
16416
|
+
emojis?: (string[] & string[] & { [K_570 in Exclude<keyof I_1["voice_reaction_send"]["emojis"], keyof string[]>]: never; }) | undefined;
|
|
16396
16417
|
channel_id?: string | undefined;
|
|
16397
16418
|
sender_id?: string | undefined;
|
|
16398
16419
|
media_type?: number | undefined;
|
|
16399
|
-
} & { [
|
|
16420
|
+
} & { [K_571 in Exclude<keyof I_1["voice_reaction_send"], keyof VoiceReactionSend>]: never; }) | undefined;
|
|
16400
16421
|
mark_as_read?: ({
|
|
16401
16422
|
channel_id?: string | undefined;
|
|
16402
16423
|
category_id?: string | undefined;
|
|
@@ -16405,7 +16426,7 @@ export declare const Envelope: {
|
|
|
16405
16426
|
channel_id?: string | undefined;
|
|
16406
16427
|
category_id?: string | undefined;
|
|
16407
16428
|
clan_id?: string | undefined;
|
|
16408
|
-
} & { [
|
|
16429
|
+
} & { [K_572 in Exclude<keyof I_1["mark_as_read"], keyof MarkAsRead>]: never; }) | undefined;
|
|
16409
16430
|
list_data_socket?: ({
|
|
16410
16431
|
api_name?: string | undefined;
|
|
16411
16432
|
list_clan_req?: {
|
|
@@ -17273,7 +17294,7 @@ export declare const Envelope: {
|
|
|
17273
17294
|
limit?: number | undefined;
|
|
17274
17295
|
state?: number | undefined;
|
|
17275
17296
|
cursor?: string | undefined;
|
|
17276
|
-
} & { [
|
|
17297
|
+
} & { [K_573 in Exclude<keyof I_1["list_data_socket"]["list_clan_req"], keyof ListClanDescRequest>]: never; }) | undefined;
|
|
17277
17298
|
clan_desc_list?: ({
|
|
17278
17299
|
clandesc?: {
|
|
17279
17300
|
creator_id?: string | undefined;
|
|
@@ -17353,7 +17374,7 @@ export declare const Envelope: {
|
|
|
17353
17374
|
short_url?: string | undefined;
|
|
17354
17375
|
prevent_anonymous?: boolean | undefined;
|
|
17355
17376
|
has_unread_message?: boolean | undefined;
|
|
17356
|
-
} & { [
|
|
17377
|
+
} & { [K_574 in Exclude<keyof I_1["list_data_socket"]["clan_desc_list"]["clandesc"][number], keyof import("../api/api").ClanDesc>]: never; })[] & { [K_575 in Exclude<keyof I_1["list_data_socket"]["clan_desc_list"]["clandesc"], keyof {
|
|
17357
17378
|
creator_id?: string | undefined;
|
|
17358
17379
|
clan_name?: string | undefined;
|
|
17359
17380
|
logo?: string | undefined;
|
|
@@ -17373,7 +17394,7 @@ export declare const Envelope: {
|
|
|
17373
17394
|
prevent_anonymous?: boolean | undefined;
|
|
17374
17395
|
has_unread_message?: boolean | undefined;
|
|
17375
17396
|
}[]>]: never; }) | undefined;
|
|
17376
|
-
} & { [
|
|
17397
|
+
} & { [K_576 in Exclude<keyof I_1["list_data_socket"]["clan_desc_list"], "clandesc">]: never; }) | undefined;
|
|
17377
17398
|
list_thread_req?: ({
|
|
17378
17399
|
limit?: number | undefined;
|
|
17379
17400
|
state?: number | undefined;
|
|
@@ -17388,7 +17409,7 @@ export declare const Envelope: {
|
|
|
17388
17409
|
channel_id?: string | undefined;
|
|
17389
17410
|
thread_id?: string | undefined;
|
|
17390
17411
|
page?: number | undefined;
|
|
17391
|
-
} & { [
|
|
17412
|
+
} & { [K_577 in Exclude<keyof I_1["list_data_socket"]["list_thread_req"], keyof ListThreadRequest>]: never; }) | undefined;
|
|
17392
17413
|
channel_desc_list?: ({
|
|
17393
17414
|
channeldesc?: {
|
|
17394
17415
|
clan_id?: string | undefined;
|
|
@@ -17553,8 +17574,8 @@ export declare const Envelope: {
|
|
|
17553
17574
|
creator_id?: string | undefined;
|
|
17554
17575
|
channel_label?: string | undefined;
|
|
17555
17576
|
channel_private?: number | undefined;
|
|
17556
|
-
avatars?: (string[] & string[] & { [
|
|
17557
|
-
user_ids?: (string[] & string[] & { [
|
|
17577
|
+
avatars?: (string[] & string[] & { [K_578 in Exclude<keyof I_1["list_data_socket"]["channel_desc_list"]["channeldesc"][number]["avatars"], keyof string[]>]: never; }) | undefined;
|
|
17578
|
+
user_ids?: (string[] & string[] & { [K_579 in Exclude<keyof I_1["list_data_socket"]["channel_desc_list"]["channeldesc"][number]["user_ids"], keyof string[]>]: never; }) | undefined;
|
|
17558
17579
|
last_sent_message?: ({
|
|
17559
17580
|
id?: string | undefined;
|
|
17560
17581
|
timestamp_seconds?: number | undefined;
|
|
@@ -17573,7 +17594,7 @@ export declare const Envelope: {
|
|
|
17573
17594
|
reference?: string | undefined;
|
|
17574
17595
|
mention?: string | undefined;
|
|
17575
17596
|
reaction?: string | undefined;
|
|
17576
|
-
} & { [
|
|
17597
|
+
} & { [K_580 in Exclude<keyof I_1["list_data_socket"]["channel_desc_list"]["channeldesc"][number]["last_sent_message"], keyof ChannelMessageHeader>]: never; }) | undefined;
|
|
17577
17598
|
last_seen_message?: ({
|
|
17578
17599
|
id?: string | undefined;
|
|
17579
17600
|
timestamp_seconds?: number | undefined;
|
|
@@ -17592,17 +17613,17 @@ export declare const Envelope: {
|
|
|
17592
17613
|
reference?: string | undefined;
|
|
17593
17614
|
mention?: string | undefined;
|
|
17594
17615
|
reaction?: string | undefined;
|
|
17595
|
-
} & { [
|
|
17596
|
-
onlines?: (boolean[] & boolean[] & { [
|
|
17616
|
+
} & { [K_581 in Exclude<keyof I_1["list_data_socket"]["channel_desc_list"]["channeldesc"][number]["last_seen_message"], keyof ChannelMessageHeader>]: never; }) | undefined;
|
|
17617
|
+
onlines?: (boolean[] & boolean[] & { [K_582 in Exclude<keyof I_1["list_data_socket"]["channel_desc_list"]["channeldesc"][number]["onlines"], keyof boolean[]>]: never; }) | undefined;
|
|
17597
17618
|
meeting_code?: string | undefined;
|
|
17598
17619
|
count_mess_unread?: number | undefined;
|
|
17599
17620
|
active?: number | undefined;
|
|
17600
17621
|
last_pin_message?: string | undefined;
|
|
17601
|
-
usernames?: (string[] & string[] & { [
|
|
17622
|
+
usernames?: (string[] & string[] & { [K_583 in Exclude<keyof I_1["list_data_socket"]["channel_desc_list"]["channeldesc"][number]["usernames"], keyof string[]>]: never; }) | undefined;
|
|
17602
17623
|
creator_name?: string | undefined;
|
|
17603
17624
|
create_time_seconds?: number | undefined;
|
|
17604
17625
|
update_time_seconds?: number | undefined;
|
|
17605
|
-
display_names?: (string[] & string[] & { [
|
|
17626
|
+
display_names?: (string[] & string[] & { [K_584 in Exclude<keyof I_1["list_data_socket"]["channel_desc_list"]["channeldesc"][number]["display_names"], keyof string[]>]: never; }) | undefined;
|
|
17606
17627
|
channel_avatar?: string | undefined;
|
|
17607
17628
|
clan_name?: string | undefined;
|
|
17608
17629
|
app_id?: string | undefined;
|
|
@@ -17611,7 +17632,7 @@ export declare const Envelope: {
|
|
|
17611
17632
|
topic?: string | undefined;
|
|
17612
17633
|
e2ee?: number | undefined;
|
|
17613
17634
|
member_count?: number | undefined;
|
|
17614
|
-
} & { [
|
|
17635
|
+
} & { [K_585 in Exclude<keyof I_1["list_data_socket"]["channel_desc_list"]["channeldesc"][number], keyof ChannelDescription1>]: never; })[] & { [K_586 in Exclude<keyof I_1["list_data_socket"]["channel_desc_list"]["channeldesc"], keyof {
|
|
17615
17636
|
clan_id?: string | undefined;
|
|
17616
17637
|
parent_id?: string | undefined;
|
|
17617
17638
|
channel_id?: string | undefined;
|
|
@@ -17663,14 +17684,14 @@ export declare const Envelope: {
|
|
|
17663
17684
|
member_count?: number | undefined;
|
|
17664
17685
|
}[]>]: never; }) | undefined;
|
|
17665
17686
|
page?: number | undefined;
|
|
17666
|
-
} & { [
|
|
17687
|
+
} & { [K_587 in Exclude<keyof I_1["list_data_socket"]["channel_desc_list"], keyof ChannelDescList>]: never; }) | undefined;
|
|
17667
17688
|
list_channel_users_uc_req?: ({
|
|
17668
17689
|
channel_id?: string | undefined;
|
|
17669
17690
|
limit?: number | undefined;
|
|
17670
17691
|
} & {
|
|
17671
17692
|
channel_id?: string | undefined;
|
|
17672
17693
|
limit?: number | undefined;
|
|
17673
|
-
} & { [
|
|
17694
|
+
} & { [K_588 in Exclude<keyof I_1["list_data_socket"]["list_channel_users_uc_req"], keyof AllUsersAddChannelRequest>]: never; }) | undefined;
|
|
17674
17695
|
channel_users_uc_list?: ({
|
|
17675
17696
|
channel_id?: string | undefined;
|
|
17676
17697
|
user_ids?: string[] | undefined;
|
|
@@ -17681,18 +17702,18 @@ export declare const Envelope: {
|
|
|
17681
17702
|
onlines?: boolean[] | undefined;
|
|
17682
17703
|
} & {
|
|
17683
17704
|
channel_id?: string | undefined;
|
|
17684
|
-
user_ids?: (string[] & string[] & { [
|
|
17705
|
+
user_ids?: (string[] & string[] & { [K_589 in Exclude<keyof I_1["list_data_socket"]["channel_users_uc_list"]["user_ids"], keyof string[]>]: never; }) | undefined;
|
|
17685
17706
|
limit?: number | undefined;
|
|
17686
|
-
usernames?: (string[] & string[] & { [
|
|
17687
|
-
display_names?: (string[] & string[] & { [
|
|
17688
|
-
avatars?: (string[] & string[] & { [
|
|
17689
|
-
onlines?: (boolean[] & boolean[] & { [
|
|
17690
|
-
} & { [
|
|
17707
|
+
usernames?: (string[] & string[] & { [K_590 in Exclude<keyof I_1["list_data_socket"]["channel_users_uc_list"]["usernames"], keyof string[]>]: never; }) | undefined;
|
|
17708
|
+
display_names?: (string[] & string[] & { [K_591 in Exclude<keyof I_1["list_data_socket"]["channel_users_uc_list"]["display_names"], keyof string[]>]: never; }) | undefined;
|
|
17709
|
+
avatars?: (string[] & string[] & { [K_592 in Exclude<keyof I_1["list_data_socket"]["channel_users_uc_list"]["avatars"], keyof string[]>]: never; }) | undefined;
|
|
17710
|
+
onlines?: (boolean[] & boolean[] & { [K_593 in Exclude<keyof I_1["list_data_socket"]["channel_users_uc_list"]["onlines"], keyof boolean[]>]: never; }) | undefined;
|
|
17711
|
+
} & { [K_594 in Exclude<keyof I_1["list_data_socket"]["channel_users_uc_list"], keyof AllUsersAddChannelResponse>]: never; }) | undefined;
|
|
17691
17712
|
list_channel_detail_req?: ({
|
|
17692
17713
|
channel_id?: string | undefined;
|
|
17693
17714
|
} & {
|
|
17694
17715
|
channel_id?: string | undefined;
|
|
17695
|
-
} & { [
|
|
17716
|
+
} & { [K_595 in Exclude<keyof I_1["list_data_socket"]["list_channel_detail_req"], "channel_id">]: never; }) | undefined;
|
|
17696
17717
|
channel_desc?: ({
|
|
17697
17718
|
clan_id?: string | undefined;
|
|
17698
17719
|
parent_id?: string | undefined;
|
|
@@ -17753,8 +17774,8 @@ export declare const Envelope: {
|
|
|
17753
17774
|
creator_id?: string | undefined;
|
|
17754
17775
|
channel_label?: string | undefined;
|
|
17755
17776
|
channel_private?: number | undefined;
|
|
17756
|
-
avatars?: (string[] & string[] & { [
|
|
17757
|
-
user_ids?: (string[] & string[] & { [
|
|
17777
|
+
avatars?: (string[] & string[] & { [K_596 in Exclude<keyof I_1["list_data_socket"]["channel_desc"]["avatars"], keyof string[]>]: never; }) | undefined;
|
|
17778
|
+
user_ids?: (string[] & string[] & { [K_597 in Exclude<keyof I_1["list_data_socket"]["channel_desc"]["user_ids"], keyof string[]>]: never; }) | undefined;
|
|
17758
17779
|
last_sent_message?: ({
|
|
17759
17780
|
id?: string | undefined;
|
|
17760
17781
|
timestamp_seconds?: number | undefined;
|
|
@@ -17773,7 +17794,7 @@ export declare const Envelope: {
|
|
|
17773
17794
|
reference?: string | undefined;
|
|
17774
17795
|
mention?: string | undefined;
|
|
17775
17796
|
reaction?: string | undefined;
|
|
17776
|
-
} & { [
|
|
17797
|
+
} & { [K_598 in Exclude<keyof I_1["list_data_socket"]["channel_desc"]["last_sent_message"], keyof ChannelMessageHeader>]: never; }) | undefined;
|
|
17777
17798
|
last_seen_message?: ({
|
|
17778
17799
|
id?: string | undefined;
|
|
17779
17800
|
timestamp_seconds?: number | undefined;
|
|
@@ -17792,17 +17813,17 @@ export declare const Envelope: {
|
|
|
17792
17813
|
reference?: string | undefined;
|
|
17793
17814
|
mention?: string | undefined;
|
|
17794
17815
|
reaction?: string | undefined;
|
|
17795
|
-
} & { [
|
|
17796
|
-
onlines?: (boolean[] & boolean[] & { [
|
|
17816
|
+
} & { [K_599 in Exclude<keyof I_1["list_data_socket"]["channel_desc"]["last_seen_message"], keyof ChannelMessageHeader>]: never; }) | undefined;
|
|
17817
|
+
onlines?: (boolean[] & boolean[] & { [K_600 in Exclude<keyof I_1["list_data_socket"]["channel_desc"]["onlines"], keyof boolean[]>]: never; }) | undefined;
|
|
17797
17818
|
meeting_code?: string | undefined;
|
|
17798
17819
|
count_mess_unread?: number | undefined;
|
|
17799
17820
|
active?: number | undefined;
|
|
17800
17821
|
last_pin_message?: string | undefined;
|
|
17801
|
-
usernames?: (string[] & string[] & { [
|
|
17822
|
+
usernames?: (string[] & string[] & { [K_601 in Exclude<keyof I_1["list_data_socket"]["channel_desc"]["usernames"], keyof string[]>]: never; }) | undefined;
|
|
17802
17823
|
creator_name?: string | undefined;
|
|
17803
17824
|
create_time_seconds?: number | undefined;
|
|
17804
17825
|
update_time_seconds?: number | undefined;
|
|
17805
|
-
display_names?: (string[] & string[] & { [
|
|
17826
|
+
display_names?: (string[] & string[] & { [K_602 in Exclude<keyof I_1["list_data_socket"]["channel_desc"]["display_names"], keyof string[]>]: never; }) | undefined;
|
|
17806
17827
|
channel_avatar?: string | undefined;
|
|
17807
17828
|
clan_name?: string | undefined;
|
|
17808
17829
|
app_id?: string | undefined;
|
|
@@ -17811,7 +17832,7 @@ export declare const Envelope: {
|
|
|
17811
17832
|
topic?: string | undefined;
|
|
17812
17833
|
e2ee?: number | undefined;
|
|
17813
17834
|
member_count?: number | undefined;
|
|
17814
|
-
} & { [
|
|
17835
|
+
} & { [K_603 in Exclude<keyof I_1["list_data_socket"]["channel_desc"], keyof ChannelDescription1>]: never; }) | undefined;
|
|
17815
17836
|
list_channel_req?: ({
|
|
17816
17837
|
limit?: number | undefined;
|
|
17817
17838
|
state?: number | undefined;
|
|
@@ -17826,7 +17847,7 @@ export declare const Envelope: {
|
|
|
17826
17847
|
clan_id?: string | undefined;
|
|
17827
17848
|
channel_type?: number | undefined;
|
|
17828
17849
|
is_mobile?: boolean | undefined;
|
|
17829
|
-
} & { [
|
|
17850
|
+
} & { [K_604 in Exclude<keyof I_1["list_data_socket"]["list_channel_req"], keyof ListChannelDescsRequest>]: never; }) | undefined;
|
|
17830
17851
|
list_channel_message_req?: ({
|
|
17831
17852
|
clan_id?: string | undefined;
|
|
17832
17853
|
channel_id?: string | undefined;
|
|
@@ -17841,7 +17862,7 @@ export declare const Envelope: {
|
|
|
17841
17862
|
limit?: number | undefined;
|
|
17842
17863
|
direction?: number | undefined;
|
|
17843
17864
|
topic_id?: string | undefined;
|
|
17844
|
-
} & { [
|
|
17865
|
+
} & { [K_605 in Exclude<keyof I_1["list_data_socket"]["list_channel_message_req"], keyof ListChannelMessagesRequest>]: never; }) | undefined;
|
|
17845
17866
|
channel_message_list?: ({
|
|
17846
17867
|
messages?: {
|
|
17847
17868
|
clan_id?: string | undefined;
|
|
@@ -17977,7 +17998,7 @@ export declare const Envelope: {
|
|
|
17977
17998
|
hide_editted?: boolean | undefined;
|
|
17978
17999
|
is_public?: boolean | undefined;
|
|
17979
18000
|
topic_id?: string | undefined;
|
|
17980
|
-
} & { [
|
|
18001
|
+
} & { [K_606 in Exclude<keyof I_1["list_data_socket"]["channel_message_list"]["messages"][number], keyof ChannelMessage>]: never; })[] & { [K_607 in Exclude<keyof I_1["list_data_socket"]["channel_message_list"]["messages"], keyof {
|
|
17981
18002
|
clan_id?: string | undefined;
|
|
17982
18003
|
channel_id?: string | undefined;
|
|
17983
18004
|
message_id?: string | undefined;
|
|
@@ -18024,7 +18045,7 @@ export declare const Envelope: {
|
|
|
18024
18045
|
reference?: string | undefined;
|
|
18025
18046
|
mention?: string | undefined;
|
|
18026
18047
|
reaction?: string | undefined;
|
|
18027
|
-
} & { [
|
|
18048
|
+
} & { [K_608 in Exclude<keyof I_1["list_data_socket"]["channel_message_list"]["last_seen_message"], keyof ChannelMessageHeader>]: never; }) | undefined;
|
|
18028
18049
|
last_sent_message?: ({
|
|
18029
18050
|
id?: string | undefined;
|
|
18030
18051
|
timestamp_seconds?: number | undefined;
|
|
@@ -18043,8 +18064,8 @@ export declare const Envelope: {
|
|
|
18043
18064
|
reference?: string | undefined;
|
|
18044
18065
|
mention?: string | undefined;
|
|
18045
18066
|
reaction?: string | undefined;
|
|
18046
|
-
} & { [
|
|
18047
|
-
} & { [
|
|
18067
|
+
} & { [K_609 in Exclude<keyof I_1["list_data_socket"]["channel_message_list"]["last_sent_message"], keyof ChannelMessageHeader>]: never; }) | undefined;
|
|
18068
|
+
} & { [K_610 in Exclude<keyof I_1["list_data_socket"]["channel_message_list"], keyof ChannelMessageList>]: never; }) | undefined;
|
|
18048
18069
|
list_channel_users_req?: ({
|
|
18049
18070
|
clan_id?: string | undefined;
|
|
18050
18071
|
channel_id?: string | undefined;
|
|
@@ -18059,7 +18080,7 @@ export declare const Envelope: {
|
|
|
18059
18080
|
limit?: number | undefined;
|
|
18060
18081
|
state?: number | undefined;
|
|
18061
18082
|
cursor?: string | undefined;
|
|
18062
|
-
} & { [
|
|
18083
|
+
} & { [K_611 in Exclude<keyof I_1["list_data_socket"]["list_channel_users_req"], keyof ListChannelUsersRequest>]: never; }) | undefined;
|
|
18063
18084
|
voice_user_list?: ({
|
|
18064
18085
|
voice_channel_users?: {
|
|
18065
18086
|
id?: string | undefined;
|
|
@@ -18083,13 +18104,13 @@ export declare const Envelope: {
|
|
|
18083
18104
|
user_id?: string | undefined;
|
|
18084
18105
|
channel_id?: string | undefined;
|
|
18085
18106
|
participant?: string | undefined;
|
|
18086
|
-
} & { [
|
|
18107
|
+
} & { [K_612 in Exclude<keyof I_1["list_data_socket"]["voice_user_list"]["voice_channel_users"][number], keyof import("../api/api").VoiceChannelUser>]: never; })[] & { [K_613 in Exclude<keyof I_1["list_data_socket"]["voice_user_list"]["voice_channel_users"], keyof {
|
|
18087
18108
|
id?: string | undefined;
|
|
18088
18109
|
user_id?: string | undefined;
|
|
18089
18110
|
channel_id?: string | undefined;
|
|
18090
18111
|
participant?: string | undefined;
|
|
18091
18112
|
}[]>]: never; }) | undefined;
|
|
18092
|
-
} & { [
|
|
18113
|
+
} & { [K_614 in Exclude<keyof I_1["list_data_socket"]["voice_user_list"], "voice_channel_users">]: never; }) | undefined;
|
|
18093
18114
|
channel_user_list?: ({
|
|
18094
18115
|
channel_users?: {
|
|
18095
18116
|
user_id?: string | undefined;
|
|
@@ -18130,7 +18151,7 @@ export declare const Envelope: {
|
|
|
18130
18151
|
expired_ban_time?: number | undefined;
|
|
18131
18152
|
} & {
|
|
18132
18153
|
user_id?: string | undefined;
|
|
18133
|
-
role_id?: (string[] & string[] & { [
|
|
18154
|
+
role_id?: (string[] & string[] & { [K_615 in Exclude<keyof I_1["list_data_socket"]["channel_user_list"]["channel_users"][number]["role_id"], keyof string[]>]: never; }) | undefined;
|
|
18134
18155
|
id?: string | undefined;
|
|
18135
18156
|
thread_id?: string | undefined;
|
|
18136
18157
|
clan_nick?: string | undefined;
|
|
@@ -18139,7 +18160,7 @@ export declare const Envelope: {
|
|
|
18139
18160
|
added_by?: string | undefined;
|
|
18140
18161
|
is_banned?: boolean | undefined;
|
|
18141
18162
|
expired_ban_time?: number | undefined;
|
|
18142
|
-
} & { [
|
|
18163
|
+
} & { [K_616 in Exclude<keyof I_1["list_data_socket"]["channel_user_list"]["channel_users"][number], keyof import("../api/api").ChannelUserList_ChannelUser>]: never; })[] & { [K_617 in Exclude<keyof I_1["list_data_socket"]["channel_user_list"]["channel_users"], keyof {
|
|
18143
18164
|
user_id?: string | undefined;
|
|
18144
18165
|
role_id?: string[] | undefined;
|
|
18145
18166
|
id?: string | undefined;
|
|
@@ -18153,7 +18174,7 @@ export declare const Envelope: {
|
|
|
18153
18174
|
}[]>]: never; }) | undefined;
|
|
18154
18175
|
cursor?: string | undefined;
|
|
18155
18176
|
channel_id?: string | undefined;
|
|
18156
|
-
} & { [
|
|
18177
|
+
} & { [K_618 in Exclude<keyof I_1["list_data_socket"]["channel_user_list"], keyof ChannelUserList>]: never; }) | undefined;
|
|
18157
18178
|
list_channel_attachment_req?: ({
|
|
18158
18179
|
clan_id?: string | undefined;
|
|
18159
18180
|
channel_id?: string | undefined;
|
|
@@ -18172,7 +18193,7 @@ export declare const Envelope: {
|
|
|
18172
18193
|
before?: number | undefined;
|
|
18173
18194
|
after?: number | undefined;
|
|
18174
18195
|
around?: number | undefined;
|
|
18175
|
-
} & { [
|
|
18196
|
+
} & { [K_619 in Exclude<keyof I_1["list_data_socket"]["list_channel_attachment_req"], keyof ListChannelAttachmentRequest>]: never; }) | undefined;
|
|
18176
18197
|
channel_attachment_list?: ({
|
|
18177
18198
|
attachments?: {
|
|
18178
18199
|
id?: string | undefined;
|
|
@@ -18220,7 +18241,7 @@ export declare const Envelope: {
|
|
|
18220
18241
|
message_id?: string | undefined;
|
|
18221
18242
|
width?: number | undefined;
|
|
18222
18243
|
height?: number | undefined;
|
|
18223
|
-
} & { [
|
|
18244
|
+
} & { [K_620 in Exclude<keyof I_1["list_data_socket"]["channel_attachment_list"]["attachments"][number], keyof import("../api/api").ChannelAttachment>]: never; })[] & { [K_621 in Exclude<keyof I_1["list_data_socket"]["channel_attachment_list"]["attachments"], keyof {
|
|
18224
18245
|
id?: string | undefined;
|
|
18225
18246
|
filename?: string | undefined;
|
|
18226
18247
|
filetype?: string | undefined;
|
|
@@ -18232,14 +18253,14 @@ export declare const Envelope: {
|
|
|
18232
18253
|
width?: number | undefined;
|
|
18233
18254
|
height?: number | undefined;
|
|
18234
18255
|
}[]>]: never; }) | undefined;
|
|
18235
|
-
} & { [
|
|
18256
|
+
} & { [K_622 in Exclude<keyof I_1["list_data_socket"]["channel_attachment_list"], "attachments">]: never; }) | undefined;
|
|
18236
18257
|
hashtag_dm_req?: ({
|
|
18237
18258
|
user_id?: string[] | undefined;
|
|
18238
18259
|
limit?: number | undefined;
|
|
18239
18260
|
} & {
|
|
18240
|
-
user_id?: (string[] & string[] & { [
|
|
18261
|
+
user_id?: (string[] & string[] & { [K_623 in Exclude<keyof I_1["list_data_socket"]["hashtag_dm_req"]["user_id"], keyof string[]>]: never; }) | undefined;
|
|
18241
18262
|
limit?: number | undefined;
|
|
18242
|
-
} & { [
|
|
18263
|
+
} & { [K_624 in Exclude<keyof I_1["list_data_socket"]["hashtag_dm_req"], keyof HashtagDmListRequest>]: never; }) | undefined;
|
|
18243
18264
|
hashtag_dm_list?: ({
|
|
18244
18265
|
hashtag_dm?: {
|
|
18245
18266
|
channel_id?: string | undefined;
|
|
@@ -18279,7 +18300,7 @@ export declare const Envelope: {
|
|
|
18279
18300
|
type?: number | undefined;
|
|
18280
18301
|
channel_private?: number | undefined;
|
|
18281
18302
|
parent_id?: string | undefined;
|
|
18282
|
-
} & { [
|
|
18303
|
+
} & { [K_625 in Exclude<keyof I_1["list_data_socket"]["hashtag_dm_list"]["hashtag_dm"][number], keyof import("../api/api").HashtagDm>]: never; })[] & { [K_626 in Exclude<keyof I_1["list_data_socket"]["hashtag_dm_list"]["hashtag_dm"], keyof {
|
|
18283
18304
|
channel_id?: string | undefined;
|
|
18284
18305
|
channel_label?: string | undefined;
|
|
18285
18306
|
clan_id?: string | undefined;
|
|
@@ -18289,7 +18310,7 @@ export declare const Envelope: {
|
|
|
18289
18310
|
channel_private?: number | undefined;
|
|
18290
18311
|
parent_id?: string | undefined;
|
|
18291
18312
|
}[]>]: never; }) | undefined;
|
|
18292
|
-
} & { [
|
|
18313
|
+
} & { [K_627 in Exclude<keyof I_1["list_data_socket"]["hashtag_dm_list"], "hashtag_dm">]: never; }) | undefined;
|
|
18293
18314
|
channel_setting_req?: ({
|
|
18294
18315
|
clan_id?: string | undefined;
|
|
18295
18316
|
parent_id?: string | undefined;
|
|
@@ -18312,7 +18333,7 @@ export declare const Envelope: {
|
|
|
18312
18333
|
limit?: number | undefined;
|
|
18313
18334
|
page?: number | undefined;
|
|
18314
18335
|
channel_label?: string | undefined;
|
|
18315
|
-
} & { [
|
|
18336
|
+
} & { [K_628 in Exclude<keyof I_1["list_data_socket"]["channel_setting_req"], keyof ChannelSettingListRequest>]: never; }) | undefined;
|
|
18316
18337
|
channel_setting_list?: ({
|
|
18317
18338
|
clan_id?: string | undefined;
|
|
18318
18339
|
channel_count?: number | undefined;
|
|
@@ -18398,7 +18419,7 @@ export declare const Envelope: {
|
|
|
18398
18419
|
channel_private?: number | undefined;
|
|
18399
18420
|
channel_type?: number | undefined;
|
|
18400
18421
|
active?: number | undefined;
|
|
18401
|
-
user_ids?: (string[] & string[] & { [
|
|
18422
|
+
user_ids?: (string[] & string[] & { [K_629 in Exclude<keyof I_1["list_data_socket"]["channel_setting_list"]["channel_setting_list"][number]["user_ids"], keyof string[]>]: never; }) | undefined;
|
|
18402
18423
|
message_count?: number | undefined;
|
|
18403
18424
|
last_sent_message?: ({
|
|
18404
18425
|
id?: string | undefined;
|
|
@@ -18418,8 +18439,8 @@ export declare const Envelope: {
|
|
|
18418
18439
|
reference?: string | undefined;
|
|
18419
18440
|
mention?: string | undefined;
|
|
18420
18441
|
reaction?: string | undefined;
|
|
18421
|
-
} & { [
|
|
18422
|
-
} & { [
|
|
18442
|
+
} & { [K_630 in Exclude<keyof I_1["list_data_socket"]["channel_setting_list"]["channel_setting_list"][number]["last_sent_message"], keyof ChannelMessageHeader>]: never; }) | undefined;
|
|
18443
|
+
} & { [K_631 in Exclude<keyof I_1["list_data_socket"]["channel_setting_list"]["channel_setting_list"][number], keyof import("../api/api").ChannelSettingItem>]: never; })[] & { [K_632 in Exclude<keyof I_1["list_data_socket"]["channel_setting_list"]["channel_setting_list"], keyof {
|
|
18423
18444
|
id?: string | undefined;
|
|
18424
18445
|
creator_id?: string | undefined;
|
|
18425
18446
|
parent_id?: string | undefined;
|
|
@@ -18442,17 +18463,17 @@ export declare const Envelope: {
|
|
|
18442
18463
|
reaction?: string | undefined;
|
|
18443
18464
|
} | undefined;
|
|
18444
18465
|
}[]>]: never; }) | undefined;
|
|
18445
|
-
} & { [
|
|
18466
|
+
} & { [K_633 in Exclude<keyof I_1["list_data_socket"]["channel_setting_list"], keyof ChannelSettingListResponse>]: never; }) | undefined;
|
|
18446
18467
|
favorite_channel_req?: ({
|
|
18447
18468
|
clan_id?: string | undefined;
|
|
18448
18469
|
} & {
|
|
18449
18470
|
clan_id?: string | undefined;
|
|
18450
|
-
} & { [
|
|
18471
|
+
} & { [K_634 in Exclude<keyof I_1["list_data_socket"]["favorite_channel_req"], "clan_id">]: never; }) | undefined;
|
|
18451
18472
|
favorite_channel_list?: ({
|
|
18452
18473
|
channel_ids?: string[] | undefined;
|
|
18453
18474
|
} & {
|
|
18454
|
-
channel_ids?: (string[] & string[] & { [
|
|
18455
|
-
} & { [
|
|
18475
|
+
channel_ids?: (string[] & string[] & { [K_635 in Exclude<keyof I_1["list_data_socket"]["favorite_channel_list"]["channel_ids"], keyof string[]>]: never; }) | undefined;
|
|
18476
|
+
} & { [K_636 in Exclude<keyof I_1["list_data_socket"]["favorite_channel_list"], "channel_ids">]: never; }) | undefined;
|
|
18456
18477
|
search_thread_req?: ({
|
|
18457
18478
|
clan_id?: string | undefined;
|
|
18458
18479
|
channel_id?: string | undefined;
|
|
@@ -18461,12 +18482,12 @@ export declare const Envelope: {
|
|
|
18461
18482
|
clan_id?: string | undefined;
|
|
18462
18483
|
channel_id?: string | undefined;
|
|
18463
18484
|
label?: string | undefined;
|
|
18464
|
-
} & { [
|
|
18485
|
+
} & { [K_637 in Exclude<keyof I_1["list_data_socket"]["search_thread_req"], keyof SearchThreadRequest>]: never; }) | undefined;
|
|
18465
18486
|
notification_channel?: ({
|
|
18466
18487
|
channel_id?: string | undefined;
|
|
18467
18488
|
} & {
|
|
18468
18489
|
channel_id?: string | undefined;
|
|
18469
|
-
} & { [
|
|
18490
|
+
} & { [K_638 in Exclude<keyof I_1["list_data_socket"]["notification_channel"], "channel_id">]: never; }) | undefined;
|
|
18470
18491
|
notificaion_user_channel?: ({
|
|
18471
18492
|
id?: string | undefined;
|
|
18472
18493
|
notification_setting_type?: number | undefined;
|
|
@@ -18479,24 +18500,24 @@ export declare const Envelope: {
|
|
|
18479
18500
|
time_mute?: Date | undefined;
|
|
18480
18501
|
active?: number | undefined;
|
|
18481
18502
|
channel_id?: string | undefined;
|
|
18482
|
-
} & { [
|
|
18503
|
+
} & { [K_639 in Exclude<keyof I_1["list_data_socket"]["notificaion_user_channel"], keyof NotificationUserChannel>]: never; }) | undefined;
|
|
18483
18504
|
notification_category?: ({
|
|
18484
18505
|
category_id?: string | undefined;
|
|
18485
18506
|
} & {
|
|
18486
18507
|
category_id?: string | undefined;
|
|
18487
|
-
} & { [
|
|
18508
|
+
} & { [K_640 in Exclude<keyof I_1["list_data_socket"]["notification_category"], "category_id">]: never; }) | undefined;
|
|
18488
18509
|
notification_clan?: ({
|
|
18489
18510
|
clan_id?: string | undefined;
|
|
18490
18511
|
} & {
|
|
18491
18512
|
clan_id?: string | undefined;
|
|
18492
|
-
} & { [
|
|
18513
|
+
} & { [K_641 in Exclude<keyof I_1["list_data_socket"]["notification_clan"], "clan_id">]: never; }) | undefined;
|
|
18493
18514
|
notification_setting?: ({
|
|
18494
18515
|
id?: string | undefined;
|
|
18495
18516
|
notification_setting_type?: number | undefined;
|
|
18496
18517
|
} & {
|
|
18497
18518
|
id?: string | undefined;
|
|
18498
18519
|
notification_setting_type?: number | undefined;
|
|
18499
|
-
} & { [
|
|
18520
|
+
} & { [K_642 in Exclude<keyof I_1["list_data_socket"]["notification_setting"], keyof NotificationSetting>]: never; }) | undefined;
|
|
18500
18521
|
notification_message?: ({
|
|
18501
18522
|
id?: string | undefined;
|
|
18502
18523
|
user_id?: string | undefined;
|
|
@@ -18505,7 +18526,7 @@ export declare const Envelope: {
|
|
|
18505
18526
|
id?: string | undefined;
|
|
18506
18527
|
user_id?: string | undefined;
|
|
18507
18528
|
channel_id?: string | undefined;
|
|
18508
|
-
} & { [
|
|
18529
|
+
} & { [K_643 in Exclude<keyof I_1["list_data_socket"]["notification_message"], keyof NotifiReactMessage>]: never; }) | undefined;
|
|
18509
18530
|
noti_channel_cat_setting_list?: ({
|
|
18510
18531
|
notification_channel_category_settings_list?: {
|
|
18511
18532
|
id?: string | undefined;
|
|
@@ -18533,14 +18554,14 @@ export declare const Envelope: {
|
|
|
18533
18554
|
notification_setting_type?: number | undefined;
|
|
18534
18555
|
channel_category_title?: string | undefined;
|
|
18535
18556
|
action?: number | undefined;
|
|
18536
|
-
} & { [
|
|
18557
|
+
} & { [K_644 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_645 in Exclude<keyof I_1["list_data_socket"]["noti_channel_cat_setting_list"]["notification_channel_category_settings_list"], keyof {
|
|
18537
18558
|
id?: string | undefined;
|
|
18538
18559
|
channel_category_label?: string | undefined;
|
|
18539
18560
|
notification_setting_type?: number | undefined;
|
|
18540
18561
|
channel_category_title?: string | undefined;
|
|
18541
18562
|
action?: number | undefined;
|
|
18542
18563
|
}[]>]: never; }) | undefined;
|
|
18543
|
-
} & { [
|
|
18564
|
+
} & { [K_646 in Exclude<keyof I_1["list_data_socket"]["noti_channel_cat_setting_list"], "notification_channel_category_settings_list">]: never; }) | undefined;
|
|
18544
18565
|
list_notification_req?: ({
|
|
18545
18566
|
limit?: number | undefined;
|
|
18546
18567
|
clan_id?: string | undefined;
|
|
@@ -18553,7 +18574,7 @@ export declare const Envelope: {
|
|
|
18553
18574
|
notification_id?: string | undefined;
|
|
18554
18575
|
category?: number | undefined;
|
|
18555
18576
|
direction?: number | undefined;
|
|
18556
|
-
} & { [
|
|
18577
|
+
} & { [K_647 in Exclude<keyof I_1["list_data_socket"]["list_notification_req"], keyof ListNotificationsRequest>]: never; }) | undefined;
|
|
18557
18578
|
notification_list?: ({
|
|
18558
18579
|
notifications?: {
|
|
18559
18580
|
id?: string | undefined;
|
|
@@ -18825,8 +18846,8 @@ export declare const Envelope: {
|
|
|
18825
18846
|
creator_id?: string | undefined;
|
|
18826
18847
|
channel_label?: string | undefined;
|
|
18827
18848
|
channel_private?: number | undefined;
|
|
18828
|
-
avatars?: (string[] & string[] & { [
|
|
18829
|
-
user_ids?: (string[] & string[] & { [
|
|
18849
|
+
avatars?: (string[] & string[] & { [K_648 in Exclude<keyof I_1["list_data_socket"]["notification_list"]["notifications"][number]["channel"]["avatars"], keyof string[]>]: never; }) | undefined;
|
|
18850
|
+
user_ids?: (string[] & string[] & { [K_649 in Exclude<keyof I_1["list_data_socket"]["notification_list"]["notifications"][number]["channel"]["user_ids"], keyof string[]>]: never; }) | undefined;
|
|
18830
18851
|
last_sent_message?: ({
|
|
18831
18852
|
id?: string | undefined;
|
|
18832
18853
|
timestamp_seconds?: number | undefined;
|
|
@@ -18845,7 +18866,7 @@ export declare const Envelope: {
|
|
|
18845
18866
|
reference?: string | undefined;
|
|
18846
18867
|
mention?: string | undefined;
|
|
18847
18868
|
reaction?: string | undefined;
|
|
18848
|
-
} & { [
|
|
18869
|
+
} & { [K_650 in Exclude<keyof I_1["list_data_socket"]["notification_list"]["notifications"][number]["channel"]["last_sent_message"], keyof ChannelMessageHeader>]: never; }) | undefined;
|
|
18849
18870
|
last_seen_message?: ({
|
|
18850
18871
|
id?: string | undefined;
|
|
18851
18872
|
timestamp_seconds?: number | undefined;
|
|
@@ -18864,17 +18885,17 @@ export declare const Envelope: {
|
|
|
18864
18885
|
reference?: string | undefined;
|
|
18865
18886
|
mention?: string | undefined;
|
|
18866
18887
|
reaction?: string | undefined;
|
|
18867
|
-
} & { [
|
|
18868
|
-
onlines?: (boolean[] & boolean[] & { [
|
|
18888
|
+
} & { [K_651 in Exclude<keyof I_1["list_data_socket"]["notification_list"]["notifications"][number]["channel"]["last_seen_message"], keyof ChannelMessageHeader>]: never; }) | undefined;
|
|
18889
|
+
onlines?: (boolean[] & boolean[] & { [K_652 in Exclude<keyof I_1["list_data_socket"]["notification_list"]["notifications"][number]["channel"]["onlines"], keyof boolean[]>]: never; }) | undefined;
|
|
18869
18890
|
meeting_code?: string | undefined;
|
|
18870
18891
|
count_mess_unread?: number | undefined;
|
|
18871
18892
|
active?: number | undefined;
|
|
18872
18893
|
last_pin_message?: string | undefined;
|
|
18873
|
-
usernames?: (string[] & string[] & { [
|
|
18894
|
+
usernames?: (string[] & string[] & { [K_653 in Exclude<keyof I_1["list_data_socket"]["notification_list"]["notifications"][number]["channel"]["usernames"], keyof string[]>]: never; }) | undefined;
|
|
18874
18895
|
creator_name?: string | undefined;
|
|
18875
18896
|
create_time_seconds?: number | undefined;
|
|
18876
18897
|
update_time_seconds?: number | undefined;
|
|
18877
|
-
display_names?: (string[] & string[] & { [
|
|
18898
|
+
display_names?: (string[] & string[] & { [K_654 in Exclude<keyof I_1["list_data_socket"]["notification_list"]["notifications"][number]["channel"]["display_names"], keyof string[]>]: never; }) | undefined;
|
|
18878
18899
|
channel_avatar?: string | undefined;
|
|
18879
18900
|
clan_name?: string | undefined;
|
|
18880
18901
|
app_id?: string | undefined;
|
|
@@ -18883,10 +18904,10 @@ export declare const Envelope: {
|
|
|
18883
18904
|
topic?: string | undefined;
|
|
18884
18905
|
e2ee?: number | undefined;
|
|
18885
18906
|
member_count?: number | undefined;
|
|
18886
|
-
} & { [
|
|
18907
|
+
} & { [K_655 in Exclude<keyof I_1["list_data_socket"]["notification_list"]["notifications"][number]["channel"], keyof ChannelDescription1>]: never; }) | undefined;
|
|
18887
18908
|
topic_id?: string | undefined;
|
|
18888
18909
|
category?: number | undefined;
|
|
18889
|
-
} & { [
|
|
18910
|
+
} & { [K_656 in Exclude<keyof I_1["list_data_socket"]["notification_list"]["notifications"][number], keyof Notification>]: never; })[] & { [K_657 in Exclude<keyof I_1["list_data_socket"]["notification_list"]["notifications"], keyof {
|
|
18890
18911
|
id?: string | undefined;
|
|
18891
18912
|
subject?: string | undefined;
|
|
18892
18913
|
content?: string | undefined;
|
|
@@ -18953,7 +18974,7 @@ export declare const Envelope: {
|
|
|
18953
18974
|
category?: number | undefined;
|
|
18954
18975
|
}[]>]: never; }) | undefined;
|
|
18955
18976
|
cacheable_cursor?: string | undefined;
|
|
18956
|
-
} & { [
|
|
18977
|
+
} & { [K_658 in Exclude<keyof I_1["list_data_socket"]["notification_list"], keyof NotificationList>]: never; }) | undefined;
|
|
18957
18978
|
sticker_list?: ({
|
|
18958
18979
|
stickers?: {
|
|
18959
18980
|
id?: string | undefined;
|
|
@@ -19005,7 +19026,7 @@ export declare const Envelope: {
|
|
|
19005
19026
|
clan_name?: string | undefined;
|
|
19006
19027
|
media_type?: number | undefined;
|
|
19007
19028
|
is_for_sale?: boolean | undefined;
|
|
19008
|
-
} & { [
|
|
19029
|
+
} & { [K_659 in Exclude<keyof I_1["list_data_socket"]["sticker_list"]["stickers"][number], keyof import("../api/api").ClanSticker>]: never; })[] & { [K_660 in Exclude<keyof I_1["list_data_socket"]["sticker_list"]["stickers"], keyof {
|
|
19009
19030
|
id?: string | undefined;
|
|
19010
19031
|
source?: string | undefined;
|
|
19011
19032
|
shortname?: string | undefined;
|
|
@@ -19018,7 +19039,7 @@ export declare const Envelope: {
|
|
|
19018
19039
|
media_type?: number | undefined;
|
|
19019
19040
|
is_for_sale?: boolean | undefined;
|
|
19020
19041
|
}[]>]: never; }) | undefined;
|
|
19021
|
-
} & { [
|
|
19042
|
+
} & { [K_661 in Exclude<keyof I_1["list_data_socket"]["sticker_list"], "stickers">]: never; }) | undefined;
|
|
19022
19043
|
emoji_recent_list?: ({
|
|
19023
19044
|
emoji_recents?: {
|
|
19024
19045
|
emoji_recents_id?: string | undefined;
|
|
@@ -19038,17 +19059,17 @@ export declare const Envelope: {
|
|
|
19038
19059
|
emoji_recents_id?: string | undefined;
|
|
19039
19060
|
emoji_id?: string | undefined;
|
|
19040
19061
|
update_time?: Date | undefined;
|
|
19041
|
-
} & { [
|
|
19062
|
+
} & { [K_662 in Exclude<keyof I_1["list_data_socket"]["emoji_recent_list"]["emoji_recents"][number], keyof import("../api/api").EmojiRecent>]: never; })[] & { [K_663 in Exclude<keyof I_1["list_data_socket"]["emoji_recent_list"]["emoji_recents"], keyof {
|
|
19042
19063
|
emoji_recents_id?: string | undefined;
|
|
19043
19064
|
emoji_id?: string | undefined;
|
|
19044
19065
|
update_time?: Date | undefined;
|
|
19045
19066
|
}[]>]: never; }) | undefined;
|
|
19046
|
-
} & { [
|
|
19067
|
+
} & { [K_664 in Exclude<keyof I_1["list_data_socket"]["emoji_recent_list"], "emoji_recents">]: never; }) | undefined;
|
|
19047
19068
|
clan_webhook_req?: ({
|
|
19048
19069
|
clan_id?: string | undefined;
|
|
19049
19070
|
} & {
|
|
19050
19071
|
clan_id?: string | undefined;
|
|
19051
|
-
} & { [
|
|
19072
|
+
} & { [K_665 in Exclude<keyof I_1["list_data_socket"]["clan_webhook_req"], "clan_id">]: never; }) | undefined;
|
|
19052
19073
|
clan_webhook_list?: ({
|
|
19053
19074
|
list_clan_webhooks?: {
|
|
19054
19075
|
id?: string | undefined;
|
|
@@ -19092,7 +19113,7 @@ export declare const Envelope: {
|
|
|
19092
19113
|
avatar?: string | undefined;
|
|
19093
19114
|
create_time?: string | undefined;
|
|
19094
19115
|
update_time?: string | undefined;
|
|
19095
|
-
} & { [
|
|
19116
|
+
} & { [K_666 in Exclude<keyof I_1["list_data_socket"]["clan_webhook_list"]["list_clan_webhooks"][number], keyof import("../api/api").ClanWebhook>]: never; })[] & { [K_667 in Exclude<keyof I_1["list_data_socket"]["clan_webhook_list"]["list_clan_webhooks"], keyof {
|
|
19096
19117
|
id?: string | undefined;
|
|
19097
19118
|
webhook_name?: string | undefined;
|
|
19098
19119
|
clan_id?: string | undefined;
|
|
@@ -19103,14 +19124,14 @@ export declare const Envelope: {
|
|
|
19103
19124
|
create_time?: string | undefined;
|
|
19104
19125
|
update_time?: string | undefined;
|
|
19105
19126
|
}[]>]: never; }) | undefined;
|
|
19106
|
-
} & { [
|
|
19127
|
+
} & { [K_668 in Exclude<keyof I_1["list_data_socket"]["clan_webhook_list"], "list_clan_webhooks">]: never; }) | undefined;
|
|
19107
19128
|
webhook_list_req?: ({
|
|
19108
19129
|
channel_id?: string | undefined;
|
|
19109
19130
|
clan_id?: string | undefined;
|
|
19110
19131
|
} & {
|
|
19111
19132
|
channel_id?: string | undefined;
|
|
19112
19133
|
clan_id?: string | undefined;
|
|
19113
|
-
} & { [
|
|
19134
|
+
} & { [K_669 in Exclude<keyof I_1["list_data_socket"]["webhook_list_req"], keyof WebhookListRequest>]: never; }) | undefined;
|
|
19114
19135
|
webhook_list?: ({
|
|
19115
19136
|
webhooks?: {
|
|
19116
19137
|
id?: string | undefined;
|
|
@@ -19162,7 +19183,7 @@ export declare const Envelope: {
|
|
|
19162
19183
|
avatar?: string | undefined;
|
|
19163
19184
|
status?: number | undefined;
|
|
19164
19185
|
clan_id?: string | undefined;
|
|
19165
|
-
} & { [
|
|
19186
|
+
} & { [K_670 in Exclude<keyof I_1["list_data_socket"]["webhook_list"]["webhooks"][number], keyof Webhook>]: never; })[] & { [K_671 in Exclude<keyof I_1["list_data_socket"]["webhook_list"]["webhooks"], keyof {
|
|
19166
19187
|
id?: string | undefined;
|
|
19167
19188
|
webhook_name?: string | undefined;
|
|
19168
19189
|
channel_id?: string | undefined;
|
|
@@ -19175,12 +19196,12 @@ export declare const Envelope: {
|
|
|
19175
19196
|
status?: number | undefined;
|
|
19176
19197
|
clan_id?: string | undefined;
|
|
19177
19198
|
}[]>]: never; }) | undefined;
|
|
19178
|
-
} & { [
|
|
19199
|
+
} & { [K_672 in Exclude<keyof I_1["list_data_socket"]["webhook_list"], "webhooks">]: never; }) | undefined;
|
|
19179
19200
|
permission_list_req?: ({
|
|
19180
19201
|
role_id?: string | undefined;
|
|
19181
19202
|
} & {
|
|
19182
19203
|
role_id?: string | undefined;
|
|
19183
|
-
} & { [
|
|
19204
|
+
} & { [K_673 in Exclude<keyof I_1["list_data_socket"]["permission_list_req"], "role_id">]: never; }) | undefined;
|
|
19184
19205
|
permission_list?: ({
|
|
19185
19206
|
permissions?: {
|
|
19186
19207
|
id?: string | undefined;
|
|
@@ -19217,7 +19238,7 @@ export declare const Envelope: {
|
|
|
19217
19238
|
active?: number | undefined;
|
|
19218
19239
|
scope?: number | undefined;
|
|
19219
19240
|
level?: number | undefined;
|
|
19220
|
-
} & { [
|
|
19241
|
+
} & { [K_674 in Exclude<keyof I_1["list_data_socket"]["permission_list"]["permissions"][number], keyof import("../api/api").Permission>]: never; })[] & { [K_675 in Exclude<keyof I_1["list_data_socket"]["permission_list"]["permissions"], keyof {
|
|
19221
19242
|
id?: string | undefined;
|
|
19222
19243
|
title?: string | undefined;
|
|
19223
19244
|
slug?: string | undefined;
|
|
@@ -19227,7 +19248,7 @@ export declare const Envelope: {
|
|
|
19227
19248
|
level?: number | undefined;
|
|
19228
19249
|
}[]>]: never; }) | undefined;
|
|
19229
19250
|
max_level_permission?: number | undefined;
|
|
19230
|
-
} & { [
|
|
19251
|
+
} & { [K_676 in Exclude<keyof I_1["list_data_socket"]["permission_list"], keyof PermissionList>]: never; }) | undefined;
|
|
19231
19252
|
role_user_req?: ({
|
|
19232
19253
|
role_id?: string | undefined;
|
|
19233
19254
|
limit?: number | undefined;
|
|
@@ -19236,7 +19257,7 @@ export declare const Envelope: {
|
|
|
19236
19257
|
role_id?: string | undefined;
|
|
19237
19258
|
limit?: number | undefined;
|
|
19238
19259
|
cursor?: string | undefined;
|
|
19239
|
-
} & { [
|
|
19260
|
+
} & { [K_677 in Exclude<keyof I_1["list_data_socket"]["role_user_req"], keyof ListRoleUsersRequest>]: never; }) | undefined;
|
|
19240
19261
|
role_user_list?: ({
|
|
19241
19262
|
role_users?: {
|
|
19242
19263
|
id?: string | undefined;
|
|
@@ -19273,7 +19294,7 @@ export declare const Envelope: {
|
|
|
19273
19294
|
lang_tag?: string | undefined;
|
|
19274
19295
|
location?: string | undefined;
|
|
19275
19296
|
online?: boolean | undefined;
|
|
19276
|
-
} & { [
|
|
19297
|
+
} & { [K_678 in Exclude<keyof I_1["list_data_socket"]["role_user_list"]["role_users"][number], keyof import("../api/api").RoleUserList_RoleUser>]: never; })[] & { [K_679 in Exclude<keyof I_1["list_data_socket"]["role_user_list"]["role_users"], keyof {
|
|
19277
19298
|
id?: string | undefined;
|
|
19278
19299
|
username?: string | undefined;
|
|
19279
19300
|
display_name?: string | undefined;
|
|
@@ -19283,14 +19304,14 @@ export declare const Envelope: {
|
|
|
19283
19304
|
online?: boolean | undefined;
|
|
19284
19305
|
}[]>]: never; }) | undefined;
|
|
19285
19306
|
cursor?: string | undefined;
|
|
19286
|
-
} & { [
|
|
19307
|
+
} & { [K_680 in Exclude<keyof I_1["list_data_socket"]["role_user_list"], keyof RoleUserList>]: never; }) | undefined;
|
|
19287
19308
|
permission_user_req?: ({
|
|
19288
19309
|
clan_id?: string | undefined;
|
|
19289
19310
|
channel_id?: string | undefined;
|
|
19290
19311
|
} & {
|
|
19291
19312
|
clan_id?: string | undefined;
|
|
19292
19313
|
channel_id?: string | undefined;
|
|
19293
|
-
} & { [
|
|
19314
|
+
} & { [K_681 in Exclude<keyof I_1["list_data_socket"]["permission_user_req"], keyof ListPermissionOfUsersRequest>]: never; }) | undefined;
|
|
19294
19315
|
role_list?: ({
|
|
19295
19316
|
roles?: {
|
|
19296
19317
|
id?: string | undefined;
|
|
@@ -19463,7 +19484,7 @@ export declare const Envelope: {
|
|
|
19463
19484
|
lang_tag?: string | undefined;
|
|
19464
19485
|
location?: string | undefined;
|
|
19465
19486
|
online?: boolean | undefined;
|
|
19466
|
-
} & { [
|
|
19487
|
+
} & { [K_682 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_683 in Exclude<keyof I_1["list_data_socket"]["role_list"]["roles"][number]["role_user_list"]["role_users"], keyof {
|
|
19467
19488
|
id?: string | undefined;
|
|
19468
19489
|
username?: string | undefined;
|
|
19469
19490
|
display_name?: string | undefined;
|
|
@@ -19473,7 +19494,7 @@ export declare const Envelope: {
|
|
|
19473
19494
|
online?: boolean | undefined;
|
|
19474
19495
|
}[]>]: never; }) | undefined;
|
|
19475
19496
|
cursor?: string | undefined;
|
|
19476
|
-
} & { [
|
|
19497
|
+
} & { [K_684 in Exclude<keyof I_1["list_data_socket"]["role_list"]["roles"][number]["role_user_list"], keyof RoleUserList>]: never; }) | undefined;
|
|
19477
19498
|
permission_list?: ({
|
|
19478
19499
|
permissions?: {
|
|
19479
19500
|
id?: string | undefined;
|
|
@@ -19510,7 +19531,7 @@ export declare const Envelope: {
|
|
|
19510
19531
|
active?: number | undefined;
|
|
19511
19532
|
scope?: number | undefined;
|
|
19512
19533
|
level?: number | undefined;
|
|
19513
|
-
} & { [
|
|
19534
|
+
} & { [K_685 in Exclude<keyof I_1["list_data_socket"]["role_list"]["roles"][number]["permission_list"]["permissions"][number], keyof import("../api/api").Permission>]: never; })[] & { [K_686 in Exclude<keyof I_1["list_data_socket"]["role_list"]["roles"][number]["permission_list"]["permissions"], keyof {
|
|
19514
19535
|
id?: string | undefined;
|
|
19515
19536
|
title?: string | undefined;
|
|
19516
19537
|
slug?: string | undefined;
|
|
@@ -19520,12 +19541,12 @@ export declare const Envelope: {
|
|
|
19520
19541
|
level?: number | undefined;
|
|
19521
19542
|
}[]>]: never; }) | undefined;
|
|
19522
19543
|
max_level_permission?: number | undefined;
|
|
19523
|
-
} & { [
|
|
19544
|
+
} & { [K_687 in Exclude<keyof I_1["list_data_socket"]["role_list"]["roles"][number]["permission_list"], keyof PermissionList>]: never; }) | undefined;
|
|
19524
19545
|
role_channel_active?: number | undefined;
|
|
19525
|
-
channel_ids?: (string[] & string[] & { [
|
|
19546
|
+
channel_ids?: (string[] & string[] & { [K_688 in Exclude<keyof I_1["list_data_socket"]["role_list"]["roles"][number]["channel_ids"], keyof string[]>]: never; }) | undefined;
|
|
19526
19547
|
max_level_permission?: number | undefined;
|
|
19527
19548
|
order_role?: number | undefined;
|
|
19528
|
-
} & { [
|
|
19549
|
+
} & { [K_689 in Exclude<keyof I_1["list_data_socket"]["role_list"]["roles"][number], keyof Role>]: never; })[] & { [K_690 in Exclude<keyof I_1["list_data_socket"]["role_list"]["roles"], keyof {
|
|
19529
19550
|
id?: string | undefined;
|
|
19530
19551
|
title?: string | undefined;
|
|
19531
19552
|
color?: string | undefined;
|
|
@@ -19567,7 +19588,7 @@ export declare const Envelope: {
|
|
|
19567
19588
|
order_role?: number | undefined;
|
|
19568
19589
|
}[]>]: never; }) | undefined;
|
|
19569
19590
|
max_level_permission?: number | undefined;
|
|
19570
|
-
} & { [
|
|
19591
|
+
} & { [K_691 in Exclude<keyof I_1["list_data_socket"]["role_list"], keyof RoleList>]: never; }) | undefined;
|
|
19571
19592
|
role_list_event_req?: ({
|
|
19572
19593
|
clan_id?: string | undefined;
|
|
19573
19594
|
limit?: number | undefined;
|
|
@@ -19578,7 +19599,7 @@ export declare const Envelope: {
|
|
|
19578
19599
|
limit?: number | undefined;
|
|
19579
19600
|
state?: number | undefined;
|
|
19580
19601
|
cursor?: string | undefined;
|
|
19581
|
-
} & { [
|
|
19602
|
+
} & { [K_692 in Exclude<keyof I_1["list_data_socket"]["role_list_event_req"], keyof RoleListEventRequest>]: never; }) | undefined;
|
|
19582
19603
|
role_event_list?: ({
|
|
19583
19604
|
limit?: number | undefined;
|
|
19584
19605
|
state?: number | undefined;
|
|
@@ -19805,7 +19826,7 @@ export declare const Envelope: {
|
|
|
19805
19826
|
lang_tag?: string | undefined;
|
|
19806
19827
|
location?: string | undefined;
|
|
19807
19828
|
online?: boolean | undefined;
|
|
19808
|
-
} & { [
|
|
19829
|
+
} & { [K_693 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_694 in Exclude<keyof I_1["list_data_socket"]["role_event_list"]["roles"]["roles"][number]["role_user_list"]["role_users"], keyof {
|
|
19809
19830
|
id?: string | undefined;
|
|
19810
19831
|
username?: string | undefined;
|
|
19811
19832
|
display_name?: string | undefined;
|
|
@@ -19815,7 +19836,7 @@ export declare const Envelope: {
|
|
|
19815
19836
|
online?: boolean | undefined;
|
|
19816
19837
|
}[]>]: never; }) | undefined;
|
|
19817
19838
|
cursor?: string | undefined;
|
|
19818
|
-
} & { [
|
|
19839
|
+
} & { [K_695 in Exclude<keyof I_1["list_data_socket"]["role_event_list"]["roles"]["roles"][number]["role_user_list"], keyof RoleUserList>]: never; }) | undefined;
|
|
19819
19840
|
permission_list?: ({
|
|
19820
19841
|
permissions?: {
|
|
19821
19842
|
id?: string | undefined;
|
|
@@ -19852,7 +19873,7 @@ export declare const Envelope: {
|
|
|
19852
19873
|
active?: number | undefined;
|
|
19853
19874
|
scope?: number | undefined;
|
|
19854
19875
|
level?: number | undefined;
|
|
19855
|
-
} & { [
|
|
19876
|
+
} & { [K_696 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_697 in Exclude<keyof I_1["list_data_socket"]["role_event_list"]["roles"]["roles"][number]["permission_list"]["permissions"], keyof {
|
|
19856
19877
|
id?: string | undefined;
|
|
19857
19878
|
title?: string | undefined;
|
|
19858
19879
|
slug?: string | undefined;
|
|
@@ -19862,12 +19883,12 @@ export declare const Envelope: {
|
|
|
19862
19883
|
level?: number | undefined;
|
|
19863
19884
|
}[]>]: never; }) | undefined;
|
|
19864
19885
|
max_level_permission?: number | undefined;
|
|
19865
|
-
} & { [
|
|
19886
|
+
} & { [K_698 in Exclude<keyof I_1["list_data_socket"]["role_event_list"]["roles"]["roles"][number]["permission_list"], keyof PermissionList>]: never; }) | undefined;
|
|
19866
19887
|
role_channel_active?: number | undefined;
|
|
19867
|
-
channel_ids?: (string[] & string[] & { [
|
|
19888
|
+
channel_ids?: (string[] & string[] & { [K_699 in Exclude<keyof I_1["list_data_socket"]["role_event_list"]["roles"]["roles"][number]["channel_ids"], keyof string[]>]: never; }) | undefined;
|
|
19868
19889
|
max_level_permission?: number | undefined;
|
|
19869
19890
|
order_role?: number | undefined;
|
|
19870
|
-
} & { [
|
|
19891
|
+
} & { [K_700 in Exclude<keyof I_1["list_data_socket"]["role_event_list"]["roles"]["roles"][number], keyof Role>]: never; })[] & { [K_701 in Exclude<keyof I_1["list_data_socket"]["role_event_list"]["roles"]["roles"], keyof {
|
|
19871
19892
|
id?: string | undefined;
|
|
19872
19893
|
title?: string | undefined;
|
|
19873
19894
|
color?: string | undefined;
|
|
@@ -19909,15 +19930,15 @@ export declare const Envelope: {
|
|
|
19909
19930
|
order_role?: number | undefined;
|
|
19910
19931
|
}[]>]: never; }) | undefined;
|
|
19911
19932
|
max_level_permission?: number | undefined;
|
|
19912
|
-
} & { [
|
|
19913
|
-
} & { [
|
|
19933
|
+
} & { [K_702 in Exclude<keyof I_1["list_data_socket"]["role_event_list"]["roles"], keyof RoleList>]: never; }) | undefined;
|
|
19934
|
+
} & { [K_703 in Exclude<keyof I_1["list_data_socket"]["role_event_list"], keyof RoleListEventResponse>]: never; }) | undefined;
|
|
19914
19935
|
user_permission_req?: ({
|
|
19915
19936
|
clan_id?: string | undefined;
|
|
19916
19937
|
channel_id?: string | undefined;
|
|
19917
19938
|
} & {
|
|
19918
19939
|
clan_id?: string | undefined;
|
|
19919
19940
|
channel_id?: string | undefined;
|
|
19920
|
-
} & { [
|
|
19941
|
+
} & { [K_704 in Exclude<keyof I_1["list_data_socket"]["user_permission_req"], keyof UserPermissionInChannelListRequest>]: never; }) | undefined;
|
|
19921
19942
|
user_permission_list?: ({
|
|
19922
19943
|
clan_id?: string | undefined;
|
|
19923
19944
|
channel_id?: string | undefined;
|
|
@@ -19972,7 +19993,7 @@ export declare const Envelope: {
|
|
|
19972
19993
|
active?: number | undefined;
|
|
19973
19994
|
scope?: number | undefined;
|
|
19974
19995
|
level?: number | undefined;
|
|
19975
|
-
} & { [
|
|
19996
|
+
} & { [K_705 in Exclude<keyof I_1["list_data_socket"]["user_permission_list"]["permissions"]["permissions"][number], keyof import("../api/api").Permission>]: never; })[] & { [K_706 in Exclude<keyof I_1["list_data_socket"]["user_permission_list"]["permissions"]["permissions"], keyof {
|
|
19976
19997
|
id?: string | undefined;
|
|
19977
19998
|
title?: string | undefined;
|
|
19978
19999
|
slug?: string | undefined;
|
|
@@ -19982,8 +20003,8 @@ export declare const Envelope: {
|
|
|
19982
20003
|
level?: number | undefined;
|
|
19983
20004
|
}[]>]: never; }) | undefined;
|
|
19984
20005
|
max_level_permission?: number | undefined;
|
|
19985
|
-
} & { [
|
|
19986
|
-
} & { [
|
|
20006
|
+
} & { [K_707 in Exclude<keyof I_1["list_data_socket"]["user_permission_list"]["permissions"], keyof PermissionList>]: never; }) | undefined;
|
|
20007
|
+
} & { [K_708 in Exclude<keyof I_1["list_data_socket"]["user_permission_list"], keyof UserPermissionInChannelListResponse>]: never; }) | undefined;
|
|
19987
20008
|
permission_role_req?: ({
|
|
19988
20009
|
role_id?: string | undefined;
|
|
19989
20010
|
channel_id?: string | undefined;
|
|
@@ -19992,7 +20013,7 @@ export declare const Envelope: {
|
|
|
19992
20013
|
role_id?: string | undefined;
|
|
19993
20014
|
channel_id?: string | undefined;
|
|
19994
20015
|
user_id?: string | undefined;
|
|
19995
|
-
} & { [
|
|
20016
|
+
} & { [K_709 in Exclude<keyof I_1["list_data_socket"]["permission_role_req"], keyof PermissionRoleChannelListEventRequest>]: never; }) | undefined;
|
|
19996
20017
|
permission_role_list?: ({
|
|
19997
20018
|
role_id?: string | undefined;
|
|
19998
20019
|
channel_id?: string | undefined;
|
|
@@ -20014,11 +20035,11 @@ export declare const Envelope: {
|
|
|
20014
20035
|
} & {
|
|
20015
20036
|
permission_id?: string | undefined;
|
|
20016
20037
|
active?: boolean | undefined;
|
|
20017
|
-
} & { [
|
|
20038
|
+
} & { [K_710 in Exclude<keyof I_1["list_data_socket"]["permission_role_list"]["permission_role_channel"][number], keyof import("../api/api").PermissionRoleChannel>]: never; })[] & { [K_711 in Exclude<keyof I_1["list_data_socket"]["permission_role_list"]["permission_role_channel"], keyof {
|
|
20018
20039
|
permission_id?: string | undefined;
|
|
20019
20040
|
active?: boolean | undefined;
|
|
20020
20041
|
}[]>]: never; }) | undefined;
|
|
20021
|
-
} & { [
|
|
20042
|
+
} & { [K_712 in Exclude<keyof I_1["list_data_socket"]["permission_role_list"], keyof PermissionRoleChannelListEventResponse>]: never; }) | undefined;
|
|
20022
20043
|
emoji_list?: ({
|
|
20023
20044
|
emoji_list?: {
|
|
20024
20045
|
id?: string | undefined;
|
|
@@ -20062,7 +20083,7 @@ export declare const Envelope: {
|
|
|
20062
20083
|
logo?: string | undefined;
|
|
20063
20084
|
clan_name?: string | undefined;
|
|
20064
20085
|
is_for_sale?: boolean | undefined;
|
|
20065
|
-
} & { [
|
|
20086
|
+
} & { [K_713 in Exclude<keyof I_1["list_data_socket"]["emoji_list"]["emoji_list"][number], keyof import("../api/api").ClanEmoji>]: never; })[] & { [K_714 in Exclude<keyof I_1["list_data_socket"]["emoji_list"]["emoji_list"], keyof {
|
|
20066
20087
|
id?: string | undefined;
|
|
20067
20088
|
src?: string | undefined;
|
|
20068
20089
|
shortname?: string | undefined;
|
|
@@ -20073,7 +20094,7 @@ export declare const Envelope: {
|
|
|
20073
20094
|
clan_name?: string | undefined;
|
|
20074
20095
|
is_for_sale?: boolean | undefined;
|
|
20075
20096
|
}[]>]: never; }) | undefined;
|
|
20076
|
-
} & { [
|
|
20097
|
+
} & { [K_715 in Exclude<keyof I_1["list_data_socket"]["emoji_list"], "emoji_list">]: never; }) | undefined;
|
|
20077
20098
|
list_friend_req?: ({
|
|
20078
20099
|
limit?: number | undefined;
|
|
20079
20100
|
state?: number | undefined;
|
|
@@ -20082,7 +20103,7 @@ export declare const Envelope: {
|
|
|
20082
20103
|
limit?: number | undefined;
|
|
20083
20104
|
state?: number | undefined;
|
|
20084
20105
|
cursor?: string | undefined;
|
|
20085
|
-
} & { [
|
|
20106
|
+
} & { [K_716 in Exclude<keyof I_1["list_data_socket"]["list_friend_req"], keyof ListFriendsRequest>]: never; }) | undefined;
|
|
20086
20107
|
friend_list?: ({
|
|
20087
20108
|
friends?: {
|
|
20088
20109
|
user?: {
|
|
@@ -20206,13 +20227,13 @@ export declare const Envelope: {
|
|
|
20206
20227
|
is_mobile?: boolean | undefined;
|
|
20207
20228
|
dob?: Date | undefined;
|
|
20208
20229
|
mezon_id?: string | undefined;
|
|
20209
|
-
list_nick_names?: (string[] & string[] & { [
|
|
20230
|
+
list_nick_names?: (string[] & string[] & { [K_717 in Exclude<keyof I_1["list_data_socket"]["friend_list"]["friends"][number]["user"]["list_nick_names"], keyof string[]>]: never; }) | undefined;
|
|
20210
20231
|
status?: string | undefined;
|
|
20211
|
-
} & { [
|
|
20232
|
+
} & { [K_718 in Exclude<keyof I_1["list_data_socket"]["friend_list"]["friends"][number]["user"], keyof import("../api/api").User>]: never; }) | undefined;
|
|
20212
20233
|
state?: number | undefined;
|
|
20213
20234
|
update_time?: Date | undefined;
|
|
20214
20235
|
source_id?: string | undefined;
|
|
20215
|
-
} & { [
|
|
20236
|
+
} & { [K_719 in Exclude<keyof I_1["list_data_socket"]["friend_list"]["friends"][number], keyof import("../api/api").Friend>]: never; })[] & { [K_720 in Exclude<keyof I_1["list_data_socket"]["friend_list"]["friends"], keyof {
|
|
20216
20237
|
user?: {
|
|
20217
20238
|
id?: string | undefined;
|
|
20218
20239
|
username?: string | undefined;
|
|
@@ -20240,12 +20261,12 @@ export declare const Envelope: {
|
|
|
20240
20261
|
source_id?: string | undefined;
|
|
20241
20262
|
}[]>]: never; }) | undefined;
|
|
20242
20263
|
cursor?: string | undefined;
|
|
20243
|
-
} & { [
|
|
20264
|
+
} & { [K_721 in Exclude<keyof I_1["list_data_socket"]["friend_list"], keyof FriendList>]: never; }) | undefined;
|
|
20244
20265
|
list_apps_req?: ({
|
|
20245
20266
|
clan_id?: string | undefined;
|
|
20246
20267
|
} & {
|
|
20247
20268
|
clan_id?: string | undefined;
|
|
20248
|
-
} & { [
|
|
20269
|
+
} & { [K_722 in Exclude<keyof I_1["list_data_socket"]["list_apps_req"], "clan_id">]: never; }) | undefined;
|
|
20249
20270
|
channel_apps_list?: ({
|
|
20250
20271
|
channel_apps?: {
|
|
20251
20272
|
id?: string | undefined;
|
|
@@ -20281,7 +20302,7 @@ export declare const Envelope: {
|
|
|
20281
20302
|
app_url?: string | undefined;
|
|
20282
20303
|
app_name?: string | undefined;
|
|
20283
20304
|
app_logo?: string | undefined;
|
|
20284
|
-
} & { [
|
|
20305
|
+
} & { [K_723 in Exclude<keyof I_1["list_data_socket"]["channel_apps_list"]["channel_apps"][number], keyof import("../api/api").ChannelAppResponse>]: never; })[] & { [K_724 in Exclude<keyof I_1["list_data_socket"]["channel_apps_list"]["channel_apps"], keyof {
|
|
20285
20306
|
id?: string | undefined;
|
|
20286
20307
|
clan_id?: string | undefined;
|
|
20287
20308
|
channel_id?: string | undefined;
|
|
@@ -20290,7 +20311,7 @@ export declare const Envelope: {
|
|
|
20290
20311
|
app_name?: string | undefined;
|
|
20291
20312
|
app_logo?: string | undefined;
|
|
20292
20313
|
}[]>]: never; }) | undefined;
|
|
20293
|
-
} & { [
|
|
20314
|
+
} & { [K_725 in Exclude<keyof I_1["list_data_socket"]["channel_apps_list"], "channel_apps">]: never; }) | undefined;
|
|
20294
20315
|
user_activity_list?: ({
|
|
20295
20316
|
activities?: {
|
|
20296
20317
|
user_id?: string | undefined;
|
|
@@ -20330,7 +20351,7 @@ export declare const Envelope: {
|
|
|
20330
20351
|
end_time?: Date | undefined;
|
|
20331
20352
|
application_id?: string | undefined;
|
|
20332
20353
|
status?: number | undefined;
|
|
20333
|
-
} & { [
|
|
20354
|
+
} & { [K_726 in Exclude<keyof I_1["list_data_socket"]["user_activity_list"]["activities"][number], keyof UserActivity>]: never; })[] & { [K_727 in Exclude<keyof I_1["list_data_socket"]["user_activity_list"]["activities"], keyof {
|
|
20334
20355
|
user_id?: string | undefined;
|
|
20335
20356
|
activity_name?: string | undefined;
|
|
20336
20357
|
activity_type?: number | undefined;
|
|
@@ -20340,12 +20361,12 @@ export declare const Envelope: {
|
|
|
20340
20361
|
application_id?: string | undefined;
|
|
20341
20362
|
status?: number | undefined;
|
|
20342
20363
|
}[]>]: never; }) | undefined;
|
|
20343
|
-
} & { [
|
|
20364
|
+
} & { [K_728 in Exclude<keyof I_1["list_data_socket"]["user_activity_list"], "activities">]: never; }) | undefined;
|
|
20344
20365
|
list_clan_user_req?: ({
|
|
20345
20366
|
clan_id?: string | undefined;
|
|
20346
20367
|
} & {
|
|
20347
20368
|
clan_id?: string | undefined;
|
|
20348
|
-
} & { [
|
|
20369
|
+
} & { [K_729 in Exclude<keyof I_1["list_data_socket"]["list_clan_user_req"], "clan_id">]: never; }) | undefined;
|
|
20349
20370
|
clan_user_list?: ({
|
|
20350
20371
|
clan_users?: {
|
|
20351
20372
|
user?: {
|
|
@@ -20473,14 +20494,14 @@ export declare const Envelope: {
|
|
|
20473
20494
|
is_mobile?: boolean | undefined;
|
|
20474
20495
|
dob?: Date | undefined;
|
|
20475
20496
|
mezon_id?: string | undefined;
|
|
20476
|
-
list_nick_names?: (string[] & string[] & { [
|
|
20497
|
+
list_nick_names?: (string[] & string[] & { [K_730 in Exclude<keyof I_1["list_data_socket"]["clan_user_list"]["clan_users"][number]["user"]["list_nick_names"], keyof string[]>]: never; }) | undefined;
|
|
20477
20498
|
status?: string | undefined;
|
|
20478
|
-
} & { [
|
|
20479
|
-
role_id?: (string[] & string[] & { [
|
|
20499
|
+
} & { [K_731 in Exclude<keyof I_1["list_data_socket"]["clan_user_list"]["clan_users"][number]["user"], keyof import("../api/api").User>]: never; }) | undefined;
|
|
20500
|
+
role_id?: (string[] & string[] & { [K_732 in Exclude<keyof I_1["list_data_socket"]["clan_user_list"]["clan_users"][number]["role_id"], keyof string[]>]: never; }) | undefined;
|
|
20480
20501
|
clan_nick?: string | undefined;
|
|
20481
20502
|
clan_avatar?: string | undefined;
|
|
20482
20503
|
clan_id?: string | undefined;
|
|
20483
|
-
} & { [
|
|
20504
|
+
} & { [K_733 in Exclude<keyof I_1["list_data_socket"]["clan_user_list"]["clan_users"][number], keyof import("../api/api").ClanUserList_ClanUser>]: never; })[] & { [K_734 in Exclude<keyof I_1["list_data_socket"]["clan_user_list"]["clan_users"], keyof {
|
|
20484
20505
|
user?: {
|
|
20485
20506
|
id?: string | undefined;
|
|
20486
20507
|
username?: string | undefined;
|
|
@@ -20510,12 +20531,12 @@ export declare const Envelope: {
|
|
|
20510
20531
|
}[]>]: never; }) | undefined;
|
|
20511
20532
|
cursor?: string | undefined;
|
|
20512
20533
|
clan_id?: string | undefined;
|
|
20513
|
-
} & { [
|
|
20534
|
+
} & { [K_735 in Exclude<keyof I_1["list_data_socket"]["clan_user_list"], keyof ClanUserList>]: never; }) | undefined;
|
|
20514
20535
|
list_event_req?: ({
|
|
20515
20536
|
clan_id?: string | undefined;
|
|
20516
20537
|
} & {
|
|
20517
20538
|
clan_id?: string | undefined;
|
|
20518
|
-
} & { [
|
|
20539
|
+
} & { [K_736 in Exclude<keyof I_1["list_data_socket"]["list_event_req"], "clan_id">]: never; }) | undefined;
|
|
20519
20540
|
event_list?: ({
|
|
20520
20541
|
events?: {
|
|
20521
20542
|
id?: string | undefined;
|
|
@@ -20613,7 +20634,7 @@ export declare const Envelope: {
|
|
|
20613
20634
|
address?: string | undefined;
|
|
20614
20635
|
start_time?: Date | undefined;
|
|
20615
20636
|
end_time?: Date | undefined;
|
|
20616
|
-
user_ids?: (string[] & string[] & { [
|
|
20637
|
+
user_ids?: (string[] & string[] & { [K_737 in Exclude<keyof I_1["list_data_socket"]["event_list"]["events"][number]["user_ids"], keyof string[]>]: never; }) | undefined;
|
|
20617
20638
|
create_time?: Date | undefined;
|
|
20618
20639
|
max_permission?: number | undefined;
|
|
20619
20640
|
channel_id?: string | undefined;
|
|
@@ -20632,8 +20653,8 @@ export declare const Envelope: {
|
|
|
20632
20653
|
external_link?: string | undefined;
|
|
20633
20654
|
creator_id?: string | undefined;
|
|
20634
20655
|
event_id?: string | undefined;
|
|
20635
|
-
} & { [
|
|
20636
|
-
} & { [
|
|
20656
|
+
} & { [K_738 in Exclude<keyof I_1["list_data_socket"]["event_list"]["events"][number]["meet_room"], keyof import("../api/api").GenerateMezonMeetResponse>]: never; }) | undefined;
|
|
20657
|
+
} & { [K_739 in Exclude<keyof I_1["list_data_socket"]["event_list"]["events"][number], keyof import("../api/api").EventManagement>]: never; })[] & { [K_740 in Exclude<keyof I_1["list_data_socket"]["event_list"]["events"], keyof {
|
|
20637
20658
|
id?: string | undefined;
|
|
20638
20659
|
title?: string | undefined;
|
|
20639
20660
|
logo?: string | undefined;
|
|
@@ -20661,7 +20682,7 @@ export declare const Envelope: {
|
|
|
20661
20682
|
event_id?: string | undefined;
|
|
20662
20683
|
} | undefined;
|
|
20663
20684
|
}[]>]: never; }) | undefined;
|
|
20664
|
-
} & { [
|
|
20685
|
+
} & { [K_741 in Exclude<keyof I_1["list_data_socket"]["event_list"], "events">]: never; }) | undefined;
|
|
20665
20686
|
list_category_req?: ({
|
|
20666
20687
|
creator_id?: string | undefined;
|
|
20667
20688
|
clan_id?: string | undefined;
|
|
@@ -20674,7 +20695,7 @@ export declare const Envelope: {
|
|
|
20674
20695
|
category_name?: string | undefined;
|
|
20675
20696
|
category_id?: string | undefined;
|
|
20676
20697
|
category_order?: number | undefined;
|
|
20677
|
-
} & { [
|
|
20698
|
+
} & { [K_742 in Exclude<keyof I_1["list_data_socket"]["list_category_req"], keyof CategoryDesc>]: never; }) | undefined;
|
|
20678
20699
|
category_list?: ({
|
|
20679
20700
|
categorydesc?: {
|
|
20680
20701
|
creator_id?: string | undefined;
|
|
@@ -20702,14 +20723,14 @@ export declare const Envelope: {
|
|
|
20702
20723
|
category_name?: string | undefined;
|
|
20703
20724
|
category_id?: string | undefined;
|
|
20704
20725
|
category_order?: number | undefined;
|
|
20705
|
-
} & { [
|
|
20726
|
+
} & { [K_743 in Exclude<keyof I_1["list_data_socket"]["category_list"]["categorydesc"][number], keyof CategoryDesc>]: never; })[] & { [K_744 in Exclude<keyof I_1["list_data_socket"]["category_list"]["categorydesc"], keyof {
|
|
20706
20727
|
creator_id?: string | undefined;
|
|
20707
20728
|
clan_id?: string | undefined;
|
|
20708
20729
|
category_name?: string | undefined;
|
|
20709
20730
|
category_id?: string | undefined;
|
|
20710
20731
|
category_order?: number | undefined;
|
|
20711
20732
|
}[]>]: never; }) | undefined;
|
|
20712
|
-
} & { [
|
|
20733
|
+
} & { [K_745 in Exclude<keyof I_1["list_data_socket"]["category_list"], "categorydesc">]: never; }) | undefined;
|
|
20713
20734
|
stream_user_list?: ({
|
|
20714
20735
|
streaming_channel_users?: {
|
|
20715
20736
|
id?: string | undefined;
|
|
@@ -20733,24 +20754,24 @@ export declare const Envelope: {
|
|
|
20733
20754
|
user_id?: string | undefined;
|
|
20734
20755
|
channel_id?: string | undefined;
|
|
20735
20756
|
participant?: string | undefined;
|
|
20736
|
-
} & { [
|
|
20757
|
+
} & { [K_746 in Exclude<keyof I_1["list_data_socket"]["stream_user_list"]["streaming_channel_users"][number], keyof import("../api/api").StreamingChannelUser>]: never; })[] & { [K_747 in Exclude<keyof I_1["list_data_socket"]["stream_user_list"]["streaming_channel_users"], keyof {
|
|
20737
20758
|
id?: string | undefined;
|
|
20738
20759
|
user_id?: string | undefined;
|
|
20739
20760
|
channel_id?: string | undefined;
|
|
20740
20761
|
participant?: string | undefined;
|
|
20741
20762
|
}[]>]: never; }) | undefined;
|
|
20742
|
-
} & { [
|
|
20763
|
+
} & { [K_748 in Exclude<keyof I_1["list_data_socket"]["stream_user_list"], "streaming_channel_users">]: never; }) | undefined;
|
|
20743
20764
|
list_unread_msg_indicator_req?: ({
|
|
20744
20765
|
clan_id?: string | undefined;
|
|
20745
20766
|
} & {
|
|
20746
20767
|
clan_id?: string | undefined;
|
|
20747
|
-
} & { [
|
|
20768
|
+
} & { [K_749 in Exclude<keyof I_1["list_data_socket"]["list_unread_msg_indicator_req"], "clan_id">]: never; }) | undefined;
|
|
20748
20769
|
unread_msg_indicator?: ({
|
|
20749
20770
|
has_unread_message?: boolean | undefined;
|
|
20750
20771
|
} & {
|
|
20751
20772
|
has_unread_message?: boolean | undefined;
|
|
20752
|
-
} & { [
|
|
20753
|
-
} & { [
|
|
20773
|
+
} & { [K_750 in Exclude<keyof I_1["list_data_socket"]["unread_msg_indicator"], "has_unread_message">]: never; }) | undefined;
|
|
20774
|
+
} & { [K_751 in Exclude<keyof I_1["list_data_socket"], keyof ListDataSocket>]: never; }) | undefined;
|
|
20754
20775
|
quick_menu_event?: ({
|
|
20755
20776
|
menu_name?: string | undefined;
|
|
20756
20777
|
message?: {
|
|
@@ -20875,7 +20896,7 @@ export declare const Envelope: {
|
|
|
20875
20896
|
create_time?: Date | undefined;
|
|
20876
20897
|
s?: number | undefined;
|
|
20877
20898
|
e?: number | undefined;
|
|
20878
|
-
} & { [
|
|
20899
|
+
} & { [K_752 in Exclude<keyof I_1["quick_menu_event"]["message"]["mentions"][number], keyof MessageMention>]: never; })[] & { [K_753 in Exclude<keyof I_1["quick_menu_event"]["message"]["mentions"], keyof {
|
|
20879
20900
|
id?: string | undefined;
|
|
20880
20901
|
user_id?: string | undefined;
|
|
20881
20902
|
username?: string | undefined;
|
|
@@ -20912,7 +20933,7 @@ export declare const Envelope: {
|
|
|
20912
20933
|
height?: number | undefined;
|
|
20913
20934
|
thumbnail?: string | undefined;
|
|
20914
20935
|
duration?: number | undefined;
|
|
20915
|
-
} & { [
|
|
20936
|
+
} & { [K_754 in Exclude<keyof I_1["quick_menu_event"]["message"]["attachments"][number], keyof MessageAttachment>]: never; })[] & { [K_755 in Exclude<keyof I_1["quick_menu_event"]["message"]["attachments"], keyof {
|
|
20916
20937
|
filename?: string | undefined;
|
|
20917
20938
|
size?: number | undefined;
|
|
20918
20939
|
url?: string | undefined;
|
|
@@ -20955,7 +20976,7 @@ export declare const Envelope: {
|
|
|
20955
20976
|
mesages_sender_avatar?: string | undefined;
|
|
20956
20977
|
message_sender_clan_nick?: string | undefined;
|
|
20957
20978
|
message_sender_display_name?: string | undefined;
|
|
20958
|
-
} & { [
|
|
20979
|
+
} & { [K_756 in Exclude<keyof I_1["quick_menu_event"]["message"]["references"][number], keyof MessageRef>]: never; })[] & { [K_757 in Exclude<keyof I_1["quick_menu_event"]["message"]["references"], keyof {
|
|
20959
20980
|
message_id?: string | undefined;
|
|
20960
20981
|
message_ref_id?: string | undefined;
|
|
20961
20982
|
content?: string | undefined;
|
|
@@ -20975,8 +20996,8 @@ export declare const Envelope: {
|
|
|
20975
20996
|
code?: number | undefined;
|
|
20976
20997
|
topic_id?: string | undefined;
|
|
20977
20998
|
id?: string | undefined;
|
|
20978
|
-
} & { [
|
|
20979
|
-
} & { [
|
|
20999
|
+
} & { [K_758 in Exclude<keyof I_1["quick_menu_event"]["message"], keyof ChannelMessageSend>]: never; }) | undefined;
|
|
21000
|
+
} & { [K_759 in Exclude<keyof I_1["quick_menu_event"], keyof QuickMenuDataEvent>]: never; }) | undefined;
|
|
20980
21001
|
un_block_friend?: ({
|
|
20981
21002
|
user_id?: string | undefined;
|
|
20982
21003
|
username?: string | undefined;
|
|
@@ -20991,7 +21012,7 @@ export declare const Envelope: {
|
|
|
20991
21012
|
display_name?: string | undefined;
|
|
20992
21013
|
status?: string | undefined;
|
|
20993
21014
|
user_status?: string | undefined;
|
|
20994
|
-
} & { [
|
|
21015
|
+
} & { [K_760 in Exclude<keyof I_1["un_block_friend"], keyof UnblockFriend>]: never; }) | undefined;
|
|
20995
21016
|
meet_participant_event?: ({
|
|
20996
21017
|
username?: string | undefined;
|
|
20997
21018
|
room_name?: string | undefined;
|
|
@@ -21004,7 +21025,7 @@ export declare const Envelope: {
|
|
|
21004
21025
|
channel_id?: string | undefined;
|
|
21005
21026
|
clan_id?: string | undefined;
|
|
21006
21027
|
action?: number | undefined;
|
|
21007
|
-
} & { [
|
|
21028
|
+
} & { [K_761 in Exclude<keyof I_1["meet_participant_event"], keyof MeetParticipantEvent>]: never; }) | undefined;
|
|
21008
21029
|
transfer_ownership_event?: ({
|
|
21009
21030
|
clan_id?: string | undefined;
|
|
21010
21031
|
prev_owner?: string | undefined;
|
|
@@ -21013,7 +21034,7 @@ export declare const Envelope: {
|
|
|
21013
21034
|
clan_id?: string | undefined;
|
|
21014
21035
|
prev_owner?: string | undefined;
|
|
21015
21036
|
curr_owner?: string | undefined;
|
|
21016
|
-
} & { [
|
|
21037
|
+
} & { [K_762 in Exclude<keyof I_1["transfer_ownership_event"], keyof TransferOwnershipEvent>]: never; }) | undefined;
|
|
21017
21038
|
add_friend?: ({
|
|
21018
21039
|
user_id?: string | undefined;
|
|
21019
21040
|
username?: string | undefined;
|
|
@@ -21024,7 +21045,7 @@ export declare const Envelope: {
|
|
|
21024
21045
|
username?: string | undefined;
|
|
21025
21046
|
display_name?: string | undefined;
|
|
21026
21047
|
avatar?: string | undefined;
|
|
21027
|
-
} & { [
|
|
21048
|
+
} & { [K_763 in Exclude<keyof I_1["add_friend"], keyof AddFriend>]: never; }) | undefined;
|
|
21028
21049
|
ban_user_event?: ({
|
|
21029
21050
|
user_ids?: string[] | undefined;
|
|
21030
21051
|
action?: number | undefined;
|
|
@@ -21033,28 +21054,55 @@ export declare const Envelope: {
|
|
|
21033
21054
|
clan_id?: string | undefined;
|
|
21034
21055
|
ban_time?: number | undefined;
|
|
21035
21056
|
} & {
|
|
21036
|
-
user_ids?: (string[] & string[] & { [
|
|
21057
|
+
user_ids?: (string[] & string[] & { [K_764 in Exclude<keyof I_1["ban_user_event"]["user_ids"], keyof string[]>]: never; }) | undefined;
|
|
21037
21058
|
action?: number | undefined;
|
|
21038
21059
|
banner_id?: string | undefined;
|
|
21039
21060
|
channel_id?: string | undefined;
|
|
21040
21061
|
clan_id?: string | undefined;
|
|
21041
21062
|
ban_time?: number | undefined;
|
|
21042
|
-
} & { [
|
|
21063
|
+
} & { [K_765 in Exclude<keyof I_1["ban_user_event"], keyof BannedUserEvent>]: never; }) | undefined;
|
|
21043
21064
|
active_archived_thread?: ({
|
|
21044
21065
|
clan_id?: string | undefined;
|
|
21045
21066
|
channel_id?: string | undefined;
|
|
21046
21067
|
} & {
|
|
21047
21068
|
clan_id?: string | undefined;
|
|
21048
21069
|
channel_id?: string | undefined;
|
|
21049
|
-
} & { [
|
|
21070
|
+
} & { [K_766 in Exclude<keyof I_1["active_archived_thread"], keyof ActiveArchivedThread>]: never; }) | undefined;
|
|
21050
21071
|
allow_anonymous_event?: ({
|
|
21051
21072
|
clan_id?: string | undefined;
|
|
21052
21073
|
allow?: boolean | undefined;
|
|
21053
21074
|
} & {
|
|
21054
21075
|
clan_id?: string | undefined;
|
|
21055
21076
|
allow?: boolean | undefined;
|
|
21056
|
-
} & { [
|
|
21057
|
-
|
|
21077
|
+
} & { [K_767 in Exclude<keyof I_1["allow_anonymous_event"], keyof AllowAnonymousEvent>]: never; }) | undefined;
|
|
21078
|
+
update_localcache_event?: ({
|
|
21079
|
+
user_ids?: string[] | undefined;
|
|
21080
|
+
channel_ids?: string[] | undefined;
|
|
21081
|
+
} & {
|
|
21082
|
+
user_ids?: (string[] & string[] & { [K_768 in Exclude<keyof I_1["update_localcache_event"]["user_ids"], keyof string[]>]: never; }) | undefined;
|
|
21083
|
+
channel_ids?: (string[] & string[] & { [K_769 in Exclude<keyof I_1["update_localcache_event"]["channel_ids"], keyof string[]>]: never; }) | undefined;
|
|
21084
|
+
} & { [K_770 in Exclude<keyof I_1["update_localcache_event"], keyof UpdateLocalCacheEvent>]: never; }) | undefined;
|
|
21085
|
+
} & { [K_771 in Exclude<keyof I_1, keyof Envelope>]: never; }>(object: I_1): Envelope;
|
|
21086
|
+
};
|
|
21087
|
+
export declare const UpdateLocalCacheEvent: {
|
|
21088
|
+
encode(message: UpdateLocalCacheEvent, writer?: _m0.Writer): _m0.Writer;
|
|
21089
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): UpdateLocalCacheEvent;
|
|
21090
|
+
fromJSON(object: any): UpdateLocalCacheEvent;
|
|
21091
|
+
toJSON(message: UpdateLocalCacheEvent): unknown;
|
|
21092
|
+
create<I extends {
|
|
21093
|
+
user_ids?: string[] | undefined;
|
|
21094
|
+
channel_ids?: string[] | undefined;
|
|
21095
|
+
} & {
|
|
21096
|
+
user_ids?: (string[] & string[] & { [K in Exclude<keyof I["user_ids"], keyof string[]>]: never; }) | undefined;
|
|
21097
|
+
channel_ids?: (string[] & string[] & { [K_1 in Exclude<keyof I["channel_ids"], keyof string[]>]: never; }) | undefined;
|
|
21098
|
+
} & { [K_2 in Exclude<keyof I, keyof UpdateLocalCacheEvent>]: never; }>(base?: I | undefined): UpdateLocalCacheEvent;
|
|
21099
|
+
fromPartial<I_1 extends {
|
|
21100
|
+
user_ids?: string[] | undefined;
|
|
21101
|
+
channel_ids?: string[] | undefined;
|
|
21102
|
+
} & {
|
|
21103
|
+
user_ids?: (string[] & string[] & { [K_3 in Exclude<keyof I_1["user_ids"], keyof string[]>]: never; }) | undefined;
|
|
21104
|
+
channel_ids?: (string[] & string[] & { [K_4 in Exclude<keyof I_1["channel_ids"], keyof string[]>]: never; }) | undefined;
|
|
21105
|
+
} & { [K_5 in Exclude<keyof I_1, keyof UpdateLocalCacheEvent>]: never; }>(object: I_1): UpdateLocalCacheEvent;
|
|
21058
21106
|
};
|
|
21059
21107
|
export declare const FollowEvent: {
|
|
21060
21108
|
encode(_: FollowEvent, writer?: _m0.Writer): _m0.Writer;
|