mezon-js-protobuf 1.8.23 → 1.8.25
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 +220 -51
- package/dist/mezon-js-protobuf/api/api.d.ts +125 -51
- package/dist/mezon-js-protobuf/rtapi/realtime.d.ts +693 -593
- package/dist/mezon-js-protobuf.cjs.js +100 -9
- package/dist/mezon-js-protobuf.esm.mjs +100 -9
- package/package.json +1 -1
- package/rtapi/realtime.ts +72 -0
|
@@ -453,6 +453,10 @@ export interface ChannelMessageRemove {
|
|
|
453
453
|
has_attachment: boolean;
|
|
454
454
|
/** */
|
|
455
455
|
topic_id: string;
|
|
456
|
+
/** Message mention */
|
|
457
|
+
mentions: string;
|
|
458
|
+
/** Message reference */
|
|
459
|
+
references: string;
|
|
456
460
|
}
|
|
457
461
|
/** A set of joins and leaves on a particular channel. */
|
|
458
462
|
export interface ChannelPresenceEvent {
|
|
@@ -831,6 +835,10 @@ export interface ChannelUpdatedEvent {
|
|
|
831
835
|
active: number;
|
|
832
836
|
/** count message unread */
|
|
833
837
|
count_mess_unread: number;
|
|
838
|
+
/** The users to add. */
|
|
839
|
+
user_ids: string[];
|
|
840
|
+
/** This is the role that needs to be added to the channel */
|
|
841
|
+
role_ids: string[];
|
|
834
842
|
}
|
|
835
843
|
/** Stop receiving status updates for some set of users. */
|
|
836
844
|
export interface StatusUnfollow {
|
|
@@ -1389,6 +1397,8 @@ export declare const Envelope: {
|
|
|
1389
1397
|
is_public?: boolean | undefined;
|
|
1390
1398
|
has_attachment?: boolean | undefined;
|
|
1391
1399
|
topic_id?: string | undefined;
|
|
1400
|
+
mentions?: string | undefined;
|
|
1401
|
+
references?: string | undefined;
|
|
1392
1402
|
} | undefined;
|
|
1393
1403
|
channel_presence_event?: {
|
|
1394
1404
|
channel_id?: string | undefined;
|
|
@@ -1683,6 +1693,8 @@ export declare const Envelope: {
|
|
|
1683
1693
|
age_restricted?: number | undefined;
|
|
1684
1694
|
active?: number | undefined;
|
|
1685
1695
|
count_mess_unread?: number | undefined;
|
|
1696
|
+
user_ids?: string[] | undefined;
|
|
1697
|
+
role_ids?: string[] | undefined;
|
|
1686
1698
|
} | undefined;
|
|
1687
1699
|
last_pin_message_event?: {
|
|
1688
1700
|
clan_id?: string | undefined;
|
|
@@ -2316,6 +2328,8 @@ export declare const Envelope: {
|
|
|
2316
2328
|
welcome_channel_id?: string | undefined;
|
|
2317
2329
|
onboarding_banner?: string | undefined;
|
|
2318
2330
|
clan_order?: number | undefined;
|
|
2331
|
+
is_community?: boolean | undefined;
|
|
2332
|
+
community_banner?: string | undefined;
|
|
2319
2333
|
}[] | undefined;
|
|
2320
2334
|
} | undefined;
|
|
2321
2335
|
list_thread_req?: {
|
|
@@ -3672,6 +3686,8 @@ export declare const Envelope: {
|
|
|
3672
3686
|
is_public?: boolean | undefined;
|
|
3673
3687
|
has_attachment?: boolean | undefined;
|
|
3674
3688
|
topic_id?: string | undefined;
|
|
3689
|
+
mentions?: string | undefined;
|
|
3690
|
+
references?: string | undefined;
|
|
3675
3691
|
} & {
|
|
3676
3692
|
clan_id?: string | undefined;
|
|
3677
3693
|
channel_id?: string | undefined;
|
|
@@ -3680,6 +3696,8 @@ export declare const Envelope: {
|
|
|
3680
3696
|
is_public?: boolean | undefined;
|
|
3681
3697
|
has_attachment?: boolean | undefined;
|
|
3682
3698
|
topic_id?: string | undefined;
|
|
3699
|
+
mentions?: string | undefined;
|
|
3700
|
+
references?: string | undefined;
|
|
3683
3701
|
} & { [K_21 in Exclude<keyof I["channel_message_remove"], keyof ChannelMessageRemove>]: never; }) | undefined;
|
|
3684
3702
|
channel_presence_event?: ({
|
|
3685
3703
|
channel_id?: string | undefined;
|
|
@@ -4688,6 +4706,8 @@ export declare const Envelope: {
|
|
|
4688
4706
|
age_restricted?: number | undefined;
|
|
4689
4707
|
active?: number | undefined;
|
|
4690
4708
|
count_mess_unread?: number | undefined;
|
|
4709
|
+
user_ids?: string[] | undefined;
|
|
4710
|
+
role_ids?: string[] | undefined;
|
|
4691
4711
|
} & {
|
|
4692
4712
|
clan_id?: string | undefined;
|
|
4693
4713
|
category_id?: string | undefined;
|
|
@@ -4706,7 +4726,9 @@ export declare const Envelope: {
|
|
|
4706
4726
|
age_restricted?: number | undefined;
|
|
4707
4727
|
active?: number | undefined;
|
|
4708
4728
|
count_mess_unread?: number | undefined;
|
|
4709
|
-
|
|
4729
|
+
user_ids?: (string[] & string[] & { [K_79 in Exclude<keyof I["channel_updated_event"]["user_ids"], keyof string[]>]: never; }) | undefined;
|
|
4730
|
+
role_ids?: (string[] & string[] & { [K_80 in Exclude<keyof I["channel_updated_event"]["role_ids"], keyof string[]>]: never; }) | undefined;
|
|
4731
|
+
} & { [K_81 in Exclude<keyof I["channel_updated_event"], keyof ChannelUpdatedEvent>]: never; }) | undefined;
|
|
4710
4732
|
last_pin_message_event?: ({
|
|
4711
4733
|
clan_id?: string | undefined;
|
|
4712
4734
|
channel_id?: string | undefined;
|
|
@@ -4737,7 +4759,7 @@ export declare const Envelope: {
|
|
|
4737
4759
|
message_content?: string | undefined;
|
|
4738
4760
|
message_attachment?: string | undefined;
|
|
4739
4761
|
message_created_time?: string | undefined;
|
|
4740
|
-
} & { [
|
|
4762
|
+
} & { [K_82 in Exclude<keyof I["last_pin_message_event"], keyof LastPinMessageEvent>]: never; }) | undefined;
|
|
4741
4763
|
custom_status_event?: ({
|
|
4742
4764
|
clan_id?: string | undefined;
|
|
4743
4765
|
user_id?: string | undefined;
|
|
@@ -4752,7 +4774,7 @@ export declare const Envelope: {
|
|
|
4752
4774
|
status?: string | undefined;
|
|
4753
4775
|
time_reset?: number | undefined;
|
|
4754
4776
|
no_clear?: boolean | undefined;
|
|
4755
|
-
} & { [
|
|
4777
|
+
} & { [K_83 in Exclude<keyof I["custom_status_event"], keyof CustomStatusEvent>]: never; }) | undefined;
|
|
4756
4778
|
user_channel_added_event?: ({
|
|
4757
4779
|
channel_desc?: {
|
|
4758
4780
|
clan_id?: string | undefined;
|
|
@@ -4922,8 +4944,8 @@ export declare const Envelope: {
|
|
|
4922
4944
|
creator_id?: string | undefined;
|
|
4923
4945
|
channel_label?: string | undefined;
|
|
4924
4946
|
channel_private?: number | undefined;
|
|
4925
|
-
channel_avatar?: (string[] & string[] & { [
|
|
4926
|
-
user_id?: (string[] & string[] & { [
|
|
4947
|
+
channel_avatar?: (string[] & string[] & { [K_84 in Exclude<keyof I["user_channel_added_event"]["channel_desc"]["channel_avatar"], keyof string[]>]: never; }) | undefined;
|
|
4948
|
+
user_id?: (string[] & string[] & { [K_85 in Exclude<keyof I["user_channel_added_event"]["channel_desc"]["user_id"], keyof string[]>]: never; }) | undefined;
|
|
4927
4949
|
last_sent_message?: ({
|
|
4928
4950
|
id?: string | undefined;
|
|
4929
4951
|
timestamp_seconds?: number | undefined;
|
|
@@ -4943,8 +4965,8 @@ export declare const Envelope: {
|
|
|
4943
4965
|
reference?: string | undefined;
|
|
4944
4966
|
mention?: string | undefined;
|
|
4945
4967
|
reaction?: string | undefined;
|
|
4946
|
-
repliers?: (string[] & string[] & { [
|
|
4947
|
-
} & { [
|
|
4968
|
+
repliers?: (string[] & string[] & { [K_86 in Exclude<keyof I["user_channel_added_event"]["channel_desc"]["last_sent_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
4969
|
+
} & { [K_87 in Exclude<keyof I["user_channel_added_event"]["channel_desc"]["last_sent_message"], keyof ChannelMessageHeader>]: never; }) | undefined;
|
|
4948
4970
|
last_seen_message?: ({
|
|
4949
4971
|
id?: string | undefined;
|
|
4950
4972
|
timestamp_seconds?: number | undefined;
|
|
@@ -4964,27 +4986,27 @@ export declare const Envelope: {
|
|
|
4964
4986
|
reference?: string | undefined;
|
|
4965
4987
|
mention?: string | undefined;
|
|
4966
4988
|
reaction?: string | undefined;
|
|
4967
|
-
repliers?: (string[] & string[] & { [
|
|
4968
|
-
} & { [
|
|
4969
|
-
is_online?: (boolean[] & boolean[] & { [
|
|
4989
|
+
repliers?: (string[] & string[] & { [K_88 in Exclude<keyof I["user_channel_added_event"]["channel_desc"]["last_seen_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
4990
|
+
} & { [K_89 in Exclude<keyof I["user_channel_added_event"]["channel_desc"]["last_seen_message"], keyof ChannelMessageHeader>]: never; }) | undefined;
|
|
4991
|
+
is_online?: (boolean[] & boolean[] & { [K_90 in Exclude<keyof I["user_channel_added_event"]["channel_desc"]["is_online"], keyof boolean[]>]: never; }) | undefined;
|
|
4970
4992
|
meeting_code?: string | undefined;
|
|
4971
4993
|
count_mess_unread?: number | undefined;
|
|
4972
4994
|
active?: number | undefined;
|
|
4973
4995
|
last_pin_message?: string | undefined;
|
|
4974
|
-
usernames?: (string[] & string[] & { [
|
|
4996
|
+
usernames?: (string[] & string[] & { [K_91 in Exclude<keyof I["user_channel_added_event"]["channel_desc"]["usernames"], keyof string[]>]: never; }) | undefined;
|
|
4975
4997
|
creator_name?: string | undefined;
|
|
4976
4998
|
create_time_seconds?: number | undefined;
|
|
4977
4999
|
update_time_seconds?: number | undefined;
|
|
4978
|
-
metadata?: (string[] & string[] & { [
|
|
4979
|
-
about_me?: (string[] & string[] & { [
|
|
5000
|
+
metadata?: (string[] & string[] & { [K_92 in Exclude<keyof I["user_channel_added_event"]["channel_desc"]["metadata"], keyof string[]>]: never; }) | undefined;
|
|
5001
|
+
about_me?: (string[] & string[] & { [K_93 in Exclude<keyof I["user_channel_added_event"]["channel_desc"]["about_me"], keyof string[]>]: never; }) | undefined;
|
|
4980
5002
|
clan_name?: string | undefined;
|
|
4981
5003
|
app_id?: string | undefined;
|
|
4982
5004
|
is_mute?: boolean | undefined;
|
|
4983
5005
|
age_restricted?: number | undefined;
|
|
4984
5006
|
topic?: string | undefined;
|
|
4985
5007
|
e2ee?: number | undefined;
|
|
4986
|
-
display_names?: (string[] & string[] & { [
|
|
4987
|
-
} & { [
|
|
5008
|
+
display_names?: (string[] & string[] & { [K_94 in Exclude<keyof I["user_channel_added_event"]["channel_desc"]["display_names"], keyof string[]>]: never; }) | undefined;
|
|
5009
|
+
} & { [K_95 in Exclude<keyof I["user_channel_added_event"]["channel_desc"], keyof ChannelDescription1>]: never; }) | undefined;
|
|
4988
5010
|
users?: ({
|
|
4989
5011
|
user_id?: string | undefined;
|
|
4990
5012
|
username?: string | undefined;
|
|
@@ -5051,7 +5073,7 @@ export declare const Envelope: {
|
|
|
5051
5073
|
device_id?: string | undefined;
|
|
5052
5074
|
token_id?: string | undefined;
|
|
5053
5075
|
platform?: string | undefined;
|
|
5054
|
-
} & { [
|
|
5076
|
+
} & { [K_96 in Exclude<keyof I["user_channel_added_event"]["users"][number]["fcm_tokens"][number], keyof FCMTokens>]: never; })[] & { [K_97 in Exclude<keyof I["user_channel_added_event"]["users"][number]["fcm_tokens"], keyof {
|
|
5055
5077
|
device_id?: string | undefined;
|
|
5056
5078
|
token_id?: string | undefined;
|
|
5057
5079
|
platform?: string | undefined;
|
|
@@ -5059,14 +5081,14 @@ export declare const Envelope: {
|
|
|
5059
5081
|
online?: boolean | undefined;
|
|
5060
5082
|
metadata?: string | undefined;
|
|
5061
5083
|
is_disabled?: boolean | undefined;
|
|
5062
|
-
joined_clans?: (string[] & string[] & { [
|
|
5084
|
+
joined_clans?: (string[] & string[] & { [K_98 in Exclude<keyof I["user_channel_added_event"]["users"][number]["joined_clans"], keyof string[]>]: never; }) | undefined;
|
|
5063
5085
|
pubkey?: string | undefined;
|
|
5064
5086
|
mezon_id?: string | undefined;
|
|
5065
5087
|
app_token?: string | undefined;
|
|
5066
5088
|
app_url?: string | undefined;
|
|
5067
5089
|
is_bot?: boolean | undefined;
|
|
5068
5090
|
voip_token?: string | undefined;
|
|
5069
|
-
} & { [
|
|
5091
|
+
} & { [K_99 in Exclude<keyof I["user_channel_added_event"]["users"][number], keyof UserProfileRedis>]: never; })[] & { [K_100 in Exclude<keyof I["user_channel_added_event"]["users"], keyof {
|
|
5070
5092
|
user_id?: string | undefined;
|
|
5071
5093
|
username?: string | undefined;
|
|
5072
5094
|
avatar?: string | undefined;
|
|
@@ -5135,7 +5157,7 @@ export declare const Envelope: {
|
|
|
5135
5157
|
device_id?: string | undefined;
|
|
5136
5158
|
token_id?: string | undefined;
|
|
5137
5159
|
platform?: string | undefined;
|
|
5138
|
-
} & { [
|
|
5160
|
+
} & { [K_101 in Exclude<keyof I["user_channel_added_event"]["caller"]["fcm_tokens"][number], keyof FCMTokens>]: never; })[] & { [K_102 in Exclude<keyof I["user_channel_added_event"]["caller"]["fcm_tokens"], keyof {
|
|
5139
5161
|
device_id?: string | undefined;
|
|
5140
5162
|
token_id?: string | undefined;
|
|
5141
5163
|
platform?: string | undefined;
|
|
@@ -5143,17 +5165,17 @@ export declare const Envelope: {
|
|
|
5143
5165
|
online?: boolean | undefined;
|
|
5144
5166
|
metadata?: string | undefined;
|
|
5145
5167
|
is_disabled?: boolean | undefined;
|
|
5146
|
-
joined_clans?: (string[] & string[] & { [
|
|
5168
|
+
joined_clans?: (string[] & string[] & { [K_103 in Exclude<keyof I["user_channel_added_event"]["caller"]["joined_clans"], keyof string[]>]: never; }) | undefined;
|
|
5147
5169
|
pubkey?: string | undefined;
|
|
5148
5170
|
mezon_id?: string | undefined;
|
|
5149
5171
|
app_token?: string | undefined;
|
|
5150
5172
|
app_url?: string | undefined;
|
|
5151
5173
|
is_bot?: boolean | undefined;
|
|
5152
5174
|
voip_token?: string | undefined;
|
|
5153
|
-
} & { [
|
|
5175
|
+
} & { [K_104 in Exclude<keyof I["user_channel_added_event"]["caller"], keyof UserProfileRedis>]: never; }) | undefined;
|
|
5154
5176
|
create_time_second?: number | undefined;
|
|
5155
5177
|
active?: number | undefined;
|
|
5156
|
-
} & { [
|
|
5178
|
+
} & { [K_105 in Exclude<keyof I["user_channel_added_event"], keyof UserChannelAdded>]: never; }) | undefined;
|
|
5157
5179
|
user_channel_removed_event?: ({
|
|
5158
5180
|
channel_id?: string | undefined;
|
|
5159
5181
|
user_ids?: string[] | undefined;
|
|
@@ -5162,18 +5184,18 @@ export declare const Envelope: {
|
|
|
5162
5184
|
badge_counts?: number[] | undefined;
|
|
5163
5185
|
} & {
|
|
5164
5186
|
channel_id?: string | undefined;
|
|
5165
|
-
user_ids?: (string[] & string[] & { [
|
|
5187
|
+
user_ids?: (string[] & string[] & { [K_106 in Exclude<keyof I["user_channel_removed_event"]["user_ids"], keyof string[]>]: never; }) | undefined;
|
|
5166
5188
|
channel_type?: number | undefined;
|
|
5167
5189
|
clan_id?: string | undefined;
|
|
5168
|
-
badge_counts?: (number[] & number[] & { [
|
|
5169
|
-
} & { [
|
|
5190
|
+
badge_counts?: (number[] & number[] & { [K_107 in Exclude<keyof I["user_channel_removed_event"]["badge_counts"], keyof number[]>]: never; }) | undefined;
|
|
5191
|
+
} & { [K_108 in Exclude<keyof I["user_channel_removed_event"], keyof UserChannelRemoved>]: never; }) | undefined;
|
|
5170
5192
|
user_clan_removed_event?: ({
|
|
5171
5193
|
clan_id?: string | undefined;
|
|
5172
5194
|
user_ids?: string[] | undefined;
|
|
5173
5195
|
} & {
|
|
5174
5196
|
clan_id?: string | undefined;
|
|
5175
|
-
user_ids?: (string[] & string[] & { [
|
|
5176
|
-
} & { [
|
|
5197
|
+
user_ids?: (string[] & string[] & { [K_109 in Exclude<keyof I["user_clan_removed_event"]["user_ids"], keyof string[]>]: never; }) | undefined;
|
|
5198
|
+
} & { [K_110 in Exclude<keyof I["user_clan_removed_event"], keyof UserClanRemoved>]: never; }) | undefined;
|
|
5177
5199
|
clan_updated_event?: ({
|
|
5178
5200
|
clan_id?: string | undefined;
|
|
5179
5201
|
clan_name?: string | undefined;
|
|
@@ -5192,7 +5214,7 @@ export declare const Envelope: {
|
|
|
5192
5214
|
is_onboarding?: boolean | undefined;
|
|
5193
5215
|
welcome_channel_id?: string | undefined;
|
|
5194
5216
|
onboarding_banner?: string | undefined;
|
|
5195
|
-
} & { [
|
|
5217
|
+
} & { [K_111 in Exclude<keyof I["clan_updated_event"], keyof ClanUpdatedEvent>]: never; }) | undefined;
|
|
5196
5218
|
clan_profile_updated_event?: ({
|
|
5197
5219
|
user_id?: string | undefined;
|
|
5198
5220
|
clan_nick?: string | undefined;
|
|
@@ -5203,7 +5225,7 @@ export declare const Envelope: {
|
|
|
5203
5225
|
clan_nick?: string | undefined;
|
|
5204
5226
|
clan_avatar?: string | undefined;
|
|
5205
5227
|
clan_id?: string | undefined;
|
|
5206
|
-
} & { [
|
|
5228
|
+
} & { [K_112 in Exclude<keyof I["clan_profile_updated_event"], keyof ClanProfileUpdatedEvent>]: never; }) | undefined;
|
|
5207
5229
|
check_name_existed_event?: ({
|
|
5208
5230
|
name?: string | undefined;
|
|
5209
5231
|
condition_id?: string | undefined;
|
|
@@ -5214,7 +5236,7 @@ export declare const Envelope: {
|
|
|
5214
5236
|
condition_id?: string | undefined;
|
|
5215
5237
|
exist?: boolean | undefined;
|
|
5216
5238
|
type?: number | undefined;
|
|
5217
|
-
} & { [
|
|
5239
|
+
} & { [K_113 in Exclude<keyof I["check_name_existed_event"], keyof CheckNameExistedEvent>]: never; }) | undefined;
|
|
5218
5240
|
user_profile_updated_event?: ({
|
|
5219
5241
|
user_id?: string | undefined;
|
|
5220
5242
|
display_name?: string | undefined;
|
|
@@ -5231,7 +5253,7 @@ export declare const Envelope: {
|
|
|
5231
5253
|
channel_id?: string | undefined;
|
|
5232
5254
|
clan_id?: string | undefined;
|
|
5233
5255
|
encrypt_private_key?: string | undefined;
|
|
5234
|
-
} & { [
|
|
5256
|
+
} & { [K_114 in Exclude<keyof I["user_profile_updated_event"], keyof UserProfileUpdatedEvent>]: never; }) | undefined;
|
|
5235
5257
|
add_clan_user_event?: ({
|
|
5236
5258
|
clan_id?: string | undefined;
|
|
5237
5259
|
user?: {
|
|
@@ -5304,7 +5326,7 @@ export declare const Envelope: {
|
|
|
5304
5326
|
device_id?: string | undefined;
|
|
5305
5327
|
token_id?: string | undefined;
|
|
5306
5328
|
platform?: string | undefined;
|
|
5307
|
-
} & { [
|
|
5329
|
+
} & { [K_115 in Exclude<keyof I["add_clan_user_event"]["user"]["fcm_tokens"][number], keyof FCMTokens>]: never; })[] & { [K_116 in Exclude<keyof I["add_clan_user_event"]["user"]["fcm_tokens"], keyof {
|
|
5308
5330
|
device_id?: string | undefined;
|
|
5309
5331
|
token_id?: string | undefined;
|
|
5310
5332
|
platform?: string | undefined;
|
|
@@ -5312,16 +5334,16 @@ export declare const Envelope: {
|
|
|
5312
5334
|
online?: boolean | undefined;
|
|
5313
5335
|
metadata?: string | undefined;
|
|
5314
5336
|
is_disabled?: boolean | undefined;
|
|
5315
|
-
joined_clans?: (string[] & string[] & { [
|
|
5337
|
+
joined_clans?: (string[] & string[] & { [K_117 in Exclude<keyof I["add_clan_user_event"]["user"]["joined_clans"], keyof string[]>]: never; }) | undefined;
|
|
5316
5338
|
pubkey?: string | undefined;
|
|
5317
5339
|
mezon_id?: string | undefined;
|
|
5318
5340
|
app_token?: string | undefined;
|
|
5319
5341
|
app_url?: string | undefined;
|
|
5320
5342
|
is_bot?: boolean | undefined;
|
|
5321
5343
|
voip_token?: string | undefined;
|
|
5322
|
-
} & { [
|
|
5344
|
+
} & { [K_118 in Exclude<keyof I["add_clan_user_event"]["user"], keyof UserProfileRedis>]: never; }) | undefined;
|
|
5323
5345
|
invitor?: string | undefined;
|
|
5324
|
-
} & { [
|
|
5346
|
+
} & { [K_119 in Exclude<keyof I["add_clan_user_event"], keyof AddClanUserEvent>]: never; }) | undefined;
|
|
5325
5347
|
clan_event_created?: ({
|
|
5326
5348
|
title?: string | undefined;
|
|
5327
5349
|
logo?: string | undefined;
|
|
@@ -5375,8 +5397,8 @@ export declare const Envelope: {
|
|
|
5375
5397
|
external_link?: string | undefined;
|
|
5376
5398
|
creator_id?: string | undefined;
|
|
5377
5399
|
event_id?: string | undefined;
|
|
5378
|
-
} & { [
|
|
5379
|
-
} & { [
|
|
5400
|
+
} & { [K_120 in Exclude<keyof I["clan_event_created"]["meet_room"], keyof import("../api/api").GenerateMezonMeetResponse>]: never; }) | undefined;
|
|
5401
|
+
} & { [K_121 in Exclude<keyof I["clan_event_created"], keyof CreateEventRequest>]: never; }) | undefined;
|
|
5380
5402
|
role_assign_event?: ({
|
|
5381
5403
|
ClanId?: string | undefined;
|
|
5382
5404
|
role_id?: string | undefined;
|
|
@@ -5385,16 +5407,16 @@ export declare const Envelope: {
|
|
|
5385
5407
|
} & {
|
|
5386
5408
|
ClanId?: string | undefined;
|
|
5387
5409
|
role_id?: string | undefined;
|
|
5388
|
-
user_ids_assigned?: (string[] & string[] & { [
|
|
5389
|
-
user_ids_removed?: (string[] & string[] & { [
|
|
5390
|
-
} & { [
|
|
5410
|
+
user_ids_assigned?: (string[] & string[] & { [K_122 in Exclude<keyof I["role_assign_event"]["user_ids_assigned"], keyof string[]>]: never; }) | undefined;
|
|
5411
|
+
user_ids_removed?: (string[] & string[] & { [K_123 in Exclude<keyof I["role_assign_event"]["user_ids_removed"], keyof string[]>]: never; }) | undefined;
|
|
5412
|
+
} & { [K_124 in Exclude<keyof I["role_assign_event"], keyof RoleAssignedEvent>]: never; }) | undefined;
|
|
5391
5413
|
clan_deleted_event?: ({
|
|
5392
5414
|
clan_id?: string | undefined;
|
|
5393
5415
|
deletor?: string | undefined;
|
|
5394
5416
|
} & {
|
|
5395
5417
|
clan_id?: string | undefined;
|
|
5396
5418
|
deletor?: string | undefined;
|
|
5397
|
-
} & { [
|
|
5419
|
+
} & { [K_125 in Exclude<keyof I["clan_deleted_event"], keyof ClanDeletedEvent>]: never; }) | undefined;
|
|
5398
5420
|
give_coffee_event?: ({
|
|
5399
5421
|
sender_id?: string | undefined;
|
|
5400
5422
|
receiver_id?: string | undefined;
|
|
@@ -5409,7 +5431,7 @@ export declare const Envelope: {
|
|
|
5409
5431
|
message_ref_id?: string | undefined;
|
|
5410
5432
|
channel_id?: string | undefined;
|
|
5411
5433
|
clan_id?: string | undefined;
|
|
5412
|
-
} & { [
|
|
5434
|
+
} & { [K_126 in Exclude<keyof I["give_coffee_event"], keyof GiveCoffeeEvent>]: never; }) | undefined;
|
|
5413
5435
|
sticker_create_event?: ({
|
|
5414
5436
|
clan_id?: string | undefined;
|
|
5415
5437
|
source?: string | undefined;
|
|
@@ -5428,7 +5450,7 @@ export declare const Envelope: {
|
|
|
5428
5450
|
sticker_id?: string | undefined;
|
|
5429
5451
|
logo?: string | undefined;
|
|
5430
5452
|
clan_name?: string | undefined;
|
|
5431
|
-
} & { [
|
|
5453
|
+
} & { [K_127 in Exclude<keyof I["sticker_create_event"], keyof StickerCreateEvent>]: never; }) | undefined;
|
|
5432
5454
|
sticker_update_event?: ({
|
|
5433
5455
|
shortname?: string | undefined;
|
|
5434
5456
|
sticker_id?: string | undefined;
|
|
@@ -5437,14 +5459,14 @@ export declare const Envelope: {
|
|
|
5437
5459
|
shortname?: string | undefined;
|
|
5438
5460
|
sticker_id?: string | undefined;
|
|
5439
5461
|
user_id?: string | undefined;
|
|
5440
|
-
} & { [
|
|
5462
|
+
} & { [K_128 in Exclude<keyof I["sticker_update_event"], keyof StickerUpdateEvent>]: never; }) | undefined;
|
|
5441
5463
|
sticker_delete_event?: ({
|
|
5442
5464
|
sticker_id?: string | undefined;
|
|
5443
5465
|
user_id?: string | undefined;
|
|
5444
5466
|
} & {
|
|
5445
5467
|
sticker_id?: string | undefined;
|
|
5446
5468
|
user_id?: string | undefined;
|
|
5447
|
-
} & { [
|
|
5469
|
+
} & { [K_129 in Exclude<keyof I["sticker_delete_event"], keyof StickerDeleteEvent>]: never; }) | undefined;
|
|
5448
5470
|
role_event?: ({
|
|
5449
5471
|
role?: {
|
|
5450
5472
|
id?: string | undefined;
|
|
@@ -5582,7 +5604,7 @@ export declare const Envelope: {
|
|
|
5582
5604
|
lang_tag?: string | undefined;
|
|
5583
5605
|
location?: string | undefined;
|
|
5584
5606
|
online?: boolean | undefined;
|
|
5585
|
-
} & { [
|
|
5607
|
+
} & { [K_130 in Exclude<keyof I["role_event"]["role"]["role_user_list"]["role_users"][number], keyof import("../api/api").RoleUserList_RoleUser>]: never; })[] & { [K_131 in Exclude<keyof I["role_event"]["role"]["role_user_list"]["role_users"], keyof {
|
|
5586
5608
|
id?: string | undefined;
|
|
5587
5609
|
username?: string | undefined;
|
|
5588
5610
|
display_name?: string | undefined;
|
|
@@ -5592,7 +5614,7 @@ export declare const Envelope: {
|
|
|
5592
5614
|
online?: boolean | undefined;
|
|
5593
5615
|
}[]>]: never; }) | undefined;
|
|
5594
5616
|
cursor?: string | undefined;
|
|
5595
|
-
} & { [
|
|
5617
|
+
} & { [K_132 in Exclude<keyof I["role_event"]["role"]["role_user_list"], keyof RoleUserList>]: never; }) | undefined;
|
|
5596
5618
|
permission_list?: ({
|
|
5597
5619
|
permissions?: {
|
|
5598
5620
|
id?: string | undefined;
|
|
@@ -5629,7 +5651,7 @@ export declare const Envelope: {
|
|
|
5629
5651
|
active?: number | undefined;
|
|
5630
5652
|
scope?: number | undefined;
|
|
5631
5653
|
level?: number | undefined;
|
|
5632
|
-
} & { [
|
|
5654
|
+
} & { [K_133 in Exclude<keyof I["role_event"]["role"]["permission_list"]["permissions"][number], keyof import("../api/api").Permission>]: never; })[] & { [K_134 in Exclude<keyof I["role_event"]["role"]["permission_list"]["permissions"], keyof {
|
|
5633
5655
|
id?: string | undefined;
|
|
5634
5656
|
title?: string | undefined;
|
|
5635
5657
|
slug?: string | undefined;
|
|
@@ -5639,19 +5661,19 @@ export declare const Envelope: {
|
|
|
5639
5661
|
level?: number | undefined;
|
|
5640
5662
|
}[]>]: never; }) | undefined;
|
|
5641
5663
|
max_level_permission?: number | undefined;
|
|
5642
|
-
} & { [
|
|
5664
|
+
} & { [K_135 in Exclude<keyof I["role_event"]["role"]["permission_list"], keyof PermissionList>]: never; }) | undefined;
|
|
5643
5665
|
role_channel_active?: number | undefined;
|
|
5644
|
-
channel_ids?: (string[] & string[] & { [
|
|
5666
|
+
channel_ids?: (string[] & string[] & { [K_136 in Exclude<keyof I["role_event"]["role"]["channel_ids"], keyof string[]>]: never; }) | undefined;
|
|
5645
5667
|
max_level_permission?: number | undefined;
|
|
5646
5668
|
order_role?: number | undefined;
|
|
5647
|
-
} & { [
|
|
5669
|
+
} & { [K_137 in Exclude<keyof I["role_event"]["role"], keyof Role>]: never; }) | undefined;
|
|
5648
5670
|
status?: number | undefined;
|
|
5649
5671
|
user_id?: string | undefined;
|
|
5650
|
-
user_add_ids?: (string[] & string[] & { [
|
|
5651
|
-
user_remove_ids?: (string[] & string[] & { [
|
|
5652
|
-
active_permission_ids?: (string[] & string[] & { [
|
|
5653
|
-
remove_permission_ids?: (string[] & string[] & { [
|
|
5654
|
-
} & { [
|
|
5672
|
+
user_add_ids?: (string[] & string[] & { [K_138 in Exclude<keyof I["role_event"]["user_add_ids"], keyof string[]>]: never; }) | undefined;
|
|
5673
|
+
user_remove_ids?: (string[] & string[] & { [K_139 in Exclude<keyof I["role_event"]["user_remove_ids"], keyof string[]>]: never; }) | undefined;
|
|
5674
|
+
active_permission_ids?: (string[] & string[] & { [K_140 in Exclude<keyof I["role_event"]["active_permission_ids"], keyof string[]>]: never; }) | undefined;
|
|
5675
|
+
remove_permission_ids?: (string[] & string[] & { [K_141 in Exclude<keyof I["role_event"]["remove_permission_ids"], keyof string[]>]: never; }) | undefined;
|
|
5676
|
+
} & { [K_142 in Exclude<keyof I["role_event"], keyof RoleEvent>]: never; }) | undefined;
|
|
5655
5677
|
event_emoji?: ({
|
|
5656
5678
|
id?: string | undefined;
|
|
5657
5679
|
clan_id?: string | undefined;
|
|
@@ -5674,7 +5696,7 @@ export declare const Envelope: {
|
|
|
5674
5696
|
logo?: string | undefined;
|
|
5675
5697
|
clan_name?: string | undefined;
|
|
5676
5698
|
is_for_sale?: boolean | undefined;
|
|
5677
|
-
} & { [
|
|
5699
|
+
} & { [K_143 in Exclude<keyof I["event_emoji"], keyof EventEmoji>]: never; }) | undefined;
|
|
5678
5700
|
streaming_joined_event?: ({
|
|
5679
5701
|
clan_id?: string | undefined;
|
|
5680
5702
|
clan_name?: string | undefined;
|
|
@@ -5691,7 +5713,7 @@ export declare const Envelope: {
|
|
|
5691
5713
|
user_id?: string | undefined;
|
|
5692
5714
|
streaming_channel_label?: string | undefined;
|
|
5693
5715
|
streaming_channel_id?: string | undefined;
|
|
5694
|
-
} & { [
|
|
5716
|
+
} & { [K_144 in Exclude<keyof I["streaming_joined_event"], keyof StreamingJoinedEvent>]: never; }) | undefined;
|
|
5695
5717
|
streaming_leaved_event?: ({
|
|
5696
5718
|
id?: string | undefined;
|
|
5697
5719
|
clan_id?: string | undefined;
|
|
@@ -5702,7 +5724,7 @@ export declare const Envelope: {
|
|
|
5702
5724
|
clan_id?: string | undefined;
|
|
5703
5725
|
streaming_channel_id?: string | undefined;
|
|
5704
5726
|
streaming_user_id?: string | undefined;
|
|
5705
|
-
} & { [
|
|
5727
|
+
} & { [K_145 in Exclude<keyof I["streaming_leaved_event"], keyof StreamingLeavedEvent>]: never; }) | undefined;
|
|
5706
5728
|
streaming_started_event?: ({
|
|
5707
5729
|
clan_id?: string | undefined;
|
|
5708
5730
|
channel_id?: string | undefined;
|
|
@@ -5713,14 +5735,14 @@ export declare const Envelope: {
|
|
|
5713
5735
|
channel_id?: string | undefined;
|
|
5714
5736
|
streaming_url?: string | undefined;
|
|
5715
5737
|
is_streaming?: boolean | undefined;
|
|
5716
|
-
} & { [
|
|
5738
|
+
} & { [K_146 in Exclude<keyof I["streaming_started_event"], keyof StreamingStartedEvent>]: never; }) | undefined;
|
|
5717
5739
|
streaming_ended_event?: ({
|
|
5718
5740
|
clan_id?: string | undefined;
|
|
5719
5741
|
channel_id?: string | undefined;
|
|
5720
5742
|
} & {
|
|
5721
5743
|
clan_id?: string | undefined;
|
|
5722
5744
|
channel_id?: string | undefined;
|
|
5723
|
-
} & { [
|
|
5745
|
+
} & { [K_147 in Exclude<keyof I["streaming_ended_event"], keyof StreamingEndedEvent>]: never; }) | undefined;
|
|
5724
5746
|
permission_set_event?: ({
|
|
5725
5747
|
caller?: string | undefined;
|
|
5726
5748
|
role_id?: string | undefined;
|
|
@@ -5748,12 +5770,12 @@ export declare const Envelope: {
|
|
|
5748
5770
|
permission_id?: string | undefined;
|
|
5749
5771
|
slug?: string | undefined;
|
|
5750
5772
|
type?: number | undefined;
|
|
5751
|
-
} & { [
|
|
5773
|
+
} & { [K_148 in Exclude<keyof I["permission_set_event"]["permission_updates"][number], keyof PermissionUpdate>]: never; })[] & { [K_149 in Exclude<keyof I["permission_set_event"]["permission_updates"], keyof {
|
|
5752
5774
|
permission_id?: string | undefined;
|
|
5753
5775
|
slug?: string | undefined;
|
|
5754
5776
|
type?: number | undefined;
|
|
5755
5777
|
}[]>]: never; }) | undefined;
|
|
5756
|
-
} & { [
|
|
5778
|
+
} & { [K_150 in Exclude<keyof I["permission_set_event"], keyof PermissionSetEvent>]: never; }) | undefined;
|
|
5757
5779
|
permission_changed_event?: ({
|
|
5758
5780
|
user_id?: string | undefined;
|
|
5759
5781
|
channel_id?: string | undefined;
|
|
@@ -5787,7 +5809,7 @@ export declare const Envelope: {
|
|
|
5787
5809
|
permission_id?: string | undefined;
|
|
5788
5810
|
slug?: string | undefined;
|
|
5789
5811
|
type?: number | undefined;
|
|
5790
|
-
} & { [
|
|
5812
|
+
} & { [K_151 in Exclude<keyof I["permission_changed_event"]["add_permissions"][number], keyof PermissionUpdate>]: never; })[] & { [K_152 in Exclude<keyof I["permission_changed_event"]["add_permissions"], keyof {
|
|
5791
5813
|
permission_id?: string | undefined;
|
|
5792
5814
|
slug?: string | undefined;
|
|
5793
5815
|
type?: number | undefined;
|
|
@@ -5804,7 +5826,7 @@ export declare const Envelope: {
|
|
|
5804
5826
|
permission_id?: string | undefined;
|
|
5805
5827
|
slug?: string | undefined;
|
|
5806
5828
|
type?: number | undefined;
|
|
5807
|
-
} & { [
|
|
5829
|
+
} & { [K_153 in Exclude<keyof I["permission_changed_event"]["remove_permissions"][number], keyof PermissionUpdate>]: never; })[] & { [K_154 in Exclude<keyof I["permission_changed_event"]["remove_permissions"], keyof {
|
|
5808
5830
|
permission_id?: string | undefined;
|
|
5809
5831
|
slug?: string | undefined;
|
|
5810
5832
|
type?: number | undefined;
|
|
@@ -5821,12 +5843,12 @@ export declare const Envelope: {
|
|
|
5821
5843
|
permission_id?: string | undefined;
|
|
5822
5844
|
slug?: string | undefined;
|
|
5823
5845
|
type?: number | undefined;
|
|
5824
|
-
} & { [
|
|
5846
|
+
} & { [K_155 in Exclude<keyof I["permission_changed_event"]["default_permissions"][number], keyof PermissionUpdate>]: never; })[] & { [K_156 in Exclude<keyof I["permission_changed_event"]["default_permissions"], keyof {
|
|
5825
5847
|
permission_id?: string | undefined;
|
|
5826
5848
|
slug?: string | undefined;
|
|
5827
5849
|
type?: number | undefined;
|
|
5828
5850
|
}[]>]: never; }) | undefined;
|
|
5829
|
-
} & { [
|
|
5851
|
+
} & { [K_157 in Exclude<keyof I["permission_changed_event"], keyof PermissionChangedEvent>]: never; }) | undefined;
|
|
5830
5852
|
token_sent_event?: ({
|
|
5831
5853
|
sender_id?: string | undefined;
|
|
5832
5854
|
sender_name?: string | undefined;
|
|
@@ -5843,7 +5865,7 @@ export declare const Envelope: {
|
|
|
5843
5865
|
note?: string | undefined;
|
|
5844
5866
|
extra_attribute?: string | undefined;
|
|
5845
5867
|
transaction_id?: string | undefined;
|
|
5846
|
-
} & { [
|
|
5868
|
+
} & { [K_158 in Exclude<keyof I["token_sent_event"], keyof TokenSentEvent>]: never; }) | undefined;
|
|
5847
5869
|
message_button_clicked?: ({
|
|
5848
5870
|
message_id?: string | undefined;
|
|
5849
5871
|
channel_id?: string | undefined;
|
|
@@ -5858,7 +5880,7 @@ export declare const Envelope: {
|
|
|
5858
5880
|
sender_id?: string | undefined;
|
|
5859
5881
|
user_id?: string | undefined;
|
|
5860
5882
|
extra_data?: string | undefined;
|
|
5861
|
-
} & { [
|
|
5883
|
+
} & { [K_159 in Exclude<keyof I["message_button_clicked"], keyof MessageButtonClicked>]: never; }) | undefined;
|
|
5862
5884
|
unmute_event?: ({
|
|
5863
5885
|
channel_id?: string | undefined;
|
|
5864
5886
|
category_id?: string | undefined;
|
|
@@ -5867,7 +5889,7 @@ export declare const Envelope: {
|
|
|
5867
5889
|
channel_id?: string | undefined;
|
|
5868
5890
|
category_id?: string | undefined;
|
|
5869
5891
|
clan_id?: string | undefined;
|
|
5870
|
-
} & { [
|
|
5892
|
+
} & { [K_160 in Exclude<keyof I["unmute_event"], keyof UnmuteEvent>]: never; }) | undefined;
|
|
5871
5893
|
webrtc_signaling_fwd?: ({
|
|
5872
5894
|
receiver_id?: string | undefined;
|
|
5873
5895
|
data_type?: number | undefined;
|
|
@@ -5880,7 +5902,7 @@ export declare const Envelope: {
|
|
|
5880
5902
|
json_data?: string | undefined;
|
|
5881
5903
|
channel_id?: string | undefined;
|
|
5882
5904
|
caller_id?: string | undefined;
|
|
5883
|
-
} & { [
|
|
5905
|
+
} & { [K_161 in Exclude<keyof I["webrtc_signaling_fwd"], keyof WebrtcSignalingFwd>]: never; }) | undefined;
|
|
5884
5906
|
list_activity?: ({
|
|
5885
5907
|
acts?: {
|
|
5886
5908
|
user_id?: string | undefined;
|
|
@@ -5920,7 +5942,7 @@ export declare const Envelope: {
|
|
|
5920
5942
|
end_time?: Date | undefined;
|
|
5921
5943
|
application_id?: string | undefined;
|
|
5922
5944
|
status?: number | undefined;
|
|
5923
|
-
} & { [
|
|
5945
|
+
} & { [K_162 in Exclude<keyof I["list_activity"]["acts"][number], keyof UserActivity>]: never; })[] & { [K_163 in Exclude<keyof I["list_activity"]["acts"], keyof {
|
|
5924
5946
|
user_id?: string | undefined;
|
|
5925
5947
|
activity_name?: string | undefined;
|
|
5926
5948
|
activity_type?: number | undefined;
|
|
@@ -5930,7 +5952,7 @@ export declare const Envelope: {
|
|
|
5930
5952
|
application_id?: string | undefined;
|
|
5931
5953
|
status?: number | undefined;
|
|
5932
5954
|
}[]>]: never; }) | undefined;
|
|
5933
|
-
} & { [
|
|
5955
|
+
} & { [K_164 in Exclude<keyof I["list_activity"], "acts">]: never; }) | undefined;
|
|
5934
5956
|
dropdown_box_selected?: ({
|
|
5935
5957
|
message_id?: string | undefined;
|
|
5936
5958
|
channel_id?: string | undefined;
|
|
@@ -5944,8 +5966,8 @@ export declare const Envelope: {
|
|
|
5944
5966
|
selectbox_id?: string | undefined;
|
|
5945
5967
|
sender_id?: string | undefined;
|
|
5946
5968
|
user_id?: string | undefined;
|
|
5947
|
-
values?: (string[] & string[] & { [
|
|
5948
|
-
} & { [
|
|
5969
|
+
values?: (string[] & string[] & { [K_165 in Exclude<keyof I["dropdown_box_selected"]["values"], keyof string[]>]: never; }) | undefined;
|
|
5970
|
+
} & { [K_166 in Exclude<keyof I["dropdown_box_selected"], keyof DropdownBoxSelected>]: never; }) | undefined;
|
|
5949
5971
|
incoming_call_push?: ({
|
|
5950
5972
|
receiver_id?: string | undefined;
|
|
5951
5973
|
json_data?: string | undefined;
|
|
@@ -5956,7 +5978,7 @@ export declare const Envelope: {
|
|
|
5956
5978
|
json_data?: string | undefined;
|
|
5957
5979
|
channel_id?: string | undefined;
|
|
5958
5980
|
caller_id?: string | undefined;
|
|
5959
|
-
} & { [
|
|
5981
|
+
} & { [K_167 in Exclude<keyof I["incoming_call_push"], keyof IncomingCallPush>]: never; }) | undefined;
|
|
5960
5982
|
sd_topic_event?: ({
|
|
5961
5983
|
id?: string | undefined;
|
|
5962
5984
|
clan_id?: string | undefined;
|
|
@@ -6028,8 +6050,8 @@ export declare const Envelope: {
|
|
|
6028
6050
|
reference?: string | undefined;
|
|
6029
6051
|
mention?: string | undefined;
|
|
6030
6052
|
reaction?: string | undefined;
|
|
6031
|
-
repliers?: (string[] & string[] & { [
|
|
6032
|
-
} & { [
|
|
6053
|
+
repliers?: (string[] & string[] & { [K_168 in Exclude<keyof I["sd_topic_event"]["last_sent_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
6054
|
+
} & { [K_169 in Exclude<keyof I["sd_topic_event"]["last_sent_message"], keyof ChannelMessageHeader>]: never; }) | undefined;
|
|
6033
6055
|
message?: ({
|
|
6034
6056
|
clan_id?: string | undefined;
|
|
6035
6057
|
channel_id?: string | undefined;
|
|
@@ -6086,9 +6108,9 @@ export declare const Envelope: {
|
|
|
6086
6108
|
hide_editted?: boolean | undefined;
|
|
6087
6109
|
is_public?: boolean | undefined;
|
|
6088
6110
|
topic_id?: string | undefined;
|
|
6089
|
-
} & { [
|
|
6090
|
-
} & { [
|
|
6091
|
-
follow_event?: ({} & {} & { [
|
|
6111
|
+
} & { [K_170 in Exclude<keyof I["sd_topic_event"]["message"], keyof ChannelMessage>]: never; }) | undefined;
|
|
6112
|
+
} & { [K_171 in Exclude<keyof I["sd_topic_event"], keyof SdTopicEvent>]: never; }) | undefined;
|
|
6113
|
+
follow_event?: ({} & {} & { [K_172 in Exclude<keyof I["follow_event"], never>]: never; }) | undefined;
|
|
6092
6114
|
channel_app_event?: ({
|
|
6093
6115
|
user_id?: string | undefined;
|
|
6094
6116
|
username?: string | undefined;
|
|
@@ -6101,19 +6123,19 @@ export declare const Envelope: {
|
|
|
6101
6123
|
clan_id?: string | undefined;
|
|
6102
6124
|
channel_id?: string | undefined;
|
|
6103
6125
|
action?: number | undefined;
|
|
6104
|
-
} & { [
|
|
6126
|
+
} & { [K_173 in Exclude<keyof I["channel_app_event"], keyof ChannelAppEvent>]: never; }) | undefined;
|
|
6105
6127
|
user_status_event?: ({
|
|
6106
6128
|
user_id?: string | undefined;
|
|
6107
6129
|
custom_status?: string | undefined;
|
|
6108
6130
|
} & {
|
|
6109
6131
|
user_id?: string | undefined;
|
|
6110
6132
|
custom_status?: string | undefined;
|
|
6111
|
-
} & { [
|
|
6133
|
+
} & { [K_174 in Exclude<keyof I["user_status_event"], keyof UserStatusEvent>]: never; }) | undefined;
|
|
6112
6134
|
remove_friend?: ({
|
|
6113
6135
|
user_id?: string | undefined;
|
|
6114
6136
|
} & {
|
|
6115
6137
|
user_id?: string | undefined;
|
|
6116
|
-
} & { [
|
|
6138
|
+
} & { [K_175 in Exclude<keyof I["remove_friend"], "user_id">]: never; }) | undefined;
|
|
6117
6139
|
webhook_event?: ({
|
|
6118
6140
|
id?: string | undefined;
|
|
6119
6141
|
webhook_name?: string | undefined;
|
|
@@ -6136,7 +6158,7 @@ export declare const Envelope: {
|
|
|
6136
6158
|
update_time?: string | undefined;
|
|
6137
6159
|
avatar?: string | undefined;
|
|
6138
6160
|
status?: number | undefined;
|
|
6139
|
-
} & { [
|
|
6161
|
+
} & { [K_176 in Exclude<keyof I["webhook_event"], keyof Webhook>]: never; }) | undefined;
|
|
6140
6162
|
noti_user_channel?: ({
|
|
6141
6163
|
id?: string | undefined;
|
|
6142
6164
|
notification_setting_type?: number | undefined;
|
|
@@ -6149,7 +6171,7 @@ export declare const Envelope: {
|
|
|
6149
6171
|
time_mute?: Date | undefined;
|
|
6150
6172
|
active?: number | undefined;
|
|
6151
6173
|
channel_id?: string | undefined;
|
|
6152
|
-
} & { [
|
|
6174
|
+
} & { [K_177 in Exclude<keyof I["noti_user_channel"], keyof NotificationUserChannel>]: never; }) | undefined;
|
|
6153
6175
|
join_channel_app_data?: ({
|
|
6154
6176
|
user_id?: string | undefined;
|
|
6155
6177
|
username?: string | undefined;
|
|
@@ -6158,7 +6180,7 @@ export declare const Envelope: {
|
|
|
6158
6180
|
user_id?: string | undefined;
|
|
6159
6181
|
username?: string | undefined;
|
|
6160
6182
|
hash?: string | undefined;
|
|
6161
|
-
} & { [
|
|
6183
|
+
} & { [K_178 in Exclude<keyof I["join_channel_app_data"], keyof JoinChannelAppData>]: never; }) | undefined;
|
|
6162
6184
|
canvas_event?: ({
|
|
6163
6185
|
id?: string | undefined;
|
|
6164
6186
|
title?: string | undefined;
|
|
@@ -6177,7 +6199,7 @@ export declare const Envelope: {
|
|
|
6177
6199
|
is_default?: boolean | undefined;
|
|
6178
6200
|
channel_id?: string | undefined;
|
|
6179
6201
|
status?: number | undefined;
|
|
6180
|
-
} & { [
|
|
6202
|
+
} & { [K_179 in Exclude<keyof I["canvas_event"], keyof ChannelCanvas>]: never; }) | undefined;
|
|
6181
6203
|
unpin_message_event?: ({
|
|
6182
6204
|
id?: string | undefined;
|
|
6183
6205
|
message_id?: string | undefined;
|
|
@@ -6188,7 +6210,7 @@ export declare const Envelope: {
|
|
|
6188
6210
|
message_id?: string | undefined;
|
|
6189
6211
|
channel_id?: string | undefined;
|
|
6190
6212
|
clan_id?: string | undefined;
|
|
6191
|
-
} & { [
|
|
6213
|
+
} & { [K_180 in Exclude<keyof I["unpin_message_event"], keyof UnpinMessageEvent>]: never; }) | undefined;
|
|
6192
6214
|
category_event?: ({
|
|
6193
6215
|
creator_id?: string | undefined;
|
|
6194
6216
|
clan_id?: string | undefined;
|
|
@@ -6201,7 +6223,7 @@ export declare const Envelope: {
|
|
|
6201
6223
|
category_name?: string | undefined;
|
|
6202
6224
|
id?: string | undefined;
|
|
6203
6225
|
status?: number | undefined;
|
|
6204
|
-
} & { [
|
|
6226
|
+
} & { [K_181 in Exclude<keyof I["category_event"], keyof CategoryEvent>]: never; }) | undefined;
|
|
6205
6227
|
handle_participant_meet_state_event?: ({
|
|
6206
6228
|
clan_id?: string | undefined;
|
|
6207
6229
|
channel_id?: string | undefined;
|
|
@@ -6212,12 +6234,12 @@ export declare const Envelope: {
|
|
|
6212
6234
|
channel_id?: string | undefined;
|
|
6213
6235
|
display_name?: string | undefined;
|
|
6214
6236
|
state?: number | undefined;
|
|
6215
|
-
} & { [
|
|
6237
|
+
} & { [K_182 in Exclude<keyof I["handle_participant_meet_state_event"], keyof HandleParticipantMeetStateEvent>]: never; }) | undefined;
|
|
6216
6238
|
delete_account_event?: ({
|
|
6217
6239
|
user_id?: string | undefined;
|
|
6218
6240
|
} & {
|
|
6219
6241
|
user_id?: string | undefined;
|
|
6220
|
-
} & { [
|
|
6242
|
+
} & { [K_183 in Exclude<keyof I["delete_account_event"], "user_id">]: never; }) | undefined;
|
|
6221
6243
|
ephemeral_message_send?: ({
|
|
6222
6244
|
message?: {
|
|
6223
6245
|
clan_id?: string | undefined;
|
|
@@ -6337,7 +6359,7 @@ export declare const Envelope: {
|
|
|
6337
6359
|
create_time?: Date | undefined;
|
|
6338
6360
|
s?: number | undefined;
|
|
6339
6361
|
e?: number | undefined;
|
|
6340
|
-
} & { [
|
|
6362
|
+
} & { [K_184 in Exclude<keyof I["ephemeral_message_send"]["message"]["mentions"][number], keyof MessageMention>]: never; })[] & { [K_185 in Exclude<keyof I["ephemeral_message_send"]["message"]["mentions"], keyof {
|
|
6341
6363
|
id?: string | undefined;
|
|
6342
6364
|
user_id?: string | undefined;
|
|
6343
6365
|
username?: string | undefined;
|
|
@@ -6371,7 +6393,7 @@ export declare const Envelope: {
|
|
|
6371
6393
|
width?: number | undefined;
|
|
6372
6394
|
height?: number | undefined;
|
|
6373
6395
|
thumbnail?: string | undefined;
|
|
6374
|
-
} & { [
|
|
6396
|
+
} & { [K_186 in Exclude<keyof I["ephemeral_message_send"]["message"]["attachments"][number], keyof MessageAttachment>]: never; })[] & { [K_187 in Exclude<keyof I["ephemeral_message_send"]["message"]["attachments"], keyof {
|
|
6375
6397
|
filename?: string | undefined;
|
|
6376
6398
|
size?: number | undefined;
|
|
6377
6399
|
url?: string | undefined;
|
|
@@ -6413,7 +6435,7 @@ export declare const Envelope: {
|
|
|
6413
6435
|
mesages_sender_avatar?: string | undefined;
|
|
6414
6436
|
message_sender_clan_nick?: string | undefined;
|
|
6415
6437
|
message_sender_display_name?: string | undefined;
|
|
6416
|
-
} & { [
|
|
6438
|
+
} & { [K_188 in Exclude<keyof I["ephemeral_message_send"]["message"]["references"][number], keyof MessageRef>]: never; })[] & { [K_189 in Exclude<keyof I["ephemeral_message_send"]["message"]["references"], keyof {
|
|
6417
6439
|
message_id?: string | undefined;
|
|
6418
6440
|
message_ref_id?: string | undefined;
|
|
6419
6441
|
content?: string | undefined;
|
|
@@ -6432,25 +6454,25 @@ export declare const Envelope: {
|
|
|
6432
6454
|
is_public?: boolean | undefined;
|
|
6433
6455
|
code?: number | undefined;
|
|
6434
6456
|
topic_id?: string | undefined;
|
|
6435
|
-
} & { [
|
|
6457
|
+
} & { [K_190 in Exclude<keyof I["ephemeral_message_send"]["message"], keyof ChannelMessageSend>]: never; }) | undefined;
|
|
6436
6458
|
receiver_id?: string | undefined;
|
|
6437
|
-
} & { [
|
|
6459
|
+
} & { [K_191 in Exclude<keyof I["ephemeral_message_send"], keyof EphemeralMessageSend>]: never; }) | undefined;
|
|
6438
6460
|
block_friend?: ({
|
|
6439
6461
|
user_id?: string | undefined;
|
|
6440
6462
|
} & {
|
|
6441
6463
|
user_id?: string | undefined;
|
|
6442
|
-
} & { [
|
|
6464
|
+
} & { [K_192 in Exclude<keyof I["block_friend"], "user_id">]: never; }) | undefined;
|
|
6443
6465
|
voice_reaction_send?: ({
|
|
6444
6466
|
emojis?: string[] | undefined;
|
|
6445
6467
|
channel_id?: string | undefined;
|
|
6446
6468
|
sender_id?: string | undefined;
|
|
6447
6469
|
media_type?: number | undefined;
|
|
6448
6470
|
} & {
|
|
6449
|
-
emojis?: (string[] & string[] & { [
|
|
6471
|
+
emojis?: (string[] & string[] & { [K_193 in Exclude<keyof I["voice_reaction_send"]["emojis"], keyof string[]>]: never; }) | undefined;
|
|
6450
6472
|
channel_id?: string | undefined;
|
|
6451
6473
|
sender_id?: string | undefined;
|
|
6452
6474
|
media_type?: number | undefined;
|
|
6453
|
-
} & { [
|
|
6475
|
+
} & { [K_194 in Exclude<keyof I["voice_reaction_send"], keyof VoiceReactionSend>]: never; }) | undefined;
|
|
6454
6476
|
mark_as_read?: ({
|
|
6455
6477
|
channel_id?: string | undefined;
|
|
6456
6478
|
category_id?: string | undefined;
|
|
@@ -6459,7 +6481,7 @@ export declare const Envelope: {
|
|
|
6459
6481
|
channel_id?: string | undefined;
|
|
6460
6482
|
category_id?: string | undefined;
|
|
6461
6483
|
clan_id?: string | undefined;
|
|
6462
|
-
} & { [
|
|
6484
|
+
} & { [K_195 in Exclude<keyof I["mark_as_read"], keyof MarkAsRead>]: never; }) | undefined;
|
|
6463
6485
|
list_data_socket?: ({
|
|
6464
6486
|
api_name?: string | undefined;
|
|
6465
6487
|
list_clan_req?: {
|
|
@@ -6480,6 +6502,8 @@ export declare const Envelope: {
|
|
|
6480
6502
|
welcome_channel_id?: string | undefined;
|
|
6481
6503
|
onboarding_banner?: string | undefined;
|
|
6482
6504
|
clan_order?: number | undefined;
|
|
6505
|
+
is_community?: boolean | undefined;
|
|
6506
|
+
community_banner?: string | undefined;
|
|
6483
6507
|
}[] | undefined;
|
|
6484
6508
|
} | undefined;
|
|
6485
6509
|
list_thread_req?: {
|
|
@@ -7326,7 +7350,7 @@ export declare const Envelope: {
|
|
|
7326
7350
|
limit?: number | undefined;
|
|
7327
7351
|
state?: number | undefined;
|
|
7328
7352
|
cursor?: string | undefined;
|
|
7329
|
-
} & { [
|
|
7353
|
+
} & { [K_196 in Exclude<keyof I["list_data_socket"]["list_clan_req"], keyof ListClanDescRequest>]: never; }) | undefined;
|
|
7330
7354
|
clan_desc_list?: ({
|
|
7331
7355
|
clandesc?: {
|
|
7332
7356
|
creator_id?: string | undefined;
|
|
@@ -7340,6 +7364,8 @@ export declare const Envelope: {
|
|
|
7340
7364
|
welcome_channel_id?: string | undefined;
|
|
7341
7365
|
onboarding_banner?: string | undefined;
|
|
7342
7366
|
clan_order?: number | undefined;
|
|
7367
|
+
is_community?: boolean | undefined;
|
|
7368
|
+
community_banner?: string | undefined;
|
|
7343
7369
|
}[] | undefined;
|
|
7344
7370
|
} & {
|
|
7345
7371
|
clandesc?: ({
|
|
@@ -7354,6 +7380,8 @@ export declare const Envelope: {
|
|
|
7354
7380
|
welcome_channel_id?: string | undefined;
|
|
7355
7381
|
onboarding_banner?: string | undefined;
|
|
7356
7382
|
clan_order?: number | undefined;
|
|
7383
|
+
is_community?: boolean | undefined;
|
|
7384
|
+
community_banner?: string | undefined;
|
|
7357
7385
|
}[] & ({
|
|
7358
7386
|
creator_id?: string | undefined;
|
|
7359
7387
|
clan_name?: string | undefined;
|
|
@@ -7366,6 +7394,8 @@ export declare const Envelope: {
|
|
|
7366
7394
|
welcome_channel_id?: string | undefined;
|
|
7367
7395
|
onboarding_banner?: string | undefined;
|
|
7368
7396
|
clan_order?: number | undefined;
|
|
7397
|
+
is_community?: boolean | undefined;
|
|
7398
|
+
community_banner?: string | undefined;
|
|
7369
7399
|
} & {
|
|
7370
7400
|
creator_id?: string | undefined;
|
|
7371
7401
|
clan_name?: string | undefined;
|
|
@@ -7378,7 +7408,9 @@ export declare const Envelope: {
|
|
|
7378
7408
|
welcome_channel_id?: string | undefined;
|
|
7379
7409
|
onboarding_banner?: string | undefined;
|
|
7380
7410
|
clan_order?: number | undefined;
|
|
7381
|
-
|
|
7411
|
+
is_community?: boolean | undefined;
|
|
7412
|
+
community_banner?: string | undefined;
|
|
7413
|
+
} & { [K_197 in Exclude<keyof I["list_data_socket"]["clan_desc_list"]["clandesc"][number], keyof import("../api/api").ClanDesc>]: never; })[] & { [K_198 in Exclude<keyof I["list_data_socket"]["clan_desc_list"]["clandesc"], keyof {
|
|
7382
7414
|
creator_id?: string | undefined;
|
|
7383
7415
|
clan_name?: string | undefined;
|
|
7384
7416
|
logo?: string | undefined;
|
|
@@ -7390,8 +7422,10 @@ export declare const Envelope: {
|
|
|
7390
7422
|
welcome_channel_id?: string | undefined;
|
|
7391
7423
|
onboarding_banner?: string | undefined;
|
|
7392
7424
|
clan_order?: number | undefined;
|
|
7425
|
+
is_community?: boolean | undefined;
|
|
7426
|
+
community_banner?: string | undefined;
|
|
7393
7427
|
}[]>]: never; }) | undefined;
|
|
7394
|
-
} & { [
|
|
7428
|
+
} & { [K_199 in Exclude<keyof I["list_data_socket"]["clan_desc_list"], "clandesc">]: never; }) | undefined;
|
|
7395
7429
|
list_thread_req?: ({
|
|
7396
7430
|
limit?: number | undefined;
|
|
7397
7431
|
state?: number | undefined;
|
|
@@ -7406,7 +7440,7 @@ export declare const Envelope: {
|
|
|
7406
7440
|
channel_id?: string | undefined;
|
|
7407
7441
|
thread_id?: string | undefined;
|
|
7408
7442
|
page?: number | undefined;
|
|
7409
|
-
} & { [
|
|
7443
|
+
} & { [K_200 in Exclude<keyof I["list_data_socket"]["list_thread_req"], keyof ListThreadRequest>]: never; }) | undefined;
|
|
7410
7444
|
channel_desc_list?: ({
|
|
7411
7445
|
channeldesc?: {
|
|
7412
7446
|
clan_id?: string | undefined;
|
|
@@ -7580,8 +7614,8 @@ export declare const Envelope: {
|
|
|
7580
7614
|
creator_id?: string | undefined;
|
|
7581
7615
|
channel_label?: string | undefined;
|
|
7582
7616
|
channel_private?: number | undefined;
|
|
7583
|
-
channel_avatar?: (string[] & string[] & { [
|
|
7584
|
-
user_id?: (string[] & string[] & { [
|
|
7617
|
+
channel_avatar?: (string[] & string[] & { [K_201 in Exclude<keyof I["list_data_socket"]["channel_desc_list"]["channeldesc"][number]["channel_avatar"], keyof string[]>]: never; }) | undefined;
|
|
7618
|
+
user_id?: (string[] & string[] & { [K_202 in Exclude<keyof I["list_data_socket"]["channel_desc_list"]["channeldesc"][number]["user_id"], keyof string[]>]: never; }) | undefined;
|
|
7585
7619
|
last_sent_message?: ({
|
|
7586
7620
|
id?: string | undefined;
|
|
7587
7621
|
timestamp_seconds?: number | undefined;
|
|
@@ -7601,8 +7635,8 @@ export declare const Envelope: {
|
|
|
7601
7635
|
reference?: string | undefined;
|
|
7602
7636
|
mention?: string | undefined;
|
|
7603
7637
|
reaction?: string | undefined;
|
|
7604
|
-
repliers?: (string[] & string[] & { [
|
|
7605
|
-
} & { [
|
|
7638
|
+
repliers?: (string[] & string[] & { [K_203 in Exclude<keyof I["list_data_socket"]["channel_desc_list"]["channeldesc"][number]["last_sent_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
7639
|
+
} & { [K_204 in Exclude<keyof I["list_data_socket"]["channel_desc_list"]["channeldesc"][number]["last_sent_message"], keyof ChannelMessageHeader>]: never; }) | undefined;
|
|
7606
7640
|
last_seen_message?: ({
|
|
7607
7641
|
id?: string | undefined;
|
|
7608
7642
|
timestamp_seconds?: number | undefined;
|
|
@@ -7622,27 +7656,27 @@ export declare const Envelope: {
|
|
|
7622
7656
|
reference?: string | undefined;
|
|
7623
7657
|
mention?: string | undefined;
|
|
7624
7658
|
reaction?: string | undefined;
|
|
7625
|
-
repliers?: (string[] & string[] & { [
|
|
7626
|
-
} & { [
|
|
7627
|
-
is_online?: (boolean[] & boolean[] & { [
|
|
7659
|
+
repliers?: (string[] & string[] & { [K_205 in Exclude<keyof I["list_data_socket"]["channel_desc_list"]["channeldesc"][number]["last_seen_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
7660
|
+
} & { [K_206 in Exclude<keyof I["list_data_socket"]["channel_desc_list"]["channeldesc"][number]["last_seen_message"], keyof ChannelMessageHeader>]: never; }) | undefined;
|
|
7661
|
+
is_online?: (boolean[] & boolean[] & { [K_207 in Exclude<keyof I["list_data_socket"]["channel_desc_list"]["channeldesc"][number]["is_online"], keyof boolean[]>]: never; }) | undefined;
|
|
7628
7662
|
meeting_code?: string | undefined;
|
|
7629
7663
|
count_mess_unread?: number | undefined;
|
|
7630
7664
|
active?: number | undefined;
|
|
7631
7665
|
last_pin_message?: string | undefined;
|
|
7632
|
-
usernames?: (string[] & string[] & { [
|
|
7666
|
+
usernames?: (string[] & string[] & { [K_208 in Exclude<keyof I["list_data_socket"]["channel_desc_list"]["channeldesc"][number]["usernames"], keyof string[]>]: never; }) | undefined;
|
|
7633
7667
|
creator_name?: string | undefined;
|
|
7634
7668
|
create_time_seconds?: number | undefined;
|
|
7635
7669
|
update_time_seconds?: number | undefined;
|
|
7636
|
-
metadata?: (string[] & string[] & { [
|
|
7637
|
-
about_me?: (string[] & string[] & { [
|
|
7670
|
+
metadata?: (string[] & string[] & { [K_209 in Exclude<keyof I["list_data_socket"]["channel_desc_list"]["channeldesc"][number]["metadata"], keyof string[]>]: never; }) | undefined;
|
|
7671
|
+
about_me?: (string[] & string[] & { [K_210 in Exclude<keyof I["list_data_socket"]["channel_desc_list"]["channeldesc"][number]["about_me"], keyof string[]>]: never; }) | undefined;
|
|
7638
7672
|
clan_name?: string | undefined;
|
|
7639
7673
|
app_id?: string | undefined;
|
|
7640
7674
|
is_mute?: boolean | undefined;
|
|
7641
7675
|
age_restricted?: number | undefined;
|
|
7642
7676
|
topic?: string | undefined;
|
|
7643
7677
|
e2ee?: number | undefined;
|
|
7644
|
-
display_names?: (string[] & string[] & { [
|
|
7645
|
-
} & { [
|
|
7678
|
+
display_names?: (string[] & string[] & { [K_211 in Exclude<keyof I["list_data_socket"]["channel_desc_list"]["channeldesc"][number]["display_names"], keyof string[]>]: never; }) | undefined;
|
|
7679
|
+
} & { [K_212 in Exclude<keyof I["list_data_socket"]["channel_desc_list"]["channeldesc"][number], keyof ChannelDescription1>]: never; })[] & { [K_213 in Exclude<keyof I["list_data_socket"]["channel_desc_list"]["channeldesc"], keyof {
|
|
7646
7680
|
clan_id?: string | undefined;
|
|
7647
7681
|
parent_id?: string | undefined;
|
|
7648
7682
|
channel_id?: string | undefined;
|
|
@@ -7699,28 +7733,28 @@ export declare const Envelope: {
|
|
|
7699
7733
|
prev_cursor?: string | undefined;
|
|
7700
7734
|
cacheable_cursor?: string | undefined;
|
|
7701
7735
|
page?: number | undefined;
|
|
7702
|
-
} & { [
|
|
7736
|
+
} & { [K_214 in Exclude<keyof I["list_data_socket"]["channel_desc_list"], keyof ChannelDescList>]: never; }) | undefined;
|
|
7703
7737
|
list_channel_users_uc_req?: ({
|
|
7704
7738
|
channel_id?: string | undefined;
|
|
7705
7739
|
limit?: number | undefined;
|
|
7706
7740
|
} & {
|
|
7707
7741
|
channel_id?: string | undefined;
|
|
7708
7742
|
limit?: number | undefined;
|
|
7709
|
-
} & { [
|
|
7743
|
+
} & { [K_215 in Exclude<keyof I["list_data_socket"]["list_channel_users_uc_req"], keyof AllUsersAddChannelRequest>]: never; }) | undefined;
|
|
7710
7744
|
channel_users_uc_list?: ({
|
|
7711
7745
|
channel_id?: string | undefined;
|
|
7712
7746
|
user_ids?: string[] | undefined;
|
|
7713
7747
|
limit?: number | undefined;
|
|
7714
7748
|
} & {
|
|
7715
7749
|
channel_id?: string | undefined;
|
|
7716
|
-
user_ids?: (string[] & string[] & { [
|
|
7750
|
+
user_ids?: (string[] & string[] & { [K_216 in Exclude<keyof I["list_data_socket"]["channel_users_uc_list"]["user_ids"], keyof string[]>]: never; }) | undefined;
|
|
7717
7751
|
limit?: number | undefined;
|
|
7718
|
-
} & { [
|
|
7752
|
+
} & { [K_217 in Exclude<keyof I["list_data_socket"]["channel_users_uc_list"], keyof AllUsersAddChannelResponse>]: never; }) | undefined;
|
|
7719
7753
|
list_channel_detail_req?: ({
|
|
7720
7754
|
channel_id?: string | undefined;
|
|
7721
7755
|
} & {
|
|
7722
7756
|
channel_id?: string | undefined;
|
|
7723
|
-
} & { [
|
|
7757
|
+
} & { [K_218 in Exclude<keyof I["list_data_socket"]["list_channel_detail_req"], "channel_id">]: never; }) | undefined;
|
|
7724
7758
|
channel_desc?: ({
|
|
7725
7759
|
clan_id?: string | undefined;
|
|
7726
7760
|
parent_id?: string | undefined;
|
|
@@ -7783,8 +7817,8 @@ export declare const Envelope: {
|
|
|
7783
7817
|
creator_id?: string | undefined;
|
|
7784
7818
|
channel_label?: string | undefined;
|
|
7785
7819
|
channel_private?: number | undefined;
|
|
7786
|
-
channel_avatar?: (string[] & string[] & { [
|
|
7787
|
-
user_id?: (string[] & string[] & { [
|
|
7820
|
+
channel_avatar?: (string[] & string[] & { [K_219 in Exclude<keyof I["list_data_socket"]["channel_desc"]["channel_avatar"], keyof string[]>]: never; }) | undefined;
|
|
7821
|
+
user_id?: (string[] & string[] & { [K_220 in Exclude<keyof I["list_data_socket"]["channel_desc"]["user_id"], keyof string[]>]: never; }) | undefined;
|
|
7788
7822
|
last_sent_message?: ({
|
|
7789
7823
|
id?: string | undefined;
|
|
7790
7824
|
timestamp_seconds?: number | undefined;
|
|
@@ -7804,8 +7838,8 @@ export declare const Envelope: {
|
|
|
7804
7838
|
reference?: string | undefined;
|
|
7805
7839
|
mention?: string | undefined;
|
|
7806
7840
|
reaction?: string | undefined;
|
|
7807
|
-
repliers?: (string[] & string[] & { [
|
|
7808
|
-
} & { [
|
|
7841
|
+
repliers?: (string[] & string[] & { [K_221 in Exclude<keyof I["list_data_socket"]["channel_desc"]["last_sent_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
7842
|
+
} & { [K_222 in Exclude<keyof I["list_data_socket"]["channel_desc"]["last_sent_message"], keyof ChannelMessageHeader>]: never; }) | undefined;
|
|
7809
7843
|
last_seen_message?: ({
|
|
7810
7844
|
id?: string | undefined;
|
|
7811
7845
|
timestamp_seconds?: number | undefined;
|
|
@@ -7825,27 +7859,27 @@ export declare const Envelope: {
|
|
|
7825
7859
|
reference?: string | undefined;
|
|
7826
7860
|
mention?: string | undefined;
|
|
7827
7861
|
reaction?: string | undefined;
|
|
7828
|
-
repliers?: (string[] & string[] & { [
|
|
7829
|
-
} & { [
|
|
7830
|
-
is_online?: (boolean[] & boolean[] & { [
|
|
7862
|
+
repliers?: (string[] & string[] & { [K_223 in Exclude<keyof I["list_data_socket"]["channel_desc"]["last_seen_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
7863
|
+
} & { [K_224 in Exclude<keyof I["list_data_socket"]["channel_desc"]["last_seen_message"], keyof ChannelMessageHeader>]: never; }) | undefined;
|
|
7864
|
+
is_online?: (boolean[] & boolean[] & { [K_225 in Exclude<keyof I["list_data_socket"]["channel_desc"]["is_online"], keyof boolean[]>]: never; }) | undefined;
|
|
7831
7865
|
meeting_code?: string | undefined;
|
|
7832
7866
|
count_mess_unread?: number | undefined;
|
|
7833
7867
|
active?: number | undefined;
|
|
7834
7868
|
last_pin_message?: string | undefined;
|
|
7835
|
-
usernames?: (string[] & string[] & { [
|
|
7869
|
+
usernames?: (string[] & string[] & { [K_226 in Exclude<keyof I["list_data_socket"]["channel_desc"]["usernames"], keyof string[]>]: never; }) | undefined;
|
|
7836
7870
|
creator_name?: string | undefined;
|
|
7837
7871
|
create_time_seconds?: number | undefined;
|
|
7838
7872
|
update_time_seconds?: number | undefined;
|
|
7839
|
-
metadata?: (string[] & string[] & { [
|
|
7840
|
-
about_me?: (string[] & string[] & { [
|
|
7873
|
+
metadata?: (string[] & string[] & { [K_227 in Exclude<keyof I["list_data_socket"]["channel_desc"]["metadata"], keyof string[]>]: never; }) | undefined;
|
|
7874
|
+
about_me?: (string[] & string[] & { [K_228 in Exclude<keyof I["list_data_socket"]["channel_desc"]["about_me"], keyof string[]>]: never; }) | undefined;
|
|
7841
7875
|
clan_name?: string | undefined;
|
|
7842
7876
|
app_id?: string | undefined;
|
|
7843
7877
|
is_mute?: boolean | undefined;
|
|
7844
7878
|
age_restricted?: number | undefined;
|
|
7845
7879
|
topic?: string | undefined;
|
|
7846
7880
|
e2ee?: number | undefined;
|
|
7847
|
-
display_names?: (string[] & string[] & { [
|
|
7848
|
-
} & { [
|
|
7881
|
+
display_names?: (string[] & string[] & { [K_229 in Exclude<keyof I["list_data_socket"]["channel_desc"]["display_names"], keyof string[]>]: never; }) | undefined;
|
|
7882
|
+
} & { [K_230 in Exclude<keyof I["list_data_socket"]["channel_desc"], keyof ChannelDescription1>]: never; }) | undefined;
|
|
7849
7883
|
list_channel_req?: ({
|
|
7850
7884
|
limit?: number | undefined;
|
|
7851
7885
|
state?: number | undefined;
|
|
@@ -7858,7 +7892,7 @@ export declare const Envelope: {
|
|
|
7858
7892
|
cursor?: string | undefined;
|
|
7859
7893
|
clan_id?: string | undefined;
|
|
7860
7894
|
channel_type?: number | undefined;
|
|
7861
|
-
} & { [
|
|
7895
|
+
} & { [K_231 in Exclude<keyof I["list_data_socket"]["list_channel_req"], keyof ListChannelDescsRequest>]: never; }) | undefined;
|
|
7862
7896
|
list_channel_message_req?: ({
|
|
7863
7897
|
clan_id?: string | undefined;
|
|
7864
7898
|
channel_id?: string | undefined;
|
|
@@ -7873,7 +7907,7 @@ export declare const Envelope: {
|
|
|
7873
7907
|
limit?: number | undefined;
|
|
7874
7908
|
direction?: number | undefined;
|
|
7875
7909
|
topic_id?: string | undefined;
|
|
7876
|
-
} & { [
|
|
7910
|
+
} & { [K_232 in Exclude<keyof I["list_data_socket"]["list_channel_message_req"], keyof ListChannelMessagesRequest>]: never; }) | undefined;
|
|
7877
7911
|
channel_message_list?: ({
|
|
7878
7912
|
messages?: {
|
|
7879
7913
|
clan_id?: string | undefined;
|
|
@@ -8011,7 +8045,7 @@ export declare const Envelope: {
|
|
|
8011
8045
|
hide_editted?: boolean | undefined;
|
|
8012
8046
|
is_public?: boolean | undefined;
|
|
8013
8047
|
topic_id?: string | undefined;
|
|
8014
|
-
} & { [
|
|
8048
|
+
} & { [K_233 in Exclude<keyof I["list_data_socket"]["channel_message_list"]["messages"][number], keyof ChannelMessage>]: never; })[] & { [K_234 in Exclude<keyof I["list_data_socket"]["channel_message_list"]["messages"], keyof {
|
|
8015
8049
|
clan_id?: string | undefined;
|
|
8016
8050
|
channel_id?: string | undefined;
|
|
8017
8051
|
message_id?: string | undefined;
|
|
@@ -8059,8 +8093,8 @@ export declare const Envelope: {
|
|
|
8059
8093
|
reference?: string | undefined;
|
|
8060
8094
|
mention?: string | undefined;
|
|
8061
8095
|
reaction?: string | undefined;
|
|
8062
|
-
repliers?: (string[] & string[] & { [
|
|
8063
|
-
} & { [
|
|
8096
|
+
repliers?: (string[] & string[] & { [K_235 in Exclude<keyof I["list_data_socket"]["channel_message_list"]["last_seen_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
8097
|
+
} & { [K_236 in Exclude<keyof I["list_data_socket"]["channel_message_list"]["last_seen_message"], keyof ChannelMessageHeader>]: never; }) | undefined;
|
|
8064
8098
|
last_sent_message?: ({
|
|
8065
8099
|
id?: string | undefined;
|
|
8066
8100
|
timestamp_seconds?: number | undefined;
|
|
@@ -8080,9 +8114,9 @@ export declare const Envelope: {
|
|
|
8080
8114
|
reference?: string | undefined;
|
|
8081
8115
|
mention?: string | undefined;
|
|
8082
8116
|
reaction?: string | undefined;
|
|
8083
|
-
repliers?: (string[] & string[] & { [
|
|
8084
|
-
} & { [
|
|
8085
|
-
} & { [
|
|
8117
|
+
repliers?: (string[] & string[] & { [K_237 in Exclude<keyof I["list_data_socket"]["channel_message_list"]["last_sent_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
8118
|
+
} & { [K_238 in Exclude<keyof I["list_data_socket"]["channel_message_list"]["last_sent_message"], keyof ChannelMessageHeader>]: never; }) | undefined;
|
|
8119
|
+
} & { [K_239 in Exclude<keyof I["list_data_socket"]["channel_message_list"], keyof ChannelMessageList>]: never; }) | undefined;
|
|
8086
8120
|
list_channel_users_req?: ({
|
|
8087
8121
|
clan_id?: string | undefined;
|
|
8088
8122
|
channel_id?: string | undefined;
|
|
@@ -8097,7 +8131,7 @@ export declare const Envelope: {
|
|
|
8097
8131
|
limit?: number | undefined;
|
|
8098
8132
|
state?: number | undefined;
|
|
8099
8133
|
cursor?: string | undefined;
|
|
8100
|
-
} & { [
|
|
8134
|
+
} & { [K_240 in Exclude<keyof I["list_data_socket"]["list_channel_users_req"], keyof ListChannelUsersRequest>]: never; }) | undefined;
|
|
8101
8135
|
voice_user_list?: ({
|
|
8102
8136
|
voice_channel_users?: {
|
|
8103
8137
|
id?: string | undefined;
|
|
@@ -8121,13 +8155,13 @@ export declare const Envelope: {
|
|
|
8121
8155
|
user_id?: string | undefined;
|
|
8122
8156
|
channel_id?: string | undefined;
|
|
8123
8157
|
participant?: string | undefined;
|
|
8124
|
-
} & { [
|
|
8158
|
+
} & { [K_241 in Exclude<keyof I["list_data_socket"]["voice_user_list"]["voice_channel_users"][number], keyof import("../api/api").VoiceChannelUser>]: never; })[] & { [K_242 in Exclude<keyof I["list_data_socket"]["voice_user_list"]["voice_channel_users"], keyof {
|
|
8125
8159
|
id?: string | undefined;
|
|
8126
8160
|
user_id?: string | undefined;
|
|
8127
8161
|
channel_id?: string | undefined;
|
|
8128
8162
|
participant?: string | undefined;
|
|
8129
8163
|
}[]>]: never; }) | undefined;
|
|
8130
|
-
} & { [
|
|
8164
|
+
} & { [K_243 in Exclude<keyof I["list_data_socket"]["voice_user_list"], "voice_channel_users">]: never; }) | undefined;
|
|
8131
8165
|
channel_user_list?: ({
|
|
8132
8166
|
channel_users?: {
|
|
8133
8167
|
user_id?: string | undefined;
|
|
@@ -8162,14 +8196,14 @@ export declare const Envelope: {
|
|
|
8162
8196
|
added_by?: string | undefined;
|
|
8163
8197
|
} & {
|
|
8164
8198
|
user_id?: string | undefined;
|
|
8165
|
-
role_id?: (string[] & string[] & { [
|
|
8199
|
+
role_id?: (string[] & string[] & { [K_244 in Exclude<keyof I["list_data_socket"]["channel_user_list"]["channel_users"][number]["role_id"], keyof string[]>]: never; }) | undefined;
|
|
8166
8200
|
id?: string | undefined;
|
|
8167
8201
|
thread_id?: string | undefined;
|
|
8168
8202
|
clan_nick?: string | undefined;
|
|
8169
8203
|
clan_avatar?: string | undefined;
|
|
8170
8204
|
clan_id?: string | undefined;
|
|
8171
8205
|
added_by?: string | undefined;
|
|
8172
|
-
} & { [
|
|
8206
|
+
} & { [K_245 in Exclude<keyof I["list_data_socket"]["channel_user_list"]["channel_users"][number], keyof import("../api/api").ChannelUserList_ChannelUser>]: never; })[] & { [K_246 in Exclude<keyof I["list_data_socket"]["channel_user_list"]["channel_users"], keyof {
|
|
8173
8207
|
user_id?: string | undefined;
|
|
8174
8208
|
role_id?: string[] | undefined;
|
|
8175
8209
|
id?: string | undefined;
|
|
@@ -8181,7 +8215,7 @@ export declare const Envelope: {
|
|
|
8181
8215
|
}[]>]: never; }) | undefined;
|
|
8182
8216
|
cursor?: string | undefined;
|
|
8183
8217
|
channel_id?: string | undefined;
|
|
8184
|
-
} & { [
|
|
8218
|
+
} & { [K_247 in Exclude<keyof I["list_data_socket"]["channel_user_list"], keyof ChannelUserList>]: never; }) | undefined;
|
|
8185
8219
|
list_channel_attachment_req?: ({
|
|
8186
8220
|
clan_id?: string | undefined;
|
|
8187
8221
|
channel_id?: string | undefined;
|
|
@@ -8200,7 +8234,7 @@ export declare const Envelope: {
|
|
|
8200
8234
|
before?: string | undefined;
|
|
8201
8235
|
after?: string | undefined;
|
|
8202
8236
|
around?: string | undefined;
|
|
8203
|
-
} & { [
|
|
8237
|
+
} & { [K_248 in Exclude<keyof I["list_data_socket"]["list_channel_attachment_req"], keyof ListChannelAttachmentRequest>]: never; }) | undefined;
|
|
8204
8238
|
channel_attachment_list?: ({
|
|
8205
8239
|
attachments?: {
|
|
8206
8240
|
id?: string | undefined;
|
|
@@ -8248,7 +8282,7 @@ export declare const Envelope: {
|
|
|
8248
8282
|
message_id?: string | undefined;
|
|
8249
8283
|
width?: number | undefined;
|
|
8250
8284
|
height?: number | undefined;
|
|
8251
|
-
} & { [
|
|
8285
|
+
} & { [K_249 in Exclude<keyof I["list_data_socket"]["channel_attachment_list"]["attachments"][number], keyof import("../api/api").ChannelAttachment>]: never; })[] & { [K_250 in Exclude<keyof I["list_data_socket"]["channel_attachment_list"]["attachments"], keyof {
|
|
8252
8286
|
id?: string | undefined;
|
|
8253
8287
|
filename?: string | undefined;
|
|
8254
8288
|
filetype?: string | undefined;
|
|
@@ -8260,14 +8294,14 @@ export declare const Envelope: {
|
|
|
8260
8294
|
width?: number | undefined;
|
|
8261
8295
|
height?: number | undefined;
|
|
8262
8296
|
}[]>]: never; }) | undefined;
|
|
8263
|
-
} & { [
|
|
8297
|
+
} & { [K_251 in Exclude<keyof I["list_data_socket"]["channel_attachment_list"], "attachments">]: never; }) | undefined;
|
|
8264
8298
|
hashtag_dm_req?: ({
|
|
8265
8299
|
user_id?: string[] | undefined;
|
|
8266
8300
|
limit?: number | undefined;
|
|
8267
8301
|
} & {
|
|
8268
|
-
user_id?: (string[] & string[] & { [
|
|
8302
|
+
user_id?: (string[] & string[] & { [K_252 in Exclude<keyof I["list_data_socket"]["hashtag_dm_req"]["user_id"], keyof string[]>]: never; }) | undefined;
|
|
8269
8303
|
limit?: number | undefined;
|
|
8270
|
-
} & { [
|
|
8304
|
+
} & { [K_253 in Exclude<keyof I["list_data_socket"]["hashtag_dm_req"], keyof HashtagDmListRequest>]: never; }) | undefined;
|
|
8271
8305
|
hashtag_dm_list?: ({
|
|
8272
8306
|
hashtag_dm?: {
|
|
8273
8307
|
channel_id?: string | undefined;
|
|
@@ -8307,7 +8341,7 @@ export declare const Envelope: {
|
|
|
8307
8341
|
type?: number | undefined;
|
|
8308
8342
|
channel_private?: number | undefined;
|
|
8309
8343
|
parent_id?: string | undefined;
|
|
8310
|
-
} & { [
|
|
8344
|
+
} & { [K_254 in Exclude<keyof I["list_data_socket"]["hashtag_dm_list"]["hashtag_dm"][number], keyof import("../api/api").HashtagDm>]: never; })[] & { [K_255 in Exclude<keyof I["list_data_socket"]["hashtag_dm_list"]["hashtag_dm"], keyof {
|
|
8311
8345
|
channel_id?: string | undefined;
|
|
8312
8346
|
channel_label?: string | undefined;
|
|
8313
8347
|
clan_id?: string | undefined;
|
|
@@ -8317,7 +8351,7 @@ export declare const Envelope: {
|
|
|
8317
8351
|
channel_private?: number | undefined;
|
|
8318
8352
|
parent_id?: string | undefined;
|
|
8319
8353
|
}[]>]: never; }) | undefined;
|
|
8320
|
-
} & { [
|
|
8354
|
+
} & { [K_256 in Exclude<keyof I["list_data_socket"]["hashtag_dm_list"], "hashtag_dm">]: never; }) | undefined;
|
|
8321
8355
|
channel_setting_req?: ({
|
|
8322
8356
|
clan_id?: string | undefined;
|
|
8323
8357
|
parent_id?: string | undefined;
|
|
@@ -8340,7 +8374,7 @@ export declare const Envelope: {
|
|
|
8340
8374
|
limit?: number | undefined;
|
|
8341
8375
|
page?: number | undefined;
|
|
8342
8376
|
channel_label?: string | undefined;
|
|
8343
|
-
} & { [
|
|
8377
|
+
} & { [K_257 in Exclude<keyof I["list_data_socket"]["channel_setting_req"], keyof ChannelSettingListRequest>]: never; }) | undefined;
|
|
8344
8378
|
channel_setting_list?: ({
|
|
8345
8379
|
clan_id?: string | undefined;
|
|
8346
8380
|
channel_count?: number | undefined;
|
|
@@ -8429,7 +8463,7 @@ export declare const Envelope: {
|
|
|
8429
8463
|
channel_private?: number | undefined;
|
|
8430
8464
|
channel_type?: number | undefined;
|
|
8431
8465
|
active?: number | undefined;
|
|
8432
|
-
user_ids?: (string[] & string[] & { [
|
|
8466
|
+
user_ids?: (string[] & string[] & { [K_258 in Exclude<keyof I["list_data_socket"]["channel_setting_list"]["channel_setting_list"][number]["user_ids"], keyof string[]>]: never; }) | undefined;
|
|
8433
8467
|
message_count?: number | undefined;
|
|
8434
8468
|
last_sent_message?: ({
|
|
8435
8469
|
id?: string | undefined;
|
|
@@ -8450,9 +8484,9 @@ export declare const Envelope: {
|
|
|
8450
8484
|
reference?: string | undefined;
|
|
8451
8485
|
mention?: string | undefined;
|
|
8452
8486
|
reaction?: string | undefined;
|
|
8453
|
-
repliers?: (string[] & string[] & { [
|
|
8454
|
-
} & { [
|
|
8455
|
-
} & { [
|
|
8487
|
+
repliers?: (string[] & string[] & { [K_259 in Exclude<keyof I["list_data_socket"]["channel_setting_list"]["channel_setting_list"][number]["last_sent_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
8488
|
+
} & { [K_260 in Exclude<keyof I["list_data_socket"]["channel_setting_list"]["channel_setting_list"][number]["last_sent_message"], keyof ChannelMessageHeader>]: never; }) | undefined;
|
|
8489
|
+
} & { [K_261 in Exclude<keyof I["list_data_socket"]["channel_setting_list"]["channel_setting_list"][number], keyof import("../api/api").ChannelSettingItem>]: never; })[] & { [K_262 in Exclude<keyof I["list_data_socket"]["channel_setting_list"]["channel_setting_list"], keyof {
|
|
8456
8490
|
id?: string | undefined;
|
|
8457
8491
|
creator_id?: string | undefined;
|
|
8458
8492
|
parent_id?: string | undefined;
|
|
@@ -8476,17 +8510,17 @@ export declare const Envelope: {
|
|
|
8476
8510
|
repliers?: string[] | undefined;
|
|
8477
8511
|
} | undefined;
|
|
8478
8512
|
}[]>]: never; }) | undefined;
|
|
8479
|
-
} & { [
|
|
8513
|
+
} & { [K_263 in Exclude<keyof I["list_data_socket"]["channel_setting_list"], keyof ChannelSettingListResponse>]: never; }) | undefined;
|
|
8480
8514
|
favorite_channel_req?: ({
|
|
8481
8515
|
clan_id?: string | undefined;
|
|
8482
8516
|
} & {
|
|
8483
8517
|
clan_id?: string | undefined;
|
|
8484
|
-
} & { [
|
|
8518
|
+
} & { [K_264 in Exclude<keyof I["list_data_socket"]["favorite_channel_req"], "clan_id">]: never; }) | undefined;
|
|
8485
8519
|
favorite_channel_list?: ({
|
|
8486
8520
|
channel_ids?: string[] | undefined;
|
|
8487
8521
|
} & {
|
|
8488
|
-
channel_ids?: (string[] & string[] & { [
|
|
8489
|
-
} & { [
|
|
8522
|
+
channel_ids?: (string[] & string[] & { [K_265 in Exclude<keyof I["list_data_socket"]["favorite_channel_list"]["channel_ids"], keyof string[]>]: never; }) | undefined;
|
|
8523
|
+
} & { [K_266 in Exclude<keyof I["list_data_socket"]["favorite_channel_list"], "channel_ids">]: never; }) | undefined;
|
|
8490
8524
|
search_thread_req?: ({
|
|
8491
8525
|
clan_id?: string | undefined;
|
|
8492
8526
|
channel_id?: string | undefined;
|
|
@@ -8495,12 +8529,12 @@ export declare const Envelope: {
|
|
|
8495
8529
|
clan_id?: string | undefined;
|
|
8496
8530
|
channel_id?: string | undefined;
|
|
8497
8531
|
label?: string | undefined;
|
|
8498
|
-
} & { [
|
|
8532
|
+
} & { [K_267 in Exclude<keyof I["list_data_socket"]["search_thread_req"], keyof SearchThreadRequest>]: never; }) | undefined;
|
|
8499
8533
|
notification_channel?: ({
|
|
8500
8534
|
channel_id?: string | undefined;
|
|
8501
8535
|
} & {
|
|
8502
8536
|
channel_id?: string | undefined;
|
|
8503
|
-
} & { [
|
|
8537
|
+
} & { [K_268 in Exclude<keyof I["list_data_socket"]["notification_channel"], "channel_id">]: never; }) | undefined;
|
|
8504
8538
|
notificaion_user_channel?: ({
|
|
8505
8539
|
id?: string | undefined;
|
|
8506
8540
|
notification_setting_type?: number | undefined;
|
|
@@ -8513,24 +8547,24 @@ export declare const Envelope: {
|
|
|
8513
8547
|
time_mute?: Date | undefined;
|
|
8514
8548
|
active?: number | undefined;
|
|
8515
8549
|
channel_id?: string | undefined;
|
|
8516
|
-
} & { [
|
|
8550
|
+
} & { [K_269 in Exclude<keyof I["list_data_socket"]["notificaion_user_channel"], keyof NotificationUserChannel>]: never; }) | undefined;
|
|
8517
8551
|
notification_category?: ({
|
|
8518
8552
|
category_id?: string | undefined;
|
|
8519
8553
|
} & {
|
|
8520
8554
|
category_id?: string | undefined;
|
|
8521
|
-
} & { [
|
|
8555
|
+
} & { [K_270 in Exclude<keyof I["list_data_socket"]["notification_category"], "category_id">]: never; }) | undefined;
|
|
8522
8556
|
notification_clan?: ({
|
|
8523
8557
|
clan_id?: string | undefined;
|
|
8524
8558
|
} & {
|
|
8525
8559
|
clan_id?: string | undefined;
|
|
8526
|
-
} & { [
|
|
8560
|
+
} & { [K_271 in Exclude<keyof I["list_data_socket"]["notification_clan"], "clan_id">]: never; }) | undefined;
|
|
8527
8561
|
notification_setting?: ({
|
|
8528
8562
|
id?: string | undefined;
|
|
8529
8563
|
notification_setting_type?: number | undefined;
|
|
8530
8564
|
} & {
|
|
8531
8565
|
id?: string | undefined;
|
|
8532
8566
|
notification_setting_type?: number | undefined;
|
|
8533
|
-
} & { [
|
|
8567
|
+
} & { [K_272 in Exclude<keyof I["list_data_socket"]["notification_setting"], keyof NotificationSetting>]: never; }) | undefined;
|
|
8534
8568
|
notification_message?: ({
|
|
8535
8569
|
id?: string | undefined;
|
|
8536
8570
|
user_id?: string | undefined;
|
|
@@ -8539,7 +8573,7 @@ export declare const Envelope: {
|
|
|
8539
8573
|
id?: string | undefined;
|
|
8540
8574
|
user_id?: string | undefined;
|
|
8541
8575
|
channel_id?: string | undefined;
|
|
8542
|
-
} & { [
|
|
8576
|
+
} & { [K_273 in Exclude<keyof I["list_data_socket"]["notification_message"], keyof NotifiReactMessage>]: never; }) | undefined;
|
|
8543
8577
|
noti_channel_cat_setting_list?: ({
|
|
8544
8578
|
notification_channel_category_settings_list?: {
|
|
8545
8579
|
id?: string | undefined;
|
|
@@ -8567,14 +8601,14 @@ export declare const Envelope: {
|
|
|
8567
8601
|
notification_setting_type?: number | undefined;
|
|
8568
8602
|
channel_category_title?: string | undefined;
|
|
8569
8603
|
action?: number | undefined;
|
|
8570
|
-
} & { [
|
|
8604
|
+
} & { [K_274 in Exclude<keyof I["list_data_socket"]["noti_channel_cat_setting_list"]["notification_channel_category_settings_list"][number], keyof import("../api/api").NotificationChannelCategorySetting>]: never; })[] & { [K_275 in Exclude<keyof I["list_data_socket"]["noti_channel_cat_setting_list"]["notification_channel_category_settings_list"], keyof {
|
|
8571
8605
|
id?: string | undefined;
|
|
8572
8606
|
channel_category_label?: string | undefined;
|
|
8573
8607
|
notification_setting_type?: number | undefined;
|
|
8574
8608
|
channel_category_title?: string | undefined;
|
|
8575
8609
|
action?: number | undefined;
|
|
8576
8610
|
}[]>]: never; }) | undefined;
|
|
8577
|
-
} & { [
|
|
8611
|
+
} & { [K_276 in Exclude<keyof I["list_data_socket"]["noti_channel_cat_setting_list"], "notification_channel_category_settings_list">]: never; }) | undefined;
|
|
8578
8612
|
list_notification_req?: ({
|
|
8579
8613
|
limit?: number | undefined;
|
|
8580
8614
|
clan_id?: string | undefined;
|
|
@@ -8587,7 +8621,7 @@ export declare const Envelope: {
|
|
|
8587
8621
|
notification_id?: string | undefined;
|
|
8588
8622
|
category?: number | undefined;
|
|
8589
8623
|
direction?: number | undefined;
|
|
8590
|
-
} & { [
|
|
8624
|
+
} & { [K_277 in Exclude<keyof I["list_data_socket"]["list_notification_req"], keyof ListNotificationsRequest>]: never; }) | undefined;
|
|
8591
8625
|
notification_list?: ({
|
|
8592
8626
|
notifications?: {
|
|
8593
8627
|
id?: string | undefined;
|
|
@@ -8867,8 +8901,8 @@ export declare const Envelope: {
|
|
|
8867
8901
|
creator_id?: string | undefined;
|
|
8868
8902
|
channel_label?: string | undefined;
|
|
8869
8903
|
channel_private?: number | undefined;
|
|
8870
|
-
channel_avatar?: (string[] & string[] & { [
|
|
8871
|
-
user_id?: (string[] & string[] & { [
|
|
8904
|
+
channel_avatar?: (string[] & string[] & { [K_278 in Exclude<keyof I["list_data_socket"]["notification_list"]["notifications"][number]["channel"]["channel_avatar"], keyof string[]>]: never; }) | undefined;
|
|
8905
|
+
user_id?: (string[] & string[] & { [K_279 in Exclude<keyof I["list_data_socket"]["notification_list"]["notifications"][number]["channel"]["user_id"], keyof string[]>]: never; }) | undefined;
|
|
8872
8906
|
last_sent_message?: ({
|
|
8873
8907
|
id?: string | undefined;
|
|
8874
8908
|
timestamp_seconds?: number | undefined;
|
|
@@ -8888,8 +8922,8 @@ export declare const Envelope: {
|
|
|
8888
8922
|
reference?: string | undefined;
|
|
8889
8923
|
mention?: string | undefined;
|
|
8890
8924
|
reaction?: string | undefined;
|
|
8891
|
-
repliers?: (string[] & string[] & { [
|
|
8892
|
-
} & { [
|
|
8925
|
+
repliers?: (string[] & string[] & { [K_280 in Exclude<keyof I["list_data_socket"]["notification_list"]["notifications"][number]["channel"]["last_sent_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
8926
|
+
} & { [K_281 in Exclude<keyof I["list_data_socket"]["notification_list"]["notifications"][number]["channel"]["last_sent_message"], keyof ChannelMessageHeader>]: never; }) | undefined;
|
|
8893
8927
|
last_seen_message?: ({
|
|
8894
8928
|
id?: string | undefined;
|
|
8895
8929
|
timestamp_seconds?: number | undefined;
|
|
@@ -8909,30 +8943,30 @@ export declare const Envelope: {
|
|
|
8909
8943
|
reference?: string | undefined;
|
|
8910
8944
|
mention?: string | undefined;
|
|
8911
8945
|
reaction?: string | undefined;
|
|
8912
|
-
repliers?: (string[] & string[] & { [
|
|
8913
|
-
} & { [
|
|
8914
|
-
is_online?: (boolean[] & boolean[] & { [
|
|
8946
|
+
repliers?: (string[] & string[] & { [K_282 in Exclude<keyof I["list_data_socket"]["notification_list"]["notifications"][number]["channel"]["last_seen_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
8947
|
+
} & { [K_283 in Exclude<keyof I["list_data_socket"]["notification_list"]["notifications"][number]["channel"]["last_seen_message"], keyof ChannelMessageHeader>]: never; }) | undefined;
|
|
8948
|
+
is_online?: (boolean[] & boolean[] & { [K_284 in Exclude<keyof I["list_data_socket"]["notification_list"]["notifications"][number]["channel"]["is_online"], keyof boolean[]>]: never; }) | undefined;
|
|
8915
8949
|
meeting_code?: string | undefined;
|
|
8916
8950
|
count_mess_unread?: number | undefined;
|
|
8917
8951
|
active?: number | undefined;
|
|
8918
8952
|
last_pin_message?: string | undefined;
|
|
8919
|
-
usernames?: (string[] & string[] & { [
|
|
8953
|
+
usernames?: (string[] & string[] & { [K_285 in Exclude<keyof I["list_data_socket"]["notification_list"]["notifications"][number]["channel"]["usernames"], keyof string[]>]: never; }) | undefined;
|
|
8920
8954
|
creator_name?: string | undefined;
|
|
8921
8955
|
create_time_seconds?: number | undefined;
|
|
8922
8956
|
update_time_seconds?: number | undefined;
|
|
8923
|
-
metadata?: (string[] & string[] & { [
|
|
8924
|
-
about_me?: (string[] & string[] & { [
|
|
8957
|
+
metadata?: (string[] & string[] & { [K_286 in Exclude<keyof I["list_data_socket"]["notification_list"]["notifications"][number]["channel"]["metadata"], keyof string[]>]: never; }) | undefined;
|
|
8958
|
+
about_me?: (string[] & string[] & { [K_287 in Exclude<keyof I["list_data_socket"]["notification_list"]["notifications"][number]["channel"]["about_me"], keyof string[]>]: never; }) | undefined;
|
|
8925
8959
|
clan_name?: string | undefined;
|
|
8926
8960
|
app_id?: string | undefined;
|
|
8927
8961
|
is_mute?: boolean | undefined;
|
|
8928
8962
|
age_restricted?: number | undefined;
|
|
8929
8963
|
topic?: string | undefined;
|
|
8930
8964
|
e2ee?: number | undefined;
|
|
8931
|
-
display_names?: (string[] & string[] & { [
|
|
8932
|
-
} & { [
|
|
8965
|
+
display_names?: (string[] & string[] & { [K_288 in Exclude<keyof I["list_data_socket"]["notification_list"]["notifications"][number]["channel"]["display_names"], keyof string[]>]: never; }) | undefined;
|
|
8966
|
+
} & { [K_289 in Exclude<keyof I["list_data_socket"]["notification_list"]["notifications"][number]["channel"], keyof ChannelDescription1>]: never; }) | undefined;
|
|
8933
8967
|
topic_id?: string | undefined;
|
|
8934
8968
|
category?: number | undefined;
|
|
8935
|
-
} & { [
|
|
8969
|
+
} & { [K_290 in Exclude<keyof I["list_data_socket"]["notification_list"]["notifications"][number], keyof Notification>]: never; })[] & { [K_291 in Exclude<keyof I["list_data_socket"]["notification_list"]["notifications"], keyof {
|
|
8936
8970
|
id?: string | undefined;
|
|
8937
8971
|
subject?: string | undefined;
|
|
8938
8972
|
content?: string | undefined;
|
|
@@ -9001,7 +9035,7 @@ export declare const Envelope: {
|
|
|
9001
9035
|
category?: number | undefined;
|
|
9002
9036
|
}[]>]: never; }) | undefined;
|
|
9003
9037
|
cacheable_cursor?: string | undefined;
|
|
9004
|
-
} & { [
|
|
9038
|
+
} & { [K_292 in Exclude<keyof I["list_data_socket"]["notification_list"], keyof NotificationList>]: never; }) | undefined;
|
|
9005
9039
|
sticker_list?: ({
|
|
9006
9040
|
stickers?: {
|
|
9007
9041
|
id?: string | undefined;
|
|
@@ -9053,7 +9087,7 @@ export declare const Envelope: {
|
|
|
9053
9087
|
clan_name?: string | undefined;
|
|
9054
9088
|
media_type?: number | undefined;
|
|
9055
9089
|
is_for_sale?: boolean | undefined;
|
|
9056
|
-
} & { [
|
|
9090
|
+
} & { [K_293 in Exclude<keyof I["list_data_socket"]["sticker_list"]["stickers"][number], keyof import("../api/api").ClanSticker>]: never; })[] & { [K_294 in Exclude<keyof I["list_data_socket"]["sticker_list"]["stickers"], keyof {
|
|
9057
9091
|
id?: string | undefined;
|
|
9058
9092
|
source?: string | undefined;
|
|
9059
9093
|
shortname?: string | undefined;
|
|
@@ -9066,7 +9100,7 @@ export declare const Envelope: {
|
|
|
9066
9100
|
media_type?: number | undefined;
|
|
9067
9101
|
is_for_sale?: boolean | undefined;
|
|
9068
9102
|
}[]>]: never; }) | undefined;
|
|
9069
|
-
} & { [
|
|
9103
|
+
} & { [K_295 in Exclude<keyof I["list_data_socket"]["sticker_list"], "stickers">]: never; }) | undefined;
|
|
9070
9104
|
emoji_recent_list?: ({
|
|
9071
9105
|
emoji_recents?: {
|
|
9072
9106
|
emoji_recents_id?: string | undefined;
|
|
@@ -9086,17 +9120,17 @@ export declare const Envelope: {
|
|
|
9086
9120
|
emoji_recents_id?: string | undefined;
|
|
9087
9121
|
emoji_id?: string | undefined;
|
|
9088
9122
|
update_time?: Date | undefined;
|
|
9089
|
-
} & { [
|
|
9123
|
+
} & { [K_296 in Exclude<keyof I["list_data_socket"]["emoji_recent_list"]["emoji_recents"][number], keyof import("../api/api").EmojiRecent>]: never; })[] & { [K_297 in Exclude<keyof I["list_data_socket"]["emoji_recent_list"]["emoji_recents"], keyof {
|
|
9090
9124
|
emoji_recents_id?: string | undefined;
|
|
9091
9125
|
emoji_id?: string | undefined;
|
|
9092
9126
|
update_time?: Date | undefined;
|
|
9093
9127
|
}[]>]: never; }) | undefined;
|
|
9094
|
-
} & { [
|
|
9128
|
+
} & { [K_298 in Exclude<keyof I["list_data_socket"]["emoji_recent_list"], "emoji_recents">]: never; }) | undefined;
|
|
9095
9129
|
clan_webhook_req?: ({
|
|
9096
9130
|
clan_id?: string | undefined;
|
|
9097
9131
|
} & {
|
|
9098
9132
|
clan_id?: string | undefined;
|
|
9099
|
-
} & { [
|
|
9133
|
+
} & { [K_299 in Exclude<keyof I["list_data_socket"]["clan_webhook_req"], "clan_id">]: never; }) | undefined;
|
|
9100
9134
|
clan_webhook_list?: ({
|
|
9101
9135
|
list_clan_webhooks?: {
|
|
9102
9136
|
id?: string | undefined;
|
|
@@ -9140,7 +9174,7 @@ export declare const Envelope: {
|
|
|
9140
9174
|
avatar?: string | undefined;
|
|
9141
9175
|
create_time?: string | undefined;
|
|
9142
9176
|
update_time?: string | undefined;
|
|
9143
|
-
} & { [
|
|
9177
|
+
} & { [K_300 in Exclude<keyof I["list_data_socket"]["clan_webhook_list"]["list_clan_webhooks"][number], keyof import("../api/api").ClanWebhook>]: never; })[] & { [K_301 in Exclude<keyof I["list_data_socket"]["clan_webhook_list"]["list_clan_webhooks"], keyof {
|
|
9144
9178
|
id?: string | undefined;
|
|
9145
9179
|
webhook_name?: string | undefined;
|
|
9146
9180
|
clan_id?: string | undefined;
|
|
@@ -9151,14 +9185,14 @@ export declare const Envelope: {
|
|
|
9151
9185
|
create_time?: string | undefined;
|
|
9152
9186
|
update_time?: string | undefined;
|
|
9153
9187
|
}[]>]: never; }) | undefined;
|
|
9154
|
-
} & { [
|
|
9188
|
+
} & { [K_302 in Exclude<keyof I["list_data_socket"]["clan_webhook_list"], "list_clan_webhooks">]: never; }) | undefined;
|
|
9155
9189
|
webhook_list_req?: ({
|
|
9156
9190
|
channel_id?: string | undefined;
|
|
9157
9191
|
clan_id?: string | undefined;
|
|
9158
9192
|
} & {
|
|
9159
9193
|
channel_id?: string | undefined;
|
|
9160
9194
|
clan_id?: string | undefined;
|
|
9161
|
-
} & { [
|
|
9195
|
+
} & { [K_303 in Exclude<keyof I["list_data_socket"]["webhook_list_req"], keyof WebhookListRequest>]: never; }) | undefined;
|
|
9162
9196
|
webhook_list?: ({
|
|
9163
9197
|
webhooks?: {
|
|
9164
9198
|
id?: string | undefined;
|
|
@@ -9206,7 +9240,7 @@ export declare const Envelope: {
|
|
|
9206
9240
|
update_time?: string | undefined;
|
|
9207
9241
|
avatar?: string | undefined;
|
|
9208
9242
|
status?: number | undefined;
|
|
9209
|
-
} & { [
|
|
9243
|
+
} & { [K_304 in Exclude<keyof I["list_data_socket"]["webhook_list"]["webhooks"][number], keyof Webhook>]: never; })[] & { [K_305 in Exclude<keyof I["list_data_socket"]["webhook_list"]["webhooks"], keyof {
|
|
9210
9244
|
id?: string | undefined;
|
|
9211
9245
|
webhook_name?: string | undefined;
|
|
9212
9246
|
channel_id?: string | undefined;
|
|
@@ -9218,12 +9252,12 @@ export declare const Envelope: {
|
|
|
9218
9252
|
avatar?: string | undefined;
|
|
9219
9253
|
status?: number | undefined;
|
|
9220
9254
|
}[]>]: never; }) | undefined;
|
|
9221
|
-
} & { [
|
|
9255
|
+
} & { [K_306 in Exclude<keyof I["list_data_socket"]["webhook_list"], "webhooks">]: never; }) | undefined;
|
|
9222
9256
|
permission_list_req?: ({
|
|
9223
9257
|
role_id?: string | undefined;
|
|
9224
9258
|
} & {
|
|
9225
9259
|
role_id?: string | undefined;
|
|
9226
|
-
} & { [
|
|
9260
|
+
} & { [K_307 in Exclude<keyof I["list_data_socket"]["permission_list_req"], "role_id">]: never; }) | undefined;
|
|
9227
9261
|
permission_list?: ({
|
|
9228
9262
|
permissions?: {
|
|
9229
9263
|
id?: string | undefined;
|
|
@@ -9260,7 +9294,7 @@ export declare const Envelope: {
|
|
|
9260
9294
|
active?: number | undefined;
|
|
9261
9295
|
scope?: number | undefined;
|
|
9262
9296
|
level?: number | undefined;
|
|
9263
|
-
} & { [
|
|
9297
|
+
} & { [K_308 in Exclude<keyof I["list_data_socket"]["permission_list"]["permissions"][number], keyof import("../api/api").Permission>]: never; })[] & { [K_309 in Exclude<keyof I["list_data_socket"]["permission_list"]["permissions"], keyof {
|
|
9264
9298
|
id?: string | undefined;
|
|
9265
9299
|
title?: string | undefined;
|
|
9266
9300
|
slug?: string | undefined;
|
|
@@ -9270,7 +9304,7 @@ export declare const Envelope: {
|
|
|
9270
9304
|
level?: number | undefined;
|
|
9271
9305
|
}[]>]: never; }) | undefined;
|
|
9272
9306
|
max_level_permission?: number | undefined;
|
|
9273
|
-
} & { [
|
|
9307
|
+
} & { [K_310 in Exclude<keyof I["list_data_socket"]["permission_list"], keyof PermissionList>]: never; }) | undefined;
|
|
9274
9308
|
role_user_req?: ({
|
|
9275
9309
|
role_id?: string | undefined;
|
|
9276
9310
|
limit?: number | undefined;
|
|
@@ -9279,7 +9313,7 @@ export declare const Envelope: {
|
|
|
9279
9313
|
role_id?: string | undefined;
|
|
9280
9314
|
limit?: number | undefined;
|
|
9281
9315
|
cursor?: string | undefined;
|
|
9282
|
-
} & { [
|
|
9316
|
+
} & { [K_311 in Exclude<keyof I["list_data_socket"]["role_user_req"], keyof ListRoleUsersRequest>]: never; }) | undefined;
|
|
9283
9317
|
role_user_list?: ({
|
|
9284
9318
|
role_users?: {
|
|
9285
9319
|
id?: string | undefined;
|
|
@@ -9316,7 +9350,7 @@ export declare const Envelope: {
|
|
|
9316
9350
|
lang_tag?: string | undefined;
|
|
9317
9351
|
location?: string | undefined;
|
|
9318
9352
|
online?: boolean | undefined;
|
|
9319
|
-
} & { [
|
|
9353
|
+
} & { [K_312 in Exclude<keyof I["list_data_socket"]["role_user_list"]["role_users"][number], keyof import("../api/api").RoleUserList_RoleUser>]: never; })[] & { [K_313 in Exclude<keyof I["list_data_socket"]["role_user_list"]["role_users"], keyof {
|
|
9320
9354
|
id?: string | undefined;
|
|
9321
9355
|
username?: string | undefined;
|
|
9322
9356
|
display_name?: string | undefined;
|
|
@@ -9326,14 +9360,14 @@ export declare const Envelope: {
|
|
|
9326
9360
|
online?: boolean | undefined;
|
|
9327
9361
|
}[]>]: never; }) | undefined;
|
|
9328
9362
|
cursor?: string | undefined;
|
|
9329
|
-
} & { [
|
|
9363
|
+
} & { [K_314 in Exclude<keyof I["list_data_socket"]["role_user_list"], keyof RoleUserList>]: never; }) | undefined;
|
|
9330
9364
|
permission_user_req?: ({
|
|
9331
9365
|
clan_id?: string | undefined;
|
|
9332
9366
|
channel_id?: string | undefined;
|
|
9333
9367
|
} & {
|
|
9334
9368
|
clan_id?: string | undefined;
|
|
9335
9369
|
channel_id?: string | undefined;
|
|
9336
|
-
} & { [
|
|
9370
|
+
} & { [K_315 in Exclude<keyof I["list_data_socket"]["permission_user_req"], keyof ListPermissionOfUsersRequest>]: never; }) | undefined;
|
|
9337
9371
|
role_list?: ({
|
|
9338
9372
|
roles?: {
|
|
9339
9373
|
id?: string | undefined;
|
|
@@ -9508,7 +9542,7 @@ export declare const Envelope: {
|
|
|
9508
9542
|
lang_tag?: string | undefined;
|
|
9509
9543
|
location?: string | undefined;
|
|
9510
9544
|
online?: boolean | undefined;
|
|
9511
|
-
} & { [
|
|
9545
|
+
} & { [K_316 in Exclude<keyof I["list_data_socket"]["role_list"]["roles"][number]["role_user_list"]["role_users"][number], keyof import("../api/api").RoleUserList_RoleUser>]: never; })[] & { [K_317 in Exclude<keyof I["list_data_socket"]["role_list"]["roles"][number]["role_user_list"]["role_users"], keyof {
|
|
9512
9546
|
id?: string | undefined;
|
|
9513
9547
|
username?: string | undefined;
|
|
9514
9548
|
display_name?: string | undefined;
|
|
@@ -9518,7 +9552,7 @@ export declare const Envelope: {
|
|
|
9518
9552
|
online?: boolean | undefined;
|
|
9519
9553
|
}[]>]: never; }) | undefined;
|
|
9520
9554
|
cursor?: string | undefined;
|
|
9521
|
-
} & { [
|
|
9555
|
+
} & { [K_318 in Exclude<keyof I["list_data_socket"]["role_list"]["roles"][number]["role_user_list"], keyof RoleUserList>]: never; }) | undefined;
|
|
9522
9556
|
permission_list?: ({
|
|
9523
9557
|
permissions?: {
|
|
9524
9558
|
id?: string | undefined;
|
|
@@ -9555,7 +9589,7 @@ export declare const Envelope: {
|
|
|
9555
9589
|
active?: number | undefined;
|
|
9556
9590
|
scope?: number | undefined;
|
|
9557
9591
|
level?: number | undefined;
|
|
9558
|
-
} & { [
|
|
9592
|
+
} & { [K_319 in Exclude<keyof I["list_data_socket"]["role_list"]["roles"][number]["permission_list"]["permissions"][number], keyof import("../api/api").Permission>]: never; })[] & { [K_320 in Exclude<keyof I["list_data_socket"]["role_list"]["roles"][number]["permission_list"]["permissions"], keyof {
|
|
9559
9593
|
id?: string | undefined;
|
|
9560
9594
|
title?: string | undefined;
|
|
9561
9595
|
slug?: string | undefined;
|
|
@@ -9565,12 +9599,12 @@ export declare const Envelope: {
|
|
|
9565
9599
|
level?: number | undefined;
|
|
9566
9600
|
}[]>]: never; }) | undefined;
|
|
9567
9601
|
max_level_permission?: number | undefined;
|
|
9568
|
-
} & { [
|
|
9602
|
+
} & { [K_321 in Exclude<keyof I["list_data_socket"]["role_list"]["roles"][number]["permission_list"], keyof PermissionList>]: never; }) | undefined;
|
|
9569
9603
|
role_channel_active?: number | undefined;
|
|
9570
|
-
channel_ids?: (string[] & string[] & { [
|
|
9604
|
+
channel_ids?: (string[] & string[] & { [K_322 in Exclude<keyof I["list_data_socket"]["role_list"]["roles"][number]["channel_ids"], keyof string[]>]: never; }) | undefined;
|
|
9571
9605
|
max_level_permission?: number | undefined;
|
|
9572
9606
|
order_role?: number | undefined;
|
|
9573
|
-
} & { [
|
|
9607
|
+
} & { [K_323 in Exclude<keyof I["list_data_socket"]["role_list"]["roles"][number], keyof Role>]: never; })[] & { [K_324 in Exclude<keyof I["list_data_socket"]["role_list"]["roles"], keyof {
|
|
9574
9608
|
id?: string | undefined;
|
|
9575
9609
|
title?: string | undefined;
|
|
9576
9610
|
color?: string | undefined;
|
|
@@ -9614,7 +9648,7 @@ export declare const Envelope: {
|
|
|
9614
9648
|
next_cursor?: string | undefined;
|
|
9615
9649
|
prev_cursor?: string | undefined;
|
|
9616
9650
|
cacheable_cursor?: string | undefined;
|
|
9617
|
-
} & { [
|
|
9651
|
+
} & { [K_325 in Exclude<keyof I["list_data_socket"]["role_list"], keyof RoleList>]: never; }) | undefined;
|
|
9618
9652
|
role_list_event_req?: ({
|
|
9619
9653
|
clan_id?: string | undefined;
|
|
9620
9654
|
limit?: number | undefined;
|
|
@@ -9625,7 +9659,7 @@ export declare const Envelope: {
|
|
|
9625
9659
|
limit?: number | undefined;
|
|
9626
9660
|
state?: number | undefined;
|
|
9627
9661
|
cursor?: string | undefined;
|
|
9628
|
-
} & { [
|
|
9662
|
+
} & { [K_326 in Exclude<keyof I["list_data_socket"]["role_list_event_req"], keyof RoleListEventRequest>]: never; }) | undefined;
|
|
9629
9663
|
role_event_list?: ({
|
|
9630
9664
|
limit?: number | undefined;
|
|
9631
9665
|
state?: number | undefined;
|
|
@@ -9856,7 +9890,7 @@ export declare const Envelope: {
|
|
|
9856
9890
|
lang_tag?: string | undefined;
|
|
9857
9891
|
location?: string | undefined;
|
|
9858
9892
|
online?: boolean | undefined;
|
|
9859
|
-
} & { [
|
|
9893
|
+
} & { [K_327 in Exclude<keyof I["list_data_socket"]["role_event_list"]["roles"]["roles"][number]["role_user_list"]["role_users"][number], keyof import("../api/api").RoleUserList_RoleUser>]: never; })[] & { [K_328 in Exclude<keyof I["list_data_socket"]["role_event_list"]["roles"]["roles"][number]["role_user_list"]["role_users"], keyof {
|
|
9860
9894
|
id?: string | undefined;
|
|
9861
9895
|
username?: string | undefined;
|
|
9862
9896
|
display_name?: string | undefined;
|
|
@@ -9866,7 +9900,7 @@ export declare const Envelope: {
|
|
|
9866
9900
|
online?: boolean | undefined;
|
|
9867
9901
|
}[]>]: never; }) | undefined;
|
|
9868
9902
|
cursor?: string | undefined;
|
|
9869
|
-
} & { [
|
|
9903
|
+
} & { [K_329 in Exclude<keyof I["list_data_socket"]["role_event_list"]["roles"]["roles"][number]["role_user_list"], keyof RoleUserList>]: never; }) | undefined;
|
|
9870
9904
|
permission_list?: ({
|
|
9871
9905
|
permissions?: {
|
|
9872
9906
|
id?: string | undefined;
|
|
@@ -9903,7 +9937,7 @@ export declare const Envelope: {
|
|
|
9903
9937
|
active?: number | undefined;
|
|
9904
9938
|
scope?: number | undefined;
|
|
9905
9939
|
level?: number | undefined;
|
|
9906
|
-
} & { [
|
|
9940
|
+
} & { [K_330 in Exclude<keyof I["list_data_socket"]["role_event_list"]["roles"]["roles"][number]["permission_list"]["permissions"][number], keyof import("../api/api").Permission>]: never; })[] & { [K_331 in Exclude<keyof I["list_data_socket"]["role_event_list"]["roles"]["roles"][number]["permission_list"]["permissions"], keyof {
|
|
9907
9941
|
id?: string | undefined;
|
|
9908
9942
|
title?: string | undefined;
|
|
9909
9943
|
slug?: string | undefined;
|
|
@@ -9913,12 +9947,12 @@ export declare const Envelope: {
|
|
|
9913
9947
|
level?: number | undefined;
|
|
9914
9948
|
}[]>]: never; }) | undefined;
|
|
9915
9949
|
max_level_permission?: number | undefined;
|
|
9916
|
-
} & { [
|
|
9950
|
+
} & { [K_332 in Exclude<keyof I["list_data_socket"]["role_event_list"]["roles"]["roles"][number]["permission_list"], keyof PermissionList>]: never; }) | undefined;
|
|
9917
9951
|
role_channel_active?: number | undefined;
|
|
9918
|
-
channel_ids?: (string[] & string[] & { [
|
|
9952
|
+
channel_ids?: (string[] & string[] & { [K_333 in Exclude<keyof I["list_data_socket"]["role_event_list"]["roles"]["roles"][number]["channel_ids"], keyof string[]>]: never; }) | undefined;
|
|
9919
9953
|
max_level_permission?: number | undefined;
|
|
9920
9954
|
order_role?: number | undefined;
|
|
9921
|
-
} & { [
|
|
9955
|
+
} & { [K_334 in Exclude<keyof I["list_data_socket"]["role_event_list"]["roles"]["roles"][number], keyof Role>]: never; })[] & { [K_335 in Exclude<keyof I["list_data_socket"]["role_event_list"]["roles"]["roles"], keyof {
|
|
9922
9956
|
id?: string | undefined;
|
|
9923
9957
|
title?: string | undefined;
|
|
9924
9958
|
color?: string | undefined;
|
|
@@ -9962,15 +9996,15 @@ export declare const Envelope: {
|
|
|
9962
9996
|
next_cursor?: string | undefined;
|
|
9963
9997
|
prev_cursor?: string | undefined;
|
|
9964
9998
|
cacheable_cursor?: string | undefined;
|
|
9965
|
-
} & { [
|
|
9966
|
-
} & { [
|
|
9999
|
+
} & { [K_336 in Exclude<keyof I["list_data_socket"]["role_event_list"]["roles"], keyof RoleList>]: never; }) | undefined;
|
|
10000
|
+
} & { [K_337 in Exclude<keyof I["list_data_socket"]["role_event_list"], keyof RoleListEventResponse>]: never; }) | undefined;
|
|
9967
10001
|
user_permission_req?: ({
|
|
9968
10002
|
clan_id?: string | undefined;
|
|
9969
10003
|
channel_id?: string | undefined;
|
|
9970
10004
|
} & {
|
|
9971
10005
|
clan_id?: string | undefined;
|
|
9972
10006
|
channel_id?: string | undefined;
|
|
9973
|
-
} & { [
|
|
10007
|
+
} & { [K_338 in Exclude<keyof I["list_data_socket"]["user_permission_req"], keyof UserPermissionInChannelListRequest>]: never; }) | undefined;
|
|
9974
10008
|
user_permission_list?: ({
|
|
9975
10009
|
clan_id?: string | undefined;
|
|
9976
10010
|
channel_id?: string | undefined;
|
|
@@ -10025,7 +10059,7 @@ export declare const Envelope: {
|
|
|
10025
10059
|
active?: number | undefined;
|
|
10026
10060
|
scope?: number | undefined;
|
|
10027
10061
|
level?: number | undefined;
|
|
10028
|
-
} & { [
|
|
10062
|
+
} & { [K_339 in Exclude<keyof I["list_data_socket"]["user_permission_list"]["permissions"]["permissions"][number], keyof import("../api/api").Permission>]: never; })[] & { [K_340 in Exclude<keyof I["list_data_socket"]["user_permission_list"]["permissions"]["permissions"], keyof {
|
|
10029
10063
|
id?: string | undefined;
|
|
10030
10064
|
title?: string | undefined;
|
|
10031
10065
|
slug?: string | undefined;
|
|
@@ -10035,8 +10069,8 @@ export declare const Envelope: {
|
|
|
10035
10069
|
level?: number | undefined;
|
|
10036
10070
|
}[]>]: never; }) | undefined;
|
|
10037
10071
|
max_level_permission?: number | undefined;
|
|
10038
|
-
} & { [
|
|
10039
|
-
} & { [
|
|
10072
|
+
} & { [K_341 in Exclude<keyof I["list_data_socket"]["user_permission_list"]["permissions"], keyof PermissionList>]: never; }) | undefined;
|
|
10073
|
+
} & { [K_342 in Exclude<keyof I["list_data_socket"]["user_permission_list"], keyof UserPermissionInChannelListResponse>]: never; }) | undefined;
|
|
10040
10074
|
permission_role_req?: ({
|
|
10041
10075
|
role_id?: string | undefined;
|
|
10042
10076
|
channel_id?: string | undefined;
|
|
@@ -10045,7 +10079,7 @@ export declare const Envelope: {
|
|
|
10045
10079
|
role_id?: string | undefined;
|
|
10046
10080
|
channel_id?: string | undefined;
|
|
10047
10081
|
user_id?: string | undefined;
|
|
10048
|
-
} & { [
|
|
10082
|
+
} & { [K_343 in Exclude<keyof I["list_data_socket"]["permission_role_req"], keyof PermissionRoleChannelListEventRequest>]: never; }) | undefined;
|
|
10049
10083
|
permission_role_list?: ({
|
|
10050
10084
|
role_id?: string | undefined;
|
|
10051
10085
|
channel_id?: string | undefined;
|
|
@@ -10067,11 +10101,11 @@ export declare const Envelope: {
|
|
|
10067
10101
|
} & {
|
|
10068
10102
|
permission_id?: string | undefined;
|
|
10069
10103
|
active?: boolean | undefined;
|
|
10070
|
-
} & { [
|
|
10104
|
+
} & { [K_344 in Exclude<keyof I["list_data_socket"]["permission_role_list"]["permission_role_channel"][number], keyof import("../api/api").PermissionRoleChannel>]: never; })[] & { [K_345 in Exclude<keyof I["list_data_socket"]["permission_role_list"]["permission_role_channel"], keyof {
|
|
10071
10105
|
permission_id?: string | undefined;
|
|
10072
10106
|
active?: boolean | undefined;
|
|
10073
10107
|
}[]>]: never; }) | undefined;
|
|
10074
|
-
} & { [
|
|
10108
|
+
} & { [K_346 in Exclude<keyof I["list_data_socket"]["permission_role_list"], keyof PermissionRoleChannelListEventResponse>]: never; }) | undefined;
|
|
10075
10109
|
emoji_list?: ({
|
|
10076
10110
|
emoji_list?: {
|
|
10077
10111
|
id?: string | undefined;
|
|
@@ -10115,7 +10149,7 @@ export declare const Envelope: {
|
|
|
10115
10149
|
logo?: string | undefined;
|
|
10116
10150
|
clan_name?: string | undefined;
|
|
10117
10151
|
is_for_sale?: boolean | undefined;
|
|
10118
|
-
} & { [
|
|
10152
|
+
} & { [K_347 in Exclude<keyof I["list_data_socket"]["emoji_list"]["emoji_list"][number], keyof import("../api/api").ClanEmoji>]: never; })[] & { [K_348 in Exclude<keyof I["list_data_socket"]["emoji_list"]["emoji_list"], keyof {
|
|
10119
10153
|
id?: string | undefined;
|
|
10120
10154
|
src?: string | undefined;
|
|
10121
10155
|
shortname?: string | undefined;
|
|
@@ -10126,7 +10160,7 @@ export declare const Envelope: {
|
|
|
10126
10160
|
clan_name?: string | undefined;
|
|
10127
10161
|
is_for_sale?: boolean | undefined;
|
|
10128
10162
|
}[]>]: never; }) | undefined;
|
|
10129
|
-
} & { [
|
|
10163
|
+
} & { [K_349 in Exclude<keyof I["list_data_socket"]["emoji_list"], "emoji_list">]: never; }) | undefined;
|
|
10130
10164
|
list_friend_req?: ({
|
|
10131
10165
|
limit?: number | undefined;
|
|
10132
10166
|
state?: number | undefined;
|
|
@@ -10135,7 +10169,7 @@ export declare const Envelope: {
|
|
|
10135
10169
|
limit?: number | undefined;
|
|
10136
10170
|
state?: number | undefined;
|
|
10137
10171
|
cursor?: string | undefined;
|
|
10138
|
-
} & { [
|
|
10172
|
+
} & { [K_350 in Exclude<keyof I["list_data_socket"]["list_friend_req"], keyof ListFriendsRequest>]: never; }) | undefined;
|
|
10139
10173
|
friend_list?: ({
|
|
10140
10174
|
friends?: {
|
|
10141
10175
|
user?: {
|
|
@@ -10275,12 +10309,12 @@ export declare const Envelope: {
|
|
|
10275
10309
|
is_mobile?: boolean | undefined;
|
|
10276
10310
|
dob?: Date | undefined;
|
|
10277
10311
|
mezon_id?: string | undefined;
|
|
10278
|
-
list_nick_names?: (string[] & string[] & { [
|
|
10279
|
-
} & { [
|
|
10312
|
+
list_nick_names?: (string[] & string[] & { [K_351 in Exclude<keyof I["list_data_socket"]["friend_list"]["friends"][number]["user"]["list_nick_names"], keyof string[]>]: never; }) | undefined;
|
|
10313
|
+
} & { [K_352 in Exclude<keyof I["list_data_socket"]["friend_list"]["friends"][number]["user"], keyof import("../api/api").User>]: never; }) | undefined;
|
|
10280
10314
|
state?: number | undefined;
|
|
10281
10315
|
update_time?: Date | undefined;
|
|
10282
10316
|
source_id?: string | undefined;
|
|
10283
|
-
} & { [
|
|
10317
|
+
} & { [K_353 in Exclude<keyof I["list_data_socket"]["friend_list"]["friends"][number], keyof import("../api/api").Friend>]: never; })[] & { [K_354 in Exclude<keyof I["list_data_socket"]["friend_list"]["friends"], keyof {
|
|
10284
10318
|
user?: {
|
|
10285
10319
|
id?: string | undefined;
|
|
10286
10320
|
username?: string | undefined;
|
|
@@ -10311,12 +10345,12 @@ export declare const Envelope: {
|
|
|
10311
10345
|
source_id?: string | undefined;
|
|
10312
10346
|
}[]>]: never; }) | undefined;
|
|
10313
10347
|
cursor?: string | undefined;
|
|
10314
|
-
} & { [
|
|
10348
|
+
} & { [K_355 in Exclude<keyof I["list_data_socket"]["friend_list"], keyof FriendList>]: never; }) | undefined;
|
|
10315
10349
|
list_apps_req?: ({
|
|
10316
10350
|
clan_id?: string | undefined;
|
|
10317
10351
|
} & {
|
|
10318
10352
|
clan_id?: string | undefined;
|
|
10319
|
-
} & { [
|
|
10353
|
+
} & { [K_356 in Exclude<keyof I["list_data_socket"]["list_apps_req"], "clan_id">]: never; }) | undefined;
|
|
10320
10354
|
channel_apps_list?: ({
|
|
10321
10355
|
channel_apps?: {
|
|
10322
10356
|
id?: string | undefined;
|
|
@@ -10344,14 +10378,14 @@ export declare const Envelope: {
|
|
|
10344
10378
|
channel_id?: string | undefined;
|
|
10345
10379
|
app_id?: string | undefined;
|
|
10346
10380
|
app_url?: string | undefined;
|
|
10347
|
-
} & { [
|
|
10381
|
+
} & { [K_357 in Exclude<keyof I["list_data_socket"]["channel_apps_list"]["channel_apps"][number], keyof import("../api/api").ChannelAppResponse>]: never; })[] & { [K_358 in Exclude<keyof I["list_data_socket"]["channel_apps_list"]["channel_apps"], keyof {
|
|
10348
10382
|
id?: string | undefined;
|
|
10349
10383
|
clan_id?: string | undefined;
|
|
10350
10384
|
channel_id?: string | undefined;
|
|
10351
10385
|
app_id?: string | undefined;
|
|
10352
10386
|
app_url?: string | undefined;
|
|
10353
10387
|
}[]>]: never; }) | undefined;
|
|
10354
|
-
} & { [
|
|
10388
|
+
} & { [K_359 in Exclude<keyof I["list_data_socket"]["channel_apps_list"], "channel_apps">]: never; }) | undefined;
|
|
10355
10389
|
user_activity_list?: ({
|
|
10356
10390
|
activities?: {
|
|
10357
10391
|
user_id?: string | undefined;
|
|
@@ -10391,7 +10425,7 @@ export declare const Envelope: {
|
|
|
10391
10425
|
end_time?: Date | undefined;
|
|
10392
10426
|
application_id?: string | undefined;
|
|
10393
10427
|
status?: number | undefined;
|
|
10394
|
-
} & { [
|
|
10428
|
+
} & { [K_360 in Exclude<keyof I["list_data_socket"]["user_activity_list"]["activities"][number], keyof UserActivity>]: never; })[] & { [K_361 in Exclude<keyof I["list_data_socket"]["user_activity_list"]["activities"], keyof {
|
|
10395
10429
|
user_id?: string | undefined;
|
|
10396
10430
|
activity_name?: string | undefined;
|
|
10397
10431
|
activity_type?: number | undefined;
|
|
@@ -10401,12 +10435,12 @@ export declare const Envelope: {
|
|
|
10401
10435
|
application_id?: string | undefined;
|
|
10402
10436
|
status?: number | undefined;
|
|
10403
10437
|
}[]>]: never; }) | undefined;
|
|
10404
|
-
} & { [
|
|
10438
|
+
} & { [K_362 in Exclude<keyof I["list_data_socket"]["user_activity_list"], "activities">]: never; }) | undefined;
|
|
10405
10439
|
list_clan_user_req?: ({
|
|
10406
10440
|
clan_id?: string | undefined;
|
|
10407
10441
|
} & {
|
|
10408
10442
|
clan_id?: string | undefined;
|
|
10409
|
-
} & { [
|
|
10443
|
+
} & { [K_363 in Exclude<keyof I["list_data_socket"]["list_clan_user_req"], "clan_id">]: never; }) | undefined;
|
|
10410
10444
|
clan_user_list?: ({
|
|
10411
10445
|
clan_users?: {
|
|
10412
10446
|
user?: {
|
|
@@ -10550,13 +10584,13 @@ export declare const Envelope: {
|
|
|
10550
10584
|
is_mobile?: boolean | undefined;
|
|
10551
10585
|
dob?: Date | undefined;
|
|
10552
10586
|
mezon_id?: string | undefined;
|
|
10553
|
-
list_nick_names?: (string[] & string[] & { [
|
|
10554
|
-
} & { [
|
|
10555
|
-
role_id?: (string[] & string[] & { [
|
|
10587
|
+
list_nick_names?: (string[] & string[] & { [K_364 in Exclude<keyof I["list_data_socket"]["clan_user_list"]["clan_users"][number]["user"]["list_nick_names"], keyof string[]>]: never; }) | undefined;
|
|
10588
|
+
} & { [K_365 in Exclude<keyof I["list_data_socket"]["clan_user_list"]["clan_users"][number]["user"], keyof import("../api/api").User>]: never; }) | undefined;
|
|
10589
|
+
role_id?: (string[] & string[] & { [K_366 in Exclude<keyof I["list_data_socket"]["clan_user_list"]["clan_users"][number]["role_id"], keyof string[]>]: never; }) | undefined;
|
|
10556
10590
|
clan_nick?: string | undefined;
|
|
10557
10591
|
clan_avatar?: string | undefined;
|
|
10558
10592
|
clan_id?: string | undefined;
|
|
10559
|
-
} & { [
|
|
10593
|
+
} & { [K_367 in Exclude<keyof I["list_data_socket"]["clan_user_list"]["clan_users"][number], keyof import("../api/api").ClanUserList_ClanUser>]: never; })[] & { [K_368 in Exclude<keyof I["list_data_socket"]["clan_user_list"]["clan_users"], keyof {
|
|
10560
10594
|
user?: {
|
|
10561
10595
|
id?: string | undefined;
|
|
10562
10596
|
username?: string | undefined;
|
|
@@ -10589,12 +10623,12 @@ export declare const Envelope: {
|
|
|
10589
10623
|
}[]>]: never; }) | undefined;
|
|
10590
10624
|
cursor?: string | undefined;
|
|
10591
10625
|
clan_id?: string | undefined;
|
|
10592
|
-
} & { [
|
|
10626
|
+
} & { [K_369 in Exclude<keyof I["list_data_socket"]["clan_user_list"], keyof ClanUserList>]: never; }) | undefined;
|
|
10593
10627
|
list_event_req?: ({
|
|
10594
10628
|
clan_id?: string | undefined;
|
|
10595
10629
|
} & {
|
|
10596
10630
|
clan_id?: string | undefined;
|
|
10597
|
-
} & { [
|
|
10631
|
+
} & { [K_370 in Exclude<keyof I["list_data_socket"]["list_event_req"], "clan_id">]: never; }) | undefined;
|
|
10598
10632
|
event_list?: ({
|
|
10599
10633
|
events?: {
|
|
10600
10634
|
id?: string | undefined;
|
|
@@ -10692,7 +10726,7 @@ export declare const Envelope: {
|
|
|
10692
10726
|
address?: string | undefined;
|
|
10693
10727
|
start_time?: Date | undefined;
|
|
10694
10728
|
end_time?: Date | undefined;
|
|
10695
|
-
user_ids?: (string[] & string[] & { [
|
|
10729
|
+
user_ids?: (string[] & string[] & { [K_371 in Exclude<keyof I["list_data_socket"]["event_list"]["events"][number]["user_ids"], keyof string[]>]: never; }) | undefined;
|
|
10696
10730
|
create_time?: Date | undefined;
|
|
10697
10731
|
max_permission?: number | undefined;
|
|
10698
10732
|
channel_id?: string | undefined;
|
|
@@ -10711,8 +10745,8 @@ export declare const Envelope: {
|
|
|
10711
10745
|
external_link?: string | undefined;
|
|
10712
10746
|
creator_id?: string | undefined;
|
|
10713
10747
|
event_id?: string | undefined;
|
|
10714
|
-
} & { [
|
|
10715
|
-
} & { [
|
|
10748
|
+
} & { [K_372 in Exclude<keyof I["list_data_socket"]["event_list"]["events"][number]["meet_room"], keyof import("../api/api").GenerateMezonMeetResponse>]: never; }) | undefined;
|
|
10749
|
+
} & { [K_373 in Exclude<keyof I["list_data_socket"]["event_list"]["events"][number], keyof import("../api/api").EventManagement>]: never; })[] & { [K_374 in Exclude<keyof I["list_data_socket"]["event_list"]["events"], keyof {
|
|
10716
10750
|
id?: string | undefined;
|
|
10717
10751
|
title?: string | undefined;
|
|
10718
10752
|
logo?: string | undefined;
|
|
@@ -10740,7 +10774,7 @@ export declare const Envelope: {
|
|
|
10740
10774
|
event_id?: string | undefined;
|
|
10741
10775
|
} | undefined;
|
|
10742
10776
|
}[]>]: never; }) | undefined;
|
|
10743
|
-
} & { [
|
|
10777
|
+
} & { [K_375 in Exclude<keyof I["list_data_socket"]["event_list"], "events">]: never; }) | undefined;
|
|
10744
10778
|
list_category_req?: ({
|
|
10745
10779
|
creator_id?: string | undefined;
|
|
10746
10780
|
clan_id?: string | undefined;
|
|
@@ -10753,7 +10787,7 @@ export declare const Envelope: {
|
|
|
10753
10787
|
category_name?: string | undefined;
|
|
10754
10788
|
category_id?: string | undefined;
|
|
10755
10789
|
category_order?: number | undefined;
|
|
10756
|
-
} & { [
|
|
10790
|
+
} & { [K_376 in Exclude<keyof I["list_data_socket"]["list_category_req"], keyof CategoryDesc>]: never; }) | undefined;
|
|
10757
10791
|
category_list?: ({
|
|
10758
10792
|
categorydesc?: {
|
|
10759
10793
|
creator_id?: string | undefined;
|
|
@@ -10781,14 +10815,14 @@ export declare const Envelope: {
|
|
|
10781
10815
|
category_name?: string | undefined;
|
|
10782
10816
|
category_id?: string | undefined;
|
|
10783
10817
|
category_order?: number | undefined;
|
|
10784
|
-
} & { [
|
|
10818
|
+
} & { [K_377 in Exclude<keyof I["list_data_socket"]["category_list"]["categorydesc"][number], keyof CategoryDesc>]: never; })[] & { [K_378 in Exclude<keyof I["list_data_socket"]["category_list"]["categorydesc"], keyof {
|
|
10785
10819
|
creator_id?: string | undefined;
|
|
10786
10820
|
clan_id?: string | undefined;
|
|
10787
10821
|
category_name?: string | undefined;
|
|
10788
10822
|
category_id?: string | undefined;
|
|
10789
10823
|
category_order?: number | undefined;
|
|
10790
10824
|
}[]>]: never; }) | undefined;
|
|
10791
|
-
} & { [
|
|
10825
|
+
} & { [K_379 in Exclude<keyof I["list_data_socket"]["category_list"], "categorydesc">]: never; }) | undefined;
|
|
10792
10826
|
stream_user_list?: ({
|
|
10793
10827
|
streaming_channel_users?: {
|
|
10794
10828
|
id?: string | undefined;
|
|
@@ -10812,14 +10846,14 @@ export declare const Envelope: {
|
|
|
10812
10846
|
user_id?: string | undefined;
|
|
10813
10847
|
channel_id?: string | undefined;
|
|
10814
10848
|
participant?: string | undefined;
|
|
10815
|
-
} & { [
|
|
10849
|
+
} & { [K_380 in Exclude<keyof I["list_data_socket"]["stream_user_list"]["streaming_channel_users"][number], keyof import("../api/api").StreamingChannelUser>]: never; })[] & { [K_381 in Exclude<keyof I["list_data_socket"]["stream_user_list"]["streaming_channel_users"], keyof {
|
|
10816
10850
|
id?: string | undefined;
|
|
10817
10851
|
user_id?: string | undefined;
|
|
10818
10852
|
channel_id?: string | undefined;
|
|
10819
10853
|
participant?: string | undefined;
|
|
10820
10854
|
}[]>]: never; }) | undefined;
|
|
10821
|
-
} & { [
|
|
10822
|
-
} & { [
|
|
10855
|
+
} & { [K_382 in Exclude<keyof I["list_data_socket"]["stream_user_list"], "streaming_channel_users">]: never; }) | undefined;
|
|
10856
|
+
} & { [K_383 in Exclude<keyof I["list_data_socket"], keyof ListDataSocket>]: never; }) | undefined;
|
|
10823
10857
|
quick_menu_event?: ({
|
|
10824
10858
|
menu_name?: string | undefined;
|
|
10825
10859
|
message?: {
|
|
@@ -10940,7 +10974,7 @@ export declare const Envelope: {
|
|
|
10940
10974
|
create_time?: Date | undefined;
|
|
10941
10975
|
s?: number | undefined;
|
|
10942
10976
|
e?: number | undefined;
|
|
10943
|
-
} & { [
|
|
10977
|
+
} & { [K_384 in Exclude<keyof I["quick_menu_event"]["message"]["mentions"][number], keyof MessageMention>]: never; })[] & { [K_385 in Exclude<keyof I["quick_menu_event"]["message"]["mentions"], keyof {
|
|
10944
10978
|
id?: string | undefined;
|
|
10945
10979
|
user_id?: string | undefined;
|
|
10946
10980
|
username?: string | undefined;
|
|
@@ -10974,7 +11008,7 @@ export declare const Envelope: {
|
|
|
10974
11008
|
width?: number | undefined;
|
|
10975
11009
|
height?: number | undefined;
|
|
10976
11010
|
thumbnail?: string | undefined;
|
|
10977
|
-
} & { [
|
|
11011
|
+
} & { [K_386 in Exclude<keyof I["quick_menu_event"]["message"]["attachments"][number], keyof MessageAttachment>]: never; })[] & { [K_387 in Exclude<keyof I["quick_menu_event"]["message"]["attachments"], keyof {
|
|
10978
11012
|
filename?: string | undefined;
|
|
10979
11013
|
size?: number | undefined;
|
|
10980
11014
|
url?: string | undefined;
|
|
@@ -11016,7 +11050,7 @@ export declare const Envelope: {
|
|
|
11016
11050
|
mesages_sender_avatar?: string | undefined;
|
|
11017
11051
|
message_sender_clan_nick?: string | undefined;
|
|
11018
11052
|
message_sender_display_name?: string | undefined;
|
|
11019
|
-
} & { [
|
|
11053
|
+
} & { [K_388 in Exclude<keyof I["quick_menu_event"]["message"]["references"][number], keyof MessageRef>]: never; })[] & { [K_389 in Exclude<keyof I["quick_menu_event"]["message"]["references"], keyof {
|
|
11020
11054
|
message_id?: string | undefined;
|
|
11021
11055
|
message_ref_id?: string | undefined;
|
|
11022
11056
|
content?: string | undefined;
|
|
@@ -11035,9 +11069,9 @@ export declare const Envelope: {
|
|
|
11035
11069
|
is_public?: boolean | undefined;
|
|
11036
11070
|
code?: number | undefined;
|
|
11037
11071
|
topic_id?: string | undefined;
|
|
11038
|
-
} & { [
|
|
11039
|
-
} & { [
|
|
11040
|
-
} & { [
|
|
11072
|
+
} & { [K_390 in Exclude<keyof I["quick_menu_event"]["message"], keyof ChannelMessageSend>]: never; }) | undefined;
|
|
11073
|
+
} & { [K_391 in Exclude<keyof I["quick_menu_event"], keyof QuickMenuDataEvent>]: never; }) | undefined;
|
|
11074
|
+
} & { [K_392 in Exclude<keyof I, keyof Envelope>]: never; }>(base?: I | undefined): Envelope;
|
|
11041
11075
|
fromPartial<I_1 extends {
|
|
11042
11076
|
cid?: string | undefined;
|
|
11043
11077
|
channel?: {
|
|
@@ -11200,6 +11234,8 @@ export declare const Envelope: {
|
|
|
11200
11234
|
is_public?: boolean | undefined;
|
|
11201
11235
|
has_attachment?: boolean | undefined;
|
|
11202
11236
|
topic_id?: string | undefined;
|
|
11237
|
+
mentions?: string | undefined;
|
|
11238
|
+
references?: string | undefined;
|
|
11203
11239
|
} | undefined;
|
|
11204
11240
|
channel_presence_event?: {
|
|
11205
11241
|
channel_id?: string | undefined;
|
|
@@ -11494,6 +11530,8 @@ export declare const Envelope: {
|
|
|
11494
11530
|
age_restricted?: number | undefined;
|
|
11495
11531
|
active?: number | undefined;
|
|
11496
11532
|
count_mess_unread?: number | undefined;
|
|
11533
|
+
user_ids?: string[] | undefined;
|
|
11534
|
+
role_ids?: string[] | undefined;
|
|
11497
11535
|
} | undefined;
|
|
11498
11536
|
last_pin_message_event?: {
|
|
11499
11537
|
clan_id?: string | undefined;
|
|
@@ -12127,6 +12165,8 @@ export declare const Envelope: {
|
|
|
12127
12165
|
welcome_channel_id?: string | undefined;
|
|
12128
12166
|
onboarding_banner?: string | undefined;
|
|
12129
12167
|
clan_order?: number | undefined;
|
|
12168
|
+
is_community?: boolean | undefined;
|
|
12169
|
+
community_banner?: string | undefined;
|
|
12130
12170
|
}[] | undefined;
|
|
12131
12171
|
} | undefined;
|
|
12132
12172
|
list_thread_req?: {
|
|
@@ -13061,7 +13101,7 @@ export declare const Envelope: {
|
|
|
13061
13101
|
status?: string | undefined;
|
|
13062
13102
|
is_mobile?: boolean | undefined;
|
|
13063
13103
|
metadata?: string | undefined;
|
|
13064
|
-
} & { [
|
|
13104
|
+
} & { [K_393 in Exclude<keyof I_1["channel"]["presences"][number], keyof UserPresence>]: never; })[] & { [K_394 in Exclude<keyof I_1["channel"]["presences"], keyof {
|
|
13065
13105
|
user_id?: string | undefined;
|
|
13066
13106
|
session_id?: string | undefined;
|
|
13067
13107
|
username?: string | undefined;
|
|
@@ -13086,16 +13126,16 @@ export declare const Envelope: {
|
|
|
13086
13126
|
status?: string | undefined;
|
|
13087
13127
|
is_mobile?: boolean | undefined;
|
|
13088
13128
|
metadata?: string | undefined;
|
|
13089
|
-
} & { [
|
|
13129
|
+
} & { [K_395 in Exclude<keyof I_1["channel"]["self"], keyof UserPresence>]: never; }) | undefined;
|
|
13090
13130
|
chanel_label?: string | undefined;
|
|
13091
13131
|
clan_logo?: string | undefined;
|
|
13092
13132
|
category_name?: string | undefined;
|
|
13093
|
-
} & { [
|
|
13133
|
+
} & { [K_396 in Exclude<keyof I_1["channel"], keyof Channel>]: never; }) | undefined;
|
|
13094
13134
|
clan_join?: ({
|
|
13095
13135
|
clan_id?: string | undefined;
|
|
13096
13136
|
} & {
|
|
13097
13137
|
clan_id?: string | undefined;
|
|
13098
|
-
} & { [
|
|
13138
|
+
} & { [K_397 in Exclude<keyof I_1["clan_join"], "clan_id">]: never; }) | undefined;
|
|
13099
13139
|
channel_join?: ({
|
|
13100
13140
|
clan_id?: string | undefined;
|
|
13101
13141
|
channel_id?: string | undefined;
|
|
@@ -13106,7 +13146,7 @@ export declare const Envelope: {
|
|
|
13106
13146
|
channel_id?: string | undefined;
|
|
13107
13147
|
channel_type?: number | undefined;
|
|
13108
13148
|
is_public?: boolean | undefined;
|
|
13109
|
-
} & { [
|
|
13149
|
+
} & { [K_398 in Exclude<keyof I_1["channel_join"], keyof ChannelJoin>]: never; }) | undefined;
|
|
13110
13150
|
channel_leave?: ({
|
|
13111
13151
|
clan_id?: string | undefined;
|
|
13112
13152
|
channel_id?: string | undefined;
|
|
@@ -13117,7 +13157,7 @@ export declare const Envelope: {
|
|
|
13117
13157
|
channel_id?: string | undefined;
|
|
13118
13158
|
channel_type?: number | undefined;
|
|
13119
13159
|
is_public?: boolean | undefined;
|
|
13120
|
-
} & { [
|
|
13160
|
+
} & { [K_399 in Exclude<keyof I_1["channel_leave"], keyof ChannelLeave>]: never; }) | undefined;
|
|
13121
13161
|
channel_message?: ({
|
|
13122
13162
|
clan_id?: string | undefined;
|
|
13123
13163
|
channel_id?: string | undefined;
|
|
@@ -13174,7 +13214,7 @@ export declare const Envelope: {
|
|
|
13174
13214
|
hide_editted?: boolean | undefined;
|
|
13175
13215
|
is_public?: boolean | undefined;
|
|
13176
13216
|
topic_id?: string | undefined;
|
|
13177
|
-
} & { [
|
|
13217
|
+
} & { [K_400 in Exclude<keyof I_1["channel_message"], keyof ChannelMessage>]: never; }) | undefined;
|
|
13178
13218
|
channel_message_ack?: ({
|
|
13179
13219
|
channel_id?: string | undefined;
|
|
13180
13220
|
message_id?: string | undefined;
|
|
@@ -13195,7 +13235,7 @@ export declare const Envelope: {
|
|
|
13195
13235
|
persistent?: boolean | undefined;
|
|
13196
13236
|
clan_logo?: string | undefined;
|
|
13197
13237
|
category_name?: string | undefined;
|
|
13198
|
-
} & { [
|
|
13238
|
+
} & { [K_401 in Exclude<keyof I_1["channel_message_ack"], keyof ChannelMessageAck>]: never; }) | undefined;
|
|
13199
13239
|
channel_message_send?: ({
|
|
13200
13240
|
clan_id?: string | undefined;
|
|
13201
13241
|
channel_id?: string | undefined;
|
|
@@ -13269,7 +13309,7 @@ export declare const Envelope: {
|
|
|
13269
13309
|
create_time?: Date | undefined;
|
|
13270
13310
|
s?: number | undefined;
|
|
13271
13311
|
e?: number | undefined;
|
|
13272
|
-
} & { [
|
|
13312
|
+
} & { [K_402 in Exclude<keyof I_1["channel_message_send"]["mentions"][number], keyof MessageMention>]: never; })[] & { [K_403 in Exclude<keyof I_1["channel_message_send"]["mentions"], keyof {
|
|
13273
13313
|
id?: string | undefined;
|
|
13274
13314
|
user_id?: string | undefined;
|
|
13275
13315
|
username?: string | undefined;
|
|
@@ -13303,7 +13343,7 @@ export declare const Envelope: {
|
|
|
13303
13343
|
width?: number | undefined;
|
|
13304
13344
|
height?: number | undefined;
|
|
13305
13345
|
thumbnail?: string | undefined;
|
|
13306
|
-
} & { [
|
|
13346
|
+
} & { [K_404 in Exclude<keyof I_1["channel_message_send"]["attachments"][number], keyof MessageAttachment>]: never; })[] & { [K_405 in Exclude<keyof I_1["channel_message_send"]["attachments"], keyof {
|
|
13307
13347
|
filename?: string | undefined;
|
|
13308
13348
|
size?: number | undefined;
|
|
13309
13349
|
url?: string | undefined;
|
|
@@ -13345,7 +13385,7 @@ export declare const Envelope: {
|
|
|
13345
13385
|
mesages_sender_avatar?: string | undefined;
|
|
13346
13386
|
message_sender_clan_nick?: string | undefined;
|
|
13347
13387
|
message_sender_display_name?: string | undefined;
|
|
13348
|
-
} & { [
|
|
13388
|
+
} & { [K_406 in Exclude<keyof I_1["channel_message_send"]["references"][number], keyof MessageRef>]: never; })[] & { [K_407 in Exclude<keyof I_1["channel_message_send"]["references"], keyof {
|
|
13349
13389
|
message_id?: string | undefined;
|
|
13350
13390
|
message_ref_id?: string | undefined;
|
|
13351
13391
|
content?: string | undefined;
|
|
@@ -13364,7 +13404,7 @@ export declare const Envelope: {
|
|
|
13364
13404
|
is_public?: boolean | undefined;
|
|
13365
13405
|
code?: number | undefined;
|
|
13366
13406
|
topic_id?: string | undefined;
|
|
13367
|
-
} & { [
|
|
13407
|
+
} & { [K_408 in Exclude<keyof I_1["channel_message_send"], keyof ChannelMessageSend>]: never; }) | undefined;
|
|
13368
13408
|
channel_message_update?: ({
|
|
13369
13409
|
clan_id?: string | undefined;
|
|
13370
13410
|
channel_id?: string | undefined;
|
|
@@ -13426,7 +13466,7 @@ export declare const Envelope: {
|
|
|
13426
13466
|
create_time?: Date | undefined;
|
|
13427
13467
|
s?: number | undefined;
|
|
13428
13468
|
e?: number | undefined;
|
|
13429
|
-
} & { [
|
|
13469
|
+
} & { [K_409 in Exclude<keyof I_1["channel_message_update"]["mentions"][number], keyof MessageMention>]: never; })[] & { [K_410 in Exclude<keyof I_1["channel_message_update"]["mentions"], keyof {
|
|
13430
13470
|
id?: string | undefined;
|
|
13431
13471
|
user_id?: string | undefined;
|
|
13432
13472
|
username?: string | undefined;
|
|
@@ -13460,7 +13500,7 @@ export declare const Envelope: {
|
|
|
13460
13500
|
width?: number | undefined;
|
|
13461
13501
|
height?: number | undefined;
|
|
13462
13502
|
thumbnail?: string | undefined;
|
|
13463
|
-
} & { [
|
|
13503
|
+
} & { [K_411 in Exclude<keyof I_1["channel_message_update"]["attachments"][number], keyof MessageAttachment>]: never; })[] & { [K_412 in Exclude<keyof I_1["channel_message_update"]["attachments"], keyof {
|
|
13464
13504
|
filename?: string | undefined;
|
|
13465
13505
|
size?: number | undefined;
|
|
13466
13506
|
url?: string | undefined;
|
|
@@ -13474,7 +13514,7 @@ export declare const Envelope: {
|
|
|
13474
13514
|
hide_editted?: boolean | undefined;
|
|
13475
13515
|
topic_id?: string | undefined;
|
|
13476
13516
|
is_update_msg_topic?: boolean | undefined;
|
|
13477
|
-
} & { [
|
|
13517
|
+
} & { [K_413 in Exclude<keyof I_1["channel_message_update"], keyof ChannelMessageUpdate>]: never; }) | undefined;
|
|
13478
13518
|
channel_message_remove?: ({
|
|
13479
13519
|
clan_id?: string | undefined;
|
|
13480
13520
|
channel_id?: string | undefined;
|
|
@@ -13483,6 +13523,8 @@ export declare const Envelope: {
|
|
|
13483
13523
|
is_public?: boolean | undefined;
|
|
13484
13524
|
has_attachment?: boolean | undefined;
|
|
13485
13525
|
topic_id?: string | undefined;
|
|
13526
|
+
mentions?: string | undefined;
|
|
13527
|
+
references?: string | undefined;
|
|
13486
13528
|
} & {
|
|
13487
13529
|
clan_id?: string | undefined;
|
|
13488
13530
|
channel_id?: string | undefined;
|
|
@@ -13491,7 +13533,9 @@ export declare const Envelope: {
|
|
|
13491
13533
|
is_public?: boolean | undefined;
|
|
13492
13534
|
has_attachment?: boolean | undefined;
|
|
13493
13535
|
topic_id?: string | undefined;
|
|
13494
|
-
|
|
13536
|
+
mentions?: string | undefined;
|
|
13537
|
+
references?: string | undefined;
|
|
13538
|
+
} & { [K_414 in Exclude<keyof I_1["channel_message_remove"], keyof ChannelMessageRemove>]: never; }) | undefined;
|
|
13495
13539
|
channel_presence_event?: ({
|
|
13496
13540
|
channel_id?: string | undefined;
|
|
13497
13541
|
joins?: {
|
|
@@ -13541,7 +13585,7 @@ export declare const Envelope: {
|
|
|
13541
13585
|
status?: string | undefined;
|
|
13542
13586
|
is_mobile?: boolean | undefined;
|
|
13543
13587
|
metadata?: string | undefined;
|
|
13544
|
-
} & { [
|
|
13588
|
+
} & { [K_415 in Exclude<keyof I_1["channel_presence_event"]["joins"][number], keyof UserPresence>]: never; })[] & { [K_416 in Exclude<keyof I_1["channel_presence_event"]["joins"], keyof {
|
|
13545
13589
|
user_id?: string | undefined;
|
|
13546
13590
|
session_id?: string | undefined;
|
|
13547
13591
|
username?: string | undefined;
|
|
@@ -13574,7 +13618,7 @@ export declare const Envelope: {
|
|
|
13574
13618
|
status?: string | undefined;
|
|
13575
13619
|
is_mobile?: boolean | undefined;
|
|
13576
13620
|
metadata?: string | undefined;
|
|
13577
|
-
} & { [
|
|
13621
|
+
} & { [K_417 in Exclude<keyof I_1["channel_presence_event"]["leaves"][number], keyof UserPresence>]: never; })[] & { [K_418 in Exclude<keyof I_1["channel_presence_event"]["leaves"], keyof {
|
|
13578
13622
|
user_id?: string | undefined;
|
|
13579
13623
|
session_id?: string | undefined;
|
|
13580
13624
|
username?: string | undefined;
|
|
@@ -13586,7 +13630,7 @@ export declare const Envelope: {
|
|
|
13586
13630
|
clan_logo?: string | undefined;
|
|
13587
13631
|
category_name?: string | undefined;
|
|
13588
13632
|
mode?: number | undefined;
|
|
13589
|
-
} & { [
|
|
13633
|
+
} & { [K_419 in Exclude<keyof I_1["channel_presence_event"], keyof ChannelPresenceEvent>]: never; }) | undefined;
|
|
13590
13634
|
error?: ({
|
|
13591
13635
|
code?: number | undefined;
|
|
13592
13636
|
message?: string | undefined;
|
|
@@ -13600,8 +13644,8 @@ export declare const Envelope: {
|
|
|
13600
13644
|
[x: string]: string | undefined;
|
|
13601
13645
|
} & {
|
|
13602
13646
|
[x: string]: string | undefined;
|
|
13603
|
-
} & { [
|
|
13604
|
-
} & { [
|
|
13647
|
+
} & { [K_420 in Exclude<keyof I_1["error"]["context"], string | number>]: never; }) | undefined;
|
|
13648
|
+
} & { [K_421 in Exclude<keyof I_1["error"], keyof Error>]: never; }) | undefined;
|
|
13605
13649
|
notifications?: ({
|
|
13606
13650
|
notifications?: {
|
|
13607
13651
|
id?: string | undefined;
|
|
@@ -13880,8 +13924,8 @@ export declare const Envelope: {
|
|
|
13880
13924
|
creator_id?: string | undefined;
|
|
13881
13925
|
channel_label?: string | undefined;
|
|
13882
13926
|
channel_private?: number | undefined;
|
|
13883
|
-
channel_avatar?: (string[] & string[] & { [
|
|
13884
|
-
user_id?: (string[] & string[] & { [
|
|
13927
|
+
channel_avatar?: (string[] & string[] & { [K_422 in Exclude<keyof I_1["notifications"]["notifications"][number]["channel"]["channel_avatar"], keyof string[]>]: never; }) | undefined;
|
|
13928
|
+
user_id?: (string[] & string[] & { [K_423 in Exclude<keyof I_1["notifications"]["notifications"][number]["channel"]["user_id"], keyof string[]>]: never; }) | undefined;
|
|
13885
13929
|
last_sent_message?: ({
|
|
13886
13930
|
id?: string | undefined;
|
|
13887
13931
|
timestamp_seconds?: number | undefined;
|
|
@@ -13901,8 +13945,8 @@ export declare const Envelope: {
|
|
|
13901
13945
|
reference?: string | undefined;
|
|
13902
13946
|
mention?: string | undefined;
|
|
13903
13947
|
reaction?: string | undefined;
|
|
13904
|
-
repliers?: (string[] & string[] & { [
|
|
13905
|
-
} & { [
|
|
13948
|
+
repliers?: (string[] & string[] & { [K_424 in Exclude<keyof I_1["notifications"]["notifications"][number]["channel"]["last_sent_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
13949
|
+
} & { [K_425 in Exclude<keyof I_1["notifications"]["notifications"][number]["channel"]["last_sent_message"], keyof ChannelMessageHeader>]: never; }) | undefined;
|
|
13906
13950
|
last_seen_message?: ({
|
|
13907
13951
|
id?: string | undefined;
|
|
13908
13952
|
timestamp_seconds?: number | undefined;
|
|
@@ -13922,30 +13966,30 @@ export declare const Envelope: {
|
|
|
13922
13966
|
reference?: string | undefined;
|
|
13923
13967
|
mention?: string | undefined;
|
|
13924
13968
|
reaction?: string | undefined;
|
|
13925
|
-
repliers?: (string[] & string[] & { [
|
|
13926
|
-
} & { [
|
|
13927
|
-
is_online?: (boolean[] & boolean[] & { [
|
|
13969
|
+
repliers?: (string[] & string[] & { [K_426 in Exclude<keyof I_1["notifications"]["notifications"][number]["channel"]["last_seen_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
13970
|
+
} & { [K_427 in Exclude<keyof I_1["notifications"]["notifications"][number]["channel"]["last_seen_message"], keyof ChannelMessageHeader>]: never; }) | undefined;
|
|
13971
|
+
is_online?: (boolean[] & boolean[] & { [K_428 in Exclude<keyof I_1["notifications"]["notifications"][number]["channel"]["is_online"], keyof boolean[]>]: never; }) | undefined;
|
|
13928
13972
|
meeting_code?: string | undefined;
|
|
13929
13973
|
count_mess_unread?: number | undefined;
|
|
13930
13974
|
active?: number | undefined;
|
|
13931
13975
|
last_pin_message?: string | undefined;
|
|
13932
|
-
usernames?: (string[] & string[] & { [
|
|
13976
|
+
usernames?: (string[] & string[] & { [K_429 in Exclude<keyof I_1["notifications"]["notifications"][number]["channel"]["usernames"], keyof string[]>]: never; }) | undefined;
|
|
13933
13977
|
creator_name?: string | undefined;
|
|
13934
13978
|
create_time_seconds?: number | undefined;
|
|
13935
13979
|
update_time_seconds?: number | undefined;
|
|
13936
|
-
metadata?: (string[] & string[] & { [
|
|
13937
|
-
about_me?: (string[] & string[] & { [
|
|
13980
|
+
metadata?: (string[] & string[] & { [K_430 in Exclude<keyof I_1["notifications"]["notifications"][number]["channel"]["metadata"], keyof string[]>]: never; }) | undefined;
|
|
13981
|
+
about_me?: (string[] & string[] & { [K_431 in Exclude<keyof I_1["notifications"]["notifications"][number]["channel"]["about_me"], keyof string[]>]: never; }) | undefined;
|
|
13938
13982
|
clan_name?: string | undefined;
|
|
13939
13983
|
app_id?: string | undefined;
|
|
13940
13984
|
is_mute?: boolean | undefined;
|
|
13941
13985
|
age_restricted?: number | undefined;
|
|
13942
13986
|
topic?: string | undefined;
|
|
13943
13987
|
e2ee?: number | undefined;
|
|
13944
|
-
display_names?: (string[] & string[] & { [
|
|
13945
|
-
} & { [
|
|
13988
|
+
display_names?: (string[] & string[] & { [K_432 in Exclude<keyof I_1["notifications"]["notifications"][number]["channel"]["display_names"], keyof string[]>]: never; }) | undefined;
|
|
13989
|
+
} & { [K_433 in Exclude<keyof I_1["notifications"]["notifications"][number]["channel"], keyof ChannelDescription1>]: never; }) | undefined;
|
|
13946
13990
|
topic_id?: string | undefined;
|
|
13947
13991
|
category?: number | undefined;
|
|
13948
|
-
} & { [
|
|
13992
|
+
} & { [K_434 in Exclude<keyof I_1["notifications"]["notifications"][number], keyof Notification>]: never; })[] & { [K_435 in Exclude<keyof I_1["notifications"]["notifications"], keyof {
|
|
13949
13993
|
id?: string | undefined;
|
|
13950
13994
|
subject?: string | undefined;
|
|
13951
13995
|
content?: string | undefined;
|
|
@@ -14013,7 +14057,7 @@ export declare const Envelope: {
|
|
|
14013
14057
|
topic_id?: string | undefined;
|
|
14014
14058
|
category?: number | undefined;
|
|
14015
14059
|
}[]>]: never; }) | undefined;
|
|
14016
|
-
} & { [
|
|
14060
|
+
} & { [K_436 in Exclude<keyof I_1["notifications"], "notifications">]: never; }) | undefined;
|
|
14017
14061
|
rpc?: ({
|
|
14018
14062
|
id?: string | undefined;
|
|
14019
14063
|
payload?: string | undefined;
|
|
@@ -14022,7 +14066,7 @@ export declare const Envelope: {
|
|
|
14022
14066
|
id?: string | undefined;
|
|
14023
14067
|
payload?: string | undefined;
|
|
14024
14068
|
http_key?: string | undefined;
|
|
14025
|
-
} & { [
|
|
14069
|
+
} & { [K_437 in Exclude<keyof I_1["rpc"], keyof Rpc>]: never; }) | undefined;
|
|
14026
14070
|
status?: ({
|
|
14027
14071
|
presences?: {
|
|
14028
14072
|
user_id?: string | undefined;
|
|
@@ -14058,7 +14102,7 @@ export declare const Envelope: {
|
|
|
14058
14102
|
status?: string | undefined;
|
|
14059
14103
|
is_mobile?: boolean | undefined;
|
|
14060
14104
|
metadata?: string | undefined;
|
|
14061
|
-
} & { [
|
|
14105
|
+
} & { [K_438 in Exclude<keyof I_1["status"]["presences"][number], keyof UserPresence>]: never; })[] & { [K_439 in Exclude<keyof I_1["status"]["presences"], keyof {
|
|
14062
14106
|
user_id?: string | undefined;
|
|
14063
14107
|
session_id?: string | undefined;
|
|
14064
14108
|
username?: string | undefined;
|
|
@@ -14067,14 +14111,14 @@ export declare const Envelope: {
|
|
|
14067
14111
|
is_mobile?: boolean | undefined;
|
|
14068
14112
|
metadata?: string | undefined;
|
|
14069
14113
|
}[]>]: never; }) | undefined;
|
|
14070
|
-
} & { [
|
|
14114
|
+
} & { [K_440 in Exclude<keyof I_1["status"], "presences">]: never; }) | undefined;
|
|
14071
14115
|
status_follow?: ({
|
|
14072
14116
|
user_ids?: string[] | undefined;
|
|
14073
14117
|
usernames?: string[] | undefined;
|
|
14074
14118
|
} & {
|
|
14075
|
-
user_ids?: (string[] & string[] & { [
|
|
14076
|
-
usernames?: (string[] & string[] & { [
|
|
14077
|
-
} & { [
|
|
14119
|
+
user_ids?: (string[] & string[] & { [K_441 in Exclude<keyof I_1["status_follow"]["user_ids"], keyof string[]>]: never; }) | undefined;
|
|
14120
|
+
usernames?: (string[] & string[] & { [K_442 in Exclude<keyof I_1["status_follow"]["usernames"], keyof string[]>]: never; }) | undefined;
|
|
14121
|
+
} & { [K_443 in Exclude<keyof I_1["status_follow"], keyof StatusFollow>]: never; }) | undefined;
|
|
14078
14122
|
status_presence_event?: ({
|
|
14079
14123
|
joins?: {
|
|
14080
14124
|
user_id?: string | undefined;
|
|
@@ -14119,7 +14163,7 @@ export declare const Envelope: {
|
|
|
14119
14163
|
status?: string | undefined;
|
|
14120
14164
|
is_mobile?: boolean | undefined;
|
|
14121
14165
|
metadata?: string | undefined;
|
|
14122
|
-
} & { [
|
|
14166
|
+
} & { [K_444 in Exclude<keyof I_1["status_presence_event"]["joins"][number], keyof UserPresence>]: never; })[] & { [K_445 in Exclude<keyof I_1["status_presence_event"]["joins"], keyof {
|
|
14123
14167
|
user_id?: string | undefined;
|
|
14124
14168
|
session_id?: string | undefined;
|
|
14125
14169
|
username?: string | undefined;
|
|
@@ -14152,7 +14196,7 @@ export declare const Envelope: {
|
|
|
14152
14196
|
status?: string | undefined;
|
|
14153
14197
|
is_mobile?: boolean | undefined;
|
|
14154
14198
|
metadata?: string | undefined;
|
|
14155
|
-
} & { [
|
|
14199
|
+
} & { [K_446 in Exclude<keyof I_1["status_presence_event"]["leaves"][number], keyof UserPresence>]: never; })[] & { [K_447 in Exclude<keyof I_1["status_presence_event"]["leaves"], keyof {
|
|
14156
14200
|
user_id?: string | undefined;
|
|
14157
14201
|
session_id?: string | undefined;
|
|
14158
14202
|
username?: string | undefined;
|
|
@@ -14161,17 +14205,17 @@ export declare const Envelope: {
|
|
|
14161
14205
|
is_mobile?: boolean | undefined;
|
|
14162
14206
|
metadata?: string | undefined;
|
|
14163
14207
|
}[]>]: never; }) | undefined;
|
|
14164
|
-
} & { [
|
|
14208
|
+
} & { [K_448 in Exclude<keyof I_1["status_presence_event"], keyof StatusPresenceEvent>]: never; }) | undefined;
|
|
14165
14209
|
status_unfollow?: ({
|
|
14166
14210
|
user_ids?: string[] | undefined;
|
|
14167
14211
|
} & {
|
|
14168
|
-
user_ids?: (string[] & string[] & { [
|
|
14169
|
-
} & { [
|
|
14212
|
+
user_ids?: (string[] & string[] & { [K_449 in Exclude<keyof I_1["status_unfollow"]["user_ids"], keyof string[]>]: never; }) | undefined;
|
|
14213
|
+
} & { [K_450 in Exclude<keyof I_1["status_unfollow"], "user_ids">]: never; }) | undefined;
|
|
14170
14214
|
status_update?: ({
|
|
14171
14215
|
status?: string | undefined;
|
|
14172
14216
|
} & {
|
|
14173
14217
|
status?: string | undefined;
|
|
14174
|
-
} & { [
|
|
14218
|
+
} & { [K_451 in Exclude<keyof I_1["status_update"], "status">]: never; }) | undefined;
|
|
14175
14219
|
stream_data?: ({
|
|
14176
14220
|
stream?: {
|
|
14177
14221
|
mode?: number | undefined;
|
|
@@ -14201,7 +14245,7 @@ export declare const Envelope: {
|
|
|
14201
14245
|
channel_id?: string | undefined;
|
|
14202
14246
|
clan_id?: string | undefined;
|
|
14203
14247
|
label?: string | undefined;
|
|
14204
|
-
} & { [
|
|
14248
|
+
} & { [K_452 in Exclude<keyof I_1["stream_data"]["stream"], keyof Stream>]: never; }) | undefined;
|
|
14205
14249
|
sender?: ({
|
|
14206
14250
|
user_id?: string | undefined;
|
|
14207
14251
|
session_id?: string | undefined;
|
|
@@ -14218,10 +14262,10 @@ export declare const Envelope: {
|
|
|
14218
14262
|
status?: string | undefined;
|
|
14219
14263
|
is_mobile?: boolean | undefined;
|
|
14220
14264
|
metadata?: string | undefined;
|
|
14221
|
-
} & { [
|
|
14265
|
+
} & { [K_453 in Exclude<keyof I_1["stream_data"]["sender"], keyof UserPresence>]: never; }) | undefined;
|
|
14222
14266
|
data?: string | undefined;
|
|
14223
14267
|
reliable?: boolean | undefined;
|
|
14224
|
-
} & { [
|
|
14268
|
+
} & { [K_454 in Exclude<keyof I_1["stream_data"], keyof StreamData>]: never; }) | undefined;
|
|
14225
14269
|
stream_presence_event?: ({
|
|
14226
14270
|
stream?: {
|
|
14227
14271
|
mode?: number | undefined;
|
|
@@ -14258,7 +14302,7 @@ export declare const Envelope: {
|
|
|
14258
14302
|
channel_id?: string | undefined;
|
|
14259
14303
|
clan_id?: string | undefined;
|
|
14260
14304
|
label?: string | undefined;
|
|
14261
|
-
} & { [
|
|
14305
|
+
} & { [K_455 in Exclude<keyof I_1["stream_presence_event"]["stream"], keyof Stream>]: never; }) | undefined;
|
|
14262
14306
|
joins?: ({
|
|
14263
14307
|
user_id?: string | undefined;
|
|
14264
14308
|
session_id?: string | undefined;
|
|
@@ -14283,7 +14327,7 @@ export declare const Envelope: {
|
|
|
14283
14327
|
status?: string | undefined;
|
|
14284
14328
|
is_mobile?: boolean | undefined;
|
|
14285
14329
|
metadata?: string | undefined;
|
|
14286
|
-
} & { [
|
|
14330
|
+
} & { [K_456 in Exclude<keyof I_1["stream_presence_event"]["joins"][number], keyof UserPresence>]: never; })[] & { [K_457 in Exclude<keyof I_1["stream_presence_event"]["joins"], keyof {
|
|
14287
14331
|
user_id?: string | undefined;
|
|
14288
14332
|
session_id?: string | undefined;
|
|
14289
14333
|
username?: string | undefined;
|
|
@@ -14316,7 +14360,7 @@ export declare const Envelope: {
|
|
|
14316
14360
|
status?: string | undefined;
|
|
14317
14361
|
is_mobile?: boolean | undefined;
|
|
14318
14362
|
metadata?: string | undefined;
|
|
14319
|
-
} & { [
|
|
14363
|
+
} & { [K_458 in Exclude<keyof I_1["stream_presence_event"]["leaves"][number], keyof UserPresence>]: never; })[] & { [K_459 in Exclude<keyof I_1["stream_presence_event"]["leaves"], keyof {
|
|
14320
14364
|
user_id?: string | undefined;
|
|
14321
14365
|
session_id?: string | undefined;
|
|
14322
14366
|
username?: string | undefined;
|
|
@@ -14325,9 +14369,9 @@ export declare const Envelope: {
|
|
|
14325
14369
|
is_mobile?: boolean | undefined;
|
|
14326
14370
|
metadata?: string | undefined;
|
|
14327
14371
|
}[]>]: never; }) | undefined;
|
|
14328
|
-
} & { [
|
|
14329
|
-
ping?: ({} & {} & { [
|
|
14330
|
-
pong?: ({} & {} & { [
|
|
14372
|
+
} & { [K_460 in Exclude<keyof I_1["stream_presence_event"], keyof StreamPresenceEvent>]: never; }) | undefined;
|
|
14373
|
+
ping?: ({} & {} & { [K_461 in Exclude<keyof I_1["ping"], never>]: never; }) | undefined;
|
|
14374
|
+
pong?: ({} & {} & { [K_462 in Exclude<keyof I_1["pong"], never>]: never; }) | undefined;
|
|
14331
14375
|
message_typing_event?: ({
|
|
14332
14376
|
clan_id?: string | undefined;
|
|
14333
14377
|
channel_id?: string | undefined;
|
|
@@ -14344,7 +14388,7 @@ export declare const Envelope: {
|
|
|
14344
14388
|
is_public?: boolean | undefined;
|
|
14345
14389
|
sender_username?: string | undefined;
|
|
14346
14390
|
sender_display_name?: string | undefined;
|
|
14347
|
-
} & { [
|
|
14391
|
+
} & { [K_463 in Exclude<keyof I_1["message_typing_event"], keyof MessageTypingEvent>]: never; }) | undefined;
|
|
14348
14392
|
last_seen_message_event?: ({
|
|
14349
14393
|
clan_id?: string | undefined;
|
|
14350
14394
|
channel_id?: string | undefined;
|
|
@@ -14359,7 +14403,7 @@ export declare const Envelope: {
|
|
|
14359
14403
|
mode?: number | undefined;
|
|
14360
14404
|
timestamp_seconds?: number | undefined;
|
|
14361
14405
|
badge_count?: number | undefined;
|
|
14362
|
-
} & { [
|
|
14406
|
+
} & { [K_464 in Exclude<keyof I_1["last_seen_message_event"], keyof LastSeenMessageEvent>]: never; }) | undefined;
|
|
14363
14407
|
message_reaction_event?: ({
|
|
14364
14408
|
id?: string | undefined;
|
|
14365
14409
|
emoji_id?: string | undefined;
|
|
@@ -14394,7 +14438,7 @@ export declare const Envelope: {
|
|
|
14394
14438
|
is_public?: boolean | undefined;
|
|
14395
14439
|
topic_id?: string | undefined;
|
|
14396
14440
|
emoji_recent_id?: string | undefined;
|
|
14397
|
-
} & { [
|
|
14441
|
+
} & { [K_465 in Exclude<keyof I_1["message_reaction_event"], keyof MessageReaction>]: never; }) | undefined;
|
|
14398
14442
|
voice_joined_event?: ({
|
|
14399
14443
|
clan_id?: string | undefined;
|
|
14400
14444
|
clan_name?: string | undefined;
|
|
@@ -14413,7 +14457,7 @@ export declare const Envelope: {
|
|
|
14413
14457
|
voice_channel_label?: string | undefined;
|
|
14414
14458
|
voice_channel_id?: string | undefined;
|
|
14415
14459
|
last_screenshot?: string | undefined;
|
|
14416
|
-
} & { [
|
|
14460
|
+
} & { [K_466 in Exclude<keyof I_1["voice_joined_event"], keyof VoiceJoinedEvent>]: never; }) | undefined;
|
|
14417
14461
|
voice_leaved_event?: ({
|
|
14418
14462
|
id?: string | undefined;
|
|
14419
14463
|
clan_id?: string | undefined;
|
|
@@ -14424,7 +14468,7 @@ export declare const Envelope: {
|
|
|
14424
14468
|
clan_id?: string | undefined;
|
|
14425
14469
|
voice_channel_id?: string | undefined;
|
|
14426
14470
|
voice_user_id?: string | undefined;
|
|
14427
|
-
} & { [
|
|
14471
|
+
} & { [K_467 in Exclude<keyof I_1["voice_leaved_event"], keyof VoiceLeavedEvent>]: never; }) | undefined;
|
|
14428
14472
|
voice_started_event?: ({
|
|
14429
14473
|
id?: string | undefined;
|
|
14430
14474
|
clan_id?: string | undefined;
|
|
@@ -14433,7 +14477,7 @@ export declare const Envelope: {
|
|
|
14433
14477
|
id?: string | undefined;
|
|
14434
14478
|
clan_id?: string | undefined;
|
|
14435
14479
|
voice_channel_id?: string | undefined;
|
|
14436
|
-
} & { [
|
|
14480
|
+
} & { [K_468 in Exclude<keyof I_1["voice_started_event"], keyof VoiceStartedEvent>]: never; }) | undefined;
|
|
14437
14481
|
voice_ended_event?: ({
|
|
14438
14482
|
id?: string | undefined;
|
|
14439
14483
|
clan_id?: string | undefined;
|
|
@@ -14442,7 +14486,7 @@ export declare const Envelope: {
|
|
|
14442
14486
|
id?: string | undefined;
|
|
14443
14487
|
clan_id?: string | undefined;
|
|
14444
14488
|
voice_channel_id?: string | undefined;
|
|
14445
|
-
} & { [
|
|
14489
|
+
} & { [K_469 in Exclude<keyof I_1["voice_ended_event"], keyof VoiceEndedEvent>]: never; }) | undefined;
|
|
14446
14490
|
channel_created_event?: ({
|
|
14447
14491
|
clan_id?: string | undefined;
|
|
14448
14492
|
category_id?: string | undefined;
|
|
@@ -14467,7 +14511,7 @@ export declare const Envelope: {
|
|
|
14467
14511
|
status?: number | undefined;
|
|
14468
14512
|
app_id?: string | undefined;
|
|
14469
14513
|
clan_name?: string | undefined;
|
|
14470
|
-
} & { [
|
|
14514
|
+
} & { [K_470 in Exclude<keyof I_1["channel_created_event"], keyof ChannelCreatedEvent>]: never; }) | undefined;
|
|
14471
14515
|
channel_deleted_event?: ({
|
|
14472
14516
|
clan_id?: string | undefined;
|
|
14473
14517
|
category_id?: string | undefined;
|
|
@@ -14480,7 +14524,7 @@ export declare const Envelope: {
|
|
|
14480
14524
|
parent_id?: string | undefined;
|
|
14481
14525
|
channel_id?: string | undefined;
|
|
14482
14526
|
deletor?: string | undefined;
|
|
14483
|
-
} & { [
|
|
14527
|
+
} & { [K_471 in Exclude<keyof I_1["channel_deleted_event"], keyof ChannelDeletedEvent>]: never; }) | undefined;
|
|
14484
14528
|
channel_updated_event?: ({
|
|
14485
14529
|
clan_id?: string | undefined;
|
|
14486
14530
|
category_id?: string | undefined;
|
|
@@ -14499,6 +14543,8 @@ export declare const Envelope: {
|
|
|
14499
14543
|
age_restricted?: number | undefined;
|
|
14500
14544
|
active?: number | undefined;
|
|
14501
14545
|
count_mess_unread?: number | undefined;
|
|
14546
|
+
user_ids?: string[] | undefined;
|
|
14547
|
+
role_ids?: string[] | undefined;
|
|
14502
14548
|
} & {
|
|
14503
14549
|
clan_id?: string | undefined;
|
|
14504
14550
|
category_id?: string | undefined;
|
|
@@ -14517,7 +14563,9 @@ export declare const Envelope: {
|
|
|
14517
14563
|
age_restricted?: number | undefined;
|
|
14518
14564
|
active?: number | undefined;
|
|
14519
14565
|
count_mess_unread?: number | undefined;
|
|
14520
|
-
|
|
14566
|
+
user_ids?: (string[] & string[] & { [K_472 in Exclude<keyof I_1["channel_updated_event"]["user_ids"], keyof string[]>]: never; }) | undefined;
|
|
14567
|
+
role_ids?: (string[] & string[] & { [K_473 in Exclude<keyof I_1["channel_updated_event"]["role_ids"], keyof string[]>]: never; }) | undefined;
|
|
14568
|
+
} & { [K_474 in Exclude<keyof I_1["channel_updated_event"], keyof ChannelUpdatedEvent>]: never; }) | undefined;
|
|
14521
14569
|
last_pin_message_event?: ({
|
|
14522
14570
|
clan_id?: string | undefined;
|
|
14523
14571
|
channel_id?: string | undefined;
|
|
@@ -14548,7 +14596,7 @@ export declare const Envelope: {
|
|
|
14548
14596
|
message_content?: string | undefined;
|
|
14549
14597
|
message_attachment?: string | undefined;
|
|
14550
14598
|
message_created_time?: string | undefined;
|
|
14551
|
-
} & { [
|
|
14599
|
+
} & { [K_475 in Exclude<keyof I_1["last_pin_message_event"], keyof LastPinMessageEvent>]: never; }) | undefined;
|
|
14552
14600
|
custom_status_event?: ({
|
|
14553
14601
|
clan_id?: string | undefined;
|
|
14554
14602
|
user_id?: string | undefined;
|
|
@@ -14563,7 +14611,7 @@ export declare const Envelope: {
|
|
|
14563
14611
|
status?: string | undefined;
|
|
14564
14612
|
time_reset?: number | undefined;
|
|
14565
14613
|
no_clear?: boolean | undefined;
|
|
14566
|
-
} & { [
|
|
14614
|
+
} & { [K_476 in Exclude<keyof I_1["custom_status_event"], keyof CustomStatusEvent>]: never; }) | undefined;
|
|
14567
14615
|
user_channel_added_event?: ({
|
|
14568
14616
|
channel_desc?: {
|
|
14569
14617
|
clan_id?: string | undefined;
|
|
@@ -14733,8 +14781,8 @@ export declare const Envelope: {
|
|
|
14733
14781
|
creator_id?: string | undefined;
|
|
14734
14782
|
channel_label?: string | undefined;
|
|
14735
14783
|
channel_private?: number | undefined;
|
|
14736
|
-
channel_avatar?: (string[] & string[] & { [
|
|
14737
|
-
user_id?: (string[] & string[] & { [
|
|
14784
|
+
channel_avatar?: (string[] & string[] & { [K_477 in Exclude<keyof I_1["user_channel_added_event"]["channel_desc"]["channel_avatar"], keyof string[]>]: never; }) | undefined;
|
|
14785
|
+
user_id?: (string[] & string[] & { [K_478 in Exclude<keyof I_1["user_channel_added_event"]["channel_desc"]["user_id"], keyof string[]>]: never; }) | undefined;
|
|
14738
14786
|
last_sent_message?: ({
|
|
14739
14787
|
id?: string | undefined;
|
|
14740
14788
|
timestamp_seconds?: number | undefined;
|
|
@@ -14754,8 +14802,8 @@ export declare const Envelope: {
|
|
|
14754
14802
|
reference?: string | undefined;
|
|
14755
14803
|
mention?: string | undefined;
|
|
14756
14804
|
reaction?: string | undefined;
|
|
14757
|
-
repliers?: (string[] & string[] & { [
|
|
14758
|
-
} & { [
|
|
14805
|
+
repliers?: (string[] & string[] & { [K_479 in Exclude<keyof I_1["user_channel_added_event"]["channel_desc"]["last_sent_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
14806
|
+
} & { [K_480 in Exclude<keyof I_1["user_channel_added_event"]["channel_desc"]["last_sent_message"], keyof ChannelMessageHeader>]: never; }) | undefined;
|
|
14759
14807
|
last_seen_message?: ({
|
|
14760
14808
|
id?: string | undefined;
|
|
14761
14809
|
timestamp_seconds?: number | undefined;
|
|
@@ -14775,27 +14823,27 @@ export declare const Envelope: {
|
|
|
14775
14823
|
reference?: string | undefined;
|
|
14776
14824
|
mention?: string | undefined;
|
|
14777
14825
|
reaction?: string | undefined;
|
|
14778
|
-
repliers?: (string[] & string[] & { [
|
|
14779
|
-
} & { [
|
|
14780
|
-
is_online?: (boolean[] & boolean[] & { [
|
|
14826
|
+
repliers?: (string[] & string[] & { [K_481 in Exclude<keyof I_1["user_channel_added_event"]["channel_desc"]["last_seen_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
14827
|
+
} & { [K_482 in Exclude<keyof I_1["user_channel_added_event"]["channel_desc"]["last_seen_message"], keyof ChannelMessageHeader>]: never; }) | undefined;
|
|
14828
|
+
is_online?: (boolean[] & boolean[] & { [K_483 in Exclude<keyof I_1["user_channel_added_event"]["channel_desc"]["is_online"], keyof boolean[]>]: never; }) | undefined;
|
|
14781
14829
|
meeting_code?: string | undefined;
|
|
14782
14830
|
count_mess_unread?: number | undefined;
|
|
14783
14831
|
active?: number | undefined;
|
|
14784
14832
|
last_pin_message?: string | undefined;
|
|
14785
|
-
usernames?: (string[] & string[] & { [
|
|
14833
|
+
usernames?: (string[] & string[] & { [K_484 in Exclude<keyof I_1["user_channel_added_event"]["channel_desc"]["usernames"], keyof string[]>]: never; }) | undefined;
|
|
14786
14834
|
creator_name?: string | undefined;
|
|
14787
14835
|
create_time_seconds?: number | undefined;
|
|
14788
14836
|
update_time_seconds?: number | undefined;
|
|
14789
|
-
metadata?: (string[] & string[] & { [
|
|
14790
|
-
about_me?: (string[] & string[] & { [
|
|
14837
|
+
metadata?: (string[] & string[] & { [K_485 in Exclude<keyof I_1["user_channel_added_event"]["channel_desc"]["metadata"], keyof string[]>]: never; }) | undefined;
|
|
14838
|
+
about_me?: (string[] & string[] & { [K_486 in Exclude<keyof I_1["user_channel_added_event"]["channel_desc"]["about_me"], keyof string[]>]: never; }) | undefined;
|
|
14791
14839
|
clan_name?: string | undefined;
|
|
14792
14840
|
app_id?: string | undefined;
|
|
14793
14841
|
is_mute?: boolean | undefined;
|
|
14794
14842
|
age_restricted?: number | undefined;
|
|
14795
14843
|
topic?: string | undefined;
|
|
14796
14844
|
e2ee?: number | undefined;
|
|
14797
|
-
display_names?: (string[] & string[] & { [
|
|
14798
|
-
} & { [
|
|
14845
|
+
display_names?: (string[] & string[] & { [K_487 in Exclude<keyof I_1["user_channel_added_event"]["channel_desc"]["display_names"], keyof string[]>]: never; }) | undefined;
|
|
14846
|
+
} & { [K_488 in Exclude<keyof I_1["user_channel_added_event"]["channel_desc"], keyof ChannelDescription1>]: never; }) | undefined;
|
|
14799
14847
|
users?: ({
|
|
14800
14848
|
user_id?: string | undefined;
|
|
14801
14849
|
username?: string | undefined;
|
|
@@ -14862,7 +14910,7 @@ export declare const Envelope: {
|
|
|
14862
14910
|
device_id?: string | undefined;
|
|
14863
14911
|
token_id?: string | undefined;
|
|
14864
14912
|
platform?: string | undefined;
|
|
14865
|
-
} & { [
|
|
14913
|
+
} & { [K_489 in Exclude<keyof I_1["user_channel_added_event"]["users"][number]["fcm_tokens"][number], keyof FCMTokens>]: never; })[] & { [K_490 in Exclude<keyof I_1["user_channel_added_event"]["users"][number]["fcm_tokens"], keyof {
|
|
14866
14914
|
device_id?: string | undefined;
|
|
14867
14915
|
token_id?: string | undefined;
|
|
14868
14916
|
platform?: string | undefined;
|
|
@@ -14870,14 +14918,14 @@ export declare const Envelope: {
|
|
|
14870
14918
|
online?: boolean | undefined;
|
|
14871
14919
|
metadata?: string | undefined;
|
|
14872
14920
|
is_disabled?: boolean | undefined;
|
|
14873
|
-
joined_clans?: (string[] & string[] & { [
|
|
14921
|
+
joined_clans?: (string[] & string[] & { [K_491 in Exclude<keyof I_1["user_channel_added_event"]["users"][number]["joined_clans"], keyof string[]>]: never; }) | undefined;
|
|
14874
14922
|
pubkey?: string | undefined;
|
|
14875
14923
|
mezon_id?: string | undefined;
|
|
14876
14924
|
app_token?: string | undefined;
|
|
14877
14925
|
app_url?: string | undefined;
|
|
14878
14926
|
is_bot?: boolean | undefined;
|
|
14879
14927
|
voip_token?: string | undefined;
|
|
14880
|
-
} & { [
|
|
14928
|
+
} & { [K_492 in Exclude<keyof I_1["user_channel_added_event"]["users"][number], keyof UserProfileRedis>]: never; })[] & { [K_493 in Exclude<keyof I_1["user_channel_added_event"]["users"], keyof {
|
|
14881
14929
|
user_id?: string | undefined;
|
|
14882
14930
|
username?: string | undefined;
|
|
14883
14931
|
avatar?: string | undefined;
|
|
@@ -14946,7 +14994,7 @@ export declare const Envelope: {
|
|
|
14946
14994
|
device_id?: string | undefined;
|
|
14947
14995
|
token_id?: string | undefined;
|
|
14948
14996
|
platform?: string | undefined;
|
|
14949
|
-
} & { [
|
|
14997
|
+
} & { [K_494 in Exclude<keyof I_1["user_channel_added_event"]["caller"]["fcm_tokens"][number], keyof FCMTokens>]: never; })[] & { [K_495 in Exclude<keyof I_1["user_channel_added_event"]["caller"]["fcm_tokens"], keyof {
|
|
14950
14998
|
device_id?: string | undefined;
|
|
14951
14999
|
token_id?: string | undefined;
|
|
14952
15000
|
platform?: string | undefined;
|
|
@@ -14954,17 +15002,17 @@ export declare const Envelope: {
|
|
|
14954
15002
|
online?: boolean | undefined;
|
|
14955
15003
|
metadata?: string | undefined;
|
|
14956
15004
|
is_disabled?: boolean | undefined;
|
|
14957
|
-
joined_clans?: (string[] & string[] & { [
|
|
15005
|
+
joined_clans?: (string[] & string[] & { [K_496 in Exclude<keyof I_1["user_channel_added_event"]["caller"]["joined_clans"], keyof string[]>]: never; }) | undefined;
|
|
14958
15006
|
pubkey?: string | undefined;
|
|
14959
15007
|
mezon_id?: string | undefined;
|
|
14960
15008
|
app_token?: string | undefined;
|
|
14961
15009
|
app_url?: string | undefined;
|
|
14962
15010
|
is_bot?: boolean | undefined;
|
|
14963
15011
|
voip_token?: string | undefined;
|
|
14964
|
-
} & { [
|
|
15012
|
+
} & { [K_497 in Exclude<keyof I_1["user_channel_added_event"]["caller"], keyof UserProfileRedis>]: never; }) | undefined;
|
|
14965
15013
|
create_time_second?: number | undefined;
|
|
14966
15014
|
active?: number | undefined;
|
|
14967
|
-
} & { [
|
|
15015
|
+
} & { [K_498 in Exclude<keyof I_1["user_channel_added_event"], keyof UserChannelAdded>]: never; }) | undefined;
|
|
14968
15016
|
user_channel_removed_event?: ({
|
|
14969
15017
|
channel_id?: string | undefined;
|
|
14970
15018
|
user_ids?: string[] | undefined;
|
|
@@ -14973,18 +15021,18 @@ export declare const Envelope: {
|
|
|
14973
15021
|
badge_counts?: number[] | undefined;
|
|
14974
15022
|
} & {
|
|
14975
15023
|
channel_id?: string | undefined;
|
|
14976
|
-
user_ids?: (string[] & string[] & { [
|
|
15024
|
+
user_ids?: (string[] & string[] & { [K_499 in Exclude<keyof I_1["user_channel_removed_event"]["user_ids"], keyof string[]>]: never; }) | undefined;
|
|
14977
15025
|
channel_type?: number | undefined;
|
|
14978
15026
|
clan_id?: string | undefined;
|
|
14979
|
-
badge_counts?: (number[] & number[] & { [
|
|
14980
|
-
} & { [
|
|
15027
|
+
badge_counts?: (number[] & number[] & { [K_500 in Exclude<keyof I_1["user_channel_removed_event"]["badge_counts"], keyof number[]>]: never; }) | undefined;
|
|
15028
|
+
} & { [K_501 in Exclude<keyof I_1["user_channel_removed_event"], keyof UserChannelRemoved>]: never; }) | undefined;
|
|
14981
15029
|
user_clan_removed_event?: ({
|
|
14982
15030
|
clan_id?: string | undefined;
|
|
14983
15031
|
user_ids?: string[] | undefined;
|
|
14984
15032
|
} & {
|
|
14985
15033
|
clan_id?: string | undefined;
|
|
14986
|
-
user_ids?: (string[] & string[] & { [
|
|
14987
|
-
} & { [
|
|
15034
|
+
user_ids?: (string[] & string[] & { [K_502 in Exclude<keyof I_1["user_clan_removed_event"]["user_ids"], keyof string[]>]: never; }) | undefined;
|
|
15035
|
+
} & { [K_503 in Exclude<keyof I_1["user_clan_removed_event"], keyof UserClanRemoved>]: never; }) | undefined;
|
|
14988
15036
|
clan_updated_event?: ({
|
|
14989
15037
|
clan_id?: string | undefined;
|
|
14990
15038
|
clan_name?: string | undefined;
|
|
@@ -15003,7 +15051,7 @@ export declare const Envelope: {
|
|
|
15003
15051
|
is_onboarding?: boolean | undefined;
|
|
15004
15052
|
welcome_channel_id?: string | undefined;
|
|
15005
15053
|
onboarding_banner?: string | undefined;
|
|
15006
|
-
} & { [
|
|
15054
|
+
} & { [K_504 in Exclude<keyof I_1["clan_updated_event"], keyof ClanUpdatedEvent>]: never; }) | undefined;
|
|
15007
15055
|
clan_profile_updated_event?: ({
|
|
15008
15056
|
user_id?: string | undefined;
|
|
15009
15057
|
clan_nick?: string | undefined;
|
|
@@ -15014,7 +15062,7 @@ export declare const Envelope: {
|
|
|
15014
15062
|
clan_nick?: string | undefined;
|
|
15015
15063
|
clan_avatar?: string | undefined;
|
|
15016
15064
|
clan_id?: string | undefined;
|
|
15017
|
-
} & { [
|
|
15065
|
+
} & { [K_505 in Exclude<keyof I_1["clan_profile_updated_event"], keyof ClanProfileUpdatedEvent>]: never; }) | undefined;
|
|
15018
15066
|
check_name_existed_event?: ({
|
|
15019
15067
|
name?: string | undefined;
|
|
15020
15068
|
condition_id?: string | undefined;
|
|
@@ -15025,7 +15073,7 @@ export declare const Envelope: {
|
|
|
15025
15073
|
condition_id?: string | undefined;
|
|
15026
15074
|
exist?: boolean | undefined;
|
|
15027
15075
|
type?: number | undefined;
|
|
15028
|
-
} & { [
|
|
15076
|
+
} & { [K_506 in Exclude<keyof I_1["check_name_existed_event"], keyof CheckNameExistedEvent>]: never; }) | undefined;
|
|
15029
15077
|
user_profile_updated_event?: ({
|
|
15030
15078
|
user_id?: string | undefined;
|
|
15031
15079
|
display_name?: string | undefined;
|
|
@@ -15042,7 +15090,7 @@ export declare const Envelope: {
|
|
|
15042
15090
|
channel_id?: string | undefined;
|
|
15043
15091
|
clan_id?: string | undefined;
|
|
15044
15092
|
encrypt_private_key?: string | undefined;
|
|
15045
|
-
} & { [
|
|
15093
|
+
} & { [K_507 in Exclude<keyof I_1["user_profile_updated_event"], keyof UserProfileUpdatedEvent>]: never; }) | undefined;
|
|
15046
15094
|
add_clan_user_event?: ({
|
|
15047
15095
|
clan_id?: string | undefined;
|
|
15048
15096
|
user?: {
|
|
@@ -15115,7 +15163,7 @@ export declare const Envelope: {
|
|
|
15115
15163
|
device_id?: string | undefined;
|
|
15116
15164
|
token_id?: string | undefined;
|
|
15117
15165
|
platform?: string | undefined;
|
|
15118
|
-
} & { [
|
|
15166
|
+
} & { [K_508 in Exclude<keyof I_1["add_clan_user_event"]["user"]["fcm_tokens"][number], keyof FCMTokens>]: never; })[] & { [K_509 in Exclude<keyof I_1["add_clan_user_event"]["user"]["fcm_tokens"], keyof {
|
|
15119
15167
|
device_id?: string | undefined;
|
|
15120
15168
|
token_id?: string | undefined;
|
|
15121
15169
|
platform?: string | undefined;
|
|
@@ -15123,16 +15171,16 @@ export declare const Envelope: {
|
|
|
15123
15171
|
online?: boolean | undefined;
|
|
15124
15172
|
metadata?: string | undefined;
|
|
15125
15173
|
is_disabled?: boolean | undefined;
|
|
15126
|
-
joined_clans?: (string[] & string[] & { [
|
|
15174
|
+
joined_clans?: (string[] & string[] & { [K_510 in Exclude<keyof I_1["add_clan_user_event"]["user"]["joined_clans"], keyof string[]>]: never; }) | undefined;
|
|
15127
15175
|
pubkey?: string | undefined;
|
|
15128
15176
|
mezon_id?: string | undefined;
|
|
15129
15177
|
app_token?: string | undefined;
|
|
15130
15178
|
app_url?: string | undefined;
|
|
15131
15179
|
is_bot?: boolean | undefined;
|
|
15132
15180
|
voip_token?: string | undefined;
|
|
15133
|
-
} & { [
|
|
15181
|
+
} & { [K_511 in Exclude<keyof I_1["add_clan_user_event"]["user"], keyof UserProfileRedis>]: never; }) | undefined;
|
|
15134
15182
|
invitor?: string | undefined;
|
|
15135
|
-
} & { [
|
|
15183
|
+
} & { [K_512 in Exclude<keyof I_1["add_clan_user_event"], keyof AddClanUserEvent>]: never; }) | undefined;
|
|
15136
15184
|
clan_event_created?: ({
|
|
15137
15185
|
title?: string | undefined;
|
|
15138
15186
|
logo?: string | undefined;
|
|
@@ -15186,8 +15234,8 @@ export declare const Envelope: {
|
|
|
15186
15234
|
external_link?: string | undefined;
|
|
15187
15235
|
creator_id?: string | undefined;
|
|
15188
15236
|
event_id?: string | undefined;
|
|
15189
|
-
} & { [
|
|
15190
|
-
} & { [
|
|
15237
|
+
} & { [K_513 in Exclude<keyof I_1["clan_event_created"]["meet_room"], keyof import("../api/api").GenerateMezonMeetResponse>]: never; }) | undefined;
|
|
15238
|
+
} & { [K_514 in Exclude<keyof I_1["clan_event_created"], keyof CreateEventRequest>]: never; }) | undefined;
|
|
15191
15239
|
role_assign_event?: ({
|
|
15192
15240
|
ClanId?: string | undefined;
|
|
15193
15241
|
role_id?: string | undefined;
|
|
@@ -15196,16 +15244,16 @@ export declare const Envelope: {
|
|
|
15196
15244
|
} & {
|
|
15197
15245
|
ClanId?: string | undefined;
|
|
15198
15246
|
role_id?: string | undefined;
|
|
15199
|
-
user_ids_assigned?: (string[] & string[] & { [
|
|
15200
|
-
user_ids_removed?: (string[] & string[] & { [
|
|
15201
|
-
} & { [
|
|
15247
|
+
user_ids_assigned?: (string[] & string[] & { [K_515 in Exclude<keyof I_1["role_assign_event"]["user_ids_assigned"], keyof string[]>]: never; }) | undefined;
|
|
15248
|
+
user_ids_removed?: (string[] & string[] & { [K_516 in Exclude<keyof I_1["role_assign_event"]["user_ids_removed"], keyof string[]>]: never; }) | undefined;
|
|
15249
|
+
} & { [K_517 in Exclude<keyof I_1["role_assign_event"], keyof RoleAssignedEvent>]: never; }) | undefined;
|
|
15202
15250
|
clan_deleted_event?: ({
|
|
15203
15251
|
clan_id?: string | undefined;
|
|
15204
15252
|
deletor?: string | undefined;
|
|
15205
15253
|
} & {
|
|
15206
15254
|
clan_id?: string | undefined;
|
|
15207
15255
|
deletor?: string | undefined;
|
|
15208
|
-
} & { [
|
|
15256
|
+
} & { [K_518 in Exclude<keyof I_1["clan_deleted_event"], keyof ClanDeletedEvent>]: never; }) | undefined;
|
|
15209
15257
|
give_coffee_event?: ({
|
|
15210
15258
|
sender_id?: string | undefined;
|
|
15211
15259
|
receiver_id?: string | undefined;
|
|
@@ -15220,7 +15268,7 @@ export declare const Envelope: {
|
|
|
15220
15268
|
message_ref_id?: string | undefined;
|
|
15221
15269
|
channel_id?: string | undefined;
|
|
15222
15270
|
clan_id?: string | undefined;
|
|
15223
|
-
} & { [
|
|
15271
|
+
} & { [K_519 in Exclude<keyof I_1["give_coffee_event"], keyof GiveCoffeeEvent>]: never; }) | undefined;
|
|
15224
15272
|
sticker_create_event?: ({
|
|
15225
15273
|
clan_id?: string | undefined;
|
|
15226
15274
|
source?: string | undefined;
|
|
@@ -15239,7 +15287,7 @@ export declare const Envelope: {
|
|
|
15239
15287
|
sticker_id?: string | undefined;
|
|
15240
15288
|
logo?: string | undefined;
|
|
15241
15289
|
clan_name?: string | undefined;
|
|
15242
|
-
} & { [
|
|
15290
|
+
} & { [K_520 in Exclude<keyof I_1["sticker_create_event"], keyof StickerCreateEvent>]: never; }) | undefined;
|
|
15243
15291
|
sticker_update_event?: ({
|
|
15244
15292
|
shortname?: string | undefined;
|
|
15245
15293
|
sticker_id?: string | undefined;
|
|
@@ -15248,14 +15296,14 @@ export declare const Envelope: {
|
|
|
15248
15296
|
shortname?: string | undefined;
|
|
15249
15297
|
sticker_id?: string | undefined;
|
|
15250
15298
|
user_id?: string | undefined;
|
|
15251
|
-
} & { [
|
|
15299
|
+
} & { [K_521 in Exclude<keyof I_1["sticker_update_event"], keyof StickerUpdateEvent>]: never; }) | undefined;
|
|
15252
15300
|
sticker_delete_event?: ({
|
|
15253
15301
|
sticker_id?: string | undefined;
|
|
15254
15302
|
user_id?: string | undefined;
|
|
15255
15303
|
} & {
|
|
15256
15304
|
sticker_id?: string | undefined;
|
|
15257
15305
|
user_id?: string | undefined;
|
|
15258
|
-
} & { [
|
|
15306
|
+
} & { [K_522 in Exclude<keyof I_1["sticker_delete_event"], keyof StickerDeleteEvent>]: never; }) | undefined;
|
|
15259
15307
|
role_event?: ({
|
|
15260
15308
|
role?: {
|
|
15261
15309
|
id?: string | undefined;
|
|
@@ -15393,7 +15441,7 @@ export declare const Envelope: {
|
|
|
15393
15441
|
lang_tag?: string | undefined;
|
|
15394
15442
|
location?: string | undefined;
|
|
15395
15443
|
online?: boolean | undefined;
|
|
15396
|
-
} & { [
|
|
15444
|
+
} & { [K_523 in Exclude<keyof I_1["role_event"]["role"]["role_user_list"]["role_users"][number], keyof import("../api/api").RoleUserList_RoleUser>]: never; })[] & { [K_524 in Exclude<keyof I_1["role_event"]["role"]["role_user_list"]["role_users"], keyof {
|
|
15397
15445
|
id?: string | undefined;
|
|
15398
15446
|
username?: string | undefined;
|
|
15399
15447
|
display_name?: string | undefined;
|
|
@@ -15403,7 +15451,7 @@ export declare const Envelope: {
|
|
|
15403
15451
|
online?: boolean | undefined;
|
|
15404
15452
|
}[]>]: never; }) | undefined;
|
|
15405
15453
|
cursor?: string | undefined;
|
|
15406
|
-
} & { [
|
|
15454
|
+
} & { [K_525 in Exclude<keyof I_1["role_event"]["role"]["role_user_list"], keyof RoleUserList>]: never; }) | undefined;
|
|
15407
15455
|
permission_list?: ({
|
|
15408
15456
|
permissions?: {
|
|
15409
15457
|
id?: string | undefined;
|
|
@@ -15440,7 +15488,7 @@ export declare const Envelope: {
|
|
|
15440
15488
|
active?: number | undefined;
|
|
15441
15489
|
scope?: number | undefined;
|
|
15442
15490
|
level?: number | undefined;
|
|
15443
|
-
} & { [
|
|
15491
|
+
} & { [K_526 in Exclude<keyof I_1["role_event"]["role"]["permission_list"]["permissions"][number], keyof import("../api/api").Permission>]: never; })[] & { [K_527 in Exclude<keyof I_1["role_event"]["role"]["permission_list"]["permissions"], keyof {
|
|
15444
15492
|
id?: string | undefined;
|
|
15445
15493
|
title?: string | undefined;
|
|
15446
15494
|
slug?: string | undefined;
|
|
@@ -15450,19 +15498,19 @@ export declare const Envelope: {
|
|
|
15450
15498
|
level?: number | undefined;
|
|
15451
15499
|
}[]>]: never; }) | undefined;
|
|
15452
15500
|
max_level_permission?: number | undefined;
|
|
15453
|
-
} & { [
|
|
15501
|
+
} & { [K_528 in Exclude<keyof I_1["role_event"]["role"]["permission_list"], keyof PermissionList>]: never; }) | undefined;
|
|
15454
15502
|
role_channel_active?: number | undefined;
|
|
15455
|
-
channel_ids?: (string[] & string[] & { [
|
|
15503
|
+
channel_ids?: (string[] & string[] & { [K_529 in Exclude<keyof I_1["role_event"]["role"]["channel_ids"], keyof string[]>]: never; }) | undefined;
|
|
15456
15504
|
max_level_permission?: number | undefined;
|
|
15457
15505
|
order_role?: number | undefined;
|
|
15458
|
-
} & { [
|
|
15506
|
+
} & { [K_530 in Exclude<keyof I_1["role_event"]["role"], keyof Role>]: never; }) | undefined;
|
|
15459
15507
|
status?: number | undefined;
|
|
15460
15508
|
user_id?: string | undefined;
|
|
15461
|
-
user_add_ids?: (string[] & string[] & { [
|
|
15462
|
-
user_remove_ids?: (string[] & string[] & { [
|
|
15463
|
-
active_permission_ids?: (string[] & string[] & { [
|
|
15464
|
-
remove_permission_ids?: (string[] & string[] & { [
|
|
15465
|
-
} & { [
|
|
15509
|
+
user_add_ids?: (string[] & string[] & { [K_531 in Exclude<keyof I_1["role_event"]["user_add_ids"], keyof string[]>]: never; }) | undefined;
|
|
15510
|
+
user_remove_ids?: (string[] & string[] & { [K_532 in Exclude<keyof I_1["role_event"]["user_remove_ids"], keyof string[]>]: never; }) | undefined;
|
|
15511
|
+
active_permission_ids?: (string[] & string[] & { [K_533 in Exclude<keyof I_1["role_event"]["active_permission_ids"], keyof string[]>]: never; }) | undefined;
|
|
15512
|
+
remove_permission_ids?: (string[] & string[] & { [K_534 in Exclude<keyof I_1["role_event"]["remove_permission_ids"], keyof string[]>]: never; }) | undefined;
|
|
15513
|
+
} & { [K_535 in Exclude<keyof I_1["role_event"], keyof RoleEvent>]: never; }) | undefined;
|
|
15466
15514
|
event_emoji?: ({
|
|
15467
15515
|
id?: string | undefined;
|
|
15468
15516
|
clan_id?: string | undefined;
|
|
@@ -15485,7 +15533,7 @@ export declare const Envelope: {
|
|
|
15485
15533
|
logo?: string | undefined;
|
|
15486
15534
|
clan_name?: string | undefined;
|
|
15487
15535
|
is_for_sale?: boolean | undefined;
|
|
15488
|
-
} & { [
|
|
15536
|
+
} & { [K_536 in Exclude<keyof I_1["event_emoji"], keyof EventEmoji>]: never; }) | undefined;
|
|
15489
15537
|
streaming_joined_event?: ({
|
|
15490
15538
|
clan_id?: string | undefined;
|
|
15491
15539
|
clan_name?: string | undefined;
|
|
@@ -15502,7 +15550,7 @@ export declare const Envelope: {
|
|
|
15502
15550
|
user_id?: string | undefined;
|
|
15503
15551
|
streaming_channel_label?: string | undefined;
|
|
15504
15552
|
streaming_channel_id?: string | undefined;
|
|
15505
|
-
} & { [
|
|
15553
|
+
} & { [K_537 in Exclude<keyof I_1["streaming_joined_event"], keyof StreamingJoinedEvent>]: never; }) | undefined;
|
|
15506
15554
|
streaming_leaved_event?: ({
|
|
15507
15555
|
id?: string | undefined;
|
|
15508
15556
|
clan_id?: string | undefined;
|
|
@@ -15513,7 +15561,7 @@ export declare const Envelope: {
|
|
|
15513
15561
|
clan_id?: string | undefined;
|
|
15514
15562
|
streaming_channel_id?: string | undefined;
|
|
15515
15563
|
streaming_user_id?: string | undefined;
|
|
15516
|
-
} & { [
|
|
15564
|
+
} & { [K_538 in Exclude<keyof I_1["streaming_leaved_event"], keyof StreamingLeavedEvent>]: never; }) | undefined;
|
|
15517
15565
|
streaming_started_event?: ({
|
|
15518
15566
|
clan_id?: string | undefined;
|
|
15519
15567
|
channel_id?: string | undefined;
|
|
@@ -15524,14 +15572,14 @@ export declare const Envelope: {
|
|
|
15524
15572
|
channel_id?: string | undefined;
|
|
15525
15573
|
streaming_url?: string | undefined;
|
|
15526
15574
|
is_streaming?: boolean | undefined;
|
|
15527
|
-
} & { [
|
|
15575
|
+
} & { [K_539 in Exclude<keyof I_1["streaming_started_event"], keyof StreamingStartedEvent>]: never; }) | undefined;
|
|
15528
15576
|
streaming_ended_event?: ({
|
|
15529
15577
|
clan_id?: string | undefined;
|
|
15530
15578
|
channel_id?: string | undefined;
|
|
15531
15579
|
} & {
|
|
15532
15580
|
clan_id?: string | undefined;
|
|
15533
15581
|
channel_id?: string | undefined;
|
|
15534
|
-
} & { [
|
|
15582
|
+
} & { [K_540 in Exclude<keyof I_1["streaming_ended_event"], keyof StreamingEndedEvent>]: never; }) | undefined;
|
|
15535
15583
|
permission_set_event?: ({
|
|
15536
15584
|
caller?: string | undefined;
|
|
15537
15585
|
role_id?: string | undefined;
|
|
@@ -15559,12 +15607,12 @@ export declare const Envelope: {
|
|
|
15559
15607
|
permission_id?: string | undefined;
|
|
15560
15608
|
slug?: string | undefined;
|
|
15561
15609
|
type?: number | undefined;
|
|
15562
|
-
} & { [
|
|
15610
|
+
} & { [K_541 in Exclude<keyof I_1["permission_set_event"]["permission_updates"][number], keyof PermissionUpdate>]: never; })[] & { [K_542 in Exclude<keyof I_1["permission_set_event"]["permission_updates"], keyof {
|
|
15563
15611
|
permission_id?: string | undefined;
|
|
15564
15612
|
slug?: string | undefined;
|
|
15565
15613
|
type?: number | undefined;
|
|
15566
15614
|
}[]>]: never; }) | undefined;
|
|
15567
|
-
} & { [
|
|
15615
|
+
} & { [K_543 in Exclude<keyof I_1["permission_set_event"], keyof PermissionSetEvent>]: never; }) | undefined;
|
|
15568
15616
|
permission_changed_event?: ({
|
|
15569
15617
|
user_id?: string | undefined;
|
|
15570
15618
|
channel_id?: string | undefined;
|
|
@@ -15598,7 +15646,7 @@ export declare const Envelope: {
|
|
|
15598
15646
|
permission_id?: string | undefined;
|
|
15599
15647
|
slug?: string | undefined;
|
|
15600
15648
|
type?: number | undefined;
|
|
15601
|
-
} & { [
|
|
15649
|
+
} & { [K_544 in Exclude<keyof I_1["permission_changed_event"]["add_permissions"][number], keyof PermissionUpdate>]: never; })[] & { [K_545 in Exclude<keyof I_1["permission_changed_event"]["add_permissions"], keyof {
|
|
15602
15650
|
permission_id?: string | undefined;
|
|
15603
15651
|
slug?: string | undefined;
|
|
15604
15652
|
type?: number | undefined;
|
|
@@ -15615,7 +15663,7 @@ export declare const Envelope: {
|
|
|
15615
15663
|
permission_id?: string | undefined;
|
|
15616
15664
|
slug?: string | undefined;
|
|
15617
15665
|
type?: number | undefined;
|
|
15618
|
-
} & { [
|
|
15666
|
+
} & { [K_546 in Exclude<keyof I_1["permission_changed_event"]["remove_permissions"][number], keyof PermissionUpdate>]: never; })[] & { [K_547 in Exclude<keyof I_1["permission_changed_event"]["remove_permissions"], keyof {
|
|
15619
15667
|
permission_id?: string | undefined;
|
|
15620
15668
|
slug?: string | undefined;
|
|
15621
15669
|
type?: number | undefined;
|
|
@@ -15632,12 +15680,12 @@ export declare const Envelope: {
|
|
|
15632
15680
|
permission_id?: string | undefined;
|
|
15633
15681
|
slug?: string | undefined;
|
|
15634
15682
|
type?: number | undefined;
|
|
15635
|
-
} & { [
|
|
15683
|
+
} & { [K_548 in Exclude<keyof I_1["permission_changed_event"]["default_permissions"][number], keyof PermissionUpdate>]: never; })[] & { [K_549 in Exclude<keyof I_1["permission_changed_event"]["default_permissions"], keyof {
|
|
15636
15684
|
permission_id?: string | undefined;
|
|
15637
15685
|
slug?: string | undefined;
|
|
15638
15686
|
type?: number | undefined;
|
|
15639
15687
|
}[]>]: never; }) | undefined;
|
|
15640
|
-
} & { [
|
|
15688
|
+
} & { [K_550 in Exclude<keyof I_1["permission_changed_event"], keyof PermissionChangedEvent>]: never; }) | undefined;
|
|
15641
15689
|
token_sent_event?: ({
|
|
15642
15690
|
sender_id?: string | undefined;
|
|
15643
15691
|
sender_name?: string | undefined;
|
|
@@ -15654,7 +15702,7 @@ export declare const Envelope: {
|
|
|
15654
15702
|
note?: string | undefined;
|
|
15655
15703
|
extra_attribute?: string | undefined;
|
|
15656
15704
|
transaction_id?: string | undefined;
|
|
15657
|
-
} & { [
|
|
15705
|
+
} & { [K_551 in Exclude<keyof I_1["token_sent_event"], keyof TokenSentEvent>]: never; }) | undefined;
|
|
15658
15706
|
message_button_clicked?: ({
|
|
15659
15707
|
message_id?: string | undefined;
|
|
15660
15708
|
channel_id?: string | undefined;
|
|
@@ -15669,7 +15717,7 @@ export declare const Envelope: {
|
|
|
15669
15717
|
sender_id?: string | undefined;
|
|
15670
15718
|
user_id?: string | undefined;
|
|
15671
15719
|
extra_data?: string | undefined;
|
|
15672
|
-
} & { [
|
|
15720
|
+
} & { [K_552 in Exclude<keyof I_1["message_button_clicked"], keyof MessageButtonClicked>]: never; }) | undefined;
|
|
15673
15721
|
unmute_event?: ({
|
|
15674
15722
|
channel_id?: string | undefined;
|
|
15675
15723
|
category_id?: string | undefined;
|
|
@@ -15678,7 +15726,7 @@ export declare const Envelope: {
|
|
|
15678
15726
|
channel_id?: string | undefined;
|
|
15679
15727
|
category_id?: string | undefined;
|
|
15680
15728
|
clan_id?: string | undefined;
|
|
15681
|
-
} & { [
|
|
15729
|
+
} & { [K_553 in Exclude<keyof I_1["unmute_event"], keyof UnmuteEvent>]: never; }) | undefined;
|
|
15682
15730
|
webrtc_signaling_fwd?: ({
|
|
15683
15731
|
receiver_id?: string | undefined;
|
|
15684
15732
|
data_type?: number | undefined;
|
|
@@ -15691,7 +15739,7 @@ export declare const Envelope: {
|
|
|
15691
15739
|
json_data?: string | undefined;
|
|
15692
15740
|
channel_id?: string | undefined;
|
|
15693
15741
|
caller_id?: string | undefined;
|
|
15694
|
-
} & { [
|
|
15742
|
+
} & { [K_554 in Exclude<keyof I_1["webrtc_signaling_fwd"], keyof WebrtcSignalingFwd>]: never; }) | undefined;
|
|
15695
15743
|
list_activity?: ({
|
|
15696
15744
|
acts?: {
|
|
15697
15745
|
user_id?: string | undefined;
|
|
@@ -15731,7 +15779,7 @@ export declare const Envelope: {
|
|
|
15731
15779
|
end_time?: Date | undefined;
|
|
15732
15780
|
application_id?: string | undefined;
|
|
15733
15781
|
status?: number | undefined;
|
|
15734
|
-
} & { [
|
|
15782
|
+
} & { [K_555 in Exclude<keyof I_1["list_activity"]["acts"][number], keyof UserActivity>]: never; })[] & { [K_556 in Exclude<keyof I_1["list_activity"]["acts"], keyof {
|
|
15735
15783
|
user_id?: string | undefined;
|
|
15736
15784
|
activity_name?: string | undefined;
|
|
15737
15785
|
activity_type?: number | undefined;
|
|
@@ -15741,7 +15789,7 @@ export declare const Envelope: {
|
|
|
15741
15789
|
application_id?: string | undefined;
|
|
15742
15790
|
status?: number | undefined;
|
|
15743
15791
|
}[]>]: never; }) | undefined;
|
|
15744
|
-
} & { [
|
|
15792
|
+
} & { [K_557 in Exclude<keyof I_1["list_activity"], "acts">]: never; }) | undefined;
|
|
15745
15793
|
dropdown_box_selected?: ({
|
|
15746
15794
|
message_id?: string | undefined;
|
|
15747
15795
|
channel_id?: string | undefined;
|
|
@@ -15755,8 +15803,8 @@ export declare const Envelope: {
|
|
|
15755
15803
|
selectbox_id?: string | undefined;
|
|
15756
15804
|
sender_id?: string | undefined;
|
|
15757
15805
|
user_id?: string | undefined;
|
|
15758
|
-
values?: (string[] & string[] & { [
|
|
15759
|
-
} & { [
|
|
15806
|
+
values?: (string[] & string[] & { [K_558 in Exclude<keyof I_1["dropdown_box_selected"]["values"], keyof string[]>]: never; }) | undefined;
|
|
15807
|
+
} & { [K_559 in Exclude<keyof I_1["dropdown_box_selected"], keyof DropdownBoxSelected>]: never; }) | undefined;
|
|
15760
15808
|
incoming_call_push?: ({
|
|
15761
15809
|
receiver_id?: string | undefined;
|
|
15762
15810
|
json_data?: string | undefined;
|
|
@@ -15767,7 +15815,7 @@ export declare const Envelope: {
|
|
|
15767
15815
|
json_data?: string | undefined;
|
|
15768
15816
|
channel_id?: string | undefined;
|
|
15769
15817
|
caller_id?: string | undefined;
|
|
15770
|
-
} & { [
|
|
15818
|
+
} & { [K_560 in Exclude<keyof I_1["incoming_call_push"], keyof IncomingCallPush>]: never; }) | undefined;
|
|
15771
15819
|
sd_topic_event?: ({
|
|
15772
15820
|
id?: string | undefined;
|
|
15773
15821
|
clan_id?: string | undefined;
|
|
@@ -15839,8 +15887,8 @@ export declare const Envelope: {
|
|
|
15839
15887
|
reference?: string | undefined;
|
|
15840
15888
|
mention?: string | undefined;
|
|
15841
15889
|
reaction?: string | undefined;
|
|
15842
|
-
repliers?: (string[] & string[] & { [
|
|
15843
|
-
} & { [
|
|
15890
|
+
repliers?: (string[] & string[] & { [K_561 in Exclude<keyof I_1["sd_topic_event"]["last_sent_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
15891
|
+
} & { [K_562 in Exclude<keyof I_1["sd_topic_event"]["last_sent_message"], keyof ChannelMessageHeader>]: never; }) | undefined;
|
|
15844
15892
|
message?: ({
|
|
15845
15893
|
clan_id?: string | undefined;
|
|
15846
15894
|
channel_id?: string | undefined;
|
|
@@ -15897,9 +15945,9 @@ export declare const Envelope: {
|
|
|
15897
15945
|
hide_editted?: boolean | undefined;
|
|
15898
15946
|
is_public?: boolean | undefined;
|
|
15899
15947
|
topic_id?: string | undefined;
|
|
15900
|
-
} & { [
|
|
15901
|
-
} & { [
|
|
15902
|
-
follow_event?: ({} & {} & { [
|
|
15948
|
+
} & { [K_563 in Exclude<keyof I_1["sd_topic_event"]["message"], keyof ChannelMessage>]: never; }) | undefined;
|
|
15949
|
+
} & { [K_564 in Exclude<keyof I_1["sd_topic_event"], keyof SdTopicEvent>]: never; }) | undefined;
|
|
15950
|
+
follow_event?: ({} & {} & { [K_565 in Exclude<keyof I_1["follow_event"], never>]: never; }) | undefined;
|
|
15903
15951
|
channel_app_event?: ({
|
|
15904
15952
|
user_id?: string | undefined;
|
|
15905
15953
|
username?: string | undefined;
|
|
@@ -15912,19 +15960,19 @@ export declare const Envelope: {
|
|
|
15912
15960
|
clan_id?: string | undefined;
|
|
15913
15961
|
channel_id?: string | undefined;
|
|
15914
15962
|
action?: number | undefined;
|
|
15915
|
-
} & { [
|
|
15963
|
+
} & { [K_566 in Exclude<keyof I_1["channel_app_event"], keyof ChannelAppEvent>]: never; }) | undefined;
|
|
15916
15964
|
user_status_event?: ({
|
|
15917
15965
|
user_id?: string | undefined;
|
|
15918
15966
|
custom_status?: string | undefined;
|
|
15919
15967
|
} & {
|
|
15920
15968
|
user_id?: string | undefined;
|
|
15921
15969
|
custom_status?: string | undefined;
|
|
15922
|
-
} & { [
|
|
15970
|
+
} & { [K_567 in Exclude<keyof I_1["user_status_event"], keyof UserStatusEvent>]: never; }) | undefined;
|
|
15923
15971
|
remove_friend?: ({
|
|
15924
15972
|
user_id?: string | undefined;
|
|
15925
15973
|
} & {
|
|
15926
15974
|
user_id?: string | undefined;
|
|
15927
|
-
} & { [
|
|
15975
|
+
} & { [K_568 in Exclude<keyof I_1["remove_friend"], "user_id">]: never; }) | undefined;
|
|
15928
15976
|
webhook_event?: ({
|
|
15929
15977
|
id?: string | undefined;
|
|
15930
15978
|
webhook_name?: string | undefined;
|
|
@@ -15947,7 +15995,7 @@ export declare const Envelope: {
|
|
|
15947
15995
|
update_time?: string | undefined;
|
|
15948
15996
|
avatar?: string | undefined;
|
|
15949
15997
|
status?: number | undefined;
|
|
15950
|
-
} & { [
|
|
15998
|
+
} & { [K_569 in Exclude<keyof I_1["webhook_event"], keyof Webhook>]: never; }) | undefined;
|
|
15951
15999
|
noti_user_channel?: ({
|
|
15952
16000
|
id?: string | undefined;
|
|
15953
16001
|
notification_setting_type?: number | undefined;
|
|
@@ -15960,7 +16008,7 @@ export declare const Envelope: {
|
|
|
15960
16008
|
time_mute?: Date | undefined;
|
|
15961
16009
|
active?: number | undefined;
|
|
15962
16010
|
channel_id?: string | undefined;
|
|
15963
|
-
} & { [
|
|
16011
|
+
} & { [K_570 in Exclude<keyof I_1["noti_user_channel"], keyof NotificationUserChannel>]: never; }) | undefined;
|
|
15964
16012
|
join_channel_app_data?: ({
|
|
15965
16013
|
user_id?: string | undefined;
|
|
15966
16014
|
username?: string | undefined;
|
|
@@ -15969,7 +16017,7 @@ export declare const Envelope: {
|
|
|
15969
16017
|
user_id?: string | undefined;
|
|
15970
16018
|
username?: string | undefined;
|
|
15971
16019
|
hash?: string | undefined;
|
|
15972
|
-
} & { [
|
|
16020
|
+
} & { [K_571 in Exclude<keyof I_1["join_channel_app_data"], keyof JoinChannelAppData>]: never; }) | undefined;
|
|
15973
16021
|
canvas_event?: ({
|
|
15974
16022
|
id?: string | undefined;
|
|
15975
16023
|
title?: string | undefined;
|
|
@@ -15988,7 +16036,7 @@ export declare const Envelope: {
|
|
|
15988
16036
|
is_default?: boolean | undefined;
|
|
15989
16037
|
channel_id?: string | undefined;
|
|
15990
16038
|
status?: number | undefined;
|
|
15991
|
-
} & { [
|
|
16039
|
+
} & { [K_572 in Exclude<keyof I_1["canvas_event"], keyof ChannelCanvas>]: never; }) | undefined;
|
|
15992
16040
|
unpin_message_event?: ({
|
|
15993
16041
|
id?: string | undefined;
|
|
15994
16042
|
message_id?: string | undefined;
|
|
@@ -15999,7 +16047,7 @@ export declare const Envelope: {
|
|
|
15999
16047
|
message_id?: string | undefined;
|
|
16000
16048
|
channel_id?: string | undefined;
|
|
16001
16049
|
clan_id?: string | undefined;
|
|
16002
|
-
} & { [
|
|
16050
|
+
} & { [K_573 in Exclude<keyof I_1["unpin_message_event"], keyof UnpinMessageEvent>]: never; }) | undefined;
|
|
16003
16051
|
category_event?: ({
|
|
16004
16052
|
creator_id?: string | undefined;
|
|
16005
16053
|
clan_id?: string | undefined;
|
|
@@ -16012,7 +16060,7 @@ export declare const Envelope: {
|
|
|
16012
16060
|
category_name?: string | undefined;
|
|
16013
16061
|
id?: string | undefined;
|
|
16014
16062
|
status?: number | undefined;
|
|
16015
|
-
} & { [
|
|
16063
|
+
} & { [K_574 in Exclude<keyof I_1["category_event"], keyof CategoryEvent>]: never; }) | undefined;
|
|
16016
16064
|
handle_participant_meet_state_event?: ({
|
|
16017
16065
|
clan_id?: string | undefined;
|
|
16018
16066
|
channel_id?: string | undefined;
|
|
@@ -16023,12 +16071,12 @@ export declare const Envelope: {
|
|
|
16023
16071
|
channel_id?: string | undefined;
|
|
16024
16072
|
display_name?: string | undefined;
|
|
16025
16073
|
state?: number | undefined;
|
|
16026
|
-
} & { [
|
|
16074
|
+
} & { [K_575 in Exclude<keyof I_1["handle_participant_meet_state_event"], keyof HandleParticipantMeetStateEvent>]: never; }) | undefined;
|
|
16027
16075
|
delete_account_event?: ({
|
|
16028
16076
|
user_id?: string | undefined;
|
|
16029
16077
|
} & {
|
|
16030
16078
|
user_id?: string | undefined;
|
|
16031
|
-
} & { [
|
|
16079
|
+
} & { [K_576 in Exclude<keyof I_1["delete_account_event"], "user_id">]: never; }) | undefined;
|
|
16032
16080
|
ephemeral_message_send?: ({
|
|
16033
16081
|
message?: {
|
|
16034
16082
|
clan_id?: string | undefined;
|
|
@@ -16148,7 +16196,7 @@ export declare const Envelope: {
|
|
|
16148
16196
|
create_time?: Date | undefined;
|
|
16149
16197
|
s?: number | undefined;
|
|
16150
16198
|
e?: number | undefined;
|
|
16151
|
-
} & { [
|
|
16199
|
+
} & { [K_577 in Exclude<keyof I_1["ephemeral_message_send"]["message"]["mentions"][number], keyof MessageMention>]: never; })[] & { [K_578 in Exclude<keyof I_1["ephemeral_message_send"]["message"]["mentions"], keyof {
|
|
16152
16200
|
id?: string | undefined;
|
|
16153
16201
|
user_id?: string | undefined;
|
|
16154
16202
|
username?: string | undefined;
|
|
@@ -16182,7 +16230,7 @@ export declare const Envelope: {
|
|
|
16182
16230
|
width?: number | undefined;
|
|
16183
16231
|
height?: number | undefined;
|
|
16184
16232
|
thumbnail?: string | undefined;
|
|
16185
|
-
} & { [
|
|
16233
|
+
} & { [K_579 in Exclude<keyof I_1["ephemeral_message_send"]["message"]["attachments"][number], keyof MessageAttachment>]: never; })[] & { [K_580 in Exclude<keyof I_1["ephemeral_message_send"]["message"]["attachments"], keyof {
|
|
16186
16234
|
filename?: string | undefined;
|
|
16187
16235
|
size?: number | undefined;
|
|
16188
16236
|
url?: string | undefined;
|
|
@@ -16224,7 +16272,7 @@ export declare const Envelope: {
|
|
|
16224
16272
|
mesages_sender_avatar?: string | undefined;
|
|
16225
16273
|
message_sender_clan_nick?: string | undefined;
|
|
16226
16274
|
message_sender_display_name?: string | undefined;
|
|
16227
|
-
} & { [
|
|
16275
|
+
} & { [K_581 in Exclude<keyof I_1["ephemeral_message_send"]["message"]["references"][number], keyof MessageRef>]: never; })[] & { [K_582 in Exclude<keyof I_1["ephemeral_message_send"]["message"]["references"], keyof {
|
|
16228
16276
|
message_id?: string | undefined;
|
|
16229
16277
|
message_ref_id?: string | undefined;
|
|
16230
16278
|
content?: string | undefined;
|
|
@@ -16243,25 +16291,25 @@ export declare const Envelope: {
|
|
|
16243
16291
|
is_public?: boolean | undefined;
|
|
16244
16292
|
code?: number | undefined;
|
|
16245
16293
|
topic_id?: string | undefined;
|
|
16246
|
-
} & { [
|
|
16294
|
+
} & { [K_583 in Exclude<keyof I_1["ephemeral_message_send"]["message"], keyof ChannelMessageSend>]: never; }) | undefined;
|
|
16247
16295
|
receiver_id?: string | undefined;
|
|
16248
|
-
} & { [
|
|
16296
|
+
} & { [K_584 in Exclude<keyof I_1["ephemeral_message_send"], keyof EphemeralMessageSend>]: never; }) | undefined;
|
|
16249
16297
|
block_friend?: ({
|
|
16250
16298
|
user_id?: string | undefined;
|
|
16251
16299
|
} & {
|
|
16252
16300
|
user_id?: string | undefined;
|
|
16253
|
-
} & { [
|
|
16301
|
+
} & { [K_585 in Exclude<keyof I_1["block_friend"], "user_id">]: never; }) | undefined;
|
|
16254
16302
|
voice_reaction_send?: ({
|
|
16255
16303
|
emojis?: string[] | undefined;
|
|
16256
16304
|
channel_id?: string | undefined;
|
|
16257
16305
|
sender_id?: string | undefined;
|
|
16258
16306
|
media_type?: number | undefined;
|
|
16259
16307
|
} & {
|
|
16260
|
-
emojis?: (string[] & string[] & { [
|
|
16308
|
+
emojis?: (string[] & string[] & { [K_586 in Exclude<keyof I_1["voice_reaction_send"]["emojis"], keyof string[]>]: never; }) | undefined;
|
|
16261
16309
|
channel_id?: string | undefined;
|
|
16262
16310
|
sender_id?: string | undefined;
|
|
16263
16311
|
media_type?: number | undefined;
|
|
16264
|
-
} & { [
|
|
16312
|
+
} & { [K_587 in Exclude<keyof I_1["voice_reaction_send"], keyof VoiceReactionSend>]: never; }) | undefined;
|
|
16265
16313
|
mark_as_read?: ({
|
|
16266
16314
|
channel_id?: string | undefined;
|
|
16267
16315
|
category_id?: string | undefined;
|
|
@@ -16270,7 +16318,7 @@ export declare const Envelope: {
|
|
|
16270
16318
|
channel_id?: string | undefined;
|
|
16271
16319
|
category_id?: string | undefined;
|
|
16272
16320
|
clan_id?: string | undefined;
|
|
16273
|
-
} & { [
|
|
16321
|
+
} & { [K_588 in Exclude<keyof I_1["mark_as_read"], keyof MarkAsRead>]: never; }) | undefined;
|
|
16274
16322
|
list_data_socket?: ({
|
|
16275
16323
|
api_name?: string | undefined;
|
|
16276
16324
|
list_clan_req?: {
|
|
@@ -16291,6 +16339,8 @@ export declare const Envelope: {
|
|
|
16291
16339
|
welcome_channel_id?: string | undefined;
|
|
16292
16340
|
onboarding_banner?: string | undefined;
|
|
16293
16341
|
clan_order?: number | undefined;
|
|
16342
|
+
is_community?: boolean | undefined;
|
|
16343
|
+
community_banner?: string | undefined;
|
|
16294
16344
|
}[] | undefined;
|
|
16295
16345
|
} | undefined;
|
|
16296
16346
|
list_thread_req?: {
|
|
@@ -17137,7 +17187,7 @@ export declare const Envelope: {
|
|
|
17137
17187
|
limit?: number | undefined;
|
|
17138
17188
|
state?: number | undefined;
|
|
17139
17189
|
cursor?: string | undefined;
|
|
17140
|
-
} & { [
|
|
17190
|
+
} & { [K_589 in Exclude<keyof I_1["list_data_socket"]["list_clan_req"], keyof ListClanDescRequest>]: never; }) | undefined;
|
|
17141
17191
|
clan_desc_list?: ({
|
|
17142
17192
|
clandesc?: {
|
|
17143
17193
|
creator_id?: string | undefined;
|
|
@@ -17151,6 +17201,8 @@ export declare const Envelope: {
|
|
|
17151
17201
|
welcome_channel_id?: string | undefined;
|
|
17152
17202
|
onboarding_banner?: string | undefined;
|
|
17153
17203
|
clan_order?: number | undefined;
|
|
17204
|
+
is_community?: boolean | undefined;
|
|
17205
|
+
community_banner?: string | undefined;
|
|
17154
17206
|
}[] | undefined;
|
|
17155
17207
|
} & {
|
|
17156
17208
|
clandesc?: ({
|
|
@@ -17165,6 +17217,8 @@ export declare const Envelope: {
|
|
|
17165
17217
|
welcome_channel_id?: string | undefined;
|
|
17166
17218
|
onboarding_banner?: string | undefined;
|
|
17167
17219
|
clan_order?: number | undefined;
|
|
17220
|
+
is_community?: boolean | undefined;
|
|
17221
|
+
community_banner?: string | undefined;
|
|
17168
17222
|
}[] & ({
|
|
17169
17223
|
creator_id?: string | undefined;
|
|
17170
17224
|
clan_name?: string | undefined;
|
|
@@ -17177,6 +17231,8 @@ export declare const Envelope: {
|
|
|
17177
17231
|
welcome_channel_id?: string | undefined;
|
|
17178
17232
|
onboarding_banner?: string | undefined;
|
|
17179
17233
|
clan_order?: number | undefined;
|
|
17234
|
+
is_community?: boolean | undefined;
|
|
17235
|
+
community_banner?: string | undefined;
|
|
17180
17236
|
} & {
|
|
17181
17237
|
creator_id?: string | undefined;
|
|
17182
17238
|
clan_name?: string | undefined;
|
|
@@ -17189,7 +17245,9 @@ export declare const Envelope: {
|
|
|
17189
17245
|
welcome_channel_id?: string | undefined;
|
|
17190
17246
|
onboarding_banner?: string | undefined;
|
|
17191
17247
|
clan_order?: number | undefined;
|
|
17192
|
-
|
|
17248
|
+
is_community?: boolean | undefined;
|
|
17249
|
+
community_banner?: string | undefined;
|
|
17250
|
+
} & { [K_590 in Exclude<keyof I_1["list_data_socket"]["clan_desc_list"]["clandesc"][number], keyof import("../api/api").ClanDesc>]: never; })[] & { [K_591 in Exclude<keyof I_1["list_data_socket"]["clan_desc_list"]["clandesc"], keyof {
|
|
17193
17251
|
creator_id?: string | undefined;
|
|
17194
17252
|
clan_name?: string | undefined;
|
|
17195
17253
|
logo?: string | undefined;
|
|
@@ -17201,8 +17259,10 @@ export declare const Envelope: {
|
|
|
17201
17259
|
welcome_channel_id?: string | undefined;
|
|
17202
17260
|
onboarding_banner?: string | undefined;
|
|
17203
17261
|
clan_order?: number | undefined;
|
|
17262
|
+
is_community?: boolean | undefined;
|
|
17263
|
+
community_banner?: string | undefined;
|
|
17204
17264
|
}[]>]: never; }) | undefined;
|
|
17205
|
-
} & { [
|
|
17265
|
+
} & { [K_592 in Exclude<keyof I_1["list_data_socket"]["clan_desc_list"], "clandesc">]: never; }) | undefined;
|
|
17206
17266
|
list_thread_req?: ({
|
|
17207
17267
|
limit?: number | undefined;
|
|
17208
17268
|
state?: number | undefined;
|
|
@@ -17217,7 +17277,7 @@ export declare const Envelope: {
|
|
|
17217
17277
|
channel_id?: string | undefined;
|
|
17218
17278
|
thread_id?: string | undefined;
|
|
17219
17279
|
page?: number | undefined;
|
|
17220
|
-
} & { [
|
|
17280
|
+
} & { [K_593 in Exclude<keyof I_1["list_data_socket"]["list_thread_req"], keyof ListThreadRequest>]: never; }) | undefined;
|
|
17221
17281
|
channel_desc_list?: ({
|
|
17222
17282
|
channeldesc?: {
|
|
17223
17283
|
clan_id?: string | undefined;
|
|
@@ -17391,8 +17451,8 @@ export declare const Envelope: {
|
|
|
17391
17451
|
creator_id?: string | undefined;
|
|
17392
17452
|
channel_label?: string | undefined;
|
|
17393
17453
|
channel_private?: number | undefined;
|
|
17394
|
-
channel_avatar?: (string[] & string[] & { [
|
|
17395
|
-
user_id?: (string[] & string[] & { [
|
|
17454
|
+
channel_avatar?: (string[] & string[] & { [K_594 in Exclude<keyof I_1["list_data_socket"]["channel_desc_list"]["channeldesc"][number]["channel_avatar"], keyof string[]>]: never; }) | undefined;
|
|
17455
|
+
user_id?: (string[] & string[] & { [K_595 in Exclude<keyof I_1["list_data_socket"]["channel_desc_list"]["channeldesc"][number]["user_id"], keyof string[]>]: never; }) | undefined;
|
|
17396
17456
|
last_sent_message?: ({
|
|
17397
17457
|
id?: string | undefined;
|
|
17398
17458
|
timestamp_seconds?: number | undefined;
|
|
@@ -17412,8 +17472,8 @@ export declare const Envelope: {
|
|
|
17412
17472
|
reference?: string | undefined;
|
|
17413
17473
|
mention?: string | undefined;
|
|
17414
17474
|
reaction?: string | undefined;
|
|
17415
|
-
repliers?: (string[] & string[] & { [
|
|
17416
|
-
} & { [
|
|
17475
|
+
repliers?: (string[] & string[] & { [K_596 in Exclude<keyof I_1["list_data_socket"]["channel_desc_list"]["channeldesc"][number]["last_sent_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
17476
|
+
} & { [K_597 in Exclude<keyof I_1["list_data_socket"]["channel_desc_list"]["channeldesc"][number]["last_sent_message"], keyof ChannelMessageHeader>]: never; }) | undefined;
|
|
17417
17477
|
last_seen_message?: ({
|
|
17418
17478
|
id?: string | undefined;
|
|
17419
17479
|
timestamp_seconds?: number | undefined;
|
|
@@ -17433,27 +17493,27 @@ export declare const Envelope: {
|
|
|
17433
17493
|
reference?: string | undefined;
|
|
17434
17494
|
mention?: string | undefined;
|
|
17435
17495
|
reaction?: string | undefined;
|
|
17436
|
-
repliers?: (string[] & string[] & { [
|
|
17437
|
-
} & { [
|
|
17438
|
-
is_online?: (boolean[] & boolean[] & { [
|
|
17496
|
+
repliers?: (string[] & string[] & { [K_598 in Exclude<keyof I_1["list_data_socket"]["channel_desc_list"]["channeldesc"][number]["last_seen_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
17497
|
+
} & { [K_599 in Exclude<keyof I_1["list_data_socket"]["channel_desc_list"]["channeldesc"][number]["last_seen_message"], keyof ChannelMessageHeader>]: never; }) | undefined;
|
|
17498
|
+
is_online?: (boolean[] & boolean[] & { [K_600 in Exclude<keyof I_1["list_data_socket"]["channel_desc_list"]["channeldesc"][number]["is_online"], keyof boolean[]>]: never; }) | undefined;
|
|
17439
17499
|
meeting_code?: string | undefined;
|
|
17440
17500
|
count_mess_unread?: number | undefined;
|
|
17441
17501
|
active?: number | undefined;
|
|
17442
17502
|
last_pin_message?: string | undefined;
|
|
17443
|
-
usernames?: (string[] & string[] & { [
|
|
17503
|
+
usernames?: (string[] & string[] & { [K_601 in Exclude<keyof I_1["list_data_socket"]["channel_desc_list"]["channeldesc"][number]["usernames"], keyof string[]>]: never; }) | undefined;
|
|
17444
17504
|
creator_name?: string | undefined;
|
|
17445
17505
|
create_time_seconds?: number | undefined;
|
|
17446
17506
|
update_time_seconds?: number | undefined;
|
|
17447
|
-
metadata?: (string[] & string[] & { [
|
|
17448
|
-
about_me?: (string[] & string[] & { [
|
|
17507
|
+
metadata?: (string[] & string[] & { [K_602 in Exclude<keyof I_1["list_data_socket"]["channel_desc_list"]["channeldesc"][number]["metadata"], keyof string[]>]: never; }) | undefined;
|
|
17508
|
+
about_me?: (string[] & string[] & { [K_603 in Exclude<keyof I_1["list_data_socket"]["channel_desc_list"]["channeldesc"][number]["about_me"], keyof string[]>]: never; }) | undefined;
|
|
17449
17509
|
clan_name?: string | undefined;
|
|
17450
17510
|
app_id?: string | undefined;
|
|
17451
17511
|
is_mute?: boolean | undefined;
|
|
17452
17512
|
age_restricted?: number | undefined;
|
|
17453
17513
|
topic?: string | undefined;
|
|
17454
17514
|
e2ee?: number | undefined;
|
|
17455
|
-
display_names?: (string[] & string[] & { [
|
|
17456
|
-
} & { [
|
|
17515
|
+
display_names?: (string[] & string[] & { [K_604 in Exclude<keyof I_1["list_data_socket"]["channel_desc_list"]["channeldesc"][number]["display_names"], keyof string[]>]: never; }) | undefined;
|
|
17516
|
+
} & { [K_605 in Exclude<keyof I_1["list_data_socket"]["channel_desc_list"]["channeldesc"][number], keyof ChannelDescription1>]: never; })[] & { [K_606 in Exclude<keyof I_1["list_data_socket"]["channel_desc_list"]["channeldesc"], keyof {
|
|
17457
17517
|
clan_id?: string | undefined;
|
|
17458
17518
|
parent_id?: string | undefined;
|
|
17459
17519
|
channel_id?: string | undefined;
|
|
@@ -17510,28 +17570,28 @@ export declare const Envelope: {
|
|
|
17510
17570
|
prev_cursor?: string | undefined;
|
|
17511
17571
|
cacheable_cursor?: string | undefined;
|
|
17512
17572
|
page?: number | undefined;
|
|
17513
|
-
} & { [
|
|
17573
|
+
} & { [K_607 in Exclude<keyof I_1["list_data_socket"]["channel_desc_list"], keyof ChannelDescList>]: never; }) | undefined;
|
|
17514
17574
|
list_channel_users_uc_req?: ({
|
|
17515
17575
|
channel_id?: string | undefined;
|
|
17516
17576
|
limit?: number | undefined;
|
|
17517
17577
|
} & {
|
|
17518
17578
|
channel_id?: string | undefined;
|
|
17519
17579
|
limit?: number | undefined;
|
|
17520
|
-
} & { [
|
|
17580
|
+
} & { [K_608 in Exclude<keyof I_1["list_data_socket"]["list_channel_users_uc_req"], keyof AllUsersAddChannelRequest>]: never; }) | undefined;
|
|
17521
17581
|
channel_users_uc_list?: ({
|
|
17522
17582
|
channel_id?: string | undefined;
|
|
17523
17583
|
user_ids?: string[] | undefined;
|
|
17524
17584
|
limit?: number | undefined;
|
|
17525
17585
|
} & {
|
|
17526
17586
|
channel_id?: string | undefined;
|
|
17527
|
-
user_ids?: (string[] & string[] & { [
|
|
17587
|
+
user_ids?: (string[] & string[] & { [K_609 in Exclude<keyof I_1["list_data_socket"]["channel_users_uc_list"]["user_ids"], keyof string[]>]: never; }) | undefined;
|
|
17528
17588
|
limit?: number | undefined;
|
|
17529
|
-
} & { [
|
|
17589
|
+
} & { [K_610 in Exclude<keyof I_1["list_data_socket"]["channel_users_uc_list"], keyof AllUsersAddChannelResponse>]: never; }) | undefined;
|
|
17530
17590
|
list_channel_detail_req?: ({
|
|
17531
17591
|
channel_id?: string | undefined;
|
|
17532
17592
|
} & {
|
|
17533
17593
|
channel_id?: string | undefined;
|
|
17534
|
-
} & { [
|
|
17594
|
+
} & { [K_611 in Exclude<keyof I_1["list_data_socket"]["list_channel_detail_req"], "channel_id">]: never; }) | undefined;
|
|
17535
17595
|
channel_desc?: ({
|
|
17536
17596
|
clan_id?: string | undefined;
|
|
17537
17597
|
parent_id?: string | undefined;
|
|
@@ -17594,8 +17654,8 @@ export declare const Envelope: {
|
|
|
17594
17654
|
creator_id?: string | undefined;
|
|
17595
17655
|
channel_label?: string | undefined;
|
|
17596
17656
|
channel_private?: number | undefined;
|
|
17597
|
-
channel_avatar?: (string[] & string[] & { [
|
|
17598
|
-
user_id?: (string[] & string[] & { [
|
|
17657
|
+
channel_avatar?: (string[] & string[] & { [K_612 in Exclude<keyof I_1["list_data_socket"]["channel_desc"]["channel_avatar"], keyof string[]>]: never; }) | undefined;
|
|
17658
|
+
user_id?: (string[] & string[] & { [K_613 in Exclude<keyof I_1["list_data_socket"]["channel_desc"]["user_id"], keyof string[]>]: never; }) | undefined;
|
|
17599
17659
|
last_sent_message?: ({
|
|
17600
17660
|
id?: string | undefined;
|
|
17601
17661
|
timestamp_seconds?: number | undefined;
|
|
@@ -17615,8 +17675,8 @@ export declare const Envelope: {
|
|
|
17615
17675
|
reference?: string | undefined;
|
|
17616
17676
|
mention?: string | undefined;
|
|
17617
17677
|
reaction?: string | undefined;
|
|
17618
|
-
repliers?: (string[] & string[] & { [
|
|
17619
|
-
} & { [
|
|
17678
|
+
repliers?: (string[] & string[] & { [K_614 in Exclude<keyof I_1["list_data_socket"]["channel_desc"]["last_sent_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
17679
|
+
} & { [K_615 in Exclude<keyof I_1["list_data_socket"]["channel_desc"]["last_sent_message"], keyof ChannelMessageHeader>]: never; }) | undefined;
|
|
17620
17680
|
last_seen_message?: ({
|
|
17621
17681
|
id?: string | undefined;
|
|
17622
17682
|
timestamp_seconds?: number | undefined;
|
|
@@ -17636,27 +17696,27 @@ export declare const Envelope: {
|
|
|
17636
17696
|
reference?: string | undefined;
|
|
17637
17697
|
mention?: string | undefined;
|
|
17638
17698
|
reaction?: string | undefined;
|
|
17639
|
-
repliers?: (string[] & string[] & { [
|
|
17640
|
-
} & { [
|
|
17641
|
-
is_online?: (boolean[] & boolean[] & { [
|
|
17699
|
+
repliers?: (string[] & string[] & { [K_616 in Exclude<keyof I_1["list_data_socket"]["channel_desc"]["last_seen_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
17700
|
+
} & { [K_617 in Exclude<keyof I_1["list_data_socket"]["channel_desc"]["last_seen_message"], keyof ChannelMessageHeader>]: never; }) | undefined;
|
|
17701
|
+
is_online?: (boolean[] & boolean[] & { [K_618 in Exclude<keyof I_1["list_data_socket"]["channel_desc"]["is_online"], keyof boolean[]>]: never; }) | undefined;
|
|
17642
17702
|
meeting_code?: string | undefined;
|
|
17643
17703
|
count_mess_unread?: number | undefined;
|
|
17644
17704
|
active?: number | undefined;
|
|
17645
17705
|
last_pin_message?: string | undefined;
|
|
17646
|
-
usernames?: (string[] & string[] & { [
|
|
17706
|
+
usernames?: (string[] & string[] & { [K_619 in Exclude<keyof I_1["list_data_socket"]["channel_desc"]["usernames"], keyof string[]>]: never; }) | undefined;
|
|
17647
17707
|
creator_name?: string | undefined;
|
|
17648
17708
|
create_time_seconds?: number | undefined;
|
|
17649
17709
|
update_time_seconds?: number | undefined;
|
|
17650
|
-
metadata?: (string[] & string[] & { [
|
|
17651
|
-
about_me?: (string[] & string[] & { [
|
|
17710
|
+
metadata?: (string[] & string[] & { [K_620 in Exclude<keyof I_1["list_data_socket"]["channel_desc"]["metadata"], keyof string[]>]: never; }) | undefined;
|
|
17711
|
+
about_me?: (string[] & string[] & { [K_621 in Exclude<keyof I_1["list_data_socket"]["channel_desc"]["about_me"], keyof string[]>]: never; }) | undefined;
|
|
17652
17712
|
clan_name?: string | undefined;
|
|
17653
17713
|
app_id?: string | undefined;
|
|
17654
17714
|
is_mute?: boolean | undefined;
|
|
17655
17715
|
age_restricted?: number | undefined;
|
|
17656
17716
|
topic?: string | undefined;
|
|
17657
17717
|
e2ee?: number | undefined;
|
|
17658
|
-
display_names?: (string[] & string[] & { [
|
|
17659
|
-
} & { [
|
|
17718
|
+
display_names?: (string[] & string[] & { [K_622 in Exclude<keyof I_1["list_data_socket"]["channel_desc"]["display_names"], keyof string[]>]: never; }) | undefined;
|
|
17719
|
+
} & { [K_623 in Exclude<keyof I_1["list_data_socket"]["channel_desc"], keyof ChannelDescription1>]: never; }) | undefined;
|
|
17660
17720
|
list_channel_req?: ({
|
|
17661
17721
|
limit?: number | undefined;
|
|
17662
17722
|
state?: number | undefined;
|
|
@@ -17669,7 +17729,7 @@ export declare const Envelope: {
|
|
|
17669
17729
|
cursor?: string | undefined;
|
|
17670
17730
|
clan_id?: string | undefined;
|
|
17671
17731
|
channel_type?: number | undefined;
|
|
17672
|
-
} & { [
|
|
17732
|
+
} & { [K_624 in Exclude<keyof I_1["list_data_socket"]["list_channel_req"], keyof ListChannelDescsRequest>]: never; }) | undefined;
|
|
17673
17733
|
list_channel_message_req?: ({
|
|
17674
17734
|
clan_id?: string | undefined;
|
|
17675
17735
|
channel_id?: string | undefined;
|
|
@@ -17684,7 +17744,7 @@ export declare const Envelope: {
|
|
|
17684
17744
|
limit?: number | undefined;
|
|
17685
17745
|
direction?: number | undefined;
|
|
17686
17746
|
topic_id?: string | undefined;
|
|
17687
|
-
} & { [
|
|
17747
|
+
} & { [K_625 in Exclude<keyof I_1["list_data_socket"]["list_channel_message_req"], keyof ListChannelMessagesRequest>]: never; }) | undefined;
|
|
17688
17748
|
channel_message_list?: ({
|
|
17689
17749
|
messages?: {
|
|
17690
17750
|
clan_id?: string | undefined;
|
|
@@ -17822,7 +17882,7 @@ export declare const Envelope: {
|
|
|
17822
17882
|
hide_editted?: boolean | undefined;
|
|
17823
17883
|
is_public?: boolean | undefined;
|
|
17824
17884
|
topic_id?: string | undefined;
|
|
17825
|
-
} & { [
|
|
17885
|
+
} & { [K_626 in Exclude<keyof I_1["list_data_socket"]["channel_message_list"]["messages"][number], keyof ChannelMessage>]: never; })[] & { [K_627 in Exclude<keyof I_1["list_data_socket"]["channel_message_list"]["messages"], keyof {
|
|
17826
17886
|
clan_id?: string | undefined;
|
|
17827
17887
|
channel_id?: string | undefined;
|
|
17828
17888
|
message_id?: string | undefined;
|
|
@@ -17870,8 +17930,8 @@ export declare const Envelope: {
|
|
|
17870
17930
|
reference?: string | undefined;
|
|
17871
17931
|
mention?: string | undefined;
|
|
17872
17932
|
reaction?: string | undefined;
|
|
17873
|
-
repliers?: (string[] & string[] & { [
|
|
17874
|
-
} & { [
|
|
17933
|
+
repliers?: (string[] & string[] & { [K_628 in Exclude<keyof I_1["list_data_socket"]["channel_message_list"]["last_seen_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
17934
|
+
} & { [K_629 in Exclude<keyof I_1["list_data_socket"]["channel_message_list"]["last_seen_message"], keyof ChannelMessageHeader>]: never; }) | undefined;
|
|
17875
17935
|
last_sent_message?: ({
|
|
17876
17936
|
id?: string | undefined;
|
|
17877
17937
|
timestamp_seconds?: number | undefined;
|
|
@@ -17891,9 +17951,9 @@ export declare const Envelope: {
|
|
|
17891
17951
|
reference?: string | undefined;
|
|
17892
17952
|
mention?: string | undefined;
|
|
17893
17953
|
reaction?: string | undefined;
|
|
17894
|
-
repliers?: (string[] & string[] & { [
|
|
17895
|
-
} & { [
|
|
17896
|
-
} & { [
|
|
17954
|
+
repliers?: (string[] & string[] & { [K_630 in Exclude<keyof I_1["list_data_socket"]["channel_message_list"]["last_sent_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
17955
|
+
} & { [K_631 in Exclude<keyof I_1["list_data_socket"]["channel_message_list"]["last_sent_message"], keyof ChannelMessageHeader>]: never; }) | undefined;
|
|
17956
|
+
} & { [K_632 in Exclude<keyof I_1["list_data_socket"]["channel_message_list"], keyof ChannelMessageList>]: never; }) | undefined;
|
|
17897
17957
|
list_channel_users_req?: ({
|
|
17898
17958
|
clan_id?: string | undefined;
|
|
17899
17959
|
channel_id?: string | undefined;
|
|
@@ -17908,7 +17968,7 @@ export declare const Envelope: {
|
|
|
17908
17968
|
limit?: number | undefined;
|
|
17909
17969
|
state?: number | undefined;
|
|
17910
17970
|
cursor?: string | undefined;
|
|
17911
|
-
} & { [
|
|
17971
|
+
} & { [K_633 in Exclude<keyof I_1["list_data_socket"]["list_channel_users_req"], keyof ListChannelUsersRequest>]: never; }) | undefined;
|
|
17912
17972
|
voice_user_list?: ({
|
|
17913
17973
|
voice_channel_users?: {
|
|
17914
17974
|
id?: string | undefined;
|
|
@@ -17932,13 +17992,13 @@ export declare const Envelope: {
|
|
|
17932
17992
|
user_id?: string | undefined;
|
|
17933
17993
|
channel_id?: string | undefined;
|
|
17934
17994
|
participant?: string | undefined;
|
|
17935
|
-
} & { [
|
|
17995
|
+
} & { [K_634 in Exclude<keyof I_1["list_data_socket"]["voice_user_list"]["voice_channel_users"][number], keyof import("../api/api").VoiceChannelUser>]: never; })[] & { [K_635 in Exclude<keyof I_1["list_data_socket"]["voice_user_list"]["voice_channel_users"], keyof {
|
|
17936
17996
|
id?: string | undefined;
|
|
17937
17997
|
user_id?: string | undefined;
|
|
17938
17998
|
channel_id?: string | undefined;
|
|
17939
17999
|
participant?: string | undefined;
|
|
17940
18000
|
}[]>]: never; }) | undefined;
|
|
17941
|
-
} & { [
|
|
18001
|
+
} & { [K_636 in Exclude<keyof I_1["list_data_socket"]["voice_user_list"], "voice_channel_users">]: never; }) | undefined;
|
|
17942
18002
|
channel_user_list?: ({
|
|
17943
18003
|
channel_users?: {
|
|
17944
18004
|
user_id?: string | undefined;
|
|
@@ -17973,14 +18033,14 @@ export declare const Envelope: {
|
|
|
17973
18033
|
added_by?: string | undefined;
|
|
17974
18034
|
} & {
|
|
17975
18035
|
user_id?: string | undefined;
|
|
17976
|
-
role_id?: (string[] & string[] & { [
|
|
18036
|
+
role_id?: (string[] & string[] & { [K_637 in Exclude<keyof I_1["list_data_socket"]["channel_user_list"]["channel_users"][number]["role_id"], keyof string[]>]: never; }) | undefined;
|
|
17977
18037
|
id?: string | undefined;
|
|
17978
18038
|
thread_id?: string | undefined;
|
|
17979
18039
|
clan_nick?: string | undefined;
|
|
17980
18040
|
clan_avatar?: string | undefined;
|
|
17981
18041
|
clan_id?: string | undefined;
|
|
17982
18042
|
added_by?: string | undefined;
|
|
17983
|
-
} & { [
|
|
18043
|
+
} & { [K_638 in Exclude<keyof I_1["list_data_socket"]["channel_user_list"]["channel_users"][number], keyof import("../api/api").ChannelUserList_ChannelUser>]: never; })[] & { [K_639 in Exclude<keyof I_1["list_data_socket"]["channel_user_list"]["channel_users"], keyof {
|
|
17984
18044
|
user_id?: string | undefined;
|
|
17985
18045
|
role_id?: string[] | undefined;
|
|
17986
18046
|
id?: string | undefined;
|
|
@@ -17992,7 +18052,7 @@ export declare const Envelope: {
|
|
|
17992
18052
|
}[]>]: never; }) | undefined;
|
|
17993
18053
|
cursor?: string | undefined;
|
|
17994
18054
|
channel_id?: string | undefined;
|
|
17995
|
-
} & { [
|
|
18055
|
+
} & { [K_640 in Exclude<keyof I_1["list_data_socket"]["channel_user_list"], keyof ChannelUserList>]: never; }) | undefined;
|
|
17996
18056
|
list_channel_attachment_req?: ({
|
|
17997
18057
|
clan_id?: string | undefined;
|
|
17998
18058
|
channel_id?: string | undefined;
|
|
@@ -18011,7 +18071,7 @@ export declare const Envelope: {
|
|
|
18011
18071
|
before?: string | undefined;
|
|
18012
18072
|
after?: string | undefined;
|
|
18013
18073
|
around?: string | undefined;
|
|
18014
|
-
} & { [
|
|
18074
|
+
} & { [K_641 in Exclude<keyof I_1["list_data_socket"]["list_channel_attachment_req"], keyof ListChannelAttachmentRequest>]: never; }) | undefined;
|
|
18015
18075
|
channel_attachment_list?: ({
|
|
18016
18076
|
attachments?: {
|
|
18017
18077
|
id?: string | undefined;
|
|
@@ -18059,7 +18119,7 @@ export declare const Envelope: {
|
|
|
18059
18119
|
message_id?: string | undefined;
|
|
18060
18120
|
width?: number | undefined;
|
|
18061
18121
|
height?: number | undefined;
|
|
18062
|
-
} & { [
|
|
18122
|
+
} & { [K_642 in Exclude<keyof I_1["list_data_socket"]["channel_attachment_list"]["attachments"][number], keyof import("../api/api").ChannelAttachment>]: never; })[] & { [K_643 in Exclude<keyof I_1["list_data_socket"]["channel_attachment_list"]["attachments"], keyof {
|
|
18063
18123
|
id?: string | undefined;
|
|
18064
18124
|
filename?: string | undefined;
|
|
18065
18125
|
filetype?: string | undefined;
|
|
@@ -18071,14 +18131,14 @@ export declare const Envelope: {
|
|
|
18071
18131
|
width?: number | undefined;
|
|
18072
18132
|
height?: number | undefined;
|
|
18073
18133
|
}[]>]: never; }) | undefined;
|
|
18074
|
-
} & { [
|
|
18134
|
+
} & { [K_644 in Exclude<keyof I_1["list_data_socket"]["channel_attachment_list"], "attachments">]: never; }) | undefined;
|
|
18075
18135
|
hashtag_dm_req?: ({
|
|
18076
18136
|
user_id?: string[] | undefined;
|
|
18077
18137
|
limit?: number | undefined;
|
|
18078
18138
|
} & {
|
|
18079
|
-
user_id?: (string[] & string[] & { [
|
|
18139
|
+
user_id?: (string[] & string[] & { [K_645 in Exclude<keyof I_1["list_data_socket"]["hashtag_dm_req"]["user_id"], keyof string[]>]: never; }) | undefined;
|
|
18080
18140
|
limit?: number | undefined;
|
|
18081
|
-
} & { [
|
|
18141
|
+
} & { [K_646 in Exclude<keyof I_1["list_data_socket"]["hashtag_dm_req"], keyof HashtagDmListRequest>]: never; }) | undefined;
|
|
18082
18142
|
hashtag_dm_list?: ({
|
|
18083
18143
|
hashtag_dm?: {
|
|
18084
18144
|
channel_id?: string | undefined;
|
|
@@ -18118,7 +18178,7 @@ export declare const Envelope: {
|
|
|
18118
18178
|
type?: number | undefined;
|
|
18119
18179
|
channel_private?: number | undefined;
|
|
18120
18180
|
parent_id?: string | undefined;
|
|
18121
|
-
} & { [
|
|
18181
|
+
} & { [K_647 in Exclude<keyof I_1["list_data_socket"]["hashtag_dm_list"]["hashtag_dm"][number], keyof import("../api/api").HashtagDm>]: never; })[] & { [K_648 in Exclude<keyof I_1["list_data_socket"]["hashtag_dm_list"]["hashtag_dm"], keyof {
|
|
18122
18182
|
channel_id?: string | undefined;
|
|
18123
18183
|
channel_label?: string | undefined;
|
|
18124
18184
|
clan_id?: string | undefined;
|
|
@@ -18128,7 +18188,7 @@ export declare const Envelope: {
|
|
|
18128
18188
|
channel_private?: number | undefined;
|
|
18129
18189
|
parent_id?: string | undefined;
|
|
18130
18190
|
}[]>]: never; }) | undefined;
|
|
18131
|
-
} & { [
|
|
18191
|
+
} & { [K_649 in Exclude<keyof I_1["list_data_socket"]["hashtag_dm_list"], "hashtag_dm">]: never; }) | undefined;
|
|
18132
18192
|
channel_setting_req?: ({
|
|
18133
18193
|
clan_id?: string | undefined;
|
|
18134
18194
|
parent_id?: string | undefined;
|
|
@@ -18151,7 +18211,7 @@ export declare const Envelope: {
|
|
|
18151
18211
|
limit?: number | undefined;
|
|
18152
18212
|
page?: number | undefined;
|
|
18153
18213
|
channel_label?: string | undefined;
|
|
18154
|
-
} & { [
|
|
18214
|
+
} & { [K_650 in Exclude<keyof I_1["list_data_socket"]["channel_setting_req"], keyof ChannelSettingListRequest>]: never; }) | undefined;
|
|
18155
18215
|
channel_setting_list?: ({
|
|
18156
18216
|
clan_id?: string | undefined;
|
|
18157
18217
|
channel_count?: number | undefined;
|
|
@@ -18240,7 +18300,7 @@ export declare const Envelope: {
|
|
|
18240
18300
|
channel_private?: number | undefined;
|
|
18241
18301
|
channel_type?: number | undefined;
|
|
18242
18302
|
active?: number | undefined;
|
|
18243
|
-
user_ids?: (string[] & string[] & { [
|
|
18303
|
+
user_ids?: (string[] & string[] & { [K_651 in Exclude<keyof I_1["list_data_socket"]["channel_setting_list"]["channel_setting_list"][number]["user_ids"], keyof string[]>]: never; }) | undefined;
|
|
18244
18304
|
message_count?: number | undefined;
|
|
18245
18305
|
last_sent_message?: ({
|
|
18246
18306
|
id?: string | undefined;
|
|
@@ -18261,9 +18321,9 @@ export declare const Envelope: {
|
|
|
18261
18321
|
reference?: string | undefined;
|
|
18262
18322
|
mention?: string | undefined;
|
|
18263
18323
|
reaction?: string | undefined;
|
|
18264
|
-
repliers?: (string[] & string[] & { [
|
|
18265
|
-
} & { [
|
|
18266
|
-
} & { [
|
|
18324
|
+
repliers?: (string[] & string[] & { [K_652 in Exclude<keyof I_1["list_data_socket"]["channel_setting_list"]["channel_setting_list"][number]["last_sent_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
18325
|
+
} & { [K_653 in Exclude<keyof I_1["list_data_socket"]["channel_setting_list"]["channel_setting_list"][number]["last_sent_message"], keyof ChannelMessageHeader>]: never; }) | undefined;
|
|
18326
|
+
} & { [K_654 in Exclude<keyof I_1["list_data_socket"]["channel_setting_list"]["channel_setting_list"][number], keyof import("../api/api").ChannelSettingItem>]: never; })[] & { [K_655 in Exclude<keyof I_1["list_data_socket"]["channel_setting_list"]["channel_setting_list"], keyof {
|
|
18267
18327
|
id?: string | undefined;
|
|
18268
18328
|
creator_id?: string | undefined;
|
|
18269
18329
|
parent_id?: string | undefined;
|
|
@@ -18287,17 +18347,17 @@ export declare const Envelope: {
|
|
|
18287
18347
|
repliers?: string[] | undefined;
|
|
18288
18348
|
} | undefined;
|
|
18289
18349
|
}[]>]: never; }) | undefined;
|
|
18290
|
-
} & { [
|
|
18350
|
+
} & { [K_656 in Exclude<keyof I_1["list_data_socket"]["channel_setting_list"], keyof ChannelSettingListResponse>]: never; }) | undefined;
|
|
18291
18351
|
favorite_channel_req?: ({
|
|
18292
18352
|
clan_id?: string | undefined;
|
|
18293
18353
|
} & {
|
|
18294
18354
|
clan_id?: string | undefined;
|
|
18295
|
-
} & { [
|
|
18355
|
+
} & { [K_657 in Exclude<keyof I_1["list_data_socket"]["favorite_channel_req"], "clan_id">]: never; }) | undefined;
|
|
18296
18356
|
favorite_channel_list?: ({
|
|
18297
18357
|
channel_ids?: string[] | undefined;
|
|
18298
18358
|
} & {
|
|
18299
|
-
channel_ids?: (string[] & string[] & { [
|
|
18300
|
-
} & { [
|
|
18359
|
+
channel_ids?: (string[] & string[] & { [K_658 in Exclude<keyof I_1["list_data_socket"]["favorite_channel_list"]["channel_ids"], keyof string[]>]: never; }) | undefined;
|
|
18360
|
+
} & { [K_659 in Exclude<keyof I_1["list_data_socket"]["favorite_channel_list"], "channel_ids">]: never; }) | undefined;
|
|
18301
18361
|
search_thread_req?: ({
|
|
18302
18362
|
clan_id?: string | undefined;
|
|
18303
18363
|
channel_id?: string | undefined;
|
|
@@ -18306,12 +18366,12 @@ export declare const Envelope: {
|
|
|
18306
18366
|
clan_id?: string | undefined;
|
|
18307
18367
|
channel_id?: string | undefined;
|
|
18308
18368
|
label?: string | undefined;
|
|
18309
|
-
} & { [
|
|
18369
|
+
} & { [K_660 in Exclude<keyof I_1["list_data_socket"]["search_thread_req"], keyof SearchThreadRequest>]: never; }) | undefined;
|
|
18310
18370
|
notification_channel?: ({
|
|
18311
18371
|
channel_id?: string | undefined;
|
|
18312
18372
|
} & {
|
|
18313
18373
|
channel_id?: string | undefined;
|
|
18314
|
-
} & { [
|
|
18374
|
+
} & { [K_661 in Exclude<keyof I_1["list_data_socket"]["notification_channel"], "channel_id">]: never; }) | undefined;
|
|
18315
18375
|
notificaion_user_channel?: ({
|
|
18316
18376
|
id?: string | undefined;
|
|
18317
18377
|
notification_setting_type?: number | undefined;
|
|
@@ -18324,24 +18384,24 @@ export declare const Envelope: {
|
|
|
18324
18384
|
time_mute?: Date | undefined;
|
|
18325
18385
|
active?: number | undefined;
|
|
18326
18386
|
channel_id?: string | undefined;
|
|
18327
|
-
} & { [
|
|
18387
|
+
} & { [K_662 in Exclude<keyof I_1["list_data_socket"]["notificaion_user_channel"], keyof NotificationUserChannel>]: never; }) | undefined;
|
|
18328
18388
|
notification_category?: ({
|
|
18329
18389
|
category_id?: string | undefined;
|
|
18330
18390
|
} & {
|
|
18331
18391
|
category_id?: string | undefined;
|
|
18332
|
-
} & { [
|
|
18392
|
+
} & { [K_663 in Exclude<keyof I_1["list_data_socket"]["notification_category"], "category_id">]: never; }) | undefined;
|
|
18333
18393
|
notification_clan?: ({
|
|
18334
18394
|
clan_id?: string | undefined;
|
|
18335
18395
|
} & {
|
|
18336
18396
|
clan_id?: string | undefined;
|
|
18337
|
-
} & { [
|
|
18397
|
+
} & { [K_664 in Exclude<keyof I_1["list_data_socket"]["notification_clan"], "clan_id">]: never; }) | undefined;
|
|
18338
18398
|
notification_setting?: ({
|
|
18339
18399
|
id?: string | undefined;
|
|
18340
18400
|
notification_setting_type?: number | undefined;
|
|
18341
18401
|
} & {
|
|
18342
18402
|
id?: string | undefined;
|
|
18343
18403
|
notification_setting_type?: number | undefined;
|
|
18344
|
-
} & { [
|
|
18404
|
+
} & { [K_665 in Exclude<keyof I_1["list_data_socket"]["notification_setting"], keyof NotificationSetting>]: never; }) | undefined;
|
|
18345
18405
|
notification_message?: ({
|
|
18346
18406
|
id?: string | undefined;
|
|
18347
18407
|
user_id?: string | undefined;
|
|
@@ -18350,7 +18410,7 @@ export declare const Envelope: {
|
|
|
18350
18410
|
id?: string | undefined;
|
|
18351
18411
|
user_id?: string | undefined;
|
|
18352
18412
|
channel_id?: string | undefined;
|
|
18353
|
-
} & { [
|
|
18413
|
+
} & { [K_666 in Exclude<keyof I_1["list_data_socket"]["notification_message"], keyof NotifiReactMessage>]: never; }) | undefined;
|
|
18354
18414
|
noti_channel_cat_setting_list?: ({
|
|
18355
18415
|
notification_channel_category_settings_list?: {
|
|
18356
18416
|
id?: string | undefined;
|
|
@@ -18378,14 +18438,14 @@ export declare const Envelope: {
|
|
|
18378
18438
|
notification_setting_type?: number | undefined;
|
|
18379
18439
|
channel_category_title?: string | undefined;
|
|
18380
18440
|
action?: number | undefined;
|
|
18381
|
-
} & { [
|
|
18441
|
+
} & { [K_667 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_668 in Exclude<keyof I_1["list_data_socket"]["noti_channel_cat_setting_list"]["notification_channel_category_settings_list"], keyof {
|
|
18382
18442
|
id?: string | undefined;
|
|
18383
18443
|
channel_category_label?: string | undefined;
|
|
18384
18444
|
notification_setting_type?: number | undefined;
|
|
18385
18445
|
channel_category_title?: string | undefined;
|
|
18386
18446
|
action?: number | undefined;
|
|
18387
18447
|
}[]>]: never; }) | undefined;
|
|
18388
|
-
} & { [
|
|
18448
|
+
} & { [K_669 in Exclude<keyof I_1["list_data_socket"]["noti_channel_cat_setting_list"], "notification_channel_category_settings_list">]: never; }) | undefined;
|
|
18389
18449
|
list_notification_req?: ({
|
|
18390
18450
|
limit?: number | undefined;
|
|
18391
18451
|
clan_id?: string | undefined;
|
|
@@ -18398,7 +18458,7 @@ export declare const Envelope: {
|
|
|
18398
18458
|
notification_id?: string | undefined;
|
|
18399
18459
|
category?: number | undefined;
|
|
18400
18460
|
direction?: number | undefined;
|
|
18401
|
-
} & { [
|
|
18461
|
+
} & { [K_670 in Exclude<keyof I_1["list_data_socket"]["list_notification_req"], keyof ListNotificationsRequest>]: never; }) | undefined;
|
|
18402
18462
|
notification_list?: ({
|
|
18403
18463
|
notifications?: {
|
|
18404
18464
|
id?: string | undefined;
|
|
@@ -18678,8 +18738,8 @@ export declare const Envelope: {
|
|
|
18678
18738
|
creator_id?: string | undefined;
|
|
18679
18739
|
channel_label?: string | undefined;
|
|
18680
18740
|
channel_private?: number | undefined;
|
|
18681
|
-
channel_avatar?: (string[] & string[] & { [
|
|
18682
|
-
user_id?: (string[] & string[] & { [
|
|
18741
|
+
channel_avatar?: (string[] & string[] & { [K_671 in Exclude<keyof I_1["list_data_socket"]["notification_list"]["notifications"][number]["channel"]["channel_avatar"], keyof string[]>]: never; }) | undefined;
|
|
18742
|
+
user_id?: (string[] & string[] & { [K_672 in Exclude<keyof I_1["list_data_socket"]["notification_list"]["notifications"][number]["channel"]["user_id"], keyof string[]>]: never; }) | undefined;
|
|
18683
18743
|
last_sent_message?: ({
|
|
18684
18744
|
id?: string | undefined;
|
|
18685
18745
|
timestamp_seconds?: number | undefined;
|
|
@@ -18699,8 +18759,8 @@ export declare const Envelope: {
|
|
|
18699
18759
|
reference?: string | undefined;
|
|
18700
18760
|
mention?: string | undefined;
|
|
18701
18761
|
reaction?: string | undefined;
|
|
18702
|
-
repliers?: (string[] & string[] & { [
|
|
18703
|
-
} & { [
|
|
18762
|
+
repliers?: (string[] & string[] & { [K_673 in Exclude<keyof I_1["list_data_socket"]["notification_list"]["notifications"][number]["channel"]["last_sent_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
18763
|
+
} & { [K_674 in Exclude<keyof I_1["list_data_socket"]["notification_list"]["notifications"][number]["channel"]["last_sent_message"], keyof ChannelMessageHeader>]: never; }) | undefined;
|
|
18704
18764
|
last_seen_message?: ({
|
|
18705
18765
|
id?: string | undefined;
|
|
18706
18766
|
timestamp_seconds?: number | undefined;
|
|
@@ -18720,30 +18780,30 @@ export declare const Envelope: {
|
|
|
18720
18780
|
reference?: string | undefined;
|
|
18721
18781
|
mention?: string | undefined;
|
|
18722
18782
|
reaction?: string | undefined;
|
|
18723
|
-
repliers?: (string[] & string[] & { [
|
|
18724
|
-
} & { [
|
|
18725
|
-
is_online?: (boolean[] & boolean[] & { [
|
|
18783
|
+
repliers?: (string[] & string[] & { [K_675 in Exclude<keyof I_1["list_data_socket"]["notification_list"]["notifications"][number]["channel"]["last_seen_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
18784
|
+
} & { [K_676 in Exclude<keyof I_1["list_data_socket"]["notification_list"]["notifications"][number]["channel"]["last_seen_message"], keyof ChannelMessageHeader>]: never; }) | undefined;
|
|
18785
|
+
is_online?: (boolean[] & boolean[] & { [K_677 in Exclude<keyof I_1["list_data_socket"]["notification_list"]["notifications"][number]["channel"]["is_online"], keyof boolean[]>]: never; }) | undefined;
|
|
18726
18786
|
meeting_code?: string | undefined;
|
|
18727
18787
|
count_mess_unread?: number | undefined;
|
|
18728
18788
|
active?: number | undefined;
|
|
18729
18789
|
last_pin_message?: string | undefined;
|
|
18730
|
-
usernames?: (string[] & string[] & { [
|
|
18790
|
+
usernames?: (string[] & string[] & { [K_678 in Exclude<keyof I_1["list_data_socket"]["notification_list"]["notifications"][number]["channel"]["usernames"], keyof string[]>]: never; }) | undefined;
|
|
18731
18791
|
creator_name?: string | undefined;
|
|
18732
18792
|
create_time_seconds?: number | undefined;
|
|
18733
18793
|
update_time_seconds?: number | undefined;
|
|
18734
|
-
metadata?: (string[] & string[] & { [
|
|
18735
|
-
about_me?: (string[] & string[] & { [
|
|
18794
|
+
metadata?: (string[] & string[] & { [K_679 in Exclude<keyof I_1["list_data_socket"]["notification_list"]["notifications"][number]["channel"]["metadata"], keyof string[]>]: never; }) | undefined;
|
|
18795
|
+
about_me?: (string[] & string[] & { [K_680 in Exclude<keyof I_1["list_data_socket"]["notification_list"]["notifications"][number]["channel"]["about_me"], keyof string[]>]: never; }) | undefined;
|
|
18736
18796
|
clan_name?: string | undefined;
|
|
18737
18797
|
app_id?: string | undefined;
|
|
18738
18798
|
is_mute?: boolean | undefined;
|
|
18739
18799
|
age_restricted?: number | undefined;
|
|
18740
18800
|
topic?: string | undefined;
|
|
18741
18801
|
e2ee?: number | undefined;
|
|
18742
|
-
display_names?: (string[] & string[] & { [
|
|
18743
|
-
} & { [
|
|
18802
|
+
display_names?: (string[] & string[] & { [K_681 in Exclude<keyof I_1["list_data_socket"]["notification_list"]["notifications"][number]["channel"]["display_names"], keyof string[]>]: never; }) | undefined;
|
|
18803
|
+
} & { [K_682 in Exclude<keyof I_1["list_data_socket"]["notification_list"]["notifications"][number]["channel"], keyof ChannelDescription1>]: never; }) | undefined;
|
|
18744
18804
|
topic_id?: string | undefined;
|
|
18745
18805
|
category?: number | undefined;
|
|
18746
|
-
} & { [
|
|
18806
|
+
} & { [K_683 in Exclude<keyof I_1["list_data_socket"]["notification_list"]["notifications"][number], keyof Notification>]: never; })[] & { [K_684 in Exclude<keyof I_1["list_data_socket"]["notification_list"]["notifications"], keyof {
|
|
18747
18807
|
id?: string | undefined;
|
|
18748
18808
|
subject?: string | undefined;
|
|
18749
18809
|
content?: string | undefined;
|
|
@@ -18812,7 +18872,7 @@ export declare const Envelope: {
|
|
|
18812
18872
|
category?: number | undefined;
|
|
18813
18873
|
}[]>]: never; }) | undefined;
|
|
18814
18874
|
cacheable_cursor?: string | undefined;
|
|
18815
|
-
} & { [
|
|
18875
|
+
} & { [K_685 in Exclude<keyof I_1["list_data_socket"]["notification_list"], keyof NotificationList>]: never; }) | undefined;
|
|
18816
18876
|
sticker_list?: ({
|
|
18817
18877
|
stickers?: {
|
|
18818
18878
|
id?: string | undefined;
|
|
@@ -18864,7 +18924,7 @@ export declare const Envelope: {
|
|
|
18864
18924
|
clan_name?: string | undefined;
|
|
18865
18925
|
media_type?: number | undefined;
|
|
18866
18926
|
is_for_sale?: boolean | undefined;
|
|
18867
|
-
} & { [
|
|
18927
|
+
} & { [K_686 in Exclude<keyof I_1["list_data_socket"]["sticker_list"]["stickers"][number], keyof import("../api/api").ClanSticker>]: never; })[] & { [K_687 in Exclude<keyof I_1["list_data_socket"]["sticker_list"]["stickers"], keyof {
|
|
18868
18928
|
id?: string | undefined;
|
|
18869
18929
|
source?: string | undefined;
|
|
18870
18930
|
shortname?: string | undefined;
|
|
@@ -18877,7 +18937,7 @@ export declare const Envelope: {
|
|
|
18877
18937
|
media_type?: number | undefined;
|
|
18878
18938
|
is_for_sale?: boolean | undefined;
|
|
18879
18939
|
}[]>]: never; }) | undefined;
|
|
18880
|
-
} & { [
|
|
18940
|
+
} & { [K_688 in Exclude<keyof I_1["list_data_socket"]["sticker_list"], "stickers">]: never; }) | undefined;
|
|
18881
18941
|
emoji_recent_list?: ({
|
|
18882
18942
|
emoji_recents?: {
|
|
18883
18943
|
emoji_recents_id?: string | undefined;
|
|
@@ -18897,17 +18957,17 @@ export declare const Envelope: {
|
|
|
18897
18957
|
emoji_recents_id?: string | undefined;
|
|
18898
18958
|
emoji_id?: string | undefined;
|
|
18899
18959
|
update_time?: Date | undefined;
|
|
18900
|
-
} & { [
|
|
18960
|
+
} & { [K_689 in Exclude<keyof I_1["list_data_socket"]["emoji_recent_list"]["emoji_recents"][number], keyof import("../api/api").EmojiRecent>]: never; })[] & { [K_690 in Exclude<keyof I_1["list_data_socket"]["emoji_recent_list"]["emoji_recents"], keyof {
|
|
18901
18961
|
emoji_recents_id?: string | undefined;
|
|
18902
18962
|
emoji_id?: string | undefined;
|
|
18903
18963
|
update_time?: Date | undefined;
|
|
18904
18964
|
}[]>]: never; }) | undefined;
|
|
18905
|
-
} & { [
|
|
18965
|
+
} & { [K_691 in Exclude<keyof I_1["list_data_socket"]["emoji_recent_list"], "emoji_recents">]: never; }) | undefined;
|
|
18906
18966
|
clan_webhook_req?: ({
|
|
18907
18967
|
clan_id?: string | undefined;
|
|
18908
18968
|
} & {
|
|
18909
18969
|
clan_id?: string | undefined;
|
|
18910
|
-
} & { [
|
|
18970
|
+
} & { [K_692 in Exclude<keyof I_1["list_data_socket"]["clan_webhook_req"], "clan_id">]: never; }) | undefined;
|
|
18911
18971
|
clan_webhook_list?: ({
|
|
18912
18972
|
list_clan_webhooks?: {
|
|
18913
18973
|
id?: string | undefined;
|
|
@@ -18951,7 +19011,7 @@ export declare const Envelope: {
|
|
|
18951
19011
|
avatar?: string | undefined;
|
|
18952
19012
|
create_time?: string | undefined;
|
|
18953
19013
|
update_time?: string | undefined;
|
|
18954
|
-
} & { [
|
|
19014
|
+
} & { [K_693 in Exclude<keyof I_1["list_data_socket"]["clan_webhook_list"]["list_clan_webhooks"][number], keyof import("../api/api").ClanWebhook>]: never; })[] & { [K_694 in Exclude<keyof I_1["list_data_socket"]["clan_webhook_list"]["list_clan_webhooks"], keyof {
|
|
18955
19015
|
id?: string | undefined;
|
|
18956
19016
|
webhook_name?: string | undefined;
|
|
18957
19017
|
clan_id?: string | undefined;
|
|
@@ -18962,14 +19022,14 @@ export declare const Envelope: {
|
|
|
18962
19022
|
create_time?: string | undefined;
|
|
18963
19023
|
update_time?: string | undefined;
|
|
18964
19024
|
}[]>]: never; }) | undefined;
|
|
18965
|
-
} & { [
|
|
19025
|
+
} & { [K_695 in Exclude<keyof I_1["list_data_socket"]["clan_webhook_list"], "list_clan_webhooks">]: never; }) | undefined;
|
|
18966
19026
|
webhook_list_req?: ({
|
|
18967
19027
|
channel_id?: string | undefined;
|
|
18968
19028
|
clan_id?: string | undefined;
|
|
18969
19029
|
} & {
|
|
18970
19030
|
channel_id?: string | undefined;
|
|
18971
19031
|
clan_id?: string | undefined;
|
|
18972
|
-
} & { [
|
|
19032
|
+
} & { [K_696 in Exclude<keyof I_1["list_data_socket"]["webhook_list_req"], keyof WebhookListRequest>]: never; }) | undefined;
|
|
18973
19033
|
webhook_list?: ({
|
|
18974
19034
|
webhooks?: {
|
|
18975
19035
|
id?: string | undefined;
|
|
@@ -19017,7 +19077,7 @@ export declare const Envelope: {
|
|
|
19017
19077
|
update_time?: string | undefined;
|
|
19018
19078
|
avatar?: string | undefined;
|
|
19019
19079
|
status?: number | undefined;
|
|
19020
|
-
} & { [
|
|
19080
|
+
} & { [K_697 in Exclude<keyof I_1["list_data_socket"]["webhook_list"]["webhooks"][number], keyof Webhook>]: never; })[] & { [K_698 in Exclude<keyof I_1["list_data_socket"]["webhook_list"]["webhooks"], keyof {
|
|
19021
19081
|
id?: string | undefined;
|
|
19022
19082
|
webhook_name?: string | undefined;
|
|
19023
19083
|
channel_id?: string | undefined;
|
|
@@ -19029,12 +19089,12 @@ export declare const Envelope: {
|
|
|
19029
19089
|
avatar?: string | undefined;
|
|
19030
19090
|
status?: number | undefined;
|
|
19031
19091
|
}[]>]: never; }) | undefined;
|
|
19032
|
-
} & { [
|
|
19092
|
+
} & { [K_699 in Exclude<keyof I_1["list_data_socket"]["webhook_list"], "webhooks">]: never; }) | undefined;
|
|
19033
19093
|
permission_list_req?: ({
|
|
19034
19094
|
role_id?: string | undefined;
|
|
19035
19095
|
} & {
|
|
19036
19096
|
role_id?: string | undefined;
|
|
19037
|
-
} & { [
|
|
19097
|
+
} & { [K_700 in Exclude<keyof I_1["list_data_socket"]["permission_list_req"], "role_id">]: never; }) | undefined;
|
|
19038
19098
|
permission_list?: ({
|
|
19039
19099
|
permissions?: {
|
|
19040
19100
|
id?: string | undefined;
|
|
@@ -19071,7 +19131,7 @@ export declare const Envelope: {
|
|
|
19071
19131
|
active?: number | undefined;
|
|
19072
19132
|
scope?: number | undefined;
|
|
19073
19133
|
level?: number | undefined;
|
|
19074
|
-
} & { [
|
|
19134
|
+
} & { [K_701 in Exclude<keyof I_1["list_data_socket"]["permission_list"]["permissions"][number], keyof import("../api/api").Permission>]: never; })[] & { [K_702 in Exclude<keyof I_1["list_data_socket"]["permission_list"]["permissions"], keyof {
|
|
19075
19135
|
id?: string | undefined;
|
|
19076
19136
|
title?: string | undefined;
|
|
19077
19137
|
slug?: string | undefined;
|
|
@@ -19081,7 +19141,7 @@ export declare const Envelope: {
|
|
|
19081
19141
|
level?: number | undefined;
|
|
19082
19142
|
}[]>]: never; }) | undefined;
|
|
19083
19143
|
max_level_permission?: number | undefined;
|
|
19084
|
-
} & { [
|
|
19144
|
+
} & { [K_703 in Exclude<keyof I_1["list_data_socket"]["permission_list"], keyof PermissionList>]: never; }) | undefined;
|
|
19085
19145
|
role_user_req?: ({
|
|
19086
19146
|
role_id?: string | undefined;
|
|
19087
19147
|
limit?: number | undefined;
|
|
@@ -19090,7 +19150,7 @@ export declare const Envelope: {
|
|
|
19090
19150
|
role_id?: string | undefined;
|
|
19091
19151
|
limit?: number | undefined;
|
|
19092
19152
|
cursor?: string | undefined;
|
|
19093
|
-
} & { [
|
|
19153
|
+
} & { [K_704 in Exclude<keyof I_1["list_data_socket"]["role_user_req"], keyof ListRoleUsersRequest>]: never; }) | undefined;
|
|
19094
19154
|
role_user_list?: ({
|
|
19095
19155
|
role_users?: {
|
|
19096
19156
|
id?: string | undefined;
|
|
@@ -19127,7 +19187,7 @@ export declare const Envelope: {
|
|
|
19127
19187
|
lang_tag?: string | undefined;
|
|
19128
19188
|
location?: string | undefined;
|
|
19129
19189
|
online?: boolean | undefined;
|
|
19130
|
-
} & { [
|
|
19190
|
+
} & { [K_705 in Exclude<keyof I_1["list_data_socket"]["role_user_list"]["role_users"][number], keyof import("../api/api").RoleUserList_RoleUser>]: never; })[] & { [K_706 in Exclude<keyof I_1["list_data_socket"]["role_user_list"]["role_users"], keyof {
|
|
19131
19191
|
id?: string | undefined;
|
|
19132
19192
|
username?: string | undefined;
|
|
19133
19193
|
display_name?: string | undefined;
|
|
@@ -19137,14 +19197,14 @@ export declare const Envelope: {
|
|
|
19137
19197
|
online?: boolean | undefined;
|
|
19138
19198
|
}[]>]: never; }) | undefined;
|
|
19139
19199
|
cursor?: string | undefined;
|
|
19140
|
-
} & { [
|
|
19200
|
+
} & { [K_707 in Exclude<keyof I_1["list_data_socket"]["role_user_list"], keyof RoleUserList>]: never; }) | undefined;
|
|
19141
19201
|
permission_user_req?: ({
|
|
19142
19202
|
clan_id?: string | undefined;
|
|
19143
19203
|
channel_id?: string | undefined;
|
|
19144
19204
|
} & {
|
|
19145
19205
|
clan_id?: string | undefined;
|
|
19146
19206
|
channel_id?: string | undefined;
|
|
19147
|
-
} & { [
|
|
19207
|
+
} & { [K_708 in Exclude<keyof I_1["list_data_socket"]["permission_user_req"], keyof ListPermissionOfUsersRequest>]: never; }) | undefined;
|
|
19148
19208
|
role_list?: ({
|
|
19149
19209
|
roles?: {
|
|
19150
19210
|
id?: string | undefined;
|
|
@@ -19319,7 +19379,7 @@ export declare const Envelope: {
|
|
|
19319
19379
|
lang_tag?: string | undefined;
|
|
19320
19380
|
location?: string | undefined;
|
|
19321
19381
|
online?: boolean | undefined;
|
|
19322
|
-
} & { [
|
|
19382
|
+
} & { [K_709 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_710 in Exclude<keyof I_1["list_data_socket"]["role_list"]["roles"][number]["role_user_list"]["role_users"], keyof {
|
|
19323
19383
|
id?: string | undefined;
|
|
19324
19384
|
username?: string | undefined;
|
|
19325
19385
|
display_name?: string | undefined;
|
|
@@ -19329,7 +19389,7 @@ export declare const Envelope: {
|
|
|
19329
19389
|
online?: boolean | undefined;
|
|
19330
19390
|
}[]>]: never; }) | undefined;
|
|
19331
19391
|
cursor?: string | undefined;
|
|
19332
|
-
} & { [
|
|
19392
|
+
} & { [K_711 in Exclude<keyof I_1["list_data_socket"]["role_list"]["roles"][number]["role_user_list"], keyof RoleUserList>]: never; }) | undefined;
|
|
19333
19393
|
permission_list?: ({
|
|
19334
19394
|
permissions?: {
|
|
19335
19395
|
id?: string | undefined;
|
|
@@ -19366,7 +19426,7 @@ export declare const Envelope: {
|
|
|
19366
19426
|
active?: number | undefined;
|
|
19367
19427
|
scope?: number | undefined;
|
|
19368
19428
|
level?: number | undefined;
|
|
19369
|
-
} & { [
|
|
19429
|
+
} & { [K_712 in Exclude<keyof I_1["list_data_socket"]["role_list"]["roles"][number]["permission_list"]["permissions"][number], keyof import("../api/api").Permission>]: never; })[] & { [K_713 in Exclude<keyof I_1["list_data_socket"]["role_list"]["roles"][number]["permission_list"]["permissions"], keyof {
|
|
19370
19430
|
id?: string | undefined;
|
|
19371
19431
|
title?: string | undefined;
|
|
19372
19432
|
slug?: string | undefined;
|
|
@@ -19376,12 +19436,12 @@ export declare const Envelope: {
|
|
|
19376
19436
|
level?: number | undefined;
|
|
19377
19437
|
}[]>]: never; }) | undefined;
|
|
19378
19438
|
max_level_permission?: number | undefined;
|
|
19379
|
-
} & { [
|
|
19439
|
+
} & { [K_714 in Exclude<keyof I_1["list_data_socket"]["role_list"]["roles"][number]["permission_list"], keyof PermissionList>]: never; }) | undefined;
|
|
19380
19440
|
role_channel_active?: number | undefined;
|
|
19381
|
-
channel_ids?: (string[] & string[] & { [
|
|
19441
|
+
channel_ids?: (string[] & string[] & { [K_715 in Exclude<keyof I_1["list_data_socket"]["role_list"]["roles"][number]["channel_ids"], keyof string[]>]: never; }) | undefined;
|
|
19382
19442
|
max_level_permission?: number | undefined;
|
|
19383
19443
|
order_role?: number | undefined;
|
|
19384
|
-
} & { [
|
|
19444
|
+
} & { [K_716 in Exclude<keyof I_1["list_data_socket"]["role_list"]["roles"][number], keyof Role>]: never; })[] & { [K_717 in Exclude<keyof I_1["list_data_socket"]["role_list"]["roles"], keyof {
|
|
19385
19445
|
id?: string | undefined;
|
|
19386
19446
|
title?: string | undefined;
|
|
19387
19447
|
color?: string | undefined;
|
|
@@ -19425,7 +19485,7 @@ export declare const Envelope: {
|
|
|
19425
19485
|
next_cursor?: string | undefined;
|
|
19426
19486
|
prev_cursor?: string | undefined;
|
|
19427
19487
|
cacheable_cursor?: string | undefined;
|
|
19428
|
-
} & { [
|
|
19488
|
+
} & { [K_718 in Exclude<keyof I_1["list_data_socket"]["role_list"], keyof RoleList>]: never; }) | undefined;
|
|
19429
19489
|
role_list_event_req?: ({
|
|
19430
19490
|
clan_id?: string | undefined;
|
|
19431
19491
|
limit?: number | undefined;
|
|
@@ -19436,7 +19496,7 @@ export declare const Envelope: {
|
|
|
19436
19496
|
limit?: number | undefined;
|
|
19437
19497
|
state?: number | undefined;
|
|
19438
19498
|
cursor?: string | undefined;
|
|
19439
|
-
} & { [
|
|
19499
|
+
} & { [K_719 in Exclude<keyof I_1["list_data_socket"]["role_list_event_req"], keyof RoleListEventRequest>]: never; }) | undefined;
|
|
19440
19500
|
role_event_list?: ({
|
|
19441
19501
|
limit?: number | undefined;
|
|
19442
19502
|
state?: number | undefined;
|
|
@@ -19667,7 +19727,7 @@ export declare const Envelope: {
|
|
|
19667
19727
|
lang_tag?: string | undefined;
|
|
19668
19728
|
location?: string | undefined;
|
|
19669
19729
|
online?: boolean | undefined;
|
|
19670
|
-
} & { [
|
|
19730
|
+
} & { [K_720 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_721 in Exclude<keyof I_1["list_data_socket"]["role_event_list"]["roles"]["roles"][number]["role_user_list"]["role_users"], keyof {
|
|
19671
19731
|
id?: string | undefined;
|
|
19672
19732
|
username?: string | undefined;
|
|
19673
19733
|
display_name?: string | undefined;
|
|
@@ -19677,7 +19737,7 @@ export declare const Envelope: {
|
|
|
19677
19737
|
online?: boolean | undefined;
|
|
19678
19738
|
}[]>]: never; }) | undefined;
|
|
19679
19739
|
cursor?: string | undefined;
|
|
19680
|
-
} & { [
|
|
19740
|
+
} & { [K_722 in Exclude<keyof I_1["list_data_socket"]["role_event_list"]["roles"]["roles"][number]["role_user_list"], keyof RoleUserList>]: never; }) | undefined;
|
|
19681
19741
|
permission_list?: ({
|
|
19682
19742
|
permissions?: {
|
|
19683
19743
|
id?: string | undefined;
|
|
@@ -19714,7 +19774,7 @@ export declare const Envelope: {
|
|
|
19714
19774
|
active?: number | undefined;
|
|
19715
19775
|
scope?: number | undefined;
|
|
19716
19776
|
level?: number | undefined;
|
|
19717
|
-
} & { [
|
|
19777
|
+
} & { [K_723 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_724 in Exclude<keyof I_1["list_data_socket"]["role_event_list"]["roles"]["roles"][number]["permission_list"]["permissions"], keyof {
|
|
19718
19778
|
id?: string | undefined;
|
|
19719
19779
|
title?: string | undefined;
|
|
19720
19780
|
slug?: string | undefined;
|
|
@@ -19724,12 +19784,12 @@ export declare const Envelope: {
|
|
|
19724
19784
|
level?: number | undefined;
|
|
19725
19785
|
}[]>]: never; }) | undefined;
|
|
19726
19786
|
max_level_permission?: number | undefined;
|
|
19727
|
-
} & { [
|
|
19787
|
+
} & { [K_725 in Exclude<keyof I_1["list_data_socket"]["role_event_list"]["roles"]["roles"][number]["permission_list"], keyof PermissionList>]: never; }) | undefined;
|
|
19728
19788
|
role_channel_active?: number | undefined;
|
|
19729
|
-
channel_ids?: (string[] & string[] & { [
|
|
19789
|
+
channel_ids?: (string[] & string[] & { [K_726 in Exclude<keyof I_1["list_data_socket"]["role_event_list"]["roles"]["roles"][number]["channel_ids"], keyof string[]>]: never; }) | undefined;
|
|
19730
19790
|
max_level_permission?: number | undefined;
|
|
19731
19791
|
order_role?: number | undefined;
|
|
19732
|
-
} & { [
|
|
19792
|
+
} & { [K_727 in Exclude<keyof I_1["list_data_socket"]["role_event_list"]["roles"]["roles"][number], keyof Role>]: never; })[] & { [K_728 in Exclude<keyof I_1["list_data_socket"]["role_event_list"]["roles"]["roles"], keyof {
|
|
19733
19793
|
id?: string | undefined;
|
|
19734
19794
|
title?: string | undefined;
|
|
19735
19795
|
color?: string | undefined;
|
|
@@ -19773,15 +19833,15 @@ export declare const Envelope: {
|
|
|
19773
19833
|
next_cursor?: string | undefined;
|
|
19774
19834
|
prev_cursor?: string | undefined;
|
|
19775
19835
|
cacheable_cursor?: string | undefined;
|
|
19776
|
-
} & { [
|
|
19777
|
-
} & { [
|
|
19836
|
+
} & { [K_729 in Exclude<keyof I_1["list_data_socket"]["role_event_list"]["roles"], keyof RoleList>]: never; }) | undefined;
|
|
19837
|
+
} & { [K_730 in Exclude<keyof I_1["list_data_socket"]["role_event_list"], keyof RoleListEventResponse>]: never; }) | undefined;
|
|
19778
19838
|
user_permission_req?: ({
|
|
19779
19839
|
clan_id?: string | undefined;
|
|
19780
19840
|
channel_id?: string | undefined;
|
|
19781
19841
|
} & {
|
|
19782
19842
|
clan_id?: string | undefined;
|
|
19783
19843
|
channel_id?: string | undefined;
|
|
19784
|
-
} & { [
|
|
19844
|
+
} & { [K_731 in Exclude<keyof I_1["list_data_socket"]["user_permission_req"], keyof UserPermissionInChannelListRequest>]: never; }) | undefined;
|
|
19785
19845
|
user_permission_list?: ({
|
|
19786
19846
|
clan_id?: string | undefined;
|
|
19787
19847
|
channel_id?: string | undefined;
|
|
@@ -19836,7 +19896,7 @@ export declare const Envelope: {
|
|
|
19836
19896
|
active?: number | undefined;
|
|
19837
19897
|
scope?: number | undefined;
|
|
19838
19898
|
level?: number | undefined;
|
|
19839
|
-
} & { [
|
|
19899
|
+
} & { [K_732 in Exclude<keyof I_1["list_data_socket"]["user_permission_list"]["permissions"]["permissions"][number], keyof import("../api/api").Permission>]: never; })[] & { [K_733 in Exclude<keyof I_1["list_data_socket"]["user_permission_list"]["permissions"]["permissions"], keyof {
|
|
19840
19900
|
id?: string | undefined;
|
|
19841
19901
|
title?: string | undefined;
|
|
19842
19902
|
slug?: string | undefined;
|
|
@@ -19846,8 +19906,8 @@ export declare const Envelope: {
|
|
|
19846
19906
|
level?: number | undefined;
|
|
19847
19907
|
}[]>]: never; }) | undefined;
|
|
19848
19908
|
max_level_permission?: number | undefined;
|
|
19849
|
-
} & { [
|
|
19850
|
-
} & { [
|
|
19909
|
+
} & { [K_734 in Exclude<keyof I_1["list_data_socket"]["user_permission_list"]["permissions"], keyof PermissionList>]: never; }) | undefined;
|
|
19910
|
+
} & { [K_735 in Exclude<keyof I_1["list_data_socket"]["user_permission_list"], keyof UserPermissionInChannelListResponse>]: never; }) | undefined;
|
|
19851
19911
|
permission_role_req?: ({
|
|
19852
19912
|
role_id?: string | undefined;
|
|
19853
19913
|
channel_id?: string | undefined;
|
|
@@ -19856,7 +19916,7 @@ export declare const Envelope: {
|
|
|
19856
19916
|
role_id?: string | undefined;
|
|
19857
19917
|
channel_id?: string | undefined;
|
|
19858
19918
|
user_id?: string | undefined;
|
|
19859
|
-
} & { [
|
|
19919
|
+
} & { [K_736 in Exclude<keyof I_1["list_data_socket"]["permission_role_req"], keyof PermissionRoleChannelListEventRequest>]: never; }) | undefined;
|
|
19860
19920
|
permission_role_list?: ({
|
|
19861
19921
|
role_id?: string | undefined;
|
|
19862
19922
|
channel_id?: string | undefined;
|
|
@@ -19878,11 +19938,11 @@ export declare const Envelope: {
|
|
|
19878
19938
|
} & {
|
|
19879
19939
|
permission_id?: string | undefined;
|
|
19880
19940
|
active?: boolean | undefined;
|
|
19881
|
-
} & { [
|
|
19941
|
+
} & { [K_737 in Exclude<keyof I_1["list_data_socket"]["permission_role_list"]["permission_role_channel"][number], keyof import("../api/api").PermissionRoleChannel>]: never; })[] & { [K_738 in Exclude<keyof I_1["list_data_socket"]["permission_role_list"]["permission_role_channel"], keyof {
|
|
19882
19942
|
permission_id?: string | undefined;
|
|
19883
19943
|
active?: boolean | undefined;
|
|
19884
19944
|
}[]>]: never; }) | undefined;
|
|
19885
|
-
} & { [
|
|
19945
|
+
} & { [K_739 in Exclude<keyof I_1["list_data_socket"]["permission_role_list"], keyof PermissionRoleChannelListEventResponse>]: never; }) | undefined;
|
|
19886
19946
|
emoji_list?: ({
|
|
19887
19947
|
emoji_list?: {
|
|
19888
19948
|
id?: string | undefined;
|
|
@@ -19926,7 +19986,7 @@ export declare const Envelope: {
|
|
|
19926
19986
|
logo?: string | undefined;
|
|
19927
19987
|
clan_name?: string | undefined;
|
|
19928
19988
|
is_for_sale?: boolean | undefined;
|
|
19929
|
-
} & { [
|
|
19989
|
+
} & { [K_740 in Exclude<keyof I_1["list_data_socket"]["emoji_list"]["emoji_list"][number], keyof import("../api/api").ClanEmoji>]: never; })[] & { [K_741 in Exclude<keyof I_1["list_data_socket"]["emoji_list"]["emoji_list"], keyof {
|
|
19930
19990
|
id?: string | undefined;
|
|
19931
19991
|
src?: string | undefined;
|
|
19932
19992
|
shortname?: string | undefined;
|
|
@@ -19937,7 +19997,7 @@ export declare const Envelope: {
|
|
|
19937
19997
|
clan_name?: string | undefined;
|
|
19938
19998
|
is_for_sale?: boolean | undefined;
|
|
19939
19999
|
}[]>]: never; }) | undefined;
|
|
19940
|
-
} & { [
|
|
20000
|
+
} & { [K_742 in Exclude<keyof I_1["list_data_socket"]["emoji_list"], "emoji_list">]: never; }) | undefined;
|
|
19941
20001
|
list_friend_req?: ({
|
|
19942
20002
|
limit?: number | undefined;
|
|
19943
20003
|
state?: number | undefined;
|
|
@@ -19946,7 +20006,7 @@ export declare const Envelope: {
|
|
|
19946
20006
|
limit?: number | undefined;
|
|
19947
20007
|
state?: number | undefined;
|
|
19948
20008
|
cursor?: string | undefined;
|
|
19949
|
-
} & { [
|
|
20009
|
+
} & { [K_743 in Exclude<keyof I_1["list_data_socket"]["list_friend_req"], keyof ListFriendsRequest>]: never; }) | undefined;
|
|
19950
20010
|
friend_list?: ({
|
|
19951
20011
|
friends?: {
|
|
19952
20012
|
user?: {
|
|
@@ -20086,12 +20146,12 @@ export declare const Envelope: {
|
|
|
20086
20146
|
is_mobile?: boolean | undefined;
|
|
20087
20147
|
dob?: Date | undefined;
|
|
20088
20148
|
mezon_id?: string | undefined;
|
|
20089
|
-
list_nick_names?: (string[] & string[] & { [
|
|
20090
|
-
} & { [
|
|
20149
|
+
list_nick_names?: (string[] & string[] & { [K_744 in Exclude<keyof I_1["list_data_socket"]["friend_list"]["friends"][number]["user"]["list_nick_names"], keyof string[]>]: never; }) | undefined;
|
|
20150
|
+
} & { [K_745 in Exclude<keyof I_1["list_data_socket"]["friend_list"]["friends"][number]["user"], keyof import("../api/api").User>]: never; }) | undefined;
|
|
20091
20151
|
state?: number | undefined;
|
|
20092
20152
|
update_time?: Date | undefined;
|
|
20093
20153
|
source_id?: string | undefined;
|
|
20094
|
-
} & { [
|
|
20154
|
+
} & { [K_746 in Exclude<keyof I_1["list_data_socket"]["friend_list"]["friends"][number], keyof import("../api/api").Friend>]: never; })[] & { [K_747 in Exclude<keyof I_1["list_data_socket"]["friend_list"]["friends"], keyof {
|
|
20095
20155
|
user?: {
|
|
20096
20156
|
id?: string | undefined;
|
|
20097
20157
|
username?: string | undefined;
|
|
@@ -20122,12 +20182,12 @@ export declare const Envelope: {
|
|
|
20122
20182
|
source_id?: string | undefined;
|
|
20123
20183
|
}[]>]: never; }) | undefined;
|
|
20124
20184
|
cursor?: string | undefined;
|
|
20125
|
-
} & { [
|
|
20185
|
+
} & { [K_748 in Exclude<keyof I_1["list_data_socket"]["friend_list"], keyof FriendList>]: never; }) | undefined;
|
|
20126
20186
|
list_apps_req?: ({
|
|
20127
20187
|
clan_id?: string | undefined;
|
|
20128
20188
|
} & {
|
|
20129
20189
|
clan_id?: string | undefined;
|
|
20130
|
-
} & { [
|
|
20190
|
+
} & { [K_749 in Exclude<keyof I_1["list_data_socket"]["list_apps_req"], "clan_id">]: never; }) | undefined;
|
|
20131
20191
|
channel_apps_list?: ({
|
|
20132
20192
|
channel_apps?: {
|
|
20133
20193
|
id?: string | undefined;
|
|
@@ -20155,14 +20215,14 @@ export declare const Envelope: {
|
|
|
20155
20215
|
channel_id?: string | undefined;
|
|
20156
20216
|
app_id?: string | undefined;
|
|
20157
20217
|
app_url?: string | undefined;
|
|
20158
|
-
} & { [
|
|
20218
|
+
} & { [K_750 in Exclude<keyof I_1["list_data_socket"]["channel_apps_list"]["channel_apps"][number], keyof import("../api/api").ChannelAppResponse>]: never; })[] & { [K_751 in Exclude<keyof I_1["list_data_socket"]["channel_apps_list"]["channel_apps"], keyof {
|
|
20159
20219
|
id?: string | undefined;
|
|
20160
20220
|
clan_id?: string | undefined;
|
|
20161
20221
|
channel_id?: string | undefined;
|
|
20162
20222
|
app_id?: string | undefined;
|
|
20163
20223
|
app_url?: string | undefined;
|
|
20164
20224
|
}[]>]: never; }) | undefined;
|
|
20165
|
-
} & { [
|
|
20225
|
+
} & { [K_752 in Exclude<keyof I_1["list_data_socket"]["channel_apps_list"], "channel_apps">]: never; }) | undefined;
|
|
20166
20226
|
user_activity_list?: ({
|
|
20167
20227
|
activities?: {
|
|
20168
20228
|
user_id?: string | undefined;
|
|
@@ -20202,7 +20262,7 @@ export declare const Envelope: {
|
|
|
20202
20262
|
end_time?: Date | undefined;
|
|
20203
20263
|
application_id?: string | undefined;
|
|
20204
20264
|
status?: number | undefined;
|
|
20205
|
-
} & { [
|
|
20265
|
+
} & { [K_753 in Exclude<keyof I_1["list_data_socket"]["user_activity_list"]["activities"][number], keyof UserActivity>]: never; })[] & { [K_754 in Exclude<keyof I_1["list_data_socket"]["user_activity_list"]["activities"], keyof {
|
|
20206
20266
|
user_id?: string | undefined;
|
|
20207
20267
|
activity_name?: string | undefined;
|
|
20208
20268
|
activity_type?: number | undefined;
|
|
@@ -20212,12 +20272,12 @@ export declare const Envelope: {
|
|
|
20212
20272
|
application_id?: string | undefined;
|
|
20213
20273
|
status?: number | undefined;
|
|
20214
20274
|
}[]>]: never; }) | undefined;
|
|
20215
|
-
} & { [
|
|
20275
|
+
} & { [K_755 in Exclude<keyof I_1["list_data_socket"]["user_activity_list"], "activities">]: never; }) | undefined;
|
|
20216
20276
|
list_clan_user_req?: ({
|
|
20217
20277
|
clan_id?: string | undefined;
|
|
20218
20278
|
} & {
|
|
20219
20279
|
clan_id?: string | undefined;
|
|
20220
|
-
} & { [
|
|
20280
|
+
} & { [K_756 in Exclude<keyof I_1["list_data_socket"]["list_clan_user_req"], "clan_id">]: never; }) | undefined;
|
|
20221
20281
|
clan_user_list?: ({
|
|
20222
20282
|
clan_users?: {
|
|
20223
20283
|
user?: {
|
|
@@ -20361,13 +20421,13 @@ export declare const Envelope: {
|
|
|
20361
20421
|
is_mobile?: boolean | undefined;
|
|
20362
20422
|
dob?: Date | undefined;
|
|
20363
20423
|
mezon_id?: string | undefined;
|
|
20364
|
-
list_nick_names?: (string[] & string[] & { [
|
|
20365
|
-
} & { [
|
|
20366
|
-
role_id?: (string[] & string[] & { [
|
|
20424
|
+
list_nick_names?: (string[] & string[] & { [K_757 in Exclude<keyof I_1["list_data_socket"]["clan_user_list"]["clan_users"][number]["user"]["list_nick_names"], keyof string[]>]: never; }) | undefined;
|
|
20425
|
+
} & { [K_758 in Exclude<keyof I_1["list_data_socket"]["clan_user_list"]["clan_users"][number]["user"], keyof import("../api/api").User>]: never; }) | undefined;
|
|
20426
|
+
role_id?: (string[] & string[] & { [K_759 in Exclude<keyof I_1["list_data_socket"]["clan_user_list"]["clan_users"][number]["role_id"], keyof string[]>]: never; }) | undefined;
|
|
20367
20427
|
clan_nick?: string | undefined;
|
|
20368
20428
|
clan_avatar?: string | undefined;
|
|
20369
20429
|
clan_id?: string | undefined;
|
|
20370
|
-
} & { [
|
|
20430
|
+
} & { [K_760 in Exclude<keyof I_1["list_data_socket"]["clan_user_list"]["clan_users"][number], keyof import("../api/api").ClanUserList_ClanUser>]: never; })[] & { [K_761 in Exclude<keyof I_1["list_data_socket"]["clan_user_list"]["clan_users"], keyof {
|
|
20371
20431
|
user?: {
|
|
20372
20432
|
id?: string | undefined;
|
|
20373
20433
|
username?: string | undefined;
|
|
@@ -20400,12 +20460,12 @@ export declare const Envelope: {
|
|
|
20400
20460
|
}[]>]: never; }) | undefined;
|
|
20401
20461
|
cursor?: string | undefined;
|
|
20402
20462
|
clan_id?: string | undefined;
|
|
20403
|
-
} & { [
|
|
20463
|
+
} & { [K_762 in Exclude<keyof I_1["list_data_socket"]["clan_user_list"], keyof ClanUserList>]: never; }) | undefined;
|
|
20404
20464
|
list_event_req?: ({
|
|
20405
20465
|
clan_id?: string | undefined;
|
|
20406
20466
|
} & {
|
|
20407
20467
|
clan_id?: string | undefined;
|
|
20408
|
-
} & { [
|
|
20468
|
+
} & { [K_763 in Exclude<keyof I_1["list_data_socket"]["list_event_req"], "clan_id">]: never; }) | undefined;
|
|
20409
20469
|
event_list?: ({
|
|
20410
20470
|
events?: {
|
|
20411
20471
|
id?: string | undefined;
|
|
@@ -20503,7 +20563,7 @@ export declare const Envelope: {
|
|
|
20503
20563
|
address?: string | undefined;
|
|
20504
20564
|
start_time?: Date | undefined;
|
|
20505
20565
|
end_time?: Date | undefined;
|
|
20506
|
-
user_ids?: (string[] & string[] & { [
|
|
20566
|
+
user_ids?: (string[] & string[] & { [K_764 in Exclude<keyof I_1["list_data_socket"]["event_list"]["events"][number]["user_ids"], keyof string[]>]: never; }) | undefined;
|
|
20507
20567
|
create_time?: Date | undefined;
|
|
20508
20568
|
max_permission?: number | undefined;
|
|
20509
20569
|
channel_id?: string | undefined;
|
|
@@ -20522,8 +20582,8 @@ export declare const Envelope: {
|
|
|
20522
20582
|
external_link?: string | undefined;
|
|
20523
20583
|
creator_id?: string | undefined;
|
|
20524
20584
|
event_id?: string | undefined;
|
|
20525
|
-
} & { [
|
|
20526
|
-
} & { [
|
|
20585
|
+
} & { [K_765 in Exclude<keyof I_1["list_data_socket"]["event_list"]["events"][number]["meet_room"], keyof import("../api/api").GenerateMezonMeetResponse>]: never; }) | undefined;
|
|
20586
|
+
} & { [K_766 in Exclude<keyof I_1["list_data_socket"]["event_list"]["events"][number], keyof import("../api/api").EventManagement>]: never; })[] & { [K_767 in Exclude<keyof I_1["list_data_socket"]["event_list"]["events"], keyof {
|
|
20527
20587
|
id?: string | undefined;
|
|
20528
20588
|
title?: string | undefined;
|
|
20529
20589
|
logo?: string | undefined;
|
|
@@ -20551,7 +20611,7 @@ export declare const Envelope: {
|
|
|
20551
20611
|
event_id?: string | undefined;
|
|
20552
20612
|
} | undefined;
|
|
20553
20613
|
}[]>]: never; }) | undefined;
|
|
20554
|
-
} & { [
|
|
20614
|
+
} & { [K_768 in Exclude<keyof I_1["list_data_socket"]["event_list"], "events">]: never; }) | undefined;
|
|
20555
20615
|
list_category_req?: ({
|
|
20556
20616
|
creator_id?: string | undefined;
|
|
20557
20617
|
clan_id?: string | undefined;
|
|
@@ -20564,7 +20624,7 @@ export declare const Envelope: {
|
|
|
20564
20624
|
category_name?: string | undefined;
|
|
20565
20625
|
category_id?: string | undefined;
|
|
20566
20626
|
category_order?: number | undefined;
|
|
20567
|
-
} & { [
|
|
20627
|
+
} & { [K_769 in Exclude<keyof I_1["list_data_socket"]["list_category_req"], keyof CategoryDesc>]: never; }) | undefined;
|
|
20568
20628
|
category_list?: ({
|
|
20569
20629
|
categorydesc?: {
|
|
20570
20630
|
creator_id?: string | undefined;
|
|
@@ -20592,14 +20652,14 @@ export declare const Envelope: {
|
|
|
20592
20652
|
category_name?: string | undefined;
|
|
20593
20653
|
category_id?: string | undefined;
|
|
20594
20654
|
category_order?: number | undefined;
|
|
20595
|
-
} & { [
|
|
20655
|
+
} & { [K_770 in Exclude<keyof I_1["list_data_socket"]["category_list"]["categorydesc"][number], keyof CategoryDesc>]: never; })[] & { [K_771 in Exclude<keyof I_1["list_data_socket"]["category_list"]["categorydesc"], keyof {
|
|
20596
20656
|
creator_id?: string | undefined;
|
|
20597
20657
|
clan_id?: string | undefined;
|
|
20598
20658
|
category_name?: string | undefined;
|
|
20599
20659
|
category_id?: string | undefined;
|
|
20600
20660
|
category_order?: number | undefined;
|
|
20601
20661
|
}[]>]: never; }) | undefined;
|
|
20602
|
-
} & { [
|
|
20662
|
+
} & { [K_772 in Exclude<keyof I_1["list_data_socket"]["category_list"], "categorydesc">]: never; }) | undefined;
|
|
20603
20663
|
stream_user_list?: ({
|
|
20604
20664
|
streaming_channel_users?: {
|
|
20605
20665
|
id?: string | undefined;
|
|
@@ -20623,14 +20683,14 @@ export declare const Envelope: {
|
|
|
20623
20683
|
user_id?: string | undefined;
|
|
20624
20684
|
channel_id?: string | undefined;
|
|
20625
20685
|
participant?: string | undefined;
|
|
20626
|
-
} & { [
|
|
20686
|
+
} & { [K_773 in Exclude<keyof I_1["list_data_socket"]["stream_user_list"]["streaming_channel_users"][number], keyof import("../api/api").StreamingChannelUser>]: never; })[] & { [K_774 in Exclude<keyof I_1["list_data_socket"]["stream_user_list"]["streaming_channel_users"], keyof {
|
|
20627
20687
|
id?: string | undefined;
|
|
20628
20688
|
user_id?: string | undefined;
|
|
20629
20689
|
channel_id?: string | undefined;
|
|
20630
20690
|
participant?: string | undefined;
|
|
20631
20691
|
}[]>]: never; }) | undefined;
|
|
20632
|
-
} & { [
|
|
20633
|
-
} & { [
|
|
20692
|
+
} & { [K_775 in Exclude<keyof I_1["list_data_socket"]["stream_user_list"], "streaming_channel_users">]: never; }) | undefined;
|
|
20693
|
+
} & { [K_776 in Exclude<keyof I_1["list_data_socket"], keyof ListDataSocket>]: never; }) | undefined;
|
|
20634
20694
|
quick_menu_event?: ({
|
|
20635
20695
|
menu_name?: string | undefined;
|
|
20636
20696
|
message?: {
|
|
@@ -20751,7 +20811,7 @@ export declare const Envelope: {
|
|
|
20751
20811
|
create_time?: Date | undefined;
|
|
20752
20812
|
s?: number | undefined;
|
|
20753
20813
|
e?: number | undefined;
|
|
20754
|
-
} & { [
|
|
20814
|
+
} & { [K_777 in Exclude<keyof I_1["quick_menu_event"]["message"]["mentions"][number], keyof MessageMention>]: never; })[] & { [K_778 in Exclude<keyof I_1["quick_menu_event"]["message"]["mentions"], keyof {
|
|
20755
20815
|
id?: string | undefined;
|
|
20756
20816
|
user_id?: string | undefined;
|
|
20757
20817
|
username?: string | undefined;
|
|
@@ -20785,7 +20845,7 @@ export declare const Envelope: {
|
|
|
20785
20845
|
width?: number | undefined;
|
|
20786
20846
|
height?: number | undefined;
|
|
20787
20847
|
thumbnail?: string | undefined;
|
|
20788
|
-
} & { [
|
|
20848
|
+
} & { [K_779 in Exclude<keyof I_1["quick_menu_event"]["message"]["attachments"][number], keyof MessageAttachment>]: never; })[] & { [K_780 in Exclude<keyof I_1["quick_menu_event"]["message"]["attachments"], keyof {
|
|
20789
20849
|
filename?: string | undefined;
|
|
20790
20850
|
size?: number | undefined;
|
|
20791
20851
|
url?: string | undefined;
|
|
@@ -20827,7 +20887,7 @@ export declare const Envelope: {
|
|
|
20827
20887
|
mesages_sender_avatar?: string | undefined;
|
|
20828
20888
|
message_sender_clan_nick?: string | undefined;
|
|
20829
20889
|
message_sender_display_name?: string | undefined;
|
|
20830
|
-
} & { [
|
|
20890
|
+
} & { [K_781 in Exclude<keyof I_1["quick_menu_event"]["message"]["references"][number], keyof MessageRef>]: never; })[] & { [K_782 in Exclude<keyof I_1["quick_menu_event"]["message"]["references"], keyof {
|
|
20831
20891
|
message_id?: string | undefined;
|
|
20832
20892
|
message_ref_id?: string | undefined;
|
|
20833
20893
|
content?: string | undefined;
|
|
@@ -20846,9 +20906,9 @@ export declare const Envelope: {
|
|
|
20846
20906
|
is_public?: boolean | undefined;
|
|
20847
20907
|
code?: number | undefined;
|
|
20848
20908
|
topic_id?: string | undefined;
|
|
20849
|
-
} & { [
|
|
20850
|
-
} & { [
|
|
20851
|
-
} & { [
|
|
20909
|
+
} & { [K_783 in Exclude<keyof I_1["quick_menu_event"]["message"], keyof ChannelMessageSend>]: never; }) | undefined;
|
|
20910
|
+
} & { [K_784 in Exclude<keyof I_1["quick_menu_event"], keyof QuickMenuDataEvent>]: never; }) | undefined;
|
|
20911
|
+
} & { [K_785 in Exclude<keyof I_1, keyof Envelope>]: never; }>(object: I_1): Envelope;
|
|
20852
20912
|
};
|
|
20853
20913
|
export declare const FollowEvent: {
|
|
20854
20914
|
encode(_: FollowEvent, writer?: _m0.Writer): _m0.Writer;
|
|
@@ -23223,6 +23283,8 @@ export declare const ChannelMessageRemove: {
|
|
|
23223
23283
|
is_public?: boolean | undefined;
|
|
23224
23284
|
has_attachment?: boolean | undefined;
|
|
23225
23285
|
topic_id?: string | undefined;
|
|
23286
|
+
mentions?: string | undefined;
|
|
23287
|
+
references?: string | undefined;
|
|
23226
23288
|
} & {
|
|
23227
23289
|
clan_id?: string | undefined;
|
|
23228
23290
|
channel_id?: string | undefined;
|
|
@@ -23231,6 +23293,8 @@ export declare const ChannelMessageRemove: {
|
|
|
23231
23293
|
is_public?: boolean | undefined;
|
|
23232
23294
|
has_attachment?: boolean | undefined;
|
|
23233
23295
|
topic_id?: string | undefined;
|
|
23296
|
+
mentions?: string | undefined;
|
|
23297
|
+
references?: string | undefined;
|
|
23234
23298
|
} & { [K in Exclude<keyof I, keyof ChannelMessageRemove>]: never; }>(base?: I | undefined): ChannelMessageRemove;
|
|
23235
23299
|
fromPartial<I_1 extends {
|
|
23236
23300
|
clan_id?: string | undefined;
|
|
@@ -23240,6 +23304,8 @@ export declare const ChannelMessageRemove: {
|
|
|
23240
23304
|
is_public?: boolean | undefined;
|
|
23241
23305
|
has_attachment?: boolean | undefined;
|
|
23242
23306
|
topic_id?: string | undefined;
|
|
23307
|
+
mentions?: string | undefined;
|
|
23308
|
+
references?: string | undefined;
|
|
23243
23309
|
} & {
|
|
23244
23310
|
clan_id?: string | undefined;
|
|
23245
23311
|
channel_id?: string | undefined;
|
|
@@ -23248,6 +23314,8 @@ export declare const ChannelMessageRemove: {
|
|
|
23248
23314
|
is_public?: boolean | undefined;
|
|
23249
23315
|
has_attachment?: boolean | undefined;
|
|
23250
23316
|
topic_id?: string | undefined;
|
|
23317
|
+
mentions?: string | undefined;
|
|
23318
|
+
references?: string | undefined;
|
|
23251
23319
|
} & { [K_1 in Exclude<keyof I_1, keyof ChannelMessageRemove>]: never; }>(object: I_1): ChannelMessageRemove;
|
|
23252
23320
|
};
|
|
23253
23321
|
export declare const ChannelPresenceEvent: {
|
|
@@ -25727,6 +25795,8 @@ export declare const ChannelUpdatedEvent: {
|
|
|
25727
25795
|
age_restricted?: number | undefined;
|
|
25728
25796
|
active?: number | undefined;
|
|
25729
25797
|
count_mess_unread?: number | undefined;
|
|
25798
|
+
user_ids?: string[] | undefined;
|
|
25799
|
+
role_ids?: string[] | undefined;
|
|
25730
25800
|
} & {
|
|
25731
25801
|
clan_id?: string | undefined;
|
|
25732
25802
|
category_id?: string | undefined;
|
|
@@ -25745,7 +25815,9 @@ export declare const ChannelUpdatedEvent: {
|
|
|
25745
25815
|
age_restricted?: number | undefined;
|
|
25746
25816
|
active?: number | undefined;
|
|
25747
25817
|
count_mess_unread?: number | undefined;
|
|
25748
|
-
|
|
25818
|
+
user_ids?: (string[] & string[] & { [K in Exclude<keyof I["user_ids"], keyof string[]>]: never; }) | undefined;
|
|
25819
|
+
role_ids?: (string[] & string[] & { [K_1 in Exclude<keyof I["role_ids"], keyof string[]>]: never; }) | undefined;
|
|
25820
|
+
} & { [K_2 in Exclude<keyof I, keyof ChannelUpdatedEvent>]: never; }>(base?: I | undefined): ChannelUpdatedEvent;
|
|
25749
25821
|
fromPartial<I_1 extends {
|
|
25750
25822
|
clan_id?: string | undefined;
|
|
25751
25823
|
category_id?: string | undefined;
|
|
@@ -25764,6 +25836,8 @@ export declare const ChannelUpdatedEvent: {
|
|
|
25764
25836
|
age_restricted?: number | undefined;
|
|
25765
25837
|
active?: number | undefined;
|
|
25766
25838
|
count_mess_unread?: number | undefined;
|
|
25839
|
+
user_ids?: string[] | undefined;
|
|
25840
|
+
role_ids?: string[] | undefined;
|
|
25767
25841
|
} & {
|
|
25768
25842
|
clan_id?: string | undefined;
|
|
25769
25843
|
category_id?: string | undefined;
|
|
@@ -25782,7 +25856,9 @@ export declare const ChannelUpdatedEvent: {
|
|
|
25782
25856
|
age_restricted?: number | undefined;
|
|
25783
25857
|
active?: number | undefined;
|
|
25784
25858
|
count_mess_unread?: number | undefined;
|
|
25785
|
-
|
|
25859
|
+
user_ids?: (string[] & string[] & { [K_3 in Exclude<keyof I_1["user_ids"], keyof string[]>]: never; }) | undefined;
|
|
25860
|
+
role_ids?: (string[] & string[] & { [K_4 in Exclude<keyof I_1["role_ids"], keyof string[]>]: never; }) | undefined;
|
|
25861
|
+
} & { [K_5 in Exclude<keyof I_1, keyof ChannelUpdatedEvent>]: never; }>(object: I_1): ChannelUpdatedEvent;
|
|
25786
25862
|
};
|
|
25787
25863
|
export declare const StatusUnfollow: {
|
|
25788
25864
|
encode(message: StatusUnfollow, writer?: _m0.Writer): _m0.Writer;
|
|
@@ -28339,6 +28415,8 @@ export declare const ListDataSocket: {
|
|
|
28339
28415
|
welcome_channel_id?: string | undefined;
|
|
28340
28416
|
onboarding_banner?: string | undefined;
|
|
28341
28417
|
clan_order?: number | undefined;
|
|
28418
|
+
is_community?: boolean | undefined;
|
|
28419
|
+
community_banner?: string | undefined;
|
|
28342
28420
|
}[] | undefined;
|
|
28343
28421
|
} | undefined;
|
|
28344
28422
|
list_thread_req?: {
|
|
@@ -29199,6 +29277,8 @@ export declare const ListDataSocket: {
|
|
|
29199
29277
|
welcome_channel_id?: string | undefined;
|
|
29200
29278
|
onboarding_banner?: string | undefined;
|
|
29201
29279
|
clan_order?: number | undefined;
|
|
29280
|
+
is_community?: boolean | undefined;
|
|
29281
|
+
community_banner?: string | undefined;
|
|
29202
29282
|
}[] | undefined;
|
|
29203
29283
|
} & {
|
|
29204
29284
|
clandesc?: ({
|
|
@@ -29213,6 +29293,8 @@ export declare const ListDataSocket: {
|
|
|
29213
29293
|
welcome_channel_id?: string | undefined;
|
|
29214
29294
|
onboarding_banner?: string | undefined;
|
|
29215
29295
|
clan_order?: number | undefined;
|
|
29296
|
+
is_community?: boolean | undefined;
|
|
29297
|
+
community_banner?: string | undefined;
|
|
29216
29298
|
}[] & ({
|
|
29217
29299
|
creator_id?: string | undefined;
|
|
29218
29300
|
clan_name?: string | undefined;
|
|
@@ -29225,6 +29307,8 @@ export declare const ListDataSocket: {
|
|
|
29225
29307
|
welcome_channel_id?: string | undefined;
|
|
29226
29308
|
onboarding_banner?: string | undefined;
|
|
29227
29309
|
clan_order?: number | undefined;
|
|
29310
|
+
is_community?: boolean | undefined;
|
|
29311
|
+
community_banner?: string | undefined;
|
|
29228
29312
|
} & {
|
|
29229
29313
|
creator_id?: string | undefined;
|
|
29230
29314
|
clan_name?: string | undefined;
|
|
@@ -29237,6 +29321,8 @@ export declare const ListDataSocket: {
|
|
|
29237
29321
|
welcome_channel_id?: string | undefined;
|
|
29238
29322
|
onboarding_banner?: string | undefined;
|
|
29239
29323
|
clan_order?: number | undefined;
|
|
29324
|
+
is_community?: boolean | undefined;
|
|
29325
|
+
community_banner?: string | undefined;
|
|
29240
29326
|
} & { [K_1 in Exclude<keyof I["clan_desc_list"]["clandesc"][number], keyof import("../api/api").ClanDesc>]: never; })[] & { [K_2 in Exclude<keyof I["clan_desc_list"]["clandesc"], keyof {
|
|
29241
29327
|
creator_id?: string | undefined;
|
|
29242
29328
|
clan_name?: string | undefined;
|
|
@@ -29249,6 +29335,8 @@ export declare const ListDataSocket: {
|
|
|
29249
29335
|
welcome_channel_id?: string | undefined;
|
|
29250
29336
|
onboarding_banner?: string | undefined;
|
|
29251
29337
|
clan_order?: number | undefined;
|
|
29338
|
+
is_community?: boolean | undefined;
|
|
29339
|
+
community_banner?: string | undefined;
|
|
29252
29340
|
}[]>]: never; }) | undefined;
|
|
29253
29341
|
} & { [K_3 in Exclude<keyof I["clan_desc_list"], "clandesc">]: never; }) | undefined;
|
|
29254
29342
|
list_thread_req?: ({
|
|
@@ -32699,6 +32787,8 @@ export declare const ListDataSocket: {
|
|
|
32699
32787
|
welcome_channel_id?: string | undefined;
|
|
32700
32788
|
onboarding_banner?: string | undefined;
|
|
32701
32789
|
clan_order?: number | undefined;
|
|
32790
|
+
is_community?: boolean | undefined;
|
|
32791
|
+
community_banner?: string | undefined;
|
|
32702
32792
|
}[] | undefined;
|
|
32703
32793
|
} | undefined;
|
|
32704
32794
|
list_thread_req?: {
|
|
@@ -33559,6 +33649,8 @@ export declare const ListDataSocket: {
|
|
|
33559
33649
|
welcome_channel_id?: string | undefined;
|
|
33560
33650
|
onboarding_banner?: string | undefined;
|
|
33561
33651
|
clan_order?: number | undefined;
|
|
33652
|
+
is_community?: boolean | undefined;
|
|
33653
|
+
community_banner?: string | undefined;
|
|
33562
33654
|
}[] | undefined;
|
|
33563
33655
|
} & {
|
|
33564
33656
|
clandesc?: ({
|
|
@@ -33573,6 +33665,8 @@ export declare const ListDataSocket: {
|
|
|
33573
33665
|
welcome_channel_id?: string | undefined;
|
|
33574
33666
|
onboarding_banner?: string | undefined;
|
|
33575
33667
|
clan_order?: number | undefined;
|
|
33668
|
+
is_community?: boolean | undefined;
|
|
33669
|
+
community_banner?: string | undefined;
|
|
33576
33670
|
}[] & ({
|
|
33577
33671
|
creator_id?: string | undefined;
|
|
33578
33672
|
clan_name?: string | undefined;
|
|
@@ -33585,6 +33679,8 @@ export declare const ListDataSocket: {
|
|
|
33585
33679
|
welcome_channel_id?: string | undefined;
|
|
33586
33680
|
onboarding_banner?: string | undefined;
|
|
33587
33681
|
clan_order?: number | undefined;
|
|
33682
|
+
is_community?: boolean | undefined;
|
|
33683
|
+
community_banner?: string | undefined;
|
|
33588
33684
|
} & {
|
|
33589
33685
|
creator_id?: string | undefined;
|
|
33590
33686
|
clan_name?: string | undefined;
|
|
@@ -33597,6 +33693,8 @@ export declare const ListDataSocket: {
|
|
|
33597
33693
|
welcome_channel_id?: string | undefined;
|
|
33598
33694
|
onboarding_banner?: string | undefined;
|
|
33599
33695
|
clan_order?: number | undefined;
|
|
33696
|
+
is_community?: boolean | undefined;
|
|
33697
|
+
community_banner?: string | undefined;
|
|
33600
33698
|
} & { [K_189 in Exclude<keyof I_1["clan_desc_list"]["clandesc"][number], keyof import("../api/api").ClanDesc>]: never; })[] & { [K_190 in Exclude<keyof I_1["clan_desc_list"]["clandesc"], keyof {
|
|
33601
33699
|
creator_id?: string | undefined;
|
|
33602
33700
|
clan_name?: string | undefined;
|
|
@@ -33609,6 +33707,8 @@ export declare const ListDataSocket: {
|
|
|
33609
33707
|
welcome_channel_id?: string | undefined;
|
|
33610
33708
|
onboarding_banner?: string | undefined;
|
|
33611
33709
|
clan_order?: number | undefined;
|
|
33710
|
+
is_community?: boolean | undefined;
|
|
33711
|
+
community_banner?: string | undefined;
|
|
33612
33712
|
}[]>]: never; }) | undefined;
|
|
33613
33713
|
} & { [K_191 in Exclude<keyof I_1["clan_desc_list"], "clandesc">]: never; }) | undefined;
|
|
33614
33714
|
list_thread_req?: ({
|