mezon-js-protobuf 1.8.58 → 1.8.60
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/dist/mezon-js-protobuf/rtapi/realtime.d.ts +385 -673
- package/dist/mezon-js-protobuf.cjs.js +110 -118
- package/dist/mezon-js-protobuf.esm.mjs +110 -118
- package/package.json +1 -1
- package/rtapi/realtime.ts +126 -130
|
@@ -140,13 +140,13 @@ export interface Envelope {
|
|
|
140
140
|
channel_app_event?: ChannelAppEvent | undefined;
|
|
141
141
|
/** User custom status event */
|
|
142
142
|
user_status_event?: UserStatusEvent | undefined;
|
|
143
|
-
/**
|
|
143
|
+
/** remove friend */
|
|
144
144
|
remove_friend?: RemoveFriend | undefined;
|
|
145
|
-
/**
|
|
145
|
+
/** webhook event */
|
|
146
146
|
webhook_event?: Webhook | undefined;
|
|
147
|
-
/**
|
|
147
|
+
/** notification */
|
|
148
148
|
noti_user_channel?: NotificationUserChannel | undefined;
|
|
149
|
-
/**
|
|
149
|
+
/** join channel app */
|
|
150
150
|
join_channel_app_data?: JoinChannelAppData | undefined;
|
|
151
151
|
/** channel canvas */
|
|
152
152
|
canvas_event?: ChannelCanvas | undefined;
|
|
@@ -180,6 +180,8 @@ export interface Envelope {
|
|
|
180
180
|
add_friend?: AddFriend | undefined;
|
|
181
181
|
/** Ban channel user */
|
|
182
182
|
ban_user_event?: BannedUserEvent | undefined;
|
|
183
|
+
/** Active archive thread */
|
|
184
|
+
active_archived_thread?: ActiveArchivedThread | undefined;
|
|
183
185
|
}
|
|
184
186
|
export interface FollowEvent {
|
|
185
187
|
}
|
|
@@ -1063,26 +1065,14 @@ export interface UserProfileRedis {
|
|
|
1063
1065
|
avatar: string;
|
|
1064
1066
|
/** Display name */
|
|
1065
1067
|
display_name: string;
|
|
1066
|
-
/** about me */
|
|
1067
|
-
about_me: string;
|
|
1068
1068
|
/** user status */
|
|
1069
1069
|
user_status: string;
|
|
1070
1070
|
/** status online, offline, invisible, idle, do not disturb */
|
|
1071
1071
|
status: string;
|
|
1072
|
-
/** create time */
|
|
1073
|
-
create_time_second: number;
|
|
1074
1072
|
/** FCM token */
|
|
1075
1073
|
fcm_tokens: FCMTokens[];
|
|
1076
|
-
/** isOnline */
|
|
1077
|
-
online: boolean;
|
|
1078
|
-
/** is disabled */
|
|
1079
|
-
is_disabled: boolean;
|
|
1080
1074
|
/** clans */
|
|
1081
1075
|
joined_clans: string[];
|
|
1082
|
-
/** public key */
|
|
1083
|
-
pubkey: string;
|
|
1084
|
-
/** mezon id */
|
|
1085
|
-
mezon_id: string;
|
|
1086
1076
|
/** app token */
|
|
1087
1077
|
app_token: string;
|
|
1088
1078
|
/** app url */
|
|
@@ -1303,6 +1293,10 @@ export interface TransferOwnershipEvent {
|
|
|
1303
1293
|
prev_owner: string;
|
|
1304
1294
|
curr_owner: string;
|
|
1305
1295
|
}
|
|
1296
|
+
export interface ActiveArchivedThread {
|
|
1297
|
+
clan_id: string;
|
|
1298
|
+
channel_id: string;
|
|
1299
|
+
}
|
|
1306
1300
|
export declare const Envelope: {
|
|
1307
1301
|
encode(message: Envelope, writer?: _m0.Writer): _m0.Writer;
|
|
1308
1302
|
decode(input: _m0.Reader | Uint8Array, length?: number): Envelope;
|
|
@@ -1847,20 +1841,14 @@ export declare const Envelope: {
|
|
|
1847
1841
|
username?: string | undefined;
|
|
1848
1842
|
avatar?: string | undefined;
|
|
1849
1843
|
display_name?: string | undefined;
|
|
1850
|
-
about_me?: string | undefined;
|
|
1851
1844
|
user_status?: string | undefined;
|
|
1852
1845
|
status?: string | undefined;
|
|
1853
|
-
create_time_second?: number | undefined;
|
|
1854
1846
|
fcm_tokens?: {
|
|
1855
1847
|
device_id?: string | undefined;
|
|
1856
1848
|
token_id?: string | undefined;
|
|
1857
1849
|
platform?: string | undefined;
|
|
1858
1850
|
}[] | undefined;
|
|
1859
|
-
online?: boolean | undefined;
|
|
1860
|
-
is_disabled?: boolean | undefined;
|
|
1861
1851
|
joined_clans?: string[] | undefined;
|
|
1862
|
-
pubkey?: string | undefined;
|
|
1863
|
-
mezon_id?: string | undefined;
|
|
1864
1852
|
app_token?: string | undefined;
|
|
1865
1853
|
app_url?: string | undefined;
|
|
1866
1854
|
is_bot?: boolean | undefined;
|
|
@@ -1873,20 +1861,14 @@ export declare const Envelope: {
|
|
|
1873
1861
|
username?: string | undefined;
|
|
1874
1862
|
avatar?: string | undefined;
|
|
1875
1863
|
display_name?: string | undefined;
|
|
1876
|
-
about_me?: string | undefined;
|
|
1877
1864
|
user_status?: string | undefined;
|
|
1878
1865
|
status?: string | undefined;
|
|
1879
|
-
create_time_second?: number | undefined;
|
|
1880
1866
|
fcm_tokens?: {
|
|
1881
1867
|
device_id?: string | undefined;
|
|
1882
1868
|
token_id?: string | undefined;
|
|
1883
1869
|
platform?: string | undefined;
|
|
1884
1870
|
}[] | undefined;
|
|
1885
|
-
online?: boolean | undefined;
|
|
1886
|
-
is_disabled?: boolean | undefined;
|
|
1887
1871
|
joined_clans?: string[] | undefined;
|
|
1888
|
-
pubkey?: string | undefined;
|
|
1889
|
-
mezon_id?: string | undefined;
|
|
1890
1872
|
app_token?: string | undefined;
|
|
1891
1873
|
app_url?: string | undefined;
|
|
1892
1874
|
is_bot?: boolean | undefined;
|
|
@@ -1948,20 +1930,14 @@ export declare const Envelope: {
|
|
|
1948
1930
|
username?: string | undefined;
|
|
1949
1931
|
avatar?: string | undefined;
|
|
1950
1932
|
display_name?: string | undefined;
|
|
1951
|
-
about_me?: string | undefined;
|
|
1952
1933
|
user_status?: string | undefined;
|
|
1953
1934
|
status?: string | undefined;
|
|
1954
|
-
create_time_second?: number | undefined;
|
|
1955
1935
|
fcm_tokens?: {
|
|
1956
1936
|
device_id?: string | undefined;
|
|
1957
1937
|
token_id?: string | undefined;
|
|
1958
1938
|
platform?: string | undefined;
|
|
1959
1939
|
}[] | undefined;
|
|
1960
|
-
online?: boolean | undefined;
|
|
1961
|
-
is_disabled?: boolean | undefined;
|
|
1962
1940
|
joined_clans?: string[] | undefined;
|
|
1963
|
-
pubkey?: string | undefined;
|
|
1964
|
-
mezon_id?: string | undefined;
|
|
1965
1941
|
app_token?: string | undefined;
|
|
1966
1942
|
app_url?: string | undefined;
|
|
1967
1943
|
is_bot?: boolean | undefined;
|
|
@@ -3331,6 +3307,10 @@ export declare const Envelope: {
|
|
|
3331
3307
|
channel_id?: string | undefined;
|
|
3332
3308
|
clan_id?: string | undefined;
|
|
3333
3309
|
} | undefined;
|
|
3310
|
+
active_archived_thread?: {
|
|
3311
|
+
clan_id?: string | undefined;
|
|
3312
|
+
channel_id?: string | undefined;
|
|
3313
|
+
} | undefined;
|
|
3334
3314
|
} & {
|
|
3335
3315
|
cid?: string | undefined;
|
|
3336
3316
|
channel?: ({
|
|
@@ -4916,20 +4896,14 @@ export declare const Envelope: {
|
|
|
4916
4896
|
username?: string | undefined;
|
|
4917
4897
|
avatar?: string | undefined;
|
|
4918
4898
|
display_name?: string | undefined;
|
|
4919
|
-
about_me?: string | undefined;
|
|
4920
4899
|
user_status?: string | undefined;
|
|
4921
4900
|
status?: string | undefined;
|
|
4922
|
-
create_time_second?: number | undefined;
|
|
4923
4901
|
fcm_tokens?: {
|
|
4924
4902
|
device_id?: string | undefined;
|
|
4925
4903
|
token_id?: string | undefined;
|
|
4926
4904
|
platform?: string | undefined;
|
|
4927
4905
|
}[] | undefined;
|
|
4928
|
-
online?: boolean | undefined;
|
|
4929
|
-
is_disabled?: boolean | undefined;
|
|
4930
4906
|
joined_clans?: string[] | undefined;
|
|
4931
|
-
pubkey?: string | undefined;
|
|
4932
|
-
mezon_id?: string | undefined;
|
|
4933
4907
|
app_token?: string | undefined;
|
|
4934
4908
|
app_url?: string | undefined;
|
|
4935
4909
|
is_bot?: boolean | undefined;
|
|
@@ -4942,20 +4916,14 @@ export declare const Envelope: {
|
|
|
4942
4916
|
username?: string | undefined;
|
|
4943
4917
|
avatar?: string | undefined;
|
|
4944
4918
|
display_name?: string | undefined;
|
|
4945
|
-
about_me?: string | undefined;
|
|
4946
4919
|
user_status?: string | undefined;
|
|
4947
4920
|
status?: string | undefined;
|
|
4948
|
-
create_time_second?: number | undefined;
|
|
4949
4921
|
fcm_tokens?: {
|
|
4950
4922
|
device_id?: string | undefined;
|
|
4951
4923
|
token_id?: string | undefined;
|
|
4952
4924
|
platform?: string | undefined;
|
|
4953
4925
|
}[] | undefined;
|
|
4954
|
-
online?: boolean | undefined;
|
|
4955
|
-
is_disabled?: boolean | undefined;
|
|
4956
4926
|
joined_clans?: string[] | undefined;
|
|
4957
|
-
pubkey?: string | undefined;
|
|
4958
|
-
mezon_id?: string | undefined;
|
|
4959
4927
|
app_token?: string | undefined;
|
|
4960
4928
|
app_url?: string | undefined;
|
|
4961
4929
|
is_bot?: boolean | undefined;
|
|
@@ -5094,20 +5062,14 @@ export declare const Envelope: {
|
|
|
5094
5062
|
username?: string | undefined;
|
|
5095
5063
|
avatar?: string | undefined;
|
|
5096
5064
|
display_name?: string | undefined;
|
|
5097
|
-
about_me?: string | undefined;
|
|
5098
5065
|
user_status?: string | undefined;
|
|
5099
5066
|
status?: string | undefined;
|
|
5100
|
-
create_time_second?: number | undefined;
|
|
5101
5067
|
fcm_tokens?: {
|
|
5102
5068
|
device_id?: string | undefined;
|
|
5103
5069
|
token_id?: string | undefined;
|
|
5104
5070
|
platform?: string | undefined;
|
|
5105
5071
|
}[] | undefined;
|
|
5106
|
-
online?: boolean | undefined;
|
|
5107
|
-
is_disabled?: boolean | undefined;
|
|
5108
5072
|
joined_clans?: string[] | undefined;
|
|
5109
|
-
pubkey?: string | undefined;
|
|
5110
|
-
mezon_id?: string | undefined;
|
|
5111
5073
|
app_token?: string | undefined;
|
|
5112
5074
|
app_url?: string | undefined;
|
|
5113
5075
|
is_bot?: boolean | undefined;
|
|
@@ -5117,20 +5079,14 @@ export declare const Envelope: {
|
|
|
5117
5079
|
username?: string | undefined;
|
|
5118
5080
|
avatar?: string | undefined;
|
|
5119
5081
|
display_name?: string | undefined;
|
|
5120
|
-
about_me?: string | undefined;
|
|
5121
5082
|
user_status?: string | undefined;
|
|
5122
5083
|
status?: string | undefined;
|
|
5123
|
-
create_time_second?: number | undefined;
|
|
5124
5084
|
fcm_tokens?: {
|
|
5125
5085
|
device_id?: string | undefined;
|
|
5126
5086
|
token_id?: string | undefined;
|
|
5127
5087
|
platform?: string | undefined;
|
|
5128
5088
|
}[] | undefined;
|
|
5129
|
-
online?: boolean | undefined;
|
|
5130
|
-
is_disabled?: boolean | undefined;
|
|
5131
5089
|
joined_clans?: string[] | undefined;
|
|
5132
|
-
pubkey?: string | undefined;
|
|
5133
|
-
mezon_id?: string | undefined;
|
|
5134
5090
|
app_token?: string | undefined;
|
|
5135
5091
|
app_url?: string | undefined;
|
|
5136
5092
|
is_bot?: boolean | undefined;
|
|
@@ -5140,10 +5096,8 @@ export declare const Envelope: {
|
|
|
5140
5096
|
username?: string | undefined;
|
|
5141
5097
|
avatar?: string | undefined;
|
|
5142
5098
|
display_name?: string | undefined;
|
|
5143
|
-
about_me?: string | undefined;
|
|
5144
5099
|
user_status?: string | undefined;
|
|
5145
5100
|
status?: string | undefined;
|
|
5146
|
-
create_time_second?: number | undefined;
|
|
5147
5101
|
fcm_tokens?: ({
|
|
5148
5102
|
device_id?: string | undefined;
|
|
5149
5103
|
token_id?: string | undefined;
|
|
@@ -5161,11 +5115,7 @@ export declare const Envelope: {
|
|
|
5161
5115
|
token_id?: string | undefined;
|
|
5162
5116
|
platform?: string | undefined;
|
|
5163
5117
|
}[]>]: never; }) | undefined;
|
|
5164
|
-
online?: boolean | undefined;
|
|
5165
|
-
is_disabled?: boolean | undefined;
|
|
5166
5118
|
joined_clans?: (string[] & string[] & { [K_94 in Exclude<keyof I["user_channel_added_event"]["users"][number]["joined_clans"], keyof string[]>]: never; }) | undefined;
|
|
5167
|
-
pubkey?: string | undefined;
|
|
5168
|
-
mezon_id?: string | undefined;
|
|
5169
5119
|
app_token?: string | undefined;
|
|
5170
5120
|
app_url?: string | undefined;
|
|
5171
5121
|
is_bot?: boolean | undefined;
|
|
@@ -5175,20 +5125,14 @@ export declare const Envelope: {
|
|
|
5175
5125
|
username?: string | undefined;
|
|
5176
5126
|
avatar?: string | undefined;
|
|
5177
5127
|
display_name?: string | undefined;
|
|
5178
|
-
about_me?: string | undefined;
|
|
5179
5128
|
user_status?: string | undefined;
|
|
5180
5129
|
status?: string | undefined;
|
|
5181
|
-
create_time_second?: number | undefined;
|
|
5182
5130
|
fcm_tokens?: {
|
|
5183
5131
|
device_id?: string | undefined;
|
|
5184
5132
|
token_id?: string | undefined;
|
|
5185
5133
|
platform?: string | undefined;
|
|
5186
5134
|
}[] | undefined;
|
|
5187
|
-
online?: boolean | undefined;
|
|
5188
|
-
is_disabled?: boolean | undefined;
|
|
5189
5135
|
joined_clans?: string[] | undefined;
|
|
5190
|
-
pubkey?: string | undefined;
|
|
5191
|
-
mezon_id?: string | undefined;
|
|
5192
5136
|
app_token?: string | undefined;
|
|
5193
5137
|
app_url?: string | undefined;
|
|
5194
5138
|
is_bot?: boolean | undefined;
|
|
@@ -5201,20 +5145,14 @@ export declare const Envelope: {
|
|
|
5201
5145
|
username?: string | undefined;
|
|
5202
5146
|
avatar?: string | undefined;
|
|
5203
5147
|
display_name?: string | undefined;
|
|
5204
|
-
about_me?: string | undefined;
|
|
5205
5148
|
user_status?: string | undefined;
|
|
5206
5149
|
status?: string | undefined;
|
|
5207
|
-
create_time_second?: number | undefined;
|
|
5208
5150
|
fcm_tokens?: {
|
|
5209
5151
|
device_id?: string | undefined;
|
|
5210
5152
|
token_id?: string | undefined;
|
|
5211
5153
|
platform?: string | undefined;
|
|
5212
5154
|
}[] | undefined;
|
|
5213
|
-
online?: boolean | undefined;
|
|
5214
|
-
is_disabled?: boolean | undefined;
|
|
5215
5155
|
joined_clans?: string[] | undefined;
|
|
5216
|
-
pubkey?: string | undefined;
|
|
5217
|
-
mezon_id?: string | undefined;
|
|
5218
5156
|
app_token?: string | undefined;
|
|
5219
5157
|
app_url?: string | undefined;
|
|
5220
5158
|
is_bot?: boolean | undefined;
|
|
@@ -5224,10 +5162,8 @@ export declare const Envelope: {
|
|
|
5224
5162
|
username?: string | undefined;
|
|
5225
5163
|
avatar?: string | undefined;
|
|
5226
5164
|
display_name?: string | undefined;
|
|
5227
|
-
about_me?: string | undefined;
|
|
5228
5165
|
user_status?: string | undefined;
|
|
5229
5166
|
status?: string | undefined;
|
|
5230
|
-
create_time_second?: number | undefined;
|
|
5231
5167
|
fcm_tokens?: ({
|
|
5232
5168
|
device_id?: string | undefined;
|
|
5233
5169
|
token_id?: string | undefined;
|
|
@@ -5245,11 +5181,7 @@ export declare const Envelope: {
|
|
|
5245
5181
|
token_id?: string | undefined;
|
|
5246
5182
|
platform?: string | undefined;
|
|
5247
5183
|
}[]>]: never; }) | undefined;
|
|
5248
|
-
online?: boolean | undefined;
|
|
5249
|
-
is_disabled?: boolean | undefined;
|
|
5250
5184
|
joined_clans?: (string[] & string[] & { [K_99 in Exclude<keyof I["user_channel_added_event"]["caller"]["joined_clans"], keyof string[]>]: never; }) | undefined;
|
|
5251
|
-
pubkey?: string | undefined;
|
|
5252
|
-
mezon_id?: string | undefined;
|
|
5253
5185
|
app_token?: string | undefined;
|
|
5254
5186
|
app_url?: string | undefined;
|
|
5255
5187
|
is_bot?: boolean | undefined;
|
|
@@ -5351,20 +5283,14 @@ export declare const Envelope: {
|
|
|
5351
5283
|
username?: string | undefined;
|
|
5352
5284
|
avatar?: string | undefined;
|
|
5353
5285
|
display_name?: string | undefined;
|
|
5354
|
-
about_me?: string | undefined;
|
|
5355
5286
|
user_status?: string | undefined;
|
|
5356
5287
|
status?: string | undefined;
|
|
5357
|
-
create_time_second?: number | undefined;
|
|
5358
5288
|
fcm_tokens?: {
|
|
5359
5289
|
device_id?: string | undefined;
|
|
5360
5290
|
token_id?: string | undefined;
|
|
5361
5291
|
platform?: string | undefined;
|
|
5362
5292
|
}[] | undefined;
|
|
5363
|
-
online?: boolean | undefined;
|
|
5364
|
-
is_disabled?: boolean | undefined;
|
|
5365
5293
|
joined_clans?: string[] | undefined;
|
|
5366
|
-
pubkey?: string | undefined;
|
|
5367
|
-
mezon_id?: string | undefined;
|
|
5368
5294
|
app_token?: string | undefined;
|
|
5369
5295
|
app_url?: string | undefined;
|
|
5370
5296
|
is_bot?: boolean | undefined;
|
|
@@ -5378,20 +5304,14 @@ export declare const Envelope: {
|
|
|
5378
5304
|
username?: string | undefined;
|
|
5379
5305
|
avatar?: string | undefined;
|
|
5380
5306
|
display_name?: string | undefined;
|
|
5381
|
-
about_me?: string | undefined;
|
|
5382
5307
|
user_status?: string | undefined;
|
|
5383
5308
|
status?: string | undefined;
|
|
5384
|
-
create_time_second?: number | undefined;
|
|
5385
5309
|
fcm_tokens?: {
|
|
5386
5310
|
device_id?: string | undefined;
|
|
5387
5311
|
token_id?: string | undefined;
|
|
5388
5312
|
platform?: string | undefined;
|
|
5389
5313
|
}[] | undefined;
|
|
5390
|
-
online?: boolean | undefined;
|
|
5391
|
-
is_disabled?: boolean | undefined;
|
|
5392
5314
|
joined_clans?: string[] | undefined;
|
|
5393
|
-
pubkey?: string | undefined;
|
|
5394
|
-
mezon_id?: string | undefined;
|
|
5395
5315
|
app_token?: string | undefined;
|
|
5396
5316
|
app_url?: string | undefined;
|
|
5397
5317
|
is_bot?: boolean | undefined;
|
|
@@ -5401,10 +5321,8 @@ export declare const Envelope: {
|
|
|
5401
5321
|
username?: string | undefined;
|
|
5402
5322
|
avatar?: string | undefined;
|
|
5403
5323
|
display_name?: string | undefined;
|
|
5404
|
-
about_me?: string | undefined;
|
|
5405
5324
|
user_status?: string | undefined;
|
|
5406
5325
|
status?: string | undefined;
|
|
5407
|
-
create_time_second?: number | undefined;
|
|
5408
5326
|
fcm_tokens?: ({
|
|
5409
5327
|
device_id?: string | undefined;
|
|
5410
5328
|
token_id?: string | undefined;
|
|
@@ -5422,11 +5340,7 @@ export declare const Envelope: {
|
|
|
5422
5340
|
token_id?: string | undefined;
|
|
5423
5341
|
platform?: string | undefined;
|
|
5424
5342
|
}[]>]: never; }) | undefined;
|
|
5425
|
-
online?: boolean | undefined;
|
|
5426
|
-
is_disabled?: boolean | undefined;
|
|
5427
5343
|
joined_clans?: (string[] & string[] & { [K_113 in Exclude<keyof I["add_clan_user_event"]["user"]["joined_clans"], keyof string[]>]: never; }) | undefined;
|
|
5428
|
-
pubkey?: string | undefined;
|
|
5429
|
-
mezon_id?: string | undefined;
|
|
5430
5344
|
app_token?: string | undefined;
|
|
5431
5345
|
app_url?: string | undefined;
|
|
5432
5346
|
is_bot?: boolean | undefined;
|
|
@@ -11255,7 +11169,14 @@ export declare const Envelope: {
|
|
|
11255
11169
|
channel_id?: string | undefined;
|
|
11256
11170
|
clan_id?: string | undefined;
|
|
11257
11171
|
} & { [K_393 in Exclude<keyof I["ban_user_event"], keyof BannedUserEvent>]: never; }) | undefined;
|
|
11258
|
-
|
|
11172
|
+
active_archived_thread?: ({
|
|
11173
|
+
clan_id?: string | undefined;
|
|
11174
|
+
channel_id?: string | undefined;
|
|
11175
|
+
} & {
|
|
11176
|
+
clan_id?: string | undefined;
|
|
11177
|
+
channel_id?: string | undefined;
|
|
11178
|
+
} & { [K_394 in Exclude<keyof I["active_archived_thread"], keyof ActiveArchivedThread>]: never; }) | undefined;
|
|
11179
|
+
} & { [K_395 in Exclude<keyof I, keyof Envelope>]: never; }>(base?: I | undefined): Envelope;
|
|
11259
11180
|
fromPartial<I_1 extends {
|
|
11260
11181
|
cid?: string | undefined;
|
|
11261
11182
|
channel?: {
|
|
@@ -11795,20 +11716,14 @@ export declare const Envelope: {
|
|
|
11795
11716
|
username?: string | undefined;
|
|
11796
11717
|
avatar?: string | undefined;
|
|
11797
11718
|
display_name?: string | undefined;
|
|
11798
|
-
about_me?: string | undefined;
|
|
11799
11719
|
user_status?: string | undefined;
|
|
11800
11720
|
status?: string | undefined;
|
|
11801
|
-
create_time_second?: number | undefined;
|
|
11802
11721
|
fcm_tokens?: {
|
|
11803
11722
|
device_id?: string | undefined;
|
|
11804
11723
|
token_id?: string | undefined;
|
|
11805
11724
|
platform?: string | undefined;
|
|
11806
11725
|
}[] | undefined;
|
|
11807
|
-
online?: boolean | undefined;
|
|
11808
|
-
is_disabled?: boolean | undefined;
|
|
11809
11726
|
joined_clans?: string[] | undefined;
|
|
11810
|
-
pubkey?: string | undefined;
|
|
11811
|
-
mezon_id?: string | undefined;
|
|
11812
11727
|
app_token?: string | undefined;
|
|
11813
11728
|
app_url?: string | undefined;
|
|
11814
11729
|
is_bot?: boolean | undefined;
|
|
@@ -11821,20 +11736,14 @@ export declare const Envelope: {
|
|
|
11821
11736
|
username?: string | undefined;
|
|
11822
11737
|
avatar?: string | undefined;
|
|
11823
11738
|
display_name?: string | undefined;
|
|
11824
|
-
about_me?: string | undefined;
|
|
11825
11739
|
user_status?: string | undefined;
|
|
11826
11740
|
status?: string | undefined;
|
|
11827
|
-
create_time_second?: number | undefined;
|
|
11828
11741
|
fcm_tokens?: {
|
|
11829
11742
|
device_id?: string | undefined;
|
|
11830
11743
|
token_id?: string | undefined;
|
|
11831
11744
|
platform?: string | undefined;
|
|
11832
11745
|
}[] | undefined;
|
|
11833
|
-
online?: boolean | undefined;
|
|
11834
|
-
is_disabled?: boolean | undefined;
|
|
11835
11746
|
joined_clans?: string[] | undefined;
|
|
11836
|
-
pubkey?: string | undefined;
|
|
11837
|
-
mezon_id?: string | undefined;
|
|
11838
11747
|
app_token?: string | undefined;
|
|
11839
11748
|
app_url?: string | undefined;
|
|
11840
11749
|
is_bot?: boolean | undefined;
|
|
@@ -11896,20 +11805,14 @@ export declare const Envelope: {
|
|
|
11896
11805
|
username?: string | undefined;
|
|
11897
11806
|
avatar?: string | undefined;
|
|
11898
11807
|
display_name?: string | undefined;
|
|
11899
|
-
about_me?: string | undefined;
|
|
11900
11808
|
user_status?: string | undefined;
|
|
11901
11809
|
status?: string | undefined;
|
|
11902
|
-
create_time_second?: number | undefined;
|
|
11903
11810
|
fcm_tokens?: {
|
|
11904
11811
|
device_id?: string | undefined;
|
|
11905
11812
|
token_id?: string | undefined;
|
|
11906
11813
|
platform?: string | undefined;
|
|
11907
11814
|
}[] | undefined;
|
|
11908
|
-
online?: boolean | undefined;
|
|
11909
|
-
is_disabled?: boolean | undefined;
|
|
11910
11815
|
joined_clans?: string[] | undefined;
|
|
11911
|
-
pubkey?: string | undefined;
|
|
11912
|
-
mezon_id?: string | undefined;
|
|
11913
11816
|
app_token?: string | undefined;
|
|
11914
11817
|
app_url?: string | undefined;
|
|
11915
11818
|
is_bot?: boolean | undefined;
|
|
@@ -13279,6 +13182,10 @@ export declare const Envelope: {
|
|
|
13279
13182
|
channel_id?: string | undefined;
|
|
13280
13183
|
clan_id?: string | undefined;
|
|
13281
13184
|
} | undefined;
|
|
13185
|
+
active_archived_thread?: {
|
|
13186
|
+
clan_id?: string | undefined;
|
|
13187
|
+
channel_id?: string | undefined;
|
|
13188
|
+
} | undefined;
|
|
13282
13189
|
} & {
|
|
13283
13190
|
cid?: string | undefined;
|
|
13284
13191
|
channel?: ({
|
|
@@ -13325,7 +13232,7 @@ export declare const Envelope: {
|
|
|
13325
13232
|
status?: string | undefined;
|
|
13326
13233
|
is_mobile?: boolean | undefined;
|
|
13327
13234
|
user_status?: string | undefined;
|
|
13328
|
-
} & { [
|
|
13235
|
+
} & { [K_396 in Exclude<keyof I_1["channel"]["presences"][number], keyof UserPresence>]: never; })[] & { [K_397 in Exclude<keyof I_1["channel"]["presences"], keyof {
|
|
13329
13236
|
user_id?: string | undefined;
|
|
13330
13237
|
session_id?: string | undefined;
|
|
13331
13238
|
username?: string | undefined;
|
|
@@ -13347,16 +13254,16 @@ export declare const Envelope: {
|
|
|
13347
13254
|
status?: string | undefined;
|
|
13348
13255
|
is_mobile?: boolean | undefined;
|
|
13349
13256
|
user_status?: string | undefined;
|
|
13350
|
-
} & { [
|
|
13257
|
+
} & { [K_398 in Exclude<keyof I_1["channel"]["self"], keyof UserPresence>]: never; }) | undefined;
|
|
13351
13258
|
chanel_label?: string | undefined;
|
|
13352
13259
|
clan_logo?: string | undefined;
|
|
13353
13260
|
category_name?: string | undefined;
|
|
13354
|
-
} & { [
|
|
13261
|
+
} & { [K_399 in Exclude<keyof I_1["channel"], keyof Channel>]: never; }) | undefined;
|
|
13355
13262
|
clan_join?: ({
|
|
13356
13263
|
clan_id?: string | undefined;
|
|
13357
13264
|
} & {
|
|
13358
13265
|
clan_id?: string | undefined;
|
|
13359
|
-
} & { [
|
|
13266
|
+
} & { [K_400 in Exclude<keyof I_1["clan_join"], "clan_id">]: never; }) | undefined;
|
|
13360
13267
|
channel_join?: ({
|
|
13361
13268
|
clan_id?: string | undefined;
|
|
13362
13269
|
channel_id?: string | undefined;
|
|
@@ -13367,7 +13274,7 @@ export declare const Envelope: {
|
|
|
13367
13274
|
channel_id?: string | undefined;
|
|
13368
13275
|
channel_type?: number | undefined;
|
|
13369
13276
|
is_public?: boolean | undefined;
|
|
13370
|
-
} & { [
|
|
13277
|
+
} & { [K_401 in Exclude<keyof I_1["channel_join"], keyof ChannelJoin>]: never; }) | undefined;
|
|
13371
13278
|
channel_leave?: ({
|
|
13372
13279
|
clan_id?: string | undefined;
|
|
13373
13280
|
channel_id?: string | undefined;
|
|
@@ -13378,7 +13285,7 @@ export declare const Envelope: {
|
|
|
13378
13285
|
channel_id?: string | undefined;
|
|
13379
13286
|
channel_type?: number | undefined;
|
|
13380
13287
|
is_public?: boolean | undefined;
|
|
13381
|
-
} & { [
|
|
13288
|
+
} & { [K_402 in Exclude<keyof I_1["channel_leave"], keyof ChannelLeave>]: never; }) | undefined;
|
|
13382
13289
|
channel_message?: ({
|
|
13383
13290
|
clan_id?: string | undefined;
|
|
13384
13291
|
channel_id?: string | undefined;
|
|
@@ -13435,7 +13342,7 @@ export declare const Envelope: {
|
|
|
13435
13342
|
hide_editted?: boolean | undefined;
|
|
13436
13343
|
is_public?: boolean | undefined;
|
|
13437
13344
|
topic_id?: string | undefined;
|
|
13438
|
-
} & { [
|
|
13345
|
+
} & { [K_403 in Exclude<keyof I_1["channel_message"], keyof ChannelMessage>]: never; }) | undefined;
|
|
13439
13346
|
channel_message_ack?: ({
|
|
13440
13347
|
channel_id?: string | undefined;
|
|
13441
13348
|
message_id?: string | undefined;
|
|
@@ -13456,7 +13363,7 @@ export declare const Envelope: {
|
|
|
13456
13363
|
persistent?: boolean | undefined;
|
|
13457
13364
|
clan_logo?: string | undefined;
|
|
13458
13365
|
category_name?: string | undefined;
|
|
13459
|
-
} & { [
|
|
13366
|
+
} & { [K_404 in Exclude<keyof I_1["channel_message_ack"], keyof ChannelMessageAck>]: never; }) | undefined;
|
|
13460
13367
|
channel_message_send?: ({
|
|
13461
13368
|
clan_id?: string | undefined;
|
|
13462
13369
|
channel_id?: string | undefined;
|
|
@@ -13531,7 +13438,7 @@ export declare const Envelope: {
|
|
|
13531
13438
|
create_time?: Date | undefined;
|
|
13532
13439
|
s?: number | undefined;
|
|
13533
13440
|
e?: number | undefined;
|
|
13534
|
-
} & { [
|
|
13441
|
+
} & { [K_405 in Exclude<keyof I_1["channel_message_send"]["mentions"][number], keyof MessageMention>]: never; })[] & { [K_406 in Exclude<keyof I_1["channel_message_send"]["mentions"], keyof {
|
|
13535
13442
|
id?: string | undefined;
|
|
13536
13443
|
user_id?: string | undefined;
|
|
13537
13444
|
username?: string | undefined;
|
|
@@ -13565,7 +13472,7 @@ export declare const Envelope: {
|
|
|
13565
13472
|
width?: number | undefined;
|
|
13566
13473
|
height?: number | undefined;
|
|
13567
13474
|
thumbnail?: string | undefined;
|
|
13568
|
-
} & { [
|
|
13475
|
+
} & { [K_407 in Exclude<keyof I_1["channel_message_send"]["attachments"][number], keyof MessageAttachment>]: never; })[] & { [K_408 in Exclude<keyof I_1["channel_message_send"]["attachments"], keyof {
|
|
13569
13476
|
filename?: string | undefined;
|
|
13570
13477
|
size?: number | undefined;
|
|
13571
13478
|
url?: string | undefined;
|
|
@@ -13607,7 +13514,7 @@ export declare const Envelope: {
|
|
|
13607
13514
|
mesages_sender_avatar?: string | undefined;
|
|
13608
13515
|
message_sender_clan_nick?: string | undefined;
|
|
13609
13516
|
message_sender_display_name?: string | undefined;
|
|
13610
|
-
} & { [
|
|
13517
|
+
} & { [K_409 in Exclude<keyof I_1["channel_message_send"]["references"][number], keyof MessageRef>]: never; })[] & { [K_410 in Exclude<keyof I_1["channel_message_send"]["references"], keyof {
|
|
13611
13518
|
message_id?: string | undefined;
|
|
13612
13519
|
message_ref_id?: string | undefined;
|
|
13613
13520
|
content?: string | undefined;
|
|
@@ -13627,7 +13534,7 @@ export declare const Envelope: {
|
|
|
13627
13534
|
code?: number | undefined;
|
|
13628
13535
|
topic_id?: string | undefined;
|
|
13629
13536
|
id?: string | undefined;
|
|
13630
|
-
} & { [
|
|
13537
|
+
} & { [K_411 in Exclude<keyof I_1["channel_message_send"], keyof ChannelMessageSend>]: never; }) | undefined;
|
|
13631
13538
|
channel_message_update?: ({
|
|
13632
13539
|
clan_id?: string | undefined;
|
|
13633
13540
|
channel_id?: string | undefined;
|
|
@@ -13690,7 +13597,7 @@ export declare const Envelope: {
|
|
|
13690
13597
|
create_time?: Date | undefined;
|
|
13691
13598
|
s?: number | undefined;
|
|
13692
13599
|
e?: number | undefined;
|
|
13693
|
-
} & { [
|
|
13600
|
+
} & { [K_412 in Exclude<keyof I_1["channel_message_update"]["mentions"][number], keyof MessageMention>]: never; })[] & { [K_413 in Exclude<keyof I_1["channel_message_update"]["mentions"], keyof {
|
|
13694
13601
|
id?: string | undefined;
|
|
13695
13602
|
user_id?: string | undefined;
|
|
13696
13603
|
username?: string | undefined;
|
|
@@ -13724,7 +13631,7 @@ export declare const Envelope: {
|
|
|
13724
13631
|
width?: number | undefined;
|
|
13725
13632
|
height?: number | undefined;
|
|
13726
13633
|
thumbnail?: string | undefined;
|
|
13727
|
-
} & { [
|
|
13634
|
+
} & { [K_414 in Exclude<keyof I_1["channel_message_update"]["attachments"][number], keyof MessageAttachment>]: never; })[] & { [K_415 in Exclude<keyof I_1["channel_message_update"]["attachments"], keyof {
|
|
13728
13635
|
filename?: string | undefined;
|
|
13729
13636
|
size?: number | undefined;
|
|
13730
13637
|
url?: string | undefined;
|
|
@@ -13739,7 +13646,7 @@ export declare const Envelope: {
|
|
|
13739
13646
|
topic_id?: string | undefined;
|
|
13740
13647
|
is_update_msg_topic?: boolean | undefined;
|
|
13741
13648
|
old_mentions?: string | undefined;
|
|
13742
|
-
} & { [
|
|
13649
|
+
} & { [K_416 in Exclude<keyof I_1["channel_message_update"], keyof ChannelMessageUpdate>]: never; }) | undefined;
|
|
13743
13650
|
channel_message_remove?: ({
|
|
13744
13651
|
clan_id?: string | undefined;
|
|
13745
13652
|
channel_id?: string | undefined;
|
|
@@ -13760,7 +13667,7 @@ export declare const Envelope: {
|
|
|
13760
13667
|
topic_id?: string | undefined;
|
|
13761
13668
|
mentions?: string | undefined;
|
|
13762
13669
|
references?: string | undefined;
|
|
13763
|
-
} & { [
|
|
13670
|
+
} & { [K_417 in Exclude<keyof I_1["channel_message_remove"], keyof ChannelMessageRemove>]: never; }) | undefined;
|
|
13764
13671
|
channel_presence_event?: ({
|
|
13765
13672
|
channel_id?: string | undefined;
|
|
13766
13673
|
joins?: {
|
|
@@ -13805,7 +13712,7 @@ export declare const Envelope: {
|
|
|
13805
13712
|
status?: string | undefined;
|
|
13806
13713
|
is_mobile?: boolean | undefined;
|
|
13807
13714
|
user_status?: string | undefined;
|
|
13808
|
-
} & { [
|
|
13715
|
+
} & { [K_418 in Exclude<keyof I_1["channel_presence_event"]["joins"][number], keyof UserPresence>]: never; })[] & { [K_419 in Exclude<keyof I_1["channel_presence_event"]["joins"], keyof {
|
|
13809
13716
|
user_id?: string | undefined;
|
|
13810
13717
|
session_id?: string | undefined;
|
|
13811
13718
|
username?: string | undefined;
|
|
@@ -13834,7 +13741,7 @@ export declare const Envelope: {
|
|
|
13834
13741
|
status?: string | undefined;
|
|
13835
13742
|
is_mobile?: boolean | undefined;
|
|
13836
13743
|
user_status?: string | undefined;
|
|
13837
|
-
} & { [
|
|
13744
|
+
} & { [K_420 in Exclude<keyof I_1["channel_presence_event"]["leaves"][number], keyof UserPresence>]: never; })[] & { [K_421 in Exclude<keyof I_1["channel_presence_event"]["leaves"], keyof {
|
|
13838
13745
|
user_id?: string | undefined;
|
|
13839
13746
|
session_id?: string | undefined;
|
|
13840
13747
|
username?: string | undefined;
|
|
@@ -13845,7 +13752,7 @@ export declare const Envelope: {
|
|
|
13845
13752
|
clan_logo?: string | undefined;
|
|
13846
13753
|
category_name?: string | undefined;
|
|
13847
13754
|
mode?: number | undefined;
|
|
13848
|
-
} & { [
|
|
13755
|
+
} & { [K_422 in Exclude<keyof I_1["channel_presence_event"], keyof ChannelPresenceEvent>]: never; }) | undefined;
|
|
13849
13756
|
error?: ({
|
|
13850
13757
|
code?: number | undefined;
|
|
13851
13758
|
message?: string | undefined;
|
|
@@ -13859,8 +13766,8 @@ export declare const Envelope: {
|
|
|
13859
13766
|
[x: string]: string | undefined;
|
|
13860
13767
|
} & {
|
|
13861
13768
|
[x: string]: string | undefined;
|
|
13862
|
-
} & { [
|
|
13863
|
-
} & { [
|
|
13769
|
+
} & { [K_423 in Exclude<keyof I_1["error"]["context"], string | number>]: never; }) | undefined;
|
|
13770
|
+
} & { [K_424 in Exclude<keyof I_1["error"], keyof Error>]: never; }) | undefined;
|
|
13864
13771
|
notifications?: ({
|
|
13865
13772
|
notifications?: {
|
|
13866
13773
|
id?: string | undefined;
|
|
@@ -14139,8 +14046,8 @@ export declare const Envelope: {
|
|
|
14139
14046
|
creator_id?: string | undefined;
|
|
14140
14047
|
channel_label?: string | undefined;
|
|
14141
14048
|
channel_private?: number | undefined;
|
|
14142
|
-
avatars?: (string[] & string[] & { [
|
|
14143
|
-
user_ids?: (string[] & string[] & { [
|
|
14049
|
+
avatars?: (string[] & string[] & { [K_425 in Exclude<keyof I_1["notifications"]["notifications"][number]["channel"]["avatars"], keyof string[]>]: never; }) | undefined;
|
|
14050
|
+
user_ids?: (string[] & string[] & { [K_426 in Exclude<keyof I_1["notifications"]["notifications"][number]["channel"]["user_ids"], keyof string[]>]: never; }) | undefined;
|
|
14144
14051
|
last_sent_message?: ({
|
|
14145
14052
|
id?: string | undefined;
|
|
14146
14053
|
timestamp_seconds?: number | undefined;
|
|
@@ -14160,8 +14067,8 @@ export declare const Envelope: {
|
|
|
14160
14067
|
reference?: string | undefined;
|
|
14161
14068
|
mention?: string | undefined;
|
|
14162
14069
|
reaction?: string | undefined;
|
|
14163
|
-
repliers?: (string[] & string[] & { [
|
|
14164
|
-
} & { [
|
|
14070
|
+
repliers?: (string[] & string[] & { [K_427 in Exclude<keyof I_1["notifications"]["notifications"][number]["channel"]["last_sent_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
14071
|
+
} & { [K_428 in Exclude<keyof I_1["notifications"]["notifications"][number]["channel"]["last_sent_message"], keyof ChannelMessageHeader>]: never; }) | undefined;
|
|
14165
14072
|
last_seen_message?: ({
|
|
14166
14073
|
id?: string | undefined;
|
|
14167
14074
|
timestamp_seconds?: number | undefined;
|
|
@@ -14181,18 +14088,18 @@ export declare const Envelope: {
|
|
|
14181
14088
|
reference?: string | undefined;
|
|
14182
14089
|
mention?: string | undefined;
|
|
14183
14090
|
reaction?: string | undefined;
|
|
14184
|
-
repliers?: (string[] & string[] & { [
|
|
14185
|
-
} & { [
|
|
14186
|
-
onlines?: (boolean[] & boolean[] & { [
|
|
14091
|
+
repliers?: (string[] & string[] & { [K_429 in Exclude<keyof I_1["notifications"]["notifications"][number]["channel"]["last_seen_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
14092
|
+
} & { [K_430 in Exclude<keyof I_1["notifications"]["notifications"][number]["channel"]["last_seen_message"], keyof ChannelMessageHeader>]: never; }) | undefined;
|
|
14093
|
+
onlines?: (boolean[] & boolean[] & { [K_431 in Exclude<keyof I_1["notifications"]["notifications"][number]["channel"]["onlines"], keyof boolean[]>]: never; }) | undefined;
|
|
14187
14094
|
meeting_code?: string | undefined;
|
|
14188
14095
|
count_mess_unread?: number | undefined;
|
|
14189
14096
|
active?: number | undefined;
|
|
14190
14097
|
last_pin_message?: string | undefined;
|
|
14191
|
-
usernames?: (string[] & string[] & { [
|
|
14098
|
+
usernames?: (string[] & string[] & { [K_432 in Exclude<keyof I_1["notifications"]["notifications"][number]["channel"]["usernames"], keyof string[]>]: never; }) | undefined;
|
|
14192
14099
|
creator_name?: string | undefined;
|
|
14193
14100
|
create_time_seconds?: number | undefined;
|
|
14194
14101
|
update_time_seconds?: number | undefined;
|
|
14195
|
-
display_names?: (string[] & string[] & { [
|
|
14102
|
+
display_names?: (string[] & string[] & { [K_433 in Exclude<keyof I_1["notifications"]["notifications"][number]["channel"]["display_names"], keyof string[]>]: never; }) | undefined;
|
|
14196
14103
|
channel_avatar?: string | undefined;
|
|
14197
14104
|
clan_name?: string | undefined;
|
|
14198
14105
|
app_id?: string | undefined;
|
|
@@ -14201,10 +14108,10 @@ export declare const Envelope: {
|
|
|
14201
14108
|
topic?: string | undefined;
|
|
14202
14109
|
e2ee?: number | undefined;
|
|
14203
14110
|
member_count?: number | undefined;
|
|
14204
|
-
} & { [
|
|
14111
|
+
} & { [K_434 in Exclude<keyof I_1["notifications"]["notifications"][number]["channel"], keyof ChannelDescription1>]: never; }) | undefined;
|
|
14205
14112
|
topic_id?: string | undefined;
|
|
14206
14113
|
category?: number | undefined;
|
|
14207
|
-
} & { [
|
|
14114
|
+
} & { [K_435 in Exclude<keyof I_1["notifications"]["notifications"][number], keyof Notification>]: never; })[] & { [K_436 in Exclude<keyof I_1["notifications"]["notifications"], keyof {
|
|
14208
14115
|
id?: string | undefined;
|
|
14209
14116
|
subject?: string | undefined;
|
|
14210
14117
|
content?: string | undefined;
|
|
@@ -14272,7 +14179,7 @@ export declare const Envelope: {
|
|
|
14272
14179
|
topic_id?: string | undefined;
|
|
14273
14180
|
category?: number | undefined;
|
|
14274
14181
|
}[]>]: never; }) | undefined;
|
|
14275
|
-
} & { [
|
|
14182
|
+
} & { [K_437 in Exclude<keyof I_1["notifications"], "notifications">]: never; }) | undefined;
|
|
14276
14183
|
rpc?: ({
|
|
14277
14184
|
id?: string | undefined;
|
|
14278
14185
|
payload?: string | undefined;
|
|
@@ -14281,7 +14188,7 @@ export declare const Envelope: {
|
|
|
14281
14188
|
id?: string | undefined;
|
|
14282
14189
|
payload?: string | undefined;
|
|
14283
14190
|
http_key?: string | undefined;
|
|
14284
|
-
} & { [
|
|
14191
|
+
} & { [K_438 in Exclude<keyof I_1["rpc"], keyof Rpc>]: never; }) | undefined;
|
|
14285
14192
|
status?: ({
|
|
14286
14193
|
presences?: {
|
|
14287
14194
|
user_id?: string | undefined;
|
|
@@ -14313,7 +14220,7 @@ export declare const Envelope: {
|
|
|
14313
14220
|
status?: string | undefined;
|
|
14314
14221
|
is_mobile?: boolean | undefined;
|
|
14315
14222
|
user_status?: string | undefined;
|
|
14316
|
-
} & { [
|
|
14223
|
+
} & { [K_439 in Exclude<keyof I_1["status"]["presences"][number], keyof UserPresence>]: never; })[] & { [K_440 in Exclude<keyof I_1["status"]["presences"], keyof {
|
|
14317
14224
|
user_id?: string | undefined;
|
|
14318
14225
|
session_id?: string | undefined;
|
|
14319
14226
|
username?: string | undefined;
|
|
@@ -14321,14 +14228,14 @@ export declare const Envelope: {
|
|
|
14321
14228
|
is_mobile?: boolean | undefined;
|
|
14322
14229
|
user_status?: string | undefined;
|
|
14323
14230
|
}[]>]: never; }) | undefined;
|
|
14324
|
-
} & { [
|
|
14231
|
+
} & { [K_441 in Exclude<keyof I_1["status"], "presences">]: never; }) | undefined;
|
|
14325
14232
|
status_follow?: ({
|
|
14326
14233
|
user_ids?: string[] | undefined;
|
|
14327
14234
|
usernames?: string[] | undefined;
|
|
14328
14235
|
} & {
|
|
14329
|
-
user_ids?: (string[] & string[] & { [
|
|
14330
|
-
usernames?: (string[] & string[] & { [
|
|
14331
|
-
} & { [
|
|
14236
|
+
user_ids?: (string[] & string[] & { [K_442 in Exclude<keyof I_1["status_follow"]["user_ids"], keyof string[]>]: never; }) | undefined;
|
|
14237
|
+
usernames?: (string[] & string[] & { [K_443 in Exclude<keyof I_1["status_follow"]["usernames"], keyof string[]>]: never; }) | undefined;
|
|
14238
|
+
} & { [K_444 in Exclude<keyof I_1["status_follow"], keyof StatusFollow>]: never; }) | undefined;
|
|
14332
14239
|
status_presence_event?: ({
|
|
14333
14240
|
joins?: {
|
|
14334
14241
|
user_id?: string | undefined;
|
|
@@ -14368,7 +14275,7 @@ export declare const Envelope: {
|
|
|
14368
14275
|
status?: string | undefined;
|
|
14369
14276
|
is_mobile?: boolean | undefined;
|
|
14370
14277
|
user_status?: string | undefined;
|
|
14371
|
-
} & { [
|
|
14278
|
+
} & { [K_445 in Exclude<keyof I_1["status_presence_event"]["joins"][number], keyof UserPresence>]: never; })[] & { [K_446 in Exclude<keyof I_1["status_presence_event"]["joins"], keyof {
|
|
14372
14279
|
user_id?: string | undefined;
|
|
14373
14280
|
session_id?: string | undefined;
|
|
14374
14281
|
username?: string | undefined;
|
|
@@ -14397,7 +14304,7 @@ export declare const Envelope: {
|
|
|
14397
14304
|
status?: string | undefined;
|
|
14398
14305
|
is_mobile?: boolean | undefined;
|
|
14399
14306
|
user_status?: string | undefined;
|
|
14400
|
-
} & { [
|
|
14307
|
+
} & { [K_447 in Exclude<keyof I_1["status_presence_event"]["leaves"][number], keyof UserPresence>]: never; })[] & { [K_448 in Exclude<keyof I_1["status_presence_event"]["leaves"], keyof {
|
|
14401
14308
|
user_id?: string | undefined;
|
|
14402
14309
|
session_id?: string | undefined;
|
|
14403
14310
|
username?: string | undefined;
|
|
@@ -14405,17 +14312,17 @@ export declare const Envelope: {
|
|
|
14405
14312
|
is_mobile?: boolean | undefined;
|
|
14406
14313
|
user_status?: string | undefined;
|
|
14407
14314
|
}[]>]: never; }) | undefined;
|
|
14408
|
-
} & { [
|
|
14315
|
+
} & { [K_449 in Exclude<keyof I_1["status_presence_event"], keyof StatusPresenceEvent>]: never; }) | undefined;
|
|
14409
14316
|
status_unfollow?: ({
|
|
14410
14317
|
user_ids?: string[] | undefined;
|
|
14411
14318
|
} & {
|
|
14412
|
-
user_ids?: (string[] & string[] & { [
|
|
14413
|
-
} & { [
|
|
14319
|
+
user_ids?: (string[] & string[] & { [K_450 in Exclude<keyof I_1["status_unfollow"]["user_ids"], keyof string[]>]: never; }) | undefined;
|
|
14320
|
+
} & { [K_451 in Exclude<keyof I_1["status_unfollow"], "user_ids">]: never; }) | undefined;
|
|
14414
14321
|
status_update?: ({
|
|
14415
14322
|
status?: string | undefined;
|
|
14416
14323
|
} & {
|
|
14417
14324
|
status?: string | undefined;
|
|
14418
|
-
} & { [
|
|
14325
|
+
} & { [K_452 in Exclude<keyof I_1["status_update"], "status">]: never; }) | undefined;
|
|
14419
14326
|
stream_data?: ({
|
|
14420
14327
|
stream?: {
|
|
14421
14328
|
mode?: number | undefined;
|
|
@@ -14444,7 +14351,7 @@ export declare const Envelope: {
|
|
|
14444
14351
|
channel_id?: string | undefined;
|
|
14445
14352
|
clan_id?: string | undefined;
|
|
14446
14353
|
label?: string | undefined;
|
|
14447
|
-
} & { [
|
|
14354
|
+
} & { [K_453 in Exclude<keyof I_1["stream_data"]["stream"], keyof Stream>]: never; }) | undefined;
|
|
14448
14355
|
sender?: ({
|
|
14449
14356
|
user_id?: string | undefined;
|
|
14450
14357
|
session_id?: string | undefined;
|
|
@@ -14459,10 +14366,10 @@ export declare const Envelope: {
|
|
|
14459
14366
|
status?: string | undefined;
|
|
14460
14367
|
is_mobile?: boolean | undefined;
|
|
14461
14368
|
user_status?: string | undefined;
|
|
14462
|
-
} & { [
|
|
14369
|
+
} & { [K_454 in Exclude<keyof I_1["stream_data"]["sender"], keyof UserPresence>]: never; }) | undefined;
|
|
14463
14370
|
data?: string | undefined;
|
|
14464
14371
|
reliable?: boolean | undefined;
|
|
14465
|
-
} & { [
|
|
14372
|
+
} & { [K_455 in Exclude<keyof I_1["stream_data"], keyof StreamData>]: never; }) | undefined;
|
|
14466
14373
|
stream_presence_event?: ({
|
|
14467
14374
|
stream?: {
|
|
14468
14375
|
mode?: number | undefined;
|
|
@@ -14497,7 +14404,7 @@ export declare const Envelope: {
|
|
|
14497
14404
|
channel_id?: string | undefined;
|
|
14498
14405
|
clan_id?: string | undefined;
|
|
14499
14406
|
label?: string | undefined;
|
|
14500
|
-
} & { [
|
|
14407
|
+
} & { [K_456 in Exclude<keyof I_1["stream_presence_event"]["stream"], keyof Stream>]: never; }) | undefined;
|
|
14501
14408
|
joins?: ({
|
|
14502
14409
|
user_id?: string | undefined;
|
|
14503
14410
|
session_id?: string | undefined;
|
|
@@ -14519,7 +14426,7 @@ export declare const Envelope: {
|
|
|
14519
14426
|
status?: string | undefined;
|
|
14520
14427
|
is_mobile?: boolean | undefined;
|
|
14521
14428
|
user_status?: string | undefined;
|
|
14522
|
-
} & { [
|
|
14429
|
+
} & { [K_457 in Exclude<keyof I_1["stream_presence_event"]["joins"][number], keyof UserPresence>]: never; })[] & { [K_458 in Exclude<keyof I_1["stream_presence_event"]["joins"], keyof {
|
|
14523
14430
|
user_id?: string | undefined;
|
|
14524
14431
|
session_id?: string | undefined;
|
|
14525
14432
|
username?: string | undefined;
|
|
@@ -14548,7 +14455,7 @@ export declare const Envelope: {
|
|
|
14548
14455
|
status?: string | undefined;
|
|
14549
14456
|
is_mobile?: boolean | undefined;
|
|
14550
14457
|
user_status?: string | undefined;
|
|
14551
|
-
} & { [
|
|
14458
|
+
} & { [K_459 in Exclude<keyof I_1["stream_presence_event"]["leaves"][number], keyof UserPresence>]: never; })[] & { [K_460 in Exclude<keyof I_1["stream_presence_event"]["leaves"], keyof {
|
|
14552
14459
|
user_id?: string | undefined;
|
|
14553
14460
|
session_id?: string | undefined;
|
|
14554
14461
|
username?: string | undefined;
|
|
@@ -14556,9 +14463,9 @@ export declare const Envelope: {
|
|
|
14556
14463
|
is_mobile?: boolean | undefined;
|
|
14557
14464
|
user_status?: string | undefined;
|
|
14558
14465
|
}[]>]: never; }) | undefined;
|
|
14559
|
-
} & { [
|
|
14560
|
-
ping?: ({} & {} & { [
|
|
14561
|
-
pong?: ({} & {} & { [
|
|
14466
|
+
} & { [K_461 in Exclude<keyof I_1["stream_presence_event"], keyof StreamPresenceEvent>]: never; }) | undefined;
|
|
14467
|
+
ping?: ({} & {} & { [K_462 in Exclude<keyof I_1["ping"], never>]: never; }) | undefined;
|
|
14468
|
+
pong?: ({} & {} & { [K_463 in Exclude<keyof I_1["pong"], never>]: never; }) | undefined;
|
|
14562
14469
|
message_typing_event?: ({
|
|
14563
14470
|
clan_id?: string | undefined;
|
|
14564
14471
|
channel_id?: string | undefined;
|
|
@@ -14577,7 +14484,7 @@ export declare const Envelope: {
|
|
|
14577
14484
|
sender_username?: string | undefined;
|
|
14578
14485
|
sender_display_name?: string | undefined;
|
|
14579
14486
|
topic_id?: string | undefined;
|
|
14580
|
-
} & { [
|
|
14487
|
+
} & { [K_464 in Exclude<keyof I_1["message_typing_event"], keyof MessageTypingEvent>]: never; }) | undefined;
|
|
14581
14488
|
last_seen_message_event?: ({
|
|
14582
14489
|
clan_id?: string | undefined;
|
|
14583
14490
|
channel_id?: string | undefined;
|
|
@@ -14592,7 +14499,7 @@ export declare const Envelope: {
|
|
|
14592
14499
|
mode?: number | undefined;
|
|
14593
14500
|
timestamp_seconds?: number | undefined;
|
|
14594
14501
|
badge_count?: number | undefined;
|
|
14595
|
-
} & { [
|
|
14502
|
+
} & { [K_465 in Exclude<keyof I_1["last_seen_message_event"], keyof LastSeenMessageEvent>]: never; }) | undefined;
|
|
14596
14503
|
message_reaction_event?: ({
|
|
14597
14504
|
id?: string | undefined;
|
|
14598
14505
|
emoji_id?: string | undefined;
|
|
@@ -14627,7 +14534,7 @@ export declare const Envelope: {
|
|
|
14627
14534
|
is_public?: boolean | undefined;
|
|
14628
14535
|
topic_id?: string | undefined;
|
|
14629
14536
|
emoji_recent_id?: string | undefined;
|
|
14630
|
-
} & { [
|
|
14537
|
+
} & { [K_466 in Exclude<keyof I_1["message_reaction_event"], keyof MessageReaction>]: never; }) | undefined;
|
|
14631
14538
|
voice_joined_event?: ({
|
|
14632
14539
|
clan_id?: string | undefined;
|
|
14633
14540
|
clan_name?: string | undefined;
|
|
@@ -14646,7 +14553,7 @@ export declare const Envelope: {
|
|
|
14646
14553
|
voice_channel_label?: string | undefined;
|
|
14647
14554
|
voice_channel_id?: string | undefined;
|
|
14648
14555
|
last_screenshot?: string | undefined;
|
|
14649
|
-
} & { [
|
|
14556
|
+
} & { [K_467 in Exclude<keyof I_1["voice_joined_event"], keyof VoiceJoinedEvent>]: never; }) | undefined;
|
|
14650
14557
|
voice_leaved_event?: ({
|
|
14651
14558
|
id?: string | undefined;
|
|
14652
14559
|
clan_id?: string | undefined;
|
|
@@ -14657,7 +14564,7 @@ export declare const Envelope: {
|
|
|
14657
14564
|
clan_id?: string | undefined;
|
|
14658
14565
|
voice_channel_id?: string | undefined;
|
|
14659
14566
|
voice_user_id?: string | undefined;
|
|
14660
|
-
} & { [
|
|
14567
|
+
} & { [K_468 in Exclude<keyof I_1["voice_leaved_event"], keyof VoiceLeavedEvent>]: never; }) | undefined;
|
|
14661
14568
|
voice_started_event?: ({
|
|
14662
14569
|
id?: string | undefined;
|
|
14663
14570
|
clan_id?: string | undefined;
|
|
@@ -14666,7 +14573,7 @@ export declare const Envelope: {
|
|
|
14666
14573
|
id?: string | undefined;
|
|
14667
14574
|
clan_id?: string | undefined;
|
|
14668
14575
|
voice_channel_id?: string | undefined;
|
|
14669
|
-
} & { [
|
|
14576
|
+
} & { [K_469 in Exclude<keyof I_1["voice_started_event"], keyof VoiceStartedEvent>]: never; }) | undefined;
|
|
14670
14577
|
voice_ended_event?: ({
|
|
14671
14578
|
id?: string | undefined;
|
|
14672
14579
|
clan_id?: string | undefined;
|
|
@@ -14675,7 +14582,7 @@ export declare const Envelope: {
|
|
|
14675
14582
|
id?: string | undefined;
|
|
14676
14583
|
clan_id?: string | undefined;
|
|
14677
14584
|
voice_channel_id?: string | undefined;
|
|
14678
|
-
} & { [
|
|
14585
|
+
} & { [K_470 in Exclude<keyof I_1["voice_ended_event"], keyof VoiceEndedEvent>]: never; }) | undefined;
|
|
14679
14586
|
channel_created_event?: ({
|
|
14680
14587
|
clan_id?: string | undefined;
|
|
14681
14588
|
category_id?: string | undefined;
|
|
@@ -14702,7 +14609,7 @@ export declare const Envelope: {
|
|
|
14702
14609
|
app_id?: string | undefined;
|
|
14703
14610
|
clan_name?: string | undefined;
|
|
14704
14611
|
channel_avatar?: string | undefined;
|
|
14705
|
-
} & { [
|
|
14612
|
+
} & { [K_471 in Exclude<keyof I_1["channel_created_event"], keyof ChannelCreatedEvent>]: never; }) | undefined;
|
|
14706
14613
|
channel_deleted_event?: ({
|
|
14707
14614
|
clan_id?: string | undefined;
|
|
14708
14615
|
category_id?: string | undefined;
|
|
@@ -14715,7 +14622,7 @@ export declare const Envelope: {
|
|
|
14715
14622
|
parent_id?: string | undefined;
|
|
14716
14623
|
channel_id?: string | undefined;
|
|
14717
14624
|
deletor?: string | undefined;
|
|
14718
|
-
} & { [
|
|
14625
|
+
} & { [K_472 in Exclude<keyof I_1["channel_deleted_event"], keyof ChannelDeletedEvent>]: never; }) | undefined;
|
|
14719
14626
|
channel_updated_event?: ({
|
|
14720
14627
|
clan_id?: string | undefined;
|
|
14721
14628
|
category_id?: string | undefined;
|
|
@@ -14755,10 +14662,10 @@ export declare const Envelope: {
|
|
|
14755
14662
|
age_restricted?: number | undefined;
|
|
14756
14663
|
active?: number | undefined;
|
|
14757
14664
|
count_mess_unread?: number | undefined;
|
|
14758
|
-
user_ids?: (string[] & string[] & { [
|
|
14759
|
-
role_ids?: (string[] & string[] & { [
|
|
14665
|
+
user_ids?: (string[] & string[] & { [K_473 in Exclude<keyof I_1["channel_updated_event"]["user_ids"], keyof string[]>]: never; }) | undefined;
|
|
14666
|
+
role_ids?: (string[] & string[] & { [K_474 in Exclude<keyof I_1["channel_updated_event"]["role_ids"], keyof string[]>]: never; }) | undefined;
|
|
14760
14667
|
channel_avatar?: string | undefined;
|
|
14761
|
-
} & { [
|
|
14668
|
+
} & { [K_475 in Exclude<keyof I_1["channel_updated_event"], keyof ChannelUpdatedEvent>]: never; }) | undefined;
|
|
14762
14669
|
last_pin_message_event?: ({
|
|
14763
14670
|
clan_id?: string | undefined;
|
|
14764
14671
|
channel_id?: string | undefined;
|
|
@@ -14789,7 +14696,7 @@ export declare const Envelope: {
|
|
|
14789
14696
|
message_content?: string | undefined;
|
|
14790
14697
|
message_attachment?: string | undefined;
|
|
14791
14698
|
message_created_time?: string | undefined;
|
|
14792
|
-
} & { [
|
|
14699
|
+
} & { [K_476 in Exclude<keyof I_1["last_pin_message_event"], keyof LastPinMessageEvent>]: never; }) | undefined;
|
|
14793
14700
|
custom_status_event?: ({
|
|
14794
14701
|
clan_id?: string | undefined;
|
|
14795
14702
|
user_id?: string | undefined;
|
|
@@ -14804,7 +14711,7 @@ export declare const Envelope: {
|
|
|
14804
14711
|
status?: string | undefined;
|
|
14805
14712
|
time_reset?: number | undefined;
|
|
14806
14713
|
no_clear?: boolean | undefined;
|
|
14807
|
-
} & { [
|
|
14714
|
+
} & { [K_477 in Exclude<keyof I_1["custom_status_event"], keyof CustomStatusEvent>]: never; }) | undefined;
|
|
14808
14715
|
user_channel_added_event?: ({
|
|
14809
14716
|
channel_desc?: {
|
|
14810
14717
|
clan_id?: string | undefined;
|
|
@@ -14864,20 +14771,14 @@ export declare const Envelope: {
|
|
|
14864
14771
|
username?: string | undefined;
|
|
14865
14772
|
avatar?: string | undefined;
|
|
14866
14773
|
display_name?: string | undefined;
|
|
14867
|
-
about_me?: string | undefined;
|
|
14868
14774
|
user_status?: string | undefined;
|
|
14869
14775
|
status?: string | undefined;
|
|
14870
|
-
create_time_second?: number | undefined;
|
|
14871
14776
|
fcm_tokens?: {
|
|
14872
14777
|
device_id?: string | undefined;
|
|
14873
14778
|
token_id?: string | undefined;
|
|
14874
14779
|
platform?: string | undefined;
|
|
14875
14780
|
}[] | undefined;
|
|
14876
|
-
online?: boolean | undefined;
|
|
14877
|
-
is_disabled?: boolean | undefined;
|
|
14878
14781
|
joined_clans?: string[] | undefined;
|
|
14879
|
-
pubkey?: string | undefined;
|
|
14880
|
-
mezon_id?: string | undefined;
|
|
14881
14782
|
app_token?: string | undefined;
|
|
14882
14783
|
app_url?: string | undefined;
|
|
14883
14784
|
is_bot?: boolean | undefined;
|
|
@@ -14890,20 +14791,14 @@ export declare const Envelope: {
|
|
|
14890
14791
|
username?: string | undefined;
|
|
14891
14792
|
avatar?: string | undefined;
|
|
14892
14793
|
display_name?: string | undefined;
|
|
14893
|
-
about_me?: string | undefined;
|
|
14894
14794
|
user_status?: string | undefined;
|
|
14895
14795
|
status?: string | undefined;
|
|
14896
|
-
create_time_second?: number | undefined;
|
|
14897
14796
|
fcm_tokens?: {
|
|
14898
14797
|
device_id?: string | undefined;
|
|
14899
14798
|
token_id?: string | undefined;
|
|
14900
14799
|
platform?: string | undefined;
|
|
14901
14800
|
}[] | undefined;
|
|
14902
|
-
online?: boolean | undefined;
|
|
14903
|
-
is_disabled?: boolean | undefined;
|
|
14904
14801
|
joined_clans?: string[] | undefined;
|
|
14905
|
-
pubkey?: string | undefined;
|
|
14906
|
-
mezon_id?: string | undefined;
|
|
14907
14802
|
app_token?: string | undefined;
|
|
14908
14803
|
app_url?: string | undefined;
|
|
14909
14804
|
is_bot?: boolean | undefined;
|
|
@@ -14974,8 +14869,8 @@ export declare const Envelope: {
|
|
|
14974
14869
|
creator_id?: string | undefined;
|
|
14975
14870
|
channel_label?: string | undefined;
|
|
14976
14871
|
channel_private?: number | undefined;
|
|
14977
|
-
avatars?: (string[] & string[] & { [
|
|
14978
|
-
user_ids?: (string[] & string[] & { [
|
|
14872
|
+
avatars?: (string[] & string[] & { [K_478 in Exclude<keyof I_1["user_channel_added_event"]["channel_desc"]["avatars"], keyof string[]>]: never; }) | undefined;
|
|
14873
|
+
user_ids?: (string[] & string[] & { [K_479 in Exclude<keyof I_1["user_channel_added_event"]["channel_desc"]["user_ids"], keyof string[]>]: never; }) | undefined;
|
|
14979
14874
|
last_sent_message?: ({
|
|
14980
14875
|
id?: string | undefined;
|
|
14981
14876
|
timestamp_seconds?: number | undefined;
|
|
@@ -14995,8 +14890,8 @@ export declare const Envelope: {
|
|
|
14995
14890
|
reference?: string | undefined;
|
|
14996
14891
|
mention?: string | undefined;
|
|
14997
14892
|
reaction?: string | undefined;
|
|
14998
|
-
repliers?: (string[] & string[] & { [
|
|
14999
|
-
} & { [
|
|
14893
|
+
repliers?: (string[] & string[] & { [K_480 in Exclude<keyof I_1["user_channel_added_event"]["channel_desc"]["last_sent_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
14894
|
+
} & { [K_481 in Exclude<keyof I_1["user_channel_added_event"]["channel_desc"]["last_sent_message"], keyof ChannelMessageHeader>]: never; }) | undefined;
|
|
15000
14895
|
last_seen_message?: ({
|
|
15001
14896
|
id?: string | undefined;
|
|
15002
14897
|
timestamp_seconds?: number | undefined;
|
|
@@ -15016,18 +14911,18 @@ export declare const Envelope: {
|
|
|
15016
14911
|
reference?: string | undefined;
|
|
15017
14912
|
mention?: string | undefined;
|
|
15018
14913
|
reaction?: string | undefined;
|
|
15019
|
-
repliers?: (string[] & string[] & { [
|
|
15020
|
-
} & { [
|
|
15021
|
-
onlines?: (boolean[] & boolean[] & { [
|
|
14914
|
+
repliers?: (string[] & string[] & { [K_482 in Exclude<keyof I_1["user_channel_added_event"]["channel_desc"]["last_seen_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
14915
|
+
} & { [K_483 in Exclude<keyof I_1["user_channel_added_event"]["channel_desc"]["last_seen_message"], keyof ChannelMessageHeader>]: never; }) | undefined;
|
|
14916
|
+
onlines?: (boolean[] & boolean[] & { [K_484 in Exclude<keyof I_1["user_channel_added_event"]["channel_desc"]["onlines"], keyof boolean[]>]: never; }) | undefined;
|
|
15022
14917
|
meeting_code?: string | undefined;
|
|
15023
14918
|
count_mess_unread?: number | undefined;
|
|
15024
14919
|
active?: number | undefined;
|
|
15025
14920
|
last_pin_message?: string | undefined;
|
|
15026
|
-
usernames?: (string[] & string[] & { [
|
|
14921
|
+
usernames?: (string[] & string[] & { [K_485 in Exclude<keyof I_1["user_channel_added_event"]["channel_desc"]["usernames"], keyof string[]>]: never; }) | undefined;
|
|
15027
14922
|
creator_name?: string | undefined;
|
|
15028
14923
|
create_time_seconds?: number | undefined;
|
|
15029
14924
|
update_time_seconds?: number | undefined;
|
|
15030
|
-
display_names?: (string[] & string[] & { [
|
|
14925
|
+
display_names?: (string[] & string[] & { [K_486 in Exclude<keyof I_1["user_channel_added_event"]["channel_desc"]["display_names"], keyof string[]>]: never; }) | undefined;
|
|
15031
14926
|
channel_avatar?: string | undefined;
|
|
15032
14927
|
clan_name?: string | undefined;
|
|
15033
14928
|
app_id?: string | undefined;
|
|
@@ -15036,26 +14931,20 @@ export declare const Envelope: {
|
|
|
15036
14931
|
topic?: string | undefined;
|
|
15037
14932
|
e2ee?: number | undefined;
|
|
15038
14933
|
member_count?: number | undefined;
|
|
15039
|
-
} & { [
|
|
14934
|
+
} & { [K_487 in Exclude<keyof I_1["user_channel_added_event"]["channel_desc"], keyof ChannelDescription1>]: never; }) | undefined;
|
|
15040
14935
|
users?: ({
|
|
15041
14936
|
user_id?: string | undefined;
|
|
15042
14937
|
username?: string | undefined;
|
|
15043
14938
|
avatar?: string | undefined;
|
|
15044
14939
|
display_name?: string | undefined;
|
|
15045
|
-
about_me?: string | undefined;
|
|
15046
14940
|
user_status?: string | undefined;
|
|
15047
14941
|
status?: string | undefined;
|
|
15048
|
-
create_time_second?: number | undefined;
|
|
15049
14942
|
fcm_tokens?: {
|
|
15050
14943
|
device_id?: string | undefined;
|
|
15051
14944
|
token_id?: string | undefined;
|
|
15052
14945
|
platform?: string | undefined;
|
|
15053
14946
|
}[] | undefined;
|
|
15054
|
-
online?: boolean | undefined;
|
|
15055
|
-
is_disabled?: boolean | undefined;
|
|
15056
14947
|
joined_clans?: string[] | undefined;
|
|
15057
|
-
pubkey?: string | undefined;
|
|
15058
|
-
mezon_id?: string | undefined;
|
|
15059
14948
|
app_token?: string | undefined;
|
|
15060
14949
|
app_url?: string | undefined;
|
|
15061
14950
|
is_bot?: boolean | undefined;
|
|
@@ -15065,20 +14954,14 @@ export declare const Envelope: {
|
|
|
15065
14954
|
username?: string | undefined;
|
|
15066
14955
|
avatar?: string | undefined;
|
|
15067
14956
|
display_name?: string | undefined;
|
|
15068
|
-
about_me?: string | undefined;
|
|
15069
14957
|
user_status?: string | undefined;
|
|
15070
14958
|
status?: string | undefined;
|
|
15071
|
-
create_time_second?: number | undefined;
|
|
15072
14959
|
fcm_tokens?: {
|
|
15073
14960
|
device_id?: string | undefined;
|
|
15074
14961
|
token_id?: string | undefined;
|
|
15075
14962
|
platform?: string | undefined;
|
|
15076
14963
|
}[] | undefined;
|
|
15077
|
-
online?: boolean | undefined;
|
|
15078
|
-
is_disabled?: boolean | undefined;
|
|
15079
14964
|
joined_clans?: string[] | undefined;
|
|
15080
|
-
pubkey?: string | undefined;
|
|
15081
|
-
mezon_id?: string | undefined;
|
|
15082
14965
|
app_token?: string | undefined;
|
|
15083
14966
|
app_url?: string | undefined;
|
|
15084
14967
|
is_bot?: boolean | undefined;
|
|
@@ -15088,10 +14971,8 @@ export declare const Envelope: {
|
|
|
15088
14971
|
username?: string | undefined;
|
|
15089
14972
|
avatar?: string | undefined;
|
|
15090
14973
|
display_name?: string | undefined;
|
|
15091
|
-
about_me?: string | undefined;
|
|
15092
14974
|
user_status?: string | undefined;
|
|
15093
14975
|
status?: string | undefined;
|
|
15094
|
-
create_time_second?: number | undefined;
|
|
15095
14976
|
fcm_tokens?: ({
|
|
15096
14977
|
device_id?: string | undefined;
|
|
15097
14978
|
token_id?: string | undefined;
|
|
@@ -15104,39 +14985,29 @@ export declare const Envelope: {
|
|
|
15104
14985
|
device_id?: string | undefined;
|
|
15105
14986
|
token_id?: string | undefined;
|
|
15106
14987
|
platform?: string | undefined;
|
|
15107
|
-
} & { [
|
|
14988
|
+
} & { [K_488 in Exclude<keyof I_1["user_channel_added_event"]["users"][number]["fcm_tokens"][number], keyof FCMTokens>]: never; })[] & { [K_489 in Exclude<keyof I_1["user_channel_added_event"]["users"][number]["fcm_tokens"], keyof {
|
|
15108
14989
|
device_id?: string | undefined;
|
|
15109
14990
|
token_id?: string | undefined;
|
|
15110
14991
|
platform?: string | undefined;
|
|
15111
14992
|
}[]>]: never; }) | undefined;
|
|
15112
|
-
|
|
15113
|
-
is_disabled?: boolean | undefined;
|
|
15114
|
-
joined_clans?: (string[] & string[] & { [K_489 in Exclude<keyof I_1["user_channel_added_event"]["users"][number]["joined_clans"], keyof string[]>]: never; }) | undefined;
|
|
15115
|
-
pubkey?: string | undefined;
|
|
15116
|
-
mezon_id?: string | undefined;
|
|
14993
|
+
joined_clans?: (string[] & string[] & { [K_490 in Exclude<keyof I_1["user_channel_added_event"]["users"][number]["joined_clans"], keyof string[]>]: never; }) | undefined;
|
|
15117
14994
|
app_token?: string | undefined;
|
|
15118
14995
|
app_url?: string | undefined;
|
|
15119
14996
|
is_bot?: boolean | undefined;
|
|
15120
14997
|
voip_token?: string | undefined;
|
|
15121
|
-
} & { [
|
|
14998
|
+
} & { [K_491 in Exclude<keyof I_1["user_channel_added_event"]["users"][number], keyof UserProfileRedis>]: never; })[] & { [K_492 in Exclude<keyof I_1["user_channel_added_event"]["users"], keyof {
|
|
15122
14999
|
user_id?: string | undefined;
|
|
15123
15000
|
username?: string | undefined;
|
|
15124
15001
|
avatar?: string | undefined;
|
|
15125
15002
|
display_name?: string | undefined;
|
|
15126
|
-
about_me?: string | undefined;
|
|
15127
15003
|
user_status?: string | undefined;
|
|
15128
15004
|
status?: string | undefined;
|
|
15129
|
-
create_time_second?: number | undefined;
|
|
15130
15005
|
fcm_tokens?: {
|
|
15131
15006
|
device_id?: string | undefined;
|
|
15132
15007
|
token_id?: string | undefined;
|
|
15133
15008
|
platform?: string | undefined;
|
|
15134
15009
|
}[] | undefined;
|
|
15135
|
-
online?: boolean | undefined;
|
|
15136
|
-
is_disabled?: boolean | undefined;
|
|
15137
15010
|
joined_clans?: string[] | undefined;
|
|
15138
|
-
pubkey?: string | undefined;
|
|
15139
|
-
mezon_id?: string | undefined;
|
|
15140
15011
|
app_token?: string | undefined;
|
|
15141
15012
|
app_url?: string | undefined;
|
|
15142
15013
|
is_bot?: boolean | undefined;
|
|
@@ -15149,20 +15020,14 @@ export declare const Envelope: {
|
|
|
15149
15020
|
username?: string | undefined;
|
|
15150
15021
|
avatar?: string | undefined;
|
|
15151
15022
|
display_name?: string | undefined;
|
|
15152
|
-
about_me?: string | undefined;
|
|
15153
15023
|
user_status?: string | undefined;
|
|
15154
15024
|
status?: string | undefined;
|
|
15155
|
-
create_time_second?: number | undefined;
|
|
15156
15025
|
fcm_tokens?: {
|
|
15157
15026
|
device_id?: string | undefined;
|
|
15158
15027
|
token_id?: string | undefined;
|
|
15159
15028
|
platform?: string | undefined;
|
|
15160
15029
|
}[] | undefined;
|
|
15161
|
-
online?: boolean | undefined;
|
|
15162
|
-
is_disabled?: boolean | undefined;
|
|
15163
15030
|
joined_clans?: string[] | undefined;
|
|
15164
|
-
pubkey?: string | undefined;
|
|
15165
|
-
mezon_id?: string | undefined;
|
|
15166
15031
|
app_token?: string | undefined;
|
|
15167
15032
|
app_url?: string | undefined;
|
|
15168
15033
|
is_bot?: boolean | undefined;
|
|
@@ -15172,10 +15037,8 @@ export declare const Envelope: {
|
|
|
15172
15037
|
username?: string | undefined;
|
|
15173
15038
|
avatar?: string | undefined;
|
|
15174
15039
|
display_name?: string | undefined;
|
|
15175
|
-
about_me?: string | undefined;
|
|
15176
15040
|
user_status?: string | undefined;
|
|
15177
15041
|
status?: string | undefined;
|
|
15178
|
-
create_time_second?: number | undefined;
|
|
15179
15042
|
fcm_tokens?: ({
|
|
15180
15043
|
device_id?: string | undefined;
|
|
15181
15044
|
token_id?: string | undefined;
|
|
@@ -15188,24 +15051,20 @@ export declare const Envelope: {
|
|
|
15188
15051
|
device_id?: string | undefined;
|
|
15189
15052
|
token_id?: string | undefined;
|
|
15190
15053
|
platform?: string | undefined;
|
|
15191
|
-
} & { [
|
|
15054
|
+
} & { [K_493 in Exclude<keyof I_1["user_channel_added_event"]["caller"]["fcm_tokens"][number], keyof FCMTokens>]: never; })[] & { [K_494 in Exclude<keyof I_1["user_channel_added_event"]["caller"]["fcm_tokens"], keyof {
|
|
15192
15055
|
device_id?: string | undefined;
|
|
15193
15056
|
token_id?: string | undefined;
|
|
15194
15057
|
platform?: string | undefined;
|
|
15195
15058
|
}[]>]: never; }) | undefined;
|
|
15196
|
-
|
|
15197
|
-
is_disabled?: boolean | undefined;
|
|
15198
|
-
joined_clans?: (string[] & string[] & { [K_494 in Exclude<keyof I_1["user_channel_added_event"]["caller"]["joined_clans"], keyof string[]>]: never; }) | undefined;
|
|
15199
|
-
pubkey?: string | undefined;
|
|
15200
|
-
mezon_id?: string | undefined;
|
|
15059
|
+
joined_clans?: (string[] & string[] & { [K_495 in Exclude<keyof I_1["user_channel_added_event"]["caller"]["joined_clans"], keyof string[]>]: never; }) | undefined;
|
|
15201
15060
|
app_token?: string | undefined;
|
|
15202
15061
|
app_url?: string | undefined;
|
|
15203
15062
|
is_bot?: boolean | undefined;
|
|
15204
15063
|
voip_token?: string | undefined;
|
|
15205
|
-
} & { [
|
|
15064
|
+
} & { [K_496 in Exclude<keyof I_1["user_channel_added_event"]["caller"], keyof UserProfileRedis>]: never; }) | undefined;
|
|
15206
15065
|
create_time_second?: number | undefined;
|
|
15207
15066
|
active?: number | undefined;
|
|
15208
|
-
} & { [
|
|
15067
|
+
} & { [K_497 in Exclude<keyof I_1["user_channel_added_event"], keyof UserChannelAdded>]: never; }) | undefined;
|
|
15209
15068
|
user_channel_removed_event?: ({
|
|
15210
15069
|
channel_id?: string | undefined;
|
|
15211
15070
|
user_ids?: string[] | undefined;
|
|
@@ -15214,18 +15073,18 @@ export declare const Envelope: {
|
|
|
15214
15073
|
badge_counts?: number[] | undefined;
|
|
15215
15074
|
} & {
|
|
15216
15075
|
channel_id?: string | undefined;
|
|
15217
|
-
user_ids?: (string[] & string[] & { [
|
|
15076
|
+
user_ids?: (string[] & string[] & { [K_498 in Exclude<keyof I_1["user_channel_removed_event"]["user_ids"], keyof string[]>]: never; }) | undefined;
|
|
15218
15077
|
channel_type?: number | undefined;
|
|
15219
15078
|
clan_id?: string | undefined;
|
|
15220
|
-
badge_counts?: (number[] & number[] & { [
|
|
15221
|
-
} & { [
|
|
15079
|
+
badge_counts?: (number[] & number[] & { [K_499 in Exclude<keyof I_1["user_channel_removed_event"]["badge_counts"], keyof number[]>]: never; }) | undefined;
|
|
15080
|
+
} & { [K_500 in Exclude<keyof I_1["user_channel_removed_event"], keyof UserChannelRemoved>]: never; }) | undefined;
|
|
15222
15081
|
user_clan_removed_event?: ({
|
|
15223
15082
|
clan_id?: string | undefined;
|
|
15224
15083
|
user_ids?: string[] | undefined;
|
|
15225
15084
|
} & {
|
|
15226
15085
|
clan_id?: string | undefined;
|
|
15227
|
-
user_ids?: (string[] & string[] & { [
|
|
15228
|
-
} & { [
|
|
15086
|
+
user_ids?: (string[] & string[] & { [K_501 in Exclude<keyof I_1["user_clan_removed_event"]["user_ids"], keyof string[]>]: never; }) | undefined;
|
|
15087
|
+
} & { [K_502 in Exclude<keyof I_1["user_clan_removed_event"], keyof UserClanRemoved>]: never; }) | undefined;
|
|
15229
15088
|
clan_updated_event?: ({
|
|
15230
15089
|
clan_id?: string | undefined;
|
|
15231
15090
|
clan_name?: string | undefined;
|
|
@@ -15252,7 +15111,7 @@ export declare const Envelope: {
|
|
|
15252
15111
|
is_community?: boolean | undefined;
|
|
15253
15112
|
about?: string | undefined;
|
|
15254
15113
|
description?: string | undefined;
|
|
15255
|
-
} & { [
|
|
15114
|
+
} & { [K_503 in Exclude<keyof I_1["clan_updated_event"], keyof ClanUpdatedEvent>]: never; }) | undefined;
|
|
15256
15115
|
clan_profile_updated_event?: ({
|
|
15257
15116
|
user_id?: string | undefined;
|
|
15258
15117
|
clan_nick?: string | undefined;
|
|
@@ -15263,7 +15122,7 @@ export declare const Envelope: {
|
|
|
15263
15122
|
clan_nick?: string | undefined;
|
|
15264
15123
|
clan_avatar?: string | undefined;
|
|
15265
15124
|
clan_id?: string | undefined;
|
|
15266
|
-
} & { [
|
|
15125
|
+
} & { [K_504 in Exclude<keyof I_1["clan_profile_updated_event"], keyof ClanProfileUpdatedEvent>]: never; }) | undefined;
|
|
15267
15126
|
check_name_existed_event?: ({
|
|
15268
15127
|
name?: string | undefined;
|
|
15269
15128
|
condition_id?: string | undefined;
|
|
@@ -15274,7 +15133,7 @@ export declare const Envelope: {
|
|
|
15274
15133
|
condition_id?: string | undefined;
|
|
15275
15134
|
exist?: boolean | undefined;
|
|
15276
15135
|
type?: number | undefined;
|
|
15277
|
-
} & { [
|
|
15136
|
+
} & { [K_505 in Exclude<keyof I_1["check_name_existed_event"], keyof CheckNameExistedEvent>]: never; }) | undefined;
|
|
15278
15137
|
user_profile_updated_event?: ({
|
|
15279
15138
|
user_id?: string | undefined;
|
|
15280
15139
|
display_name?: string | undefined;
|
|
@@ -15291,7 +15150,7 @@ export declare const Envelope: {
|
|
|
15291
15150
|
channel_id?: string | undefined;
|
|
15292
15151
|
clan_id?: string | undefined;
|
|
15293
15152
|
encrypt_private_key?: string | undefined;
|
|
15294
|
-
} & { [
|
|
15153
|
+
} & { [K_506 in Exclude<keyof I_1["user_profile_updated_event"], keyof UserProfileUpdatedEvent>]: never; }) | undefined;
|
|
15295
15154
|
add_clan_user_event?: ({
|
|
15296
15155
|
clan_id?: string | undefined;
|
|
15297
15156
|
user?: {
|
|
@@ -15299,20 +15158,14 @@ export declare const Envelope: {
|
|
|
15299
15158
|
username?: string | undefined;
|
|
15300
15159
|
avatar?: string | undefined;
|
|
15301
15160
|
display_name?: string | undefined;
|
|
15302
|
-
about_me?: string | undefined;
|
|
15303
15161
|
user_status?: string | undefined;
|
|
15304
15162
|
status?: string | undefined;
|
|
15305
|
-
create_time_second?: number | undefined;
|
|
15306
15163
|
fcm_tokens?: {
|
|
15307
15164
|
device_id?: string | undefined;
|
|
15308
15165
|
token_id?: string | undefined;
|
|
15309
15166
|
platform?: string | undefined;
|
|
15310
15167
|
}[] | undefined;
|
|
15311
|
-
online?: boolean | undefined;
|
|
15312
|
-
is_disabled?: boolean | undefined;
|
|
15313
15168
|
joined_clans?: string[] | undefined;
|
|
15314
|
-
pubkey?: string | undefined;
|
|
15315
|
-
mezon_id?: string | undefined;
|
|
15316
15169
|
app_token?: string | undefined;
|
|
15317
15170
|
app_url?: string | undefined;
|
|
15318
15171
|
is_bot?: boolean | undefined;
|
|
@@ -15326,20 +15179,14 @@ export declare const Envelope: {
|
|
|
15326
15179
|
username?: string | undefined;
|
|
15327
15180
|
avatar?: string | undefined;
|
|
15328
15181
|
display_name?: string | undefined;
|
|
15329
|
-
about_me?: string | undefined;
|
|
15330
15182
|
user_status?: string | undefined;
|
|
15331
15183
|
status?: string | undefined;
|
|
15332
|
-
create_time_second?: number | undefined;
|
|
15333
15184
|
fcm_tokens?: {
|
|
15334
15185
|
device_id?: string | undefined;
|
|
15335
15186
|
token_id?: string | undefined;
|
|
15336
15187
|
platform?: string | undefined;
|
|
15337
15188
|
}[] | undefined;
|
|
15338
|
-
online?: boolean | undefined;
|
|
15339
|
-
is_disabled?: boolean | undefined;
|
|
15340
15189
|
joined_clans?: string[] | undefined;
|
|
15341
|
-
pubkey?: string | undefined;
|
|
15342
|
-
mezon_id?: string | undefined;
|
|
15343
15190
|
app_token?: string | undefined;
|
|
15344
15191
|
app_url?: string | undefined;
|
|
15345
15192
|
is_bot?: boolean | undefined;
|
|
@@ -15349,10 +15196,8 @@ export declare const Envelope: {
|
|
|
15349
15196
|
username?: string | undefined;
|
|
15350
15197
|
avatar?: string | undefined;
|
|
15351
15198
|
display_name?: string | undefined;
|
|
15352
|
-
about_me?: string | undefined;
|
|
15353
15199
|
user_status?: string | undefined;
|
|
15354
15200
|
status?: string | undefined;
|
|
15355
|
-
create_time_second?: number | undefined;
|
|
15356
15201
|
fcm_tokens?: ({
|
|
15357
15202
|
device_id?: string | undefined;
|
|
15358
15203
|
token_id?: string | undefined;
|
|
@@ -15365,23 +15210,19 @@ export declare const Envelope: {
|
|
|
15365
15210
|
device_id?: string | undefined;
|
|
15366
15211
|
token_id?: string | undefined;
|
|
15367
15212
|
platform?: string | undefined;
|
|
15368
|
-
} & { [
|
|
15213
|
+
} & { [K_507 in Exclude<keyof I_1["add_clan_user_event"]["user"]["fcm_tokens"][number], keyof FCMTokens>]: never; })[] & { [K_508 in Exclude<keyof I_1["add_clan_user_event"]["user"]["fcm_tokens"], keyof {
|
|
15369
15214
|
device_id?: string | undefined;
|
|
15370
15215
|
token_id?: string | undefined;
|
|
15371
15216
|
platform?: string | undefined;
|
|
15372
15217
|
}[]>]: never; }) | undefined;
|
|
15373
|
-
|
|
15374
|
-
is_disabled?: boolean | undefined;
|
|
15375
|
-
joined_clans?: (string[] & string[] & { [K_508 in Exclude<keyof I_1["add_clan_user_event"]["user"]["joined_clans"], keyof string[]>]: never; }) | undefined;
|
|
15376
|
-
pubkey?: string | undefined;
|
|
15377
|
-
mezon_id?: string | undefined;
|
|
15218
|
+
joined_clans?: (string[] & string[] & { [K_509 in Exclude<keyof I_1["add_clan_user_event"]["user"]["joined_clans"], keyof string[]>]: never; }) | undefined;
|
|
15378
15219
|
app_token?: string | undefined;
|
|
15379
15220
|
app_url?: string | undefined;
|
|
15380
15221
|
is_bot?: boolean | undefined;
|
|
15381
15222
|
voip_token?: string | undefined;
|
|
15382
|
-
} & { [
|
|
15223
|
+
} & { [K_510 in Exclude<keyof I_1["add_clan_user_event"]["user"], keyof UserProfileRedis>]: never; }) | undefined;
|
|
15383
15224
|
invitor?: string | undefined;
|
|
15384
|
-
} & { [
|
|
15225
|
+
} & { [K_511 in Exclude<keyof I_1["add_clan_user_event"], keyof AddClanUserEvent>]: never; }) | undefined;
|
|
15385
15226
|
clan_event_created?: ({
|
|
15386
15227
|
title?: string | undefined;
|
|
15387
15228
|
logo?: string | undefined;
|
|
@@ -15435,8 +15276,8 @@ export declare const Envelope: {
|
|
|
15435
15276
|
external_link?: string | undefined;
|
|
15436
15277
|
creator_id?: string | undefined;
|
|
15437
15278
|
event_id?: string | undefined;
|
|
15438
|
-
} & { [
|
|
15439
|
-
} & { [
|
|
15279
|
+
} & { [K_512 in Exclude<keyof I_1["clan_event_created"]["meet_room"], keyof import("../api/api").GenerateMezonMeetResponse>]: never; }) | undefined;
|
|
15280
|
+
} & { [K_513 in Exclude<keyof I_1["clan_event_created"], keyof CreateEventRequest>]: never; }) | undefined;
|
|
15440
15281
|
role_assign_event?: ({
|
|
15441
15282
|
ClanId?: string | undefined;
|
|
15442
15283
|
role_id?: string | undefined;
|
|
@@ -15445,16 +15286,16 @@ export declare const Envelope: {
|
|
|
15445
15286
|
} & {
|
|
15446
15287
|
ClanId?: string | undefined;
|
|
15447
15288
|
role_id?: string | undefined;
|
|
15448
|
-
user_ids_assigned?: (string[] & string[] & { [
|
|
15449
|
-
user_ids_removed?: (string[] & string[] & { [
|
|
15450
|
-
} & { [
|
|
15289
|
+
user_ids_assigned?: (string[] & string[] & { [K_514 in Exclude<keyof I_1["role_assign_event"]["user_ids_assigned"], keyof string[]>]: never; }) | undefined;
|
|
15290
|
+
user_ids_removed?: (string[] & string[] & { [K_515 in Exclude<keyof I_1["role_assign_event"]["user_ids_removed"], keyof string[]>]: never; }) | undefined;
|
|
15291
|
+
} & { [K_516 in Exclude<keyof I_1["role_assign_event"], keyof RoleAssignedEvent>]: never; }) | undefined;
|
|
15451
15292
|
clan_deleted_event?: ({
|
|
15452
15293
|
clan_id?: string | undefined;
|
|
15453
15294
|
deletor?: string | undefined;
|
|
15454
15295
|
} & {
|
|
15455
15296
|
clan_id?: string | undefined;
|
|
15456
15297
|
deletor?: string | undefined;
|
|
15457
|
-
} & { [
|
|
15298
|
+
} & { [K_517 in Exclude<keyof I_1["clan_deleted_event"], keyof ClanDeletedEvent>]: never; }) | undefined;
|
|
15458
15299
|
give_coffee_event?: ({
|
|
15459
15300
|
sender_id?: string | undefined;
|
|
15460
15301
|
receiver_id?: string | undefined;
|
|
@@ -15469,7 +15310,7 @@ export declare const Envelope: {
|
|
|
15469
15310
|
message_ref_id?: string | undefined;
|
|
15470
15311
|
channel_id?: string | undefined;
|
|
15471
15312
|
clan_id?: string | undefined;
|
|
15472
|
-
} & { [
|
|
15313
|
+
} & { [K_518 in Exclude<keyof I_1["give_coffee_event"], keyof GiveCoffeeEvent>]: never; }) | undefined;
|
|
15473
15314
|
sticker_create_event?: ({
|
|
15474
15315
|
clan_id?: string | undefined;
|
|
15475
15316
|
source?: string | undefined;
|
|
@@ -15488,7 +15329,7 @@ export declare const Envelope: {
|
|
|
15488
15329
|
sticker_id?: string | undefined;
|
|
15489
15330
|
logo?: string | undefined;
|
|
15490
15331
|
clan_name?: string | undefined;
|
|
15491
|
-
} & { [
|
|
15332
|
+
} & { [K_519 in Exclude<keyof I_1["sticker_create_event"], keyof StickerCreateEvent>]: never; }) | undefined;
|
|
15492
15333
|
sticker_update_event?: ({
|
|
15493
15334
|
shortname?: string | undefined;
|
|
15494
15335
|
sticker_id?: string | undefined;
|
|
@@ -15497,14 +15338,14 @@ export declare const Envelope: {
|
|
|
15497
15338
|
shortname?: string | undefined;
|
|
15498
15339
|
sticker_id?: string | undefined;
|
|
15499
15340
|
user_id?: string | undefined;
|
|
15500
|
-
} & { [
|
|
15341
|
+
} & { [K_520 in Exclude<keyof I_1["sticker_update_event"], keyof StickerUpdateEvent>]: never; }) | undefined;
|
|
15501
15342
|
sticker_delete_event?: ({
|
|
15502
15343
|
sticker_id?: string | undefined;
|
|
15503
15344
|
user_id?: string | undefined;
|
|
15504
15345
|
} & {
|
|
15505
15346
|
sticker_id?: string | undefined;
|
|
15506
15347
|
user_id?: string | undefined;
|
|
15507
|
-
} & { [
|
|
15348
|
+
} & { [K_521 in Exclude<keyof I_1["sticker_delete_event"], keyof StickerDeleteEvent>]: never; }) | undefined;
|
|
15508
15349
|
role_event?: ({
|
|
15509
15350
|
role?: {
|
|
15510
15351
|
id?: string | undefined;
|
|
@@ -15642,7 +15483,7 @@ export declare const Envelope: {
|
|
|
15642
15483
|
lang_tag?: string | undefined;
|
|
15643
15484
|
location?: string | undefined;
|
|
15644
15485
|
online?: boolean | undefined;
|
|
15645
|
-
} & { [
|
|
15486
|
+
} & { [K_522 in Exclude<keyof I_1["role_event"]["role"]["role_user_list"]["role_users"][number], keyof import("../api/api").RoleUserList_RoleUser>]: never; })[] & { [K_523 in Exclude<keyof I_1["role_event"]["role"]["role_user_list"]["role_users"], keyof {
|
|
15646
15487
|
id?: string | undefined;
|
|
15647
15488
|
username?: string | undefined;
|
|
15648
15489
|
display_name?: string | undefined;
|
|
@@ -15652,7 +15493,7 @@ export declare const Envelope: {
|
|
|
15652
15493
|
online?: boolean | undefined;
|
|
15653
15494
|
}[]>]: never; }) | undefined;
|
|
15654
15495
|
cursor?: string | undefined;
|
|
15655
|
-
} & { [
|
|
15496
|
+
} & { [K_524 in Exclude<keyof I_1["role_event"]["role"]["role_user_list"], keyof RoleUserList>]: never; }) | undefined;
|
|
15656
15497
|
permission_list?: ({
|
|
15657
15498
|
permissions?: {
|
|
15658
15499
|
id?: string | undefined;
|
|
@@ -15689,7 +15530,7 @@ export declare const Envelope: {
|
|
|
15689
15530
|
active?: number | undefined;
|
|
15690
15531
|
scope?: number | undefined;
|
|
15691
15532
|
level?: number | undefined;
|
|
15692
|
-
} & { [
|
|
15533
|
+
} & { [K_525 in Exclude<keyof I_1["role_event"]["role"]["permission_list"]["permissions"][number], keyof import("../api/api").Permission>]: never; })[] & { [K_526 in Exclude<keyof I_1["role_event"]["role"]["permission_list"]["permissions"], keyof {
|
|
15693
15534
|
id?: string | undefined;
|
|
15694
15535
|
title?: string | undefined;
|
|
15695
15536
|
slug?: string | undefined;
|
|
@@ -15699,19 +15540,19 @@ export declare const Envelope: {
|
|
|
15699
15540
|
level?: number | undefined;
|
|
15700
15541
|
}[]>]: never; }) | undefined;
|
|
15701
15542
|
max_level_permission?: number | undefined;
|
|
15702
|
-
} & { [
|
|
15543
|
+
} & { [K_527 in Exclude<keyof I_1["role_event"]["role"]["permission_list"], keyof PermissionList>]: never; }) | undefined;
|
|
15703
15544
|
role_channel_active?: number | undefined;
|
|
15704
|
-
channel_ids?: (string[] & string[] & { [
|
|
15545
|
+
channel_ids?: (string[] & string[] & { [K_528 in Exclude<keyof I_1["role_event"]["role"]["channel_ids"], keyof string[]>]: never; }) | undefined;
|
|
15705
15546
|
max_level_permission?: number | undefined;
|
|
15706
15547
|
order_role?: number | undefined;
|
|
15707
|
-
} & { [
|
|
15548
|
+
} & { [K_529 in Exclude<keyof I_1["role_event"]["role"], keyof Role>]: never; }) | undefined;
|
|
15708
15549
|
status?: number | undefined;
|
|
15709
15550
|
user_id?: string | undefined;
|
|
15710
|
-
user_add_ids?: (string[] & string[] & { [
|
|
15711
|
-
user_remove_ids?: (string[] & string[] & { [
|
|
15712
|
-
active_permission_ids?: (string[] & string[] & { [
|
|
15713
|
-
remove_permission_ids?: (string[] & string[] & { [
|
|
15714
|
-
} & { [
|
|
15551
|
+
user_add_ids?: (string[] & string[] & { [K_530 in Exclude<keyof I_1["role_event"]["user_add_ids"], keyof string[]>]: never; }) | undefined;
|
|
15552
|
+
user_remove_ids?: (string[] & string[] & { [K_531 in Exclude<keyof I_1["role_event"]["user_remove_ids"], keyof string[]>]: never; }) | undefined;
|
|
15553
|
+
active_permission_ids?: (string[] & string[] & { [K_532 in Exclude<keyof I_1["role_event"]["active_permission_ids"], keyof string[]>]: never; }) | undefined;
|
|
15554
|
+
remove_permission_ids?: (string[] & string[] & { [K_533 in Exclude<keyof I_1["role_event"]["remove_permission_ids"], keyof string[]>]: never; }) | undefined;
|
|
15555
|
+
} & { [K_534 in Exclude<keyof I_1["role_event"], keyof RoleEvent>]: never; }) | undefined;
|
|
15715
15556
|
event_emoji?: ({
|
|
15716
15557
|
id?: string | undefined;
|
|
15717
15558
|
clan_id?: string | undefined;
|
|
@@ -15734,7 +15575,7 @@ export declare const Envelope: {
|
|
|
15734
15575
|
logo?: string | undefined;
|
|
15735
15576
|
clan_name?: string | undefined;
|
|
15736
15577
|
is_for_sale?: boolean | undefined;
|
|
15737
|
-
} & { [
|
|
15578
|
+
} & { [K_535 in Exclude<keyof I_1["event_emoji"], keyof EventEmoji>]: never; }) | undefined;
|
|
15738
15579
|
streaming_joined_event?: ({
|
|
15739
15580
|
clan_id?: string | undefined;
|
|
15740
15581
|
clan_name?: string | undefined;
|
|
@@ -15751,7 +15592,7 @@ export declare const Envelope: {
|
|
|
15751
15592
|
user_id?: string | undefined;
|
|
15752
15593
|
streaming_channel_label?: string | undefined;
|
|
15753
15594
|
streaming_channel_id?: string | undefined;
|
|
15754
|
-
} & { [
|
|
15595
|
+
} & { [K_536 in Exclude<keyof I_1["streaming_joined_event"], keyof StreamingJoinedEvent>]: never; }) | undefined;
|
|
15755
15596
|
streaming_leaved_event?: ({
|
|
15756
15597
|
id?: string | undefined;
|
|
15757
15598
|
clan_id?: string | undefined;
|
|
@@ -15762,7 +15603,7 @@ export declare const Envelope: {
|
|
|
15762
15603
|
clan_id?: string | undefined;
|
|
15763
15604
|
streaming_channel_id?: string | undefined;
|
|
15764
15605
|
streaming_user_id?: string | undefined;
|
|
15765
|
-
} & { [
|
|
15606
|
+
} & { [K_537 in Exclude<keyof I_1["streaming_leaved_event"], keyof StreamingLeavedEvent>]: never; }) | undefined;
|
|
15766
15607
|
streaming_started_event?: ({
|
|
15767
15608
|
clan_id?: string | undefined;
|
|
15768
15609
|
channel_id?: string | undefined;
|
|
@@ -15773,14 +15614,14 @@ export declare const Envelope: {
|
|
|
15773
15614
|
channel_id?: string | undefined;
|
|
15774
15615
|
streaming_url?: string | undefined;
|
|
15775
15616
|
is_streaming?: boolean | undefined;
|
|
15776
|
-
} & { [
|
|
15617
|
+
} & { [K_538 in Exclude<keyof I_1["streaming_started_event"], keyof StreamingStartedEvent>]: never; }) | undefined;
|
|
15777
15618
|
streaming_ended_event?: ({
|
|
15778
15619
|
clan_id?: string | undefined;
|
|
15779
15620
|
channel_id?: string | undefined;
|
|
15780
15621
|
} & {
|
|
15781
15622
|
clan_id?: string | undefined;
|
|
15782
15623
|
channel_id?: string | undefined;
|
|
15783
|
-
} & { [
|
|
15624
|
+
} & { [K_539 in Exclude<keyof I_1["streaming_ended_event"], keyof StreamingEndedEvent>]: never; }) | undefined;
|
|
15784
15625
|
permission_set_event?: ({
|
|
15785
15626
|
caller?: string | undefined;
|
|
15786
15627
|
role_id?: string | undefined;
|
|
@@ -15808,12 +15649,12 @@ export declare const Envelope: {
|
|
|
15808
15649
|
permission_id?: string | undefined;
|
|
15809
15650
|
slug?: string | undefined;
|
|
15810
15651
|
type?: number | undefined;
|
|
15811
|
-
} & { [
|
|
15652
|
+
} & { [K_540 in Exclude<keyof I_1["permission_set_event"]["permission_updates"][number], keyof PermissionUpdate>]: never; })[] & { [K_541 in Exclude<keyof I_1["permission_set_event"]["permission_updates"], keyof {
|
|
15812
15653
|
permission_id?: string | undefined;
|
|
15813
15654
|
slug?: string | undefined;
|
|
15814
15655
|
type?: number | undefined;
|
|
15815
15656
|
}[]>]: never; }) | undefined;
|
|
15816
|
-
} & { [
|
|
15657
|
+
} & { [K_542 in Exclude<keyof I_1["permission_set_event"], keyof PermissionSetEvent>]: never; }) | undefined;
|
|
15817
15658
|
permission_changed_event?: ({
|
|
15818
15659
|
user_id?: string | undefined;
|
|
15819
15660
|
channel_id?: string | undefined;
|
|
@@ -15847,7 +15688,7 @@ export declare const Envelope: {
|
|
|
15847
15688
|
permission_id?: string | undefined;
|
|
15848
15689
|
slug?: string | undefined;
|
|
15849
15690
|
type?: number | undefined;
|
|
15850
|
-
} & { [
|
|
15691
|
+
} & { [K_543 in Exclude<keyof I_1["permission_changed_event"]["add_permissions"][number], keyof PermissionUpdate>]: never; })[] & { [K_544 in Exclude<keyof I_1["permission_changed_event"]["add_permissions"], keyof {
|
|
15851
15692
|
permission_id?: string | undefined;
|
|
15852
15693
|
slug?: string | undefined;
|
|
15853
15694
|
type?: number | undefined;
|
|
@@ -15864,7 +15705,7 @@ export declare const Envelope: {
|
|
|
15864
15705
|
permission_id?: string | undefined;
|
|
15865
15706
|
slug?: string | undefined;
|
|
15866
15707
|
type?: number | undefined;
|
|
15867
|
-
} & { [
|
|
15708
|
+
} & { [K_545 in Exclude<keyof I_1["permission_changed_event"]["remove_permissions"][number], keyof PermissionUpdate>]: never; })[] & { [K_546 in Exclude<keyof I_1["permission_changed_event"]["remove_permissions"], keyof {
|
|
15868
15709
|
permission_id?: string | undefined;
|
|
15869
15710
|
slug?: string | undefined;
|
|
15870
15711
|
type?: number | undefined;
|
|
@@ -15881,12 +15722,12 @@ export declare const Envelope: {
|
|
|
15881
15722
|
permission_id?: string | undefined;
|
|
15882
15723
|
slug?: string | undefined;
|
|
15883
15724
|
type?: number | undefined;
|
|
15884
|
-
} & { [
|
|
15725
|
+
} & { [K_547 in Exclude<keyof I_1["permission_changed_event"]["default_permissions"][number], keyof PermissionUpdate>]: never; })[] & { [K_548 in Exclude<keyof I_1["permission_changed_event"]["default_permissions"], keyof {
|
|
15885
15726
|
permission_id?: string | undefined;
|
|
15886
15727
|
slug?: string | undefined;
|
|
15887
15728
|
type?: number | undefined;
|
|
15888
15729
|
}[]>]: never; }) | undefined;
|
|
15889
|
-
} & { [
|
|
15730
|
+
} & { [K_549 in Exclude<keyof I_1["permission_changed_event"], keyof PermissionChangedEvent>]: never; }) | undefined;
|
|
15890
15731
|
token_sent_event?: ({
|
|
15891
15732
|
sender_id?: string | undefined;
|
|
15892
15733
|
sender_name?: string | undefined;
|
|
@@ -15903,7 +15744,7 @@ export declare const Envelope: {
|
|
|
15903
15744
|
note?: string | undefined;
|
|
15904
15745
|
extra_attribute?: string | undefined;
|
|
15905
15746
|
transaction_id?: string | undefined;
|
|
15906
|
-
} & { [
|
|
15747
|
+
} & { [K_550 in Exclude<keyof I_1["token_sent_event"], keyof TokenSentEvent>]: never; }) | undefined;
|
|
15907
15748
|
message_button_clicked?: ({
|
|
15908
15749
|
message_id?: string | undefined;
|
|
15909
15750
|
channel_id?: string | undefined;
|
|
@@ -15918,7 +15759,7 @@ export declare const Envelope: {
|
|
|
15918
15759
|
sender_id?: string | undefined;
|
|
15919
15760
|
user_id?: string | undefined;
|
|
15920
15761
|
extra_data?: string | undefined;
|
|
15921
|
-
} & { [
|
|
15762
|
+
} & { [K_551 in Exclude<keyof I_1["message_button_clicked"], keyof MessageButtonClicked>]: never; }) | undefined;
|
|
15922
15763
|
unmute_event?: ({
|
|
15923
15764
|
channel_id?: string | undefined;
|
|
15924
15765
|
category_id?: string | undefined;
|
|
@@ -15927,7 +15768,7 @@ export declare const Envelope: {
|
|
|
15927
15768
|
channel_id?: string | undefined;
|
|
15928
15769
|
category_id?: string | undefined;
|
|
15929
15770
|
clan_id?: string | undefined;
|
|
15930
|
-
} & { [
|
|
15771
|
+
} & { [K_552 in Exclude<keyof I_1["unmute_event"], keyof UnmuteEvent>]: never; }) | undefined;
|
|
15931
15772
|
webrtc_signaling_fwd?: ({
|
|
15932
15773
|
receiver_id?: string | undefined;
|
|
15933
15774
|
data_type?: number | undefined;
|
|
@@ -15940,7 +15781,7 @@ export declare const Envelope: {
|
|
|
15940
15781
|
json_data?: string | undefined;
|
|
15941
15782
|
channel_id?: string | undefined;
|
|
15942
15783
|
caller_id?: string | undefined;
|
|
15943
|
-
} & { [
|
|
15784
|
+
} & { [K_553 in Exclude<keyof I_1["webrtc_signaling_fwd"], keyof WebrtcSignalingFwd>]: never; }) | undefined;
|
|
15944
15785
|
list_activity?: ({
|
|
15945
15786
|
acts?: {
|
|
15946
15787
|
user_id?: string | undefined;
|
|
@@ -15980,7 +15821,7 @@ export declare const Envelope: {
|
|
|
15980
15821
|
end_time?: Date | undefined;
|
|
15981
15822
|
application_id?: string | undefined;
|
|
15982
15823
|
status?: number | undefined;
|
|
15983
|
-
} & { [
|
|
15824
|
+
} & { [K_554 in Exclude<keyof I_1["list_activity"]["acts"][number], keyof UserActivity>]: never; })[] & { [K_555 in Exclude<keyof I_1["list_activity"]["acts"], keyof {
|
|
15984
15825
|
user_id?: string | undefined;
|
|
15985
15826
|
activity_name?: string | undefined;
|
|
15986
15827
|
activity_type?: number | undefined;
|
|
@@ -15990,7 +15831,7 @@ export declare const Envelope: {
|
|
|
15990
15831
|
application_id?: string | undefined;
|
|
15991
15832
|
status?: number | undefined;
|
|
15992
15833
|
}[]>]: never; }) | undefined;
|
|
15993
|
-
} & { [
|
|
15834
|
+
} & { [K_556 in Exclude<keyof I_1["list_activity"], "acts">]: never; }) | undefined;
|
|
15994
15835
|
dropdown_box_selected?: ({
|
|
15995
15836
|
message_id?: string | undefined;
|
|
15996
15837
|
channel_id?: string | undefined;
|
|
@@ -16004,8 +15845,8 @@ export declare const Envelope: {
|
|
|
16004
15845
|
selectbox_id?: string | undefined;
|
|
16005
15846
|
sender_id?: string | undefined;
|
|
16006
15847
|
user_id?: string | undefined;
|
|
16007
|
-
values?: (string[] & string[] & { [
|
|
16008
|
-
} & { [
|
|
15848
|
+
values?: (string[] & string[] & { [K_557 in Exclude<keyof I_1["dropdown_box_selected"]["values"], keyof string[]>]: never; }) | undefined;
|
|
15849
|
+
} & { [K_558 in Exclude<keyof I_1["dropdown_box_selected"], keyof DropdownBoxSelected>]: never; }) | undefined;
|
|
16009
15850
|
incoming_call_push?: ({
|
|
16010
15851
|
receiver_id?: string | undefined;
|
|
16011
15852
|
json_data?: string | undefined;
|
|
@@ -16016,7 +15857,7 @@ export declare const Envelope: {
|
|
|
16016
15857
|
json_data?: string | undefined;
|
|
16017
15858
|
channel_id?: string | undefined;
|
|
16018
15859
|
caller_id?: string | undefined;
|
|
16019
|
-
} & { [
|
|
15860
|
+
} & { [K_559 in Exclude<keyof I_1["incoming_call_push"], keyof IncomingCallPush>]: never; }) | undefined;
|
|
16020
15861
|
sd_topic_event?: ({
|
|
16021
15862
|
id?: string | undefined;
|
|
16022
15863
|
clan_id?: string | undefined;
|
|
@@ -16088,8 +15929,8 @@ export declare const Envelope: {
|
|
|
16088
15929
|
reference?: string | undefined;
|
|
16089
15930
|
mention?: string | undefined;
|
|
16090
15931
|
reaction?: string | undefined;
|
|
16091
|
-
repliers?: (string[] & string[] & { [
|
|
16092
|
-
} & { [
|
|
15932
|
+
repliers?: (string[] & string[] & { [K_560 in Exclude<keyof I_1["sd_topic_event"]["last_sent_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
15933
|
+
} & { [K_561 in Exclude<keyof I_1["sd_topic_event"]["last_sent_message"], keyof ChannelMessageHeader>]: never; }) | undefined;
|
|
16093
15934
|
message?: ({
|
|
16094
15935
|
clan_id?: string | undefined;
|
|
16095
15936
|
channel_id?: string | undefined;
|
|
@@ -16146,9 +15987,9 @@ export declare const Envelope: {
|
|
|
16146
15987
|
hide_editted?: boolean | undefined;
|
|
16147
15988
|
is_public?: boolean | undefined;
|
|
16148
15989
|
topic_id?: string | undefined;
|
|
16149
|
-
} & { [
|
|
16150
|
-
} & { [
|
|
16151
|
-
follow_event?: ({} & {} & { [
|
|
15990
|
+
} & { [K_562 in Exclude<keyof I_1["sd_topic_event"]["message"], keyof ChannelMessage>]: never; }) | undefined;
|
|
15991
|
+
} & { [K_563 in Exclude<keyof I_1["sd_topic_event"], keyof SdTopicEvent>]: never; }) | undefined;
|
|
15992
|
+
follow_event?: ({} & {} & { [K_564 in Exclude<keyof I_1["follow_event"], never>]: never; }) | undefined;
|
|
16152
15993
|
channel_app_event?: ({
|
|
16153
15994
|
user_id?: string | undefined;
|
|
16154
15995
|
username?: string | undefined;
|
|
@@ -16161,19 +16002,19 @@ export declare const Envelope: {
|
|
|
16161
16002
|
clan_id?: string | undefined;
|
|
16162
16003
|
channel_id?: string | undefined;
|
|
16163
16004
|
action?: number | undefined;
|
|
16164
|
-
} & { [
|
|
16005
|
+
} & { [K_565 in Exclude<keyof I_1["channel_app_event"], keyof ChannelAppEvent>]: never; }) | undefined;
|
|
16165
16006
|
user_status_event?: ({
|
|
16166
16007
|
user_id?: string | undefined;
|
|
16167
16008
|
custom_status?: string | undefined;
|
|
16168
16009
|
} & {
|
|
16169
16010
|
user_id?: string | undefined;
|
|
16170
16011
|
custom_status?: string | undefined;
|
|
16171
|
-
} & { [
|
|
16012
|
+
} & { [K_566 in Exclude<keyof I_1["user_status_event"], keyof UserStatusEvent>]: never; }) | undefined;
|
|
16172
16013
|
remove_friend?: ({
|
|
16173
16014
|
user_id?: string | undefined;
|
|
16174
16015
|
} & {
|
|
16175
16016
|
user_id?: string | undefined;
|
|
16176
|
-
} & { [
|
|
16017
|
+
} & { [K_567 in Exclude<keyof I_1["remove_friend"], "user_id">]: never; }) | undefined;
|
|
16177
16018
|
webhook_event?: ({
|
|
16178
16019
|
id?: string | undefined;
|
|
16179
16020
|
webhook_name?: string | undefined;
|
|
@@ -16198,7 +16039,7 @@ export declare const Envelope: {
|
|
|
16198
16039
|
avatar?: string | undefined;
|
|
16199
16040
|
status?: number | undefined;
|
|
16200
16041
|
clan_id?: string | undefined;
|
|
16201
|
-
} & { [
|
|
16042
|
+
} & { [K_568 in Exclude<keyof I_1["webhook_event"], keyof Webhook>]: never; }) | undefined;
|
|
16202
16043
|
noti_user_channel?: ({
|
|
16203
16044
|
id?: string | undefined;
|
|
16204
16045
|
notification_setting_type?: number | undefined;
|
|
@@ -16211,7 +16052,7 @@ export declare const Envelope: {
|
|
|
16211
16052
|
time_mute?: Date | undefined;
|
|
16212
16053
|
active?: number | undefined;
|
|
16213
16054
|
channel_id?: string | undefined;
|
|
16214
|
-
} & { [
|
|
16055
|
+
} & { [K_569 in Exclude<keyof I_1["noti_user_channel"], keyof NotificationUserChannel>]: never; }) | undefined;
|
|
16215
16056
|
join_channel_app_data?: ({
|
|
16216
16057
|
user_id?: string | undefined;
|
|
16217
16058
|
username?: string | undefined;
|
|
@@ -16220,7 +16061,7 @@ export declare const Envelope: {
|
|
|
16220
16061
|
user_id?: string | undefined;
|
|
16221
16062
|
username?: string | undefined;
|
|
16222
16063
|
hash?: string | undefined;
|
|
16223
|
-
} & { [
|
|
16064
|
+
} & { [K_570 in Exclude<keyof I_1["join_channel_app_data"], keyof JoinChannelAppData>]: never; }) | undefined;
|
|
16224
16065
|
canvas_event?: ({
|
|
16225
16066
|
id?: string | undefined;
|
|
16226
16067
|
title?: string | undefined;
|
|
@@ -16239,7 +16080,7 @@ export declare const Envelope: {
|
|
|
16239
16080
|
is_default?: boolean | undefined;
|
|
16240
16081
|
channel_id?: string | undefined;
|
|
16241
16082
|
status?: number | undefined;
|
|
16242
|
-
} & { [
|
|
16083
|
+
} & { [K_571 in Exclude<keyof I_1["canvas_event"], keyof ChannelCanvas>]: never; }) | undefined;
|
|
16243
16084
|
unpin_message_event?: ({
|
|
16244
16085
|
id?: string | undefined;
|
|
16245
16086
|
message_id?: string | undefined;
|
|
@@ -16250,7 +16091,7 @@ export declare const Envelope: {
|
|
|
16250
16091
|
message_id?: string | undefined;
|
|
16251
16092
|
channel_id?: string | undefined;
|
|
16252
16093
|
clan_id?: string | undefined;
|
|
16253
|
-
} & { [
|
|
16094
|
+
} & { [K_572 in Exclude<keyof I_1["unpin_message_event"], keyof UnpinMessageEvent>]: never; }) | undefined;
|
|
16254
16095
|
category_event?: ({
|
|
16255
16096
|
creator_id?: string | undefined;
|
|
16256
16097
|
clan_id?: string | undefined;
|
|
@@ -16263,7 +16104,7 @@ export declare const Envelope: {
|
|
|
16263
16104
|
category_name?: string | undefined;
|
|
16264
16105
|
id?: string | undefined;
|
|
16265
16106
|
status?: number | undefined;
|
|
16266
|
-
} & { [
|
|
16107
|
+
} & { [K_573 in Exclude<keyof I_1["category_event"], keyof CategoryEvent>]: never; }) | undefined;
|
|
16267
16108
|
handle_participant_meet_state_event?: ({
|
|
16268
16109
|
clan_id?: string | undefined;
|
|
16269
16110
|
channel_id?: string | undefined;
|
|
@@ -16276,12 +16117,12 @@ export declare const Envelope: {
|
|
|
16276
16117
|
display_name?: string | undefined;
|
|
16277
16118
|
state?: number | undefined;
|
|
16278
16119
|
room_name?: string | undefined;
|
|
16279
|
-
} & { [
|
|
16120
|
+
} & { [K_574 in Exclude<keyof I_1["handle_participant_meet_state_event"], keyof HandleParticipantMeetStateEvent>]: never; }) | undefined;
|
|
16280
16121
|
delete_account_event?: ({
|
|
16281
16122
|
user_id?: string | undefined;
|
|
16282
16123
|
} & {
|
|
16283
16124
|
user_id?: string | undefined;
|
|
16284
|
-
} & { [
|
|
16125
|
+
} & { [K_575 in Exclude<keyof I_1["delete_account_event"], "user_id">]: never; }) | undefined;
|
|
16285
16126
|
ephemeral_message_send?: ({
|
|
16286
16127
|
message?: {
|
|
16287
16128
|
clan_id?: string | undefined;
|
|
@@ -16403,7 +16244,7 @@ export declare const Envelope: {
|
|
|
16403
16244
|
create_time?: Date | undefined;
|
|
16404
16245
|
s?: number | undefined;
|
|
16405
16246
|
e?: number | undefined;
|
|
16406
|
-
} & { [
|
|
16247
|
+
} & { [K_576 in Exclude<keyof I_1["ephemeral_message_send"]["message"]["mentions"][number], keyof MessageMention>]: never; })[] & { [K_577 in Exclude<keyof I_1["ephemeral_message_send"]["message"]["mentions"], keyof {
|
|
16407
16248
|
id?: string | undefined;
|
|
16408
16249
|
user_id?: string | undefined;
|
|
16409
16250
|
username?: string | undefined;
|
|
@@ -16437,7 +16278,7 @@ export declare const Envelope: {
|
|
|
16437
16278
|
width?: number | undefined;
|
|
16438
16279
|
height?: number | undefined;
|
|
16439
16280
|
thumbnail?: string | undefined;
|
|
16440
|
-
} & { [
|
|
16281
|
+
} & { [K_578 in Exclude<keyof I_1["ephemeral_message_send"]["message"]["attachments"][number], keyof MessageAttachment>]: never; })[] & { [K_579 in Exclude<keyof I_1["ephemeral_message_send"]["message"]["attachments"], keyof {
|
|
16441
16282
|
filename?: string | undefined;
|
|
16442
16283
|
size?: number | undefined;
|
|
16443
16284
|
url?: string | undefined;
|
|
@@ -16479,7 +16320,7 @@ export declare const Envelope: {
|
|
|
16479
16320
|
mesages_sender_avatar?: string | undefined;
|
|
16480
16321
|
message_sender_clan_nick?: string | undefined;
|
|
16481
16322
|
message_sender_display_name?: string | undefined;
|
|
16482
|
-
} & { [
|
|
16323
|
+
} & { [K_580 in Exclude<keyof I_1["ephemeral_message_send"]["message"]["references"][number], keyof MessageRef>]: never; })[] & { [K_581 in Exclude<keyof I_1["ephemeral_message_send"]["message"]["references"], keyof {
|
|
16483
16324
|
message_id?: string | undefined;
|
|
16484
16325
|
message_ref_id?: string | undefined;
|
|
16485
16326
|
content?: string | undefined;
|
|
@@ -16499,25 +16340,25 @@ export declare const Envelope: {
|
|
|
16499
16340
|
code?: number | undefined;
|
|
16500
16341
|
topic_id?: string | undefined;
|
|
16501
16342
|
id?: string | undefined;
|
|
16502
|
-
} & { [
|
|
16343
|
+
} & { [K_582 in Exclude<keyof I_1["ephemeral_message_send"]["message"], keyof ChannelMessageSend>]: never; }) | undefined;
|
|
16503
16344
|
receiver_id?: string | undefined;
|
|
16504
|
-
} & { [
|
|
16345
|
+
} & { [K_583 in Exclude<keyof I_1["ephemeral_message_send"], keyof EphemeralMessageSend>]: never; }) | undefined;
|
|
16505
16346
|
block_friend?: ({
|
|
16506
16347
|
user_id?: string | undefined;
|
|
16507
16348
|
} & {
|
|
16508
16349
|
user_id?: string | undefined;
|
|
16509
|
-
} & { [
|
|
16350
|
+
} & { [K_584 in Exclude<keyof I_1["block_friend"], "user_id">]: never; }) | undefined;
|
|
16510
16351
|
voice_reaction_send?: ({
|
|
16511
16352
|
emojis?: string[] | undefined;
|
|
16512
16353
|
channel_id?: string | undefined;
|
|
16513
16354
|
sender_id?: string | undefined;
|
|
16514
16355
|
media_type?: number | undefined;
|
|
16515
16356
|
} & {
|
|
16516
|
-
emojis?: (string[] & string[] & { [
|
|
16357
|
+
emojis?: (string[] & string[] & { [K_585 in Exclude<keyof I_1["voice_reaction_send"]["emojis"], keyof string[]>]: never; }) | undefined;
|
|
16517
16358
|
channel_id?: string | undefined;
|
|
16518
16359
|
sender_id?: string | undefined;
|
|
16519
16360
|
media_type?: number | undefined;
|
|
16520
|
-
} & { [
|
|
16361
|
+
} & { [K_586 in Exclude<keyof I_1["voice_reaction_send"], keyof VoiceReactionSend>]: never; }) | undefined;
|
|
16521
16362
|
mark_as_read?: ({
|
|
16522
16363
|
channel_id?: string | undefined;
|
|
16523
16364
|
category_id?: string | undefined;
|
|
@@ -16526,7 +16367,7 @@ export declare const Envelope: {
|
|
|
16526
16367
|
channel_id?: string | undefined;
|
|
16527
16368
|
category_id?: string | undefined;
|
|
16528
16369
|
clan_id?: string | undefined;
|
|
16529
|
-
} & { [
|
|
16370
|
+
} & { [K_587 in Exclude<keyof I_1["mark_as_read"], keyof MarkAsRead>]: never; }) | undefined;
|
|
16530
16371
|
list_data_socket?: ({
|
|
16531
16372
|
api_name?: string | undefined;
|
|
16532
16373
|
list_clan_req?: {
|
|
@@ -17404,7 +17245,7 @@ export declare const Envelope: {
|
|
|
17404
17245
|
limit?: number | undefined;
|
|
17405
17246
|
state?: number | undefined;
|
|
17406
17247
|
cursor?: string | undefined;
|
|
17407
|
-
} & { [
|
|
17248
|
+
} & { [K_588 in Exclude<keyof I_1["list_data_socket"]["list_clan_req"], keyof ListClanDescRequest>]: never; }) | undefined;
|
|
17408
17249
|
clan_desc_list?: ({
|
|
17409
17250
|
clandesc?: {
|
|
17410
17251
|
creator_id?: string | undefined;
|
|
@@ -17484,7 +17325,7 @@ export declare const Envelope: {
|
|
|
17484
17325
|
short_url?: string | undefined;
|
|
17485
17326
|
prevent_anonymous?: boolean | undefined;
|
|
17486
17327
|
has_unread_message?: boolean | undefined;
|
|
17487
|
-
} & { [
|
|
17328
|
+
} & { [K_589 in Exclude<keyof I_1["list_data_socket"]["clan_desc_list"]["clandesc"][number], keyof import("../api/api").ClanDesc>]: never; })[] & { [K_590 in Exclude<keyof I_1["list_data_socket"]["clan_desc_list"]["clandesc"], keyof {
|
|
17488
17329
|
creator_id?: string | undefined;
|
|
17489
17330
|
clan_name?: string | undefined;
|
|
17490
17331
|
logo?: string | undefined;
|
|
@@ -17504,7 +17345,7 @@ export declare const Envelope: {
|
|
|
17504
17345
|
prevent_anonymous?: boolean | undefined;
|
|
17505
17346
|
has_unread_message?: boolean | undefined;
|
|
17506
17347
|
}[]>]: never; }) | undefined;
|
|
17507
|
-
} & { [
|
|
17348
|
+
} & { [K_591 in Exclude<keyof I_1["list_data_socket"]["clan_desc_list"], "clandesc">]: never; }) | undefined;
|
|
17508
17349
|
list_thread_req?: ({
|
|
17509
17350
|
limit?: number | undefined;
|
|
17510
17351
|
state?: number | undefined;
|
|
@@ -17519,7 +17360,7 @@ export declare const Envelope: {
|
|
|
17519
17360
|
channel_id?: string | undefined;
|
|
17520
17361
|
thread_id?: string | undefined;
|
|
17521
17362
|
page?: number | undefined;
|
|
17522
|
-
} & { [
|
|
17363
|
+
} & { [K_592 in Exclude<keyof I_1["list_data_socket"]["list_thread_req"], keyof ListThreadRequest>]: never; }) | undefined;
|
|
17523
17364
|
channel_desc_list?: ({
|
|
17524
17365
|
channeldesc?: {
|
|
17525
17366
|
clan_id?: string | undefined;
|
|
@@ -17693,8 +17534,8 @@ export declare const Envelope: {
|
|
|
17693
17534
|
creator_id?: string | undefined;
|
|
17694
17535
|
channel_label?: string | undefined;
|
|
17695
17536
|
channel_private?: number | undefined;
|
|
17696
|
-
avatars?: (string[] & string[] & { [
|
|
17697
|
-
user_ids?: (string[] & string[] & { [
|
|
17537
|
+
avatars?: (string[] & string[] & { [K_593 in Exclude<keyof I_1["list_data_socket"]["channel_desc_list"]["channeldesc"][number]["avatars"], keyof string[]>]: never; }) | undefined;
|
|
17538
|
+
user_ids?: (string[] & string[] & { [K_594 in Exclude<keyof I_1["list_data_socket"]["channel_desc_list"]["channeldesc"][number]["user_ids"], keyof string[]>]: never; }) | undefined;
|
|
17698
17539
|
last_sent_message?: ({
|
|
17699
17540
|
id?: string | undefined;
|
|
17700
17541
|
timestamp_seconds?: number | undefined;
|
|
@@ -17714,8 +17555,8 @@ export declare const Envelope: {
|
|
|
17714
17555
|
reference?: string | undefined;
|
|
17715
17556
|
mention?: string | undefined;
|
|
17716
17557
|
reaction?: string | undefined;
|
|
17717
|
-
repliers?: (string[] & string[] & { [
|
|
17718
|
-
} & { [
|
|
17558
|
+
repliers?: (string[] & string[] & { [K_595 in Exclude<keyof I_1["list_data_socket"]["channel_desc_list"]["channeldesc"][number]["last_sent_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
17559
|
+
} & { [K_596 in Exclude<keyof I_1["list_data_socket"]["channel_desc_list"]["channeldesc"][number]["last_sent_message"], keyof ChannelMessageHeader>]: never; }) | undefined;
|
|
17719
17560
|
last_seen_message?: ({
|
|
17720
17561
|
id?: string | undefined;
|
|
17721
17562
|
timestamp_seconds?: number | undefined;
|
|
@@ -17735,18 +17576,18 @@ export declare const Envelope: {
|
|
|
17735
17576
|
reference?: string | undefined;
|
|
17736
17577
|
mention?: string | undefined;
|
|
17737
17578
|
reaction?: string | undefined;
|
|
17738
|
-
repliers?: (string[] & string[] & { [
|
|
17739
|
-
} & { [
|
|
17740
|
-
onlines?: (boolean[] & boolean[] & { [
|
|
17579
|
+
repliers?: (string[] & string[] & { [K_597 in Exclude<keyof I_1["list_data_socket"]["channel_desc_list"]["channeldesc"][number]["last_seen_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
17580
|
+
} & { [K_598 in Exclude<keyof I_1["list_data_socket"]["channel_desc_list"]["channeldesc"][number]["last_seen_message"], keyof ChannelMessageHeader>]: never; }) | undefined;
|
|
17581
|
+
onlines?: (boolean[] & boolean[] & { [K_599 in Exclude<keyof I_1["list_data_socket"]["channel_desc_list"]["channeldesc"][number]["onlines"], keyof boolean[]>]: never; }) | undefined;
|
|
17741
17582
|
meeting_code?: string | undefined;
|
|
17742
17583
|
count_mess_unread?: number | undefined;
|
|
17743
17584
|
active?: number | undefined;
|
|
17744
17585
|
last_pin_message?: string | undefined;
|
|
17745
|
-
usernames?: (string[] & string[] & { [
|
|
17586
|
+
usernames?: (string[] & string[] & { [K_600 in Exclude<keyof I_1["list_data_socket"]["channel_desc_list"]["channeldesc"][number]["usernames"], keyof string[]>]: never; }) | undefined;
|
|
17746
17587
|
creator_name?: string | undefined;
|
|
17747
17588
|
create_time_seconds?: number | undefined;
|
|
17748
17589
|
update_time_seconds?: number | undefined;
|
|
17749
|
-
display_names?: (string[] & string[] & { [
|
|
17590
|
+
display_names?: (string[] & string[] & { [K_601 in Exclude<keyof I_1["list_data_socket"]["channel_desc_list"]["channeldesc"][number]["display_names"], keyof string[]>]: never; }) | undefined;
|
|
17750
17591
|
channel_avatar?: string | undefined;
|
|
17751
17592
|
clan_name?: string | undefined;
|
|
17752
17593
|
app_id?: string | undefined;
|
|
@@ -17755,7 +17596,7 @@ export declare const Envelope: {
|
|
|
17755
17596
|
topic?: string | undefined;
|
|
17756
17597
|
e2ee?: number | undefined;
|
|
17757
17598
|
member_count?: number | undefined;
|
|
17758
|
-
} & { [
|
|
17599
|
+
} & { [K_602 in Exclude<keyof I_1["list_data_socket"]["channel_desc_list"]["channeldesc"][number], keyof ChannelDescription1>]: never; })[] & { [K_603 in Exclude<keyof I_1["list_data_socket"]["channel_desc_list"]["channeldesc"], keyof {
|
|
17759
17600
|
clan_id?: string | undefined;
|
|
17760
17601
|
parent_id?: string | undefined;
|
|
17761
17602
|
channel_id?: string | undefined;
|
|
@@ -17812,14 +17653,14 @@ export declare const Envelope: {
|
|
|
17812
17653
|
prev_cursor?: string | undefined;
|
|
17813
17654
|
cacheable_cursor?: string | undefined;
|
|
17814
17655
|
page?: number | undefined;
|
|
17815
|
-
} & { [
|
|
17656
|
+
} & { [K_604 in Exclude<keyof I_1["list_data_socket"]["channel_desc_list"], keyof ChannelDescList>]: never; }) | undefined;
|
|
17816
17657
|
list_channel_users_uc_req?: ({
|
|
17817
17658
|
channel_id?: string | undefined;
|
|
17818
17659
|
limit?: number | undefined;
|
|
17819
17660
|
} & {
|
|
17820
17661
|
channel_id?: string | undefined;
|
|
17821
17662
|
limit?: number | undefined;
|
|
17822
|
-
} & { [
|
|
17663
|
+
} & { [K_605 in Exclude<keyof I_1["list_data_socket"]["list_channel_users_uc_req"], keyof AllUsersAddChannelRequest>]: never; }) | undefined;
|
|
17823
17664
|
channel_users_uc_list?: ({
|
|
17824
17665
|
channel_id?: string | undefined;
|
|
17825
17666
|
user_ids?: string[] | undefined;
|
|
@@ -17830,18 +17671,18 @@ export declare const Envelope: {
|
|
|
17830
17671
|
onlines?: boolean[] | undefined;
|
|
17831
17672
|
} & {
|
|
17832
17673
|
channel_id?: string | undefined;
|
|
17833
|
-
user_ids?: (string[] & string[] & { [
|
|
17674
|
+
user_ids?: (string[] & string[] & { [K_606 in Exclude<keyof I_1["list_data_socket"]["channel_users_uc_list"]["user_ids"], keyof string[]>]: never; }) | undefined;
|
|
17834
17675
|
limit?: number | undefined;
|
|
17835
|
-
usernames?: (string[] & string[] & { [
|
|
17836
|
-
display_names?: (string[] & string[] & { [
|
|
17837
|
-
avatars?: (string[] & string[] & { [
|
|
17838
|
-
onlines?: (boolean[] & boolean[] & { [
|
|
17839
|
-
} & { [
|
|
17676
|
+
usernames?: (string[] & string[] & { [K_607 in Exclude<keyof I_1["list_data_socket"]["channel_users_uc_list"]["usernames"], keyof string[]>]: never; }) | undefined;
|
|
17677
|
+
display_names?: (string[] & string[] & { [K_608 in Exclude<keyof I_1["list_data_socket"]["channel_users_uc_list"]["display_names"], keyof string[]>]: never; }) | undefined;
|
|
17678
|
+
avatars?: (string[] & string[] & { [K_609 in Exclude<keyof I_1["list_data_socket"]["channel_users_uc_list"]["avatars"], keyof string[]>]: never; }) | undefined;
|
|
17679
|
+
onlines?: (boolean[] & boolean[] & { [K_610 in Exclude<keyof I_1["list_data_socket"]["channel_users_uc_list"]["onlines"], keyof boolean[]>]: never; }) | undefined;
|
|
17680
|
+
} & { [K_611 in Exclude<keyof I_1["list_data_socket"]["channel_users_uc_list"], keyof AllUsersAddChannelResponse>]: never; }) | undefined;
|
|
17840
17681
|
list_channel_detail_req?: ({
|
|
17841
17682
|
channel_id?: string | undefined;
|
|
17842
17683
|
} & {
|
|
17843
17684
|
channel_id?: string | undefined;
|
|
17844
|
-
} & { [
|
|
17685
|
+
} & { [K_612 in Exclude<keyof I_1["list_data_socket"]["list_channel_detail_req"], "channel_id">]: never; }) | undefined;
|
|
17845
17686
|
channel_desc?: ({
|
|
17846
17687
|
clan_id?: string | undefined;
|
|
17847
17688
|
parent_id?: string | undefined;
|
|
@@ -17904,8 +17745,8 @@ export declare const Envelope: {
|
|
|
17904
17745
|
creator_id?: string | undefined;
|
|
17905
17746
|
channel_label?: string | undefined;
|
|
17906
17747
|
channel_private?: number | undefined;
|
|
17907
|
-
avatars?: (string[] & string[] & { [
|
|
17908
|
-
user_ids?: (string[] & string[] & { [
|
|
17748
|
+
avatars?: (string[] & string[] & { [K_613 in Exclude<keyof I_1["list_data_socket"]["channel_desc"]["avatars"], keyof string[]>]: never; }) | undefined;
|
|
17749
|
+
user_ids?: (string[] & string[] & { [K_614 in Exclude<keyof I_1["list_data_socket"]["channel_desc"]["user_ids"], keyof string[]>]: never; }) | undefined;
|
|
17909
17750
|
last_sent_message?: ({
|
|
17910
17751
|
id?: string | undefined;
|
|
17911
17752
|
timestamp_seconds?: number | undefined;
|
|
@@ -17925,8 +17766,8 @@ export declare const Envelope: {
|
|
|
17925
17766
|
reference?: string | undefined;
|
|
17926
17767
|
mention?: string | undefined;
|
|
17927
17768
|
reaction?: string | undefined;
|
|
17928
|
-
repliers?: (string[] & string[] & { [
|
|
17929
|
-
} & { [
|
|
17769
|
+
repliers?: (string[] & string[] & { [K_615 in Exclude<keyof I_1["list_data_socket"]["channel_desc"]["last_sent_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
17770
|
+
} & { [K_616 in Exclude<keyof I_1["list_data_socket"]["channel_desc"]["last_sent_message"], keyof ChannelMessageHeader>]: never; }) | undefined;
|
|
17930
17771
|
last_seen_message?: ({
|
|
17931
17772
|
id?: string | undefined;
|
|
17932
17773
|
timestamp_seconds?: number | undefined;
|
|
@@ -17946,18 +17787,18 @@ export declare const Envelope: {
|
|
|
17946
17787
|
reference?: string | undefined;
|
|
17947
17788
|
mention?: string | undefined;
|
|
17948
17789
|
reaction?: string | undefined;
|
|
17949
|
-
repliers?: (string[] & string[] & { [
|
|
17950
|
-
} & { [
|
|
17951
|
-
onlines?: (boolean[] & boolean[] & { [
|
|
17790
|
+
repliers?: (string[] & string[] & { [K_617 in Exclude<keyof I_1["list_data_socket"]["channel_desc"]["last_seen_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
17791
|
+
} & { [K_618 in Exclude<keyof I_1["list_data_socket"]["channel_desc"]["last_seen_message"], keyof ChannelMessageHeader>]: never; }) | undefined;
|
|
17792
|
+
onlines?: (boolean[] & boolean[] & { [K_619 in Exclude<keyof I_1["list_data_socket"]["channel_desc"]["onlines"], keyof boolean[]>]: never; }) | undefined;
|
|
17952
17793
|
meeting_code?: string | undefined;
|
|
17953
17794
|
count_mess_unread?: number | undefined;
|
|
17954
17795
|
active?: number | undefined;
|
|
17955
17796
|
last_pin_message?: string | undefined;
|
|
17956
|
-
usernames?: (string[] & string[] & { [
|
|
17797
|
+
usernames?: (string[] & string[] & { [K_620 in Exclude<keyof I_1["list_data_socket"]["channel_desc"]["usernames"], keyof string[]>]: never; }) | undefined;
|
|
17957
17798
|
creator_name?: string | undefined;
|
|
17958
17799
|
create_time_seconds?: number | undefined;
|
|
17959
17800
|
update_time_seconds?: number | undefined;
|
|
17960
|
-
display_names?: (string[] & string[] & { [
|
|
17801
|
+
display_names?: (string[] & string[] & { [K_621 in Exclude<keyof I_1["list_data_socket"]["channel_desc"]["display_names"], keyof string[]>]: never; }) | undefined;
|
|
17961
17802
|
channel_avatar?: string | undefined;
|
|
17962
17803
|
clan_name?: string | undefined;
|
|
17963
17804
|
app_id?: string | undefined;
|
|
@@ -17966,7 +17807,7 @@ export declare const Envelope: {
|
|
|
17966
17807
|
topic?: string | undefined;
|
|
17967
17808
|
e2ee?: number | undefined;
|
|
17968
17809
|
member_count?: number | undefined;
|
|
17969
|
-
} & { [
|
|
17810
|
+
} & { [K_622 in Exclude<keyof I_1["list_data_socket"]["channel_desc"], keyof ChannelDescription1>]: never; }) | undefined;
|
|
17970
17811
|
list_channel_req?: ({
|
|
17971
17812
|
limit?: number | undefined;
|
|
17972
17813
|
state?: number | undefined;
|
|
@@ -17981,7 +17822,7 @@ export declare const Envelope: {
|
|
|
17981
17822
|
clan_id?: string | undefined;
|
|
17982
17823
|
channel_type?: number | undefined;
|
|
17983
17824
|
is_mobile?: boolean | undefined;
|
|
17984
|
-
} & { [
|
|
17825
|
+
} & { [K_623 in Exclude<keyof I_1["list_data_socket"]["list_channel_req"], keyof ListChannelDescsRequest>]: never; }) | undefined;
|
|
17985
17826
|
list_channel_message_req?: ({
|
|
17986
17827
|
clan_id?: string | undefined;
|
|
17987
17828
|
channel_id?: string | undefined;
|
|
@@ -17996,7 +17837,7 @@ export declare const Envelope: {
|
|
|
17996
17837
|
limit?: number | undefined;
|
|
17997
17838
|
direction?: number | undefined;
|
|
17998
17839
|
topic_id?: string | undefined;
|
|
17999
|
-
} & { [
|
|
17840
|
+
} & { [K_624 in Exclude<keyof I_1["list_data_socket"]["list_channel_message_req"], keyof ListChannelMessagesRequest>]: never; }) | undefined;
|
|
18000
17841
|
channel_message_list?: ({
|
|
18001
17842
|
messages?: {
|
|
18002
17843
|
clan_id?: string | undefined;
|
|
@@ -18134,7 +17975,7 @@ export declare const Envelope: {
|
|
|
18134
17975
|
hide_editted?: boolean | undefined;
|
|
18135
17976
|
is_public?: boolean | undefined;
|
|
18136
17977
|
topic_id?: string | undefined;
|
|
18137
|
-
} & { [
|
|
17978
|
+
} & { [K_625 in Exclude<keyof I_1["list_data_socket"]["channel_message_list"]["messages"][number], keyof ChannelMessage>]: never; })[] & { [K_626 in Exclude<keyof I_1["list_data_socket"]["channel_message_list"]["messages"], keyof {
|
|
18138
17979
|
clan_id?: string | undefined;
|
|
18139
17980
|
channel_id?: string | undefined;
|
|
18140
17981
|
message_id?: string | undefined;
|
|
@@ -18182,8 +18023,8 @@ export declare const Envelope: {
|
|
|
18182
18023
|
reference?: string | undefined;
|
|
18183
18024
|
mention?: string | undefined;
|
|
18184
18025
|
reaction?: string | undefined;
|
|
18185
|
-
repliers?: (string[] & string[] & { [
|
|
18186
|
-
} & { [
|
|
18026
|
+
repliers?: (string[] & string[] & { [K_627 in Exclude<keyof I_1["list_data_socket"]["channel_message_list"]["last_seen_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
18027
|
+
} & { [K_628 in Exclude<keyof I_1["list_data_socket"]["channel_message_list"]["last_seen_message"], keyof ChannelMessageHeader>]: never; }) | undefined;
|
|
18187
18028
|
last_sent_message?: ({
|
|
18188
18029
|
id?: string | undefined;
|
|
18189
18030
|
timestamp_seconds?: number | undefined;
|
|
@@ -18203,9 +18044,9 @@ export declare const Envelope: {
|
|
|
18203
18044
|
reference?: string | undefined;
|
|
18204
18045
|
mention?: string | undefined;
|
|
18205
18046
|
reaction?: string | undefined;
|
|
18206
|
-
repliers?: (string[] & string[] & { [
|
|
18207
|
-
} & { [
|
|
18208
|
-
} & { [
|
|
18047
|
+
repliers?: (string[] & string[] & { [K_629 in Exclude<keyof I_1["list_data_socket"]["channel_message_list"]["last_sent_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
18048
|
+
} & { [K_630 in Exclude<keyof I_1["list_data_socket"]["channel_message_list"]["last_sent_message"], keyof ChannelMessageHeader>]: never; }) | undefined;
|
|
18049
|
+
} & { [K_631 in Exclude<keyof I_1["list_data_socket"]["channel_message_list"], keyof ChannelMessageList>]: never; }) | undefined;
|
|
18209
18050
|
list_channel_users_req?: ({
|
|
18210
18051
|
clan_id?: string | undefined;
|
|
18211
18052
|
channel_id?: string | undefined;
|
|
@@ -18220,7 +18061,7 @@ export declare const Envelope: {
|
|
|
18220
18061
|
limit?: number | undefined;
|
|
18221
18062
|
state?: number | undefined;
|
|
18222
18063
|
cursor?: string | undefined;
|
|
18223
|
-
} & { [
|
|
18064
|
+
} & { [K_632 in Exclude<keyof I_1["list_data_socket"]["list_channel_users_req"], keyof ListChannelUsersRequest>]: never; }) | undefined;
|
|
18224
18065
|
voice_user_list?: ({
|
|
18225
18066
|
voice_channel_users?: {
|
|
18226
18067
|
id?: string | undefined;
|
|
@@ -18244,13 +18085,13 @@ export declare const Envelope: {
|
|
|
18244
18085
|
user_id?: string | undefined;
|
|
18245
18086
|
channel_id?: string | undefined;
|
|
18246
18087
|
participant?: string | undefined;
|
|
18247
|
-
} & { [
|
|
18088
|
+
} & { [K_633 in Exclude<keyof I_1["list_data_socket"]["voice_user_list"]["voice_channel_users"][number], keyof import("../api/api").VoiceChannelUser>]: never; })[] & { [K_634 in Exclude<keyof I_1["list_data_socket"]["voice_user_list"]["voice_channel_users"], keyof {
|
|
18248
18089
|
id?: string | undefined;
|
|
18249
18090
|
user_id?: string | undefined;
|
|
18250
18091
|
channel_id?: string | undefined;
|
|
18251
18092
|
participant?: string | undefined;
|
|
18252
18093
|
}[]>]: never; }) | undefined;
|
|
18253
|
-
} & { [
|
|
18094
|
+
} & { [K_635 in Exclude<keyof I_1["list_data_socket"]["voice_user_list"], "voice_channel_users">]: never; }) | undefined;
|
|
18254
18095
|
channel_user_list?: ({
|
|
18255
18096
|
channel_users?: {
|
|
18256
18097
|
user_id?: string | undefined;
|
|
@@ -18291,7 +18132,7 @@ export declare const Envelope: {
|
|
|
18291
18132
|
expired_ban_time?: number | undefined;
|
|
18292
18133
|
} & {
|
|
18293
18134
|
user_id?: string | undefined;
|
|
18294
|
-
role_id?: (string[] & string[] & { [
|
|
18135
|
+
role_id?: (string[] & string[] & { [K_636 in Exclude<keyof I_1["list_data_socket"]["channel_user_list"]["channel_users"][number]["role_id"], keyof string[]>]: never; }) | undefined;
|
|
18295
18136
|
id?: string | undefined;
|
|
18296
18137
|
thread_id?: string | undefined;
|
|
18297
18138
|
clan_nick?: string | undefined;
|
|
@@ -18300,7 +18141,7 @@ export declare const Envelope: {
|
|
|
18300
18141
|
added_by?: string | undefined;
|
|
18301
18142
|
is_banned?: boolean | undefined;
|
|
18302
18143
|
expired_ban_time?: number | undefined;
|
|
18303
|
-
} & { [
|
|
18144
|
+
} & { [K_637 in Exclude<keyof I_1["list_data_socket"]["channel_user_list"]["channel_users"][number], keyof import("../api/api").ChannelUserList_ChannelUser>]: never; })[] & { [K_638 in Exclude<keyof I_1["list_data_socket"]["channel_user_list"]["channel_users"], keyof {
|
|
18304
18145
|
user_id?: string | undefined;
|
|
18305
18146
|
role_id?: string[] | undefined;
|
|
18306
18147
|
id?: string | undefined;
|
|
@@ -18314,7 +18155,7 @@ export declare const Envelope: {
|
|
|
18314
18155
|
}[]>]: never; }) | undefined;
|
|
18315
18156
|
cursor?: string | undefined;
|
|
18316
18157
|
channel_id?: string | undefined;
|
|
18317
|
-
} & { [
|
|
18158
|
+
} & { [K_639 in Exclude<keyof I_1["list_data_socket"]["channel_user_list"], keyof ChannelUserList>]: never; }) | undefined;
|
|
18318
18159
|
list_channel_attachment_req?: ({
|
|
18319
18160
|
clan_id?: string | undefined;
|
|
18320
18161
|
channel_id?: string | undefined;
|
|
@@ -18333,7 +18174,7 @@ export declare const Envelope: {
|
|
|
18333
18174
|
before?: number | undefined;
|
|
18334
18175
|
after?: number | undefined;
|
|
18335
18176
|
around?: number | undefined;
|
|
18336
|
-
} & { [
|
|
18177
|
+
} & { [K_640 in Exclude<keyof I_1["list_data_socket"]["list_channel_attachment_req"], keyof ListChannelAttachmentRequest>]: never; }) | undefined;
|
|
18337
18178
|
channel_attachment_list?: ({
|
|
18338
18179
|
attachments?: {
|
|
18339
18180
|
id?: string | undefined;
|
|
@@ -18381,7 +18222,7 @@ export declare const Envelope: {
|
|
|
18381
18222
|
message_id?: string | undefined;
|
|
18382
18223
|
width?: number | undefined;
|
|
18383
18224
|
height?: number | undefined;
|
|
18384
|
-
} & { [
|
|
18225
|
+
} & { [K_641 in Exclude<keyof I_1["list_data_socket"]["channel_attachment_list"]["attachments"][number], keyof import("../api/api").ChannelAttachment>]: never; })[] & { [K_642 in Exclude<keyof I_1["list_data_socket"]["channel_attachment_list"]["attachments"], keyof {
|
|
18385
18226
|
id?: string | undefined;
|
|
18386
18227
|
filename?: string | undefined;
|
|
18387
18228
|
filetype?: string | undefined;
|
|
@@ -18393,14 +18234,14 @@ export declare const Envelope: {
|
|
|
18393
18234
|
width?: number | undefined;
|
|
18394
18235
|
height?: number | undefined;
|
|
18395
18236
|
}[]>]: never; }) | undefined;
|
|
18396
|
-
} & { [
|
|
18237
|
+
} & { [K_643 in Exclude<keyof I_1["list_data_socket"]["channel_attachment_list"], "attachments">]: never; }) | undefined;
|
|
18397
18238
|
hashtag_dm_req?: ({
|
|
18398
18239
|
user_id?: string[] | undefined;
|
|
18399
18240
|
limit?: number | undefined;
|
|
18400
18241
|
} & {
|
|
18401
|
-
user_id?: (string[] & string[] & { [
|
|
18242
|
+
user_id?: (string[] & string[] & { [K_644 in Exclude<keyof I_1["list_data_socket"]["hashtag_dm_req"]["user_id"], keyof string[]>]: never; }) | undefined;
|
|
18402
18243
|
limit?: number | undefined;
|
|
18403
|
-
} & { [
|
|
18244
|
+
} & { [K_645 in Exclude<keyof I_1["list_data_socket"]["hashtag_dm_req"], keyof HashtagDmListRequest>]: never; }) | undefined;
|
|
18404
18245
|
hashtag_dm_list?: ({
|
|
18405
18246
|
hashtag_dm?: {
|
|
18406
18247
|
channel_id?: string | undefined;
|
|
@@ -18440,7 +18281,7 @@ export declare const Envelope: {
|
|
|
18440
18281
|
type?: number | undefined;
|
|
18441
18282
|
channel_private?: number | undefined;
|
|
18442
18283
|
parent_id?: string | undefined;
|
|
18443
|
-
} & { [
|
|
18284
|
+
} & { [K_646 in Exclude<keyof I_1["list_data_socket"]["hashtag_dm_list"]["hashtag_dm"][number], keyof import("../api/api").HashtagDm>]: never; })[] & { [K_647 in Exclude<keyof I_1["list_data_socket"]["hashtag_dm_list"]["hashtag_dm"], keyof {
|
|
18444
18285
|
channel_id?: string | undefined;
|
|
18445
18286
|
channel_label?: string | undefined;
|
|
18446
18287
|
clan_id?: string | undefined;
|
|
@@ -18450,7 +18291,7 @@ export declare const Envelope: {
|
|
|
18450
18291
|
channel_private?: number | undefined;
|
|
18451
18292
|
parent_id?: string | undefined;
|
|
18452
18293
|
}[]>]: never; }) | undefined;
|
|
18453
|
-
} & { [
|
|
18294
|
+
} & { [K_648 in Exclude<keyof I_1["list_data_socket"]["hashtag_dm_list"], "hashtag_dm">]: never; }) | undefined;
|
|
18454
18295
|
channel_setting_req?: ({
|
|
18455
18296
|
clan_id?: string | undefined;
|
|
18456
18297
|
parent_id?: string | undefined;
|
|
@@ -18473,7 +18314,7 @@ export declare const Envelope: {
|
|
|
18473
18314
|
limit?: number | undefined;
|
|
18474
18315
|
page?: number | undefined;
|
|
18475
18316
|
channel_label?: string | undefined;
|
|
18476
|
-
} & { [
|
|
18317
|
+
} & { [K_649 in Exclude<keyof I_1["list_data_socket"]["channel_setting_req"], keyof ChannelSettingListRequest>]: never; }) | undefined;
|
|
18477
18318
|
channel_setting_list?: ({
|
|
18478
18319
|
clan_id?: string | undefined;
|
|
18479
18320
|
channel_count?: number | undefined;
|
|
@@ -18562,7 +18403,7 @@ export declare const Envelope: {
|
|
|
18562
18403
|
channel_private?: number | undefined;
|
|
18563
18404
|
channel_type?: number | undefined;
|
|
18564
18405
|
active?: number | undefined;
|
|
18565
|
-
user_ids?: (string[] & string[] & { [
|
|
18406
|
+
user_ids?: (string[] & string[] & { [K_650 in Exclude<keyof I_1["list_data_socket"]["channel_setting_list"]["channel_setting_list"][number]["user_ids"], keyof string[]>]: never; }) | undefined;
|
|
18566
18407
|
message_count?: number | undefined;
|
|
18567
18408
|
last_sent_message?: ({
|
|
18568
18409
|
id?: string | undefined;
|
|
@@ -18583,9 +18424,9 @@ export declare const Envelope: {
|
|
|
18583
18424
|
reference?: string | undefined;
|
|
18584
18425
|
mention?: string | undefined;
|
|
18585
18426
|
reaction?: string | undefined;
|
|
18586
|
-
repliers?: (string[] & string[] & { [
|
|
18587
|
-
} & { [
|
|
18588
|
-
} & { [
|
|
18427
|
+
repliers?: (string[] & string[] & { [K_651 in Exclude<keyof I_1["list_data_socket"]["channel_setting_list"]["channel_setting_list"][number]["last_sent_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
18428
|
+
} & { [K_652 in Exclude<keyof I_1["list_data_socket"]["channel_setting_list"]["channel_setting_list"][number]["last_sent_message"], keyof ChannelMessageHeader>]: never; }) | undefined;
|
|
18429
|
+
} & { [K_653 in Exclude<keyof I_1["list_data_socket"]["channel_setting_list"]["channel_setting_list"][number], keyof import("../api/api").ChannelSettingItem>]: never; })[] & { [K_654 in Exclude<keyof I_1["list_data_socket"]["channel_setting_list"]["channel_setting_list"], keyof {
|
|
18589
18430
|
id?: string | undefined;
|
|
18590
18431
|
creator_id?: string | undefined;
|
|
18591
18432
|
parent_id?: string | undefined;
|
|
@@ -18609,17 +18450,17 @@ export declare const Envelope: {
|
|
|
18609
18450
|
repliers?: string[] | undefined;
|
|
18610
18451
|
} | undefined;
|
|
18611
18452
|
}[]>]: never; }) | undefined;
|
|
18612
|
-
} & { [
|
|
18453
|
+
} & { [K_655 in Exclude<keyof I_1["list_data_socket"]["channel_setting_list"], keyof ChannelSettingListResponse>]: never; }) | undefined;
|
|
18613
18454
|
favorite_channel_req?: ({
|
|
18614
18455
|
clan_id?: string | undefined;
|
|
18615
18456
|
} & {
|
|
18616
18457
|
clan_id?: string | undefined;
|
|
18617
|
-
} & { [
|
|
18458
|
+
} & { [K_656 in Exclude<keyof I_1["list_data_socket"]["favorite_channel_req"], "clan_id">]: never; }) | undefined;
|
|
18618
18459
|
favorite_channel_list?: ({
|
|
18619
18460
|
channel_ids?: string[] | undefined;
|
|
18620
18461
|
} & {
|
|
18621
|
-
channel_ids?: (string[] & string[] & { [
|
|
18622
|
-
} & { [
|
|
18462
|
+
channel_ids?: (string[] & string[] & { [K_657 in Exclude<keyof I_1["list_data_socket"]["favorite_channel_list"]["channel_ids"], keyof string[]>]: never; }) | undefined;
|
|
18463
|
+
} & { [K_658 in Exclude<keyof I_1["list_data_socket"]["favorite_channel_list"], "channel_ids">]: never; }) | undefined;
|
|
18623
18464
|
search_thread_req?: ({
|
|
18624
18465
|
clan_id?: string | undefined;
|
|
18625
18466
|
channel_id?: string | undefined;
|
|
@@ -18628,12 +18469,12 @@ export declare const Envelope: {
|
|
|
18628
18469
|
clan_id?: string | undefined;
|
|
18629
18470
|
channel_id?: string | undefined;
|
|
18630
18471
|
label?: string | undefined;
|
|
18631
|
-
} & { [
|
|
18472
|
+
} & { [K_659 in Exclude<keyof I_1["list_data_socket"]["search_thread_req"], keyof SearchThreadRequest>]: never; }) | undefined;
|
|
18632
18473
|
notification_channel?: ({
|
|
18633
18474
|
channel_id?: string | undefined;
|
|
18634
18475
|
} & {
|
|
18635
18476
|
channel_id?: string | undefined;
|
|
18636
|
-
} & { [
|
|
18477
|
+
} & { [K_660 in Exclude<keyof I_1["list_data_socket"]["notification_channel"], "channel_id">]: never; }) | undefined;
|
|
18637
18478
|
notificaion_user_channel?: ({
|
|
18638
18479
|
id?: string | undefined;
|
|
18639
18480
|
notification_setting_type?: number | undefined;
|
|
@@ -18646,24 +18487,24 @@ export declare const Envelope: {
|
|
|
18646
18487
|
time_mute?: Date | undefined;
|
|
18647
18488
|
active?: number | undefined;
|
|
18648
18489
|
channel_id?: string | undefined;
|
|
18649
|
-
} & { [
|
|
18490
|
+
} & { [K_661 in Exclude<keyof I_1["list_data_socket"]["notificaion_user_channel"], keyof NotificationUserChannel>]: never; }) | undefined;
|
|
18650
18491
|
notification_category?: ({
|
|
18651
18492
|
category_id?: string | undefined;
|
|
18652
18493
|
} & {
|
|
18653
18494
|
category_id?: string | undefined;
|
|
18654
|
-
} & { [
|
|
18495
|
+
} & { [K_662 in Exclude<keyof I_1["list_data_socket"]["notification_category"], "category_id">]: never; }) | undefined;
|
|
18655
18496
|
notification_clan?: ({
|
|
18656
18497
|
clan_id?: string | undefined;
|
|
18657
18498
|
} & {
|
|
18658
18499
|
clan_id?: string | undefined;
|
|
18659
|
-
} & { [
|
|
18500
|
+
} & { [K_663 in Exclude<keyof I_1["list_data_socket"]["notification_clan"], "clan_id">]: never; }) | undefined;
|
|
18660
18501
|
notification_setting?: ({
|
|
18661
18502
|
id?: string | undefined;
|
|
18662
18503
|
notification_setting_type?: number | undefined;
|
|
18663
18504
|
} & {
|
|
18664
18505
|
id?: string | undefined;
|
|
18665
18506
|
notification_setting_type?: number | undefined;
|
|
18666
|
-
} & { [
|
|
18507
|
+
} & { [K_664 in Exclude<keyof I_1["list_data_socket"]["notification_setting"], keyof NotificationSetting>]: never; }) | undefined;
|
|
18667
18508
|
notification_message?: ({
|
|
18668
18509
|
id?: string | undefined;
|
|
18669
18510
|
user_id?: string | undefined;
|
|
@@ -18672,7 +18513,7 @@ export declare const Envelope: {
|
|
|
18672
18513
|
id?: string | undefined;
|
|
18673
18514
|
user_id?: string | undefined;
|
|
18674
18515
|
channel_id?: string | undefined;
|
|
18675
|
-
} & { [
|
|
18516
|
+
} & { [K_665 in Exclude<keyof I_1["list_data_socket"]["notification_message"], keyof NotifiReactMessage>]: never; }) | undefined;
|
|
18676
18517
|
noti_channel_cat_setting_list?: ({
|
|
18677
18518
|
notification_channel_category_settings_list?: {
|
|
18678
18519
|
id?: string | undefined;
|
|
@@ -18700,14 +18541,14 @@ export declare const Envelope: {
|
|
|
18700
18541
|
notification_setting_type?: number | undefined;
|
|
18701
18542
|
channel_category_title?: string | undefined;
|
|
18702
18543
|
action?: number | undefined;
|
|
18703
|
-
} & { [
|
|
18544
|
+
} & { [K_666 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_667 in Exclude<keyof I_1["list_data_socket"]["noti_channel_cat_setting_list"]["notification_channel_category_settings_list"], keyof {
|
|
18704
18545
|
id?: string | undefined;
|
|
18705
18546
|
channel_category_label?: string | undefined;
|
|
18706
18547
|
notification_setting_type?: number | undefined;
|
|
18707
18548
|
channel_category_title?: string | undefined;
|
|
18708
18549
|
action?: number | undefined;
|
|
18709
18550
|
}[]>]: never; }) | undefined;
|
|
18710
|
-
} & { [
|
|
18551
|
+
} & { [K_668 in Exclude<keyof I_1["list_data_socket"]["noti_channel_cat_setting_list"], "notification_channel_category_settings_list">]: never; }) | undefined;
|
|
18711
18552
|
list_notification_req?: ({
|
|
18712
18553
|
limit?: number | undefined;
|
|
18713
18554
|
clan_id?: string | undefined;
|
|
@@ -18720,7 +18561,7 @@ export declare const Envelope: {
|
|
|
18720
18561
|
notification_id?: string | undefined;
|
|
18721
18562
|
category?: number | undefined;
|
|
18722
18563
|
direction?: number | undefined;
|
|
18723
|
-
} & { [
|
|
18564
|
+
} & { [K_669 in Exclude<keyof I_1["list_data_socket"]["list_notification_req"], keyof ListNotificationsRequest>]: never; }) | undefined;
|
|
18724
18565
|
notification_list?: ({
|
|
18725
18566
|
notifications?: {
|
|
18726
18567
|
id?: string | undefined;
|
|
@@ -19000,8 +18841,8 @@ export declare const Envelope: {
|
|
|
19000
18841
|
creator_id?: string | undefined;
|
|
19001
18842
|
channel_label?: string | undefined;
|
|
19002
18843
|
channel_private?: number | undefined;
|
|
19003
|
-
avatars?: (string[] & string[] & { [
|
|
19004
|
-
user_ids?: (string[] & string[] & { [
|
|
18844
|
+
avatars?: (string[] & string[] & { [K_670 in Exclude<keyof I_1["list_data_socket"]["notification_list"]["notifications"][number]["channel"]["avatars"], keyof string[]>]: never; }) | undefined;
|
|
18845
|
+
user_ids?: (string[] & string[] & { [K_671 in Exclude<keyof I_1["list_data_socket"]["notification_list"]["notifications"][number]["channel"]["user_ids"], keyof string[]>]: never; }) | undefined;
|
|
19005
18846
|
last_sent_message?: ({
|
|
19006
18847
|
id?: string | undefined;
|
|
19007
18848
|
timestamp_seconds?: number | undefined;
|
|
@@ -19021,8 +18862,8 @@ export declare const Envelope: {
|
|
|
19021
18862
|
reference?: string | undefined;
|
|
19022
18863
|
mention?: string | undefined;
|
|
19023
18864
|
reaction?: string | undefined;
|
|
19024
|
-
repliers?: (string[] & string[] & { [
|
|
19025
|
-
} & { [
|
|
18865
|
+
repliers?: (string[] & string[] & { [K_672 in Exclude<keyof I_1["list_data_socket"]["notification_list"]["notifications"][number]["channel"]["last_sent_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
18866
|
+
} & { [K_673 in Exclude<keyof I_1["list_data_socket"]["notification_list"]["notifications"][number]["channel"]["last_sent_message"], keyof ChannelMessageHeader>]: never; }) | undefined;
|
|
19026
18867
|
last_seen_message?: ({
|
|
19027
18868
|
id?: string | undefined;
|
|
19028
18869
|
timestamp_seconds?: number | undefined;
|
|
@@ -19042,18 +18883,18 @@ export declare const Envelope: {
|
|
|
19042
18883
|
reference?: string | undefined;
|
|
19043
18884
|
mention?: string | undefined;
|
|
19044
18885
|
reaction?: string | undefined;
|
|
19045
|
-
repliers?: (string[] & string[] & { [
|
|
19046
|
-
} & { [
|
|
19047
|
-
onlines?: (boolean[] & boolean[] & { [
|
|
18886
|
+
repliers?: (string[] & string[] & { [K_674 in Exclude<keyof I_1["list_data_socket"]["notification_list"]["notifications"][number]["channel"]["last_seen_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
18887
|
+
} & { [K_675 in Exclude<keyof I_1["list_data_socket"]["notification_list"]["notifications"][number]["channel"]["last_seen_message"], keyof ChannelMessageHeader>]: never; }) | undefined;
|
|
18888
|
+
onlines?: (boolean[] & boolean[] & { [K_676 in Exclude<keyof I_1["list_data_socket"]["notification_list"]["notifications"][number]["channel"]["onlines"], keyof boolean[]>]: never; }) | undefined;
|
|
19048
18889
|
meeting_code?: string | undefined;
|
|
19049
18890
|
count_mess_unread?: number | undefined;
|
|
19050
18891
|
active?: number | undefined;
|
|
19051
18892
|
last_pin_message?: string | undefined;
|
|
19052
|
-
usernames?: (string[] & string[] & { [
|
|
18893
|
+
usernames?: (string[] & string[] & { [K_677 in Exclude<keyof I_1["list_data_socket"]["notification_list"]["notifications"][number]["channel"]["usernames"], keyof string[]>]: never; }) | undefined;
|
|
19053
18894
|
creator_name?: string | undefined;
|
|
19054
18895
|
create_time_seconds?: number | undefined;
|
|
19055
18896
|
update_time_seconds?: number | undefined;
|
|
19056
|
-
display_names?: (string[] & string[] & { [
|
|
18897
|
+
display_names?: (string[] & string[] & { [K_678 in Exclude<keyof I_1["list_data_socket"]["notification_list"]["notifications"][number]["channel"]["display_names"], keyof string[]>]: never; }) | undefined;
|
|
19057
18898
|
channel_avatar?: string | undefined;
|
|
19058
18899
|
clan_name?: string | undefined;
|
|
19059
18900
|
app_id?: string | undefined;
|
|
@@ -19062,10 +18903,10 @@ export declare const Envelope: {
|
|
|
19062
18903
|
topic?: string | undefined;
|
|
19063
18904
|
e2ee?: number | undefined;
|
|
19064
18905
|
member_count?: number | undefined;
|
|
19065
|
-
} & { [
|
|
18906
|
+
} & { [K_679 in Exclude<keyof I_1["list_data_socket"]["notification_list"]["notifications"][number]["channel"], keyof ChannelDescription1>]: never; }) | undefined;
|
|
19066
18907
|
topic_id?: string | undefined;
|
|
19067
18908
|
category?: number | undefined;
|
|
19068
|
-
} & { [
|
|
18909
|
+
} & { [K_680 in Exclude<keyof I_1["list_data_socket"]["notification_list"]["notifications"][number], keyof Notification>]: never; })[] & { [K_681 in Exclude<keyof I_1["list_data_socket"]["notification_list"]["notifications"], keyof {
|
|
19069
18910
|
id?: string | undefined;
|
|
19070
18911
|
subject?: string | undefined;
|
|
19071
18912
|
content?: string | undefined;
|
|
@@ -19134,7 +18975,7 @@ export declare const Envelope: {
|
|
|
19134
18975
|
category?: number | undefined;
|
|
19135
18976
|
}[]>]: never; }) | undefined;
|
|
19136
18977
|
cacheable_cursor?: string | undefined;
|
|
19137
|
-
} & { [
|
|
18978
|
+
} & { [K_682 in Exclude<keyof I_1["list_data_socket"]["notification_list"], keyof NotificationList>]: never; }) | undefined;
|
|
19138
18979
|
sticker_list?: ({
|
|
19139
18980
|
stickers?: {
|
|
19140
18981
|
id?: string | undefined;
|
|
@@ -19186,7 +19027,7 @@ export declare const Envelope: {
|
|
|
19186
19027
|
clan_name?: string | undefined;
|
|
19187
19028
|
media_type?: number | undefined;
|
|
19188
19029
|
is_for_sale?: boolean | undefined;
|
|
19189
|
-
} & { [
|
|
19030
|
+
} & { [K_683 in Exclude<keyof I_1["list_data_socket"]["sticker_list"]["stickers"][number], keyof import("../api/api").ClanSticker>]: never; })[] & { [K_684 in Exclude<keyof I_1["list_data_socket"]["sticker_list"]["stickers"], keyof {
|
|
19190
19031
|
id?: string | undefined;
|
|
19191
19032
|
source?: string | undefined;
|
|
19192
19033
|
shortname?: string | undefined;
|
|
@@ -19199,7 +19040,7 @@ export declare const Envelope: {
|
|
|
19199
19040
|
media_type?: number | undefined;
|
|
19200
19041
|
is_for_sale?: boolean | undefined;
|
|
19201
19042
|
}[]>]: never; }) | undefined;
|
|
19202
|
-
} & { [
|
|
19043
|
+
} & { [K_685 in Exclude<keyof I_1["list_data_socket"]["sticker_list"], "stickers">]: never; }) | undefined;
|
|
19203
19044
|
emoji_recent_list?: ({
|
|
19204
19045
|
emoji_recents?: {
|
|
19205
19046
|
emoji_recents_id?: string | undefined;
|
|
@@ -19219,17 +19060,17 @@ export declare const Envelope: {
|
|
|
19219
19060
|
emoji_recents_id?: string | undefined;
|
|
19220
19061
|
emoji_id?: string | undefined;
|
|
19221
19062
|
update_time?: Date | undefined;
|
|
19222
|
-
} & { [
|
|
19063
|
+
} & { [K_686 in Exclude<keyof I_1["list_data_socket"]["emoji_recent_list"]["emoji_recents"][number], keyof import("../api/api").EmojiRecent>]: never; })[] & { [K_687 in Exclude<keyof I_1["list_data_socket"]["emoji_recent_list"]["emoji_recents"], keyof {
|
|
19223
19064
|
emoji_recents_id?: string | undefined;
|
|
19224
19065
|
emoji_id?: string | undefined;
|
|
19225
19066
|
update_time?: Date | undefined;
|
|
19226
19067
|
}[]>]: never; }) | undefined;
|
|
19227
|
-
} & { [
|
|
19068
|
+
} & { [K_688 in Exclude<keyof I_1["list_data_socket"]["emoji_recent_list"], "emoji_recents">]: never; }) | undefined;
|
|
19228
19069
|
clan_webhook_req?: ({
|
|
19229
19070
|
clan_id?: string | undefined;
|
|
19230
19071
|
} & {
|
|
19231
19072
|
clan_id?: string | undefined;
|
|
19232
|
-
} & { [
|
|
19073
|
+
} & { [K_689 in Exclude<keyof I_1["list_data_socket"]["clan_webhook_req"], "clan_id">]: never; }) | undefined;
|
|
19233
19074
|
clan_webhook_list?: ({
|
|
19234
19075
|
list_clan_webhooks?: {
|
|
19235
19076
|
id?: string | undefined;
|
|
@@ -19273,7 +19114,7 @@ export declare const Envelope: {
|
|
|
19273
19114
|
avatar?: string | undefined;
|
|
19274
19115
|
create_time?: string | undefined;
|
|
19275
19116
|
update_time?: string | undefined;
|
|
19276
|
-
} & { [
|
|
19117
|
+
} & { [K_690 in Exclude<keyof I_1["list_data_socket"]["clan_webhook_list"]["list_clan_webhooks"][number], keyof import("../api/api").ClanWebhook>]: never; })[] & { [K_691 in Exclude<keyof I_1["list_data_socket"]["clan_webhook_list"]["list_clan_webhooks"], keyof {
|
|
19277
19118
|
id?: string | undefined;
|
|
19278
19119
|
webhook_name?: string | undefined;
|
|
19279
19120
|
clan_id?: string | undefined;
|
|
@@ -19284,14 +19125,14 @@ export declare const Envelope: {
|
|
|
19284
19125
|
create_time?: string | undefined;
|
|
19285
19126
|
update_time?: string | undefined;
|
|
19286
19127
|
}[]>]: never; }) | undefined;
|
|
19287
|
-
} & { [
|
|
19128
|
+
} & { [K_692 in Exclude<keyof I_1["list_data_socket"]["clan_webhook_list"], "list_clan_webhooks">]: never; }) | undefined;
|
|
19288
19129
|
webhook_list_req?: ({
|
|
19289
19130
|
channel_id?: string | undefined;
|
|
19290
19131
|
clan_id?: string | undefined;
|
|
19291
19132
|
} & {
|
|
19292
19133
|
channel_id?: string | undefined;
|
|
19293
19134
|
clan_id?: string | undefined;
|
|
19294
|
-
} & { [
|
|
19135
|
+
} & { [K_693 in Exclude<keyof I_1["list_data_socket"]["webhook_list_req"], keyof WebhookListRequest>]: never; }) | undefined;
|
|
19295
19136
|
webhook_list?: ({
|
|
19296
19137
|
webhooks?: {
|
|
19297
19138
|
id?: string | undefined;
|
|
@@ -19343,7 +19184,7 @@ export declare const Envelope: {
|
|
|
19343
19184
|
avatar?: string | undefined;
|
|
19344
19185
|
status?: number | undefined;
|
|
19345
19186
|
clan_id?: string | undefined;
|
|
19346
|
-
} & { [
|
|
19187
|
+
} & { [K_694 in Exclude<keyof I_1["list_data_socket"]["webhook_list"]["webhooks"][number], keyof Webhook>]: never; })[] & { [K_695 in Exclude<keyof I_1["list_data_socket"]["webhook_list"]["webhooks"], keyof {
|
|
19347
19188
|
id?: string | undefined;
|
|
19348
19189
|
webhook_name?: string | undefined;
|
|
19349
19190
|
channel_id?: string | undefined;
|
|
@@ -19356,12 +19197,12 @@ export declare const Envelope: {
|
|
|
19356
19197
|
status?: number | undefined;
|
|
19357
19198
|
clan_id?: string | undefined;
|
|
19358
19199
|
}[]>]: never; }) | undefined;
|
|
19359
|
-
} & { [
|
|
19200
|
+
} & { [K_696 in Exclude<keyof I_1["list_data_socket"]["webhook_list"], "webhooks">]: never; }) | undefined;
|
|
19360
19201
|
permission_list_req?: ({
|
|
19361
19202
|
role_id?: string | undefined;
|
|
19362
19203
|
} & {
|
|
19363
19204
|
role_id?: string | undefined;
|
|
19364
|
-
} & { [
|
|
19205
|
+
} & { [K_697 in Exclude<keyof I_1["list_data_socket"]["permission_list_req"], "role_id">]: never; }) | undefined;
|
|
19365
19206
|
permission_list?: ({
|
|
19366
19207
|
permissions?: {
|
|
19367
19208
|
id?: string | undefined;
|
|
@@ -19398,7 +19239,7 @@ export declare const Envelope: {
|
|
|
19398
19239
|
active?: number | undefined;
|
|
19399
19240
|
scope?: number | undefined;
|
|
19400
19241
|
level?: number | undefined;
|
|
19401
|
-
} & { [
|
|
19242
|
+
} & { [K_698 in Exclude<keyof I_1["list_data_socket"]["permission_list"]["permissions"][number], keyof import("../api/api").Permission>]: never; })[] & { [K_699 in Exclude<keyof I_1["list_data_socket"]["permission_list"]["permissions"], keyof {
|
|
19402
19243
|
id?: string | undefined;
|
|
19403
19244
|
title?: string | undefined;
|
|
19404
19245
|
slug?: string | undefined;
|
|
@@ -19408,7 +19249,7 @@ export declare const Envelope: {
|
|
|
19408
19249
|
level?: number | undefined;
|
|
19409
19250
|
}[]>]: never; }) | undefined;
|
|
19410
19251
|
max_level_permission?: number | undefined;
|
|
19411
|
-
} & { [
|
|
19252
|
+
} & { [K_700 in Exclude<keyof I_1["list_data_socket"]["permission_list"], keyof PermissionList>]: never; }) | undefined;
|
|
19412
19253
|
role_user_req?: ({
|
|
19413
19254
|
role_id?: string | undefined;
|
|
19414
19255
|
limit?: number | undefined;
|
|
@@ -19417,7 +19258,7 @@ export declare const Envelope: {
|
|
|
19417
19258
|
role_id?: string | undefined;
|
|
19418
19259
|
limit?: number | undefined;
|
|
19419
19260
|
cursor?: string | undefined;
|
|
19420
|
-
} & { [
|
|
19261
|
+
} & { [K_701 in Exclude<keyof I_1["list_data_socket"]["role_user_req"], keyof ListRoleUsersRequest>]: never; }) | undefined;
|
|
19421
19262
|
role_user_list?: ({
|
|
19422
19263
|
role_users?: {
|
|
19423
19264
|
id?: string | undefined;
|
|
@@ -19454,7 +19295,7 @@ export declare const Envelope: {
|
|
|
19454
19295
|
lang_tag?: string | undefined;
|
|
19455
19296
|
location?: string | undefined;
|
|
19456
19297
|
online?: boolean | undefined;
|
|
19457
|
-
} & { [
|
|
19298
|
+
} & { [K_702 in Exclude<keyof I_1["list_data_socket"]["role_user_list"]["role_users"][number], keyof import("../api/api").RoleUserList_RoleUser>]: never; })[] & { [K_703 in Exclude<keyof I_1["list_data_socket"]["role_user_list"]["role_users"], keyof {
|
|
19458
19299
|
id?: string | undefined;
|
|
19459
19300
|
username?: string | undefined;
|
|
19460
19301
|
display_name?: string | undefined;
|
|
@@ -19464,14 +19305,14 @@ export declare const Envelope: {
|
|
|
19464
19305
|
online?: boolean | undefined;
|
|
19465
19306
|
}[]>]: never; }) | undefined;
|
|
19466
19307
|
cursor?: string | undefined;
|
|
19467
|
-
} & { [
|
|
19308
|
+
} & { [K_704 in Exclude<keyof I_1["list_data_socket"]["role_user_list"], keyof RoleUserList>]: never; }) | undefined;
|
|
19468
19309
|
permission_user_req?: ({
|
|
19469
19310
|
clan_id?: string | undefined;
|
|
19470
19311
|
channel_id?: string | undefined;
|
|
19471
19312
|
} & {
|
|
19472
19313
|
clan_id?: string | undefined;
|
|
19473
19314
|
channel_id?: string | undefined;
|
|
19474
|
-
} & { [
|
|
19315
|
+
} & { [K_705 in Exclude<keyof I_1["list_data_socket"]["permission_user_req"], keyof ListPermissionOfUsersRequest>]: never; }) | undefined;
|
|
19475
19316
|
role_list?: ({
|
|
19476
19317
|
roles?: {
|
|
19477
19318
|
id?: string | undefined;
|
|
@@ -19644,7 +19485,7 @@ export declare const Envelope: {
|
|
|
19644
19485
|
lang_tag?: string | undefined;
|
|
19645
19486
|
location?: string | undefined;
|
|
19646
19487
|
online?: boolean | undefined;
|
|
19647
|
-
} & { [
|
|
19488
|
+
} & { [K_706 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_707 in Exclude<keyof I_1["list_data_socket"]["role_list"]["roles"][number]["role_user_list"]["role_users"], keyof {
|
|
19648
19489
|
id?: string | undefined;
|
|
19649
19490
|
username?: string | undefined;
|
|
19650
19491
|
display_name?: string | undefined;
|
|
@@ -19654,7 +19495,7 @@ export declare const Envelope: {
|
|
|
19654
19495
|
online?: boolean | undefined;
|
|
19655
19496
|
}[]>]: never; }) | undefined;
|
|
19656
19497
|
cursor?: string | undefined;
|
|
19657
|
-
} & { [
|
|
19498
|
+
} & { [K_708 in Exclude<keyof I_1["list_data_socket"]["role_list"]["roles"][number]["role_user_list"], keyof RoleUserList>]: never; }) | undefined;
|
|
19658
19499
|
permission_list?: ({
|
|
19659
19500
|
permissions?: {
|
|
19660
19501
|
id?: string | undefined;
|
|
@@ -19691,7 +19532,7 @@ export declare const Envelope: {
|
|
|
19691
19532
|
active?: number | undefined;
|
|
19692
19533
|
scope?: number | undefined;
|
|
19693
19534
|
level?: number | undefined;
|
|
19694
|
-
} & { [
|
|
19535
|
+
} & { [K_709 in Exclude<keyof I_1["list_data_socket"]["role_list"]["roles"][number]["permission_list"]["permissions"][number], keyof import("../api/api").Permission>]: never; })[] & { [K_710 in Exclude<keyof I_1["list_data_socket"]["role_list"]["roles"][number]["permission_list"]["permissions"], keyof {
|
|
19695
19536
|
id?: string | undefined;
|
|
19696
19537
|
title?: string | undefined;
|
|
19697
19538
|
slug?: string | undefined;
|
|
@@ -19701,12 +19542,12 @@ export declare const Envelope: {
|
|
|
19701
19542
|
level?: number | undefined;
|
|
19702
19543
|
}[]>]: never; }) | undefined;
|
|
19703
19544
|
max_level_permission?: number | undefined;
|
|
19704
|
-
} & { [
|
|
19545
|
+
} & { [K_711 in Exclude<keyof I_1["list_data_socket"]["role_list"]["roles"][number]["permission_list"], keyof PermissionList>]: never; }) | undefined;
|
|
19705
19546
|
role_channel_active?: number | undefined;
|
|
19706
|
-
channel_ids?: (string[] & string[] & { [
|
|
19547
|
+
channel_ids?: (string[] & string[] & { [K_712 in Exclude<keyof I_1["list_data_socket"]["role_list"]["roles"][number]["channel_ids"], keyof string[]>]: never; }) | undefined;
|
|
19707
19548
|
max_level_permission?: number | undefined;
|
|
19708
19549
|
order_role?: number | undefined;
|
|
19709
|
-
} & { [
|
|
19550
|
+
} & { [K_713 in Exclude<keyof I_1["list_data_socket"]["role_list"]["roles"][number], keyof Role>]: never; })[] & { [K_714 in Exclude<keyof I_1["list_data_socket"]["role_list"]["roles"], keyof {
|
|
19710
19551
|
id?: string | undefined;
|
|
19711
19552
|
title?: string | undefined;
|
|
19712
19553
|
color?: string | undefined;
|
|
@@ -19748,7 +19589,7 @@ export declare const Envelope: {
|
|
|
19748
19589
|
order_role?: number | undefined;
|
|
19749
19590
|
}[]>]: never; }) | undefined;
|
|
19750
19591
|
max_level_permission?: number | undefined;
|
|
19751
|
-
} & { [
|
|
19592
|
+
} & { [K_715 in Exclude<keyof I_1["list_data_socket"]["role_list"], keyof RoleList>]: never; }) | undefined;
|
|
19752
19593
|
role_list_event_req?: ({
|
|
19753
19594
|
clan_id?: string | undefined;
|
|
19754
19595
|
limit?: number | undefined;
|
|
@@ -19759,7 +19600,7 @@ export declare const Envelope: {
|
|
|
19759
19600
|
limit?: number | undefined;
|
|
19760
19601
|
state?: number | undefined;
|
|
19761
19602
|
cursor?: string | undefined;
|
|
19762
|
-
} & { [
|
|
19603
|
+
} & { [K_716 in Exclude<keyof I_1["list_data_socket"]["role_list_event_req"], keyof RoleListEventRequest>]: never; }) | undefined;
|
|
19763
19604
|
role_event_list?: ({
|
|
19764
19605
|
limit?: number | undefined;
|
|
19765
19606
|
state?: number | undefined;
|
|
@@ -19986,7 +19827,7 @@ export declare const Envelope: {
|
|
|
19986
19827
|
lang_tag?: string | undefined;
|
|
19987
19828
|
location?: string | undefined;
|
|
19988
19829
|
online?: boolean | undefined;
|
|
19989
|
-
} & { [
|
|
19830
|
+
} & { [K_717 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_718 in Exclude<keyof I_1["list_data_socket"]["role_event_list"]["roles"]["roles"][number]["role_user_list"]["role_users"], keyof {
|
|
19990
19831
|
id?: string | undefined;
|
|
19991
19832
|
username?: string | undefined;
|
|
19992
19833
|
display_name?: string | undefined;
|
|
@@ -19996,7 +19837,7 @@ export declare const Envelope: {
|
|
|
19996
19837
|
online?: boolean | undefined;
|
|
19997
19838
|
}[]>]: never; }) | undefined;
|
|
19998
19839
|
cursor?: string | undefined;
|
|
19999
|
-
} & { [
|
|
19840
|
+
} & { [K_719 in Exclude<keyof I_1["list_data_socket"]["role_event_list"]["roles"]["roles"][number]["role_user_list"], keyof RoleUserList>]: never; }) | undefined;
|
|
20000
19841
|
permission_list?: ({
|
|
20001
19842
|
permissions?: {
|
|
20002
19843
|
id?: string | undefined;
|
|
@@ -20033,7 +19874,7 @@ export declare const Envelope: {
|
|
|
20033
19874
|
active?: number | undefined;
|
|
20034
19875
|
scope?: number | undefined;
|
|
20035
19876
|
level?: number | undefined;
|
|
20036
|
-
} & { [
|
|
19877
|
+
} & { [K_720 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_721 in Exclude<keyof I_1["list_data_socket"]["role_event_list"]["roles"]["roles"][number]["permission_list"]["permissions"], keyof {
|
|
20037
19878
|
id?: string | undefined;
|
|
20038
19879
|
title?: string | undefined;
|
|
20039
19880
|
slug?: string | undefined;
|
|
@@ -20043,12 +19884,12 @@ export declare const Envelope: {
|
|
|
20043
19884
|
level?: number | undefined;
|
|
20044
19885
|
}[]>]: never; }) | undefined;
|
|
20045
19886
|
max_level_permission?: number | undefined;
|
|
20046
|
-
} & { [
|
|
19887
|
+
} & { [K_722 in Exclude<keyof I_1["list_data_socket"]["role_event_list"]["roles"]["roles"][number]["permission_list"], keyof PermissionList>]: never; }) | undefined;
|
|
20047
19888
|
role_channel_active?: number | undefined;
|
|
20048
|
-
channel_ids?: (string[] & string[] & { [
|
|
19889
|
+
channel_ids?: (string[] & string[] & { [K_723 in Exclude<keyof I_1["list_data_socket"]["role_event_list"]["roles"]["roles"][number]["channel_ids"], keyof string[]>]: never; }) | undefined;
|
|
20049
19890
|
max_level_permission?: number | undefined;
|
|
20050
19891
|
order_role?: number | undefined;
|
|
20051
|
-
} & { [
|
|
19892
|
+
} & { [K_724 in Exclude<keyof I_1["list_data_socket"]["role_event_list"]["roles"]["roles"][number], keyof Role>]: never; })[] & { [K_725 in Exclude<keyof I_1["list_data_socket"]["role_event_list"]["roles"]["roles"], keyof {
|
|
20052
19893
|
id?: string | undefined;
|
|
20053
19894
|
title?: string | undefined;
|
|
20054
19895
|
color?: string | undefined;
|
|
@@ -20090,15 +19931,15 @@ export declare const Envelope: {
|
|
|
20090
19931
|
order_role?: number | undefined;
|
|
20091
19932
|
}[]>]: never; }) | undefined;
|
|
20092
19933
|
max_level_permission?: number | undefined;
|
|
20093
|
-
} & { [
|
|
20094
|
-
} & { [
|
|
19934
|
+
} & { [K_726 in Exclude<keyof I_1["list_data_socket"]["role_event_list"]["roles"], keyof RoleList>]: never; }) | undefined;
|
|
19935
|
+
} & { [K_727 in Exclude<keyof I_1["list_data_socket"]["role_event_list"], keyof RoleListEventResponse>]: never; }) | undefined;
|
|
20095
19936
|
user_permission_req?: ({
|
|
20096
19937
|
clan_id?: string | undefined;
|
|
20097
19938
|
channel_id?: string | undefined;
|
|
20098
19939
|
} & {
|
|
20099
19940
|
clan_id?: string | undefined;
|
|
20100
19941
|
channel_id?: string | undefined;
|
|
20101
|
-
} & { [
|
|
19942
|
+
} & { [K_728 in Exclude<keyof I_1["list_data_socket"]["user_permission_req"], keyof UserPermissionInChannelListRequest>]: never; }) | undefined;
|
|
20102
19943
|
user_permission_list?: ({
|
|
20103
19944
|
clan_id?: string | undefined;
|
|
20104
19945
|
channel_id?: string | undefined;
|
|
@@ -20153,7 +19994,7 @@ export declare const Envelope: {
|
|
|
20153
19994
|
active?: number | undefined;
|
|
20154
19995
|
scope?: number | undefined;
|
|
20155
19996
|
level?: number | undefined;
|
|
20156
|
-
} & { [
|
|
19997
|
+
} & { [K_729 in Exclude<keyof I_1["list_data_socket"]["user_permission_list"]["permissions"]["permissions"][number], keyof import("../api/api").Permission>]: never; })[] & { [K_730 in Exclude<keyof I_1["list_data_socket"]["user_permission_list"]["permissions"]["permissions"], keyof {
|
|
20157
19998
|
id?: string | undefined;
|
|
20158
19999
|
title?: string | undefined;
|
|
20159
20000
|
slug?: string | undefined;
|
|
@@ -20163,8 +20004,8 @@ export declare const Envelope: {
|
|
|
20163
20004
|
level?: number | undefined;
|
|
20164
20005
|
}[]>]: never; }) | undefined;
|
|
20165
20006
|
max_level_permission?: number | undefined;
|
|
20166
|
-
} & { [
|
|
20167
|
-
} & { [
|
|
20007
|
+
} & { [K_731 in Exclude<keyof I_1["list_data_socket"]["user_permission_list"]["permissions"], keyof PermissionList>]: never; }) | undefined;
|
|
20008
|
+
} & { [K_732 in Exclude<keyof I_1["list_data_socket"]["user_permission_list"], keyof UserPermissionInChannelListResponse>]: never; }) | undefined;
|
|
20168
20009
|
permission_role_req?: ({
|
|
20169
20010
|
role_id?: string | undefined;
|
|
20170
20011
|
channel_id?: string | undefined;
|
|
@@ -20173,7 +20014,7 @@ export declare const Envelope: {
|
|
|
20173
20014
|
role_id?: string | undefined;
|
|
20174
20015
|
channel_id?: string | undefined;
|
|
20175
20016
|
user_id?: string | undefined;
|
|
20176
|
-
} & { [
|
|
20017
|
+
} & { [K_733 in Exclude<keyof I_1["list_data_socket"]["permission_role_req"], keyof PermissionRoleChannelListEventRequest>]: never; }) | undefined;
|
|
20177
20018
|
permission_role_list?: ({
|
|
20178
20019
|
role_id?: string | undefined;
|
|
20179
20020
|
channel_id?: string | undefined;
|
|
@@ -20195,11 +20036,11 @@ export declare const Envelope: {
|
|
|
20195
20036
|
} & {
|
|
20196
20037
|
permission_id?: string | undefined;
|
|
20197
20038
|
active?: boolean | undefined;
|
|
20198
|
-
} & { [
|
|
20039
|
+
} & { [K_734 in Exclude<keyof I_1["list_data_socket"]["permission_role_list"]["permission_role_channel"][number], keyof import("../api/api").PermissionRoleChannel>]: never; })[] & { [K_735 in Exclude<keyof I_1["list_data_socket"]["permission_role_list"]["permission_role_channel"], keyof {
|
|
20199
20040
|
permission_id?: string | undefined;
|
|
20200
20041
|
active?: boolean | undefined;
|
|
20201
20042
|
}[]>]: never; }) | undefined;
|
|
20202
|
-
} & { [
|
|
20043
|
+
} & { [K_736 in Exclude<keyof I_1["list_data_socket"]["permission_role_list"], keyof PermissionRoleChannelListEventResponse>]: never; }) | undefined;
|
|
20203
20044
|
emoji_list?: ({
|
|
20204
20045
|
emoji_list?: {
|
|
20205
20046
|
id?: string | undefined;
|
|
@@ -20243,7 +20084,7 @@ export declare const Envelope: {
|
|
|
20243
20084
|
logo?: string | undefined;
|
|
20244
20085
|
clan_name?: string | undefined;
|
|
20245
20086
|
is_for_sale?: boolean | undefined;
|
|
20246
|
-
} & { [
|
|
20087
|
+
} & { [K_737 in Exclude<keyof I_1["list_data_socket"]["emoji_list"]["emoji_list"][number], keyof import("../api/api").ClanEmoji>]: never; })[] & { [K_738 in Exclude<keyof I_1["list_data_socket"]["emoji_list"]["emoji_list"], keyof {
|
|
20247
20088
|
id?: string | undefined;
|
|
20248
20089
|
src?: string | undefined;
|
|
20249
20090
|
shortname?: string | undefined;
|
|
@@ -20254,7 +20095,7 @@ export declare const Envelope: {
|
|
|
20254
20095
|
clan_name?: string | undefined;
|
|
20255
20096
|
is_for_sale?: boolean | undefined;
|
|
20256
20097
|
}[]>]: never; }) | undefined;
|
|
20257
|
-
} & { [
|
|
20098
|
+
} & { [K_739 in Exclude<keyof I_1["list_data_socket"]["emoji_list"], "emoji_list">]: never; }) | undefined;
|
|
20258
20099
|
list_friend_req?: ({
|
|
20259
20100
|
limit?: number | undefined;
|
|
20260
20101
|
state?: number | undefined;
|
|
@@ -20263,7 +20104,7 @@ export declare const Envelope: {
|
|
|
20263
20104
|
limit?: number | undefined;
|
|
20264
20105
|
state?: number | undefined;
|
|
20265
20106
|
cursor?: string | undefined;
|
|
20266
|
-
} & { [
|
|
20107
|
+
} & { [K_740 in Exclude<keyof I_1["list_data_socket"]["list_friend_req"], keyof ListFriendsRequest>]: never; }) | undefined;
|
|
20267
20108
|
friend_list?: ({
|
|
20268
20109
|
friends?: {
|
|
20269
20110
|
user?: {
|
|
@@ -20387,13 +20228,13 @@ export declare const Envelope: {
|
|
|
20387
20228
|
is_mobile?: boolean | undefined;
|
|
20388
20229
|
dob?: Date | undefined;
|
|
20389
20230
|
mezon_id?: string | undefined;
|
|
20390
|
-
list_nick_names?: (string[] & string[] & { [
|
|
20231
|
+
list_nick_names?: (string[] & string[] & { [K_741 in Exclude<keyof I_1["list_data_socket"]["friend_list"]["friends"][number]["user"]["list_nick_names"], keyof string[]>]: never; }) | undefined;
|
|
20391
20232
|
status?: string | undefined;
|
|
20392
|
-
} & { [
|
|
20233
|
+
} & { [K_742 in Exclude<keyof I_1["list_data_socket"]["friend_list"]["friends"][number]["user"], keyof import("../api/api").User>]: never; }) | undefined;
|
|
20393
20234
|
state?: number | undefined;
|
|
20394
20235
|
update_time?: Date | undefined;
|
|
20395
20236
|
source_id?: string | undefined;
|
|
20396
|
-
} & { [
|
|
20237
|
+
} & { [K_743 in Exclude<keyof I_1["list_data_socket"]["friend_list"]["friends"][number], keyof import("../api/api").Friend>]: never; })[] & { [K_744 in Exclude<keyof I_1["list_data_socket"]["friend_list"]["friends"], keyof {
|
|
20397
20238
|
user?: {
|
|
20398
20239
|
id?: string | undefined;
|
|
20399
20240
|
username?: string | undefined;
|
|
@@ -20421,12 +20262,12 @@ export declare const Envelope: {
|
|
|
20421
20262
|
source_id?: string | undefined;
|
|
20422
20263
|
}[]>]: never; }) | undefined;
|
|
20423
20264
|
cursor?: string | undefined;
|
|
20424
|
-
} & { [
|
|
20265
|
+
} & { [K_745 in Exclude<keyof I_1["list_data_socket"]["friend_list"], keyof FriendList>]: never; }) | undefined;
|
|
20425
20266
|
list_apps_req?: ({
|
|
20426
20267
|
clan_id?: string | undefined;
|
|
20427
20268
|
} & {
|
|
20428
20269
|
clan_id?: string | undefined;
|
|
20429
|
-
} & { [
|
|
20270
|
+
} & { [K_746 in Exclude<keyof I_1["list_data_socket"]["list_apps_req"], "clan_id">]: never; }) | undefined;
|
|
20430
20271
|
channel_apps_list?: ({
|
|
20431
20272
|
channel_apps?: {
|
|
20432
20273
|
id?: string | undefined;
|
|
@@ -20454,14 +20295,14 @@ export declare const Envelope: {
|
|
|
20454
20295
|
channel_id?: string | undefined;
|
|
20455
20296
|
app_id?: string | undefined;
|
|
20456
20297
|
app_url?: string | undefined;
|
|
20457
|
-
} & { [
|
|
20298
|
+
} & { [K_747 in Exclude<keyof I_1["list_data_socket"]["channel_apps_list"]["channel_apps"][number], keyof import("../api/api").ChannelAppResponse>]: never; })[] & { [K_748 in Exclude<keyof I_1["list_data_socket"]["channel_apps_list"]["channel_apps"], keyof {
|
|
20458
20299
|
id?: string | undefined;
|
|
20459
20300
|
clan_id?: string | undefined;
|
|
20460
20301
|
channel_id?: string | undefined;
|
|
20461
20302
|
app_id?: string | undefined;
|
|
20462
20303
|
app_url?: string | undefined;
|
|
20463
20304
|
}[]>]: never; }) | undefined;
|
|
20464
|
-
} & { [
|
|
20305
|
+
} & { [K_749 in Exclude<keyof I_1["list_data_socket"]["channel_apps_list"], "channel_apps">]: never; }) | undefined;
|
|
20465
20306
|
user_activity_list?: ({
|
|
20466
20307
|
activities?: {
|
|
20467
20308
|
user_id?: string | undefined;
|
|
@@ -20501,7 +20342,7 @@ export declare const Envelope: {
|
|
|
20501
20342
|
end_time?: Date | undefined;
|
|
20502
20343
|
application_id?: string | undefined;
|
|
20503
20344
|
status?: number | undefined;
|
|
20504
|
-
} & { [
|
|
20345
|
+
} & { [K_750 in Exclude<keyof I_1["list_data_socket"]["user_activity_list"]["activities"][number], keyof UserActivity>]: never; })[] & { [K_751 in Exclude<keyof I_1["list_data_socket"]["user_activity_list"]["activities"], keyof {
|
|
20505
20346
|
user_id?: string | undefined;
|
|
20506
20347
|
activity_name?: string | undefined;
|
|
20507
20348
|
activity_type?: number | undefined;
|
|
@@ -20511,12 +20352,12 @@ export declare const Envelope: {
|
|
|
20511
20352
|
application_id?: string | undefined;
|
|
20512
20353
|
status?: number | undefined;
|
|
20513
20354
|
}[]>]: never; }) | undefined;
|
|
20514
|
-
} & { [
|
|
20355
|
+
} & { [K_752 in Exclude<keyof I_1["list_data_socket"]["user_activity_list"], "activities">]: never; }) | undefined;
|
|
20515
20356
|
list_clan_user_req?: ({
|
|
20516
20357
|
clan_id?: string | undefined;
|
|
20517
20358
|
} & {
|
|
20518
20359
|
clan_id?: string | undefined;
|
|
20519
|
-
} & { [
|
|
20360
|
+
} & { [K_753 in Exclude<keyof I_1["list_data_socket"]["list_clan_user_req"], "clan_id">]: never; }) | undefined;
|
|
20520
20361
|
clan_user_list?: ({
|
|
20521
20362
|
clan_users?: {
|
|
20522
20363
|
user?: {
|
|
@@ -20644,14 +20485,14 @@ export declare const Envelope: {
|
|
|
20644
20485
|
is_mobile?: boolean | undefined;
|
|
20645
20486
|
dob?: Date | undefined;
|
|
20646
20487
|
mezon_id?: string | undefined;
|
|
20647
|
-
list_nick_names?: (string[] & string[] & { [
|
|
20488
|
+
list_nick_names?: (string[] & string[] & { [K_754 in Exclude<keyof I_1["list_data_socket"]["clan_user_list"]["clan_users"][number]["user"]["list_nick_names"], keyof string[]>]: never; }) | undefined;
|
|
20648
20489
|
status?: string | undefined;
|
|
20649
|
-
} & { [
|
|
20650
|
-
role_id?: (string[] & string[] & { [
|
|
20490
|
+
} & { [K_755 in Exclude<keyof I_1["list_data_socket"]["clan_user_list"]["clan_users"][number]["user"], keyof import("../api/api").User>]: never; }) | undefined;
|
|
20491
|
+
role_id?: (string[] & string[] & { [K_756 in Exclude<keyof I_1["list_data_socket"]["clan_user_list"]["clan_users"][number]["role_id"], keyof string[]>]: never; }) | undefined;
|
|
20651
20492
|
clan_nick?: string | undefined;
|
|
20652
20493
|
clan_avatar?: string | undefined;
|
|
20653
20494
|
clan_id?: string | undefined;
|
|
20654
|
-
} & { [
|
|
20495
|
+
} & { [K_757 in Exclude<keyof I_1["list_data_socket"]["clan_user_list"]["clan_users"][number], keyof import("../api/api").ClanUserList_ClanUser>]: never; })[] & { [K_758 in Exclude<keyof I_1["list_data_socket"]["clan_user_list"]["clan_users"], keyof {
|
|
20655
20496
|
user?: {
|
|
20656
20497
|
id?: string | undefined;
|
|
20657
20498
|
username?: string | undefined;
|
|
@@ -20681,12 +20522,12 @@ export declare const Envelope: {
|
|
|
20681
20522
|
}[]>]: never; }) | undefined;
|
|
20682
20523
|
cursor?: string | undefined;
|
|
20683
20524
|
clan_id?: string | undefined;
|
|
20684
|
-
} & { [
|
|
20525
|
+
} & { [K_759 in Exclude<keyof I_1["list_data_socket"]["clan_user_list"], keyof ClanUserList>]: never; }) | undefined;
|
|
20685
20526
|
list_event_req?: ({
|
|
20686
20527
|
clan_id?: string | undefined;
|
|
20687
20528
|
} & {
|
|
20688
20529
|
clan_id?: string | undefined;
|
|
20689
|
-
} & { [
|
|
20530
|
+
} & { [K_760 in Exclude<keyof I_1["list_data_socket"]["list_event_req"], "clan_id">]: never; }) | undefined;
|
|
20690
20531
|
event_list?: ({
|
|
20691
20532
|
events?: {
|
|
20692
20533
|
id?: string | undefined;
|
|
@@ -20784,7 +20625,7 @@ export declare const Envelope: {
|
|
|
20784
20625
|
address?: string | undefined;
|
|
20785
20626
|
start_time?: Date | undefined;
|
|
20786
20627
|
end_time?: Date | undefined;
|
|
20787
|
-
user_ids?: (string[] & string[] & { [
|
|
20628
|
+
user_ids?: (string[] & string[] & { [K_761 in Exclude<keyof I_1["list_data_socket"]["event_list"]["events"][number]["user_ids"], keyof string[]>]: never; }) | undefined;
|
|
20788
20629
|
create_time?: Date | undefined;
|
|
20789
20630
|
max_permission?: number | undefined;
|
|
20790
20631
|
channel_id?: string | undefined;
|
|
@@ -20803,8 +20644,8 @@ export declare const Envelope: {
|
|
|
20803
20644
|
external_link?: string | undefined;
|
|
20804
20645
|
creator_id?: string | undefined;
|
|
20805
20646
|
event_id?: string | undefined;
|
|
20806
|
-
} & { [
|
|
20807
|
-
} & { [
|
|
20647
|
+
} & { [K_762 in Exclude<keyof I_1["list_data_socket"]["event_list"]["events"][number]["meet_room"], keyof import("../api/api").GenerateMezonMeetResponse>]: never; }) | undefined;
|
|
20648
|
+
} & { [K_763 in Exclude<keyof I_1["list_data_socket"]["event_list"]["events"][number], keyof import("../api/api").EventManagement>]: never; })[] & { [K_764 in Exclude<keyof I_1["list_data_socket"]["event_list"]["events"], keyof {
|
|
20808
20649
|
id?: string | undefined;
|
|
20809
20650
|
title?: string | undefined;
|
|
20810
20651
|
logo?: string | undefined;
|
|
@@ -20832,7 +20673,7 @@ export declare const Envelope: {
|
|
|
20832
20673
|
event_id?: string | undefined;
|
|
20833
20674
|
} | undefined;
|
|
20834
20675
|
}[]>]: never; }) | undefined;
|
|
20835
|
-
} & { [
|
|
20676
|
+
} & { [K_765 in Exclude<keyof I_1["list_data_socket"]["event_list"], "events">]: never; }) | undefined;
|
|
20836
20677
|
list_category_req?: ({
|
|
20837
20678
|
creator_id?: string | undefined;
|
|
20838
20679
|
clan_id?: string | undefined;
|
|
@@ -20845,7 +20686,7 @@ export declare const Envelope: {
|
|
|
20845
20686
|
category_name?: string | undefined;
|
|
20846
20687
|
category_id?: string | undefined;
|
|
20847
20688
|
category_order?: number | undefined;
|
|
20848
|
-
} & { [
|
|
20689
|
+
} & { [K_766 in Exclude<keyof I_1["list_data_socket"]["list_category_req"], keyof CategoryDesc>]: never; }) | undefined;
|
|
20849
20690
|
category_list?: ({
|
|
20850
20691
|
categorydesc?: {
|
|
20851
20692
|
creator_id?: string | undefined;
|
|
@@ -20873,14 +20714,14 @@ export declare const Envelope: {
|
|
|
20873
20714
|
category_name?: string | undefined;
|
|
20874
20715
|
category_id?: string | undefined;
|
|
20875
20716
|
category_order?: number | undefined;
|
|
20876
|
-
} & { [
|
|
20717
|
+
} & { [K_767 in Exclude<keyof I_1["list_data_socket"]["category_list"]["categorydesc"][number], keyof CategoryDesc>]: never; })[] & { [K_768 in Exclude<keyof I_1["list_data_socket"]["category_list"]["categorydesc"], keyof {
|
|
20877
20718
|
creator_id?: string | undefined;
|
|
20878
20719
|
clan_id?: string | undefined;
|
|
20879
20720
|
category_name?: string | undefined;
|
|
20880
20721
|
category_id?: string | undefined;
|
|
20881
20722
|
category_order?: number | undefined;
|
|
20882
20723
|
}[]>]: never; }) | undefined;
|
|
20883
|
-
} & { [
|
|
20724
|
+
} & { [K_769 in Exclude<keyof I_1["list_data_socket"]["category_list"], "categorydesc">]: never; }) | undefined;
|
|
20884
20725
|
stream_user_list?: ({
|
|
20885
20726
|
streaming_channel_users?: {
|
|
20886
20727
|
id?: string | undefined;
|
|
@@ -20904,24 +20745,24 @@ export declare const Envelope: {
|
|
|
20904
20745
|
user_id?: string | undefined;
|
|
20905
20746
|
channel_id?: string | undefined;
|
|
20906
20747
|
participant?: string | undefined;
|
|
20907
|
-
} & { [
|
|
20748
|
+
} & { [K_770 in Exclude<keyof I_1["list_data_socket"]["stream_user_list"]["streaming_channel_users"][number], keyof import("../api/api").StreamingChannelUser>]: never; })[] & { [K_771 in Exclude<keyof I_1["list_data_socket"]["stream_user_list"]["streaming_channel_users"], keyof {
|
|
20908
20749
|
id?: string | undefined;
|
|
20909
20750
|
user_id?: string | undefined;
|
|
20910
20751
|
channel_id?: string | undefined;
|
|
20911
20752
|
participant?: string | undefined;
|
|
20912
20753
|
}[]>]: never; }) | undefined;
|
|
20913
|
-
} & { [
|
|
20754
|
+
} & { [K_772 in Exclude<keyof I_1["list_data_socket"]["stream_user_list"], "streaming_channel_users">]: never; }) | undefined;
|
|
20914
20755
|
list_unread_msg_indicator_req?: ({
|
|
20915
20756
|
clan_id?: string | undefined;
|
|
20916
20757
|
} & {
|
|
20917
20758
|
clan_id?: string | undefined;
|
|
20918
|
-
} & { [
|
|
20759
|
+
} & { [K_773 in Exclude<keyof I_1["list_data_socket"]["list_unread_msg_indicator_req"], "clan_id">]: never; }) | undefined;
|
|
20919
20760
|
unread_msg_indicator?: ({
|
|
20920
20761
|
has_unread_message?: boolean | undefined;
|
|
20921
20762
|
} & {
|
|
20922
20763
|
has_unread_message?: boolean | undefined;
|
|
20923
|
-
} & { [
|
|
20924
|
-
} & { [
|
|
20764
|
+
} & { [K_774 in Exclude<keyof I_1["list_data_socket"]["unread_msg_indicator"], "has_unread_message">]: never; }) | undefined;
|
|
20765
|
+
} & { [K_775 in Exclude<keyof I_1["list_data_socket"], keyof ListDataSocket>]: never; }) | undefined;
|
|
20925
20766
|
quick_menu_event?: ({
|
|
20926
20767
|
menu_name?: string | undefined;
|
|
20927
20768
|
message?: {
|
|
@@ -21044,7 +20885,7 @@ export declare const Envelope: {
|
|
|
21044
20885
|
create_time?: Date | undefined;
|
|
21045
20886
|
s?: number | undefined;
|
|
21046
20887
|
e?: number | undefined;
|
|
21047
|
-
} & { [
|
|
20888
|
+
} & { [K_776 in Exclude<keyof I_1["quick_menu_event"]["message"]["mentions"][number], keyof MessageMention>]: never; })[] & { [K_777 in Exclude<keyof I_1["quick_menu_event"]["message"]["mentions"], keyof {
|
|
21048
20889
|
id?: string | undefined;
|
|
21049
20890
|
user_id?: string | undefined;
|
|
21050
20891
|
username?: string | undefined;
|
|
@@ -21078,7 +20919,7 @@ export declare const Envelope: {
|
|
|
21078
20919
|
width?: number | undefined;
|
|
21079
20920
|
height?: number | undefined;
|
|
21080
20921
|
thumbnail?: string | undefined;
|
|
21081
|
-
} & { [
|
|
20922
|
+
} & { [K_778 in Exclude<keyof I_1["quick_menu_event"]["message"]["attachments"][number], keyof MessageAttachment>]: never; })[] & { [K_779 in Exclude<keyof I_1["quick_menu_event"]["message"]["attachments"], keyof {
|
|
21082
20923
|
filename?: string | undefined;
|
|
21083
20924
|
size?: number | undefined;
|
|
21084
20925
|
url?: string | undefined;
|
|
@@ -21120,7 +20961,7 @@ export declare const Envelope: {
|
|
|
21120
20961
|
mesages_sender_avatar?: string | undefined;
|
|
21121
20962
|
message_sender_clan_nick?: string | undefined;
|
|
21122
20963
|
message_sender_display_name?: string | undefined;
|
|
21123
|
-
} & { [
|
|
20964
|
+
} & { [K_780 in Exclude<keyof I_1["quick_menu_event"]["message"]["references"][number], keyof MessageRef>]: never; })[] & { [K_781 in Exclude<keyof I_1["quick_menu_event"]["message"]["references"], keyof {
|
|
21124
20965
|
message_id?: string | undefined;
|
|
21125
20966
|
message_ref_id?: string | undefined;
|
|
21126
20967
|
content?: string | undefined;
|
|
@@ -21140,8 +20981,8 @@ export declare const Envelope: {
|
|
|
21140
20981
|
code?: number | undefined;
|
|
21141
20982
|
topic_id?: string | undefined;
|
|
21142
20983
|
id?: string | undefined;
|
|
21143
|
-
} & { [
|
|
21144
|
-
} & { [
|
|
20984
|
+
} & { [K_782 in Exclude<keyof I_1["quick_menu_event"]["message"], keyof ChannelMessageSend>]: never; }) | undefined;
|
|
20985
|
+
} & { [K_783 in Exclude<keyof I_1["quick_menu_event"], keyof QuickMenuDataEvent>]: never; }) | undefined;
|
|
21145
20986
|
un_block_friend?: ({
|
|
21146
20987
|
user_id?: string | undefined;
|
|
21147
20988
|
username?: string | undefined;
|
|
@@ -21156,7 +20997,7 @@ export declare const Envelope: {
|
|
|
21156
20997
|
display_name?: string | undefined;
|
|
21157
20998
|
status?: string | undefined;
|
|
21158
20999
|
user_status?: string | undefined;
|
|
21159
|
-
} & { [
|
|
21000
|
+
} & { [K_784 in Exclude<keyof I_1["un_block_friend"], keyof UnblockFriend>]: never; }) | undefined;
|
|
21160
21001
|
meet_participant_event?: ({
|
|
21161
21002
|
username?: string | undefined;
|
|
21162
21003
|
room_name?: string | undefined;
|
|
@@ -21169,7 +21010,7 @@ export declare const Envelope: {
|
|
|
21169
21010
|
channel_id?: string | undefined;
|
|
21170
21011
|
clan_id?: string | undefined;
|
|
21171
21012
|
action?: number | undefined;
|
|
21172
|
-
} & { [
|
|
21013
|
+
} & { [K_785 in Exclude<keyof I_1["meet_participant_event"], keyof MeetParticipantEvent>]: never; }) | undefined;
|
|
21173
21014
|
transfer_ownership_event?: ({
|
|
21174
21015
|
clan_id?: string | undefined;
|
|
21175
21016
|
prev_owner?: string | undefined;
|
|
@@ -21178,7 +21019,7 @@ export declare const Envelope: {
|
|
|
21178
21019
|
clan_id?: string | undefined;
|
|
21179
21020
|
prev_owner?: string | undefined;
|
|
21180
21021
|
curr_owner?: string | undefined;
|
|
21181
|
-
} & { [
|
|
21022
|
+
} & { [K_786 in Exclude<keyof I_1["transfer_ownership_event"], keyof TransferOwnershipEvent>]: never; }) | undefined;
|
|
21182
21023
|
add_friend?: ({
|
|
21183
21024
|
user_id?: string | undefined;
|
|
21184
21025
|
username?: string | undefined;
|
|
@@ -21189,7 +21030,7 @@ export declare const Envelope: {
|
|
|
21189
21030
|
username?: string | undefined;
|
|
21190
21031
|
display_name?: string | undefined;
|
|
21191
21032
|
avatar?: string | undefined;
|
|
21192
|
-
} & { [
|
|
21033
|
+
} & { [K_787 in Exclude<keyof I_1["add_friend"], keyof AddFriend>]: never; }) | undefined;
|
|
21193
21034
|
ban_user_event?: ({
|
|
21194
21035
|
user_ids?: string[] | undefined;
|
|
21195
21036
|
action?: number | undefined;
|
|
@@ -21197,13 +21038,20 @@ export declare const Envelope: {
|
|
|
21197
21038
|
channel_id?: string | undefined;
|
|
21198
21039
|
clan_id?: string | undefined;
|
|
21199
21040
|
} & {
|
|
21200
|
-
user_ids?: (string[] & string[] & { [
|
|
21041
|
+
user_ids?: (string[] & string[] & { [K_788 in Exclude<keyof I_1["ban_user_event"]["user_ids"], keyof string[]>]: never; }) | undefined;
|
|
21201
21042
|
action?: number | undefined;
|
|
21202
21043
|
banner_id?: string | undefined;
|
|
21203
21044
|
channel_id?: string | undefined;
|
|
21204
21045
|
clan_id?: string | undefined;
|
|
21205
|
-
} & { [
|
|
21206
|
-
|
|
21046
|
+
} & { [K_789 in Exclude<keyof I_1["ban_user_event"], keyof BannedUserEvent>]: never; }) | undefined;
|
|
21047
|
+
active_archived_thread?: ({
|
|
21048
|
+
clan_id?: string | undefined;
|
|
21049
|
+
channel_id?: string | undefined;
|
|
21050
|
+
} & {
|
|
21051
|
+
clan_id?: string | undefined;
|
|
21052
|
+
channel_id?: string | undefined;
|
|
21053
|
+
} & { [K_790 in Exclude<keyof I_1["active_archived_thread"], keyof ActiveArchivedThread>]: never; }) | undefined;
|
|
21054
|
+
} & { [K_791 in Exclude<keyof I_1, keyof Envelope>]: never; }>(object: I_1): Envelope;
|
|
21207
21055
|
};
|
|
21208
21056
|
export declare const FollowEvent: {
|
|
21209
21057
|
encode(_: FollowEvent, writer?: _m0.Writer): _m0.Writer;
|
|
@@ -21393,20 +21241,14 @@ export declare const AddClanUserEvent: {
|
|
|
21393
21241
|
username?: string | undefined;
|
|
21394
21242
|
avatar?: string | undefined;
|
|
21395
21243
|
display_name?: string | undefined;
|
|
21396
|
-
about_me?: string | undefined;
|
|
21397
21244
|
user_status?: string | undefined;
|
|
21398
21245
|
status?: string | undefined;
|
|
21399
|
-
create_time_second?: number | undefined;
|
|
21400
21246
|
fcm_tokens?: {
|
|
21401
21247
|
device_id?: string | undefined;
|
|
21402
21248
|
token_id?: string | undefined;
|
|
21403
21249
|
platform?: string | undefined;
|
|
21404
21250
|
}[] | undefined;
|
|
21405
|
-
online?: boolean | undefined;
|
|
21406
|
-
is_disabled?: boolean | undefined;
|
|
21407
21251
|
joined_clans?: string[] | undefined;
|
|
21408
|
-
pubkey?: string | undefined;
|
|
21409
|
-
mezon_id?: string | undefined;
|
|
21410
21252
|
app_token?: string | undefined;
|
|
21411
21253
|
app_url?: string | undefined;
|
|
21412
21254
|
is_bot?: boolean | undefined;
|
|
@@ -21420,20 +21262,14 @@ export declare const AddClanUserEvent: {
|
|
|
21420
21262
|
username?: string | undefined;
|
|
21421
21263
|
avatar?: string | undefined;
|
|
21422
21264
|
display_name?: string | undefined;
|
|
21423
|
-
about_me?: string | undefined;
|
|
21424
21265
|
user_status?: string | undefined;
|
|
21425
21266
|
status?: string | undefined;
|
|
21426
|
-
create_time_second?: number | undefined;
|
|
21427
21267
|
fcm_tokens?: {
|
|
21428
21268
|
device_id?: string | undefined;
|
|
21429
21269
|
token_id?: string | undefined;
|
|
21430
21270
|
platform?: string | undefined;
|
|
21431
21271
|
}[] | undefined;
|
|
21432
|
-
online?: boolean | undefined;
|
|
21433
|
-
is_disabled?: boolean | undefined;
|
|
21434
21272
|
joined_clans?: string[] | undefined;
|
|
21435
|
-
pubkey?: string | undefined;
|
|
21436
|
-
mezon_id?: string | undefined;
|
|
21437
21273
|
app_token?: string | undefined;
|
|
21438
21274
|
app_url?: string | undefined;
|
|
21439
21275
|
is_bot?: boolean | undefined;
|
|
@@ -21443,10 +21279,8 @@ export declare const AddClanUserEvent: {
|
|
|
21443
21279
|
username?: string | undefined;
|
|
21444
21280
|
avatar?: string | undefined;
|
|
21445
21281
|
display_name?: string | undefined;
|
|
21446
|
-
about_me?: string | undefined;
|
|
21447
21282
|
user_status?: string | undefined;
|
|
21448
21283
|
status?: string | undefined;
|
|
21449
|
-
create_time_second?: number | undefined;
|
|
21450
21284
|
fcm_tokens?: ({
|
|
21451
21285
|
device_id?: string | undefined;
|
|
21452
21286
|
token_id?: string | undefined;
|
|
@@ -21464,11 +21298,7 @@ export declare const AddClanUserEvent: {
|
|
|
21464
21298
|
token_id?: string | undefined;
|
|
21465
21299
|
platform?: string | undefined;
|
|
21466
21300
|
}[]>]: never; }) | undefined;
|
|
21467
|
-
online?: boolean | undefined;
|
|
21468
|
-
is_disabled?: boolean | undefined;
|
|
21469
21301
|
joined_clans?: (string[] & string[] & { [K_2 in Exclude<keyof I["user"]["joined_clans"], keyof string[]>]: never; }) | undefined;
|
|
21470
|
-
pubkey?: string | undefined;
|
|
21471
|
-
mezon_id?: string | undefined;
|
|
21472
21302
|
app_token?: string | undefined;
|
|
21473
21303
|
app_url?: string | undefined;
|
|
21474
21304
|
is_bot?: boolean | undefined;
|
|
@@ -21483,20 +21313,14 @@ export declare const AddClanUserEvent: {
|
|
|
21483
21313
|
username?: string | undefined;
|
|
21484
21314
|
avatar?: string | undefined;
|
|
21485
21315
|
display_name?: string | undefined;
|
|
21486
|
-
about_me?: string | undefined;
|
|
21487
21316
|
user_status?: string | undefined;
|
|
21488
21317
|
status?: string | undefined;
|
|
21489
|
-
create_time_second?: number | undefined;
|
|
21490
21318
|
fcm_tokens?: {
|
|
21491
21319
|
device_id?: string | undefined;
|
|
21492
21320
|
token_id?: string | undefined;
|
|
21493
21321
|
platform?: string | undefined;
|
|
21494
21322
|
}[] | undefined;
|
|
21495
|
-
online?: boolean | undefined;
|
|
21496
|
-
is_disabled?: boolean | undefined;
|
|
21497
21323
|
joined_clans?: string[] | undefined;
|
|
21498
|
-
pubkey?: string | undefined;
|
|
21499
|
-
mezon_id?: string | undefined;
|
|
21500
21324
|
app_token?: string | undefined;
|
|
21501
21325
|
app_url?: string | undefined;
|
|
21502
21326
|
is_bot?: boolean | undefined;
|
|
@@ -21510,20 +21334,14 @@ export declare const AddClanUserEvent: {
|
|
|
21510
21334
|
username?: string | undefined;
|
|
21511
21335
|
avatar?: string | undefined;
|
|
21512
21336
|
display_name?: string | undefined;
|
|
21513
|
-
about_me?: string | undefined;
|
|
21514
21337
|
user_status?: string | undefined;
|
|
21515
21338
|
status?: string | undefined;
|
|
21516
|
-
create_time_second?: number | undefined;
|
|
21517
21339
|
fcm_tokens?: {
|
|
21518
21340
|
device_id?: string | undefined;
|
|
21519
21341
|
token_id?: string | undefined;
|
|
21520
21342
|
platform?: string | undefined;
|
|
21521
21343
|
}[] | undefined;
|
|
21522
|
-
online?: boolean | undefined;
|
|
21523
|
-
is_disabled?: boolean | undefined;
|
|
21524
21344
|
joined_clans?: string[] | undefined;
|
|
21525
|
-
pubkey?: string | undefined;
|
|
21526
|
-
mezon_id?: string | undefined;
|
|
21527
21345
|
app_token?: string | undefined;
|
|
21528
21346
|
app_url?: string | undefined;
|
|
21529
21347
|
is_bot?: boolean | undefined;
|
|
@@ -21533,10 +21351,8 @@ export declare const AddClanUserEvent: {
|
|
|
21533
21351
|
username?: string | undefined;
|
|
21534
21352
|
avatar?: string | undefined;
|
|
21535
21353
|
display_name?: string | undefined;
|
|
21536
|
-
about_me?: string | undefined;
|
|
21537
21354
|
user_status?: string | undefined;
|
|
21538
21355
|
status?: string | undefined;
|
|
21539
|
-
create_time_second?: number | undefined;
|
|
21540
21356
|
fcm_tokens?: ({
|
|
21541
21357
|
device_id?: string | undefined;
|
|
21542
21358
|
token_id?: string | undefined;
|
|
@@ -21554,11 +21370,7 @@ export declare const AddClanUserEvent: {
|
|
|
21554
21370
|
token_id?: string | undefined;
|
|
21555
21371
|
platform?: string | undefined;
|
|
21556
21372
|
}[]>]: never; }) | undefined;
|
|
21557
|
-
online?: boolean | undefined;
|
|
21558
|
-
is_disabled?: boolean | undefined;
|
|
21559
21373
|
joined_clans?: (string[] & string[] & { [K_7 in Exclude<keyof I_1["user"]["joined_clans"], keyof string[]>]: never; }) | undefined;
|
|
21560
|
-
pubkey?: string | undefined;
|
|
21561
|
-
mezon_id?: string | undefined;
|
|
21562
21374
|
app_token?: string | undefined;
|
|
21563
21375
|
app_url?: string | undefined;
|
|
21564
21376
|
is_bot?: boolean | undefined;
|
|
@@ -26707,20 +26519,14 @@ export declare const UserChannelAdded: {
|
|
|
26707
26519
|
username?: string | undefined;
|
|
26708
26520
|
avatar?: string | undefined;
|
|
26709
26521
|
display_name?: string | undefined;
|
|
26710
|
-
about_me?: string | undefined;
|
|
26711
26522
|
user_status?: string | undefined;
|
|
26712
26523
|
status?: string | undefined;
|
|
26713
|
-
create_time_second?: number | undefined;
|
|
26714
26524
|
fcm_tokens?: {
|
|
26715
26525
|
device_id?: string | undefined;
|
|
26716
26526
|
token_id?: string | undefined;
|
|
26717
26527
|
platform?: string | undefined;
|
|
26718
26528
|
}[] | undefined;
|
|
26719
|
-
online?: boolean | undefined;
|
|
26720
|
-
is_disabled?: boolean | undefined;
|
|
26721
26529
|
joined_clans?: string[] | undefined;
|
|
26722
|
-
pubkey?: string | undefined;
|
|
26723
|
-
mezon_id?: string | undefined;
|
|
26724
26530
|
app_token?: string | undefined;
|
|
26725
26531
|
app_url?: string | undefined;
|
|
26726
26532
|
is_bot?: boolean | undefined;
|
|
@@ -26733,20 +26539,14 @@ export declare const UserChannelAdded: {
|
|
|
26733
26539
|
username?: string | undefined;
|
|
26734
26540
|
avatar?: string | undefined;
|
|
26735
26541
|
display_name?: string | undefined;
|
|
26736
|
-
about_me?: string | undefined;
|
|
26737
26542
|
user_status?: string | undefined;
|
|
26738
26543
|
status?: string | undefined;
|
|
26739
|
-
create_time_second?: number | undefined;
|
|
26740
26544
|
fcm_tokens?: {
|
|
26741
26545
|
device_id?: string | undefined;
|
|
26742
26546
|
token_id?: string | undefined;
|
|
26743
26547
|
platform?: string | undefined;
|
|
26744
26548
|
}[] | undefined;
|
|
26745
|
-
online?: boolean | undefined;
|
|
26746
|
-
is_disabled?: boolean | undefined;
|
|
26747
26549
|
joined_clans?: string[] | undefined;
|
|
26748
|
-
pubkey?: string | undefined;
|
|
26749
|
-
mezon_id?: string | undefined;
|
|
26750
26550
|
app_token?: string | undefined;
|
|
26751
26551
|
app_url?: string | undefined;
|
|
26752
26552
|
is_bot?: boolean | undefined;
|
|
@@ -26885,20 +26685,14 @@ export declare const UserChannelAdded: {
|
|
|
26885
26685
|
username?: string | undefined;
|
|
26886
26686
|
avatar?: string | undefined;
|
|
26887
26687
|
display_name?: string | undefined;
|
|
26888
|
-
about_me?: string | undefined;
|
|
26889
26688
|
user_status?: string | undefined;
|
|
26890
26689
|
status?: string | undefined;
|
|
26891
|
-
create_time_second?: number | undefined;
|
|
26892
26690
|
fcm_tokens?: {
|
|
26893
26691
|
device_id?: string | undefined;
|
|
26894
26692
|
token_id?: string | undefined;
|
|
26895
26693
|
platform?: string | undefined;
|
|
26896
26694
|
}[] | undefined;
|
|
26897
|
-
online?: boolean | undefined;
|
|
26898
|
-
is_disabled?: boolean | undefined;
|
|
26899
26695
|
joined_clans?: string[] | undefined;
|
|
26900
|
-
pubkey?: string | undefined;
|
|
26901
|
-
mezon_id?: string | undefined;
|
|
26902
26696
|
app_token?: string | undefined;
|
|
26903
26697
|
app_url?: string | undefined;
|
|
26904
26698
|
is_bot?: boolean | undefined;
|
|
@@ -26908,20 +26702,14 @@ export declare const UserChannelAdded: {
|
|
|
26908
26702
|
username?: string | undefined;
|
|
26909
26703
|
avatar?: string | undefined;
|
|
26910
26704
|
display_name?: string | undefined;
|
|
26911
|
-
about_me?: string | undefined;
|
|
26912
26705
|
user_status?: string | undefined;
|
|
26913
26706
|
status?: string | undefined;
|
|
26914
|
-
create_time_second?: number | undefined;
|
|
26915
26707
|
fcm_tokens?: {
|
|
26916
26708
|
device_id?: string | undefined;
|
|
26917
26709
|
token_id?: string | undefined;
|
|
26918
26710
|
platform?: string | undefined;
|
|
26919
26711
|
}[] | undefined;
|
|
26920
|
-
online?: boolean | undefined;
|
|
26921
|
-
is_disabled?: boolean | undefined;
|
|
26922
26712
|
joined_clans?: string[] | undefined;
|
|
26923
|
-
pubkey?: string | undefined;
|
|
26924
|
-
mezon_id?: string | undefined;
|
|
26925
26713
|
app_token?: string | undefined;
|
|
26926
26714
|
app_url?: string | undefined;
|
|
26927
26715
|
is_bot?: boolean | undefined;
|
|
@@ -26931,10 +26719,8 @@ export declare const UserChannelAdded: {
|
|
|
26931
26719
|
username?: string | undefined;
|
|
26932
26720
|
avatar?: string | undefined;
|
|
26933
26721
|
display_name?: string | undefined;
|
|
26934
|
-
about_me?: string | undefined;
|
|
26935
26722
|
user_status?: string | undefined;
|
|
26936
26723
|
status?: string | undefined;
|
|
26937
|
-
create_time_second?: number | undefined;
|
|
26938
26724
|
fcm_tokens?: ({
|
|
26939
26725
|
device_id?: string | undefined;
|
|
26940
26726
|
token_id?: string | undefined;
|
|
@@ -26952,11 +26738,7 @@ export declare const UserChannelAdded: {
|
|
|
26952
26738
|
token_id?: string | undefined;
|
|
26953
26739
|
platform?: string | undefined;
|
|
26954
26740
|
}[]>]: never; }) | undefined;
|
|
26955
|
-
online?: boolean | undefined;
|
|
26956
|
-
is_disabled?: boolean | undefined;
|
|
26957
26741
|
joined_clans?: (string[] & string[] & { [K_12 in Exclude<keyof I["users"][number]["joined_clans"], keyof string[]>]: never; }) | undefined;
|
|
26958
|
-
pubkey?: string | undefined;
|
|
26959
|
-
mezon_id?: string | undefined;
|
|
26960
26742
|
app_token?: string | undefined;
|
|
26961
26743
|
app_url?: string | undefined;
|
|
26962
26744
|
is_bot?: boolean | undefined;
|
|
@@ -26966,20 +26748,14 @@ export declare const UserChannelAdded: {
|
|
|
26966
26748
|
username?: string | undefined;
|
|
26967
26749
|
avatar?: string | undefined;
|
|
26968
26750
|
display_name?: string | undefined;
|
|
26969
|
-
about_me?: string | undefined;
|
|
26970
26751
|
user_status?: string | undefined;
|
|
26971
26752
|
status?: string | undefined;
|
|
26972
|
-
create_time_second?: number | undefined;
|
|
26973
26753
|
fcm_tokens?: {
|
|
26974
26754
|
device_id?: string | undefined;
|
|
26975
26755
|
token_id?: string | undefined;
|
|
26976
26756
|
platform?: string | undefined;
|
|
26977
26757
|
}[] | undefined;
|
|
26978
|
-
online?: boolean | undefined;
|
|
26979
|
-
is_disabled?: boolean | undefined;
|
|
26980
26758
|
joined_clans?: string[] | undefined;
|
|
26981
|
-
pubkey?: string | undefined;
|
|
26982
|
-
mezon_id?: string | undefined;
|
|
26983
26759
|
app_token?: string | undefined;
|
|
26984
26760
|
app_url?: string | undefined;
|
|
26985
26761
|
is_bot?: boolean | undefined;
|
|
@@ -26992,20 +26768,14 @@ export declare const UserChannelAdded: {
|
|
|
26992
26768
|
username?: string | undefined;
|
|
26993
26769
|
avatar?: string | undefined;
|
|
26994
26770
|
display_name?: string | undefined;
|
|
26995
|
-
about_me?: string | undefined;
|
|
26996
26771
|
user_status?: string | undefined;
|
|
26997
26772
|
status?: string | undefined;
|
|
26998
|
-
create_time_second?: number | undefined;
|
|
26999
26773
|
fcm_tokens?: {
|
|
27000
26774
|
device_id?: string | undefined;
|
|
27001
26775
|
token_id?: string | undefined;
|
|
27002
26776
|
platform?: string | undefined;
|
|
27003
26777
|
}[] | undefined;
|
|
27004
|
-
online?: boolean | undefined;
|
|
27005
|
-
is_disabled?: boolean | undefined;
|
|
27006
26778
|
joined_clans?: string[] | undefined;
|
|
27007
|
-
pubkey?: string | undefined;
|
|
27008
|
-
mezon_id?: string | undefined;
|
|
27009
26779
|
app_token?: string | undefined;
|
|
27010
26780
|
app_url?: string | undefined;
|
|
27011
26781
|
is_bot?: boolean | undefined;
|
|
@@ -27015,10 +26785,8 @@ export declare const UserChannelAdded: {
|
|
|
27015
26785
|
username?: string | undefined;
|
|
27016
26786
|
avatar?: string | undefined;
|
|
27017
26787
|
display_name?: string | undefined;
|
|
27018
|
-
about_me?: string | undefined;
|
|
27019
26788
|
user_status?: string | undefined;
|
|
27020
26789
|
status?: string | undefined;
|
|
27021
|
-
create_time_second?: number | undefined;
|
|
27022
26790
|
fcm_tokens?: ({
|
|
27023
26791
|
device_id?: string | undefined;
|
|
27024
26792
|
token_id?: string | undefined;
|
|
@@ -27036,11 +26804,7 @@ export declare const UserChannelAdded: {
|
|
|
27036
26804
|
token_id?: string | undefined;
|
|
27037
26805
|
platform?: string | undefined;
|
|
27038
26806
|
}[]>]: never; }) | undefined;
|
|
27039
|
-
online?: boolean | undefined;
|
|
27040
|
-
is_disabled?: boolean | undefined;
|
|
27041
26807
|
joined_clans?: (string[] & string[] & { [K_17 in Exclude<keyof I["caller"]["joined_clans"], keyof string[]>]: never; }) | undefined;
|
|
27042
|
-
pubkey?: string | undefined;
|
|
27043
|
-
mezon_id?: string | undefined;
|
|
27044
26808
|
app_token?: string | undefined;
|
|
27045
26809
|
app_url?: string | undefined;
|
|
27046
26810
|
is_bot?: boolean | undefined;
|
|
@@ -27108,20 +26872,14 @@ export declare const UserChannelAdded: {
|
|
|
27108
26872
|
username?: string | undefined;
|
|
27109
26873
|
avatar?: string | undefined;
|
|
27110
26874
|
display_name?: string | undefined;
|
|
27111
|
-
about_me?: string | undefined;
|
|
27112
26875
|
user_status?: string | undefined;
|
|
27113
26876
|
status?: string | undefined;
|
|
27114
|
-
create_time_second?: number | undefined;
|
|
27115
26877
|
fcm_tokens?: {
|
|
27116
26878
|
device_id?: string | undefined;
|
|
27117
26879
|
token_id?: string | undefined;
|
|
27118
26880
|
platform?: string | undefined;
|
|
27119
26881
|
}[] | undefined;
|
|
27120
|
-
online?: boolean | undefined;
|
|
27121
|
-
is_disabled?: boolean | undefined;
|
|
27122
26882
|
joined_clans?: string[] | undefined;
|
|
27123
|
-
pubkey?: string | undefined;
|
|
27124
|
-
mezon_id?: string | undefined;
|
|
27125
26883
|
app_token?: string | undefined;
|
|
27126
26884
|
app_url?: string | undefined;
|
|
27127
26885
|
is_bot?: boolean | undefined;
|
|
@@ -27134,20 +26892,14 @@ export declare const UserChannelAdded: {
|
|
|
27134
26892
|
username?: string | undefined;
|
|
27135
26893
|
avatar?: string | undefined;
|
|
27136
26894
|
display_name?: string | undefined;
|
|
27137
|
-
about_me?: string | undefined;
|
|
27138
26895
|
user_status?: string | undefined;
|
|
27139
26896
|
status?: string | undefined;
|
|
27140
|
-
create_time_second?: number | undefined;
|
|
27141
26897
|
fcm_tokens?: {
|
|
27142
26898
|
device_id?: string | undefined;
|
|
27143
26899
|
token_id?: string | undefined;
|
|
27144
26900
|
platform?: string | undefined;
|
|
27145
26901
|
}[] | undefined;
|
|
27146
|
-
online?: boolean | undefined;
|
|
27147
|
-
is_disabled?: boolean | undefined;
|
|
27148
26902
|
joined_clans?: string[] | undefined;
|
|
27149
|
-
pubkey?: string | undefined;
|
|
27150
|
-
mezon_id?: string | undefined;
|
|
27151
26903
|
app_token?: string | undefined;
|
|
27152
26904
|
app_url?: string | undefined;
|
|
27153
26905
|
is_bot?: boolean | undefined;
|
|
@@ -27286,20 +27038,14 @@ export declare const UserChannelAdded: {
|
|
|
27286
27038
|
username?: string | undefined;
|
|
27287
27039
|
avatar?: string | undefined;
|
|
27288
27040
|
display_name?: string | undefined;
|
|
27289
|
-
about_me?: string | undefined;
|
|
27290
27041
|
user_status?: string | undefined;
|
|
27291
27042
|
status?: string | undefined;
|
|
27292
|
-
create_time_second?: number | undefined;
|
|
27293
27043
|
fcm_tokens?: {
|
|
27294
27044
|
device_id?: string | undefined;
|
|
27295
27045
|
token_id?: string | undefined;
|
|
27296
27046
|
platform?: string | undefined;
|
|
27297
27047
|
}[] | undefined;
|
|
27298
|
-
online?: boolean | undefined;
|
|
27299
|
-
is_disabled?: boolean | undefined;
|
|
27300
27048
|
joined_clans?: string[] | undefined;
|
|
27301
|
-
pubkey?: string | undefined;
|
|
27302
|
-
mezon_id?: string | undefined;
|
|
27303
27049
|
app_token?: string | undefined;
|
|
27304
27050
|
app_url?: string | undefined;
|
|
27305
27051
|
is_bot?: boolean | undefined;
|
|
@@ -27309,20 +27055,14 @@ export declare const UserChannelAdded: {
|
|
|
27309
27055
|
username?: string | undefined;
|
|
27310
27056
|
avatar?: string | undefined;
|
|
27311
27057
|
display_name?: string | undefined;
|
|
27312
|
-
about_me?: string | undefined;
|
|
27313
27058
|
user_status?: string | undefined;
|
|
27314
27059
|
status?: string | undefined;
|
|
27315
|
-
create_time_second?: number | undefined;
|
|
27316
27060
|
fcm_tokens?: {
|
|
27317
27061
|
device_id?: string | undefined;
|
|
27318
27062
|
token_id?: string | undefined;
|
|
27319
27063
|
platform?: string | undefined;
|
|
27320
27064
|
}[] | undefined;
|
|
27321
|
-
online?: boolean | undefined;
|
|
27322
|
-
is_disabled?: boolean | undefined;
|
|
27323
27065
|
joined_clans?: string[] | undefined;
|
|
27324
|
-
pubkey?: string | undefined;
|
|
27325
|
-
mezon_id?: string | undefined;
|
|
27326
27066
|
app_token?: string | undefined;
|
|
27327
27067
|
app_url?: string | undefined;
|
|
27328
27068
|
is_bot?: boolean | undefined;
|
|
@@ -27332,10 +27072,8 @@ export declare const UserChannelAdded: {
|
|
|
27332
27072
|
username?: string | undefined;
|
|
27333
27073
|
avatar?: string | undefined;
|
|
27334
27074
|
display_name?: string | undefined;
|
|
27335
|
-
about_me?: string | undefined;
|
|
27336
27075
|
user_status?: string | undefined;
|
|
27337
27076
|
status?: string | undefined;
|
|
27338
|
-
create_time_second?: number | undefined;
|
|
27339
27077
|
fcm_tokens?: ({
|
|
27340
27078
|
device_id?: string | undefined;
|
|
27341
27079
|
token_id?: string | undefined;
|
|
@@ -27353,11 +27091,7 @@ export declare const UserChannelAdded: {
|
|
|
27353
27091
|
token_id?: string | undefined;
|
|
27354
27092
|
platform?: string | undefined;
|
|
27355
27093
|
}[]>]: never; }) | undefined;
|
|
27356
|
-
online?: boolean | undefined;
|
|
27357
|
-
is_disabled?: boolean | undefined;
|
|
27358
27094
|
joined_clans?: (string[] & string[] & { [K_32 in Exclude<keyof I_1["users"][number]["joined_clans"], keyof string[]>]: never; }) | undefined;
|
|
27359
|
-
pubkey?: string | undefined;
|
|
27360
|
-
mezon_id?: string | undefined;
|
|
27361
27095
|
app_token?: string | undefined;
|
|
27362
27096
|
app_url?: string | undefined;
|
|
27363
27097
|
is_bot?: boolean | undefined;
|
|
@@ -27367,20 +27101,14 @@ export declare const UserChannelAdded: {
|
|
|
27367
27101
|
username?: string | undefined;
|
|
27368
27102
|
avatar?: string | undefined;
|
|
27369
27103
|
display_name?: string | undefined;
|
|
27370
|
-
about_me?: string | undefined;
|
|
27371
27104
|
user_status?: string | undefined;
|
|
27372
27105
|
status?: string | undefined;
|
|
27373
|
-
create_time_second?: number | undefined;
|
|
27374
27106
|
fcm_tokens?: {
|
|
27375
27107
|
device_id?: string | undefined;
|
|
27376
27108
|
token_id?: string | undefined;
|
|
27377
27109
|
platform?: string | undefined;
|
|
27378
27110
|
}[] | undefined;
|
|
27379
|
-
online?: boolean | undefined;
|
|
27380
|
-
is_disabled?: boolean | undefined;
|
|
27381
27111
|
joined_clans?: string[] | undefined;
|
|
27382
|
-
pubkey?: string | undefined;
|
|
27383
|
-
mezon_id?: string | undefined;
|
|
27384
27112
|
app_token?: string | undefined;
|
|
27385
27113
|
app_url?: string | undefined;
|
|
27386
27114
|
is_bot?: boolean | undefined;
|
|
@@ -27393,20 +27121,14 @@ export declare const UserChannelAdded: {
|
|
|
27393
27121
|
username?: string | undefined;
|
|
27394
27122
|
avatar?: string | undefined;
|
|
27395
27123
|
display_name?: string | undefined;
|
|
27396
|
-
about_me?: string | undefined;
|
|
27397
27124
|
user_status?: string | undefined;
|
|
27398
27125
|
status?: string | undefined;
|
|
27399
|
-
create_time_second?: number | undefined;
|
|
27400
27126
|
fcm_tokens?: {
|
|
27401
27127
|
device_id?: string | undefined;
|
|
27402
27128
|
token_id?: string | undefined;
|
|
27403
27129
|
platform?: string | undefined;
|
|
27404
27130
|
}[] | undefined;
|
|
27405
|
-
online?: boolean | undefined;
|
|
27406
|
-
is_disabled?: boolean | undefined;
|
|
27407
27131
|
joined_clans?: string[] | undefined;
|
|
27408
|
-
pubkey?: string | undefined;
|
|
27409
|
-
mezon_id?: string | undefined;
|
|
27410
27132
|
app_token?: string | undefined;
|
|
27411
27133
|
app_url?: string | undefined;
|
|
27412
27134
|
is_bot?: boolean | undefined;
|
|
@@ -27416,10 +27138,8 @@ export declare const UserChannelAdded: {
|
|
|
27416
27138
|
username?: string | undefined;
|
|
27417
27139
|
avatar?: string | undefined;
|
|
27418
27140
|
display_name?: string | undefined;
|
|
27419
|
-
about_me?: string | undefined;
|
|
27420
27141
|
user_status?: string | undefined;
|
|
27421
27142
|
status?: string | undefined;
|
|
27422
|
-
create_time_second?: number | undefined;
|
|
27423
27143
|
fcm_tokens?: ({
|
|
27424
27144
|
device_id?: string | undefined;
|
|
27425
27145
|
token_id?: string | undefined;
|
|
@@ -27437,11 +27157,7 @@ export declare const UserChannelAdded: {
|
|
|
27437
27157
|
token_id?: string | undefined;
|
|
27438
27158
|
platform?: string | undefined;
|
|
27439
27159
|
}[]>]: never; }) | undefined;
|
|
27440
|
-
online?: boolean | undefined;
|
|
27441
|
-
is_disabled?: boolean | undefined;
|
|
27442
27160
|
joined_clans?: (string[] & string[] & { [K_37 in Exclude<keyof I_1["caller"]["joined_clans"], keyof string[]>]: never; }) | undefined;
|
|
27443
|
-
pubkey?: string | undefined;
|
|
27444
|
-
mezon_id?: string | undefined;
|
|
27445
27161
|
app_token?: string | undefined;
|
|
27446
27162
|
app_url?: string | undefined;
|
|
27447
27163
|
is_bot?: boolean | undefined;
|
|
@@ -27641,20 +27357,14 @@ export declare const UserProfileRedis: {
|
|
|
27641
27357
|
username?: string | undefined;
|
|
27642
27358
|
avatar?: string | undefined;
|
|
27643
27359
|
display_name?: string | undefined;
|
|
27644
|
-
about_me?: string | undefined;
|
|
27645
27360
|
user_status?: string | undefined;
|
|
27646
27361
|
status?: string | undefined;
|
|
27647
|
-
create_time_second?: number | undefined;
|
|
27648
27362
|
fcm_tokens?: {
|
|
27649
27363
|
device_id?: string | undefined;
|
|
27650
27364
|
token_id?: string | undefined;
|
|
27651
27365
|
platform?: string | undefined;
|
|
27652
27366
|
}[] | undefined;
|
|
27653
|
-
online?: boolean | undefined;
|
|
27654
|
-
is_disabled?: boolean | undefined;
|
|
27655
27367
|
joined_clans?: string[] | undefined;
|
|
27656
|
-
pubkey?: string | undefined;
|
|
27657
|
-
mezon_id?: string | undefined;
|
|
27658
27368
|
app_token?: string | undefined;
|
|
27659
27369
|
app_url?: string | undefined;
|
|
27660
27370
|
is_bot?: boolean | undefined;
|
|
@@ -27664,10 +27374,8 @@ export declare const UserProfileRedis: {
|
|
|
27664
27374
|
username?: string | undefined;
|
|
27665
27375
|
avatar?: string | undefined;
|
|
27666
27376
|
display_name?: string | undefined;
|
|
27667
|
-
about_me?: string | undefined;
|
|
27668
27377
|
user_status?: string | undefined;
|
|
27669
27378
|
status?: string | undefined;
|
|
27670
|
-
create_time_second?: number | undefined;
|
|
27671
27379
|
fcm_tokens?: ({
|
|
27672
27380
|
device_id?: string | undefined;
|
|
27673
27381
|
token_id?: string | undefined;
|
|
@@ -27685,11 +27393,7 @@ export declare const UserProfileRedis: {
|
|
|
27685
27393
|
token_id?: string | undefined;
|
|
27686
27394
|
platform?: string | undefined;
|
|
27687
27395
|
}[]>]: never; }) | undefined;
|
|
27688
|
-
online?: boolean | undefined;
|
|
27689
|
-
is_disabled?: boolean | undefined;
|
|
27690
27396
|
joined_clans?: (string[] & string[] & { [K_2 in Exclude<keyof I["joined_clans"], keyof string[]>]: never; }) | undefined;
|
|
27691
|
-
pubkey?: string | undefined;
|
|
27692
|
-
mezon_id?: string | undefined;
|
|
27693
27397
|
app_token?: string | undefined;
|
|
27694
27398
|
app_url?: string | undefined;
|
|
27695
27399
|
is_bot?: boolean | undefined;
|
|
@@ -27700,20 +27404,14 @@ export declare const UserProfileRedis: {
|
|
|
27700
27404
|
username?: string | undefined;
|
|
27701
27405
|
avatar?: string | undefined;
|
|
27702
27406
|
display_name?: string | undefined;
|
|
27703
|
-
about_me?: string | undefined;
|
|
27704
27407
|
user_status?: string | undefined;
|
|
27705
27408
|
status?: string | undefined;
|
|
27706
|
-
create_time_second?: number | undefined;
|
|
27707
27409
|
fcm_tokens?: {
|
|
27708
27410
|
device_id?: string | undefined;
|
|
27709
27411
|
token_id?: string | undefined;
|
|
27710
27412
|
platform?: string | undefined;
|
|
27711
27413
|
}[] | undefined;
|
|
27712
|
-
online?: boolean | undefined;
|
|
27713
|
-
is_disabled?: boolean | undefined;
|
|
27714
27414
|
joined_clans?: string[] | undefined;
|
|
27715
|
-
pubkey?: string | undefined;
|
|
27716
|
-
mezon_id?: string | undefined;
|
|
27717
27415
|
app_token?: string | undefined;
|
|
27718
27416
|
app_url?: string | undefined;
|
|
27719
27417
|
is_bot?: boolean | undefined;
|
|
@@ -27723,10 +27421,8 @@ export declare const UserProfileRedis: {
|
|
|
27723
27421
|
username?: string | undefined;
|
|
27724
27422
|
avatar?: string | undefined;
|
|
27725
27423
|
display_name?: string | undefined;
|
|
27726
|
-
about_me?: string | undefined;
|
|
27727
27424
|
user_status?: string | undefined;
|
|
27728
27425
|
status?: string | undefined;
|
|
27729
|
-
create_time_second?: number | undefined;
|
|
27730
27426
|
fcm_tokens?: ({
|
|
27731
27427
|
device_id?: string | undefined;
|
|
27732
27428
|
token_id?: string | undefined;
|
|
@@ -27744,11 +27440,7 @@ export declare const UserProfileRedis: {
|
|
|
27744
27440
|
token_id?: string | undefined;
|
|
27745
27441
|
platform?: string | undefined;
|
|
27746
27442
|
}[]>]: never; }) | undefined;
|
|
27747
|
-
online?: boolean | undefined;
|
|
27748
|
-
is_disabled?: boolean | undefined;
|
|
27749
27443
|
joined_clans?: (string[] & string[] & { [K_6 in Exclude<keyof I_1["joined_clans"], keyof string[]>]: never; }) | undefined;
|
|
27750
|
-
pubkey?: string | undefined;
|
|
27751
|
-
mezon_id?: string | undefined;
|
|
27752
27444
|
app_token?: string | undefined;
|
|
27753
27445
|
app_url?: string | undefined;
|
|
27754
27446
|
is_bot?: boolean | undefined;
|
|
@@ -37589,6 +37281,26 @@ export declare const TransferOwnershipEvent: {
|
|
|
37589
37281
|
curr_owner?: string | undefined;
|
|
37590
37282
|
} & { [K_1 in Exclude<keyof I_1, keyof TransferOwnershipEvent>]: never; }>(object: I_1): TransferOwnershipEvent;
|
|
37591
37283
|
};
|
|
37284
|
+
export declare const ActiveArchivedThread: {
|
|
37285
|
+
encode(message: ActiveArchivedThread, writer?: _m0.Writer): _m0.Writer;
|
|
37286
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): ActiveArchivedThread;
|
|
37287
|
+
fromJSON(object: any): ActiveArchivedThread;
|
|
37288
|
+
toJSON(message: ActiveArchivedThread): unknown;
|
|
37289
|
+
create<I extends {
|
|
37290
|
+
clan_id?: string | undefined;
|
|
37291
|
+
channel_id?: string | undefined;
|
|
37292
|
+
} & {
|
|
37293
|
+
clan_id?: string | undefined;
|
|
37294
|
+
channel_id?: string | undefined;
|
|
37295
|
+
} & { [K in Exclude<keyof I, keyof ActiveArchivedThread>]: never; }>(base?: I | undefined): ActiveArchivedThread;
|
|
37296
|
+
fromPartial<I_1 extends {
|
|
37297
|
+
clan_id?: string | undefined;
|
|
37298
|
+
channel_id?: string | undefined;
|
|
37299
|
+
} & {
|
|
37300
|
+
clan_id?: string | undefined;
|
|
37301
|
+
channel_id?: string | undefined;
|
|
37302
|
+
} & { [K_1 in Exclude<keyof I_1, keyof ActiveArchivedThread>]: never; }>(object: I_1): ActiveArchivedThread;
|
|
37303
|
+
};
|
|
37592
37304
|
type Builtin = Date | Function | Uint8Array | string | number | boolean | undefined;
|
|
37593
37305
|
export type DeepPartial<T> = T extends Builtin ? T : T extends globalThis.Array<infer U> ? globalThis.Array<DeepPartial<U>> : T extends ReadonlyArray<infer U> ? ReadonlyArray<DeepPartial<U>> : T extends {} ? {
|
|
37594
37306
|
[K in keyof T]?: DeepPartial<T[K]>;
|