mezon-sdk 2.8.27 → 2.8.29
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/cjs/mezon-client/client/MezonClient.d.ts +19 -79
- package/dist/cjs/mezon-client/client/MezonClient.js +108 -504
- package/dist/cjs/mezon-client/client/MezonClient.js.map +1 -1
- package/dist/cjs/mezon-client/client/MezonClientCore.d.ts +65 -0
- package/dist/cjs/mezon-client/client/MezonClientCore.js +426 -0
- package/dist/cjs/mezon-client/client/MezonClientCore.js.map +1 -0
- package/dist/cjs/mezon-client/manager/socket_manager.d.ts +2 -2
- package/dist/cjs/mezon-client/manager/socket_manager.js +18 -24
- package/dist/cjs/mezon-client/manager/socket_manager.js.map +1 -1
- package/dist/cjs/mezon-client/structures/Clan.d.ts +2 -8
- package/dist/cjs/mezon-client/structures/Clan.js +1 -6
- package/dist/cjs/mezon-client/structures/Clan.js.map +1 -1
- package/dist/cjs/mezon-client/structures/TextChannel.js +4 -4
- package/dist/cjs/mezon-client/structures/TextChannel.js.map +1 -1
- package/dist/cjs/mezon-client/structures/User.d.ts +1 -5
- package/dist/cjs/mezon-client/structures/User.js +0 -30
- package/dist/cjs/mezon-client/structures/User.js.map +1 -1
- package/dist/cjs/rtapi/realtime.d.ts +497 -673
- package/dist/cjs/rtapi/realtime.js +134 -107
- package/dist/cjs/rtapi/realtime.js.map +1 -1
- package/dist/cjs/sqlite/MessageDatabase.d.ts +1 -1
- package/dist/cjs/sqlite/MessageDatabase.js +25 -22
- package/dist/cjs/sqlite/MessageDatabase.js.map +1 -1
- package/dist/esm/mezon-client/client/MezonClient.d.ts +19 -79
- package/dist/esm/mezon-client/client/MezonClient.js +110 -532
- package/dist/esm/mezon-client/client/MezonClient.js.map +1 -1
- package/dist/esm/mezon-client/client/MezonClientCore.d.ts +65 -0
- package/dist/esm/mezon-client/client/MezonClientCore.js +449 -0
- package/dist/esm/mezon-client/client/MezonClientCore.js.map +1 -0
- package/dist/esm/mezon-client/manager/socket_manager.d.ts +2 -2
- package/dist/esm/mezon-client/manager/socket_manager.js +15 -21
- package/dist/esm/mezon-client/manager/socket_manager.js.map +1 -1
- package/dist/esm/mezon-client/structures/Clan.d.ts +2 -8
- package/dist/esm/mezon-client/structures/Clan.js +1 -11
- package/dist/esm/mezon-client/structures/Clan.js.map +1 -1
- package/dist/esm/mezon-client/structures/TextChannel.js +4 -4
- package/dist/esm/mezon-client/structures/TextChannel.js.map +1 -1
- package/dist/esm/mezon-client/structures/User.d.ts +1 -5
- package/dist/esm/mezon-client/structures/User.js +0 -30
- package/dist/esm/mezon-client/structures/User.js.map +1 -1
- package/dist/esm/rtapi/realtime.d.ts +497 -673
- package/dist/esm/rtapi/realtime.js +123 -97
- package/dist/esm/rtapi/realtime.js.map +1 -1
- package/dist/esm/sqlite/MessageDatabase.d.ts +1 -1
- package/dist/esm/sqlite/MessageDatabase.js +24 -21
- package/dist/esm/sqlite/MessageDatabase.js.map +1 -1
- package/dist/tsconfig.esm.tsbuildinfo +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +1 -1
|
@@ -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,28 +1065,20 @@ 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
|
-
/** FCM token */
|
|
1075
|
-
fcm_tokens: FCMTokens[];
|
|
1076
1072
|
/** isOnline */
|
|
1077
1073
|
online: boolean;
|
|
1078
|
-
/**
|
|
1079
|
-
|
|
1074
|
+
/** FCM token */
|
|
1075
|
+
fcm_tokens: FCMTokens[];
|
|
1080
1076
|
/** clans */
|
|
1081
1077
|
joined_clans: string[];
|
|
1082
|
-
/** public key */
|
|
1083
|
-
pubkey: string;
|
|
1084
|
-
/** mezon id */
|
|
1085
|
-
mezon_id: string;
|
|
1086
1078
|
/** app token */
|
|
1087
1079
|
app_token: string;
|
|
1080
|
+
/** create time */
|
|
1081
|
+
create_time_second: number;
|
|
1088
1082
|
/** app url */
|
|
1089
1083
|
app_url: string;
|
|
1090
1084
|
/** is bot */
|
|
@@ -1303,6 +1297,10 @@ export interface TransferOwnershipEvent {
|
|
|
1303
1297
|
prev_owner: string;
|
|
1304
1298
|
curr_owner: string;
|
|
1305
1299
|
}
|
|
1300
|
+
export interface ActiveArchivedThread {
|
|
1301
|
+
clan_id: string;
|
|
1302
|
+
channel_id: string;
|
|
1303
|
+
}
|
|
1306
1304
|
export declare const Envelope: {
|
|
1307
1305
|
encode(message: Envelope, writer?: _m0.Writer): _m0.Writer;
|
|
1308
1306
|
decode(input: _m0.Reader | Uint8Array, length?: number): Envelope;
|
|
@@ -1847,21 +1845,17 @@ export declare const Envelope: {
|
|
|
1847
1845
|
username?: string | undefined;
|
|
1848
1846
|
avatar?: string | undefined;
|
|
1849
1847
|
display_name?: string | undefined;
|
|
1850
|
-
about_me?: string | undefined;
|
|
1851
1848
|
user_status?: string | undefined;
|
|
1852
1849
|
status?: string | undefined;
|
|
1853
|
-
|
|
1850
|
+
online?: boolean | undefined;
|
|
1854
1851
|
fcm_tokens?: {
|
|
1855
1852
|
device_id?: string | undefined;
|
|
1856
1853
|
token_id?: string | undefined;
|
|
1857
1854
|
platform?: string | undefined;
|
|
1858
1855
|
}[] | undefined;
|
|
1859
|
-
online?: boolean | undefined;
|
|
1860
|
-
is_disabled?: boolean | undefined;
|
|
1861
1856
|
joined_clans?: string[] | undefined;
|
|
1862
|
-
pubkey?: string | undefined;
|
|
1863
|
-
mezon_id?: string | undefined;
|
|
1864
1857
|
app_token?: string | undefined;
|
|
1858
|
+
create_time_second?: number | undefined;
|
|
1865
1859
|
app_url?: string | undefined;
|
|
1866
1860
|
is_bot?: boolean | undefined;
|
|
1867
1861
|
voip_token?: string | undefined;
|
|
@@ -1873,21 +1867,17 @@ export declare const Envelope: {
|
|
|
1873
1867
|
username?: string | undefined;
|
|
1874
1868
|
avatar?: string | undefined;
|
|
1875
1869
|
display_name?: string | undefined;
|
|
1876
|
-
about_me?: string | undefined;
|
|
1877
1870
|
user_status?: string | undefined;
|
|
1878
1871
|
status?: string | undefined;
|
|
1879
|
-
|
|
1872
|
+
online?: boolean | undefined;
|
|
1880
1873
|
fcm_tokens?: {
|
|
1881
1874
|
device_id?: string | undefined;
|
|
1882
1875
|
token_id?: string | undefined;
|
|
1883
1876
|
platform?: string | undefined;
|
|
1884
1877
|
}[] | undefined;
|
|
1885
|
-
online?: boolean | undefined;
|
|
1886
|
-
is_disabled?: boolean | undefined;
|
|
1887
1878
|
joined_clans?: string[] | undefined;
|
|
1888
|
-
pubkey?: string | undefined;
|
|
1889
|
-
mezon_id?: string | undefined;
|
|
1890
1879
|
app_token?: string | undefined;
|
|
1880
|
+
create_time_second?: number | undefined;
|
|
1891
1881
|
app_url?: string | undefined;
|
|
1892
1882
|
is_bot?: boolean | undefined;
|
|
1893
1883
|
voip_token?: string | undefined;
|
|
@@ -1948,21 +1938,17 @@ export declare const Envelope: {
|
|
|
1948
1938
|
username?: string | undefined;
|
|
1949
1939
|
avatar?: string | undefined;
|
|
1950
1940
|
display_name?: string | undefined;
|
|
1951
|
-
about_me?: string | undefined;
|
|
1952
1941
|
user_status?: string | undefined;
|
|
1953
1942
|
status?: string | undefined;
|
|
1954
|
-
|
|
1943
|
+
online?: boolean | undefined;
|
|
1955
1944
|
fcm_tokens?: {
|
|
1956
1945
|
device_id?: string | undefined;
|
|
1957
1946
|
token_id?: string | undefined;
|
|
1958
1947
|
platform?: string | undefined;
|
|
1959
1948
|
}[] | undefined;
|
|
1960
|
-
online?: boolean | undefined;
|
|
1961
|
-
is_disabled?: boolean | undefined;
|
|
1962
1949
|
joined_clans?: string[] | undefined;
|
|
1963
|
-
pubkey?: string | undefined;
|
|
1964
|
-
mezon_id?: string | undefined;
|
|
1965
1950
|
app_token?: string | undefined;
|
|
1951
|
+
create_time_second?: number | undefined;
|
|
1966
1952
|
app_url?: string | undefined;
|
|
1967
1953
|
is_bot?: boolean | undefined;
|
|
1968
1954
|
voip_token?: string | undefined;
|
|
@@ -3331,6 +3317,10 @@ export declare const Envelope: {
|
|
|
3331
3317
|
channel_id?: string | undefined;
|
|
3332
3318
|
clan_id?: string | undefined;
|
|
3333
3319
|
} | undefined;
|
|
3320
|
+
active_archived_thread?: {
|
|
3321
|
+
clan_id?: string | undefined;
|
|
3322
|
+
channel_id?: string | undefined;
|
|
3323
|
+
} | undefined;
|
|
3334
3324
|
} & {
|
|
3335
3325
|
cid?: string | undefined;
|
|
3336
3326
|
channel?: ({
|
|
@@ -4916,21 +4906,17 @@ export declare const Envelope: {
|
|
|
4916
4906
|
username?: string | undefined;
|
|
4917
4907
|
avatar?: string | undefined;
|
|
4918
4908
|
display_name?: string | undefined;
|
|
4919
|
-
about_me?: string | undefined;
|
|
4920
4909
|
user_status?: string | undefined;
|
|
4921
4910
|
status?: string | undefined;
|
|
4922
|
-
|
|
4911
|
+
online?: boolean | undefined;
|
|
4923
4912
|
fcm_tokens?: {
|
|
4924
4913
|
device_id?: string | undefined;
|
|
4925
4914
|
token_id?: string | undefined;
|
|
4926
4915
|
platform?: string | undefined;
|
|
4927
4916
|
}[] | undefined;
|
|
4928
|
-
online?: boolean | undefined;
|
|
4929
|
-
is_disabled?: boolean | undefined;
|
|
4930
4917
|
joined_clans?: string[] | undefined;
|
|
4931
|
-
pubkey?: string | undefined;
|
|
4932
|
-
mezon_id?: string | undefined;
|
|
4933
4918
|
app_token?: string | undefined;
|
|
4919
|
+
create_time_second?: number | undefined;
|
|
4934
4920
|
app_url?: string | undefined;
|
|
4935
4921
|
is_bot?: boolean | undefined;
|
|
4936
4922
|
voip_token?: string | undefined;
|
|
@@ -4942,21 +4928,17 @@ export declare const Envelope: {
|
|
|
4942
4928
|
username?: string | undefined;
|
|
4943
4929
|
avatar?: string | undefined;
|
|
4944
4930
|
display_name?: string | undefined;
|
|
4945
|
-
about_me?: string | undefined;
|
|
4946
4931
|
user_status?: string | undefined;
|
|
4947
4932
|
status?: string | undefined;
|
|
4948
|
-
|
|
4933
|
+
online?: boolean | undefined;
|
|
4949
4934
|
fcm_tokens?: {
|
|
4950
4935
|
device_id?: string | undefined;
|
|
4951
4936
|
token_id?: string | undefined;
|
|
4952
4937
|
platform?: string | undefined;
|
|
4953
4938
|
}[] | undefined;
|
|
4954
|
-
online?: boolean | undefined;
|
|
4955
|
-
is_disabled?: boolean | undefined;
|
|
4956
4939
|
joined_clans?: string[] | undefined;
|
|
4957
|
-
pubkey?: string | undefined;
|
|
4958
|
-
mezon_id?: string | undefined;
|
|
4959
4940
|
app_token?: string | undefined;
|
|
4941
|
+
create_time_second?: number | undefined;
|
|
4960
4942
|
app_url?: string | undefined;
|
|
4961
4943
|
is_bot?: boolean | undefined;
|
|
4962
4944
|
voip_token?: string | undefined;
|
|
@@ -5094,21 +5076,17 @@ export declare const Envelope: {
|
|
|
5094
5076
|
username?: string | undefined;
|
|
5095
5077
|
avatar?: string | undefined;
|
|
5096
5078
|
display_name?: string | undefined;
|
|
5097
|
-
about_me?: string | undefined;
|
|
5098
5079
|
user_status?: string | undefined;
|
|
5099
5080
|
status?: string | undefined;
|
|
5100
|
-
|
|
5081
|
+
online?: boolean | undefined;
|
|
5101
5082
|
fcm_tokens?: {
|
|
5102
5083
|
device_id?: string | undefined;
|
|
5103
5084
|
token_id?: string | undefined;
|
|
5104
5085
|
platform?: string | undefined;
|
|
5105
5086
|
}[] | undefined;
|
|
5106
|
-
online?: boolean | undefined;
|
|
5107
|
-
is_disabled?: boolean | undefined;
|
|
5108
5087
|
joined_clans?: string[] | undefined;
|
|
5109
|
-
pubkey?: string | undefined;
|
|
5110
|
-
mezon_id?: string | undefined;
|
|
5111
5088
|
app_token?: string | undefined;
|
|
5089
|
+
create_time_second?: number | undefined;
|
|
5112
5090
|
app_url?: string | undefined;
|
|
5113
5091
|
is_bot?: boolean | undefined;
|
|
5114
5092
|
voip_token?: string | undefined;
|
|
@@ -5117,21 +5095,17 @@ export declare const Envelope: {
|
|
|
5117
5095
|
username?: string | undefined;
|
|
5118
5096
|
avatar?: string | undefined;
|
|
5119
5097
|
display_name?: string | undefined;
|
|
5120
|
-
about_me?: string | undefined;
|
|
5121
5098
|
user_status?: string | undefined;
|
|
5122
5099
|
status?: string | undefined;
|
|
5123
|
-
|
|
5100
|
+
online?: boolean | undefined;
|
|
5124
5101
|
fcm_tokens?: {
|
|
5125
5102
|
device_id?: string | undefined;
|
|
5126
5103
|
token_id?: string | undefined;
|
|
5127
5104
|
platform?: string | undefined;
|
|
5128
5105
|
}[] | undefined;
|
|
5129
|
-
online?: boolean | undefined;
|
|
5130
|
-
is_disabled?: boolean | undefined;
|
|
5131
5106
|
joined_clans?: string[] | undefined;
|
|
5132
|
-
pubkey?: string | undefined;
|
|
5133
|
-
mezon_id?: string | undefined;
|
|
5134
5107
|
app_token?: string | undefined;
|
|
5108
|
+
create_time_second?: number | undefined;
|
|
5135
5109
|
app_url?: string | undefined;
|
|
5136
5110
|
is_bot?: boolean | undefined;
|
|
5137
5111
|
voip_token?: string | undefined;
|
|
@@ -5140,10 +5114,9 @@ export declare const Envelope: {
|
|
|
5140
5114
|
username?: string | undefined;
|
|
5141
5115
|
avatar?: string | undefined;
|
|
5142
5116
|
display_name?: string | undefined;
|
|
5143
|
-
about_me?: string | undefined;
|
|
5144
5117
|
user_status?: string | undefined;
|
|
5145
5118
|
status?: string | undefined;
|
|
5146
|
-
|
|
5119
|
+
online?: boolean | undefined;
|
|
5147
5120
|
fcm_tokens?: ({
|
|
5148
5121
|
device_id?: string | undefined;
|
|
5149
5122
|
token_id?: string | undefined;
|
|
@@ -5161,12 +5134,9 @@ export declare const Envelope: {
|
|
|
5161
5134
|
token_id?: string | undefined;
|
|
5162
5135
|
platform?: string | undefined;
|
|
5163
5136
|
}[]>]: never; }) | undefined;
|
|
5164
|
-
online?: boolean | undefined;
|
|
5165
|
-
is_disabled?: boolean | undefined;
|
|
5166
5137
|
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
5138
|
app_token?: string | undefined;
|
|
5139
|
+
create_time_second?: number | undefined;
|
|
5170
5140
|
app_url?: string | undefined;
|
|
5171
5141
|
is_bot?: boolean | undefined;
|
|
5172
5142
|
voip_token?: string | undefined;
|
|
@@ -5175,21 +5145,17 @@ export declare const Envelope: {
|
|
|
5175
5145
|
username?: string | undefined;
|
|
5176
5146
|
avatar?: string | undefined;
|
|
5177
5147
|
display_name?: string | undefined;
|
|
5178
|
-
about_me?: string | undefined;
|
|
5179
5148
|
user_status?: string | undefined;
|
|
5180
5149
|
status?: string | undefined;
|
|
5181
|
-
|
|
5150
|
+
online?: boolean | undefined;
|
|
5182
5151
|
fcm_tokens?: {
|
|
5183
5152
|
device_id?: string | undefined;
|
|
5184
5153
|
token_id?: string | undefined;
|
|
5185
5154
|
platform?: string | undefined;
|
|
5186
5155
|
}[] | undefined;
|
|
5187
|
-
online?: boolean | undefined;
|
|
5188
|
-
is_disabled?: boolean | undefined;
|
|
5189
5156
|
joined_clans?: string[] | undefined;
|
|
5190
|
-
pubkey?: string | undefined;
|
|
5191
|
-
mezon_id?: string | undefined;
|
|
5192
5157
|
app_token?: string | undefined;
|
|
5158
|
+
create_time_second?: number | undefined;
|
|
5193
5159
|
app_url?: string | undefined;
|
|
5194
5160
|
is_bot?: boolean | undefined;
|
|
5195
5161
|
voip_token?: string | undefined;
|
|
@@ -5201,21 +5167,17 @@ export declare const Envelope: {
|
|
|
5201
5167
|
username?: string | undefined;
|
|
5202
5168
|
avatar?: string | undefined;
|
|
5203
5169
|
display_name?: string | undefined;
|
|
5204
|
-
about_me?: string | undefined;
|
|
5205
5170
|
user_status?: string | undefined;
|
|
5206
5171
|
status?: string | undefined;
|
|
5207
|
-
|
|
5172
|
+
online?: boolean | undefined;
|
|
5208
5173
|
fcm_tokens?: {
|
|
5209
5174
|
device_id?: string | undefined;
|
|
5210
5175
|
token_id?: string | undefined;
|
|
5211
5176
|
platform?: string | undefined;
|
|
5212
5177
|
}[] | undefined;
|
|
5213
|
-
online?: boolean | undefined;
|
|
5214
|
-
is_disabled?: boolean | undefined;
|
|
5215
5178
|
joined_clans?: string[] | undefined;
|
|
5216
|
-
pubkey?: string | undefined;
|
|
5217
|
-
mezon_id?: string | undefined;
|
|
5218
5179
|
app_token?: string | undefined;
|
|
5180
|
+
create_time_second?: number | undefined;
|
|
5219
5181
|
app_url?: string | undefined;
|
|
5220
5182
|
is_bot?: boolean | undefined;
|
|
5221
5183
|
voip_token?: string | undefined;
|
|
@@ -5224,10 +5186,9 @@ export declare const Envelope: {
|
|
|
5224
5186
|
username?: string | undefined;
|
|
5225
5187
|
avatar?: string | undefined;
|
|
5226
5188
|
display_name?: string | undefined;
|
|
5227
|
-
about_me?: string | undefined;
|
|
5228
5189
|
user_status?: string | undefined;
|
|
5229
5190
|
status?: string | undefined;
|
|
5230
|
-
|
|
5191
|
+
online?: boolean | undefined;
|
|
5231
5192
|
fcm_tokens?: ({
|
|
5232
5193
|
device_id?: string | undefined;
|
|
5233
5194
|
token_id?: string | undefined;
|
|
@@ -5245,12 +5206,9 @@ export declare const Envelope: {
|
|
|
5245
5206
|
token_id?: string | undefined;
|
|
5246
5207
|
platform?: string | undefined;
|
|
5247
5208
|
}[]>]: never; }) | undefined;
|
|
5248
|
-
online?: boolean | undefined;
|
|
5249
|
-
is_disabled?: boolean | undefined;
|
|
5250
5209
|
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
5210
|
app_token?: string | undefined;
|
|
5211
|
+
create_time_second?: number | undefined;
|
|
5254
5212
|
app_url?: string | undefined;
|
|
5255
5213
|
is_bot?: boolean | undefined;
|
|
5256
5214
|
voip_token?: string | undefined;
|
|
@@ -5351,21 +5309,17 @@ export declare const Envelope: {
|
|
|
5351
5309
|
username?: string | undefined;
|
|
5352
5310
|
avatar?: string | undefined;
|
|
5353
5311
|
display_name?: string | undefined;
|
|
5354
|
-
about_me?: string | undefined;
|
|
5355
5312
|
user_status?: string | undefined;
|
|
5356
5313
|
status?: string | undefined;
|
|
5357
|
-
|
|
5314
|
+
online?: boolean | undefined;
|
|
5358
5315
|
fcm_tokens?: {
|
|
5359
5316
|
device_id?: string | undefined;
|
|
5360
5317
|
token_id?: string | undefined;
|
|
5361
5318
|
platform?: string | undefined;
|
|
5362
5319
|
}[] | undefined;
|
|
5363
|
-
online?: boolean | undefined;
|
|
5364
|
-
is_disabled?: boolean | undefined;
|
|
5365
5320
|
joined_clans?: string[] | undefined;
|
|
5366
|
-
pubkey?: string | undefined;
|
|
5367
|
-
mezon_id?: string | undefined;
|
|
5368
5321
|
app_token?: string | undefined;
|
|
5322
|
+
create_time_second?: number | undefined;
|
|
5369
5323
|
app_url?: string | undefined;
|
|
5370
5324
|
is_bot?: boolean | undefined;
|
|
5371
5325
|
voip_token?: string | undefined;
|
|
@@ -5378,21 +5332,17 @@ export declare const Envelope: {
|
|
|
5378
5332
|
username?: string | undefined;
|
|
5379
5333
|
avatar?: string | undefined;
|
|
5380
5334
|
display_name?: string | undefined;
|
|
5381
|
-
about_me?: string | undefined;
|
|
5382
5335
|
user_status?: string | undefined;
|
|
5383
5336
|
status?: string | undefined;
|
|
5384
|
-
|
|
5337
|
+
online?: boolean | undefined;
|
|
5385
5338
|
fcm_tokens?: {
|
|
5386
5339
|
device_id?: string | undefined;
|
|
5387
5340
|
token_id?: string | undefined;
|
|
5388
5341
|
platform?: string | undefined;
|
|
5389
5342
|
}[] | undefined;
|
|
5390
|
-
online?: boolean | undefined;
|
|
5391
|
-
is_disabled?: boolean | undefined;
|
|
5392
5343
|
joined_clans?: string[] | undefined;
|
|
5393
|
-
pubkey?: string | undefined;
|
|
5394
|
-
mezon_id?: string | undefined;
|
|
5395
5344
|
app_token?: string | undefined;
|
|
5345
|
+
create_time_second?: number | undefined;
|
|
5396
5346
|
app_url?: string | undefined;
|
|
5397
5347
|
is_bot?: boolean | undefined;
|
|
5398
5348
|
voip_token?: string | undefined;
|
|
@@ -5401,10 +5351,9 @@ export declare const Envelope: {
|
|
|
5401
5351
|
username?: string | undefined;
|
|
5402
5352
|
avatar?: string | undefined;
|
|
5403
5353
|
display_name?: string | undefined;
|
|
5404
|
-
about_me?: string | undefined;
|
|
5405
5354
|
user_status?: string | undefined;
|
|
5406
5355
|
status?: string | undefined;
|
|
5407
|
-
|
|
5356
|
+
online?: boolean | undefined;
|
|
5408
5357
|
fcm_tokens?: ({
|
|
5409
5358
|
device_id?: string | undefined;
|
|
5410
5359
|
token_id?: string | undefined;
|
|
@@ -5422,12 +5371,9 @@ export declare const Envelope: {
|
|
|
5422
5371
|
token_id?: string | undefined;
|
|
5423
5372
|
platform?: string | undefined;
|
|
5424
5373
|
}[]>]: never; }) | undefined;
|
|
5425
|
-
online?: boolean | undefined;
|
|
5426
|
-
is_disabled?: boolean | undefined;
|
|
5427
5374
|
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
5375
|
app_token?: string | undefined;
|
|
5376
|
+
create_time_second?: number | undefined;
|
|
5431
5377
|
app_url?: string | undefined;
|
|
5432
5378
|
is_bot?: boolean | undefined;
|
|
5433
5379
|
voip_token?: string | undefined;
|
|
@@ -11255,7 +11201,14 @@ export declare const Envelope: {
|
|
|
11255
11201
|
channel_id?: string | undefined;
|
|
11256
11202
|
clan_id?: string | undefined;
|
|
11257
11203
|
} & { [K_393 in Exclude<keyof I["ban_user_event"], keyof BannedUserEvent>]: never; }) | undefined;
|
|
11258
|
-
|
|
11204
|
+
active_archived_thread?: ({
|
|
11205
|
+
clan_id?: string | undefined;
|
|
11206
|
+
channel_id?: string | undefined;
|
|
11207
|
+
} & {
|
|
11208
|
+
clan_id?: string | undefined;
|
|
11209
|
+
channel_id?: string | undefined;
|
|
11210
|
+
} & { [K_394 in Exclude<keyof I["active_archived_thread"], keyof ActiveArchivedThread>]: never; }) | undefined;
|
|
11211
|
+
} & { [K_395 in Exclude<keyof I, keyof Envelope>]: never; }>(base?: I | undefined): Envelope;
|
|
11259
11212
|
fromPartial<I_1 extends {
|
|
11260
11213
|
cid?: string | undefined;
|
|
11261
11214
|
channel?: {
|
|
@@ -11795,21 +11748,17 @@ export declare const Envelope: {
|
|
|
11795
11748
|
username?: string | undefined;
|
|
11796
11749
|
avatar?: string | undefined;
|
|
11797
11750
|
display_name?: string | undefined;
|
|
11798
|
-
about_me?: string | undefined;
|
|
11799
11751
|
user_status?: string | undefined;
|
|
11800
11752
|
status?: string | undefined;
|
|
11801
|
-
|
|
11753
|
+
online?: boolean | undefined;
|
|
11802
11754
|
fcm_tokens?: {
|
|
11803
11755
|
device_id?: string | undefined;
|
|
11804
11756
|
token_id?: string | undefined;
|
|
11805
11757
|
platform?: string | undefined;
|
|
11806
11758
|
}[] | undefined;
|
|
11807
|
-
online?: boolean | undefined;
|
|
11808
|
-
is_disabled?: boolean | undefined;
|
|
11809
11759
|
joined_clans?: string[] | undefined;
|
|
11810
|
-
pubkey?: string | undefined;
|
|
11811
|
-
mezon_id?: string | undefined;
|
|
11812
11760
|
app_token?: string | undefined;
|
|
11761
|
+
create_time_second?: number | undefined;
|
|
11813
11762
|
app_url?: string | undefined;
|
|
11814
11763
|
is_bot?: boolean | undefined;
|
|
11815
11764
|
voip_token?: string | undefined;
|
|
@@ -11821,21 +11770,17 @@ export declare const Envelope: {
|
|
|
11821
11770
|
username?: string | undefined;
|
|
11822
11771
|
avatar?: string | undefined;
|
|
11823
11772
|
display_name?: string | undefined;
|
|
11824
|
-
about_me?: string | undefined;
|
|
11825
11773
|
user_status?: string | undefined;
|
|
11826
11774
|
status?: string | undefined;
|
|
11827
|
-
|
|
11775
|
+
online?: boolean | undefined;
|
|
11828
11776
|
fcm_tokens?: {
|
|
11829
11777
|
device_id?: string | undefined;
|
|
11830
11778
|
token_id?: string | undefined;
|
|
11831
11779
|
platform?: string | undefined;
|
|
11832
11780
|
}[] | undefined;
|
|
11833
|
-
online?: boolean | undefined;
|
|
11834
|
-
is_disabled?: boolean | undefined;
|
|
11835
11781
|
joined_clans?: string[] | undefined;
|
|
11836
|
-
pubkey?: string | undefined;
|
|
11837
|
-
mezon_id?: string | undefined;
|
|
11838
11782
|
app_token?: string | undefined;
|
|
11783
|
+
create_time_second?: number | undefined;
|
|
11839
11784
|
app_url?: string | undefined;
|
|
11840
11785
|
is_bot?: boolean | undefined;
|
|
11841
11786
|
voip_token?: string | undefined;
|
|
@@ -11896,21 +11841,17 @@ export declare const Envelope: {
|
|
|
11896
11841
|
username?: string | undefined;
|
|
11897
11842
|
avatar?: string | undefined;
|
|
11898
11843
|
display_name?: string | undefined;
|
|
11899
|
-
about_me?: string | undefined;
|
|
11900
11844
|
user_status?: string | undefined;
|
|
11901
11845
|
status?: string | undefined;
|
|
11902
|
-
|
|
11846
|
+
online?: boolean | undefined;
|
|
11903
11847
|
fcm_tokens?: {
|
|
11904
11848
|
device_id?: string | undefined;
|
|
11905
11849
|
token_id?: string | undefined;
|
|
11906
11850
|
platform?: string | undefined;
|
|
11907
11851
|
}[] | undefined;
|
|
11908
|
-
online?: boolean | undefined;
|
|
11909
|
-
is_disabled?: boolean | undefined;
|
|
11910
11852
|
joined_clans?: string[] | undefined;
|
|
11911
|
-
pubkey?: string | undefined;
|
|
11912
|
-
mezon_id?: string | undefined;
|
|
11913
11853
|
app_token?: string | undefined;
|
|
11854
|
+
create_time_second?: number | undefined;
|
|
11914
11855
|
app_url?: string | undefined;
|
|
11915
11856
|
is_bot?: boolean | undefined;
|
|
11916
11857
|
voip_token?: string | undefined;
|
|
@@ -13279,6 +13220,10 @@ export declare const Envelope: {
|
|
|
13279
13220
|
channel_id?: string | undefined;
|
|
13280
13221
|
clan_id?: string | undefined;
|
|
13281
13222
|
} | undefined;
|
|
13223
|
+
active_archived_thread?: {
|
|
13224
|
+
clan_id?: string | undefined;
|
|
13225
|
+
channel_id?: string | undefined;
|
|
13226
|
+
} | undefined;
|
|
13282
13227
|
} & {
|
|
13283
13228
|
cid?: string | undefined;
|
|
13284
13229
|
channel?: ({
|
|
@@ -13325,7 +13270,7 @@ export declare const Envelope: {
|
|
|
13325
13270
|
status?: string | undefined;
|
|
13326
13271
|
is_mobile?: boolean | undefined;
|
|
13327
13272
|
user_status?: string | undefined;
|
|
13328
|
-
} & { [
|
|
13273
|
+
} & { [K_396 in Exclude<keyof I_1["channel"]["presences"][number], keyof UserPresence>]: never; })[] & { [K_397 in Exclude<keyof I_1["channel"]["presences"], keyof {
|
|
13329
13274
|
user_id?: string | undefined;
|
|
13330
13275
|
session_id?: string | undefined;
|
|
13331
13276
|
username?: string | undefined;
|
|
@@ -13347,16 +13292,16 @@ export declare const Envelope: {
|
|
|
13347
13292
|
status?: string | undefined;
|
|
13348
13293
|
is_mobile?: boolean | undefined;
|
|
13349
13294
|
user_status?: string | undefined;
|
|
13350
|
-
} & { [
|
|
13295
|
+
} & { [K_398 in Exclude<keyof I_1["channel"]["self"], keyof UserPresence>]: never; }) | undefined;
|
|
13351
13296
|
chanel_label?: string | undefined;
|
|
13352
13297
|
clan_logo?: string | undefined;
|
|
13353
13298
|
category_name?: string | undefined;
|
|
13354
|
-
} & { [
|
|
13299
|
+
} & { [K_399 in Exclude<keyof I_1["channel"], keyof Channel>]: never; }) | undefined;
|
|
13355
13300
|
clan_join?: ({
|
|
13356
13301
|
clan_id?: string | undefined;
|
|
13357
13302
|
} & {
|
|
13358
13303
|
clan_id?: string | undefined;
|
|
13359
|
-
} & { [
|
|
13304
|
+
} & { [K_400 in Exclude<keyof I_1["clan_join"], "clan_id">]: never; }) | undefined;
|
|
13360
13305
|
channel_join?: ({
|
|
13361
13306
|
clan_id?: string | undefined;
|
|
13362
13307
|
channel_id?: string | undefined;
|
|
@@ -13367,7 +13312,7 @@ export declare const Envelope: {
|
|
|
13367
13312
|
channel_id?: string | undefined;
|
|
13368
13313
|
channel_type?: number | undefined;
|
|
13369
13314
|
is_public?: boolean | undefined;
|
|
13370
|
-
} & { [
|
|
13315
|
+
} & { [K_401 in Exclude<keyof I_1["channel_join"], keyof ChannelJoin>]: never; }) | undefined;
|
|
13371
13316
|
channel_leave?: ({
|
|
13372
13317
|
clan_id?: string | undefined;
|
|
13373
13318
|
channel_id?: string | undefined;
|
|
@@ -13378,7 +13323,7 @@ export declare const Envelope: {
|
|
|
13378
13323
|
channel_id?: string | undefined;
|
|
13379
13324
|
channel_type?: number | undefined;
|
|
13380
13325
|
is_public?: boolean | undefined;
|
|
13381
|
-
} & { [
|
|
13326
|
+
} & { [K_402 in Exclude<keyof I_1["channel_leave"], keyof ChannelLeave>]: never; }) | undefined;
|
|
13382
13327
|
channel_message?: ({
|
|
13383
13328
|
clan_id?: string | undefined;
|
|
13384
13329
|
channel_id?: string | undefined;
|
|
@@ -13435,7 +13380,7 @@ export declare const Envelope: {
|
|
|
13435
13380
|
hide_editted?: boolean | undefined;
|
|
13436
13381
|
is_public?: boolean | undefined;
|
|
13437
13382
|
topic_id?: string | undefined;
|
|
13438
|
-
} & { [
|
|
13383
|
+
} & { [K_403 in Exclude<keyof I_1["channel_message"], keyof ChannelMessage>]: never; }) | undefined;
|
|
13439
13384
|
channel_message_ack?: ({
|
|
13440
13385
|
channel_id?: string | undefined;
|
|
13441
13386
|
message_id?: string | undefined;
|
|
@@ -13456,7 +13401,7 @@ export declare const Envelope: {
|
|
|
13456
13401
|
persistent?: boolean | undefined;
|
|
13457
13402
|
clan_logo?: string | undefined;
|
|
13458
13403
|
category_name?: string | undefined;
|
|
13459
|
-
} & { [
|
|
13404
|
+
} & { [K_404 in Exclude<keyof I_1["channel_message_ack"], keyof ChannelMessageAck>]: never; }) | undefined;
|
|
13460
13405
|
channel_message_send?: ({
|
|
13461
13406
|
clan_id?: string | undefined;
|
|
13462
13407
|
channel_id?: string | undefined;
|
|
@@ -13531,7 +13476,7 @@ export declare const Envelope: {
|
|
|
13531
13476
|
create_time?: Date | undefined;
|
|
13532
13477
|
s?: number | undefined;
|
|
13533
13478
|
e?: number | undefined;
|
|
13534
|
-
} & { [
|
|
13479
|
+
} & { [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
13480
|
id?: string | undefined;
|
|
13536
13481
|
user_id?: string | undefined;
|
|
13537
13482
|
username?: string | undefined;
|
|
@@ -13565,7 +13510,7 @@ export declare const Envelope: {
|
|
|
13565
13510
|
width?: number | undefined;
|
|
13566
13511
|
height?: number | undefined;
|
|
13567
13512
|
thumbnail?: string | undefined;
|
|
13568
|
-
} & { [
|
|
13513
|
+
} & { [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
13514
|
filename?: string | undefined;
|
|
13570
13515
|
size?: number | undefined;
|
|
13571
13516
|
url?: string | undefined;
|
|
@@ -13607,7 +13552,7 @@ export declare const Envelope: {
|
|
|
13607
13552
|
mesages_sender_avatar?: string | undefined;
|
|
13608
13553
|
message_sender_clan_nick?: string | undefined;
|
|
13609
13554
|
message_sender_display_name?: string | undefined;
|
|
13610
|
-
} & { [
|
|
13555
|
+
} & { [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
13556
|
message_id?: string | undefined;
|
|
13612
13557
|
message_ref_id?: string | undefined;
|
|
13613
13558
|
content?: string | undefined;
|
|
@@ -13627,7 +13572,7 @@ export declare const Envelope: {
|
|
|
13627
13572
|
code?: number | undefined;
|
|
13628
13573
|
topic_id?: string | undefined;
|
|
13629
13574
|
id?: string | undefined;
|
|
13630
|
-
} & { [
|
|
13575
|
+
} & { [K_411 in Exclude<keyof I_1["channel_message_send"], keyof ChannelMessageSend>]: never; }) | undefined;
|
|
13631
13576
|
channel_message_update?: ({
|
|
13632
13577
|
clan_id?: string | undefined;
|
|
13633
13578
|
channel_id?: string | undefined;
|
|
@@ -13690,7 +13635,7 @@ export declare const Envelope: {
|
|
|
13690
13635
|
create_time?: Date | undefined;
|
|
13691
13636
|
s?: number | undefined;
|
|
13692
13637
|
e?: number | undefined;
|
|
13693
|
-
} & { [
|
|
13638
|
+
} & { [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
13639
|
id?: string | undefined;
|
|
13695
13640
|
user_id?: string | undefined;
|
|
13696
13641
|
username?: string | undefined;
|
|
@@ -13724,7 +13669,7 @@ export declare const Envelope: {
|
|
|
13724
13669
|
width?: number | undefined;
|
|
13725
13670
|
height?: number | undefined;
|
|
13726
13671
|
thumbnail?: string | undefined;
|
|
13727
|
-
} & { [
|
|
13672
|
+
} & { [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
13673
|
filename?: string | undefined;
|
|
13729
13674
|
size?: number | undefined;
|
|
13730
13675
|
url?: string | undefined;
|
|
@@ -13739,7 +13684,7 @@ export declare const Envelope: {
|
|
|
13739
13684
|
topic_id?: string | undefined;
|
|
13740
13685
|
is_update_msg_topic?: boolean | undefined;
|
|
13741
13686
|
old_mentions?: string | undefined;
|
|
13742
|
-
} & { [
|
|
13687
|
+
} & { [K_416 in Exclude<keyof I_1["channel_message_update"], keyof ChannelMessageUpdate>]: never; }) | undefined;
|
|
13743
13688
|
channel_message_remove?: ({
|
|
13744
13689
|
clan_id?: string | undefined;
|
|
13745
13690
|
channel_id?: string | undefined;
|
|
@@ -13760,7 +13705,7 @@ export declare const Envelope: {
|
|
|
13760
13705
|
topic_id?: string | undefined;
|
|
13761
13706
|
mentions?: string | undefined;
|
|
13762
13707
|
references?: string | undefined;
|
|
13763
|
-
} & { [
|
|
13708
|
+
} & { [K_417 in Exclude<keyof I_1["channel_message_remove"], keyof ChannelMessageRemove>]: never; }) | undefined;
|
|
13764
13709
|
channel_presence_event?: ({
|
|
13765
13710
|
channel_id?: string | undefined;
|
|
13766
13711
|
joins?: {
|
|
@@ -13805,7 +13750,7 @@ export declare const Envelope: {
|
|
|
13805
13750
|
status?: string | undefined;
|
|
13806
13751
|
is_mobile?: boolean | undefined;
|
|
13807
13752
|
user_status?: string | undefined;
|
|
13808
|
-
} & { [
|
|
13753
|
+
} & { [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
13754
|
user_id?: string | undefined;
|
|
13810
13755
|
session_id?: string | undefined;
|
|
13811
13756
|
username?: string | undefined;
|
|
@@ -13834,7 +13779,7 @@ export declare const Envelope: {
|
|
|
13834
13779
|
status?: string | undefined;
|
|
13835
13780
|
is_mobile?: boolean | undefined;
|
|
13836
13781
|
user_status?: string | undefined;
|
|
13837
|
-
} & { [
|
|
13782
|
+
} & { [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
13783
|
user_id?: string | undefined;
|
|
13839
13784
|
session_id?: string | undefined;
|
|
13840
13785
|
username?: string | undefined;
|
|
@@ -13845,7 +13790,7 @@ export declare const Envelope: {
|
|
|
13845
13790
|
clan_logo?: string | undefined;
|
|
13846
13791
|
category_name?: string | undefined;
|
|
13847
13792
|
mode?: number | undefined;
|
|
13848
|
-
} & { [
|
|
13793
|
+
} & { [K_422 in Exclude<keyof I_1["channel_presence_event"], keyof ChannelPresenceEvent>]: never; }) | undefined;
|
|
13849
13794
|
error?: ({
|
|
13850
13795
|
code?: number | undefined;
|
|
13851
13796
|
message?: string | undefined;
|
|
@@ -13859,8 +13804,8 @@ export declare const Envelope: {
|
|
|
13859
13804
|
[x: string]: string | undefined;
|
|
13860
13805
|
} & {
|
|
13861
13806
|
[x: string]: string | undefined;
|
|
13862
|
-
} & { [
|
|
13863
|
-
} & { [
|
|
13807
|
+
} & { [K_423 in Exclude<keyof I_1["error"]["context"], string | number>]: never; }) | undefined;
|
|
13808
|
+
} & { [K_424 in Exclude<keyof I_1["error"], keyof Error>]: never; }) | undefined;
|
|
13864
13809
|
notifications?: ({
|
|
13865
13810
|
notifications?: {
|
|
13866
13811
|
id?: string | undefined;
|
|
@@ -14139,8 +14084,8 @@ export declare const Envelope: {
|
|
|
14139
14084
|
creator_id?: string | undefined;
|
|
14140
14085
|
channel_label?: string | undefined;
|
|
14141
14086
|
channel_private?: number | undefined;
|
|
14142
|
-
avatars?: (string[] & string[] & { [
|
|
14143
|
-
user_ids?: (string[] & string[] & { [
|
|
14087
|
+
avatars?: (string[] & string[] & { [K_425 in Exclude<keyof I_1["notifications"]["notifications"][number]["channel"]["avatars"], keyof string[]>]: never; }) | undefined;
|
|
14088
|
+
user_ids?: (string[] & string[] & { [K_426 in Exclude<keyof I_1["notifications"]["notifications"][number]["channel"]["user_ids"], keyof string[]>]: never; }) | undefined;
|
|
14144
14089
|
last_sent_message?: ({
|
|
14145
14090
|
id?: string | undefined;
|
|
14146
14091
|
timestamp_seconds?: number | undefined;
|
|
@@ -14160,8 +14105,8 @@ export declare const Envelope: {
|
|
|
14160
14105
|
reference?: string | undefined;
|
|
14161
14106
|
mention?: string | undefined;
|
|
14162
14107
|
reaction?: string | undefined;
|
|
14163
|
-
repliers?: (string[] & string[] & { [
|
|
14164
|
-
} & { [
|
|
14108
|
+
repliers?: (string[] & string[] & { [K_427 in Exclude<keyof I_1["notifications"]["notifications"][number]["channel"]["last_sent_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
14109
|
+
} & { [K_428 in Exclude<keyof I_1["notifications"]["notifications"][number]["channel"]["last_sent_message"], keyof ChannelMessageHeader>]: never; }) | undefined;
|
|
14165
14110
|
last_seen_message?: ({
|
|
14166
14111
|
id?: string | undefined;
|
|
14167
14112
|
timestamp_seconds?: number | undefined;
|
|
@@ -14181,18 +14126,18 @@ export declare const Envelope: {
|
|
|
14181
14126
|
reference?: string | undefined;
|
|
14182
14127
|
mention?: string | undefined;
|
|
14183
14128
|
reaction?: string | undefined;
|
|
14184
|
-
repliers?: (string[] & string[] & { [
|
|
14185
|
-
} & { [
|
|
14186
|
-
onlines?: (boolean[] & boolean[] & { [
|
|
14129
|
+
repliers?: (string[] & string[] & { [K_429 in Exclude<keyof I_1["notifications"]["notifications"][number]["channel"]["last_seen_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
14130
|
+
} & { [K_430 in Exclude<keyof I_1["notifications"]["notifications"][number]["channel"]["last_seen_message"], keyof ChannelMessageHeader>]: never; }) | undefined;
|
|
14131
|
+
onlines?: (boolean[] & boolean[] & { [K_431 in Exclude<keyof I_1["notifications"]["notifications"][number]["channel"]["onlines"], keyof boolean[]>]: never; }) | undefined;
|
|
14187
14132
|
meeting_code?: string | undefined;
|
|
14188
14133
|
count_mess_unread?: number | undefined;
|
|
14189
14134
|
active?: number | undefined;
|
|
14190
14135
|
last_pin_message?: string | undefined;
|
|
14191
|
-
usernames?: (string[] & string[] & { [
|
|
14136
|
+
usernames?: (string[] & string[] & { [K_432 in Exclude<keyof I_1["notifications"]["notifications"][number]["channel"]["usernames"], keyof string[]>]: never; }) | undefined;
|
|
14192
14137
|
creator_name?: string | undefined;
|
|
14193
14138
|
create_time_seconds?: number | undefined;
|
|
14194
14139
|
update_time_seconds?: number | undefined;
|
|
14195
|
-
display_names?: (string[] & string[] & { [
|
|
14140
|
+
display_names?: (string[] & string[] & { [K_433 in Exclude<keyof I_1["notifications"]["notifications"][number]["channel"]["display_names"], keyof string[]>]: never; }) | undefined;
|
|
14196
14141
|
channel_avatar?: string | undefined;
|
|
14197
14142
|
clan_name?: string | undefined;
|
|
14198
14143
|
app_id?: string | undefined;
|
|
@@ -14201,10 +14146,10 @@ export declare const Envelope: {
|
|
|
14201
14146
|
topic?: string | undefined;
|
|
14202
14147
|
e2ee?: number | undefined;
|
|
14203
14148
|
member_count?: number | undefined;
|
|
14204
|
-
} & { [
|
|
14149
|
+
} & { [K_434 in Exclude<keyof I_1["notifications"]["notifications"][number]["channel"], keyof ChannelDescription1>]: never; }) | undefined;
|
|
14205
14150
|
topic_id?: string | undefined;
|
|
14206
14151
|
category?: number | undefined;
|
|
14207
|
-
} & { [
|
|
14152
|
+
} & { [K_435 in Exclude<keyof I_1["notifications"]["notifications"][number], keyof Notification>]: never; })[] & { [K_436 in Exclude<keyof I_1["notifications"]["notifications"], keyof {
|
|
14208
14153
|
id?: string | undefined;
|
|
14209
14154
|
subject?: string | undefined;
|
|
14210
14155
|
content?: string | undefined;
|
|
@@ -14272,7 +14217,7 @@ export declare const Envelope: {
|
|
|
14272
14217
|
topic_id?: string | undefined;
|
|
14273
14218
|
category?: number | undefined;
|
|
14274
14219
|
}[]>]: never; }) | undefined;
|
|
14275
|
-
} & { [
|
|
14220
|
+
} & { [K_437 in Exclude<keyof I_1["notifications"], "notifications">]: never; }) | undefined;
|
|
14276
14221
|
rpc?: ({
|
|
14277
14222
|
id?: string | undefined;
|
|
14278
14223
|
payload?: string | undefined;
|
|
@@ -14281,7 +14226,7 @@ export declare const Envelope: {
|
|
|
14281
14226
|
id?: string | undefined;
|
|
14282
14227
|
payload?: string | undefined;
|
|
14283
14228
|
http_key?: string | undefined;
|
|
14284
|
-
} & { [
|
|
14229
|
+
} & { [K_438 in Exclude<keyof I_1["rpc"], keyof Rpc>]: never; }) | undefined;
|
|
14285
14230
|
status?: ({
|
|
14286
14231
|
presences?: {
|
|
14287
14232
|
user_id?: string | undefined;
|
|
@@ -14313,7 +14258,7 @@ export declare const Envelope: {
|
|
|
14313
14258
|
status?: string | undefined;
|
|
14314
14259
|
is_mobile?: boolean | undefined;
|
|
14315
14260
|
user_status?: string | undefined;
|
|
14316
|
-
} & { [
|
|
14261
|
+
} & { [K_439 in Exclude<keyof I_1["status"]["presences"][number], keyof UserPresence>]: never; })[] & { [K_440 in Exclude<keyof I_1["status"]["presences"], keyof {
|
|
14317
14262
|
user_id?: string | undefined;
|
|
14318
14263
|
session_id?: string | undefined;
|
|
14319
14264
|
username?: string | undefined;
|
|
@@ -14321,14 +14266,14 @@ export declare const Envelope: {
|
|
|
14321
14266
|
is_mobile?: boolean | undefined;
|
|
14322
14267
|
user_status?: string | undefined;
|
|
14323
14268
|
}[]>]: never; }) | undefined;
|
|
14324
|
-
} & { [
|
|
14269
|
+
} & { [K_441 in Exclude<keyof I_1["status"], "presences">]: never; }) | undefined;
|
|
14325
14270
|
status_follow?: ({
|
|
14326
14271
|
user_ids?: string[] | undefined;
|
|
14327
14272
|
usernames?: string[] | undefined;
|
|
14328
14273
|
} & {
|
|
14329
|
-
user_ids?: (string[] & string[] & { [
|
|
14330
|
-
usernames?: (string[] & string[] & { [
|
|
14331
|
-
} & { [
|
|
14274
|
+
user_ids?: (string[] & string[] & { [K_442 in Exclude<keyof I_1["status_follow"]["user_ids"], keyof string[]>]: never; }) | undefined;
|
|
14275
|
+
usernames?: (string[] & string[] & { [K_443 in Exclude<keyof I_1["status_follow"]["usernames"], keyof string[]>]: never; }) | undefined;
|
|
14276
|
+
} & { [K_444 in Exclude<keyof I_1["status_follow"], keyof StatusFollow>]: never; }) | undefined;
|
|
14332
14277
|
status_presence_event?: ({
|
|
14333
14278
|
joins?: {
|
|
14334
14279
|
user_id?: string | undefined;
|
|
@@ -14368,7 +14313,7 @@ export declare const Envelope: {
|
|
|
14368
14313
|
status?: string | undefined;
|
|
14369
14314
|
is_mobile?: boolean | undefined;
|
|
14370
14315
|
user_status?: string | undefined;
|
|
14371
|
-
} & { [
|
|
14316
|
+
} & { [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
14317
|
user_id?: string | undefined;
|
|
14373
14318
|
session_id?: string | undefined;
|
|
14374
14319
|
username?: string | undefined;
|
|
@@ -14397,7 +14342,7 @@ export declare const Envelope: {
|
|
|
14397
14342
|
status?: string | undefined;
|
|
14398
14343
|
is_mobile?: boolean | undefined;
|
|
14399
14344
|
user_status?: string | undefined;
|
|
14400
|
-
} & { [
|
|
14345
|
+
} & { [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
14346
|
user_id?: string | undefined;
|
|
14402
14347
|
session_id?: string | undefined;
|
|
14403
14348
|
username?: string | undefined;
|
|
@@ -14405,17 +14350,17 @@ export declare const Envelope: {
|
|
|
14405
14350
|
is_mobile?: boolean | undefined;
|
|
14406
14351
|
user_status?: string | undefined;
|
|
14407
14352
|
}[]>]: never; }) | undefined;
|
|
14408
|
-
} & { [
|
|
14353
|
+
} & { [K_449 in Exclude<keyof I_1["status_presence_event"], keyof StatusPresenceEvent>]: never; }) | undefined;
|
|
14409
14354
|
status_unfollow?: ({
|
|
14410
14355
|
user_ids?: string[] | undefined;
|
|
14411
14356
|
} & {
|
|
14412
|
-
user_ids?: (string[] & string[] & { [
|
|
14413
|
-
} & { [
|
|
14357
|
+
user_ids?: (string[] & string[] & { [K_450 in Exclude<keyof I_1["status_unfollow"]["user_ids"], keyof string[]>]: never; }) | undefined;
|
|
14358
|
+
} & { [K_451 in Exclude<keyof I_1["status_unfollow"], "user_ids">]: never; }) | undefined;
|
|
14414
14359
|
status_update?: ({
|
|
14415
14360
|
status?: string | undefined;
|
|
14416
14361
|
} & {
|
|
14417
14362
|
status?: string | undefined;
|
|
14418
|
-
} & { [
|
|
14363
|
+
} & { [K_452 in Exclude<keyof I_1["status_update"], "status">]: never; }) | undefined;
|
|
14419
14364
|
stream_data?: ({
|
|
14420
14365
|
stream?: {
|
|
14421
14366
|
mode?: number | undefined;
|
|
@@ -14444,7 +14389,7 @@ export declare const Envelope: {
|
|
|
14444
14389
|
channel_id?: string | undefined;
|
|
14445
14390
|
clan_id?: string | undefined;
|
|
14446
14391
|
label?: string | undefined;
|
|
14447
|
-
} & { [
|
|
14392
|
+
} & { [K_453 in Exclude<keyof I_1["stream_data"]["stream"], keyof Stream>]: never; }) | undefined;
|
|
14448
14393
|
sender?: ({
|
|
14449
14394
|
user_id?: string | undefined;
|
|
14450
14395
|
session_id?: string | undefined;
|
|
@@ -14459,10 +14404,10 @@ export declare const Envelope: {
|
|
|
14459
14404
|
status?: string | undefined;
|
|
14460
14405
|
is_mobile?: boolean | undefined;
|
|
14461
14406
|
user_status?: string | undefined;
|
|
14462
|
-
} & { [
|
|
14407
|
+
} & { [K_454 in Exclude<keyof I_1["stream_data"]["sender"], keyof UserPresence>]: never; }) | undefined;
|
|
14463
14408
|
data?: string | undefined;
|
|
14464
14409
|
reliable?: boolean | undefined;
|
|
14465
|
-
} & { [
|
|
14410
|
+
} & { [K_455 in Exclude<keyof I_1["stream_data"], keyof StreamData>]: never; }) | undefined;
|
|
14466
14411
|
stream_presence_event?: ({
|
|
14467
14412
|
stream?: {
|
|
14468
14413
|
mode?: number | undefined;
|
|
@@ -14497,7 +14442,7 @@ export declare const Envelope: {
|
|
|
14497
14442
|
channel_id?: string | undefined;
|
|
14498
14443
|
clan_id?: string | undefined;
|
|
14499
14444
|
label?: string | undefined;
|
|
14500
|
-
} & { [
|
|
14445
|
+
} & { [K_456 in Exclude<keyof I_1["stream_presence_event"]["stream"], keyof Stream>]: never; }) | undefined;
|
|
14501
14446
|
joins?: ({
|
|
14502
14447
|
user_id?: string | undefined;
|
|
14503
14448
|
session_id?: string | undefined;
|
|
@@ -14519,7 +14464,7 @@ export declare const Envelope: {
|
|
|
14519
14464
|
status?: string | undefined;
|
|
14520
14465
|
is_mobile?: boolean | undefined;
|
|
14521
14466
|
user_status?: string | undefined;
|
|
14522
|
-
} & { [
|
|
14467
|
+
} & { [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
14468
|
user_id?: string | undefined;
|
|
14524
14469
|
session_id?: string | undefined;
|
|
14525
14470
|
username?: string | undefined;
|
|
@@ -14548,7 +14493,7 @@ export declare const Envelope: {
|
|
|
14548
14493
|
status?: string | undefined;
|
|
14549
14494
|
is_mobile?: boolean | undefined;
|
|
14550
14495
|
user_status?: string | undefined;
|
|
14551
|
-
} & { [
|
|
14496
|
+
} & { [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
14497
|
user_id?: string | undefined;
|
|
14553
14498
|
session_id?: string | undefined;
|
|
14554
14499
|
username?: string | undefined;
|
|
@@ -14556,9 +14501,9 @@ export declare const Envelope: {
|
|
|
14556
14501
|
is_mobile?: boolean | undefined;
|
|
14557
14502
|
user_status?: string | undefined;
|
|
14558
14503
|
}[]>]: never; }) | undefined;
|
|
14559
|
-
} & { [
|
|
14560
|
-
ping?: ({} & {} & { [
|
|
14561
|
-
pong?: ({} & {} & { [
|
|
14504
|
+
} & { [K_461 in Exclude<keyof I_1["stream_presence_event"], keyof StreamPresenceEvent>]: never; }) | undefined;
|
|
14505
|
+
ping?: ({} & {} & { [K_462 in Exclude<keyof I_1["ping"], never>]: never; }) | undefined;
|
|
14506
|
+
pong?: ({} & {} & { [K_463 in Exclude<keyof I_1["pong"], never>]: never; }) | undefined;
|
|
14562
14507
|
message_typing_event?: ({
|
|
14563
14508
|
clan_id?: string | undefined;
|
|
14564
14509
|
channel_id?: string | undefined;
|
|
@@ -14577,7 +14522,7 @@ export declare const Envelope: {
|
|
|
14577
14522
|
sender_username?: string | undefined;
|
|
14578
14523
|
sender_display_name?: string | undefined;
|
|
14579
14524
|
topic_id?: string | undefined;
|
|
14580
|
-
} & { [
|
|
14525
|
+
} & { [K_464 in Exclude<keyof I_1["message_typing_event"], keyof MessageTypingEvent>]: never; }) | undefined;
|
|
14581
14526
|
last_seen_message_event?: ({
|
|
14582
14527
|
clan_id?: string | undefined;
|
|
14583
14528
|
channel_id?: string | undefined;
|
|
@@ -14592,7 +14537,7 @@ export declare const Envelope: {
|
|
|
14592
14537
|
mode?: number | undefined;
|
|
14593
14538
|
timestamp_seconds?: number | undefined;
|
|
14594
14539
|
badge_count?: number | undefined;
|
|
14595
|
-
} & { [
|
|
14540
|
+
} & { [K_465 in Exclude<keyof I_1["last_seen_message_event"], keyof LastSeenMessageEvent>]: never; }) | undefined;
|
|
14596
14541
|
message_reaction_event?: ({
|
|
14597
14542
|
id?: string | undefined;
|
|
14598
14543
|
emoji_id?: string | undefined;
|
|
@@ -14627,7 +14572,7 @@ export declare const Envelope: {
|
|
|
14627
14572
|
is_public?: boolean | undefined;
|
|
14628
14573
|
topic_id?: string | undefined;
|
|
14629
14574
|
emoji_recent_id?: string | undefined;
|
|
14630
|
-
} & { [
|
|
14575
|
+
} & { [K_466 in Exclude<keyof I_1["message_reaction_event"], keyof MessageReaction>]: never; }) | undefined;
|
|
14631
14576
|
voice_joined_event?: ({
|
|
14632
14577
|
clan_id?: string | undefined;
|
|
14633
14578
|
clan_name?: string | undefined;
|
|
@@ -14646,7 +14591,7 @@ export declare const Envelope: {
|
|
|
14646
14591
|
voice_channel_label?: string | undefined;
|
|
14647
14592
|
voice_channel_id?: string | undefined;
|
|
14648
14593
|
last_screenshot?: string | undefined;
|
|
14649
|
-
} & { [
|
|
14594
|
+
} & { [K_467 in Exclude<keyof I_1["voice_joined_event"], keyof VoiceJoinedEvent>]: never; }) | undefined;
|
|
14650
14595
|
voice_leaved_event?: ({
|
|
14651
14596
|
id?: string | undefined;
|
|
14652
14597
|
clan_id?: string | undefined;
|
|
@@ -14657,7 +14602,7 @@ export declare const Envelope: {
|
|
|
14657
14602
|
clan_id?: string | undefined;
|
|
14658
14603
|
voice_channel_id?: string | undefined;
|
|
14659
14604
|
voice_user_id?: string | undefined;
|
|
14660
|
-
} & { [
|
|
14605
|
+
} & { [K_468 in Exclude<keyof I_1["voice_leaved_event"], keyof VoiceLeavedEvent>]: never; }) | undefined;
|
|
14661
14606
|
voice_started_event?: ({
|
|
14662
14607
|
id?: string | undefined;
|
|
14663
14608
|
clan_id?: string | undefined;
|
|
@@ -14666,7 +14611,7 @@ export declare const Envelope: {
|
|
|
14666
14611
|
id?: string | undefined;
|
|
14667
14612
|
clan_id?: string | undefined;
|
|
14668
14613
|
voice_channel_id?: string | undefined;
|
|
14669
|
-
} & { [
|
|
14614
|
+
} & { [K_469 in Exclude<keyof I_1["voice_started_event"], keyof VoiceStartedEvent>]: never; }) | undefined;
|
|
14670
14615
|
voice_ended_event?: ({
|
|
14671
14616
|
id?: string | undefined;
|
|
14672
14617
|
clan_id?: string | undefined;
|
|
@@ -14675,7 +14620,7 @@ export declare const Envelope: {
|
|
|
14675
14620
|
id?: string | undefined;
|
|
14676
14621
|
clan_id?: string | undefined;
|
|
14677
14622
|
voice_channel_id?: string | undefined;
|
|
14678
|
-
} & { [
|
|
14623
|
+
} & { [K_470 in Exclude<keyof I_1["voice_ended_event"], keyof VoiceEndedEvent>]: never; }) | undefined;
|
|
14679
14624
|
channel_created_event?: ({
|
|
14680
14625
|
clan_id?: string | undefined;
|
|
14681
14626
|
category_id?: string | undefined;
|
|
@@ -14702,7 +14647,7 @@ export declare const Envelope: {
|
|
|
14702
14647
|
app_id?: string | undefined;
|
|
14703
14648
|
clan_name?: string | undefined;
|
|
14704
14649
|
channel_avatar?: string | undefined;
|
|
14705
|
-
} & { [
|
|
14650
|
+
} & { [K_471 in Exclude<keyof I_1["channel_created_event"], keyof ChannelCreatedEvent>]: never; }) | undefined;
|
|
14706
14651
|
channel_deleted_event?: ({
|
|
14707
14652
|
clan_id?: string | undefined;
|
|
14708
14653
|
category_id?: string | undefined;
|
|
@@ -14715,7 +14660,7 @@ export declare const Envelope: {
|
|
|
14715
14660
|
parent_id?: string | undefined;
|
|
14716
14661
|
channel_id?: string | undefined;
|
|
14717
14662
|
deletor?: string | undefined;
|
|
14718
|
-
} & { [
|
|
14663
|
+
} & { [K_472 in Exclude<keyof I_1["channel_deleted_event"], keyof ChannelDeletedEvent>]: never; }) | undefined;
|
|
14719
14664
|
channel_updated_event?: ({
|
|
14720
14665
|
clan_id?: string | undefined;
|
|
14721
14666
|
category_id?: string | undefined;
|
|
@@ -14755,10 +14700,10 @@ export declare const Envelope: {
|
|
|
14755
14700
|
age_restricted?: number | undefined;
|
|
14756
14701
|
active?: number | undefined;
|
|
14757
14702
|
count_mess_unread?: number | undefined;
|
|
14758
|
-
user_ids?: (string[] & string[] & { [
|
|
14759
|
-
role_ids?: (string[] & string[] & { [
|
|
14703
|
+
user_ids?: (string[] & string[] & { [K_473 in Exclude<keyof I_1["channel_updated_event"]["user_ids"], keyof string[]>]: never; }) | undefined;
|
|
14704
|
+
role_ids?: (string[] & string[] & { [K_474 in Exclude<keyof I_1["channel_updated_event"]["role_ids"], keyof string[]>]: never; }) | undefined;
|
|
14760
14705
|
channel_avatar?: string | undefined;
|
|
14761
|
-
} & { [
|
|
14706
|
+
} & { [K_475 in Exclude<keyof I_1["channel_updated_event"], keyof ChannelUpdatedEvent>]: never; }) | undefined;
|
|
14762
14707
|
last_pin_message_event?: ({
|
|
14763
14708
|
clan_id?: string | undefined;
|
|
14764
14709
|
channel_id?: string | undefined;
|
|
@@ -14789,7 +14734,7 @@ export declare const Envelope: {
|
|
|
14789
14734
|
message_content?: string | undefined;
|
|
14790
14735
|
message_attachment?: string | undefined;
|
|
14791
14736
|
message_created_time?: string | undefined;
|
|
14792
|
-
} & { [
|
|
14737
|
+
} & { [K_476 in Exclude<keyof I_1["last_pin_message_event"], keyof LastPinMessageEvent>]: never; }) | undefined;
|
|
14793
14738
|
custom_status_event?: ({
|
|
14794
14739
|
clan_id?: string | undefined;
|
|
14795
14740
|
user_id?: string | undefined;
|
|
@@ -14804,7 +14749,7 @@ export declare const Envelope: {
|
|
|
14804
14749
|
status?: string | undefined;
|
|
14805
14750
|
time_reset?: number | undefined;
|
|
14806
14751
|
no_clear?: boolean | undefined;
|
|
14807
|
-
} & { [
|
|
14752
|
+
} & { [K_477 in Exclude<keyof I_1["custom_status_event"], keyof CustomStatusEvent>]: never; }) | undefined;
|
|
14808
14753
|
user_channel_added_event?: ({
|
|
14809
14754
|
channel_desc?: {
|
|
14810
14755
|
clan_id?: string | undefined;
|
|
@@ -14864,21 +14809,17 @@ export declare const Envelope: {
|
|
|
14864
14809
|
username?: string | undefined;
|
|
14865
14810
|
avatar?: string | undefined;
|
|
14866
14811
|
display_name?: string | undefined;
|
|
14867
|
-
about_me?: string | undefined;
|
|
14868
14812
|
user_status?: string | undefined;
|
|
14869
14813
|
status?: string | undefined;
|
|
14870
|
-
|
|
14814
|
+
online?: boolean | undefined;
|
|
14871
14815
|
fcm_tokens?: {
|
|
14872
14816
|
device_id?: string | undefined;
|
|
14873
14817
|
token_id?: string | undefined;
|
|
14874
14818
|
platform?: string | undefined;
|
|
14875
14819
|
}[] | undefined;
|
|
14876
|
-
online?: boolean | undefined;
|
|
14877
|
-
is_disabled?: boolean | undefined;
|
|
14878
14820
|
joined_clans?: string[] | undefined;
|
|
14879
|
-
pubkey?: string | undefined;
|
|
14880
|
-
mezon_id?: string | undefined;
|
|
14881
14821
|
app_token?: string | undefined;
|
|
14822
|
+
create_time_second?: number | undefined;
|
|
14882
14823
|
app_url?: string | undefined;
|
|
14883
14824
|
is_bot?: boolean | undefined;
|
|
14884
14825
|
voip_token?: string | undefined;
|
|
@@ -14890,21 +14831,17 @@ export declare const Envelope: {
|
|
|
14890
14831
|
username?: string | undefined;
|
|
14891
14832
|
avatar?: string | undefined;
|
|
14892
14833
|
display_name?: string | undefined;
|
|
14893
|
-
about_me?: string | undefined;
|
|
14894
14834
|
user_status?: string | undefined;
|
|
14895
14835
|
status?: string | undefined;
|
|
14896
|
-
|
|
14836
|
+
online?: boolean | undefined;
|
|
14897
14837
|
fcm_tokens?: {
|
|
14898
14838
|
device_id?: string | undefined;
|
|
14899
14839
|
token_id?: string | undefined;
|
|
14900
14840
|
platform?: string | undefined;
|
|
14901
14841
|
}[] | undefined;
|
|
14902
|
-
online?: boolean | undefined;
|
|
14903
|
-
is_disabled?: boolean | undefined;
|
|
14904
14842
|
joined_clans?: string[] | undefined;
|
|
14905
|
-
pubkey?: string | undefined;
|
|
14906
|
-
mezon_id?: string | undefined;
|
|
14907
14843
|
app_token?: string | undefined;
|
|
14844
|
+
create_time_second?: number | undefined;
|
|
14908
14845
|
app_url?: string | undefined;
|
|
14909
14846
|
is_bot?: boolean | undefined;
|
|
14910
14847
|
voip_token?: string | undefined;
|
|
@@ -14974,8 +14911,8 @@ export declare const Envelope: {
|
|
|
14974
14911
|
creator_id?: string | undefined;
|
|
14975
14912
|
channel_label?: string | undefined;
|
|
14976
14913
|
channel_private?: number | undefined;
|
|
14977
|
-
avatars?: (string[] & string[] & { [
|
|
14978
|
-
user_ids?: (string[] & string[] & { [
|
|
14914
|
+
avatars?: (string[] & string[] & { [K_478 in Exclude<keyof I_1["user_channel_added_event"]["channel_desc"]["avatars"], keyof string[]>]: never; }) | undefined;
|
|
14915
|
+
user_ids?: (string[] & string[] & { [K_479 in Exclude<keyof I_1["user_channel_added_event"]["channel_desc"]["user_ids"], keyof string[]>]: never; }) | undefined;
|
|
14979
14916
|
last_sent_message?: ({
|
|
14980
14917
|
id?: string | undefined;
|
|
14981
14918
|
timestamp_seconds?: number | undefined;
|
|
@@ -14995,8 +14932,8 @@ export declare const Envelope: {
|
|
|
14995
14932
|
reference?: string | undefined;
|
|
14996
14933
|
mention?: string | undefined;
|
|
14997
14934
|
reaction?: string | undefined;
|
|
14998
|
-
repliers?: (string[] & string[] & { [
|
|
14999
|
-
} & { [
|
|
14935
|
+
repliers?: (string[] & string[] & { [K_480 in Exclude<keyof I_1["user_channel_added_event"]["channel_desc"]["last_sent_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
14936
|
+
} & { [K_481 in Exclude<keyof I_1["user_channel_added_event"]["channel_desc"]["last_sent_message"], keyof ChannelMessageHeader>]: never; }) | undefined;
|
|
15000
14937
|
last_seen_message?: ({
|
|
15001
14938
|
id?: string | undefined;
|
|
15002
14939
|
timestamp_seconds?: number | undefined;
|
|
@@ -15016,18 +14953,18 @@ export declare const Envelope: {
|
|
|
15016
14953
|
reference?: string | undefined;
|
|
15017
14954
|
mention?: string | undefined;
|
|
15018
14955
|
reaction?: string | undefined;
|
|
15019
|
-
repliers?: (string[] & string[] & { [
|
|
15020
|
-
} & { [
|
|
15021
|
-
onlines?: (boolean[] & boolean[] & { [
|
|
14956
|
+
repliers?: (string[] & string[] & { [K_482 in Exclude<keyof I_1["user_channel_added_event"]["channel_desc"]["last_seen_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
14957
|
+
} & { [K_483 in Exclude<keyof I_1["user_channel_added_event"]["channel_desc"]["last_seen_message"], keyof ChannelMessageHeader>]: never; }) | undefined;
|
|
14958
|
+
onlines?: (boolean[] & boolean[] & { [K_484 in Exclude<keyof I_1["user_channel_added_event"]["channel_desc"]["onlines"], keyof boolean[]>]: never; }) | undefined;
|
|
15022
14959
|
meeting_code?: string | undefined;
|
|
15023
14960
|
count_mess_unread?: number | undefined;
|
|
15024
14961
|
active?: number | undefined;
|
|
15025
14962
|
last_pin_message?: string | undefined;
|
|
15026
|
-
usernames?: (string[] & string[] & { [
|
|
14963
|
+
usernames?: (string[] & string[] & { [K_485 in Exclude<keyof I_1["user_channel_added_event"]["channel_desc"]["usernames"], keyof string[]>]: never; }) | undefined;
|
|
15027
14964
|
creator_name?: string | undefined;
|
|
15028
14965
|
create_time_seconds?: number | undefined;
|
|
15029
14966
|
update_time_seconds?: number | undefined;
|
|
15030
|
-
display_names?: (string[] & string[] & { [
|
|
14967
|
+
display_names?: (string[] & string[] & { [K_486 in Exclude<keyof I_1["user_channel_added_event"]["channel_desc"]["display_names"], keyof string[]>]: never; }) | undefined;
|
|
15031
14968
|
channel_avatar?: string | undefined;
|
|
15032
14969
|
clan_name?: string | undefined;
|
|
15033
14970
|
app_id?: string | undefined;
|
|
@@ -15036,27 +14973,23 @@ export declare const Envelope: {
|
|
|
15036
14973
|
topic?: string | undefined;
|
|
15037
14974
|
e2ee?: number | undefined;
|
|
15038
14975
|
member_count?: number | undefined;
|
|
15039
|
-
} & { [
|
|
14976
|
+
} & { [K_487 in Exclude<keyof I_1["user_channel_added_event"]["channel_desc"], keyof ChannelDescription1>]: never; }) | undefined;
|
|
15040
14977
|
users?: ({
|
|
15041
14978
|
user_id?: string | undefined;
|
|
15042
14979
|
username?: string | undefined;
|
|
15043
14980
|
avatar?: string | undefined;
|
|
15044
14981
|
display_name?: string | undefined;
|
|
15045
|
-
about_me?: string | undefined;
|
|
15046
14982
|
user_status?: string | undefined;
|
|
15047
14983
|
status?: string | undefined;
|
|
15048
|
-
|
|
14984
|
+
online?: boolean | undefined;
|
|
15049
14985
|
fcm_tokens?: {
|
|
15050
14986
|
device_id?: string | undefined;
|
|
15051
14987
|
token_id?: string | undefined;
|
|
15052
14988
|
platform?: string | undefined;
|
|
15053
14989
|
}[] | undefined;
|
|
15054
|
-
online?: boolean | undefined;
|
|
15055
|
-
is_disabled?: boolean | undefined;
|
|
15056
14990
|
joined_clans?: string[] | undefined;
|
|
15057
|
-
pubkey?: string | undefined;
|
|
15058
|
-
mezon_id?: string | undefined;
|
|
15059
14991
|
app_token?: string | undefined;
|
|
14992
|
+
create_time_second?: number | undefined;
|
|
15060
14993
|
app_url?: string | undefined;
|
|
15061
14994
|
is_bot?: boolean | undefined;
|
|
15062
14995
|
voip_token?: string | undefined;
|
|
@@ -15065,21 +14998,17 @@ export declare const Envelope: {
|
|
|
15065
14998
|
username?: string | undefined;
|
|
15066
14999
|
avatar?: string | undefined;
|
|
15067
15000
|
display_name?: string | undefined;
|
|
15068
|
-
about_me?: string | undefined;
|
|
15069
15001
|
user_status?: string | undefined;
|
|
15070
15002
|
status?: string | undefined;
|
|
15071
|
-
|
|
15003
|
+
online?: boolean | undefined;
|
|
15072
15004
|
fcm_tokens?: {
|
|
15073
15005
|
device_id?: string | undefined;
|
|
15074
15006
|
token_id?: string | undefined;
|
|
15075
15007
|
platform?: string | undefined;
|
|
15076
15008
|
}[] | undefined;
|
|
15077
|
-
online?: boolean | undefined;
|
|
15078
|
-
is_disabled?: boolean | undefined;
|
|
15079
15009
|
joined_clans?: string[] | undefined;
|
|
15080
|
-
pubkey?: string | undefined;
|
|
15081
|
-
mezon_id?: string | undefined;
|
|
15082
15010
|
app_token?: string | undefined;
|
|
15011
|
+
create_time_second?: number | undefined;
|
|
15083
15012
|
app_url?: string | undefined;
|
|
15084
15013
|
is_bot?: boolean | undefined;
|
|
15085
15014
|
voip_token?: string | undefined;
|
|
@@ -15088,10 +15017,9 @@ export declare const Envelope: {
|
|
|
15088
15017
|
username?: string | undefined;
|
|
15089
15018
|
avatar?: string | undefined;
|
|
15090
15019
|
display_name?: string | undefined;
|
|
15091
|
-
about_me?: string | undefined;
|
|
15092
15020
|
user_status?: string | undefined;
|
|
15093
15021
|
status?: string | undefined;
|
|
15094
|
-
|
|
15022
|
+
online?: boolean | undefined;
|
|
15095
15023
|
fcm_tokens?: ({
|
|
15096
15024
|
device_id?: string | undefined;
|
|
15097
15025
|
token_id?: string | undefined;
|
|
@@ -15104,40 +15032,33 @@ export declare const Envelope: {
|
|
|
15104
15032
|
device_id?: string | undefined;
|
|
15105
15033
|
token_id?: string | undefined;
|
|
15106
15034
|
platform?: string | undefined;
|
|
15107
|
-
} & { [
|
|
15035
|
+
} & { [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
15036
|
device_id?: string | undefined;
|
|
15109
15037
|
token_id?: string | undefined;
|
|
15110
15038
|
platform?: string | undefined;
|
|
15111
15039
|
}[]>]: 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;
|
|
15040
|
+
joined_clans?: (string[] & string[] & { [K_490 in Exclude<keyof I_1["user_channel_added_event"]["users"][number]["joined_clans"], keyof string[]>]: never; }) | undefined;
|
|
15117
15041
|
app_token?: string | undefined;
|
|
15042
|
+
create_time_second?: number | undefined;
|
|
15118
15043
|
app_url?: string | undefined;
|
|
15119
15044
|
is_bot?: boolean | undefined;
|
|
15120
15045
|
voip_token?: string | undefined;
|
|
15121
|
-
} & { [
|
|
15046
|
+
} & { [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
15047
|
user_id?: string | undefined;
|
|
15123
15048
|
username?: string | undefined;
|
|
15124
15049
|
avatar?: string | undefined;
|
|
15125
15050
|
display_name?: string | undefined;
|
|
15126
|
-
about_me?: string | undefined;
|
|
15127
15051
|
user_status?: string | undefined;
|
|
15128
15052
|
status?: string | undefined;
|
|
15129
|
-
|
|
15053
|
+
online?: boolean | undefined;
|
|
15130
15054
|
fcm_tokens?: {
|
|
15131
15055
|
device_id?: string | undefined;
|
|
15132
15056
|
token_id?: string | undefined;
|
|
15133
15057
|
platform?: string | undefined;
|
|
15134
15058
|
}[] | undefined;
|
|
15135
|
-
online?: boolean | undefined;
|
|
15136
|
-
is_disabled?: boolean | undefined;
|
|
15137
15059
|
joined_clans?: string[] | undefined;
|
|
15138
|
-
pubkey?: string | undefined;
|
|
15139
|
-
mezon_id?: string | undefined;
|
|
15140
15060
|
app_token?: string | undefined;
|
|
15061
|
+
create_time_second?: number | undefined;
|
|
15141
15062
|
app_url?: string | undefined;
|
|
15142
15063
|
is_bot?: boolean | undefined;
|
|
15143
15064
|
voip_token?: string | undefined;
|
|
@@ -15149,21 +15070,17 @@ export declare const Envelope: {
|
|
|
15149
15070
|
username?: string | undefined;
|
|
15150
15071
|
avatar?: string | undefined;
|
|
15151
15072
|
display_name?: string | undefined;
|
|
15152
|
-
about_me?: string | undefined;
|
|
15153
15073
|
user_status?: string | undefined;
|
|
15154
15074
|
status?: string | undefined;
|
|
15155
|
-
|
|
15075
|
+
online?: boolean | undefined;
|
|
15156
15076
|
fcm_tokens?: {
|
|
15157
15077
|
device_id?: string | undefined;
|
|
15158
15078
|
token_id?: string | undefined;
|
|
15159
15079
|
platform?: string | undefined;
|
|
15160
15080
|
}[] | undefined;
|
|
15161
|
-
online?: boolean | undefined;
|
|
15162
|
-
is_disabled?: boolean | undefined;
|
|
15163
15081
|
joined_clans?: string[] | undefined;
|
|
15164
|
-
pubkey?: string | undefined;
|
|
15165
|
-
mezon_id?: string | undefined;
|
|
15166
15082
|
app_token?: string | undefined;
|
|
15083
|
+
create_time_second?: number | undefined;
|
|
15167
15084
|
app_url?: string | undefined;
|
|
15168
15085
|
is_bot?: boolean | undefined;
|
|
15169
15086
|
voip_token?: string | undefined;
|
|
@@ -15172,10 +15089,9 @@ export declare const Envelope: {
|
|
|
15172
15089
|
username?: string | undefined;
|
|
15173
15090
|
avatar?: string | undefined;
|
|
15174
15091
|
display_name?: string | undefined;
|
|
15175
|
-
about_me?: string | undefined;
|
|
15176
15092
|
user_status?: string | undefined;
|
|
15177
15093
|
status?: string | undefined;
|
|
15178
|
-
|
|
15094
|
+
online?: boolean | undefined;
|
|
15179
15095
|
fcm_tokens?: ({
|
|
15180
15096
|
device_id?: string | undefined;
|
|
15181
15097
|
token_id?: string | undefined;
|
|
@@ -15188,24 +15104,21 @@ export declare const Envelope: {
|
|
|
15188
15104
|
device_id?: string | undefined;
|
|
15189
15105
|
token_id?: string | undefined;
|
|
15190
15106
|
platform?: string | undefined;
|
|
15191
|
-
} & { [
|
|
15107
|
+
} & { [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
15108
|
device_id?: string | undefined;
|
|
15193
15109
|
token_id?: string | undefined;
|
|
15194
15110
|
platform?: string | undefined;
|
|
15195
15111
|
}[]>]: 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;
|
|
15112
|
+
joined_clans?: (string[] & string[] & { [K_495 in Exclude<keyof I_1["user_channel_added_event"]["caller"]["joined_clans"], keyof string[]>]: never; }) | undefined;
|
|
15201
15113
|
app_token?: string | undefined;
|
|
15114
|
+
create_time_second?: number | undefined;
|
|
15202
15115
|
app_url?: string | undefined;
|
|
15203
15116
|
is_bot?: boolean | undefined;
|
|
15204
15117
|
voip_token?: string | undefined;
|
|
15205
|
-
} & { [
|
|
15118
|
+
} & { [K_496 in Exclude<keyof I_1["user_channel_added_event"]["caller"], keyof UserProfileRedis>]: never; }) | undefined;
|
|
15206
15119
|
create_time_second?: number | undefined;
|
|
15207
15120
|
active?: number | undefined;
|
|
15208
|
-
} & { [
|
|
15121
|
+
} & { [K_497 in Exclude<keyof I_1["user_channel_added_event"], keyof UserChannelAdded>]: never; }) | undefined;
|
|
15209
15122
|
user_channel_removed_event?: ({
|
|
15210
15123
|
channel_id?: string | undefined;
|
|
15211
15124
|
user_ids?: string[] | undefined;
|
|
@@ -15214,18 +15127,18 @@ export declare const Envelope: {
|
|
|
15214
15127
|
badge_counts?: number[] | undefined;
|
|
15215
15128
|
} & {
|
|
15216
15129
|
channel_id?: string | undefined;
|
|
15217
|
-
user_ids?: (string[] & string[] & { [
|
|
15130
|
+
user_ids?: (string[] & string[] & { [K_498 in Exclude<keyof I_1["user_channel_removed_event"]["user_ids"], keyof string[]>]: never; }) | undefined;
|
|
15218
15131
|
channel_type?: number | undefined;
|
|
15219
15132
|
clan_id?: string | undefined;
|
|
15220
|
-
badge_counts?: (number[] & number[] & { [
|
|
15221
|
-
} & { [
|
|
15133
|
+
badge_counts?: (number[] & number[] & { [K_499 in Exclude<keyof I_1["user_channel_removed_event"]["badge_counts"], keyof number[]>]: never; }) | undefined;
|
|
15134
|
+
} & { [K_500 in Exclude<keyof I_1["user_channel_removed_event"], keyof UserChannelRemoved>]: never; }) | undefined;
|
|
15222
15135
|
user_clan_removed_event?: ({
|
|
15223
15136
|
clan_id?: string | undefined;
|
|
15224
15137
|
user_ids?: string[] | undefined;
|
|
15225
15138
|
} & {
|
|
15226
15139
|
clan_id?: string | undefined;
|
|
15227
|
-
user_ids?: (string[] & string[] & { [
|
|
15228
|
-
} & { [
|
|
15140
|
+
user_ids?: (string[] & string[] & { [K_501 in Exclude<keyof I_1["user_clan_removed_event"]["user_ids"], keyof string[]>]: never; }) | undefined;
|
|
15141
|
+
} & { [K_502 in Exclude<keyof I_1["user_clan_removed_event"], keyof UserClanRemoved>]: never; }) | undefined;
|
|
15229
15142
|
clan_updated_event?: ({
|
|
15230
15143
|
clan_id?: string | undefined;
|
|
15231
15144
|
clan_name?: string | undefined;
|
|
@@ -15252,7 +15165,7 @@ export declare const Envelope: {
|
|
|
15252
15165
|
is_community?: boolean | undefined;
|
|
15253
15166
|
about?: string | undefined;
|
|
15254
15167
|
description?: string | undefined;
|
|
15255
|
-
} & { [
|
|
15168
|
+
} & { [K_503 in Exclude<keyof I_1["clan_updated_event"], keyof ClanUpdatedEvent>]: never; }) | undefined;
|
|
15256
15169
|
clan_profile_updated_event?: ({
|
|
15257
15170
|
user_id?: string | undefined;
|
|
15258
15171
|
clan_nick?: string | undefined;
|
|
@@ -15263,7 +15176,7 @@ export declare const Envelope: {
|
|
|
15263
15176
|
clan_nick?: string | undefined;
|
|
15264
15177
|
clan_avatar?: string | undefined;
|
|
15265
15178
|
clan_id?: string | undefined;
|
|
15266
|
-
} & { [
|
|
15179
|
+
} & { [K_504 in Exclude<keyof I_1["clan_profile_updated_event"], keyof ClanProfileUpdatedEvent>]: never; }) | undefined;
|
|
15267
15180
|
check_name_existed_event?: ({
|
|
15268
15181
|
name?: string | undefined;
|
|
15269
15182
|
condition_id?: string | undefined;
|
|
@@ -15274,7 +15187,7 @@ export declare const Envelope: {
|
|
|
15274
15187
|
condition_id?: string | undefined;
|
|
15275
15188
|
exist?: boolean | undefined;
|
|
15276
15189
|
type?: number | undefined;
|
|
15277
|
-
} & { [
|
|
15190
|
+
} & { [K_505 in Exclude<keyof I_1["check_name_existed_event"], keyof CheckNameExistedEvent>]: never; }) | undefined;
|
|
15278
15191
|
user_profile_updated_event?: ({
|
|
15279
15192
|
user_id?: string | undefined;
|
|
15280
15193
|
display_name?: string | undefined;
|
|
@@ -15291,7 +15204,7 @@ export declare const Envelope: {
|
|
|
15291
15204
|
channel_id?: string | undefined;
|
|
15292
15205
|
clan_id?: string | undefined;
|
|
15293
15206
|
encrypt_private_key?: string | undefined;
|
|
15294
|
-
} & { [
|
|
15207
|
+
} & { [K_506 in Exclude<keyof I_1["user_profile_updated_event"], keyof UserProfileUpdatedEvent>]: never; }) | undefined;
|
|
15295
15208
|
add_clan_user_event?: ({
|
|
15296
15209
|
clan_id?: string | undefined;
|
|
15297
15210
|
user?: {
|
|
@@ -15299,21 +15212,17 @@ export declare const Envelope: {
|
|
|
15299
15212
|
username?: string | undefined;
|
|
15300
15213
|
avatar?: string | undefined;
|
|
15301
15214
|
display_name?: string | undefined;
|
|
15302
|
-
about_me?: string | undefined;
|
|
15303
15215
|
user_status?: string | undefined;
|
|
15304
15216
|
status?: string | undefined;
|
|
15305
|
-
|
|
15217
|
+
online?: boolean | undefined;
|
|
15306
15218
|
fcm_tokens?: {
|
|
15307
15219
|
device_id?: string | undefined;
|
|
15308
15220
|
token_id?: string | undefined;
|
|
15309
15221
|
platform?: string | undefined;
|
|
15310
15222
|
}[] | undefined;
|
|
15311
|
-
online?: boolean | undefined;
|
|
15312
|
-
is_disabled?: boolean | undefined;
|
|
15313
15223
|
joined_clans?: string[] | undefined;
|
|
15314
|
-
pubkey?: string | undefined;
|
|
15315
|
-
mezon_id?: string | undefined;
|
|
15316
15224
|
app_token?: string | undefined;
|
|
15225
|
+
create_time_second?: number | undefined;
|
|
15317
15226
|
app_url?: string | undefined;
|
|
15318
15227
|
is_bot?: boolean | undefined;
|
|
15319
15228
|
voip_token?: string | undefined;
|
|
@@ -15326,21 +15235,17 @@ export declare const Envelope: {
|
|
|
15326
15235
|
username?: string | undefined;
|
|
15327
15236
|
avatar?: string | undefined;
|
|
15328
15237
|
display_name?: string | undefined;
|
|
15329
|
-
about_me?: string | undefined;
|
|
15330
15238
|
user_status?: string | undefined;
|
|
15331
15239
|
status?: string | undefined;
|
|
15332
|
-
|
|
15240
|
+
online?: boolean | undefined;
|
|
15333
15241
|
fcm_tokens?: {
|
|
15334
15242
|
device_id?: string | undefined;
|
|
15335
15243
|
token_id?: string | undefined;
|
|
15336
15244
|
platform?: string | undefined;
|
|
15337
15245
|
}[] | undefined;
|
|
15338
|
-
online?: boolean | undefined;
|
|
15339
|
-
is_disabled?: boolean | undefined;
|
|
15340
15246
|
joined_clans?: string[] | undefined;
|
|
15341
|
-
pubkey?: string | undefined;
|
|
15342
|
-
mezon_id?: string | undefined;
|
|
15343
15247
|
app_token?: string | undefined;
|
|
15248
|
+
create_time_second?: number | undefined;
|
|
15344
15249
|
app_url?: string | undefined;
|
|
15345
15250
|
is_bot?: boolean | undefined;
|
|
15346
15251
|
voip_token?: string | undefined;
|
|
@@ -15349,10 +15254,9 @@ export declare const Envelope: {
|
|
|
15349
15254
|
username?: string | undefined;
|
|
15350
15255
|
avatar?: string | undefined;
|
|
15351
15256
|
display_name?: string | undefined;
|
|
15352
|
-
about_me?: string | undefined;
|
|
15353
15257
|
user_status?: string | undefined;
|
|
15354
15258
|
status?: string | undefined;
|
|
15355
|
-
|
|
15259
|
+
online?: boolean | undefined;
|
|
15356
15260
|
fcm_tokens?: ({
|
|
15357
15261
|
device_id?: string | undefined;
|
|
15358
15262
|
token_id?: string | undefined;
|
|
@@ -15365,23 +15269,20 @@ export declare const Envelope: {
|
|
|
15365
15269
|
device_id?: string | undefined;
|
|
15366
15270
|
token_id?: string | undefined;
|
|
15367
15271
|
platform?: string | undefined;
|
|
15368
|
-
} & { [
|
|
15272
|
+
} & { [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
15273
|
device_id?: string | undefined;
|
|
15370
15274
|
token_id?: string | undefined;
|
|
15371
15275
|
platform?: string | undefined;
|
|
15372
15276
|
}[]>]: 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;
|
|
15277
|
+
joined_clans?: (string[] & string[] & { [K_509 in Exclude<keyof I_1["add_clan_user_event"]["user"]["joined_clans"], keyof string[]>]: never; }) | undefined;
|
|
15378
15278
|
app_token?: string | undefined;
|
|
15279
|
+
create_time_second?: number | undefined;
|
|
15379
15280
|
app_url?: string | undefined;
|
|
15380
15281
|
is_bot?: boolean | undefined;
|
|
15381
15282
|
voip_token?: string | undefined;
|
|
15382
|
-
} & { [
|
|
15283
|
+
} & { [K_510 in Exclude<keyof I_1["add_clan_user_event"]["user"], keyof UserProfileRedis>]: never; }) | undefined;
|
|
15383
15284
|
invitor?: string | undefined;
|
|
15384
|
-
} & { [
|
|
15285
|
+
} & { [K_511 in Exclude<keyof I_1["add_clan_user_event"], keyof AddClanUserEvent>]: never; }) | undefined;
|
|
15385
15286
|
clan_event_created?: ({
|
|
15386
15287
|
title?: string | undefined;
|
|
15387
15288
|
logo?: string | undefined;
|
|
@@ -15435,8 +15336,8 @@ export declare const Envelope: {
|
|
|
15435
15336
|
external_link?: string | undefined;
|
|
15436
15337
|
creator_id?: string | undefined;
|
|
15437
15338
|
event_id?: string | undefined;
|
|
15438
|
-
} & { [
|
|
15439
|
-
} & { [
|
|
15339
|
+
} & { [K_512 in Exclude<keyof I_1["clan_event_created"]["meet_room"], keyof import("../api/api").GenerateMezonMeetResponse>]: never; }) | undefined;
|
|
15340
|
+
} & { [K_513 in Exclude<keyof I_1["clan_event_created"], keyof CreateEventRequest>]: never; }) | undefined;
|
|
15440
15341
|
role_assign_event?: ({
|
|
15441
15342
|
ClanId?: string | undefined;
|
|
15442
15343
|
role_id?: string | undefined;
|
|
@@ -15445,16 +15346,16 @@ export declare const Envelope: {
|
|
|
15445
15346
|
} & {
|
|
15446
15347
|
ClanId?: string | undefined;
|
|
15447
15348
|
role_id?: string | undefined;
|
|
15448
|
-
user_ids_assigned?: (string[] & string[] & { [
|
|
15449
|
-
user_ids_removed?: (string[] & string[] & { [
|
|
15450
|
-
} & { [
|
|
15349
|
+
user_ids_assigned?: (string[] & string[] & { [K_514 in Exclude<keyof I_1["role_assign_event"]["user_ids_assigned"], keyof string[]>]: never; }) | undefined;
|
|
15350
|
+
user_ids_removed?: (string[] & string[] & { [K_515 in Exclude<keyof I_1["role_assign_event"]["user_ids_removed"], keyof string[]>]: never; }) | undefined;
|
|
15351
|
+
} & { [K_516 in Exclude<keyof I_1["role_assign_event"], keyof RoleAssignedEvent>]: never; }) | undefined;
|
|
15451
15352
|
clan_deleted_event?: ({
|
|
15452
15353
|
clan_id?: string | undefined;
|
|
15453
15354
|
deletor?: string | undefined;
|
|
15454
15355
|
} & {
|
|
15455
15356
|
clan_id?: string | undefined;
|
|
15456
15357
|
deletor?: string | undefined;
|
|
15457
|
-
} & { [
|
|
15358
|
+
} & { [K_517 in Exclude<keyof I_1["clan_deleted_event"], keyof ClanDeletedEvent>]: never; }) | undefined;
|
|
15458
15359
|
give_coffee_event?: ({
|
|
15459
15360
|
sender_id?: string | undefined;
|
|
15460
15361
|
receiver_id?: string | undefined;
|
|
@@ -15469,7 +15370,7 @@ export declare const Envelope: {
|
|
|
15469
15370
|
message_ref_id?: string | undefined;
|
|
15470
15371
|
channel_id?: string | undefined;
|
|
15471
15372
|
clan_id?: string | undefined;
|
|
15472
|
-
} & { [
|
|
15373
|
+
} & { [K_518 in Exclude<keyof I_1["give_coffee_event"], keyof GiveCoffeeEvent>]: never; }) | undefined;
|
|
15473
15374
|
sticker_create_event?: ({
|
|
15474
15375
|
clan_id?: string | undefined;
|
|
15475
15376
|
source?: string | undefined;
|
|
@@ -15488,7 +15389,7 @@ export declare const Envelope: {
|
|
|
15488
15389
|
sticker_id?: string | undefined;
|
|
15489
15390
|
logo?: string | undefined;
|
|
15490
15391
|
clan_name?: string | undefined;
|
|
15491
|
-
} & { [
|
|
15392
|
+
} & { [K_519 in Exclude<keyof I_1["sticker_create_event"], keyof StickerCreateEvent>]: never; }) | undefined;
|
|
15492
15393
|
sticker_update_event?: ({
|
|
15493
15394
|
shortname?: string | undefined;
|
|
15494
15395
|
sticker_id?: string | undefined;
|
|
@@ -15497,14 +15398,14 @@ export declare const Envelope: {
|
|
|
15497
15398
|
shortname?: string | undefined;
|
|
15498
15399
|
sticker_id?: string | undefined;
|
|
15499
15400
|
user_id?: string | undefined;
|
|
15500
|
-
} & { [
|
|
15401
|
+
} & { [K_520 in Exclude<keyof I_1["sticker_update_event"], keyof StickerUpdateEvent>]: never; }) | undefined;
|
|
15501
15402
|
sticker_delete_event?: ({
|
|
15502
15403
|
sticker_id?: string | undefined;
|
|
15503
15404
|
user_id?: string | undefined;
|
|
15504
15405
|
} & {
|
|
15505
15406
|
sticker_id?: string | undefined;
|
|
15506
15407
|
user_id?: string | undefined;
|
|
15507
|
-
} & { [
|
|
15408
|
+
} & { [K_521 in Exclude<keyof I_1["sticker_delete_event"], keyof StickerDeleteEvent>]: never; }) | undefined;
|
|
15508
15409
|
role_event?: ({
|
|
15509
15410
|
role?: {
|
|
15510
15411
|
id?: string | undefined;
|
|
@@ -15642,7 +15543,7 @@ export declare const Envelope: {
|
|
|
15642
15543
|
lang_tag?: string | undefined;
|
|
15643
15544
|
location?: string | undefined;
|
|
15644
15545
|
online?: boolean | undefined;
|
|
15645
|
-
} & { [
|
|
15546
|
+
} & { [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
15547
|
id?: string | undefined;
|
|
15647
15548
|
username?: string | undefined;
|
|
15648
15549
|
display_name?: string | undefined;
|
|
@@ -15652,7 +15553,7 @@ export declare const Envelope: {
|
|
|
15652
15553
|
online?: boolean | undefined;
|
|
15653
15554
|
}[]>]: never; }) | undefined;
|
|
15654
15555
|
cursor?: string | undefined;
|
|
15655
|
-
} & { [
|
|
15556
|
+
} & { [K_524 in Exclude<keyof I_1["role_event"]["role"]["role_user_list"], keyof RoleUserList>]: never; }) | undefined;
|
|
15656
15557
|
permission_list?: ({
|
|
15657
15558
|
permissions?: {
|
|
15658
15559
|
id?: string | undefined;
|
|
@@ -15689,7 +15590,7 @@ export declare const Envelope: {
|
|
|
15689
15590
|
active?: number | undefined;
|
|
15690
15591
|
scope?: number | undefined;
|
|
15691
15592
|
level?: number | undefined;
|
|
15692
|
-
} & { [
|
|
15593
|
+
} & { [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
15594
|
id?: string | undefined;
|
|
15694
15595
|
title?: string | undefined;
|
|
15695
15596
|
slug?: string | undefined;
|
|
@@ -15699,19 +15600,19 @@ export declare const Envelope: {
|
|
|
15699
15600
|
level?: number | undefined;
|
|
15700
15601
|
}[]>]: never; }) | undefined;
|
|
15701
15602
|
max_level_permission?: number | undefined;
|
|
15702
|
-
} & { [
|
|
15603
|
+
} & { [K_527 in Exclude<keyof I_1["role_event"]["role"]["permission_list"], keyof PermissionList>]: never; }) | undefined;
|
|
15703
15604
|
role_channel_active?: number | undefined;
|
|
15704
|
-
channel_ids?: (string[] & string[] & { [
|
|
15605
|
+
channel_ids?: (string[] & string[] & { [K_528 in Exclude<keyof I_1["role_event"]["role"]["channel_ids"], keyof string[]>]: never; }) | undefined;
|
|
15705
15606
|
max_level_permission?: number | undefined;
|
|
15706
15607
|
order_role?: number | undefined;
|
|
15707
|
-
} & { [
|
|
15608
|
+
} & { [K_529 in Exclude<keyof I_1["role_event"]["role"], keyof Role>]: never; }) | undefined;
|
|
15708
15609
|
status?: number | undefined;
|
|
15709
15610
|
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
|
-
} & { [
|
|
15611
|
+
user_add_ids?: (string[] & string[] & { [K_530 in Exclude<keyof I_1["role_event"]["user_add_ids"], keyof string[]>]: never; }) | undefined;
|
|
15612
|
+
user_remove_ids?: (string[] & string[] & { [K_531 in Exclude<keyof I_1["role_event"]["user_remove_ids"], keyof string[]>]: never; }) | undefined;
|
|
15613
|
+
active_permission_ids?: (string[] & string[] & { [K_532 in Exclude<keyof I_1["role_event"]["active_permission_ids"], keyof string[]>]: never; }) | undefined;
|
|
15614
|
+
remove_permission_ids?: (string[] & string[] & { [K_533 in Exclude<keyof I_1["role_event"]["remove_permission_ids"], keyof string[]>]: never; }) | undefined;
|
|
15615
|
+
} & { [K_534 in Exclude<keyof I_1["role_event"], keyof RoleEvent>]: never; }) | undefined;
|
|
15715
15616
|
event_emoji?: ({
|
|
15716
15617
|
id?: string | undefined;
|
|
15717
15618
|
clan_id?: string | undefined;
|
|
@@ -15734,7 +15635,7 @@ export declare const Envelope: {
|
|
|
15734
15635
|
logo?: string | undefined;
|
|
15735
15636
|
clan_name?: string | undefined;
|
|
15736
15637
|
is_for_sale?: boolean | undefined;
|
|
15737
|
-
} & { [
|
|
15638
|
+
} & { [K_535 in Exclude<keyof I_1["event_emoji"], keyof EventEmoji>]: never; }) | undefined;
|
|
15738
15639
|
streaming_joined_event?: ({
|
|
15739
15640
|
clan_id?: string | undefined;
|
|
15740
15641
|
clan_name?: string | undefined;
|
|
@@ -15751,7 +15652,7 @@ export declare const Envelope: {
|
|
|
15751
15652
|
user_id?: string | undefined;
|
|
15752
15653
|
streaming_channel_label?: string | undefined;
|
|
15753
15654
|
streaming_channel_id?: string | undefined;
|
|
15754
|
-
} & { [
|
|
15655
|
+
} & { [K_536 in Exclude<keyof I_1["streaming_joined_event"], keyof StreamingJoinedEvent>]: never; }) | undefined;
|
|
15755
15656
|
streaming_leaved_event?: ({
|
|
15756
15657
|
id?: string | undefined;
|
|
15757
15658
|
clan_id?: string | undefined;
|
|
@@ -15762,7 +15663,7 @@ export declare const Envelope: {
|
|
|
15762
15663
|
clan_id?: string | undefined;
|
|
15763
15664
|
streaming_channel_id?: string | undefined;
|
|
15764
15665
|
streaming_user_id?: string | undefined;
|
|
15765
|
-
} & { [
|
|
15666
|
+
} & { [K_537 in Exclude<keyof I_1["streaming_leaved_event"], keyof StreamingLeavedEvent>]: never; }) | undefined;
|
|
15766
15667
|
streaming_started_event?: ({
|
|
15767
15668
|
clan_id?: string | undefined;
|
|
15768
15669
|
channel_id?: string | undefined;
|
|
@@ -15773,14 +15674,14 @@ export declare const Envelope: {
|
|
|
15773
15674
|
channel_id?: string | undefined;
|
|
15774
15675
|
streaming_url?: string | undefined;
|
|
15775
15676
|
is_streaming?: boolean | undefined;
|
|
15776
|
-
} & { [
|
|
15677
|
+
} & { [K_538 in Exclude<keyof I_1["streaming_started_event"], keyof StreamingStartedEvent>]: never; }) | undefined;
|
|
15777
15678
|
streaming_ended_event?: ({
|
|
15778
15679
|
clan_id?: string | undefined;
|
|
15779
15680
|
channel_id?: string | undefined;
|
|
15780
15681
|
} & {
|
|
15781
15682
|
clan_id?: string | undefined;
|
|
15782
15683
|
channel_id?: string | undefined;
|
|
15783
|
-
} & { [
|
|
15684
|
+
} & { [K_539 in Exclude<keyof I_1["streaming_ended_event"], keyof StreamingEndedEvent>]: never; }) | undefined;
|
|
15784
15685
|
permission_set_event?: ({
|
|
15785
15686
|
caller?: string | undefined;
|
|
15786
15687
|
role_id?: string | undefined;
|
|
@@ -15808,12 +15709,12 @@ export declare const Envelope: {
|
|
|
15808
15709
|
permission_id?: string | undefined;
|
|
15809
15710
|
slug?: string | undefined;
|
|
15810
15711
|
type?: number | undefined;
|
|
15811
|
-
} & { [
|
|
15712
|
+
} & { [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
15713
|
permission_id?: string | undefined;
|
|
15813
15714
|
slug?: string | undefined;
|
|
15814
15715
|
type?: number | undefined;
|
|
15815
15716
|
}[]>]: never; }) | undefined;
|
|
15816
|
-
} & { [
|
|
15717
|
+
} & { [K_542 in Exclude<keyof I_1["permission_set_event"], keyof PermissionSetEvent>]: never; }) | undefined;
|
|
15817
15718
|
permission_changed_event?: ({
|
|
15818
15719
|
user_id?: string | undefined;
|
|
15819
15720
|
channel_id?: string | undefined;
|
|
@@ -15847,7 +15748,7 @@ export declare const Envelope: {
|
|
|
15847
15748
|
permission_id?: string | undefined;
|
|
15848
15749
|
slug?: string | undefined;
|
|
15849
15750
|
type?: number | undefined;
|
|
15850
|
-
} & { [
|
|
15751
|
+
} & { [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
15752
|
permission_id?: string | undefined;
|
|
15852
15753
|
slug?: string | undefined;
|
|
15853
15754
|
type?: number | undefined;
|
|
@@ -15864,7 +15765,7 @@ export declare const Envelope: {
|
|
|
15864
15765
|
permission_id?: string | undefined;
|
|
15865
15766
|
slug?: string | undefined;
|
|
15866
15767
|
type?: number | undefined;
|
|
15867
|
-
} & { [
|
|
15768
|
+
} & { [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
15769
|
permission_id?: string | undefined;
|
|
15869
15770
|
slug?: string | undefined;
|
|
15870
15771
|
type?: number | undefined;
|
|
@@ -15881,12 +15782,12 @@ export declare const Envelope: {
|
|
|
15881
15782
|
permission_id?: string | undefined;
|
|
15882
15783
|
slug?: string | undefined;
|
|
15883
15784
|
type?: number | undefined;
|
|
15884
|
-
} & { [
|
|
15785
|
+
} & { [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
15786
|
permission_id?: string | undefined;
|
|
15886
15787
|
slug?: string | undefined;
|
|
15887
15788
|
type?: number | undefined;
|
|
15888
15789
|
}[]>]: never; }) | undefined;
|
|
15889
|
-
} & { [
|
|
15790
|
+
} & { [K_549 in Exclude<keyof I_1["permission_changed_event"], keyof PermissionChangedEvent>]: never; }) | undefined;
|
|
15890
15791
|
token_sent_event?: ({
|
|
15891
15792
|
sender_id?: string | undefined;
|
|
15892
15793
|
sender_name?: string | undefined;
|
|
@@ -15903,7 +15804,7 @@ export declare const Envelope: {
|
|
|
15903
15804
|
note?: string | undefined;
|
|
15904
15805
|
extra_attribute?: string | undefined;
|
|
15905
15806
|
transaction_id?: string | undefined;
|
|
15906
|
-
} & { [
|
|
15807
|
+
} & { [K_550 in Exclude<keyof I_1["token_sent_event"], keyof TokenSentEvent>]: never; }) | undefined;
|
|
15907
15808
|
message_button_clicked?: ({
|
|
15908
15809
|
message_id?: string | undefined;
|
|
15909
15810
|
channel_id?: string | undefined;
|
|
@@ -15918,7 +15819,7 @@ export declare const Envelope: {
|
|
|
15918
15819
|
sender_id?: string | undefined;
|
|
15919
15820
|
user_id?: string | undefined;
|
|
15920
15821
|
extra_data?: string | undefined;
|
|
15921
|
-
} & { [
|
|
15822
|
+
} & { [K_551 in Exclude<keyof I_1["message_button_clicked"], keyof MessageButtonClicked>]: never; }) | undefined;
|
|
15922
15823
|
unmute_event?: ({
|
|
15923
15824
|
channel_id?: string | undefined;
|
|
15924
15825
|
category_id?: string | undefined;
|
|
@@ -15927,7 +15828,7 @@ export declare const Envelope: {
|
|
|
15927
15828
|
channel_id?: string | undefined;
|
|
15928
15829
|
category_id?: string | undefined;
|
|
15929
15830
|
clan_id?: string | undefined;
|
|
15930
|
-
} & { [
|
|
15831
|
+
} & { [K_552 in Exclude<keyof I_1["unmute_event"], keyof UnmuteEvent>]: never; }) | undefined;
|
|
15931
15832
|
webrtc_signaling_fwd?: ({
|
|
15932
15833
|
receiver_id?: string | undefined;
|
|
15933
15834
|
data_type?: number | undefined;
|
|
@@ -15940,7 +15841,7 @@ export declare const Envelope: {
|
|
|
15940
15841
|
json_data?: string | undefined;
|
|
15941
15842
|
channel_id?: string | undefined;
|
|
15942
15843
|
caller_id?: string | undefined;
|
|
15943
|
-
} & { [
|
|
15844
|
+
} & { [K_553 in Exclude<keyof I_1["webrtc_signaling_fwd"], keyof WebrtcSignalingFwd>]: never; }) | undefined;
|
|
15944
15845
|
list_activity?: ({
|
|
15945
15846
|
acts?: {
|
|
15946
15847
|
user_id?: string | undefined;
|
|
@@ -15980,7 +15881,7 @@ export declare const Envelope: {
|
|
|
15980
15881
|
end_time?: Date | undefined;
|
|
15981
15882
|
application_id?: string | undefined;
|
|
15982
15883
|
status?: number | undefined;
|
|
15983
|
-
} & { [
|
|
15884
|
+
} & { [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
15885
|
user_id?: string | undefined;
|
|
15985
15886
|
activity_name?: string | undefined;
|
|
15986
15887
|
activity_type?: number | undefined;
|
|
@@ -15990,7 +15891,7 @@ export declare const Envelope: {
|
|
|
15990
15891
|
application_id?: string | undefined;
|
|
15991
15892
|
status?: number | undefined;
|
|
15992
15893
|
}[]>]: never; }) | undefined;
|
|
15993
|
-
} & { [
|
|
15894
|
+
} & { [K_556 in Exclude<keyof I_1["list_activity"], "acts">]: never; }) | undefined;
|
|
15994
15895
|
dropdown_box_selected?: ({
|
|
15995
15896
|
message_id?: string | undefined;
|
|
15996
15897
|
channel_id?: string | undefined;
|
|
@@ -16004,8 +15905,8 @@ export declare const Envelope: {
|
|
|
16004
15905
|
selectbox_id?: string | undefined;
|
|
16005
15906
|
sender_id?: string | undefined;
|
|
16006
15907
|
user_id?: string | undefined;
|
|
16007
|
-
values?: (string[] & string[] & { [
|
|
16008
|
-
} & { [
|
|
15908
|
+
values?: (string[] & string[] & { [K_557 in Exclude<keyof I_1["dropdown_box_selected"]["values"], keyof string[]>]: never; }) | undefined;
|
|
15909
|
+
} & { [K_558 in Exclude<keyof I_1["dropdown_box_selected"], keyof DropdownBoxSelected>]: never; }) | undefined;
|
|
16009
15910
|
incoming_call_push?: ({
|
|
16010
15911
|
receiver_id?: string | undefined;
|
|
16011
15912
|
json_data?: string | undefined;
|
|
@@ -16016,7 +15917,7 @@ export declare const Envelope: {
|
|
|
16016
15917
|
json_data?: string | undefined;
|
|
16017
15918
|
channel_id?: string | undefined;
|
|
16018
15919
|
caller_id?: string | undefined;
|
|
16019
|
-
} & { [
|
|
15920
|
+
} & { [K_559 in Exclude<keyof I_1["incoming_call_push"], keyof IncomingCallPush>]: never; }) | undefined;
|
|
16020
15921
|
sd_topic_event?: ({
|
|
16021
15922
|
id?: string | undefined;
|
|
16022
15923
|
clan_id?: string | undefined;
|
|
@@ -16088,8 +15989,8 @@ export declare const Envelope: {
|
|
|
16088
15989
|
reference?: string | undefined;
|
|
16089
15990
|
mention?: string | undefined;
|
|
16090
15991
|
reaction?: string | undefined;
|
|
16091
|
-
repliers?: (string[] & string[] & { [
|
|
16092
|
-
} & { [
|
|
15992
|
+
repliers?: (string[] & string[] & { [K_560 in Exclude<keyof I_1["sd_topic_event"]["last_sent_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
15993
|
+
} & { [K_561 in Exclude<keyof I_1["sd_topic_event"]["last_sent_message"], keyof ChannelMessageHeader>]: never; }) | undefined;
|
|
16093
15994
|
message?: ({
|
|
16094
15995
|
clan_id?: string | undefined;
|
|
16095
15996
|
channel_id?: string | undefined;
|
|
@@ -16146,9 +16047,9 @@ export declare const Envelope: {
|
|
|
16146
16047
|
hide_editted?: boolean | undefined;
|
|
16147
16048
|
is_public?: boolean | undefined;
|
|
16148
16049
|
topic_id?: string | undefined;
|
|
16149
|
-
} & { [
|
|
16150
|
-
} & { [
|
|
16151
|
-
follow_event?: ({} & {} & { [
|
|
16050
|
+
} & { [K_562 in Exclude<keyof I_1["sd_topic_event"]["message"], keyof ChannelMessage>]: never; }) | undefined;
|
|
16051
|
+
} & { [K_563 in Exclude<keyof I_1["sd_topic_event"], keyof SdTopicEvent>]: never; }) | undefined;
|
|
16052
|
+
follow_event?: ({} & {} & { [K_564 in Exclude<keyof I_1["follow_event"], never>]: never; }) | undefined;
|
|
16152
16053
|
channel_app_event?: ({
|
|
16153
16054
|
user_id?: string | undefined;
|
|
16154
16055
|
username?: string | undefined;
|
|
@@ -16161,19 +16062,19 @@ export declare const Envelope: {
|
|
|
16161
16062
|
clan_id?: string | undefined;
|
|
16162
16063
|
channel_id?: string | undefined;
|
|
16163
16064
|
action?: number | undefined;
|
|
16164
|
-
} & { [
|
|
16065
|
+
} & { [K_565 in Exclude<keyof I_1["channel_app_event"], keyof ChannelAppEvent>]: never; }) | undefined;
|
|
16165
16066
|
user_status_event?: ({
|
|
16166
16067
|
user_id?: string | undefined;
|
|
16167
16068
|
custom_status?: string | undefined;
|
|
16168
16069
|
} & {
|
|
16169
16070
|
user_id?: string | undefined;
|
|
16170
16071
|
custom_status?: string | undefined;
|
|
16171
|
-
} & { [
|
|
16072
|
+
} & { [K_566 in Exclude<keyof I_1["user_status_event"], keyof UserStatusEvent>]: never; }) | undefined;
|
|
16172
16073
|
remove_friend?: ({
|
|
16173
16074
|
user_id?: string | undefined;
|
|
16174
16075
|
} & {
|
|
16175
16076
|
user_id?: string | undefined;
|
|
16176
|
-
} & { [
|
|
16077
|
+
} & { [K_567 in Exclude<keyof I_1["remove_friend"], "user_id">]: never; }) | undefined;
|
|
16177
16078
|
webhook_event?: ({
|
|
16178
16079
|
id?: string | undefined;
|
|
16179
16080
|
webhook_name?: string | undefined;
|
|
@@ -16198,7 +16099,7 @@ export declare const Envelope: {
|
|
|
16198
16099
|
avatar?: string | undefined;
|
|
16199
16100
|
status?: number | undefined;
|
|
16200
16101
|
clan_id?: string | undefined;
|
|
16201
|
-
} & { [
|
|
16102
|
+
} & { [K_568 in Exclude<keyof I_1["webhook_event"], keyof Webhook>]: never; }) | undefined;
|
|
16202
16103
|
noti_user_channel?: ({
|
|
16203
16104
|
id?: string | undefined;
|
|
16204
16105
|
notification_setting_type?: number | undefined;
|
|
@@ -16211,7 +16112,7 @@ export declare const Envelope: {
|
|
|
16211
16112
|
time_mute?: Date | undefined;
|
|
16212
16113
|
active?: number | undefined;
|
|
16213
16114
|
channel_id?: string | undefined;
|
|
16214
|
-
} & { [
|
|
16115
|
+
} & { [K_569 in Exclude<keyof I_1["noti_user_channel"], keyof NotificationUserChannel>]: never; }) | undefined;
|
|
16215
16116
|
join_channel_app_data?: ({
|
|
16216
16117
|
user_id?: string | undefined;
|
|
16217
16118
|
username?: string | undefined;
|
|
@@ -16220,7 +16121,7 @@ export declare const Envelope: {
|
|
|
16220
16121
|
user_id?: string | undefined;
|
|
16221
16122
|
username?: string | undefined;
|
|
16222
16123
|
hash?: string | undefined;
|
|
16223
|
-
} & { [
|
|
16124
|
+
} & { [K_570 in Exclude<keyof I_1["join_channel_app_data"], keyof JoinChannelAppData>]: never; }) | undefined;
|
|
16224
16125
|
canvas_event?: ({
|
|
16225
16126
|
id?: string | undefined;
|
|
16226
16127
|
title?: string | undefined;
|
|
@@ -16239,7 +16140,7 @@ export declare const Envelope: {
|
|
|
16239
16140
|
is_default?: boolean | undefined;
|
|
16240
16141
|
channel_id?: string | undefined;
|
|
16241
16142
|
status?: number | undefined;
|
|
16242
|
-
} & { [
|
|
16143
|
+
} & { [K_571 in Exclude<keyof I_1["canvas_event"], keyof ChannelCanvas>]: never; }) | undefined;
|
|
16243
16144
|
unpin_message_event?: ({
|
|
16244
16145
|
id?: string | undefined;
|
|
16245
16146
|
message_id?: string | undefined;
|
|
@@ -16250,7 +16151,7 @@ export declare const Envelope: {
|
|
|
16250
16151
|
message_id?: string | undefined;
|
|
16251
16152
|
channel_id?: string | undefined;
|
|
16252
16153
|
clan_id?: string | undefined;
|
|
16253
|
-
} & { [
|
|
16154
|
+
} & { [K_572 in Exclude<keyof I_1["unpin_message_event"], keyof UnpinMessageEvent>]: never; }) | undefined;
|
|
16254
16155
|
category_event?: ({
|
|
16255
16156
|
creator_id?: string | undefined;
|
|
16256
16157
|
clan_id?: string | undefined;
|
|
@@ -16263,7 +16164,7 @@ export declare const Envelope: {
|
|
|
16263
16164
|
category_name?: string | undefined;
|
|
16264
16165
|
id?: string | undefined;
|
|
16265
16166
|
status?: number | undefined;
|
|
16266
|
-
} & { [
|
|
16167
|
+
} & { [K_573 in Exclude<keyof I_1["category_event"], keyof CategoryEvent>]: never; }) | undefined;
|
|
16267
16168
|
handle_participant_meet_state_event?: ({
|
|
16268
16169
|
clan_id?: string | undefined;
|
|
16269
16170
|
channel_id?: string | undefined;
|
|
@@ -16276,12 +16177,12 @@ export declare const Envelope: {
|
|
|
16276
16177
|
display_name?: string | undefined;
|
|
16277
16178
|
state?: number | undefined;
|
|
16278
16179
|
room_name?: string | undefined;
|
|
16279
|
-
} & { [
|
|
16180
|
+
} & { [K_574 in Exclude<keyof I_1["handle_participant_meet_state_event"], keyof HandleParticipantMeetStateEvent>]: never; }) | undefined;
|
|
16280
16181
|
delete_account_event?: ({
|
|
16281
16182
|
user_id?: string | undefined;
|
|
16282
16183
|
} & {
|
|
16283
16184
|
user_id?: string | undefined;
|
|
16284
|
-
} & { [
|
|
16185
|
+
} & { [K_575 in Exclude<keyof I_1["delete_account_event"], "user_id">]: never; }) | undefined;
|
|
16285
16186
|
ephemeral_message_send?: ({
|
|
16286
16187
|
message?: {
|
|
16287
16188
|
clan_id?: string | undefined;
|
|
@@ -16403,7 +16304,7 @@ export declare const Envelope: {
|
|
|
16403
16304
|
create_time?: Date | undefined;
|
|
16404
16305
|
s?: number | undefined;
|
|
16405
16306
|
e?: number | undefined;
|
|
16406
|
-
} & { [
|
|
16307
|
+
} & { [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
16308
|
id?: string | undefined;
|
|
16408
16309
|
user_id?: string | undefined;
|
|
16409
16310
|
username?: string | undefined;
|
|
@@ -16437,7 +16338,7 @@ export declare const Envelope: {
|
|
|
16437
16338
|
width?: number | undefined;
|
|
16438
16339
|
height?: number | undefined;
|
|
16439
16340
|
thumbnail?: string | undefined;
|
|
16440
|
-
} & { [
|
|
16341
|
+
} & { [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
16342
|
filename?: string | undefined;
|
|
16442
16343
|
size?: number | undefined;
|
|
16443
16344
|
url?: string | undefined;
|
|
@@ -16479,7 +16380,7 @@ export declare const Envelope: {
|
|
|
16479
16380
|
mesages_sender_avatar?: string | undefined;
|
|
16480
16381
|
message_sender_clan_nick?: string | undefined;
|
|
16481
16382
|
message_sender_display_name?: string | undefined;
|
|
16482
|
-
} & { [
|
|
16383
|
+
} & { [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
16384
|
message_id?: string | undefined;
|
|
16484
16385
|
message_ref_id?: string | undefined;
|
|
16485
16386
|
content?: string | undefined;
|
|
@@ -16499,25 +16400,25 @@ export declare const Envelope: {
|
|
|
16499
16400
|
code?: number | undefined;
|
|
16500
16401
|
topic_id?: string | undefined;
|
|
16501
16402
|
id?: string | undefined;
|
|
16502
|
-
} & { [
|
|
16403
|
+
} & { [K_582 in Exclude<keyof I_1["ephemeral_message_send"]["message"], keyof ChannelMessageSend>]: never; }) | undefined;
|
|
16503
16404
|
receiver_id?: string | undefined;
|
|
16504
|
-
} & { [
|
|
16405
|
+
} & { [K_583 in Exclude<keyof I_1["ephemeral_message_send"], keyof EphemeralMessageSend>]: never; }) | undefined;
|
|
16505
16406
|
block_friend?: ({
|
|
16506
16407
|
user_id?: string | undefined;
|
|
16507
16408
|
} & {
|
|
16508
16409
|
user_id?: string | undefined;
|
|
16509
|
-
} & { [
|
|
16410
|
+
} & { [K_584 in Exclude<keyof I_1["block_friend"], "user_id">]: never; }) | undefined;
|
|
16510
16411
|
voice_reaction_send?: ({
|
|
16511
16412
|
emojis?: string[] | undefined;
|
|
16512
16413
|
channel_id?: string | undefined;
|
|
16513
16414
|
sender_id?: string | undefined;
|
|
16514
16415
|
media_type?: number | undefined;
|
|
16515
16416
|
} & {
|
|
16516
|
-
emojis?: (string[] & string[] & { [
|
|
16417
|
+
emojis?: (string[] & string[] & { [K_585 in Exclude<keyof I_1["voice_reaction_send"]["emojis"], keyof string[]>]: never; }) | undefined;
|
|
16517
16418
|
channel_id?: string | undefined;
|
|
16518
16419
|
sender_id?: string | undefined;
|
|
16519
16420
|
media_type?: number | undefined;
|
|
16520
|
-
} & { [
|
|
16421
|
+
} & { [K_586 in Exclude<keyof I_1["voice_reaction_send"], keyof VoiceReactionSend>]: never; }) | undefined;
|
|
16521
16422
|
mark_as_read?: ({
|
|
16522
16423
|
channel_id?: string | undefined;
|
|
16523
16424
|
category_id?: string | undefined;
|
|
@@ -16526,7 +16427,7 @@ export declare const Envelope: {
|
|
|
16526
16427
|
channel_id?: string | undefined;
|
|
16527
16428
|
category_id?: string | undefined;
|
|
16528
16429
|
clan_id?: string | undefined;
|
|
16529
|
-
} & { [
|
|
16430
|
+
} & { [K_587 in Exclude<keyof I_1["mark_as_read"], keyof MarkAsRead>]: never; }) | undefined;
|
|
16530
16431
|
list_data_socket?: ({
|
|
16531
16432
|
api_name?: string | undefined;
|
|
16532
16433
|
list_clan_req?: {
|
|
@@ -17404,7 +17305,7 @@ export declare const Envelope: {
|
|
|
17404
17305
|
limit?: number | undefined;
|
|
17405
17306
|
state?: number | undefined;
|
|
17406
17307
|
cursor?: string | undefined;
|
|
17407
|
-
} & { [
|
|
17308
|
+
} & { [K_588 in Exclude<keyof I_1["list_data_socket"]["list_clan_req"], keyof ListClanDescRequest>]: never; }) | undefined;
|
|
17408
17309
|
clan_desc_list?: ({
|
|
17409
17310
|
clandesc?: {
|
|
17410
17311
|
creator_id?: string | undefined;
|
|
@@ -17484,7 +17385,7 @@ export declare const Envelope: {
|
|
|
17484
17385
|
short_url?: string | undefined;
|
|
17485
17386
|
prevent_anonymous?: boolean | undefined;
|
|
17486
17387
|
has_unread_message?: boolean | undefined;
|
|
17487
|
-
} & { [
|
|
17388
|
+
} & { [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
17389
|
creator_id?: string | undefined;
|
|
17489
17390
|
clan_name?: string | undefined;
|
|
17490
17391
|
logo?: string | undefined;
|
|
@@ -17504,7 +17405,7 @@ export declare const Envelope: {
|
|
|
17504
17405
|
prevent_anonymous?: boolean | undefined;
|
|
17505
17406
|
has_unread_message?: boolean | undefined;
|
|
17506
17407
|
}[]>]: never; }) | undefined;
|
|
17507
|
-
} & { [
|
|
17408
|
+
} & { [K_591 in Exclude<keyof I_1["list_data_socket"]["clan_desc_list"], "clandesc">]: never; }) | undefined;
|
|
17508
17409
|
list_thread_req?: ({
|
|
17509
17410
|
limit?: number | undefined;
|
|
17510
17411
|
state?: number | undefined;
|
|
@@ -17519,7 +17420,7 @@ export declare const Envelope: {
|
|
|
17519
17420
|
channel_id?: string | undefined;
|
|
17520
17421
|
thread_id?: string | undefined;
|
|
17521
17422
|
page?: number | undefined;
|
|
17522
|
-
} & { [
|
|
17423
|
+
} & { [K_592 in Exclude<keyof I_1["list_data_socket"]["list_thread_req"], keyof ListThreadRequest>]: never; }) | undefined;
|
|
17523
17424
|
channel_desc_list?: ({
|
|
17524
17425
|
channeldesc?: {
|
|
17525
17426
|
clan_id?: string | undefined;
|
|
@@ -17693,8 +17594,8 @@ export declare const Envelope: {
|
|
|
17693
17594
|
creator_id?: string | undefined;
|
|
17694
17595
|
channel_label?: string | undefined;
|
|
17695
17596
|
channel_private?: number | undefined;
|
|
17696
|
-
avatars?: (string[] & string[] & { [
|
|
17697
|
-
user_ids?: (string[] & string[] & { [
|
|
17597
|
+
avatars?: (string[] & string[] & { [K_593 in Exclude<keyof I_1["list_data_socket"]["channel_desc_list"]["channeldesc"][number]["avatars"], keyof string[]>]: never; }) | undefined;
|
|
17598
|
+
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
17599
|
last_sent_message?: ({
|
|
17699
17600
|
id?: string | undefined;
|
|
17700
17601
|
timestamp_seconds?: number | undefined;
|
|
@@ -17714,8 +17615,8 @@ export declare const Envelope: {
|
|
|
17714
17615
|
reference?: string | undefined;
|
|
17715
17616
|
mention?: string | undefined;
|
|
17716
17617
|
reaction?: string | undefined;
|
|
17717
|
-
repliers?: (string[] & string[] & { [
|
|
17718
|
-
} & { [
|
|
17618
|
+
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;
|
|
17619
|
+
} & { [K_596 in Exclude<keyof I_1["list_data_socket"]["channel_desc_list"]["channeldesc"][number]["last_sent_message"], keyof ChannelMessageHeader>]: never; }) | undefined;
|
|
17719
17620
|
last_seen_message?: ({
|
|
17720
17621
|
id?: string | undefined;
|
|
17721
17622
|
timestamp_seconds?: number | undefined;
|
|
@@ -17735,18 +17636,18 @@ export declare const Envelope: {
|
|
|
17735
17636
|
reference?: string | undefined;
|
|
17736
17637
|
mention?: string | undefined;
|
|
17737
17638
|
reaction?: string | undefined;
|
|
17738
|
-
repliers?: (string[] & string[] & { [
|
|
17739
|
-
} & { [
|
|
17740
|
-
onlines?: (boolean[] & boolean[] & { [
|
|
17639
|
+
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;
|
|
17640
|
+
} & { [K_598 in Exclude<keyof I_1["list_data_socket"]["channel_desc_list"]["channeldesc"][number]["last_seen_message"], keyof ChannelMessageHeader>]: never; }) | undefined;
|
|
17641
|
+
onlines?: (boolean[] & boolean[] & { [K_599 in Exclude<keyof I_1["list_data_socket"]["channel_desc_list"]["channeldesc"][number]["onlines"], keyof boolean[]>]: never; }) | undefined;
|
|
17741
17642
|
meeting_code?: string | undefined;
|
|
17742
17643
|
count_mess_unread?: number | undefined;
|
|
17743
17644
|
active?: number | undefined;
|
|
17744
17645
|
last_pin_message?: string | undefined;
|
|
17745
|
-
usernames?: (string[] & string[] & { [
|
|
17646
|
+
usernames?: (string[] & string[] & { [K_600 in Exclude<keyof I_1["list_data_socket"]["channel_desc_list"]["channeldesc"][number]["usernames"], keyof string[]>]: never; }) | undefined;
|
|
17746
17647
|
creator_name?: string | undefined;
|
|
17747
17648
|
create_time_seconds?: number | undefined;
|
|
17748
17649
|
update_time_seconds?: number | undefined;
|
|
17749
|
-
display_names?: (string[] & string[] & { [
|
|
17650
|
+
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
17651
|
channel_avatar?: string | undefined;
|
|
17751
17652
|
clan_name?: string | undefined;
|
|
17752
17653
|
app_id?: string | undefined;
|
|
@@ -17755,7 +17656,7 @@ export declare const Envelope: {
|
|
|
17755
17656
|
topic?: string | undefined;
|
|
17756
17657
|
e2ee?: number | undefined;
|
|
17757
17658
|
member_count?: number | undefined;
|
|
17758
|
-
} & { [
|
|
17659
|
+
} & { [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
17660
|
clan_id?: string | undefined;
|
|
17760
17661
|
parent_id?: string | undefined;
|
|
17761
17662
|
channel_id?: string | undefined;
|
|
@@ -17812,14 +17713,14 @@ export declare const Envelope: {
|
|
|
17812
17713
|
prev_cursor?: string | undefined;
|
|
17813
17714
|
cacheable_cursor?: string | undefined;
|
|
17814
17715
|
page?: number | undefined;
|
|
17815
|
-
} & { [
|
|
17716
|
+
} & { [K_604 in Exclude<keyof I_1["list_data_socket"]["channel_desc_list"], keyof ChannelDescList>]: never; }) | undefined;
|
|
17816
17717
|
list_channel_users_uc_req?: ({
|
|
17817
17718
|
channel_id?: string | undefined;
|
|
17818
17719
|
limit?: number | undefined;
|
|
17819
17720
|
} & {
|
|
17820
17721
|
channel_id?: string | undefined;
|
|
17821
17722
|
limit?: number | undefined;
|
|
17822
|
-
} & { [
|
|
17723
|
+
} & { [K_605 in Exclude<keyof I_1["list_data_socket"]["list_channel_users_uc_req"], keyof AllUsersAddChannelRequest>]: never; }) | undefined;
|
|
17823
17724
|
channel_users_uc_list?: ({
|
|
17824
17725
|
channel_id?: string | undefined;
|
|
17825
17726
|
user_ids?: string[] | undefined;
|
|
@@ -17830,18 +17731,18 @@ export declare const Envelope: {
|
|
|
17830
17731
|
onlines?: boolean[] | undefined;
|
|
17831
17732
|
} & {
|
|
17832
17733
|
channel_id?: string | undefined;
|
|
17833
|
-
user_ids?: (string[] & string[] & { [
|
|
17734
|
+
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
17735
|
limit?: number | undefined;
|
|
17835
|
-
usernames?: (string[] & string[] & { [
|
|
17836
|
-
display_names?: (string[] & string[] & { [
|
|
17837
|
-
avatars?: (string[] & string[] & { [
|
|
17838
|
-
onlines?: (boolean[] & boolean[] & { [
|
|
17839
|
-
} & { [
|
|
17736
|
+
usernames?: (string[] & string[] & { [K_607 in Exclude<keyof I_1["list_data_socket"]["channel_users_uc_list"]["usernames"], keyof string[]>]: never; }) | undefined;
|
|
17737
|
+
display_names?: (string[] & string[] & { [K_608 in Exclude<keyof I_1["list_data_socket"]["channel_users_uc_list"]["display_names"], keyof string[]>]: never; }) | undefined;
|
|
17738
|
+
avatars?: (string[] & string[] & { [K_609 in Exclude<keyof I_1["list_data_socket"]["channel_users_uc_list"]["avatars"], keyof string[]>]: never; }) | undefined;
|
|
17739
|
+
onlines?: (boolean[] & boolean[] & { [K_610 in Exclude<keyof I_1["list_data_socket"]["channel_users_uc_list"]["onlines"], keyof boolean[]>]: never; }) | undefined;
|
|
17740
|
+
} & { [K_611 in Exclude<keyof I_1["list_data_socket"]["channel_users_uc_list"], keyof AllUsersAddChannelResponse>]: never; }) | undefined;
|
|
17840
17741
|
list_channel_detail_req?: ({
|
|
17841
17742
|
channel_id?: string | undefined;
|
|
17842
17743
|
} & {
|
|
17843
17744
|
channel_id?: string | undefined;
|
|
17844
|
-
} & { [
|
|
17745
|
+
} & { [K_612 in Exclude<keyof I_1["list_data_socket"]["list_channel_detail_req"], "channel_id">]: never; }) | undefined;
|
|
17845
17746
|
channel_desc?: ({
|
|
17846
17747
|
clan_id?: string | undefined;
|
|
17847
17748
|
parent_id?: string | undefined;
|
|
@@ -17904,8 +17805,8 @@ export declare const Envelope: {
|
|
|
17904
17805
|
creator_id?: string | undefined;
|
|
17905
17806
|
channel_label?: string | undefined;
|
|
17906
17807
|
channel_private?: number | undefined;
|
|
17907
|
-
avatars?: (string[] & string[] & { [
|
|
17908
|
-
user_ids?: (string[] & string[] & { [
|
|
17808
|
+
avatars?: (string[] & string[] & { [K_613 in Exclude<keyof I_1["list_data_socket"]["channel_desc"]["avatars"], keyof string[]>]: never; }) | undefined;
|
|
17809
|
+
user_ids?: (string[] & string[] & { [K_614 in Exclude<keyof I_1["list_data_socket"]["channel_desc"]["user_ids"], keyof string[]>]: never; }) | undefined;
|
|
17909
17810
|
last_sent_message?: ({
|
|
17910
17811
|
id?: string | undefined;
|
|
17911
17812
|
timestamp_seconds?: number | undefined;
|
|
@@ -17925,8 +17826,8 @@ export declare const Envelope: {
|
|
|
17925
17826
|
reference?: string | undefined;
|
|
17926
17827
|
mention?: string | undefined;
|
|
17927
17828
|
reaction?: string | undefined;
|
|
17928
|
-
repliers?: (string[] & string[] & { [
|
|
17929
|
-
} & { [
|
|
17829
|
+
repliers?: (string[] & string[] & { [K_615 in Exclude<keyof I_1["list_data_socket"]["channel_desc"]["last_sent_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
17830
|
+
} & { [K_616 in Exclude<keyof I_1["list_data_socket"]["channel_desc"]["last_sent_message"], keyof ChannelMessageHeader>]: never; }) | undefined;
|
|
17930
17831
|
last_seen_message?: ({
|
|
17931
17832
|
id?: string | undefined;
|
|
17932
17833
|
timestamp_seconds?: number | undefined;
|
|
@@ -17946,18 +17847,18 @@ export declare const Envelope: {
|
|
|
17946
17847
|
reference?: string | undefined;
|
|
17947
17848
|
mention?: string | undefined;
|
|
17948
17849
|
reaction?: string | undefined;
|
|
17949
|
-
repliers?: (string[] & string[] & { [
|
|
17950
|
-
} & { [
|
|
17951
|
-
onlines?: (boolean[] & boolean[] & { [
|
|
17850
|
+
repliers?: (string[] & string[] & { [K_617 in Exclude<keyof I_1["list_data_socket"]["channel_desc"]["last_seen_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
17851
|
+
} & { [K_618 in Exclude<keyof I_1["list_data_socket"]["channel_desc"]["last_seen_message"], keyof ChannelMessageHeader>]: never; }) | undefined;
|
|
17852
|
+
onlines?: (boolean[] & boolean[] & { [K_619 in Exclude<keyof I_1["list_data_socket"]["channel_desc"]["onlines"], keyof boolean[]>]: never; }) | undefined;
|
|
17952
17853
|
meeting_code?: string | undefined;
|
|
17953
17854
|
count_mess_unread?: number | undefined;
|
|
17954
17855
|
active?: number | undefined;
|
|
17955
17856
|
last_pin_message?: string | undefined;
|
|
17956
|
-
usernames?: (string[] & string[] & { [
|
|
17857
|
+
usernames?: (string[] & string[] & { [K_620 in Exclude<keyof I_1["list_data_socket"]["channel_desc"]["usernames"], keyof string[]>]: never; }) | undefined;
|
|
17957
17858
|
creator_name?: string | undefined;
|
|
17958
17859
|
create_time_seconds?: number | undefined;
|
|
17959
17860
|
update_time_seconds?: number | undefined;
|
|
17960
|
-
display_names?: (string[] & string[] & { [
|
|
17861
|
+
display_names?: (string[] & string[] & { [K_621 in Exclude<keyof I_1["list_data_socket"]["channel_desc"]["display_names"], keyof string[]>]: never; }) | undefined;
|
|
17961
17862
|
channel_avatar?: string | undefined;
|
|
17962
17863
|
clan_name?: string | undefined;
|
|
17963
17864
|
app_id?: string | undefined;
|
|
@@ -17966,7 +17867,7 @@ export declare const Envelope: {
|
|
|
17966
17867
|
topic?: string | undefined;
|
|
17967
17868
|
e2ee?: number | undefined;
|
|
17968
17869
|
member_count?: number | undefined;
|
|
17969
|
-
} & { [
|
|
17870
|
+
} & { [K_622 in Exclude<keyof I_1["list_data_socket"]["channel_desc"], keyof ChannelDescription1>]: never; }) | undefined;
|
|
17970
17871
|
list_channel_req?: ({
|
|
17971
17872
|
limit?: number | undefined;
|
|
17972
17873
|
state?: number | undefined;
|
|
@@ -17981,7 +17882,7 @@ export declare const Envelope: {
|
|
|
17981
17882
|
clan_id?: string | undefined;
|
|
17982
17883
|
channel_type?: number | undefined;
|
|
17983
17884
|
is_mobile?: boolean | undefined;
|
|
17984
|
-
} & { [
|
|
17885
|
+
} & { [K_623 in Exclude<keyof I_1["list_data_socket"]["list_channel_req"], keyof ListChannelDescsRequest>]: never; }) | undefined;
|
|
17985
17886
|
list_channel_message_req?: ({
|
|
17986
17887
|
clan_id?: string | undefined;
|
|
17987
17888
|
channel_id?: string | undefined;
|
|
@@ -17996,7 +17897,7 @@ export declare const Envelope: {
|
|
|
17996
17897
|
limit?: number | undefined;
|
|
17997
17898
|
direction?: number | undefined;
|
|
17998
17899
|
topic_id?: string | undefined;
|
|
17999
|
-
} & { [
|
|
17900
|
+
} & { [K_624 in Exclude<keyof I_1["list_data_socket"]["list_channel_message_req"], keyof ListChannelMessagesRequest>]: never; }) | undefined;
|
|
18000
17901
|
channel_message_list?: ({
|
|
18001
17902
|
messages?: {
|
|
18002
17903
|
clan_id?: string | undefined;
|
|
@@ -18134,7 +18035,7 @@ export declare const Envelope: {
|
|
|
18134
18035
|
hide_editted?: boolean | undefined;
|
|
18135
18036
|
is_public?: boolean | undefined;
|
|
18136
18037
|
topic_id?: string | undefined;
|
|
18137
|
-
} & { [
|
|
18038
|
+
} & { [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
18039
|
clan_id?: string | undefined;
|
|
18139
18040
|
channel_id?: string | undefined;
|
|
18140
18041
|
message_id?: string | undefined;
|
|
@@ -18182,8 +18083,8 @@ export declare const Envelope: {
|
|
|
18182
18083
|
reference?: string | undefined;
|
|
18183
18084
|
mention?: string | undefined;
|
|
18184
18085
|
reaction?: string | undefined;
|
|
18185
|
-
repliers?: (string[] & string[] & { [
|
|
18186
|
-
} & { [
|
|
18086
|
+
repliers?: (string[] & string[] & { [K_627 in Exclude<keyof I_1["list_data_socket"]["channel_message_list"]["last_seen_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
18087
|
+
} & { [K_628 in Exclude<keyof I_1["list_data_socket"]["channel_message_list"]["last_seen_message"], keyof ChannelMessageHeader>]: never; }) | undefined;
|
|
18187
18088
|
last_sent_message?: ({
|
|
18188
18089
|
id?: string | undefined;
|
|
18189
18090
|
timestamp_seconds?: number | undefined;
|
|
@@ -18203,9 +18104,9 @@ export declare const Envelope: {
|
|
|
18203
18104
|
reference?: string | undefined;
|
|
18204
18105
|
mention?: string | undefined;
|
|
18205
18106
|
reaction?: string | undefined;
|
|
18206
|
-
repliers?: (string[] & string[] & { [
|
|
18207
|
-
} & { [
|
|
18208
|
-
} & { [
|
|
18107
|
+
repliers?: (string[] & string[] & { [K_629 in Exclude<keyof I_1["list_data_socket"]["channel_message_list"]["last_sent_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
18108
|
+
} & { [K_630 in Exclude<keyof I_1["list_data_socket"]["channel_message_list"]["last_sent_message"], keyof ChannelMessageHeader>]: never; }) | undefined;
|
|
18109
|
+
} & { [K_631 in Exclude<keyof I_1["list_data_socket"]["channel_message_list"], keyof ChannelMessageList>]: never; }) | undefined;
|
|
18209
18110
|
list_channel_users_req?: ({
|
|
18210
18111
|
clan_id?: string | undefined;
|
|
18211
18112
|
channel_id?: string | undefined;
|
|
@@ -18220,7 +18121,7 @@ export declare const Envelope: {
|
|
|
18220
18121
|
limit?: number | undefined;
|
|
18221
18122
|
state?: number | undefined;
|
|
18222
18123
|
cursor?: string | undefined;
|
|
18223
|
-
} & { [
|
|
18124
|
+
} & { [K_632 in Exclude<keyof I_1["list_data_socket"]["list_channel_users_req"], keyof ListChannelUsersRequest>]: never; }) | undefined;
|
|
18224
18125
|
voice_user_list?: ({
|
|
18225
18126
|
voice_channel_users?: {
|
|
18226
18127
|
id?: string | undefined;
|
|
@@ -18244,13 +18145,13 @@ export declare const Envelope: {
|
|
|
18244
18145
|
user_id?: string | undefined;
|
|
18245
18146
|
channel_id?: string | undefined;
|
|
18246
18147
|
participant?: string | undefined;
|
|
18247
|
-
} & { [
|
|
18148
|
+
} & { [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
18149
|
id?: string | undefined;
|
|
18249
18150
|
user_id?: string | undefined;
|
|
18250
18151
|
channel_id?: string | undefined;
|
|
18251
18152
|
participant?: string | undefined;
|
|
18252
18153
|
}[]>]: never; }) | undefined;
|
|
18253
|
-
} & { [
|
|
18154
|
+
} & { [K_635 in Exclude<keyof I_1["list_data_socket"]["voice_user_list"], "voice_channel_users">]: never; }) | undefined;
|
|
18254
18155
|
channel_user_list?: ({
|
|
18255
18156
|
channel_users?: {
|
|
18256
18157
|
user_id?: string | undefined;
|
|
@@ -18291,7 +18192,7 @@ export declare const Envelope: {
|
|
|
18291
18192
|
expired_ban_time?: number | undefined;
|
|
18292
18193
|
} & {
|
|
18293
18194
|
user_id?: string | undefined;
|
|
18294
|
-
role_id?: (string[] & string[] & { [
|
|
18195
|
+
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
18196
|
id?: string | undefined;
|
|
18296
18197
|
thread_id?: string | undefined;
|
|
18297
18198
|
clan_nick?: string | undefined;
|
|
@@ -18300,7 +18201,7 @@ export declare const Envelope: {
|
|
|
18300
18201
|
added_by?: string | undefined;
|
|
18301
18202
|
is_banned?: boolean | undefined;
|
|
18302
18203
|
expired_ban_time?: number | undefined;
|
|
18303
|
-
} & { [
|
|
18204
|
+
} & { [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
18205
|
user_id?: string | undefined;
|
|
18305
18206
|
role_id?: string[] | undefined;
|
|
18306
18207
|
id?: string | undefined;
|
|
@@ -18314,7 +18215,7 @@ export declare const Envelope: {
|
|
|
18314
18215
|
}[]>]: never; }) | undefined;
|
|
18315
18216
|
cursor?: string | undefined;
|
|
18316
18217
|
channel_id?: string | undefined;
|
|
18317
|
-
} & { [
|
|
18218
|
+
} & { [K_639 in Exclude<keyof I_1["list_data_socket"]["channel_user_list"], keyof ChannelUserList>]: never; }) | undefined;
|
|
18318
18219
|
list_channel_attachment_req?: ({
|
|
18319
18220
|
clan_id?: string | undefined;
|
|
18320
18221
|
channel_id?: string | undefined;
|
|
@@ -18333,7 +18234,7 @@ export declare const Envelope: {
|
|
|
18333
18234
|
before?: number | undefined;
|
|
18334
18235
|
after?: number | undefined;
|
|
18335
18236
|
around?: number | undefined;
|
|
18336
|
-
} & { [
|
|
18237
|
+
} & { [K_640 in Exclude<keyof I_1["list_data_socket"]["list_channel_attachment_req"], keyof ListChannelAttachmentRequest>]: never; }) | undefined;
|
|
18337
18238
|
channel_attachment_list?: ({
|
|
18338
18239
|
attachments?: {
|
|
18339
18240
|
id?: string | undefined;
|
|
@@ -18381,7 +18282,7 @@ export declare const Envelope: {
|
|
|
18381
18282
|
message_id?: string | undefined;
|
|
18382
18283
|
width?: number | undefined;
|
|
18383
18284
|
height?: number | undefined;
|
|
18384
|
-
} & { [
|
|
18285
|
+
} & { [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
18286
|
id?: string | undefined;
|
|
18386
18287
|
filename?: string | undefined;
|
|
18387
18288
|
filetype?: string | undefined;
|
|
@@ -18393,14 +18294,14 @@ export declare const Envelope: {
|
|
|
18393
18294
|
width?: number | undefined;
|
|
18394
18295
|
height?: number | undefined;
|
|
18395
18296
|
}[]>]: never; }) | undefined;
|
|
18396
|
-
} & { [
|
|
18297
|
+
} & { [K_643 in Exclude<keyof I_1["list_data_socket"]["channel_attachment_list"], "attachments">]: never; }) | undefined;
|
|
18397
18298
|
hashtag_dm_req?: ({
|
|
18398
18299
|
user_id?: string[] | undefined;
|
|
18399
18300
|
limit?: number | undefined;
|
|
18400
18301
|
} & {
|
|
18401
|
-
user_id?: (string[] & string[] & { [
|
|
18302
|
+
user_id?: (string[] & string[] & { [K_644 in Exclude<keyof I_1["list_data_socket"]["hashtag_dm_req"]["user_id"], keyof string[]>]: never; }) | undefined;
|
|
18402
18303
|
limit?: number | undefined;
|
|
18403
|
-
} & { [
|
|
18304
|
+
} & { [K_645 in Exclude<keyof I_1["list_data_socket"]["hashtag_dm_req"], keyof HashtagDmListRequest>]: never; }) | undefined;
|
|
18404
18305
|
hashtag_dm_list?: ({
|
|
18405
18306
|
hashtag_dm?: {
|
|
18406
18307
|
channel_id?: string | undefined;
|
|
@@ -18440,7 +18341,7 @@ export declare const Envelope: {
|
|
|
18440
18341
|
type?: number | undefined;
|
|
18441
18342
|
channel_private?: number | undefined;
|
|
18442
18343
|
parent_id?: string | undefined;
|
|
18443
|
-
} & { [
|
|
18344
|
+
} & { [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
18345
|
channel_id?: string | undefined;
|
|
18445
18346
|
channel_label?: string | undefined;
|
|
18446
18347
|
clan_id?: string | undefined;
|
|
@@ -18450,7 +18351,7 @@ export declare const Envelope: {
|
|
|
18450
18351
|
channel_private?: number | undefined;
|
|
18451
18352
|
parent_id?: string | undefined;
|
|
18452
18353
|
}[]>]: never; }) | undefined;
|
|
18453
|
-
} & { [
|
|
18354
|
+
} & { [K_648 in Exclude<keyof I_1["list_data_socket"]["hashtag_dm_list"], "hashtag_dm">]: never; }) | undefined;
|
|
18454
18355
|
channel_setting_req?: ({
|
|
18455
18356
|
clan_id?: string | undefined;
|
|
18456
18357
|
parent_id?: string | undefined;
|
|
@@ -18473,7 +18374,7 @@ export declare const Envelope: {
|
|
|
18473
18374
|
limit?: number | undefined;
|
|
18474
18375
|
page?: number | undefined;
|
|
18475
18376
|
channel_label?: string | undefined;
|
|
18476
|
-
} & { [
|
|
18377
|
+
} & { [K_649 in Exclude<keyof I_1["list_data_socket"]["channel_setting_req"], keyof ChannelSettingListRequest>]: never; }) | undefined;
|
|
18477
18378
|
channel_setting_list?: ({
|
|
18478
18379
|
clan_id?: string | undefined;
|
|
18479
18380
|
channel_count?: number | undefined;
|
|
@@ -18562,7 +18463,7 @@ export declare const Envelope: {
|
|
|
18562
18463
|
channel_private?: number | undefined;
|
|
18563
18464
|
channel_type?: number | undefined;
|
|
18564
18465
|
active?: number | undefined;
|
|
18565
|
-
user_ids?: (string[] & string[] & { [
|
|
18466
|
+
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
18467
|
message_count?: number | undefined;
|
|
18567
18468
|
last_sent_message?: ({
|
|
18568
18469
|
id?: string | undefined;
|
|
@@ -18583,9 +18484,9 @@ export declare const Envelope: {
|
|
|
18583
18484
|
reference?: string | undefined;
|
|
18584
18485
|
mention?: string | undefined;
|
|
18585
18486
|
reaction?: string | undefined;
|
|
18586
|
-
repliers?: (string[] & string[] & { [
|
|
18587
|
-
} & { [
|
|
18588
|
-
} & { [
|
|
18487
|
+
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;
|
|
18488
|
+
} & { [K_652 in Exclude<keyof I_1["list_data_socket"]["channel_setting_list"]["channel_setting_list"][number]["last_sent_message"], keyof ChannelMessageHeader>]: never; }) | undefined;
|
|
18489
|
+
} & { [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
18490
|
id?: string | undefined;
|
|
18590
18491
|
creator_id?: string | undefined;
|
|
18591
18492
|
parent_id?: string | undefined;
|
|
@@ -18609,17 +18510,17 @@ export declare const Envelope: {
|
|
|
18609
18510
|
repliers?: string[] | undefined;
|
|
18610
18511
|
} | undefined;
|
|
18611
18512
|
}[]>]: never; }) | undefined;
|
|
18612
|
-
} & { [
|
|
18513
|
+
} & { [K_655 in Exclude<keyof I_1["list_data_socket"]["channel_setting_list"], keyof ChannelSettingListResponse>]: never; }) | undefined;
|
|
18613
18514
|
favorite_channel_req?: ({
|
|
18614
18515
|
clan_id?: string | undefined;
|
|
18615
18516
|
} & {
|
|
18616
18517
|
clan_id?: string | undefined;
|
|
18617
|
-
} & { [
|
|
18518
|
+
} & { [K_656 in Exclude<keyof I_1["list_data_socket"]["favorite_channel_req"], "clan_id">]: never; }) | undefined;
|
|
18618
18519
|
favorite_channel_list?: ({
|
|
18619
18520
|
channel_ids?: string[] | undefined;
|
|
18620
18521
|
} & {
|
|
18621
|
-
channel_ids?: (string[] & string[] & { [
|
|
18622
|
-
} & { [
|
|
18522
|
+
channel_ids?: (string[] & string[] & { [K_657 in Exclude<keyof I_1["list_data_socket"]["favorite_channel_list"]["channel_ids"], keyof string[]>]: never; }) | undefined;
|
|
18523
|
+
} & { [K_658 in Exclude<keyof I_1["list_data_socket"]["favorite_channel_list"], "channel_ids">]: never; }) | undefined;
|
|
18623
18524
|
search_thread_req?: ({
|
|
18624
18525
|
clan_id?: string | undefined;
|
|
18625
18526
|
channel_id?: string | undefined;
|
|
@@ -18628,12 +18529,12 @@ export declare const Envelope: {
|
|
|
18628
18529
|
clan_id?: string | undefined;
|
|
18629
18530
|
channel_id?: string | undefined;
|
|
18630
18531
|
label?: string | undefined;
|
|
18631
|
-
} & { [
|
|
18532
|
+
} & { [K_659 in Exclude<keyof I_1["list_data_socket"]["search_thread_req"], keyof SearchThreadRequest>]: never; }) | undefined;
|
|
18632
18533
|
notification_channel?: ({
|
|
18633
18534
|
channel_id?: string | undefined;
|
|
18634
18535
|
} & {
|
|
18635
18536
|
channel_id?: string | undefined;
|
|
18636
|
-
} & { [
|
|
18537
|
+
} & { [K_660 in Exclude<keyof I_1["list_data_socket"]["notification_channel"], "channel_id">]: never; }) | undefined;
|
|
18637
18538
|
notificaion_user_channel?: ({
|
|
18638
18539
|
id?: string | undefined;
|
|
18639
18540
|
notification_setting_type?: number | undefined;
|
|
@@ -18646,24 +18547,24 @@ export declare const Envelope: {
|
|
|
18646
18547
|
time_mute?: Date | undefined;
|
|
18647
18548
|
active?: number | undefined;
|
|
18648
18549
|
channel_id?: string | undefined;
|
|
18649
|
-
} & { [
|
|
18550
|
+
} & { [K_661 in Exclude<keyof I_1["list_data_socket"]["notificaion_user_channel"], keyof NotificationUserChannel>]: never; }) | undefined;
|
|
18650
18551
|
notification_category?: ({
|
|
18651
18552
|
category_id?: string | undefined;
|
|
18652
18553
|
} & {
|
|
18653
18554
|
category_id?: string | undefined;
|
|
18654
|
-
} & { [
|
|
18555
|
+
} & { [K_662 in Exclude<keyof I_1["list_data_socket"]["notification_category"], "category_id">]: never; }) | undefined;
|
|
18655
18556
|
notification_clan?: ({
|
|
18656
18557
|
clan_id?: string | undefined;
|
|
18657
18558
|
} & {
|
|
18658
18559
|
clan_id?: string | undefined;
|
|
18659
|
-
} & { [
|
|
18560
|
+
} & { [K_663 in Exclude<keyof I_1["list_data_socket"]["notification_clan"], "clan_id">]: never; }) | undefined;
|
|
18660
18561
|
notification_setting?: ({
|
|
18661
18562
|
id?: string | undefined;
|
|
18662
18563
|
notification_setting_type?: number | undefined;
|
|
18663
18564
|
} & {
|
|
18664
18565
|
id?: string | undefined;
|
|
18665
18566
|
notification_setting_type?: number | undefined;
|
|
18666
|
-
} & { [
|
|
18567
|
+
} & { [K_664 in Exclude<keyof I_1["list_data_socket"]["notification_setting"], keyof NotificationSetting>]: never; }) | undefined;
|
|
18667
18568
|
notification_message?: ({
|
|
18668
18569
|
id?: string | undefined;
|
|
18669
18570
|
user_id?: string | undefined;
|
|
@@ -18672,7 +18573,7 @@ export declare const Envelope: {
|
|
|
18672
18573
|
id?: string | undefined;
|
|
18673
18574
|
user_id?: string | undefined;
|
|
18674
18575
|
channel_id?: string | undefined;
|
|
18675
|
-
} & { [
|
|
18576
|
+
} & { [K_665 in Exclude<keyof I_1["list_data_socket"]["notification_message"], keyof NotifiReactMessage>]: never; }) | undefined;
|
|
18676
18577
|
noti_channel_cat_setting_list?: ({
|
|
18677
18578
|
notification_channel_category_settings_list?: {
|
|
18678
18579
|
id?: string | undefined;
|
|
@@ -18700,14 +18601,14 @@ export declare const Envelope: {
|
|
|
18700
18601
|
notification_setting_type?: number | undefined;
|
|
18701
18602
|
channel_category_title?: string | undefined;
|
|
18702
18603
|
action?: number | undefined;
|
|
18703
|
-
} & { [
|
|
18604
|
+
} & { [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
18605
|
id?: string | undefined;
|
|
18705
18606
|
channel_category_label?: string | undefined;
|
|
18706
18607
|
notification_setting_type?: number | undefined;
|
|
18707
18608
|
channel_category_title?: string | undefined;
|
|
18708
18609
|
action?: number | undefined;
|
|
18709
18610
|
}[]>]: never; }) | undefined;
|
|
18710
|
-
} & { [
|
|
18611
|
+
} & { [K_668 in Exclude<keyof I_1["list_data_socket"]["noti_channel_cat_setting_list"], "notification_channel_category_settings_list">]: never; }) | undefined;
|
|
18711
18612
|
list_notification_req?: ({
|
|
18712
18613
|
limit?: number | undefined;
|
|
18713
18614
|
clan_id?: string | undefined;
|
|
@@ -18720,7 +18621,7 @@ export declare const Envelope: {
|
|
|
18720
18621
|
notification_id?: string | undefined;
|
|
18721
18622
|
category?: number | undefined;
|
|
18722
18623
|
direction?: number | undefined;
|
|
18723
|
-
} & { [
|
|
18624
|
+
} & { [K_669 in Exclude<keyof I_1["list_data_socket"]["list_notification_req"], keyof ListNotificationsRequest>]: never; }) | undefined;
|
|
18724
18625
|
notification_list?: ({
|
|
18725
18626
|
notifications?: {
|
|
18726
18627
|
id?: string | undefined;
|
|
@@ -19000,8 +18901,8 @@ export declare const Envelope: {
|
|
|
19000
18901
|
creator_id?: string | undefined;
|
|
19001
18902
|
channel_label?: string | undefined;
|
|
19002
18903
|
channel_private?: number | undefined;
|
|
19003
|
-
avatars?: (string[] & string[] & { [
|
|
19004
|
-
user_ids?: (string[] & string[] & { [
|
|
18904
|
+
avatars?: (string[] & string[] & { [K_670 in Exclude<keyof I_1["list_data_socket"]["notification_list"]["notifications"][number]["channel"]["avatars"], keyof string[]>]: never; }) | undefined;
|
|
18905
|
+
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
18906
|
last_sent_message?: ({
|
|
19006
18907
|
id?: string | undefined;
|
|
19007
18908
|
timestamp_seconds?: number | undefined;
|
|
@@ -19021,8 +18922,8 @@ export declare const Envelope: {
|
|
|
19021
18922
|
reference?: string | undefined;
|
|
19022
18923
|
mention?: string | undefined;
|
|
19023
18924
|
reaction?: string | undefined;
|
|
19024
|
-
repliers?: (string[] & string[] & { [
|
|
19025
|
-
} & { [
|
|
18925
|
+
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;
|
|
18926
|
+
} & { [K_673 in Exclude<keyof I_1["list_data_socket"]["notification_list"]["notifications"][number]["channel"]["last_sent_message"], keyof ChannelMessageHeader>]: never; }) | undefined;
|
|
19026
18927
|
last_seen_message?: ({
|
|
19027
18928
|
id?: string | undefined;
|
|
19028
18929
|
timestamp_seconds?: number | undefined;
|
|
@@ -19042,18 +18943,18 @@ export declare const Envelope: {
|
|
|
19042
18943
|
reference?: string | undefined;
|
|
19043
18944
|
mention?: string | undefined;
|
|
19044
18945
|
reaction?: string | undefined;
|
|
19045
|
-
repliers?: (string[] & string[] & { [
|
|
19046
|
-
} & { [
|
|
19047
|
-
onlines?: (boolean[] & boolean[] & { [
|
|
18946
|
+
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;
|
|
18947
|
+
} & { [K_675 in Exclude<keyof I_1["list_data_socket"]["notification_list"]["notifications"][number]["channel"]["last_seen_message"], keyof ChannelMessageHeader>]: never; }) | undefined;
|
|
18948
|
+
onlines?: (boolean[] & boolean[] & { [K_676 in Exclude<keyof I_1["list_data_socket"]["notification_list"]["notifications"][number]["channel"]["onlines"], keyof boolean[]>]: never; }) | undefined;
|
|
19048
18949
|
meeting_code?: string | undefined;
|
|
19049
18950
|
count_mess_unread?: number | undefined;
|
|
19050
18951
|
active?: number | undefined;
|
|
19051
18952
|
last_pin_message?: string | undefined;
|
|
19052
|
-
usernames?: (string[] & string[] & { [
|
|
18953
|
+
usernames?: (string[] & string[] & { [K_677 in Exclude<keyof I_1["list_data_socket"]["notification_list"]["notifications"][number]["channel"]["usernames"], keyof string[]>]: never; }) | undefined;
|
|
19053
18954
|
creator_name?: string | undefined;
|
|
19054
18955
|
create_time_seconds?: number | undefined;
|
|
19055
18956
|
update_time_seconds?: number | undefined;
|
|
19056
|
-
display_names?: (string[] & string[] & { [
|
|
18957
|
+
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
18958
|
channel_avatar?: string | undefined;
|
|
19058
18959
|
clan_name?: string | undefined;
|
|
19059
18960
|
app_id?: string | undefined;
|
|
@@ -19062,10 +18963,10 @@ export declare const Envelope: {
|
|
|
19062
18963
|
topic?: string | undefined;
|
|
19063
18964
|
e2ee?: number | undefined;
|
|
19064
18965
|
member_count?: number | undefined;
|
|
19065
|
-
} & { [
|
|
18966
|
+
} & { [K_679 in Exclude<keyof I_1["list_data_socket"]["notification_list"]["notifications"][number]["channel"], keyof ChannelDescription1>]: never; }) | undefined;
|
|
19066
18967
|
topic_id?: string | undefined;
|
|
19067
18968
|
category?: number | undefined;
|
|
19068
|
-
} & { [
|
|
18969
|
+
} & { [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
18970
|
id?: string | undefined;
|
|
19070
18971
|
subject?: string | undefined;
|
|
19071
18972
|
content?: string | undefined;
|
|
@@ -19134,7 +19035,7 @@ export declare const Envelope: {
|
|
|
19134
19035
|
category?: number | undefined;
|
|
19135
19036
|
}[]>]: never; }) | undefined;
|
|
19136
19037
|
cacheable_cursor?: string | undefined;
|
|
19137
|
-
} & { [
|
|
19038
|
+
} & { [K_682 in Exclude<keyof I_1["list_data_socket"]["notification_list"], keyof NotificationList>]: never; }) | undefined;
|
|
19138
19039
|
sticker_list?: ({
|
|
19139
19040
|
stickers?: {
|
|
19140
19041
|
id?: string | undefined;
|
|
@@ -19186,7 +19087,7 @@ export declare const Envelope: {
|
|
|
19186
19087
|
clan_name?: string | undefined;
|
|
19187
19088
|
media_type?: number | undefined;
|
|
19188
19089
|
is_for_sale?: boolean | undefined;
|
|
19189
|
-
} & { [
|
|
19090
|
+
} & { [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
19091
|
id?: string | undefined;
|
|
19191
19092
|
source?: string | undefined;
|
|
19192
19093
|
shortname?: string | undefined;
|
|
@@ -19199,7 +19100,7 @@ export declare const Envelope: {
|
|
|
19199
19100
|
media_type?: number | undefined;
|
|
19200
19101
|
is_for_sale?: boolean | undefined;
|
|
19201
19102
|
}[]>]: never; }) | undefined;
|
|
19202
|
-
} & { [
|
|
19103
|
+
} & { [K_685 in Exclude<keyof I_1["list_data_socket"]["sticker_list"], "stickers">]: never; }) | undefined;
|
|
19203
19104
|
emoji_recent_list?: ({
|
|
19204
19105
|
emoji_recents?: {
|
|
19205
19106
|
emoji_recents_id?: string | undefined;
|
|
@@ -19219,17 +19120,17 @@ export declare const Envelope: {
|
|
|
19219
19120
|
emoji_recents_id?: string | undefined;
|
|
19220
19121
|
emoji_id?: string | undefined;
|
|
19221
19122
|
update_time?: Date | undefined;
|
|
19222
|
-
} & { [
|
|
19123
|
+
} & { [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
19124
|
emoji_recents_id?: string | undefined;
|
|
19224
19125
|
emoji_id?: string | undefined;
|
|
19225
19126
|
update_time?: Date | undefined;
|
|
19226
19127
|
}[]>]: never; }) | undefined;
|
|
19227
|
-
} & { [
|
|
19128
|
+
} & { [K_688 in Exclude<keyof I_1["list_data_socket"]["emoji_recent_list"], "emoji_recents">]: never; }) | undefined;
|
|
19228
19129
|
clan_webhook_req?: ({
|
|
19229
19130
|
clan_id?: string | undefined;
|
|
19230
19131
|
} & {
|
|
19231
19132
|
clan_id?: string | undefined;
|
|
19232
|
-
} & { [
|
|
19133
|
+
} & { [K_689 in Exclude<keyof I_1["list_data_socket"]["clan_webhook_req"], "clan_id">]: never; }) | undefined;
|
|
19233
19134
|
clan_webhook_list?: ({
|
|
19234
19135
|
list_clan_webhooks?: {
|
|
19235
19136
|
id?: string | undefined;
|
|
@@ -19273,7 +19174,7 @@ export declare const Envelope: {
|
|
|
19273
19174
|
avatar?: string | undefined;
|
|
19274
19175
|
create_time?: string | undefined;
|
|
19275
19176
|
update_time?: string | undefined;
|
|
19276
|
-
} & { [
|
|
19177
|
+
} & { [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
19178
|
id?: string | undefined;
|
|
19278
19179
|
webhook_name?: string | undefined;
|
|
19279
19180
|
clan_id?: string | undefined;
|
|
@@ -19284,14 +19185,14 @@ export declare const Envelope: {
|
|
|
19284
19185
|
create_time?: string | undefined;
|
|
19285
19186
|
update_time?: string | undefined;
|
|
19286
19187
|
}[]>]: never; }) | undefined;
|
|
19287
|
-
} & { [
|
|
19188
|
+
} & { [K_692 in Exclude<keyof I_1["list_data_socket"]["clan_webhook_list"], "list_clan_webhooks">]: never; }) | undefined;
|
|
19288
19189
|
webhook_list_req?: ({
|
|
19289
19190
|
channel_id?: string | undefined;
|
|
19290
19191
|
clan_id?: string | undefined;
|
|
19291
19192
|
} & {
|
|
19292
19193
|
channel_id?: string | undefined;
|
|
19293
19194
|
clan_id?: string | undefined;
|
|
19294
|
-
} & { [
|
|
19195
|
+
} & { [K_693 in Exclude<keyof I_1["list_data_socket"]["webhook_list_req"], keyof WebhookListRequest>]: never; }) | undefined;
|
|
19295
19196
|
webhook_list?: ({
|
|
19296
19197
|
webhooks?: {
|
|
19297
19198
|
id?: string | undefined;
|
|
@@ -19343,7 +19244,7 @@ export declare const Envelope: {
|
|
|
19343
19244
|
avatar?: string | undefined;
|
|
19344
19245
|
status?: number | undefined;
|
|
19345
19246
|
clan_id?: string | undefined;
|
|
19346
|
-
} & { [
|
|
19247
|
+
} & { [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
19248
|
id?: string | undefined;
|
|
19348
19249
|
webhook_name?: string | undefined;
|
|
19349
19250
|
channel_id?: string | undefined;
|
|
@@ -19356,12 +19257,12 @@ export declare const Envelope: {
|
|
|
19356
19257
|
status?: number | undefined;
|
|
19357
19258
|
clan_id?: string | undefined;
|
|
19358
19259
|
}[]>]: never; }) | undefined;
|
|
19359
|
-
} & { [
|
|
19260
|
+
} & { [K_696 in Exclude<keyof I_1["list_data_socket"]["webhook_list"], "webhooks">]: never; }) | undefined;
|
|
19360
19261
|
permission_list_req?: ({
|
|
19361
19262
|
role_id?: string | undefined;
|
|
19362
19263
|
} & {
|
|
19363
19264
|
role_id?: string | undefined;
|
|
19364
|
-
} & { [
|
|
19265
|
+
} & { [K_697 in Exclude<keyof I_1["list_data_socket"]["permission_list_req"], "role_id">]: never; }) | undefined;
|
|
19365
19266
|
permission_list?: ({
|
|
19366
19267
|
permissions?: {
|
|
19367
19268
|
id?: string | undefined;
|
|
@@ -19398,7 +19299,7 @@ export declare const Envelope: {
|
|
|
19398
19299
|
active?: number | undefined;
|
|
19399
19300
|
scope?: number | undefined;
|
|
19400
19301
|
level?: number | undefined;
|
|
19401
|
-
} & { [
|
|
19302
|
+
} & { [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
19303
|
id?: string | undefined;
|
|
19403
19304
|
title?: string | undefined;
|
|
19404
19305
|
slug?: string | undefined;
|
|
@@ -19408,7 +19309,7 @@ export declare const Envelope: {
|
|
|
19408
19309
|
level?: number | undefined;
|
|
19409
19310
|
}[]>]: never; }) | undefined;
|
|
19410
19311
|
max_level_permission?: number | undefined;
|
|
19411
|
-
} & { [
|
|
19312
|
+
} & { [K_700 in Exclude<keyof I_1["list_data_socket"]["permission_list"], keyof PermissionList>]: never; }) | undefined;
|
|
19412
19313
|
role_user_req?: ({
|
|
19413
19314
|
role_id?: string | undefined;
|
|
19414
19315
|
limit?: number | undefined;
|
|
@@ -19417,7 +19318,7 @@ export declare const Envelope: {
|
|
|
19417
19318
|
role_id?: string | undefined;
|
|
19418
19319
|
limit?: number | undefined;
|
|
19419
19320
|
cursor?: string | undefined;
|
|
19420
|
-
} & { [
|
|
19321
|
+
} & { [K_701 in Exclude<keyof I_1["list_data_socket"]["role_user_req"], keyof ListRoleUsersRequest>]: never; }) | undefined;
|
|
19421
19322
|
role_user_list?: ({
|
|
19422
19323
|
role_users?: {
|
|
19423
19324
|
id?: string | undefined;
|
|
@@ -19454,7 +19355,7 @@ export declare const Envelope: {
|
|
|
19454
19355
|
lang_tag?: string | undefined;
|
|
19455
19356
|
location?: string | undefined;
|
|
19456
19357
|
online?: boolean | undefined;
|
|
19457
|
-
} & { [
|
|
19358
|
+
} & { [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
19359
|
id?: string | undefined;
|
|
19459
19360
|
username?: string | undefined;
|
|
19460
19361
|
display_name?: string | undefined;
|
|
@@ -19464,14 +19365,14 @@ export declare const Envelope: {
|
|
|
19464
19365
|
online?: boolean | undefined;
|
|
19465
19366
|
}[]>]: never; }) | undefined;
|
|
19466
19367
|
cursor?: string | undefined;
|
|
19467
|
-
} & { [
|
|
19368
|
+
} & { [K_704 in Exclude<keyof I_1["list_data_socket"]["role_user_list"], keyof RoleUserList>]: never; }) | undefined;
|
|
19468
19369
|
permission_user_req?: ({
|
|
19469
19370
|
clan_id?: string | undefined;
|
|
19470
19371
|
channel_id?: string | undefined;
|
|
19471
19372
|
} & {
|
|
19472
19373
|
clan_id?: string | undefined;
|
|
19473
19374
|
channel_id?: string | undefined;
|
|
19474
|
-
} & { [
|
|
19375
|
+
} & { [K_705 in Exclude<keyof I_1["list_data_socket"]["permission_user_req"], keyof ListPermissionOfUsersRequest>]: never; }) | undefined;
|
|
19475
19376
|
role_list?: ({
|
|
19476
19377
|
roles?: {
|
|
19477
19378
|
id?: string | undefined;
|
|
@@ -19644,7 +19545,7 @@ export declare const Envelope: {
|
|
|
19644
19545
|
lang_tag?: string | undefined;
|
|
19645
19546
|
location?: string | undefined;
|
|
19646
19547
|
online?: boolean | undefined;
|
|
19647
|
-
} & { [
|
|
19548
|
+
} & { [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
19549
|
id?: string | undefined;
|
|
19649
19550
|
username?: string | undefined;
|
|
19650
19551
|
display_name?: string | undefined;
|
|
@@ -19654,7 +19555,7 @@ export declare const Envelope: {
|
|
|
19654
19555
|
online?: boolean | undefined;
|
|
19655
19556
|
}[]>]: never; }) | undefined;
|
|
19656
19557
|
cursor?: string | undefined;
|
|
19657
|
-
} & { [
|
|
19558
|
+
} & { [K_708 in Exclude<keyof I_1["list_data_socket"]["role_list"]["roles"][number]["role_user_list"], keyof RoleUserList>]: never; }) | undefined;
|
|
19658
19559
|
permission_list?: ({
|
|
19659
19560
|
permissions?: {
|
|
19660
19561
|
id?: string | undefined;
|
|
@@ -19691,7 +19592,7 @@ export declare const Envelope: {
|
|
|
19691
19592
|
active?: number | undefined;
|
|
19692
19593
|
scope?: number | undefined;
|
|
19693
19594
|
level?: number | undefined;
|
|
19694
|
-
} & { [
|
|
19595
|
+
} & { [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
19596
|
id?: string | undefined;
|
|
19696
19597
|
title?: string | undefined;
|
|
19697
19598
|
slug?: string | undefined;
|
|
@@ -19701,12 +19602,12 @@ export declare const Envelope: {
|
|
|
19701
19602
|
level?: number | undefined;
|
|
19702
19603
|
}[]>]: never; }) | undefined;
|
|
19703
19604
|
max_level_permission?: number | undefined;
|
|
19704
|
-
} & { [
|
|
19605
|
+
} & { [K_711 in Exclude<keyof I_1["list_data_socket"]["role_list"]["roles"][number]["permission_list"], keyof PermissionList>]: never; }) | undefined;
|
|
19705
19606
|
role_channel_active?: number | undefined;
|
|
19706
|
-
channel_ids?: (string[] & string[] & { [
|
|
19607
|
+
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
19608
|
max_level_permission?: number | undefined;
|
|
19708
19609
|
order_role?: number | undefined;
|
|
19709
|
-
} & { [
|
|
19610
|
+
} & { [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
19611
|
id?: string | undefined;
|
|
19711
19612
|
title?: string | undefined;
|
|
19712
19613
|
color?: string | undefined;
|
|
@@ -19748,7 +19649,7 @@ export declare const Envelope: {
|
|
|
19748
19649
|
order_role?: number | undefined;
|
|
19749
19650
|
}[]>]: never; }) | undefined;
|
|
19750
19651
|
max_level_permission?: number | undefined;
|
|
19751
|
-
} & { [
|
|
19652
|
+
} & { [K_715 in Exclude<keyof I_1["list_data_socket"]["role_list"], keyof RoleList>]: never; }) | undefined;
|
|
19752
19653
|
role_list_event_req?: ({
|
|
19753
19654
|
clan_id?: string | undefined;
|
|
19754
19655
|
limit?: number | undefined;
|
|
@@ -19759,7 +19660,7 @@ export declare const Envelope: {
|
|
|
19759
19660
|
limit?: number | undefined;
|
|
19760
19661
|
state?: number | undefined;
|
|
19761
19662
|
cursor?: string | undefined;
|
|
19762
|
-
} & { [
|
|
19663
|
+
} & { [K_716 in Exclude<keyof I_1["list_data_socket"]["role_list_event_req"], keyof RoleListEventRequest>]: never; }) | undefined;
|
|
19763
19664
|
role_event_list?: ({
|
|
19764
19665
|
limit?: number | undefined;
|
|
19765
19666
|
state?: number | undefined;
|
|
@@ -19986,7 +19887,7 @@ export declare const Envelope: {
|
|
|
19986
19887
|
lang_tag?: string | undefined;
|
|
19987
19888
|
location?: string | undefined;
|
|
19988
19889
|
online?: boolean | undefined;
|
|
19989
|
-
} & { [
|
|
19890
|
+
} & { [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
19891
|
id?: string | undefined;
|
|
19991
19892
|
username?: string | undefined;
|
|
19992
19893
|
display_name?: string | undefined;
|
|
@@ -19996,7 +19897,7 @@ export declare const Envelope: {
|
|
|
19996
19897
|
online?: boolean | undefined;
|
|
19997
19898
|
}[]>]: never; }) | undefined;
|
|
19998
19899
|
cursor?: string | undefined;
|
|
19999
|
-
} & { [
|
|
19900
|
+
} & { [K_719 in Exclude<keyof I_1["list_data_socket"]["role_event_list"]["roles"]["roles"][number]["role_user_list"], keyof RoleUserList>]: never; }) | undefined;
|
|
20000
19901
|
permission_list?: ({
|
|
20001
19902
|
permissions?: {
|
|
20002
19903
|
id?: string | undefined;
|
|
@@ -20033,7 +19934,7 @@ export declare const Envelope: {
|
|
|
20033
19934
|
active?: number | undefined;
|
|
20034
19935
|
scope?: number | undefined;
|
|
20035
19936
|
level?: number | undefined;
|
|
20036
|
-
} & { [
|
|
19937
|
+
} & { [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
19938
|
id?: string | undefined;
|
|
20038
19939
|
title?: string | undefined;
|
|
20039
19940
|
slug?: string | undefined;
|
|
@@ -20043,12 +19944,12 @@ export declare const Envelope: {
|
|
|
20043
19944
|
level?: number | undefined;
|
|
20044
19945
|
}[]>]: never; }) | undefined;
|
|
20045
19946
|
max_level_permission?: number | undefined;
|
|
20046
|
-
} & { [
|
|
19947
|
+
} & { [K_722 in Exclude<keyof I_1["list_data_socket"]["role_event_list"]["roles"]["roles"][number]["permission_list"], keyof PermissionList>]: never; }) | undefined;
|
|
20047
19948
|
role_channel_active?: number | undefined;
|
|
20048
|
-
channel_ids?: (string[] & string[] & { [
|
|
19949
|
+
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
19950
|
max_level_permission?: number | undefined;
|
|
20050
19951
|
order_role?: number | undefined;
|
|
20051
|
-
} & { [
|
|
19952
|
+
} & { [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
19953
|
id?: string | undefined;
|
|
20053
19954
|
title?: string | undefined;
|
|
20054
19955
|
color?: string | undefined;
|
|
@@ -20090,15 +19991,15 @@ export declare const Envelope: {
|
|
|
20090
19991
|
order_role?: number | undefined;
|
|
20091
19992
|
}[]>]: never; }) | undefined;
|
|
20092
19993
|
max_level_permission?: number | undefined;
|
|
20093
|
-
} & { [
|
|
20094
|
-
} & { [
|
|
19994
|
+
} & { [K_726 in Exclude<keyof I_1["list_data_socket"]["role_event_list"]["roles"], keyof RoleList>]: never; }) | undefined;
|
|
19995
|
+
} & { [K_727 in Exclude<keyof I_1["list_data_socket"]["role_event_list"], keyof RoleListEventResponse>]: never; }) | undefined;
|
|
20095
19996
|
user_permission_req?: ({
|
|
20096
19997
|
clan_id?: string | undefined;
|
|
20097
19998
|
channel_id?: string | undefined;
|
|
20098
19999
|
} & {
|
|
20099
20000
|
clan_id?: string | undefined;
|
|
20100
20001
|
channel_id?: string | undefined;
|
|
20101
|
-
} & { [
|
|
20002
|
+
} & { [K_728 in Exclude<keyof I_1["list_data_socket"]["user_permission_req"], keyof UserPermissionInChannelListRequest>]: never; }) | undefined;
|
|
20102
20003
|
user_permission_list?: ({
|
|
20103
20004
|
clan_id?: string | undefined;
|
|
20104
20005
|
channel_id?: string | undefined;
|
|
@@ -20153,7 +20054,7 @@ export declare const Envelope: {
|
|
|
20153
20054
|
active?: number | undefined;
|
|
20154
20055
|
scope?: number | undefined;
|
|
20155
20056
|
level?: number | undefined;
|
|
20156
|
-
} & { [
|
|
20057
|
+
} & { [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
20058
|
id?: string | undefined;
|
|
20158
20059
|
title?: string | undefined;
|
|
20159
20060
|
slug?: string | undefined;
|
|
@@ -20163,8 +20064,8 @@ export declare const Envelope: {
|
|
|
20163
20064
|
level?: number | undefined;
|
|
20164
20065
|
}[]>]: never; }) | undefined;
|
|
20165
20066
|
max_level_permission?: number | undefined;
|
|
20166
|
-
} & { [
|
|
20167
|
-
} & { [
|
|
20067
|
+
} & { [K_731 in Exclude<keyof I_1["list_data_socket"]["user_permission_list"]["permissions"], keyof PermissionList>]: never; }) | undefined;
|
|
20068
|
+
} & { [K_732 in Exclude<keyof I_1["list_data_socket"]["user_permission_list"], keyof UserPermissionInChannelListResponse>]: never; }) | undefined;
|
|
20168
20069
|
permission_role_req?: ({
|
|
20169
20070
|
role_id?: string | undefined;
|
|
20170
20071
|
channel_id?: string | undefined;
|
|
@@ -20173,7 +20074,7 @@ export declare const Envelope: {
|
|
|
20173
20074
|
role_id?: string | undefined;
|
|
20174
20075
|
channel_id?: string | undefined;
|
|
20175
20076
|
user_id?: string | undefined;
|
|
20176
|
-
} & { [
|
|
20077
|
+
} & { [K_733 in Exclude<keyof I_1["list_data_socket"]["permission_role_req"], keyof PermissionRoleChannelListEventRequest>]: never; }) | undefined;
|
|
20177
20078
|
permission_role_list?: ({
|
|
20178
20079
|
role_id?: string | undefined;
|
|
20179
20080
|
channel_id?: string | undefined;
|
|
@@ -20195,11 +20096,11 @@ export declare const Envelope: {
|
|
|
20195
20096
|
} & {
|
|
20196
20097
|
permission_id?: string | undefined;
|
|
20197
20098
|
active?: boolean | undefined;
|
|
20198
|
-
} & { [
|
|
20099
|
+
} & { [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
20100
|
permission_id?: string | undefined;
|
|
20200
20101
|
active?: boolean | undefined;
|
|
20201
20102
|
}[]>]: never; }) | undefined;
|
|
20202
|
-
} & { [
|
|
20103
|
+
} & { [K_736 in Exclude<keyof I_1["list_data_socket"]["permission_role_list"], keyof PermissionRoleChannelListEventResponse>]: never; }) | undefined;
|
|
20203
20104
|
emoji_list?: ({
|
|
20204
20105
|
emoji_list?: {
|
|
20205
20106
|
id?: string | undefined;
|
|
@@ -20243,7 +20144,7 @@ export declare const Envelope: {
|
|
|
20243
20144
|
logo?: string | undefined;
|
|
20244
20145
|
clan_name?: string | undefined;
|
|
20245
20146
|
is_for_sale?: boolean | undefined;
|
|
20246
|
-
} & { [
|
|
20147
|
+
} & { [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
20148
|
id?: string | undefined;
|
|
20248
20149
|
src?: string | undefined;
|
|
20249
20150
|
shortname?: string | undefined;
|
|
@@ -20254,7 +20155,7 @@ export declare const Envelope: {
|
|
|
20254
20155
|
clan_name?: string | undefined;
|
|
20255
20156
|
is_for_sale?: boolean | undefined;
|
|
20256
20157
|
}[]>]: never; }) | undefined;
|
|
20257
|
-
} & { [
|
|
20158
|
+
} & { [K_739 in Exclude<keyof I_1["list_data_socket"]["emoji_list"], "emoji_list">]: never; }) | undefined;
|
|
20258
20159
|
list_friend_req?: ({
|
|
20259
20160
|
limit?: number | undefined;
|
|
20260
20161
|
state?: number | undefined;
|
|
@@ -20263,7 +20164,7 @@ export declare const Envelope: {
|
|
|
20263
20164
|
limit?: number | undefined;
|
|
20264
20165
|
state?: number | undefined;
|
|
20265
20166
|
cursor?: string | undefined;
|
|
20266
|
-
} & { [
|
|
20167
|
+
} & { [K_740 in Exclude<keyof I_1["list_data_socket"]["list_friend_req"], keyof ListFriendsRequest>]: never; }) | undefined;
|
|
20267
20168
|
friend_list?: ({
|
|
20268
20169
|
friends?: {
|
|
20269
20170
|
user?: {
|
|
@@ -20387,13 +20288,13 @@ export declare const Envelope: {
|
|
|
20387
20288
|
is_mobile?: boolean | undefined;
|
|
20388
20289
|
dob?: Date | undefined;
|
|
20389
20290
|
mezon_id?: string | undefined;
|
|
20390
|
-
list_nick_names?: (string[] & string[] & { [
|
|
20291
|
+
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
20292
|
status?: string | undefined;
|
|
20392
|
-
} & { [
|
|
20293
|
+
} & { [K_742 in Exclude<keyof I_1["list_data_socket"]["friend_list"]["friends"][number]["user"], keyof import("../api/api").User>]: never; }) | undefined;
|
|
20393
20294
|
state?: number | undefined;
|
|
20394
20295
|
update_time?: Date | undefined;
|
|
20395
20296
|
source_id?: string | undefined;
|
|
20396
|
-
} & { [
|
|
20297
|
+
} & { [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
20298
|
user?: {
|
|
20398
20299
|
id?: string | undefined;
|
|
20399
20300
|
username?: string | undefined;
|
|
@@ -20421,12 +20322,12 @@ export declare const Envelope: {
|
|
|
20421
20322
|
source_id?: string | undefined;
|
|
20422
20323
|
}[]>]: never; }) | undefined;
|
|
20423
20324
|
cursor?: string | undefined;
|
|
20424
|
-
} & { [
|
|
20325
|
+
} & { [K_745 in Exclude<keyof I_1["list_data_socket"]["friend_list"], keyof FriendList>]: never; }) | undefined;
|
|
20425
20326
|
list_apps_req?: ({
|
|
20426
20327
|
clan_id?: string | undefined;
|
|
20427
20328
|
} & {
|
|
20428
20329
|
clan_id?: string | undefined;
|
|
20429
|
-
} & { [
|
|
20330
|
+
} & { [K_746 in Exclude<keyof I_1["list_data_socket"]["list_apps_req"], "clan_id">]: never; }) | undefined;
|
|
20430
20331
|
channel_apps_list?: ({
|
|
20431
20332
|
channel_apps?: {
|
|
20432
20333
|
id?: string | undefined;
|
|
@@ -20454,14 +20355,14 @@ export declare const Envelope: {
|
|
|
20454
20355
|
channel_id?: string | undefined;
|
|
20455
20356
|
app_id?: string | undefined;
|
|
20456
20357
|
app_url?: string | undefined;
|
|
20457
|
-
} & { [
|
|
20358
|
+
} & { [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
20359
|
id?: string | undefined;
|
|
20459
20360
|
clan_id?: string | undefined;
|
|
20460
20361
|
channel_id?: string | undefined;
|
|
20461
20362
|
app_id?: string | undefined;
|
|
20462
20363
|
app_url?: string | undefined;
|
|
20463
20364
|
}[]>]: never; }) | undefined;
|
|
20464
|
-
} & { [
|
|
20365
|
+
} & { [K_749 in Exclude<keyof I_1["list_data_socket"]["channel_apps_list"], "channel_apps">]: never; }) | undefined;
|
|
20465
20366
|
user_activity_list?: ({
|
|
20466
20367
|
activities?: {
|
|
20467
20368
|
user_id?: string | undefined;
|
|
@@ -20501,7 +20402,7 @@ export declare const Envelope: {
|
|
|
20501
20402
|
end_time?: Date | undefined;
|
|
20502
20403
|
application_id?: string | undefined;
|
|
20503
20404
|
status?: number | undefined;
|
|
20504
|
-
} & { [
|
|
20405
|
+
} & { [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
20406
|
user_id?: string | undefined;
|
|
20506
20407
|
activity_name?: string | undefined;
|
|
20507
20408
|
activity_type?: number | undefined;
|
|
@@ -20511,12 +20412,12 @@ export declare const Envelope: {
|
|
|
20511
20412
|
application_id?: string | undefined;
|
|
20512
20413
|
status?: number | undefined;
|
|
20513
20414
|
}[]>]: never; }) | undefined;
|
|
20514
|
-
} & { [
|
|
20415
|
+
} & { [K_752 in Exclude<keyof I_1["list_data_socket"]["user_activity_list"], "activities">]: never; }) | undefined;
|
|
20515
20416
|
list_clan_user_req?: ({
|
|
20516
20417
|
clan_id?: string | undefined;
|
|
20517
20418
|
} & {
|
|
20518
20419
|
clan_id?: string | undefined;
|
|
20519
|
-
} & { [
|
|
20420
|
+
} & { [K_753 in Exclude<keyof I_1["list_data_socket"]["list_clan_user_req"], "clan_id">]: never; }) | undefined;
|
|
20520
20421
|
clan_user_list?: ({
|
|
20521
20422
|
clan_users?: {
|
|
20522
20423
|
user?: {
|
|
@@ -20644,14 +20545,14 @@ export declare const Envelope: {
|
|
|
20644
20545
|
is_mobile?: boolean | undefined;
|
|
20645
20546
|
dob?: Date | undefined;
|
|
20646
20547
|
mezon_id?: string | undefined;
|
|
20647
|
-
list_nick_names?: (string[] & string[] & { [
|
|
20548
|
+
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
20549
|
status?: string | undefined;
|
|
20649
|
-
} & { [
|
|
20650
|
-
role_id?: (string[] & string[] & { [
|
|
20550
|
+
} & { [K_755 in Exclude<keyof I_1["list_data_socket"]["clan_user_list"]["clan_users"][number]["user"], keyof import("../api/api").User>]: never; }) | undefined;
|
|
20551
|
+
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
20552
|
clan_nick?: string | undefined;
|
|
20652
20553
|
clan_avatar?: string | undefined;
|
|
20653
20554
|
clan_id?: string | undefined;
|
|
20654
|
-
} & { [
|
|
20555
|
+
} & { [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
20556
|
user?: {
|
|
20656
20557
|
id?: string | undefined;
|
|
20657
20558
|
username?: string | undefined;
|
|
@@ -20681,12 +20582,12 @@ export declare const Envelope: {
|
|
|
20681
20582
|
}[]>]: never; }) | undefined;
|
|
20682
20583
|
cursor?: string | undefined;
|
|
20683
20584
|
clan_id?: string | undefined;
|
|
20684
|
-
} & { [
|
|
20585
|
+
} & { [K_759 in Exclude<keyof I_1["list_data_socket"]["clan_user_list"], keyof ClanUserList>]: never; }) | undefined;
|
|
20685
20586
|
list_event_req?: ({
|
|
20686
20587
|
clan_id?: string | undefined;
|
|
20687
20588
|
} & {
|
|
20688
20589
|
clan_id?: string | undefined;
|
|
20689
|
-
} & { [
|
|
20590
|
+
} & { [K_760 in Exclude<keyof I_1["list_data_socket"]["list_event_req"], "clan_id">]: never; }) | undefined;
|
|
20690
20591
|
event_list?: ({
|
|
20691
20592
|
events?: {
|
|
20692
20593
|
id?: string | undefined;
|
|
@@ -20784,7 +20685,7 @@ export declare const Envelope: {
|
|
|
20784
20685
|
address?: string | undefined;
|
|
20785
20686
|
start_time?: Date | undefined;
|
|
20786
20687
|
end_time?: Date | undefined;
|
|
20787
|
-
user_ids?: (string[] & string[] & { [
|
|
20688
|
+
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
20689
|
create_time?: Date | undefined;
|
|
20789
20690
|
max_permission?: number | undefined;
|
|
20790
20691
|
channel_id?: string | undefined;
|
|
@@ -20803,8 +20704,8 @@ export declare const Envelope: {
|
|
|
20803
20704
|
external_link?: string | undefined;
|
|
20804
20705
|
creator_id?: string | undefined;
|
|
20805
20706
|
event_id?: string | undefined;
|
|
20806
|
-
} & { [
|
|
20807
|
-
} & { [
|
|
20707
|
+
} & { [K_762 in Exclude<keyof I_1["list_data_socket"]["event_list"]["events"][number]["meet_room"], keyof import("../api/api").GenerateMezonMeetResponse>]: never; }) | undefined;
|
|
20708
|
+
} & { [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
20709
|
id?: string | undefined;
|
|
20809
20710
|
title?: string | undefined;
|
|
20810
20711
|
logo?: string | undefined;
|
|
@@ -20832,7 +20733,7 @@ export declare const Envelope: {
|
|
|
20832
20733
|
event_id?: string | undefined;
|
|
20833
20734
|
} | undefined;
|
|
20834
20735
|
}[]>]: never; }) | undefined;
|
|
20835
|
-
} & { [
|
|
20736
|
+
} & { [K_765 in Exclude<keyof I_1["list_data_socket"]["event_list"], "events">]: never; }) | undefined;
|
|
20836
20737
|
list_category_req?: ({
|
|
20837
20738
|
creator_id?: string | undefined;
|
|
20838
20739
|
clan_id?: string | undefined;
|
|
@@ -20845,7 +20746,7 @@ export declare const Envelope: {
|
|
|
20845
20746
|
category_name?: string | undefined;
|
|
20846
20747
|
category_id?: string | undefined;
|
|
20847
20748
|
category_order?: number | undefined;
|
|
20848
|
-
} & { [
|
|
20749
|
+
} & { [K_766 in Exclude<keyof I_1["list_data_socket"]["list_category_req"], keyof CategoryDesc>]: never; }) | undefined;
|
|
20849
20750
|
category_list?: ({
|
|
20850
20751
|
categorydesc?: {
|
|
20851
20752
|
creator_id?: string | undefined;
|
|
@@ -20873,14 +20774,14 @@ export declare const Envelope: {
|
|
|
20873
20774
|
category_name?: string | undefined;
|
|
20874
20775
|
category_id?: string | undefined;
|
|
20875
20776
|
category_order?: number | undefined;
|
|
20876
|
-
} & { [
|
|
20777
|
+
} & { [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
20778
|
creator_id?: string | undefined;
|
|
20878
20779
|
clan_id?: string | undefined;
|
|
20879
20780
|
category_name?: string | undefined;
|
|
20880
20781
|
category_id?: string | undefined;
|
|
20881
20782
|
category_order?: number | undefined;
|
|
20882
20783
|
}[]>]: never; }) | undefined;
|
|
20883
|
-
} & { [
|
|
20784
|
+
} & { [K_769 in Exclude<keyof I_1["list_data_socket"]["category_list"], "categorydesc">]: never; }) | undefined;
|
|
20884
20785
|
stream_user_list?: ({
|
|
20885
20786
|
streaming_channel_users?: {
|
|
20886
20787
|
id?: string | undefined;
|
|
@@ -20904,24 +20805,24 @@ export declare const Envelope: {
|
|
|
20904
20805
|
user_id?: string | undefined;
|
|
20905
20806
|
channel_id?: string | undefined;
|
|
20906
20807
|
participant?: string | undefined;
|
|
20907
|
-
} & { [
|
|
20808
|
+
} & { [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
20809
|
id?: string | undefined;
|
|
20909
20810
|
user_id?: string | undefined;
|
|
20910
20811
|
channel_id?: string | undefined;
|
|
20911
20812
|
participant?: string | undefined;
|
|
20912
20813
|
}[]>]: never; }) | undefined;
|
|
20913
|
-
} & { [
|
|
20814
|
+
} & { [K_772 in Exclude<keyof I_1["list_data_socket"]["stream_user_list"], "streaming_channel_users">]: never; }) | undefined;
|
|
20914
20815
|
list_unread_msg_indicator_req?: ({
|
|
20915
20816
|
clan_id?: string | undefined;
|
|
20916
20817
|
} & {
|
|
20917
20818
|
clan_id?: string | undefined;
|
|
20918
|
-
} & { [
|
|
20819
|
+
} & { [K_773 in Exclude<keyof I_1["list_data_socket"]["list_unread_msg_indicator_req"], "clan_id">]: never; }) | undefined;
|
|
20919
20820
|
unread_msg_indicator?: ({
|
|
20920
20821
|
has_unread_message?: boolean | undefined;
|
|
20921
20822
|
} & {
|
|
20922
20823
|
has_unread_message?: boolean | undefined;
|
|
20923
|
-
} & { [
|
|
20924
|
-
} & { [
|
|
20824
|
+
} & { [K_774 in Exclude<keyof I_1["list_data_socket"]["unread_msg_indicator"], "has_unread_message">]: never; }) | undefined;
|
|
20825
|
+
} & { [K_775 in Exclude<keyof I_1["list_data_socket"], keyof ListDataSocket>]: never; }) | undefined;
|
|
20925
20826
|
quick_menu_event?: ({
|
|
20926
20827
|
menu_name?: string | undefined;
|
|
20927
20828
|
message?: {
|
|
@@ -21044,7 +20945,7 @@ export declare const Envelope: {
|
|
|
21044
20945
|
create_time?: Date | undefined;
|
|
21045
20946
|
s?: number | undefined;
|
|
21046
20947
|
e?: number | undefined;
|
|
21047
|
-
} & { [
|
|
20948
|
+
} & { [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
20949
|
id?: string | undefined;
|
|
21049
20950
|
user_id?: string | undefined;
|
|
21050
20951
|
username?: string | undefined;
|
|
@@ -21078,7 +20979,7 @@ export declare const Envelope: {
|
|
|
21078
20979
|
width?: number | undefined;
|
|
21079
20980
|
height?: number | undefined;
|
|
21080
20981
|
thumbnail?: string | undefined;
|
|
21081
|
-
} & { [
|
|
20982
|
+
} & { [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
20983
|
filename?: string | undefined;
|
|
21083
20984
|
size?: number | undefined;
|
|
21084
20985
|
url?: string | undefined;
|
|
@@ -21120,7 +21021,7 @@ export declare const Envelope: {
|
|
|
21120
21021
|
mesages_sender_avatar?: string | undefined;
|
|
21121
21022
|
message_sender_clan_nick?: string | undefined;
|
|
21122
21023
|
message_sender_display_name?: string | undefined;
|
|
21123
|
-
} & { [
|
|
21024
|
+
} & { [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
21025
|
message_id?: string | undefined;
|
|
21125
21026
|
message_ref_id?: string | undefined;
|
|
21126
21027
|
content?: string | undefined;
|
|
@@ -21140,8 +21041,8 @@ export declare const Envelope: {
|
|
|
21140
21041
|
code?: number | undefined;
|
|
21141
21042
|
topic_id?: string | undefined;
|
|
21142
21043
|
id?: string | undefined;
|
|
21143
|
-
} & { [
|
|
21144
|
-
} & { [
|
|
21044
|
+
} & { [K_782 in Exclude<keyof I_1["quick_menu_event"]["message"], keyof ChannelMessageSend>]: never; }) | undefined;
|
|
21045
|
+
} & { [K_783 in Exclude<keyof I_1["quick_menu_event"], keyof QuickMenuDataEvent>]: never; }) | undefined;
|
|
21145
21046
|
un_block_friend?: ({
|
|
21146
21047
|
user_id?: string | undefined;
|
|
21147
21048
|
username?: string | undefined;
|
|
@@ -21156,7 +21057,7 @@ export declare const Envelope: {
|
|
|
21156
21057
|
display_name?: string | undefined;
|
|
21157
21058
|
status?: string | undefined;
|
|
21158
21059
|
user_status?: string | undefined;
|
|
21159
|
-
} & { [
|
|
21060
|
+
} & { [K_784 in Exclude<keyof I_1["un_block_friend"], keyof UnblockFriend>]: never; }) | undefined;
|
|
21160
21061
|
meet_participant_event?: ({
|
|
21161
21062
|
username?: string | undefined;
|
|
21162
21063
|
room_name?: string | undefined;
|
|
@@ -21169,7 +21070,7 @@ export declare const Envelope: {
|
|
|
21169
21070
|
channel_id?: string | undefined;
|
|
21170
21071
|
clan_id?: string | undefined;
|
|
21171
21072
|
action?: number | undefined;
|
|
21172
|
-
} & { [
|
|
21073
|
+
} & { [K_785 in Exclude<keyof I_1["meet_participant_event"], keyof MeetParticipantEvent>]: never; }) | undefined;
|
|
21173
21074
|
transfer_ownership_event?: ({
|
|
21174
21075
|
clan_id?: string | undefined;
|
|
21175
21076
|
prev_owner?: string | undefined;
|
|
@@ -21178,7 +21079,7 @@ export declare const Envelope: {
|
|
|
21178
21079
|
clan_id?: string | undefined;
|
|
21179
21080
|
prev_owner?: string | undefined;
|
|
21180
21081
|
curr_owner?: string | undefined;
|
|
21181
|
-
} & { [
|
|
21082
|
+
} & { [K_786 in Exclude<keyof I_1["transfer_ownership_event"], keyof TransferOwnershipEvent>]: never; }) | undefined;
|
|
21182
21083
|
add_friend?: ({
|
|
21183
21084
|
user_id?: string | undefined;
|
|
21184
21085
|
username?: string | undefined;
|
|
@@ -21189,7 +21090,7 @@ export declare const Envelope: {
|
|
|
21189
21090
|
username?: string | undefined;
|
|
21190
21091
|
display_name?: string | undefined;
|
|
21191
21092
|
avatar?: string | undefined;
|
|
21192
|
-
} & { [
|
|
21093
|
+
} & { [K_787 in Exclude<keyof I_1["add_friend"], keyof AddFriend>]: never; }) | undefined;
|
|
21193
21094
|
ban_user_event?: ({
|
|
21194
21095
|
user_ids?: string[] | undefined;
|
|
21195
21096
|
action?: number | undefined;
|
|
@@ -21197,13 +21098,20 @@ export declare const Envelope: {
|
|
|
21197
21098
|
channel_id?: string | undefined;
|
|
21198
21099
|
clan_id?: string | undefined;
|
|
21199
21100
|
} & {
|
|
21200
|
-
user_ids?: (string[] & string[] & { [
|
|
21101
|
+
user_ids?: (string[] & string[] & { [K_788 in Exclude<keyof I_1["ban_user_event"]["user_ids"], keyof string[]>]: never; }) | undefined;
|
|
21201
21102
|
action?: number | undefined;
|
|
21202
21103
|
banner_id?: string | undefined;
|
|
21203
21104
|
channel_id?: string | undefined;
|
|
21204
21105
|
clan_id?: string | undefined;
|
|
21205
|
-
} & { [
|
|
21206
|
-
|
|
21106
|
+
} & { [K_789 in Exclude<keyof I_1["ban_user_event"], keyof BannedUserEvent>]: never; }) | undefined;
|
|
21107
|
+
active_archived_thread?: ({
|
|
21108
|
+
clan_id?: string | undefined;
|
|
21109
|
+
channel_id?: string | undefined;
|
|
21110
|
+
} & {
|
|
21111
|
+
clan_id?: string | undefined;
|
|
21112
|
+
channel_id?: string | undefined;
|
|
21113
|
+
} & { [K_790 in Exclude<keyof I_1["active_archived_thread"], keyof ActiveArchivedThread>]: never; }) | undefined;
|
|
21114
|
+
} & { [K_791 in Exclude<keyof I_1, keyof Envelope>]: never; }>(object: I_1): Envelope;
|
|
21207
21115
|
};
|
|
21208
21116
|
export declare const FollowEvent: {
|
|
21209
21117
|
encode(_: FollowEvent, writer?: _m0.Writer): _m0.Writer;
|
|
@@ -21393,21 +21301,17 @@ export declare const AddClanUserEvent: {
|
|
|
21393
21301
|
username?: string | undefined;
|
|
21394
21302
|
avatar?: string | undefined;
|
|
21395
21303
|
display_name?: string | undefined;
|
|
21396
|
-
about_me?: string | undefined;
|
|
21397
21304
|
user_status?: string | undefined;
|
|
21398
21305
|
status?: string | undefined;
|
|
21399
|
-
|
|
21306
|
+
online?: boolean | undefined;
|
|
21400
21307
|
fcm_tokens?: {
|
|
21401
21308
|
device_id?: string | undefined;
|
|
21402
21309
|
token_id?: string | undefined;
|
|
21403
21310
|
platform?: string | undefined;
|
|
21404
21311
|
}[] | undefined;
|
|
21405
|
-
online?: boolean | undefined;
|
|
21406
|
-
is_disabled?: boolean | undefined;
|
|
21407
21312
|
joined_clans?: string[] | undefined;
|
|
21408
|
-
pubkey?: string | undefined;
|
|
21409
|
-
mezon_id?: string | undefined;
|
|
21410
21313
|
app_token?: string | undefined;
|
|
21314
|
+
create_time_second?: number | undefined;
|
|
21411
21315
|
app_url?: string | undefined;
|
|
21412
21316
|
is_bot?: boolean | undefined;
|
|
21413
21317
|
voip_token?: string | undefined;
|
|
@@ -21420,21 +21324,17 @@ export declare const AddClanUserEvent: {
|
|
|
21420
21324
|
username?: string | undefined;
|
|
21421
21325
|
avatar?: string | undefined;
|
|
21422
21326
|
display_name?: string | undefined;
|
|
21423
|
-
about_me?: string | undefined;
|
|
21424
21327
|
user_status?: string | undefined;
|
|
21425
21328
|
status?: string | undefined;
|
|
21426
|
-
|
|
21329
|
+
online?: boolean | undefined;
|
|
21427
21330
|
fcm_tokens?: {
|
|
21428
21331
|
device_id?: string | undefined;
|
|
21429
21332
|
token_id?: string | undefined;
|
|
21430
21333
|
platform?: string | undefined;
|
|
21431
21334
|
}[] | undefined;
|
|
21432
|
-
online?: boolean | undefined;
|
|
21433
|
-
is_disabled?: boolean | undefined;
|
|
21434
21335
|
joined_clans?: string[] | undefined;
|
|
21435
|
-
pubkey?: string | undefined;
|
|
21436
|
-
mezon_id?: string | undefined;
|
|
21437
21336
|
app_token?: string | undefined;
|
|
21337
|
+
create_time_second?: number | undefined;
|
|
21438
21338
|
app_url?: string | undefined;
|
|
21439
21339
|
is_bot?: boolean | undefined;
|
|
21440
21340
|
voip_token?: string | undefined;
|
|
@@ -21443,10 +21343,9 @@ export declare const AddClanUserEvent: {
|
|
|
21443
21343
|
username?: string | undefined;
|
|
21444
21344
|
avatar?: string | undefined;
|
|
21445
21345
|
display_name?: string | undefined;
|
|
21446
|
-
about_me?: string | undefined;
|
|
21447
21346
|
user_status?: string | undefined;
|
|
21448
21347
|
status?: string | undefined;
|
|
21449
|
-
|
|
21348
|
+
online?: boolean | undefined;
|
|
21450
21349
|
fcm_tokens?: ({
|
|
21451
21350
|
device_id?: string | undefined;
|
|
21452
21351
|
token_id?: string | undefined;
|
|
@@ -21464,12 +21363,9 @@ export declare const AddClanUserEvent: {
|
|
|
21464
21363
|
token_id?: string | undefined;
|
|
21465
21364
|
platform?: string | undefined;
|
|
21466
21365
|
}[]>]: never; }) | undefined;
|
|
21467
|
-
online?: boolean | undefined;
|
|
21468
|
-
is_disabled?: boolean | undefined;
|
|
21469
21366
|
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
21367
|
app_token?: string | undefined;
|
|
21368
|
+
create_time_second?: number | undefined;
|
|
21473
21369
|
app_url?: string | undefined;
|
|
21474
21370
|
is_bot?: boolean | undefined;
|
|
21475
21371
|
voip_token?: string | undefined;
|
|
@@ -21483,21 +21379,17 @@ export declare const AddClanUserEvent: {
|
|
|
21483
21379
|
username?: string | undefined;
|
|
21484
21380
|
avatar?: string | undefined;
|
|
21485
21381
|
display_name?: string | undefined;
|
|
21486
|
-
about_me?: string | undefined;
|
|
21487
21382
|
user_status?: string | undefined;
|
|
21488
21383
|
status?: string | undefined;
|
|
21489
|
-
|
|
21384
|
+
online?: boolean | undefined;
|
|
21490
21385
|
fcm_tokens?: {
|
|
21491
21386
|
device_id?: string | undefined;
|
|
21492
21387
|
token_id?: string | undefined;
|
|
21493
21388
|
platform?: string | undefined;
|
|
21494
21389
|
}[] | undefined;
|
|
21495
|
-
online?: boolean | undefined;
|
|
21496
|
-
is_disabled?: boolean | undefined;
|
|
21497
21390
|
joined_clans?: string[] | undefined;
|
|
21498
|
-
pubkey?: string | undefined;
|
|
21499
|
-
mezon_id?: string | undefined;
|
|
21500
21391
|
app_token?: string | undefined;
|
|
21392
|
+
create_time_second?: number | undefined;
|
|
21501
21393
|
app_url?: string | undefined;
|
|
21502
21394
|
is_bot?: boolean | undefined;
|
|
21503
21395
|
voip_token?: string | undefined;
|
|
@@ -21510,21 +21402,17 @@ export declare const AddClanUserEvent: {
|
|
|
21510
21402
|
username?: string | undefined;
|
|
21511
21403
|
avatar?: string | undefined;
|
|
21512
21404
|
display_name?: string | undefined;
|
|
21513
|
-
about_me?: string | undefined;
|
|
21514
21405
|
user_status?: string | undefined;
|
|
21515
21406
|
status?: string | undefined;
|
|
21516
|
-
|
|
21407
|
+
online?: boolean | undefined;
|
|
21517
21408
|
fcm_tokens?: {
|
|
21518
21409
|
device_id?: string | undefined;
|
|
21519
21410
|
token_id?: string | undefined;
|
|
21520
21411
|
platform?: string | undefined;
|
|
21521
21412
|
}[] | undefined;
|
|
21522
|
-
online?: boolean | undefined;
|
|
21523
|
-
is_disabled?: boolean | undefined;
|
|
21524
21413
|
joined_clans?: string[] | undefined;
|
|
21525
|
-
pubkey?: string | undefined;
|
|
21526
|
-
mezon_id?: string | undefined;
|
|
21527
21414
|
app_token?: string | undefined;
|
|
21415
|
+
create_time_second?: number | undefined;
|
|
21528
21416
|
app_url?: string | undefined;
|
|
21529
21417
|
is_bot?: boolean | undefined;
|
|
21530
21418
|
voip_token?: string | undefined;
|
|
@@ -21533,10 +21421,9 @@ export declare const AddClanUserEvent: {
|
|
|
21533
21421
|
username?: string | undefined;
|
|
21534
21422
|
avatar?: string | undefined;
|
|
21535
21423
|
display_name?: string | undefined;
|
|
21536
|
-
about_me?: string | undefined;
|
|
21537
21424
|
user_status?: string | undefined;
|
|
21538
21425
|
status?: string | undefined;
|
|
21539
|
-
|
|
21426
|
+
online?: boolean | undefined;
|
|
21540
21427
|
fcm_tokens?: ({
|
|
21541
21428
|
device_id?: string | undefined;
|
|
21542
21429
|
token_id?: string | undefined;
|
|
@@ -21554,12 +21441,9 @@ export declare const AddClanUserEvent: {
|
|
|
21554
21441
|
token_id?: string | undefined;
|
|
21555
21442
|
platform?: string | undefined;
|
|
21556
21443
|
}[]>]: never; }) | undefined;
|
|
21557
|
-
online?: boolean | undefined;
|
|
21558
|
-
is_disabled?: boolean | undefined;
|
|
21559
21444
|
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
21445
|
app_token?: string | undefined;
|
|
21446
|
+
create_time_second?: number | undefined;
|
|
21563
21447
|
app_url?: string | undefined;
|
|
21564
21448
|
is_bot?: boolean | undefined;
|
|
21565
21449
|
voip_token?: string | undefined;
|
|
@@ -26707,21 +26591,17 @@ export declare const UserChannelAdded: {
|
|
|
26707
26591
|
username?: string | undefined;
|
|
26708
26592
|
avatar?: string | undefined;
|
|
26709
26593
|
display_name?: string | undefined;
|
|
26710
|
-
about_me?: string | undefined;
|
|
26711
26594
|
user_status?: string | undefined;
|
|
26712
26595
|
status?: string | undefined;
|
|
26713
|
-
|
|
26596
|
+
online?: boolean | undefined;
|
|
26714
26597
|
fcm_tokens?: {
|
|
26715
26598
|
device_id?: string | undefined;
|
|
26716
26599
|
token_id?: string | undefined;
|
|
26717
26600
|
platform?: string | undefined;
|
|
26718
26601
|
}[] | undefined;
|
|
26719
|
-
online?: boolean | undefined;
|
|
26720
|
-
is_disabled?: boolean | undefined;
|
|
26721
26602
|
joined_clans?: string[] | undefined;
|
|
26722
|
-
pubkey?: string | undefined;
|
|
26723
|
-
mezon_id?: string | undefined;
|
|
26724
26603
|
app_token?: string | undefined;
|
|
26604
|
+
create_time_second?: number | undefined;
|
|
26725
26605
|
app_url?: string | undefined;
|
|
26726
26606
|
is_bot?: boolean | undefined;
|
|
26727
26607
|
voip_token?: string | undefined;
|
|
@@ -26733,21 +26613,17 @@ export declare const UserChannelAdded: {
|
|
|
26733
26613
|
username?: string | undefined;
|
|
26734
26614
|
avatar?: string | undefined;
|
|
26735
26615
|
display_name?: string | undefined;
|
|
26736
|
-
about_me?: string | undefined;
|
|
26737
26616
|
user_status?: string | undefined;
|
|
26738
26617
|
status?: string | undefined;
|
|
26739
|
-
|
|
26618
|
+
online?: boolean | undefined;
|
|
26740
26619
|
fcm_tokens?: {
|
|
26741
26620
|
device_id?: string | undefined;
|
|
26742
26621
|
token_id?: string | undefined;
|
|
26743
26622
|
platform?: string | undefined;
|
|
26744
26623
|
}[] | undefined;
|
|
26745
|
-
online?: boolean | undefined;
|
|
26746
|
-
is_disabled?: boolean | undefined;
|
|
26747
26624
|
joined_clans?: string[] | undefined;
|
|
26748
|
-
pubkey?: string | undefined;
|
|
26749
|
-
mezon_id?: string | undefined;
|
|
26750
26625
|
app_token?: string | undefined;
|
|
26626
|
+
create_time_second?: number | undefined;
|
|
26751
26627
|
app_url?: string | undefined;
|
|
26752
26628
|
is_bot?: boolean | undefined;
|
|
26753
26629
|
voip_token?: string | undefined;
|
|
@@ -26885,21 +26761,17 @@ export declare const UserChannelAdded: {
|
|
|
26885
26761
|
username?: string | undefined;
|
|
26886
26762
|
avatar?: string | undefined;
|
|
26887
26763
|
display_name?: string | undefined;
|
|
26888
|
-
about_me?: string | undefined;
|
|
26889
26764
|
user_status?: string | undefined;
|
|
26890
26765
|
status?: string | undefined;
|
|
26891
|
-
|
|
26766
|
+
online?: boolean | undefined;
|
|
26892
26767
|
fcm_tokens?: {
|
|
26893
26768
|
device_id?: string | undefined;
|
|
26894
26769
|
token_id?: string | undefined;
|
|
26895
26770
|
platform?: string | undefined;
|
|
26896
26771
|
}[] | undefined;
|
|
26897
|
-
online?: boolean | undefined;
|
|
26898
|
-
is_disabled?: boolean | undefined;
|
|
26899
26772
|
joined_clans?: string[] | undefined;
|
|
26900
|
-
pubkey?: string | undefined;
|
|
26901
|
-
mezon_id?: string | undefined;
|
|
26902
26773
|
app_token?: string | undefined;
|
|
26774
|
+
create_time_second?: number | undefined;
|
|
26903
26775
|
app_url?: string | undefined;
|
|
26904
26776
|
is_bot?: boolean | undefined;
|
|
26905
26777
|
voip_token?: string | undefined;
|
|
@@ -26908,21 +26780,17 @@ export declare const UserChannelAdded: {
|
|
|
26908
26780
|
username?: string | undefined;
|
|
26909
26781
|
avatar?: string | undefined;
|
|
26910
26782
|
display_name?: string | undefined;
|
|
26911
|
-
about_me?: string | undefined;
|
|
26912
26783
|
user_status?: string | undefined;
|
|
26913
26784
|
status?: string | undefined;
|
|
26914
|
-
|
|
26785
|
+
online?: boolean | undefined;
|
|
26915
26786
|
fcm_tokens?: {
|
|
26916
26787
|
device_id?: string | undefined;
|
|
26917
26788
|
token_id?: string | undefined;
|
|
26918
26789
|
platform?: string | undefined;
|
|
26919
26790
|
}[] | undefined;
|
|
26920
|
-
online?: boolean | undefined;
|
|
26921
|
-
is_disabled?: boolean | undefined;
|
|
26922
26791
|
joined_clans?: string[] | undefined;
|
|
26923
|
-
pubkey?: string | undefined;
|
|
26924
|
-
mezon_id?: string | undefined;
|
|
26925
26792
|
app_token?: string | undefined;
|
|
26793
|
+
create_time_second?: number | undefined;
|
|
26926
26794
|
app_url?: string | undefined;
|
|
26927
26795
|
is_bot?: boolean | undefined;
|
|
26928
26796
|
voip_token?: string | undefined;
|
|
@@ -26931,10 +26799,9 @@ export declare const UserChannelAdded: {
|
|
|
26931
26799
|
username?: string | undefined;
|
|
26932
26800
|
avatar?: string | undefined;
|
|
26933
26801
|
display_name?: string | undefined;
|
|
26934
|
-
about_me?: string | undefined;
|
|
26935
26802
|
user_status?: string | undefined;
|
|
26936
26803
|
status?: string | undefined;
|
|
26937
|
-
|
|
26804
|
+
online?: boolean | undefined;
|
|
26938
26805
|
fcm_tokens?: ({
|
|
26939
26806
|
device_id?: string | undefined;
|
|
26940
26807
|
token_id?: string | undefined;
|
|
@@ -26952,12 +26819,9 @@ export declare const UserChannelAdded: {
|
|
|
26952
26819
|
token_id?: string | undefined;
|
|
26953
26820
|
platform?: string | undefined;
|
|
26954
26821
|
}[]>]: never; }) | undefined;
|
|
26955
|
-
online?: boolean | undefined;
|
|
26956
|
-
is_disabled?: boolean | undefined;
|
|
26957
26822
|
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
26823
|
app_token?: string | undefined;
|
|
26824
|
+
create_time_second?: number | undefined;
|
|
26961
26825
|
app_url?: string | undefined;
|
|
26962
26826
|
is_bot?: boolean | undefined;
|
|
26963
26827
|
voip_token?: string | undefined;
|
|
@@ -26966,21 +26830,17 @@ export declare const UserChannelAdded: {
|
|
|
26966
26830
|
username?: string | undefined;
|
|
26967
26831
|
avatar?: string | undefined;
|
|
26968
26832
|
display_name?: string | undefined;
|
|
26969
|
-
about_me?: string | undefined;
|
|
26970
26833
|
user_status?: string | undefined;
|
|
26971
26834
|
status?: string | undefined;
|
|
26972
|
-
|
|
26835
|
+
online?: boolean | undefined;
|
|
26973
26836
|
fcm_tokens?: {
|
|
26974
26837
|
device_id?: string | undefined;
|
|
26975
26838
|
token_id?: string | undefined;
|
|
26976
26839
|
platform?: string | undefined;
|
|
26977
26840
|
}[] | undefined;
|
|
26978
|
-
online?: boolean | undefined;
|
|
26979
|
-
is_disabled?: boolean | undefined;
|
|
26980
26841
|
joined_clans?: string[] | undefined;
|
|
26981
|
-
pubkey?: string | undefined;
|
|
26982
|
-
mezon_id?: string | undefined;
|
|
26983
26842
|
app_token?: string | undefined;
|
|
26843
|
+
create_time_second?: number | undefined;
|
|
26984
26844
|
app_url?: string | undefined;
|
|
26985
26845
|
is_bot?: boolean | undefined;
|
|
26986
26846
|
voip_token?: string | undefined;
|
|
@@ -26992,21 +26852,17 @@ export declare const UserChannelAdded: {
|
|
|
26992
26852
|
username?: string | undefined;
|
|
26993
26853
|
avatar?: string | undefined;
|
|
26994
26854
|
display_name?: string | undefined;
|
|
26995
|
-
about_me?: string | undefined;
|
|
26996
26855
|
user_status?: string | undefined;
|
|
26997
26856
|
status?: string | undefined;
|
|
26998
|
-
|
|
26857
|
+
online?: boolean | undefined;
|
|
26999
26858
|
fcm_tokens?: {
|
|
27000
26859
|
device_id?: string | undefined;
|
|
27001
26860
|
token_id?: string | undefined;
|
|
27002
26861
|
platform?: string | undefined;
|
|
27003
26862
|
}[] | undefined;
|
|
27004
|
-
online?: boolean | undefined;
|
|
27005
|
-
is_disabled?: boolean | undefined;
|
|
27006
26863
|
joined_clans?: string[] | undefined;
|
|
27007
|
-
pubkey?: string | undefined;
|
|
27008
|
-
mezon_id?: string | undefined;
|
|
27009
26864
|
app_token?: string | undefined;
|
|
26865
|
+
create_time_second?: number | undefined;
|
|
27010
26866
|
app_url?: string | undefined;
|
|
27011
26867
|
is_bot?: boolean | undefined;
|
|
27012
26868
|
voip_token?: string | undefined;
|
|
@@ -27015,10 +26871,9 @@ export declare const UserChannelAdded: {
|
|
|
27015
26871
|
username?: string | undefined;
|
|
27016
26872
|
avatar?: string | undefined;
|
|
27017
26873
|
display_name?: string | undefined;
|
|
27018
|
-
about_me?: string | undefined;
|
|
27019
26874
|
user_status?: string | undefined;
|
|
27020
26875
|
status?: string | undefined;
|
|
27021
|
-
|
|
26876
|
+
online?: boolean | undefined;
|
|
27022
26877
|
fcm_tokens?: ({
|
|
27023
26878
|
device_id?: string | undefined;
|
|
27024
26879
|
token_id?: string | undefined;
|
|
@@ -27036,12 +26891,9 @@ export declare const UserChannelAdded: {
|
|
|
27036
26891
|
token_id?: string | undefined;
|
|
27037
26892
|
platform?: string | undefined;
|
|
27038
26893
|
}[]>]: never; }) | undefined;
|
|
27039
|
-
online?: boolean | undefined;
|
|
27040
|
-
is_disabled?: boolean | undefined;
|
|
27041
26894
|
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
26895
|
app_token?: string | undefined;
|
|
26896
|
+
create_time_second?: number | undefined;
|
|
27045
26897
|
app_url?: string | undefined;
|
|
27046
26898
|
is_bot?: boolean | undefined;
|
|
27047
26899
|
voip_token?: string | undefined;
|
|
@@ -27108,21 +26960,17 @@ export declare const UserChannelAdded: {
|
|
|
27108
26960
|
username?: string | undefined;
|
|
27109
26961
|
avatar?: string | undefined;
|
|
27110
26962
|
display_name?: string | undefined;
|
|
27111
|
-
about_me?: string | undefined;
|
|
27112
26963
|
user_status?: string | undefined;
|
|
27113
26964
|
status?: string | undefined;
|
|
27114
|
-
|
|
26965
|
+
online?: boolean | undefined;
|
|
27115
26966
|
fcm_tokens?: {
|
|
27116
26967
|
device_id?: string | undefined;
|
|
27117
26968
|
token_id?: string | undefined;
|
|
27118
26969
|
platform?: string | undefined;
|
|
27119
26970
|
}[] | undefined;
|
|
27120
|
-
online?: boolean | undefined;
|
|
27121
|
-
is_disabled?: boolean | undefined;
|
|
27122
26971
|
joined_clans?: string[] | undefined;
|
|
27123
|
-
pubkey?: string | undefined;
|
|
27124
|
-
mezon_id?: string | undefined;
|
|
27125
26972
|
app_token?: string | undefined;
|
|
26973
|
+
create_time_second?: number | undefined;
|
|
27126
26974
|
app_url?: string | undefined;
|
|
27127
26975
|
is_bot?: boolean | undefined;
|
|
27128
26976
|
voip_token?: string | undefined;
|
|
@@ -27134,21 +26982,17 @@ export declare const UserChannelAdded: {
|
|
|
27134
26982
|
username?: string | undefined;
|
|
27135
26983
|
avatar?: string | undefined;
|
|
27136
26984
|
display_name?: string | undefined;
|
|
27137
|
-
about_me?: string | undefined;
|
|
27138
26985
|
user_status?: string | undefined;
|
|
27139
26986
|
status?: string | undefined;
|
|
27140
|
-
|
|
26987
|
+
online?: boolean | undefined;
|
|
27141
26988
|
fcm_tokens?: {
|
|
27142
26989
|
device_id?: string | undefined;
|
|
27143
26990
|
token_id?: string | undefined;
|
|
27144
26991
|
platform?: string | undefined;
|
|
27145
26992
|
}[] | undefined;
|
|
27146
|
-
online?: boolean | undefined;
|
|
27147
|
-
is_disabled?: boolean | undefined;
|
|
27148
26993
|
joined_clans?: string[] | undefined;
|
|
27149
|
-
pubkey?: string | undefined;
|
|
27150
|
-
mezon_id?: string | undefined;
|
|
27151
26994
|
app_token?: string | undefined;
|
|
26995
|
+
create_time_second?: number | undefined;
|
|
27152
26996
|
app_url?: string | undefined;
|
|
27153
26997
|
is_bot?: boolean | undefined;
|
|
27154
26998
|
voip_token?: string | undefined;
|
|
@@ -27286,21 +27130,17 @@ export declare const UserChannelAdded: {
|
|
|
27286
27130
|
username?: string | undefined;
|
|
27287
27131
|
avatar?: string | undefined;
|
|
27288
27132
|
display_name?: string | undefined;
|
|
27289
|
-
about_me?: string | undefined;
|
|
27290
27133
|
user_status?: string | undefined;
|
|
27291
27134
|
status?: string | undefined;
|
|
27292
|
-
|
|
27135
|
+
online?: boolean | undefined;
|
|
27293
27136
|
fcm_tokens?: {
|
|
27294
27137
|
device_id?: string | undefined;
|
|
27295
27138
|
token_id?: string | undefined;
|
|
27296
27139
|
platform?: string | undefined;
|
|
27297
27140
|
}[] | undefined;
|
|
27298
|
-
online?: boolean | undefined;
|
|
27299
|
-
is_disabled?: boolean | undefined;
|
|
27300
27141
|
joined_clans?: string[] | undefined;
|
|
27301
|
-
pubkey?: string | undefined;
|
|
27302
|
-
mezon_id?: string | undefined;
|
|
27303
27142
|
app_token?: string | undefined;
|
|
27143
|
+
create_time_second?: number | undefined;
|
|
27304
27144
|
app_url?: string | undefined;
|
|
27305
27145
|
is_bot?: boolean | undefined;
|
|
27306
27146
|
voip_token?: string | undefined;
|
|
@@ -27309,21 +27149,17 @@ export declare const UserChannelAdded: {
|
|
|
27309
27149
|
username?: string | undefined;
|
|
27310
27150
|
avatar?: string | undefined;
|
|
27311
27151
|
display_name?: string | undefined;
|
|
27312
|
-
about_me?: string | undefined;
|
|
27313
27152
|
user_status?: string | undefined;
|
|
27314
27153
|
status?: string | undefined;
|
|
27315
|
-
|
|
27154
|
+
online?: boolean | undefined;
|
|
27316
27155
|
fcm_tokens?: {
|
|
27317
27156
|
device_id?: string | undefined;
|
|
27318
27157
|
token_id?: string | undefined;
|
|
27319
27158
|
platform?: string | undefined;
|
|
27320
27159
|
}[] | undefined;
|
|
27321
|
-
online?: boolean | undefined;
|
|
27322
|
-
is_disabled?: boolean | undefined;
|
|
27323
27160
|
joined_clans?: string[] | undefined;
|
|
27324
|
-
pubkey?: string | undefined;
|
|
27325
|
-
mezon_id?: string | undefined;
|
|
27326
27161
|
app_token?: string | undefined;
|
|
27162
|
+
create_time_second?: number | undefined;
|
|
27327
27163
|
app_url?: string | undefined;
|
|
27328
27164
|
is_bot?: boolean | undefined;
|
|
27329
27165
|
voip_token?: string | undefined;
|
|
@@ -27332,10 +27168,9 @@ export declare const UserChannelAdded: {
|
|
|
27332
27168
|
username?: string | undefined;
|
|
27333
27169
|
avatar?: string | undefined;
|
|
27334
27170
|
display_name?: string | undefined;
|
|
27335
|
-
about_me?: string | undefined;
|
|
27336
27171
|
user_status?: string | undefined;
|
|
27337
27172
|
status?: string | undefined;
|
|
27338
|
-
|
|
27173
|
+
online?: boolean | undefined;
|
|
27339
27174
|
fcm_tokens?: ({
|
|
27340
27175
|
device_id?: string | undefined;
|
|
27341
27176
|
token_id?: string | undefined;
|
|
@@ -27353,12 +27188,9 @@ export declare const UserChannelAdded: {
|
|
|
27353
27188
|
token_id?: string | undefined;
|
|
27354
27189
|
platform?: string | undefined;
|
|
27355
27190
|
}[]>]: never; }) | undefined;
|
|
27356
|
-
online?: boolean | undefined;
|
|
27357
|
-
is_disabled?: boolean | undefined;
|
|
27358
27191
|
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
27192
|
app_token?: string | undefined;
|
|
27193
|
+
create_time_second?: number | undefined;
|
|
27362
27194
|
app_url?: string | undefined;
|
|
27363
27195
|
is_bot?: boolean | undefined;
|
|
27364
27196
|
voip_token?: string | undefined;
|
|
@@ -27367,21 +27199,17 @@ export declare const UserChannelAdded: {
|
|
|
27367
27199
|
username?: string | undefined;
|
|
27368
27200
|
avatar?: string | undefined;
|
|
27369
27201
|
display_name?: string | undefined;
|
|
27370
|
-
about_me?: string | undefined;
|
|
27371
27202
|
user_status?: string | undefined;
|
|
27372
27203
|
status?: string | undefined;
|
|
27373
|
-
|
|
27204
|
+
online?: boolean | undefined;
|
|
27374
27205
|
fcm_tokens?: {
|
|
27375
27206
|
device_id?: string | undefined;
|
|
27376
27207
|
token_id?: string | undefined;
|
|
27377
27208
|
platform?: string | undefined;
|
|
27378
27209
|
}[] | undefined;
|
|
27379
|
-
online?: boolean | undefined;
|
|
27380
|
-
is_disabled?: boolean | undefined;
|
|
27381
27210
|
joined_clans?: string[] | undefined;
|
|
27382
|
-
pubkey?: string | undefined;
|
|
27383
|
-
mezon_id?: string | undefined;
|
|
27384
27211
|
app_token?: string | undefined;
|
|
27212
|
+
create_time_second?: number | undefined;
|
|
27385
27213
|
app_url?: string | undefined;
|
|
27386
27214
|
is_bot?: boolean | undefined;
|
|
27387
27215
|
voip_token?: string | undefined;
|
|
@@ -27393,21 +27221,17 @@ export declare const UserChannelAdded: {
|
|
|
27393
27221
|
username?: string | undefined;
|
|
27394
27222
|
avatar?: string | undefined;
|
|
27395
27223
|
display_name?: string | undefined;
|
|
27396
|
-
about_me?: string | undefined;
|
|
27397
27224
|
user_status?: string | undefined;
|
|
27398
27225
|
status?: string | undefined;
|
|
27399
|
-
|
|
27226
|
+
online?: boolean | undefined;
|
|
27400
27227
|
fcm_tokens?: {
|
|
27401
27228
|
device_id?: string | undefined;
|
|
27402
27229
|
token_id?: string | undefined;
|
|
27403
27230
|
platform?: string | undefined;
|
|
27404
27231
|
}[] | undefined;
|
|
27405
|
-
online?: boolean | undefined;
|
|
27406
|
-
is_disabled?: boolean | undefined;
|
|
27407
27232
|
joined_clans?: string[] | undefined;
|
|
27408
|
-
pubkey?: string | undefined;
|
|
27409
|
-
mezon_id?: string | undefined;
|
|
27410
27233
|
app_token?: string | undefined;
|
|
27234
|
+
create_time_second?: number | undefined;
|
|
27411
27235
|
app_url?: string | undefined;
|
|
27412
27236
|
is_bot?: boolean | undefined;
|
|
27413
27237
|
voip_token?: string | undefined;
|
|
@@ -27416,10 +27240,9 @@ export declare const UserChannelAdded: {
|
|
|
27416
27240
|
username?: string | undefined;
|
|
27417
27241
|
avatar?: string | undefined;
|
|
27418
27242
|
display_name?: string | undefined;
|
|
27419
|
-
about_me?: string | undefined;
|
|
27420
27243
|
user_status?: string | undefined;
|
|
27421
27244
|
status?: string | undefined;
|
|
27422
|
-
|
|
27245
|
+
online?: boolean | undefined;
|
|
27423
27246
|
fcm_tokens?: ({
|
|
27424
27247
|
device_id?: string | undefined;
|
|
27425
27248
|
token_id?: string | undefined;
|
|
@@ -27437,12 +27260,9 @@ export declare const UserChannelAdded: {
|
|
|
27437
27260
|
token_id?: string | undefined;
|
|
27438
27261
|
platform?: string | undefined;
|
|
27439
27262
|
}[]>]: never; }) | undefined;
|
|
27440
|
-
online?: boolean | undefined;
|
|
27441
|
-
is_disabled?: boolean | undefined;
|
|
27442
27263
|
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
27264
|
app_token?: string | undefined;
|
|
27265
|
+
create_time_second?: number | undefined;
|
|
27446
27266
|
app_url?: string | undefined;
|
|
27447
27267
|
is_bot?: boolean | undefined;
|
|
27448
27268
|
voip_token?: string | undefined;
|
|
@@ -27641,21 +27461,17 @@ export declare const UserProfileRedis: {
|
|
|
27641
27461
|
username?: string | undefined;
|
|
27642
27462
|
avatar?: string | undefined;
|
|
27643
27463
|
display_name?: string | undefined;
|
|
27644
|
-
about_me?: string | undefined;
|
|
27645
27464
|
user_status?: string | undefined;
|
|
27646
27465
|
status?: string | undefined;
|
|
27647
|
-
|
|
27466
|
+
online?: boolean | undefined;
|
|
27648
27467
|
fcm_tokens?: {
|
|
27649
27468
|
device_id?: string | undefined;
|
|
27650
27469
|
token_id?: string | undefined;
|
|
27651
27470
|
platform?: string | undefined;
|
|
27652
27471
|
}[] | undefined;
|
|
27653
|
-
online?: boolean | undefined;
|
|
27654
|
-
is_disabled?: boolean | undefined;
|
|
27655
27472
|
joined_clans?: string[] | undefined;
|
|
27656
|
-
pubkey?: string | undefined;
|
|
27657
|
-
mezon_id?: string | undefined;
|
|
27658
27473
|
app_token?: string | undefined;
|
|
27474
|
+
create_time_second?: number | undefined;
|
|
27659
27475
|
app_url?: string | undefined;
|
|
27660
27476
|
is_bot?: boolean | undefined;
|
|
27661
27477
|
voip_token?: string | undefined;
|
|
@@ -27664,10 +27480,9 @@ export declare const UserProfileRedis: {
|
|
|
27664
27480
|
username?: string | undefined;
|
|
27665
27481
|
avatar?: string | undefined;
|
|
27666
27482
|
display_name?: string | undefined;
|
|
27667
|
-
about_me?: string | undefined;
|
|
27668
27483
|
user_status?: string | undefined;
|
|
27669
27484
|
status?: string | undefined;
|
|
27670
|
-
|
|
27485
|
+
online?: boolean | undefined;
|
|
27671
27486
|
fcm_tokens?: ({
|
|
27672
27487
|
device_id?: string | undefined;
|
|
27673
27488
|
token_id?: string | undefined;
|
|
@@ -27685,12 +27500,9 @@ export declare const UserProfileRedis: {
|
|
|
27685
27500
|
token_id?: string | undefined;
|
|
27686
27501
|
platform?: string | undefined;
|
|
27687
27502
|
}[]>]: never; }) | undefined;
|
|
27688
|
-
online?: boolean | undefined;
|
|
27689
|
-
is_disabled?: boolean | undefined;
|
|
27690
27503
|
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
27504
|
app_token?: string | undefined;
|
|
27505
|
+
create_time_second?: number | undefined;
|
|
27694
27506
|
app_url?: string | undefined;
|
|
27695
27507
|
is_bot?: boolean | undefined;
|
|
27696
27508
|
voip_token?: string | undefined;
|
|
@@ -27700,21 +27512,17 @@ export declare const UserProfileRedis: {
|
|
|
27700
27512
|
username?: string | undefined;
|
|
27701
27513
|
avatar?: string | undefined;
|
|
27702
27514
|
display_name?: string | undefined;
|
|
27703
|
-
about_me?: string | undefined;
|
|
27704
27515
|
user_status?: string | undefined;
|
|
27705
27516
|
status?: string | undefined;
|
|
27706
|
-
|
|
27517
|
+
online?: boolean | undefined;
|
|
27707
27518
|
fcm_tokens?: {
|
|
27708
27519
|
device_id?: string | undefined;
|
|
27709
27520
|
token_id?: string | undefined;
|
|
27710
27521
|
platform?: string | undefined;
|
|
27711
27522
|
}[] | undefined;
|
|
27712
|
-
online?: boolean | undefined;
|
|
27713
|
-
is_disabled?: boolean | undefined;
|
|
27714
27523
|
joined_clans?: string[] | undefined;
|
|
27715
|
-
pubkey?: string | undefined;
|
|
27716
|
-
mezon_id?: string | undefined;
|
|
27717
27524
|
app_token?: string | undefined;
|
|
27525
|
+
create_time_second?: number | undefined;
|
|
27718
27526
|
app_url?: string | undefined;
|
|
27719
27527
|
is_bot?: boolean | undefined;
|
|
27720
27528
|
voip_token?: string | undefined;
|
|
@@ -27723,10 +27531,9 @@ export declare const UserProfileRedis: {
|
|
|
27723
27531
|
username?: string | undefined;
|
|
27724
27532
|
avatar?: string | undefined;
|
|
27725
27533
|
display_name?: string | undefined;
|
|
27726
|
-
about_me?: string | undefined;
|
|
27727
27534
|
user_status?: string | undefined;
|
|
27728
27535
|
status?: string | undefined;
|
|
27729
|
-
|
|
27536
|
+
online?: boolean | undefined;
|
|
27730
27537
|
fcm_tokens?: ({
|
|
27731
27538
|
device_id?: string | undefined;
|
|
27732
27539
|
token_id?: string | undefined;
|
|
@@ -27744,12 +27551,9 @@ export declare const UserProfileRedis: {
|
|
|
27744
27551
|
token_id?: string | undefined;
|
|
27745
27552
|
platform?: string | undefined;
|
|
27746
27553
|
}[]>]: never; }) | undefined;
|
|
27747
|
-
online?: boolean | undefined;
|
|
27748
|
-
is_disabled?: boolean | undefined;
|
|
27749
27554
|
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
27555
|
app_token?: string | undefined;
|
|
27556
|
+
create_time_second?: number | undefined;
|
|
27753
27557
|
app_url?: string | undefined;
|
|
27754
27558
|
is_bot?: boolean | undefined;
|
|
27755
27559
|
voip_token?: string | undefined;
|
|
@@ -37589,6 +37393,26 @@ export declare const TransferOwnershipEvent: {
|
|
|
37589
37393
|
curr_owner?: string | undefined;
|
|
37590
37394
|
} & { [K_1 in Exclude<keyof I_1, keyof TransferOwnershipEvent>]: never; }>(object: I_1): TransferOwnershipEvent;
|
|
37591
37395
|
};
|
|
37396
|
+
export declare const ActiveArchivedThread: {
|
|
37397
|
+
encode(message: ActiveArchivedThread, writer?: _m0.Writer): _m0.Writer;
|
|
37398
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): ActiveArchivedThread;
|
|
37399
|
+
fromJSON(object: any): ActiveArchivedThread;
|
|
37400
|
+
toJSON(message: ActiveArchivedThread): unknown;
|
|
37401
|
+
create<I extends {
|
|
37402
|
+
clan_id?: string | undefined;
|
|
37403
|
+
channel_id?: string | undefined;
|
|
37404
|
+
} & {
|
|
37405
|
+
clan_id?: string | undefined;
|
|
37406
|
+
channel_id?: string | undefined;
|
|
37407
|
+
} & { [K in Exclude<keyof I, keyof ActiveArchivedThread>]: never; }>(base?: I | undefined): ActiveArchivedThread;
|
|
37408
|
+
fromPartial<I_1 extends {
|
|
37409
|
+
clan_id?: string | undefined;
|
|
37410
|
+
channel_id?: string | undefined;
|
|
37411
|
+
} & {
|
|
37412
|
+
clan_id?: string | undefined;
|
|
37413
|
+
channel_id?: string | undefined;
|
|
37414
|
+
} & { [K_1 in Exclude<keyof I_1, keyof ActiveArchivedThread>]: never; }>(object: I_1): ActiveArchivedThread;
|
|
37415
|
+
};
|
|
37592
37416
|
type Builtin = Date | Function | Uint8Array | string | number | boolean | undefined;
|
|
37593
37417
|
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
37418
|
[K in keyof T]?: DeepPartial<T[K]>;
|