mezon-sdk 2.7.88 → 2.7.89
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/api/api.d.ts +906 -289
- package/dist/cjs/api/api.js +1050 -119
- package/dist/cjs/api/api.js.map +1 -1
- package/dist/cjs/interfaces/client.d.ts +1 -1
- package/dist/cjs/interfaces/client.js +1 -1
- package/dist/cjs/interfaces/client.js.map +1 -1
- package/dist/cjs/mezon-client/client/MezonClient.js +10 -7
- package/dist/cjs/mezon-client/client/MezonClient.js.map +1 -1
- package/dist/cjs/rtapi/realtime.d.ts +722 -388
- package/dist/cjs/rtapi/realtime.js +288 -22
- package/dist/cjs/rtapi/realtime.js.map +1 -1
- package/dist/esm/api/api.d.ts +906 -289
- package/dist/esm/api/api.js +1048 -129
- package/dist/esm/api/api.js.map +1 -1
- package/dist/esm/interfaces/client.d.ts +1 -1
- package/dist/esm/interfaces/client.js +1 -1
- package/dist/esm/interfaces/client.js.map +1 -1
- package/dist/esm/mezon-client/client/MezonClient.js +8 -5
- package/dist/esm/mezon-client/client/MezonClient.js.map +1 -1
- package/dist/esm/rtapi/realtime.d.ts +722 -388
- package/dist/esm/rtapi/realtime.js +282 -18
- package/dist/esm/rtapi/realtime.js.map +1 -1
- package/dist/tsconfig.esm.tsbuildinfo +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +1 -1
package/dist/esm/api/api.d.ts
CHANGED
|
@@ -1220,6 +1220,8 @@ export interface ClanDesc {
|
|
|
1220
1220
|
welcome_channel_id: string;
|
|
1221
1221
|
/** Onboarding_banner. */
|
|
1222
1222
|
onboarding_banner: string;
|
|
1223
|
+
/** clan order */
|
|
1224
|
+
clan_order: number;
|
|
1223
1225
|
}
|
|
1224
1226
|
/** Clan information */
|
|
1225
1227
|
export interface CreateClanDescRequest {
|
|
@@ -1346,6 +1348,14 @@ export interface UpdateClanProfileRequest {
|
|
|
1346
1348
|
/** avatar */
|
|
1347
1349
|
avatar: string;
|
|
1348
1350
|
}
|
|
1351
|
+
/** Update Clan Order Request */
|
|
1352
|
+
export interface UpdateClanOrderRequest {
|
|
1353
|
+
clans_order: UpdateClanOrderRequest_ClanOrder[];
|
|
1354
|
+
}
|
|
1355
|
+
export interface UpdateClanOrderRequest_ClanOrder {
|
|
1356
|
+
order: number;
|
|
1357
|
+
clan_id: string;
|
|
1358
|
+
}
|
|
1349
1359
|
/** Category to group the channel */
|
|
1350
1360
|
export interface CategoryDesc {
|
|
1351
1361
|
/** Category creator */
|
|
@@ -1361,6 +1371,14 @@ export interface UpdateCategoryOrderRequest {
|
|
|
1361
1371
|
clan_id: string;
|
|
1362
1372
|
categories: CategoryOrderUpdate[];
|
|
1363
1373
|
}
|
|
1374
|
+
export interface UpdateRoleOrderRequest {
|
|
1375
|
+
clan_id: string;
|
|
1376
|
+
roles: RoleOrderUpdate[];
|
|
1377
|
+
}
|
|
1378
|
+
export interface RoleOrderUpdate {
|
|
1379
|
+
role_id: string;
|
|
1380
|
+
order: number;
|
|
1381
|
+
}
|
|
1364
1382
|
export interface CategoryOrderUpdate {
|
|
1365
1383
|
category_id: string;
|
|
1366
1384
|
order: number;
|
|
@@ -1400,7 +1418,7 @@ export interface ChannelMessageHeader {
|
|
|
1400
1418
|
/** the attachment */
|
|
1401
1419
|
attachment: string;
|
|
1402
1420
|
/** the reference */
|
|
1403
|
-
|
|
1421
|
+
reference: string;
|
|
1404
1422
|
/** the mention */
|
|
1405
1423
|
mention: string;
|
|
1406
1424
|
/** the reactions */
|
|
@@ -1461,7 +1479,7 @@ export interface ChannelDescription {
|
|
|
1461
1479
|
/** clan_name */
|
|
1462
1480
|
clan_name: string;
|
|
1463
1481
|
/** app url */
|
|
1464
|
-
|
|
1482
|
+
app_id: string;
|
|
1465
1483
|
/** channel all message */
|
|
1466
1484
|
is_mute: boolean;
|
|
1467
1485
|
/** age restricted */
|
|
@@ -1513,6 +1531,11 @@ export interface ListChannelDescsRequest {
|
|
|
1513
1531
|
/** channel type */
|
|
1514
1532
|
channel_type: number;
|
|
1515
1533
|
}
|
|
1534
|
+
/** List channel description detail */
|
|
1535
|
+
export interface ListChannelDetailRequest {
|
|
1536
|
+
/** channel id */
|
|
1537
|
+
channel_id: string;
|
|
1538
|
+
}
|
|
1516
1539
|
/** Add a role for channel. */
|
|
1517
1540
|
export interface AddRoleChannelDescRequest {
|
|
1518
1541
|
/** This is the role that needs to be added to the channel */
|
|
@@ -1539,7 +1562,7 @@ export interface CreateChannelDescRequest {
|
|
|
1539
1562
|
/** The users to add. */
|
|
1540
1563
|
user_ids: string[];
|
|
1541
1564
|
/** app url for channel type app */
|
|
1542
|
-
|
|
1565
|
+
app_id: string;
|
|
1543
1566
|
}
|
|
1544
1567
|
/** Delete a channel the user has access to. */
|
|
1545
1568
|
export interface DeleteChannelDescRequest {
|
|
@@ -1555,7 +1578,7 @@ export interface UpdateChannelDescRequest {
|
|
|
1555
1578
|
/** The category of channel */
|
|
1556
1579
|
category_id: string | undefined;
|
|
1557
1580
|
/** app url for channel type app */
|
|
1558
|
-
|
|
1581
|
+
app_id: string;
|
|
1559
1582
|
/** topic */
|
|
1560
1583
|
topic: string;
|
|
1561
1584
|
/** */
|
|
@@ -1619,6 +1642,7 @@ export interface Role {
|
|
|
1619
1642
|
role_channel_active: number;
|
|
1620
1643
|
channel_ids: string[];
|
|
1621
1644
|
max_level_permission: number;
|
|
1645
|
+
order_role: number;
|
|
1622
1646
|
}
|
|
1623
1647
|
/** Event clan */
|
|
1624
1648
|
export interface EventManagement {
|
|
@@ -1640,6 +1664,8 @@ export interface EventManagement {
|
|
|
1640
1664
|
channel_id: string;
|
|
1641
1665
|
event_status: number;
|
|
1642
1666
|
repeat_type: number;
|
|
1667
|
+
is_private: boolean;
|
|
1668
|
+
meet_room: GenerateMezonMeetResponse | undefined;
|
|
1643
1669
|
}
|
|
1644
1670
|
/** Permission record */
|
|
1645
1671
|
export interface Permission {
|
|
@@ -1684,6 +1710,8 @@ export interface PinMessage {
|
|
|
1684
1710
|
create_time: Date | undefined;
|
|
1685
1711
|
/** create time in ms */
|
|
1686
1712
|
create_time_seconds: number;
|
|
1713
|
+
/** attachment */
|
|
1714
|
+
attachment: string;
|
|
1687
1715
|
}
|
|
1688
1716
|
export interface PinMessagesList {
|
|
1689
1717
|
pin_messages_list: PinMessage[];
|
|
@@ -1897,6 +1925,8 @@ export interface CreateRoleRequest {
|
|
|
1897
1925
|
add_user_ids: string[];
|
|
1898
1926
|
/** The permissions to add. */
|
|
1899
1927
|
active_permission_ids: string[];
|
|
1928
|
+
/** order role */
|
|
1929
|
+
order_role: number;
|
|
1900
1930
|
}
|
|
1901
1931
|
/** Create a event within clan. */
|
|
1902
1932
|
export interface CreateEventRequest {
|
|
@@ -1915,6 +1945,8 @@ export interface CreateEventRequest {
|
|
|
1915
1945
|
repeat_type: number;
|
|
1916
1946
|
creator_id: string;
|
|
1917
1947
|
user_id: string;
|
|
1948
|
+
is_private: boolean | undefined;
|
|
1949
|
+
meet_room: GenerateMezonMeetResponse | undefined;
|
|
1918
1950
|
}
|
|
1919
1951
|
/** update a event within clan. */
|
|
1920
1952
|
export interface UpdateEventRequest {
|
|
@@ -2289,6 +2321,8 @@ export interface App {
|
|
|
2289
2321
|
role: number;
|
|
2290
2322
|
/** about */
|
|
2291
2323
|
about: string;
|
|
2324
|
+
/** app url */
|
|
2325
|
+
app_url: string;
|
|
2292
2326
|
}
|
|
2293
2327
|
/** Delete a app. */
|
|
2294
2328
|
export interface AppDeleteRequest {
|
|
@@ -2318,6 +2352,12 @@ export interface AddAppRequest {
|
|
|
2318
2352
|
role: number;
|
|
2319
2353
|
/** Is shadow. */
|
|
2320
2354
|
is_shadow: boolean;
|
|
2355
|
+
/** App url. */
|
|
2356
|
+
app_url: string;
|
|
2357
|
+
/** app logo */
|
|
2358
|
+
app_logo: string;
|
|
2359
|
+
/** about me */
|
|
2360
|
+
about_me: string;
|
|
2321
2361
|
}
|
|
2322
2362
|
/** List (and optionally filter) users. */
|
|
2323
2363
|
export interface ListAppsRequest {
|
|
@@ -2342,6 +2382,8 @@ export interface UpdateAppRequest {
|
|
|
2342
2382
|
token: string | undefined;
|
|
2343
2383
|
/** about the app. */
|
|
2344
2384
|
about: string;
|
|
2385
|
+
/** App url. */
|
|
2386
|
+
app_url: string;
|
|
2345
2387
|
}
|
|
2346
2388
|
/** The identifier for an app. */
|
|
2347
2389
|
export interface AppId {
|
|
@@ -2524,7 +2566,7 @@ export interface ChannelAppResponse {
|
|
|
2524
2566
|
/** app id */
|
|
2525
2567
|
app_id: string;
|
|
2526
2568
|
/** app url */
|
|
2527
|
-
|
|
2569
|
+
app_url: string;
|
|
2528
2570
|
}
|
|
2529
2571
|
export interface AllUserClans {
|
|
2530
2572
|
users: User[];
|
|
@@ -3156,24 +3198,32 @@ export interface GenerateMeetTokenRequest {
|
|
|
3156
3198
|
channel_id: string;
|
|
3157
3199
|
room_name: string;
|
|
3158
3200
|
}
|
|
3201
|
+
export interface GenerateMeetTokenExternalRequest {
|
|
3202
|
+
body: {
|
|
3203
|
+
[key: string]: any;
|
|
3204
|
+
} | undefined;
|
|
3205
|
+
token: string;
|
|
3206
|
+
display_name: string;
|
|
3207
|
+
is_guest: boolean;
|
|
3208
|
+
}
|
|
3159
3209
|
export interface GenerateMeetTokenResponse {
|
|
3160
3210
|
token: string;
|
|
3161
3211
|
}
|
|
3162
|
-
export interface
|
|
3163
|
-
|
|
3212
|
+
export interface GenerateMeetTokenExternalResponse {
|
|
3213
|
+
token: string;
|
|
3214
|
+
guest_user_id: string;
|
|
3215
|
+
guest_access_token: string;
|
|
3216
|
+
}
|
|
3217
|
+
export interface GenerateMezonMeetResponse {
|
|
3218
|
+
meet_id: string;
|
|
3164
3219
|
room_name: string;
|
|
3220
|
+
external_link: string;
|
|
3221
|
+
creator_id: string;
|
|
3222
|
+
event_id: string;
|
|
3165
3223
|
}
|
|
3166
|
-
export interface
|
|
3167
|
-
/** clan id */
|
|
3168
|
-
clan_id: string;
|
|
3169
|
-
/** channel id */
|
|
3224
|
+
export interface CreateRoomChannelApps {
|
|
3170
3225
|
channel_id: string;
|
|
3171
|
-
|
|
3172
|
-
user_id: string;
|
|
3173
|
-
/** display name */
|
|
3174
|
-
display_name: string;
|
|
3175
|
-
/** state (0: join, 1: leave) */
|
|
3176
|
-
state: number;
|
|
3226
|
+
room_name: string;
|
|
3177
3227
|
}
|
|
3178
3228
|
export interface MezonOauthClient {
|
|
3179
3229
|
access_token_strategy: string;
|
|
@@ -3242,6 +3292,21 @@ export interface GenerateHashChannelAppsRequest {
|
|
|
3242
3292
|
export interface GenerateHashChannelAppsResponse {
|
|
3243
3293
|
web_app_data: string;
|
|
3244
3294
|
}
|
|
3295
|
+
export interface GetMezonAccountRequest {
|
|
3296
|
+
secret: string;
|
|
3297
|
+
email: string;
|
|
3298
|
+
}
|
|
3299
|
+
export interface Message2InboxRequest {
|
|
3300
|
+
message_id: string;
|
|
3301
|
+
channel_id: string;
|
|
3302
|
+
clan_id: string;
|
|
3303
|
+
avatar: string;
|
|
3304
|
+
content: string;
|
|
3305
|
+
mentions: string;
|
|
3306
|
+
attachments: string;
|
|
3307
|
+
reactions: string;
|
|
3308
|
+
references: string;
|
|
3309
|
+
}
|
|
3245
3310
|
export declare const Account: {
|
|
3246
3311
|
encode(message: Account, writer?: _m0.Writer): _m0.Writer;
|
|
3247
3312
|
decode(input: _m0.Reader | Uint8Array, length?: number): Account;
|
|
@@ -4966,7 +5031,7 @@ export declare const NotificationInfo: {
|
|
|
4966
5031
|
sender_id?: string | undefined;
|
|
4967
5032
|
content?: string | undefined;
|
|
4968
5033
|
attachment?: string | undefined;
|
|
4969
|
-
|
|
5034
|
+
reference?: string | undefined;
|
|
4970
5035
|
mention?: string | undefined;
|
|
4971
5036
|
reaction?: string | undefined;
|
|
4972
5037
|
repliers?: string[] | undefined;
|
|
@@ -4977,7 +5042,7 @@ export declare const NotificationInfo: {
|
|
|
4977
5042
|
sender_id?: string | undefined;
|
|
4978
5043
|
content?: string | undefined;
|
|
4979
5044
|
attachment?: string | undefined;
|
|
4980
|
-
|
|
5045
|
+
reference?: string | undefined;
|
|
4981
5046
|
mention?: string | undefined;
|
|
4982
5047
|
reaction?: string | undefined;
|
|
4983
5048
|
repliers?: string[] | undefined;
|
|
@@ -4994,7 +5059,7 @@ export declare const NotificationInfo: {
|
|
|
4994
5059
|
metadata?: string[] | undefined;
|
|
4995
5060
|
about_me?: string[] | undefined;
|
|
4996
5061
|
clan_name?: string | undefined;
|
|
4997
|
-
|
|
5062
|
+
app_id?: string | undefined;
|
|
4998
5063
|
is_mute?: boolean | undefined;
|
|
4999
5064
|
age_restricted?: number | undefined;
|
|
5000
5065
|
topic?: string | undefined;
|
|
@@ -5030,7 +5095,7 @@ export declare const NotificationInfo: {
|
|
|
5030
5095
|
sender_id?: string | undefined;
|
|
5031
5096
|
content?: string | undefined;
|
|
5032
5097
|
attachment?: string | undefined;
|
|
5033
|
-
|
|
5098
|
+
reference?: string | undefined;
|
|
5034
5099
|
mention?: string | undefined;
|
|
5035
5100
|
reaction?: string | undefined;
|
|
5036
5101
|
repliers?: string[] | undefined;
|
|
@@ -5041,7 +5106,7 @@ export declare const NotificationInfo: {
|
|
|
5041
5106
|
sender_id?: string | undefined;
|
|
5042
5107
|
content?: string | undefined;
|
|
5043
5108
|
attachment?: string | undefined;
|
|
5044
|
-
|
|
5109
|
+
reference?: string | undefined;
|
|
5045
5110
|
mention?: string | undefined;
|
|
5046
5111
|
reaction?: string | undefined;
|
|
5047
5112
|
repliers?: string[] | undefined;
|
|
@@ -5058,7 +5123,7 @@ export declare const NotificationInfo: {
|
|
|
5058
5123
|
metadata?: string[] | undefined;
|
|
5059
5124
|
about_me?: string[] | undefined;
|
|
5060
5125
|
clan_name?: string | undefined;
|
|
5061
|
-
|
|
5126
|
+
app_id?: string | undefined;
|
|
5062
5127
|
is_mute?: boolean | undefined;
|
|
5063
5128
|
age_restricted?: number | undefined;
|
|
5064
5129
|
topic?: string | undefined;
|
|
@@ -5082,7 +5147,7 @@ export declare const NotificationInfo: {
|
|
|
5082
5147
|
sender_id?: string | undefined;
|
|
5083
5148
|
content?: string | undefined;
|
|
5084
5149
|
attachment?: string | undefined;
|
|
5085
|
-
|
|
5150
|
+
reference?: string | undefined;
|
|
5086
5151
|
mention?: string | undefined;
|
|
5087
5152
|
reaction?: string | undefined;
|
|
5088
5153
|
repliers?: string[] | undefined;
|
|
@@ -5092,7 +5157,7 @@ export declare const NotificationInfo: {
|
|
|
5092
5157
|
sender_id?: string | undefined;
|
|
5093
5158
|
content?: string | undefined;
|
|
5094
5159
|
attachment?: string | undefined;
|
|
5095
|
-
|
|
5160
|
+
reference?: string | undefined;
|
|
5096
5161
|
mention?: string | undefined;
|
|
5097
5162
|
reaction?: string | undefined;
|
|
5098
5163
|
repliers?: (string[] & string[] & { [K_2 in Exclude<keyof I["channel"]["last_sent_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
@@ -5103,7 +5168,7 @@ export declare const NotificationInfo: {
|
|
|
5103
5168
|
sender_id?: string | undefined;
|
|
5104
5169
|
content?: string | undefined;
|
|
5105
5170
|
attachment?: string | undefined;
|
|
5106
|
-
|
|
5171
|
+
reference?: string | undefined;
|
|
5107
5172
|
mention?: string | undefined;
|
|
5108
5173
|
reaction?: string | undefined;
|
|
5109
5174
|
repliers?: string[] | undefined;
|
|
@@ -5113,7 +5178,7 @@ export declare const NotificationInfo: {
|
|
|
5113
5178
|
sender_id?: string | undefined;
|
|
5114
5179
|
content?: string | undefined;
|
|
5115
5180
|
attachment?: string | undefined;
|
|
5116
|
-
|
|
5181
|
+
reference?: string | undefined;
|
|
5117
5182
|
mention?: string | undefined;
|
|
5118
5183
|
reaction?: string | undefined;
|
|
5119
5184
|
repliers?: (string[] & string[] & { [K_4 in Exclude<keyof I["channel"]["last_seen_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
@@ -5130,7 +5195,7 @@ export declare const NotificationInfo: {
|
|
|
5130
5195
|
metadata?: (string[] & string[] & { [K_8 in Exclude<keyof I["channel"]["metadata"], keyof string[]>]: never; }) | undefined;
|
|
5131
5196
|
about_me?: (string[] & string[] & { [K_9 in Exclude<keyof I["channel"]["about_me"], keyof string[]>]: never; }) | undefined;
|
|
5132
5197
|
clan_name?: string | undefined;
|
|
5133
|
-
|
|
5198
|
+
app_id?: string | undefined;
|
|
5134
5199
|
is_mute?: boolean | undefined;
|
|
5135
5200
|
age_restricted?: number | undefined;
|
|
5136
5201
|
topic?: string | undefined;
|
|
@@ -5167,7 +5232,7 @@ export declare const NotificationInfo: {
|
|
|
5167
5232
|
sender_id?: string | undefined;
|
|
5168
5233
|
content?: string | undefined;
|
|
5169
5234
|
attachment?: string | undefined;
|
|
5170
|
-
|
|
5235
|
+
reference?: string | undefined;
|
|
5171
5236
|
mention?: string | undefined;
|
|
5172
5237
|
reaction?: string | undefined;
|
|
5173
5238
|
repliers?: string[] | undefined;
|
|
@@ -5178,7 +5243,7 @@ export declare const NotificationInfo: {
|
|
|
5178
5243
|
sender_id?: string | undefined;
|
|
5179
5244
|
content?: string | undefined;
|
|
5180
5245
|
attachment?: string | undefined;
|
|
5181
|
-
|
|
5246
|
+
reference?: string | undefined;
|
|
5182
5247
|
mention?: string | undefined;
|
|
5183
5248
|
reaction?: string | undefined;
|
|
5184
5249
|
repliers?: string[] | undefined;
|
|
@@ -5195,7 +5260,7 @@ export declare const NotificationInfo: {
|
|
|
5195
5260
|
metadata?: string[] | undefined;
|
|
5196
5261
|
about_me?: string[] | undefined;
|
|
5197
5262
|
clan_name?: string | undefined;
|
|
5198
|
-
|
|
5263
|
+
app_id?: string | undefined;
|
|
5199
5264
|
is_mute?: boolean | undefined;
|
|
5200
5265
|
age_restricted?: number | undefined;
|
|
5201
5266
|
topic?: string | undefined;
|
|
@@ -5231,7 +5296,7 @@ export declare const NotificationInfo: {
|
|
|
5231
5296
|
sender_id?: string | undefined;
|
|
5232
5297
|
content?: string | undefined;
|
|
5233
5298
|
attachment?: string | undefined;
|
|
5234
|
-
|
|
5299
|
+
reference?: string | undefined;
|
|
5235
5300
|
mention?: string | undefined;
|
|
5236
5301
|
reaction?: string | undefined;
|
|
5237
5302
|
repliers?: string[] | undefined;
|
|
@@ -5242,7 +5307,7 @@ export declare const NotificationInfo: {
|
|
|
5242
5307
|
sender_id?: string | undefined;
|
|
5243
5308
|
content?: string | undefined;
|
|
5244
5309
|
attachment?: string | undefined;
|
|
5245
|
-
|
|
5310
|
+
reference?: string | undefined;
|
|
5246
5311
|
mention?: string | undefined;
|
|
5247
5312
|
reaction?: string | undefined;
|
|
5248
5313
|
repliers?: string[] | undefined;
|
|
@@ -5259,7 +5324,7 @@ export declare const NotificationInfo: {
|
|
|
5259
5324
|
metadata?: string[] | undefined;
|
|
5260
5325
|
about_me?: string[] | undefined;
|
|
5261
5326
|
clan_name?: string | undefined;
|
|
5262
|
-
|
|
5327
|
+
app_id?: string | undefined;
|
|
5263
5328
|
is_mute?: boolean | undefined;
|
|
5264
5329
|
age_restricted?: number | undefined;
|
|
5265
5330
|
topic?: string | undefined;
|
|
@@ -5283,7 +5348,7 @@ export declare const NotificationInfo: {
|
|
|
5283
5348
|
sender_id?: string | undefined;
|
|
5284
5349
|
content?: string | undefined;
|
|
5285
5350
|
attachment?: string | undefined;
|
|
5286
|
-
|
|
5351
|
+
reference?: string | undefined;
|
|
5287
5352
|
mention?: string | undefined;
|
|
5288
5353
|
reaction?: string | undefined;
|
|
5289
5354
|
repliers?: string[] | undefined;
|
|
@@ -5293,7 +5358,7 @@ export declare const NotificationInfo: {
|
|
|
5293
5358
|
sender_id?: string | undefined;
|
|
5294
5359
|
content?: string | undefined;
|
|
5295
5360
|
attachment?: string | undefined;
|
|
5296
|
-
|
|
5361
|
+
reference?: string | undefined;
|
|
5297
5362
|
mention?: string | undefined;
|
|
5298
5363
|
reaction?: string | undefined;
|
|
5299
5364
|
repliers?: (string[] & string[] & { [K_15 in Exclude<keyof I_1["channel"]["last_sent_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
@@ -5304,7 +5369,7 @@ export declare const NotificationInfo: {
|
|
|
5304
5369
|
sender_id?: string | undefined;
|
|
5305
5370
|
content?: string | undefined;
|
|
5306
5371
|
attachment?: string | undefined;
|
|
5307
|
-
|
|
5372
|
+
reference?: string | undefined;
|
|
5308
5373
|
mention?: string | undefined;
|
|
5309
5374
|
reaction?: string | undefined;
|
|
5310
5375
|
repliers?: string[] | undefined;
|
|
@@ -5314,7 +5379,7 @@ export declare const NotificationInfo: {
|
|
|
5314
5379
|
sender_id?: string | undefined;
|
|
5315
5380
|
content?: string | undefined;
|
|
5316
5381
|
attachment?: string | undefined;
|
|
5317
|
-
|
|
5382
|
+
reference?: string | undefined;
|
|
5318
5383
|
mention?: string | undefined;
|
|
5319
5384
|
reaction?: string | undefined;
|
|
5320
5385
|
repliers?: (string[] & string[] & { [K_17 in Exclude<keyof I_1["channel"]["last_seen_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
@@ -5331,7 +5396,7 @@ export declare const NotificationInfo: {
|
|
|
5331
5396
|
metadata?: (string[] & string[] & { [K_21 in Exclude<keyof I_1["channel"]["metadata"], keyof string[]>]: never; }) | undefined;
|
|
5332
5397
|
about_me?: (string[] & string[] & { [K_22 in Exclude<keyof I_1["channel"]["about_me"], keyof string[]>]: never; }) | undefined;
|
|
5333
5398
|
clan_name?: string | undefined;
|
|
5334
|
-
|
|
5399
|
+
app_id?: string | undefined;
|
|
5335
5400
|
is_mute?: boolean | undefined;
|
|
5336
5401
|
age_restricted?: number | undefined;
|
|
5337
5402
|
topic?: string | undefined;
|
|
@@ -5569,7 +5634,7 @@ export declare const ChannelMessageList: {
|
|
|
5569
5634
|
sender_id?: string | undefined;
|
|
5570
5635
|
content?: string | undefined;
|
|
5571
5636
|
attachment?: string | undefined;
|
|
5572
|
-
|
|
5637
|
+
reference?: string | undefined;
|
|
5573
5638
|
mention?: string | undefined;
|
|
5574
5639
|
reaction?: string | undefined;
|
|
5575
5640
|
repliers?: string[] | undefined;
|
|
@@ -5580,7 +5645,7 @@ export declare const ChannelMessageList: {
|
|
|
5580
5645
|
sender_id?: string | undefined;
|
|
5581
5646
|
content?: string | undefined;
|
|
5582
5647
|
attachment?: string | undefined;
|
|
5583
|
-
|
|
5648
|
+
reference?: string | undefined;
|
|
5584
5649
|
mention?: string | undefined;
|
|
5585
5650
|
reaction?: string | undefined;
|
|
5586
5651
|
repliers?: string[] | undefined;
|
|
@@ -5705,7 +5770,7 @@ export declare const ChannelMessageList: {
|
|
|
5705
5770
|
sender_id?: string | undefined;
|
|
5706
5771
|
content?: string | undefined;
|
|
5707
5772
|
attachment?: string | undefined;
|
|
5708
|
-
|
|
5773
|
+
reference?: string | undefined;
|
|
5709
5774
|
mention?: string | undefined;
|
|
5710
5775
|
reaction?: string | undefined;
|
|
5711
5776
|
repliers?: string[] | undefined;
|
|
@@ -5715,7 +5780,7 @@ export declare const ChannelMessageList: {
|
|
|
5715
5780
|
sender_id?: string | undefined;
|
|
5716
5781
|
content?: string | undefined;
|
|
5717
5782
|
attachment?: string | undefined;
|
|
5718
|
-
|
|
5783
|
+
reference?: string | undefined;
|
|
5719
5784
|
mention?: string | undefined;
|
|
5720
5785
|
reaction?: string | undefined;
|
|
5721
5786
|
repliers?: (string[] & string[] & { [K_2 in Exclude<keyof I["last_seen_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
@@ -5726,7 +5791,7 @@ export declare const ChannelMessageList: {
|
|
|
5726
5791
|
sender_id?: string | undefined;
|
|
5727
5792
|
content?: string | undefined;
|
|
5728
5793
|
attachment?: string | undefined;
|
|
5729
|
-
|
|
5794
|
+
reference?: string | undefined;
|
|
5730
5795
|
mention?: string | undefined;
|
|
5731
5796
|
reaction?: string | undefined;
|
|
5732
5797
|
repliers?: string[] | undefined;
|
|
@@ -5736,7 +5801,7 @@ export declare const ChannelMessageList: {
|
|
|
5736
5801
|
sender_id?: string | undefined;
|
|
5737
5802
|
content?: string | undefined;
|
|
5738
5803
|
attachment?: string | undefined;
|
|
5739
|
-
|
|
5804
|
+
reference?: string | undefined;
|
|
5740
5805
|
mention?: string | undefined;
|
|
5741
5806
|
reaction?: string | undefined;
|
|
5742
5807
|
repliers?: (string[] & string[] & { [K_4 in Exclude<keyof I["last_sent_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
@@ -5778,7 +5843,7 @@ export declare const ChannelMessageList: {
|
|
|
5778
5843
|
sender_id?: string | undefined;
|
|
5779
5844
|
content?: string | undefined;
|
|
5780
5845
|
attachment?: string | undefined;
|
|
5781
|
-
|
|
5846
|
+
reference?: string | undefined;
|
|
5782
5847
|
mention?: string | undefined;
|
|
5783
5848
|
reaction?: string | undefined;
|
|
5784
5849
|
repliers?: string[] | undefined;
|
|
@@ -5789,7 +5854,7 @@ export declare const ChannelMessageList: {
|
|
|
5789
5854
|
sender_id?: string | undefined;
|
|
5790
5855
|
content?: string | undefined;
|
|
5791
5856
|
attachment?: string | undefined;
|
|
5792
|
-
|
|
5857
|
+
reference?: string | undefined;
|
|
5793
5858
|
mention?: string | undefined;
|
|
5794
5859
|
reaction?: string | undefined;
|
|
5795
5860
|
repliers?: string[] | undefined;
|
|
@@ -5914,7 +5979,7 @@ export declare const ChannelMessageList: {
|
|
|
5914
5979
|
sender_id?: string | undefined;
|
|
5915
5980
|
content?: string | undefined;
|
|
5916
5981
|
attachment?: string | undefined;
|
|
5917
|
-
|
|
5982
|
+
reference?: string | undefined;
|
|
5918
5983
|
mention?: string | undefined;
|
|
5919
5984
|
reaction?: string | undefined;
|
|
5920
5985
|
repliers?: string[] | undefined;
|
|
@@ -5924,7 +5989,7 @@ export declare const ChannelMessageList: {
|
|
|
5924
5989
|
sender_id?: string | undefined;
|
|
5925
5990
|
content?: string | undefined;
|
|
5926
5991
|
attachment?: string | undefined;
|
|
5927
|
-
|
|
5992
|
+
reference?: string | undefined;
|
|
5928
5993
|
mention?: string | undefined;
|
|
5929
5994
|
reaction?: string | undefined;
|
|
5930
5995
|
repliers?: (string[] & string[] & { [K_9 in Exclude<keyof I_1["last_seen_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
@@ -5935,7 +6000,7 @@ export declare const ChannelMessageList: {
|
|
|
5935
6000
|
sender_id?: string | undefined;
|
|
5936
6001
|
content?: string | undefined;
|
|
5937
6002
|
attachment?: string | undefined;
|
|
5938
|
-
|
|
6003
|
+
reference?: string | undefined;
|
|
5939
6004
|
mention?: string | undefined;
|
|
5940
6005
|
reaction?: string | undefined;
|
|
5941
6006
|
repliers?: string[] | undefined;
|
|
@@ -5945,7 +6010,7 @@ export declare const ChannelMessageList: {
|
|
|
5945
6010
|
sender_id?: string | undefined;
|
|
5946
6011
|
content?: string | undefined;
|
|
5947
6012
|
attachment?: string | undefined;
|
|
5948
|
-
|
|
6013
|
+
reference?: string | undefined;
|
|
5949
6014
|
mention?: string | undefined;
|
|
5950
6015
|
reaction?: string | undefined;
|
|
5951
6016
|
repliers?: (string[] & string[] & { [K_11 in Exclude<keyof I_1["last_sent_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
@@ -8865,7 +8930,7 @@ export declare const Notification: {
|
|
|
8865
8930
|
sender_id?: string | undefined;
|
|
8866
8931
|
content?: string | undefined;
|
|
8867
8932
|
attachment?: string | undefined;
|
|
8868
|
-
|
|
8933
|
+
reference?: string | undefined;
|
|
8869
8934
|
mention?: string | undefined;
|
|
8870
8935
|
reaction?: string | undefined;
|
|
8871
8936
|
repliers?: string[] | undefined;
|
|
@@ -8876,7 +8941,7 @@ export declare const Notification: {
|
|
|
8876
8941
|
sender_id?: string | undefined;
|
|
8877
8942
|
content?: string | undefined;
|
|
8878
8943
|
attachment?: string | undefined;
|
|
8879
|
-
|
|
8944
|
+
reference?: string | undefined;
|
|
8880
8945
|
mention?: string | undefined;
|
|
8881
8946
|
reaction?: string | undefined;
|
|
8882
8947
|
repliers?: string[] | undefined;
|
|
@@ -8893,7 +8958,7 @@ export declare const Notification: {
|
|
|
8893
8958
|
metadata?: string[] | undefined;
|
|
8894
8959
|
about_me?: string[] | undefined;
|
|
8895
8960
|
clan_name?: string | undefined;
|
|
8896
|
-
|
|
8961
|
+
app_id?: string | undefined;
|
|
8897
8962
|
is_mute?: boolean | undefined;
|
|
8898
8963
|
age_restricted?: number | undefined;
|
|
8899
8964
|
topic?: string | undefined;
|
|
@@ -8932,7 +8997,7 @@ export declare const Notification: {
|
|
|
8932
8997
|
sender_id?: string | undefined;
|
|
8933
8998
|
content?: string | undefined;
|
|
8934
8999
|
attachment?: string | undefined;
|
|
8935
|
-
|
|
9000
|
+
reference?: string | undefined;
|
|
8936
9001
|
mention?: string | undefined;
|
|
8937
9002
|
reaction?: string | undefined;
|
|
8938
9003
|
repliers?: string[] | undefined;
|
|
@@ -8943,7 +9008,7 @@ export declare const Notification: {
|
|
|
8943
9008
|
sender_id?: string | undefined;
|
|
8944
9009
|
content?: string | undefined;
|
|
8945
9010
|
attachment?: string | undefined;
|
|
8946
|
-
|
|
9011
|
+
reference?: string | undefined;
|
|
8947
9012
|
mention?: string | undefined;
|
|
8948
9013
|
reaction?: string | undefined;
|
|
8949
9014
|
repliers?: string[] | undefined;
|
|
@@ -8960,7 +9025,7 @@ export declare const Notification: {
|
|
|
8960
9025
|
metadata?: string[] | undefined;
|
|
8961
9026
|
about_me?: string[] | undefined;
|
|
8962
9027
|
clan_name?: string | undefined;
|
|
8963
|
-
|
|
9028
|
+
app_id?: string | undefined;
|
|
8964
9029
|
is_mute?: boolean | undefined;
|
|
8965
9030
|
age_restricted?: number | undefined;
|
|
8966
9031
|
topic?: string | undefined;
|
|
@@ -8984,7 +9049,7 @@ export declare const Notification: {
|
|
|
8984
9049
|
sender_id?: string | undefined;
|
|
8985
9050
|
content?: string | undefined;
|
|
8986
9051
|
attachment?: string | undefined;
|
|
8987
|
-
|
|
9052
|
+
reference?: string | undefined;
|
|
8988
9053
|
mention?: string | undefined;
|
|
8989
9054
|
reaction?: string | undefined;
|
|
8990
9055
|
repliers?: string[] | undefined;
|
|
@@ -8994,7 +9059,7 @@ export declare const Notification: {
|
|
|
8994
9059
|
sender_id?: string | undefined;
|
|
8995
9060
|
content?: string | undefined;
|
|
8996
9061
|
attachment?: string | undefined;
|
|
8997
|
-
|
|
9062
|
+
reference?: string | undefined;
|
|
8998
9063
|
mention?: string | undefined;
|
|
8999
9064
|
reaction?: string | undefined;
|
|
9000
9065
|
repliers?: (string[] & string[] & { [K_2 in Exclude<keyof I["channel"]["last_sent_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
@@ -9005,7 +9070,7 @@ export declare const Notification: {
|
|
|
9005
9070
|
sender_id?: string | undefined;
|
|
9006
9071
|
content?: string | undefined;
|
|
9007
9072
|
attachment?: string | undefined;
|
|
9008
|
-
|
|
9073
|
+
reference?: string | undefined;
|
|
9009
9074
|
mention?: string | undefined;
|
|
9010
9075
|
reaction?: string | undefined;
|
|
9011
9076
|
repliers?: string[] | undefined;
|
|
@@ -9015,7 +9080,7 @@ export declare const Notification: {
|
|
|
9015
9080
|
sender_id?: string | undefined;
|
|
9016
9081
|
content?: string | undefined;
|
|
9017
9082
|
attachment?: string | undefined;
|
|
9018
|
-
|
|
9083
|
+
reference?: string | undefined;
|
|
9019
9084
|
mention?: string | undefined;
|
|
9020
9085
|
reaction?: string | undefined;
|
|
9021
9086
|
repliers?: (string[] & string[] & { [K_4 in Exclude<keyof I["channel"]["last_seen_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
@@ -9032,7 +9097,7 @@ export declare const Notification: {
|
|
|
9032
9097
|
metadata?: (string[] & string[] & { [K_8 in Exclude<keyof I["channel"]["metadata"], keyof string[]>]: never; }) | undefined;
|
|
9033
9098
|
about_me?: (string[] & string[] & { [K_9 in Exclude<keyof I["channel"]["about_me"], keyof string[]>]: never; }) | undefined;
|
|
9034
9099
|
clan_name?: string | undefined;
|
|
9035
|
-
|
|
9100
|
+
app_id?: string | undefined;
|
|
9036
9101
|
is_mute?: boolean | undefined;
|
|
9037
9102
|
age_restricted?: number | undefined;
|
|
9038
9103
|
topic?: string | undefined;
|
|
@@ -9072,7 +9137,7 @@ export declare const Notification: {
|
|
|
9072
9137
|
sender_id?: string | undefined;
|
|
9073
9138
|
content?: string | undefined;
|
|
9074
9139
|
attachment?: string | undefined;
|
|
9075
|
-
|
|
9140
|
+
reference?: string | undefined;
|
|
9076
9141
|
mention?: string | undefined;
|
|
9077
9142
|
reaction?: string | undefined;
|
|
9078
9143
|
repliers?: string[] | undefined;
|
|
@@ -9083,7 +9148,7 @@ export declare const Notification: {
|
|
|
9083
9148
|
sender_id?: string | undefined;
|
|
9084
9149
|
content?: string | undefined;
|
|
9085
9150
|
attachment?: string | undefined;
|
|
9086
|
-
|
|
9151
|
+
reference?: string | undefined;
|
|
9087
9152
|
mention?: string | undefined;
|
|
9088
9153
|
reaction?: string | undefined;
|
|
9089
9154
|
repliers?: string[] | undefined;
|
|
@@ -9100,7 +9165,7 @@ export declare const Notification: {
|
|
|
9100
9165
|
metadata?: string[] | undefined;
|
|
9101
9166
|
about_me?: string[] | undefined;
|
|
9102
9167
|
clan_name?: string | undefined;
|
|
9103
|
-
|
|
9168
|
+
app_id?: string | undefined;
|
|
9104
9169
|
is_mute?: boolean | undefined;
|
|
9105
9170
|
age_restricted?: number | undefined;
|
|
9106
9171
|
topic?: string | undefined;
|
|
@@ -9139,7 +9204,7 @@ export declare const Notification: {
|
|
|
9139
9204
|
sender_id?: string | undefined;
|
|
9140
9205
|
content?: string | undefined;
|
|
9141
9206
|
attachment?: string | undefined;
|
|
9142
|
-
|
|
9207
|
+
reference?: string | undefined;
|
|
9143
9208
|
mention?: string | undefined;
|
|
9144
9209
|
reaction?: string | undefined;
|
|
9145
9210
|
repliers?: string[] | undefined;
|
|
@@ -9150,7 +9215,7 @@ export declare const Notification: {
|
|
|
9150
9215
|
sender_id?: string | undefined;
|
|
9151
9216
|
content?: string | undefined;
|
|
9152
9217
|
attachment?: string | undefined;
|
|
9153
|
-
|
|
9218
|
+
reference?: string | undefined;
|
|
9154
9219
|
mention?: string | undefined;
|
|
9155
9220
|
reaction?: string | undefined;
|
|
9156
9221
|
repliers?: string[] | undefined;
|
|
@@ -9167,7 +9232,7 @@ export declare const Notification: {
|
|
|
9167
9232
|
metadata?: string[] | undefined;
|
|
9168
9233
|
about_me?: string[] | undefined;
|
|
9169
9234
|
clan_name?: string | undefined;
|
|
9170
|
-
|
|
9235
|
+
app_id?: string | undefined;
|
|
9171
9236
|
is_mute?: boolean | undefined;
|
|
9172
9237
|
age_restricted?: number | undefined;
|
|
9173
9238
|
topic?: string | undefined;
|
|
@@ -9191,7 +9256,7 @@ export declare const Notification: {
|
|
|
9191
9256
|
sender_id?: string | undefined;
|
|
9192
9257
|
content?: string | undefined;
|
|
9193
9258
|
attachment?: string | undefined;
|
|
9194
|
-
|
|
9259
|
+
reference?: string | undefined;
|
|
9195
9260
|
mention?: string | undefined;
|
|
9196
9261
|
reaction?: string | undefined;
|
|
9197
9262
|
repliers?: string[] | undefined;
|
|
@@ -9201,7 +9266,7 @@ export declare const Notification: {
|
|
|
9201
9266
|
sender_id?: string | undefined;
|
|
9202
9267
|
content?: string | undefined;
|
|
9203
9268
|
attachment?: string | undefined;
|
|
9204
|
-
|
|
9269
|
+
reference?: string | undefined;
|
|
9205
9270
|
mention?: string | undefined;
|
|
9206
9271
|
reaction?: string | undefined;
|
|
9207
9272
|
repliers?: (string[] & string[] & { [K_15 in Exclude<keyof I_1["channel"]["last_sent_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
@@ -9212,7 +9277,7 @@ export declare const Notification: {
|
|
|
9212
9277
|
sender_id?: string | undefined;
|
|
9213
9278
|
content?: string | undefined;
|
|
9214
9279
|
attachment?: string | undefined;
|
|
9215
|
-
|
|
9280
|
+
reference?: string | undefined;
|
|
9216
9281
|
mention?: string | undefined;
|
|
9217
9282
|
reaction?: string | undefined;
|
|
9218
9283
|
repliers?: string[] | undefined;
|
|
@@ -9222,7 +9287,7 @@ export declare const Notification: {
|
|
|
9222
9287
|
sender_id?: string | undefined;
|
|
9223
9288
|
content?: string | undefined;
|
|
9224
9289
|
attachment?: string | undefined;
|
|
9225
|
-
|
|
9290
|
+
reference?: string | undefined;
|
|
9226
9291
|
mention?: string | undefined;
|
|
9227
9292
|
reaction?: string | undefined;
|
|
9228
9293
|
repliers?: (string[] & string[] & { [K_17 in Exclude<keyof I_1["channel"]["last_seen_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
@@ -9239,7 +9304,7 @@ export declare const Notification: {
|
|
|
9239
9304
|
metadata?: (string[] & string[] & { [K_21 in Exclude<keyof I_1["channel"]["metadata"], keyof string[]>]: never; }) | undefined;
|
|
9240
9305
|
about_me?: (string[] & string[] & { [K_22 in Exclude<keyof I_1["channel"]["about_me"], keyof string[]>]: never; }) | undefined;
|
|
9241
9306
|
clan_name?: string | undefined;
|
|
9242
|
-
|
|
9307
|
+
app_id?: string | undefined;
|
|
9243
9308
|
is_mute?: boolean | undefined;
|
|
9244
9309
|
age_restricted?: number | undefined;
|
|
9245
9310
|
topic?: string | undefined;
|
|
@@ -9366,7 +9431,7 @@ export declare const NotificationList: {
|
|
|
9366
9431
|
sender_id?: string | undefined;
|
|
9367
9432
|
content?: string | undefined;
|
|
9368
9433
|
attachment?: string | undefined;
|
|
9369
|
-
|
|
9434
|
+
reference?: string | undefined;
|
|
9370
9435
|
mention?: string | undefined;
|
|
9371
9436
|
reaction?: string | undefined;
|
|
9372
9437
|
repliers?: string[] | undefined;
|
|
@@ -9377,7 +9442,7 @@ export declare const NotificationList: {
|
|
|
9377
9442
|
sender_id?: string | undefined;
|
|
9378
9443
|
content?: string | undefined;
|
|
9379
9444
|
attachment?: string | undefined;
|
|
9380
|
-
|
|
9445
|
+
reference?: string | undefined;
|
|
9381
9446
|
mention?: string | undefined;
|
|
9382
9447
|
reaction?: string | undefined;
|
|
9383
9448
|
repliers?: string[] | undefined;
|
|
@@ -9394,7 +9459,7 @@ export declare const NotificationList: {
|
|
|
9394
9459
|
metadata?: string[] | undefined;
|
|
9395
9460
|
about_me?: string[] | undefined;
|
|
9396
9461
|
clan_name?: string | undefined;
|
|
9397
|
-
|
|
9462
|
+
app_id?: string | undefined;
|
|
9398
9463
|
is_mute?: boolean | undefined;
|
|
9399
9464
|
age_restricted?: number | undefined;
|
|
9400
9465
|
topic?: string | undefined;
|
|
@@ -9436,7 +9501,7 @@ export declare const NotificationList: {
|
|
|
9436
9501
|
sender_id?: string | undefined;
|
|
9437
9502
|
content?: string | undefined;
|
|
9438
9503
|
attachment?: string | undefined;
|
|
9439
|
-
|
|
9504
|
+
reference?: string | undefined;
|
|
9440
9505
|
mention?: string | undefined;
|
|
9441
9506
|
reaction?: string | undefined;
|
|
9442
9507
|
repliers?: string[] | undefined;
|
|
@@ -9447,7 +9512,7 @@ export declare const NotificationList: {
|
|
|
9447
9512
|
sender_id?: string | undefined;
|
|
9448
9513
|
content?: string | undefined;
|
|
9449
9514
|
attachment?: string | undefined;
|
|
9450
|
-
|
|
9515
|
+
reference?: string | undefined;
|
|
9451
9516
|
mention?: string | undefined;
|
|
9452
9517
|
reaction?: string | undefined;
|
|
9453
9518
|
repliers?: string[] | undefined;
|
|
@@ -9464,7 +9529,7 @@ export declare const NotificationList: {
|
|
|
9464
9529
|
metadata?: string[] | undefined;
|
|
9465
9530
|
about_me?: string[] | undefined;
|
|
9466
9531
|
clan_name?: string | undefined;
|
|
9467
|
-
|
|
9532
|
+
app_id?: string | undefined;
|
|
9468
9533
|
is_mute?: boolean | undefined;
|
|
9469
9534
|
age_restricted?: number | undefined;
|
|
9470
9535
|
topic?: string | undefined;
|
|
@@ -9503,7 +9568,7 @@ export declare const NotificationList: {
|
|
|
9503
9568
|
sender_id?: string | undefined;
|
|
9504
9569
|
content?: string | undefined;
|
|
9505
9570
|
attachment?: string | undefined;
|
|
9506
|
-
|
|
9571
|
+
reference?: string | undefined;
|
|
9507
9572
|
mention?: string | undefined;
|
|
9508
9573
|
reaction?: string | undefined;
|
|
9509
9574
|
repliers?: string[] | undefined;
|
|
@@ -9514,7 +9579,7 @@ export declare const NotificationList: {
|
|
|
9514
9579
|
sender_id?: string | undefined;
|
|
9515
9580
|
content?: string | undefined;
|
|
9516
9581
|
attachment?: string | undefined;
|
|
9517
|
-
|
|
9582
|
+
reference?: string | undefined;
|
|
9518
9583
|
mention?: string | undefined;
|
|
9519
9584
|
reaction?: string | undefined;
|
|
9520
9585
|
repliers?: string[] | undefined;
|
|
@@ -9531,7 +9596,7 @@ export declare const NotificationList: {
|
|
|
9531
9596
|
metadata?: string[] | undefined;
|
|
9532
9597
|
about_me?: string[] | undefined;
|
|
9533
9598
|
clan_name?: string | undefined;
|
|
9534
|
-
|
|
9599
|
+
app_id?: string | undefined;
|
|
9535
9600
|
is_mute?: boolean | undefined;
|
|
9536
9601
|
age_restricted?: number | undefined;
|
|
9537
9602
|
topic?: string | undefined;
|
|
@@ -9570,7 +9635,7 @@ export declare const NotificationList: {
|
|
|
9570
9635
|
sender_id?: string | undefined;
|
|
9571
9636
|
content?: string | undefined;
|
|
9572
9637
|
attachment?: string | undefined;
|
|
9573
|
-
|
|
9638
|
+
reference?: string | undefined;
|
|
9574
9639
|
mention?: string | undefined;
|
|
9575
9640
|
reaction?: string | undefined;
|
|
9576
9641
|
repliers?: string[] | undefined;
|
|
@@ -9581,7 +9646,7 @@ export declare const NotificationList: {
|
|
|
9581
9646
|
sender_id?: string | undefined;
|
|
9582
9647
|
content?: string | undefined;
|
|
9583
9648
|
attachment?: string | undefined;
|
|
9584
|
-
|
|
9649
|
+
reference?: string | undefined;
|
|
9585
9650
|
mention?: string | undefined;
|
|
9586
9651
|
reaction?: string | undefined;
|
|
9587
9652
|
repliers?: string[] | undefined;
|
|
@@ -9598,7 +9663,7 @@ export declare const NotificationList: {
|
|
|
9598
9663
|
metadata?: string[] | undefined;
|
|
9599
9664
|
about_me?: string[] | undefined;
|
|
9600
9665
|
clan_name?: string | undefined;
|
|
9601
|
-
|
|
9666
|
+
app_id?: string | undefined;
|
|
9602
9667
|
is_mute?: boolean | undefined;
|
|
9603
9668
|
age_restricted?: number | undefined;
|
|
9604
9669
|
topic?: string | undefined;
|
|
@@ -9622,7 +9687,7 @@ export declare const NotificationList: {
|
|
|
9622
9687
|
sender_id?: string | undefined;
|
|
9623
9688
|
content?: string | undefined;
|
|
9624
9689
|
attachment?: string | undefined;
|
|
9625
|
-
|
|
9690
|
+
reference?: string | undefined;
|
|
9626
9691
|
mention?: string | undefined;
|
|
9627
9692
|
reaction?: string | undefined;
|
|
9628
9693
|
repliers?: string[] | undefined;
|
|
@@ -9632,7 +9697,7 @@ export declare const NotificationList: {
|
|
|
9632
9697
|
sender_id?: string | undefined;
|
|
9633
9698
|
content?: string | undefined;
|
|
9634
9699
|
attachment?: string | undefined;
|
|
9635
|
-
|
|
9700
|
+
reference?: string | undefined;
|
|
9636
9701
|
mention?: string | undefined;
|
|
9637
9702
|
reaction?: string | undefined;
|
|
9638
9703
|
repliers?: (string[] & string[] & { [K_2 in Exclude<keyof I["notifications"][number]["channel"]["last_sent_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
@@ -9643,7 +9708,7 @@ export declare const NotificationList: {
|
|
|
9643
9708
|
sender_id?: string | undefined;
|
|
9644
9709
|
content?: string | undefined;
|
|
9645
9710
|
attachment?: string | undefined;
|
|
9646
|
-
|
|
9711
|
+
reference?: string | undefined;
|
|
9647
9712
|
mention?: string | undefined;
|
|
9648
9713
|
reaction?: string | undefined;
|
|
9649
9714
|
repliers?: string[] | undefined;
|
|
@@ -9653,7 +9718,7 @@ export declare const NotificationList: {
|
|
|
9653
9718
|
sender_id?: string | undefined;
|
|
9654
9719
|
content?: string | undefined;
|
|
9655
9720
|
attachment?: string | undefined;
|
|
9656
|
-
|
|
9721
|
+
reference?: string | undefined;
|
|
9657
9722
|
mention?: string | undefined;
|
|
9658
9723
|
reaction?: string | undefined;
|
|
9659
9724
|
repliers?: (string[] & string[] & { [K_4 in Exclude<keyof I["notifications"][number]["channel"]["last_seen_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
@@ -9670,7 +9735,7 @@ export declare const NotificationList: {
|
|
|
9670
9735
|
metadata?: (string[] & string[] & { [K_8 in Exclude<keyof I["notifications"][number]["channel"]["metadata"], keyof string[]>]: never; }) | undefined;
|
|
9671
9736
|
about_me?: (string[] & string[] & { [K_9 in Exclude<keyof I["notifications"][number]["channel"]["about_me"], keyof string[]>]: never; }) | undefined;
|
|
9672
9737
|
clan_name?: string | undefined;
|
|
9673
|
-
|
|
9738
|
+
app_id?: string | undefined;
|
|
9674
9739
|
is_mute?: boolean | undefined;
|
|
9675
9740
|
age_restricted?: number | undefined;
|
|
9676
9741
|
topic?: string | undefined;
|
|
@@ -9709,7 +9774,7 @@ export declare const NotificationList: {
|
|
|
9709
9774
|
sender_id?: string | undefined;
|
|
9710
9775
|
content?: string | undefined;
|
|
9711
9776
|
attachment?: string | undefined;
|
|
9712
|
-
|
|
9777
|
+
reference?: string | undefined;
|
|
9713
9778
|
mention?: string | undefined;
|
|
9714
9779
|
reaction?: string | undefined;
|
|
9715
9780
|
repliers?: string[] | undefined;
|
|
@@ -9720,7 +9785,7 @@ export declare const NotificationList: {
|
|
|
9720
9785
|
sender_id?: string | undefined;
|
|
9721
9786
|
content?: string | undefined;
|
|
9722
9787
|
attachment?: string | undefined;
|
|
9723
|
-
|
|
9788
|
+
reference?: string | undefined;
|
|
9724
9789
|
mention?: string | undefined;
|
|
9725
9790
|
reaction?: string | undefined;
|
|
9726
9791
|
repliers?: string[] | undefined;
|
|
@@ -9737,7 +9802,7 @@ export declare const NotificationList: {
|
|
|
9737
9802
|
metadata?: string[] | undefined;
|
|
9738
9803
|
about_me?: string[] | undefined;
|
|
9739
9804
|
clan_name?: string | undefined;
|
|
9740
|
-
|
|
9805
|
+
app_id?: string | undefined;
|
|
9741
9806
|
is_mute?: boolean | undefined;
|
|
9742
9807
|
age_restricted?: number | undefined;
|
|
9743
9808
|
topic?: string | undefined;
|
|
@@ -9780,7 +9845,7 @@ export declare const NotificationList: {
|
|
|
9780
9845
|
sender_id?: string | undefined;
|
|
9781
9846
|
content?: string | undefined;
|
|
9782
9847
|
attachment?: string | undefined;
|
|
9783
|
-
|
|
9848
|
+
reference?: string | undefined;
|
|
9784
9849
|
mention?: string | undefined;
|
|
9785
9850
|
reaction?: string | undefined;
|
|
9786
9851
|
repliers?: string[] | undefined;
|
|
@@ -9791,7 +9856,7 @@ export declare const NotificationList: {
|
|
|
9791
9856
|
sender_id?: string | undefined;
|
|
9792
9857
|
content?: string | undefined;
|
|
9793
9858
|
attachment?: string | undefined;
|
|
9794
|
-
|
|
9859
|
+
reference?: string | undefined;
|
|
9795
9860
|
mention?: string | undefined;
|
|
9796
9861
|
reaction?: string | undefined;
|
|
9797
9862
|
repliers?: string[] | undefined;
|
|
@@ -9808,7 +9873,7 @@ export declare const NotificationList: {
|
|
|
9808
9873
|
metadata?: string[] | undefined;
|
|
9809
9874
|
about_me?: string[] | undefined;
|
|
9810
9875
|
clan_name?: string | undefined;
|
|
9811
|
-
|
|
9876
|
+
app_id?: string | undefined;
|
|
9812
9877
|
is_mute?: boolean | undefined;
|
|
9813
9878
|
age_restricted?: number | undefined;
|
|
9814
9879
|
topic?: string | undefined;
|
|
@@ -9850,7 +9915,7 @@ export declare const NotificationList: {
|
|
|
9850
9915
|
sender_id?: string | undefined;
|
|
9851
9916
|
content?: string | undefined;
|
|
9852
9917
|
attachment?: string | undefined;
|
|
9853
|
-
|
|
9918
|
+
reference?: string | undefined;
|
|
9854
9919
|
mention?: string | undefined;
|
|
9855
9920
|
reaction?: string | undefined;
|
|
9856
9921
|
repliers?: string[] | undefined;
|
|
@@ -9861,7 +9926,7 @@ export declare const NotificationList: {
|
|
|
9861
9926
|
sender_id?: string | undefined;
|
|
9862
9927
|
content?: string | undefined;
|
|
9863
9928
|
attachment?: string | undefined;
|
|
9864
|
-
|
|
9929
|
+
reference?: string | undefined;
|
|
9865
9930
|
mention?: string | undefined;
|
|
9866
9931
|
reaction?: string | undefined;
|
|
9867
9932
|
repliers?: string[] | undefined;
|
|
@@ -9878,7 +9943,7 @@ export declare const NotificationList: {
|
|
|
9878
9943
|
metadata?: string[] | undefined;
|
|
9879
9944
|
about_me?: string[] | undefined;
|
|
9880
9945
|
clan_name?: string | undefined;
|
|
9881
|
-
|
|
9946
|
+
app_id?: string | undefined;
|
|
9882
9947
|
is_mute?: boolean | undefined;
|
|
9883
9948
|
age_restricted?: number | undefined;
|
|
9884
9949
|
topic?: string | undefined;
|
|
@@ -9917,7 +9982,7 @@ export declare const NotificationList: {
|
|
|
9917
9982
|
sender_id?: string | undefined;
|
|
9918
9983
|
content?: string | undefined;
|
|
9919
9984
|
attachment?: string | undefined;
|
|
9920
|
-
|
|
9985
|
+
reference?: string | undefined;
|
|
9921
9986
|
mention?: string | undefined;
|
|
9922
9987
|
reaction?: string | undefined;
|
|
9923
9988
|
repliers?: string[] | undefined;
|
|
@@ -9928,7 +9993,7 @@ export declare const NotificationList: {
|
|
|
9928
9993
|
sender_id?: string | undefined;
|
|
9929
9994
|
content?: string | undefined;
|
|
9930
9995
|
attachment?: string | undefined;
|
|
9931
|
-
|
|
9996
|
+
reference?: string | undefined;
|
|
9932
9997
|
mention?: string | undefined;
|
|
9933
9998
|
reaction?: string | undefined;
|
|
9934
9999
|
repliers?: string[] | undefined;
|
|
@@ -9945,7 +10010,7 @@ export declare const NotificationList: {
|
|
|
9945
10010
|
metadata?: string[] | undefined;
|
|
9946
10011
|
about_me?: string[] | undefined;
|
|
9947
10012
|
clan_name?: string | undefined;
|
|
9948
|
-
|
|
10013
|
+
app_id?: string | undefined;
|
|
9949
10014
|
is_mute?: boolean | undefined;
|
|
9950
10015
|
age_restricted?: number | undefined;
|
|
9951
10016
|
topic?: string | undefined;
|
|
@@ -9984,7 +10049,7 @@ export declare const NotificationList: {
|
|
|
9984
10049
|
sender_id?: string | undefined;
|
|
9985
10050
|
content?: string | undefined;
|
|
9986
10051
|
attachment?: string | undefined;
|
|
9987
|
-
|
|
10052
|
+
reference?: string | undefined;
|
|
9988
10053
|
mention?: string | undefined;
|
|
9989
10054
|
reaction?: string | undefined;
|
|
9990
10055
|
repliers?: string[] | undefined;
|
|
@@ -9995,7 +10060,7 @@ export declare const NotificationList: {
|
|
|
9995
10060
|
sender_id?: string | undefined;
|
|
9996
10061
|
content?: string | undefined;
|
|
9997
10062
|
attachment?: string | undefined;
|
|
9998
|
-
|
|
10063
|
+
reference?: string | undefined;
|
|
9999
10064
|
mention?: string | undefined;
|
|
10000
10065
|
reaction?: string | undefined;
|
|
10001
10066
|
repliers?: string[] | undefined;
|
|
@@ -10012,7 +10077,7 @@ export declare const NotificationList: {
|
|
|
10012
10077
|
metadata?: string[] | undefined;
|
|
10013
10078
|
about_me?: string[] | undefined;
|
|
10014
10079
|
clan_name?: string | undefined;
|
|
10015
|
-
|
|
10080
|
+
app_id?: string | undefined;
|
|
10016
10081
|
is_mute?: boolean | undefined;
|
|
10017
10082
|
age_restricted?: number | undefined;
|
|
10018
10083
|
topic?: string | undefined;
|
|
@@ -10036,7 +10101,7 @@ export declare const NotificationList: {
|
|
|
10036
10101
|
sender_id?: string | undefined;
|
|
10037
10102
|
content?: string | undefined;
|
|
10038
10103
|
attachment?: string | undefined;
|
|
10039
|
-
|
|
10104
|
+
reference?: string | undefined;
|
|
10040
10105
|
mention?: string | undefined;
|
|
10041
10106
|
reaction?: string | undefined;
|
|
10042
10107
|
repliers?: string[] | undefined;
|
|
@@ -10046,7 +10111,7 @@ export declare const NotificationList: {
|
|
|
10046
10111
|
sender_id?: string | undefined;
|
|
10047
10112
|
content?: string | undefined;
|
|
10048
10113
|
attachment?: string | undefined;
|
|
10049
|
-
|
|
10114
|
+
reference?: string | undefined;
|
|
10050
10115
|
mention?: string | undefined;
|
|
10051
10116
|
reaction?: string | undefined;
|
|
10052
10117
|
repliers?: (string[] & string[] & { [K_17 in Exclude<keyof I_1["notifications"][number]["channel"]["last_sent_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
@@ -10057,7 +10122,7 @@ export declare const NotificationList: {
|
|
|
10057
10122
|
sender_id?: string | undefined;
|
|
10058
10123
|
content?: string | undefined;
|
|
10059
10124
|
attachment?: string | undefined;
|
|
10060
|
-
|
|
10125
|
+
reference?: string | undefined;
|
|
10061
10126
|
mention?: string | undefined;
|
|
10062
10127
|
reaction?: string | undefined;
|
|
10063
10128
|
repliers?: string[] | undefined;
|
|
@@ -10067,7 +10132,7 @@ export declare const NotificationList: {
|
|
|
10067
10132
|
sender_id?: string | undefined;
|
|
10068
10133
|
content?: string | undefined;
|
|
10069
10134
|
attachment?: string | undefined;
|
|
10070
|
-
|
|
10135
|
+
reference?: string | undefined;
|
|
10071
10136
|
mention?: string | undefined;
|
|
10072
10137
|
reaction?: string | undefined;
|
|
10073
10138
|
repliers?: (string[] & string[] & { [K_19 in Exclude<keyof I_1["notifications"][number]["channel"]["last_seen_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
@@ -10084,7 +10149,7 @@ export declare const NotificationList: {
|
|
|
10084
10149
|
metadata?: (string[] & string[] & { [K_23 in Exclude<keyof I_1["notifications"][number]["channel"]["metadata"], keyof string[]>]: never; }) | undefined;
|
|
10085
10150
|
about_me?: (string[] & string[] & { [K_24 in Exclude<keyof I_1["notifications"][number]["channel"]["about_me"], keyof string[]>]: never; }) | undefined;
|
|
10086
10151
|
clan_name?: string | undefined;
|
|
10087
|
-
|
|
10152
|
+
app_id?: string | undefined;
|
|
10088
10153
|
is_mute?: boolean | undefined;
|
|
10089
10154
|
age_restricted?: number | undefined;
|
|
10090
10155
|
topic?: string | undefined;
|
|
@@ -10123,7 +10188,7 @@ export declare const NotificationList: {
|
|
|
10123
10188
|
sender_id?: string | undefined;
|
|
10124
10189
|
content?: string | undefined;
|
|
10125
10190
|
attachment?: string | undefined;
|
|
10126
|
-
|
|
10191
|
+
reference?: string | undefined;
|
|
10127
10192
|
mention?: string | undefined;
|
|
10128
10193
|
reaction?: string | undefined;
|
|
10129
10194
|
repliers?: string[] | undefined;
|
|
@@ -10134,7 +10199,7 @@ export declare const NotificationList: {
|
|
|
10134
10199
|
sender_id?: string | undefined;
|
|
10135
10200
|
content?: string | undefined;
|
|
10136
10201
|
attachment?: string | undefined;
|
|
10137
|
-
|
|
10202
|
+
reference?: string | undefined;
|
|
10138
10203
|
mention?: string | undefined;
|
|
10139
10204
|
reaction?: string | undefined;
|
|
10140
10205
|
repliers?: string[] | undefined;
|
|
@@ -10151,7 +10216,7 @@ export declare const NotificationList: {
|
|
|
10151
10216
|
metadata?: string[] | undefined;
|
|
10152
10217
|
about_me?: string[] | undefined;
|
|
10153
10218
|
clan_name?: string | undefined;
|
|
10154
|
-
|
|
10219
|
+
app_id?: string | undefined;
|
|
10155
10220
|
is_mute?: boolean | undefined;
|
|
10156
10221
|
age_restricted?: number | undefined;
|
|
10157
10222
|
topic?: string | undefined;
|
|
@@ -11126,6 +11191,7 @@ export declare const ClanDesc: {
|
|
|
11126
11191
|
is_onboarding?: boolean | undefined;
|
|
11127
11192
|
welcome_channel_id?: string | undefined;
|
|
11128
11193
|
onboarding_banner?: string | undefined;
|
|
11194
|
+
clan_order?: number | undefined;
|
|
11129
11195
|
} & {
|
|
11130
11196
|
creator_id?: string | undefined;
|
|
11131
11197
|
clan_name?: string | undefined;
|
|
@@ -11137,6 +11203,7 @@ export declare const ClanDesc: {
|
|
|
11137
11203
|
is_onboarding?: boolean | undefined;
|
|
11138
11204
|
welcome_channel_id?: string | undefined;
|
|
11139
11205
|
onboarding_banner?: string | undefined;
|
|
11206
|
+
clan_order?: number | undefined;
|
|
11140
11207
|
} & { [K in Exclude<keyof I, keyof ClanDesc>]: never; }>(base?: I | undefined): ClanDesc;
|
|
11141
11208
|
fromPartial<I_1 extends {
|
|
11142
11209
|
creator_id?: string | undefined;
|
|
@@ -11149,6 +11216,7 @@ export declare const ClanDesc: {
|
|
|
11149
11216
|
is_onboarding?: boolean | undefined;
|
|
11150
11217
|
welcome_channel_id?: string | undefined;
|
|
11151
11218
|
onboarding_banner?: string | undefined;
|
|
11219
|
+
clan_order?: number | undefined;
|
|
11152
11220
|
} & {
|
|
11153
11221
|
creator_id?: string | undefined;
|
|
11154
11222
|
clan_name?: string | undefined;
|
|
@@ -11160,6 +11228,7 @@ export declare const ClanDesc: {
|
|
|
11160
11228
|
is_onboarding?: boolean | undefined;
|
|
11161
11229
|
welcome_channel_id?: string | undefined;
|
|
11162
11230
|
onboarding_banner?: string | undefined;
|
|
11231
|
+
clan_order?: number | undefined;
|
|
11163
11232
|
} & { [K_1 in Exclude<keyof I_1, keyof ClanDesc>]: never; }>(object: I_1): ClanDesc;
|
|
11164
11233
|
};
|
|
11165
11234
|
export declare const CreateClanDescRequest: {
|
|
@@ -11287,6 +11356,7 @@ export declare const ClanDescList: {
|
|
|
11287
11356
|
is_onboarding?: boolean | undefined;
|
|
11288
11357
|
welcome_channel_id?: string | undefined;
|
|
11289
11358
|
onboarding_banner?: string | undefined;
|
|
11359
|
+
clan_order?: number | undefined;
|
|
11290
11360
|
}[] | undefined;
|
|
11291
11361
|
} & {
|
|
11292
11362
|
clandesc?: ({
|
|
@@ -11300,6 +11370,7 @@ export declare const ClanDescList: {
|
|
|
11300
11370
|
is_onboarding?: boolean | undefined;
|
|
11301
11371
|
welcome_channel_id?: string | undefined;
|
|
11302
11372
|
onboarding_banner?: string | undefined;
|
|
11373
|
+
clan_order?: number | undefined;
|
|
11303
11374
|
}[] & ({
|
|
11304
11375
|
creator_id?: string | undefined;
|
|
11305
11376
|
clan_name?: string | undefined;
|
|
@@ -11311,6 +11382,7 @@ export declare const ClanDescList: {
|
|
|
11311
11382
|
is_onboarding?: boolean | undefined;
|
|
11312
11383
|
welcome_channel_id?: string | undefined;
|
|
11313
11384
|
onboarding_banner?: string | undefined;
|
|
11385
|
+
clan_order?: number | undefined;
|
|
11314
11386
|
} & {
|
|
11315
11387
|
creator_id?: string | undefined;
|
|
11316
11388
|
clan_name?: string | undefined;
|
|
@@ -11322,6 +11394,7 @@ export declare const ClanDescList: {
|
|
|
11322
11394
|
is_onboarding?: boolean | undefined;
|
|
11323
11395
|
welcome_channel_id?: string | undefined;
|
|
11324
11396
|
onboarding_banner?: string | undefined;
|
|
11397
|
+
clan_order?: number | undefined;
|
|
11325
11398
|
} & { [K in Exclude<keyof I["clandesc"][number], keyof ClanDesc>]: never; })[] & { [K_1 in Exclude<keyof I["clandesc"], keyof {
|
|
11326
11399
|
creator_id?: string | undefined;
|
|
11327
11400
|
clan_name?: string | undefined;
|
|
@@ -11333,6 +11406,7 @@ export declare const ClanDescList: {
|
|
|
11333
11406
|
is_onboarding?: boolean | undefined;
|
|
11334
11407
|
welcome_channel_id?: string | undefined;
|
|
11335
11408
|
onboarding_banner?: string | undefined;
|
|
11409
|
+
clan_order?: number | undefined;
|
|
11336
11410
|
}[]>]: never; }) | undefined;
|
|
11337
11411
|
} & { [K_2 in Exclude<keyof I, "clandesc">]: never; }>(base?: I | undefined): ClanDescList;
|
|
11338
11412
|
fromPartial<I_1 extends {
|
|
@@ -11347,6 +11421,7 @@ export declare const ClanDescList: {
|
|
|
11347
11421
|
is_onboarding?: boolean | undefined;
|
|
11348
11422
|
welcome_channel_id?: string | undefined;
|
|
11349
11423
|
onboarding_banner?: string | undefined;
|
|
11424
|
+
clan_order?: number | undefined;
|
|
11350
11425
|
}[] | undefined;
|
|
11351
11426
|
} & {
|
|
11352
11427
|
clandesc?: ({
|
|
@@ -11360,6 +11435,7 @@ export declare const ClanDescList: {
|
|
|
11360
11435
|
is_onboarding?: boolean | undefined;
|
|
11361
11436
|
welcome_channel_id?: string | undefined;
|
|
11362
11437
|
onboarding_banner?: string | undefined;
|
|
11438
|
+
clan_order?: number | undefined;
|
|
11363
11439
|
}[] & ({
|
|
11364
11440
|
creator_id?: string | undefined;
|
|
11365
11441
|
clan_name?: string | undefined;
|
|
@@ -11371,6 +11447,7 @@ export declare const ClanDescList: {
|
|
|
11371
11447
|
is_onboarding?: boolean | undefined;
|
|
11372
11448
|
welcome_channel_id?: string | undefined;
|
|
11373
11449
|
onboarding_banner?: string | undefined;
|
|
11450
|
+
clan_order?: number | undefined;
|
|
11374
11451
|
} & {
|
|
11375
11452
|
creator_id?: string | undefined;
|
|
11376
11453
|
clan_name?: string | undefined;
|
|
@@ -11382,6 +11459,7 @@ export declare const ClanDescList: {
|
|
|
11382
11459
|
is_onboarding?: boolean | undefined;
|
|
11383
11460
|
welcome_channel_id?: string | undefined;
|
|
11384
11461
|
onboarding_banner?: string | undefined;
|
|
11462
|
+
clan_order?: number | undefined;
|
|
11385
11463
|
} & { [K_3 in Exclude<keyof I_1["clandesc"][number], keyof ClanDesc>]: never; })[] & { [K_4 in Exclude<keyof I_1["clandesc"], keyof {
|
|
11386
11464
|
creator_id?: string | undefined;
|
|
11387
11465
|
clan_name?: string | undefined;
|
|
@@ -11393,6 +11471,7 @@ export declare const ClanDescList: {
|
|
|
11393
11471
|
is_onboarding?: boolean | undefined;
|
|
11394
11472
|
welcome_channel_id?: string | undefined;
|
|
11395
11473
|
onboarding_banner?: string | undefined;
|
|
11474
|
+
clan_order?: number | undefined;
|
|
11396
11475
|
}[]>]: never; }) | undefined;
|
|
11397
11476
|
} & { [K_5 in Exclude<keyof I_1, "clandesc">]: never; }>(object: I_1): ClanDescList;
|
|
11398
11477
|
};
|
|
@@ -11466,7 +11545,7 @@ export declare const InviteUserRes: {
|
|
|
11466
11545
|
sender_id?: string | undefined;
|
|
11467
11546
|
content?: string | undefined;
|
|
11468
11547
|
attachment?: string | undefined;
|
|
11469
|
-
|
|
11548
|
+
reference?: string | undefined;
|
|
11470
11549
|
mention?: string | undefined;
|
|
11471
11550
|
reaction?: string | undefined;
|
|
11472
11551
|
repliers?: string[] | undefined;
|
|
@@ -11477,7 +11556,7 @@ export declare const InviteUserRes: {
|
|
|
11477
11556
|
sender_id?: string | undefined;
|
|
11478
11557
|
content?: string | undefined;
|
|
11479
11558
|
attachment?: string | undefined;
|
|
11480
|
-
|
|
11559
|
+
reference?: string | undefined;
|
|
11481
11560
|
mention?: string | undefined;
|
|
11482
11561
|
reaction?: string | undefined;
|
|
11483
11562
|
repliers?: string[] | undefined;
|
|
@@ -11494,7 +11573,7 @@ export declare const InviteUserRes: {
|
|
|
11494
11573
|
metadata?: string[] | undefined;
|
|
11495
11574
|
about_me?: string[] | undefined;
|
|
11496
11575
|
clan_name?: string | undefined;
|
|
11497
|
-
|
|
11576
|
+
app_id?: string | undefined;
|
|
11498
11577
|
is_mute?: boolean | undefined;
|
|
11499
11578
|
age_restricted?: number | undefined;
|
|
11500
11579
|
topic?: string | undefined;
|
|
@@ -11526,7 +11605,7 @@ export declare const InviteUserRes: {
|
|
|
11526
11605
|
sender_id?: string | undefined;
|
|
11527
11606
|
content?: string | undefined;
|
|
11528
11607
|
attachment?: string | undefined;
|
|
11529
|
-
|
|
11608
|
+
reference?: string | undefined;
|
|
11530
11609
|
mention?: string | undefined;
|
|
11531
11610
|
reaction?: string | undefined;
|
|
11532
11611
|
repliers?: string[] | undefined;
|
|
@@ -11537,7 +11616,7 @@ export declare const InviteUserRes: {
|
|
|
11537
11616
|
sender_id?: string | undefined;
|
|
11538
11617
|
content?: string | undefined;
|
|
11539
11618
|
attachment?: string | undefined;
|
|
11540
|
-
|
|
11619
|
+
reference?: string | undefined;
|
|
11541
11620
|
mention?: string | undefined;
|
|
11542
11621
|
reaction?: string | undefined;
|
|
11543
11622
|
repliers?: string[] | undefined;
|
|
@@ -11554,7 +11633,7 @@ export declare const InviteUserRes: {
|
|
|
11554
11633
|
metadata?: string[] | undefined;
|
|
11555
11634
|
about_me?: string[] | undefined;
|
|
11556
11635
|
clan_name?: string | undefined;
|
|
11557
|
-
|
|
11636
|
+
app_id?: string | undefined;
|
|
11558
11637
|
is_mute?: boolean | undefined;
|
|
11559
11638
|
age_restricted?: number | undefined;
|
|
11560
11639
|
topic?: string | undefined;
|
|
@@ -11578,7 +11657,7 @@ export declare const InviteUserRes: {
|
|
|
11578
11657
|
sender_id?: string | undefined;
|
|
11579
11658
|
content?: string | undefined;
|
|
11580
11659
|
attachment?: string | undefined;
|
|
11581
|
-
|
|
11660
|
+
reference?: string | undefined;
|
|
11582
11661
|
mention?: string | undefined;
|
|
11583
11662
|
reaction?: string | undefined;
|
|
11584
11663
|
repliers?: string[] | undefined;
|
|
@@ -11588,7 +11667,7 @@ export declare const InviteUserRes: {
|
|
|
11588
11667
|
sender_id?: string | undefined;
|
|
11589
11668
|
content?: string | undefined;
|
|
11590
11669
|
attachment?: string | undefined;
|
|
11591
|
-
|
|
11670
|
+
reference?: string | undefined;
|
|
11592
11671
|
mention?: string | undefined;
|
|
11593
11672
|
reaction?: string | undefined;
|
|
11594
11673
|
repliers?: (string[] & string[] & { [K_2 in Exclude<keyof I["channel_desc"]["last_sent_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
@@ -11599,7 +11678,7 @@ export declare const InviteUserRes: {
|
|
|
11599
11678
|
sender_id?: string | undefined;
|
|
11600
11679
|
content?: string | undefined;
|
|
11601
11680
|
attachment?: string | undefined;
|
|
11602
|
-
|
|
11681
|
+
reference?: string | undefined;
|
|
11603
11682
|
mention?: string | undefined;
|
|
11604
11683
|
reaction?: string | undefined;
|
|
11605
11684
|
repliers?: string[] | undefined;
|
|
@@ -11609,7 +11688,7 @@ export declare const InviteUserRes: {
|
|
|
11609
11688
|
sender_id?: string | undefined;
|
|
11610
11689
|
content?: string | undefined;
|
|
11611
11690
|
attachment?: string | undefined;
|
|
11612
|
-
|
|
11691
|
+
reference?: string | undefined;
|
|
11613
11692
|
mention?: string | undefined;
|
|
11614
11693
|
reaction?: string | undefined;
|
|
11615
11694
|
repliers?: (string[] & string[] & { [K_4 in Exclude<keyof I["channel_desc"]["last_seen_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
@@ -11626,7 +11705,7 @@ export declare const InviteUserRes: {
|
|
|
11626
11705
|
metadata?: (string[] & string[] & { [K_8 in Exclude<keyof I["channel_desc"]["metadata"], keyof string[]>]: never; }) | undefined;
|
|
11627
11706
|
about_me?: (string[] & string[] & { [K_9 in Exclude<keyof I["channel_desc"]["about_me"], keyof string[]>]: never; }) | undefined;
|
|
11628
11707
|
clan_name?: string | undefined;
|
|
11629
|
-
|
|
11708
|
+
app_id?: string | undefined;
|
|
11630
11709
|
is_mute?: boolean | undefined;
|
|
11631
11710
|
age_restricted?: number | undefined;
|
|
11632
11711
|
topic?: string | undefined;
|
|
@@ -11659,7 +11738,7 @@ export declare const InviteUserRes: {
|
|
|
11659
11738
|
sender_id?: string | undefined;
|
|
11660
11739
|
content?: string | undefined;
|
|
11661
11740
|
attachment?: string | undefined;
|
|
11662
|
-
|
|
11741
|
+
reference?: string | undefined;
|
|
11663
11742
|
mention?: string | undefined;
|
|
11664
11743
|
reaction?: string | undefined;
|
|
11665
11744
|
repliers?: string[] | undefined;
|
|
@@ -11670,7 +11749,7 @@ export declare const InviteUserRes: {
|
|
|
11670
11749
|
sender_id?: string | undefined;
|
|
11671
11750
|
content?: string | undefined;
|
|
11672
11751
|
attachment?: string | undefined;
|
|
11673
|
-
|
|
11752
|
+
reference?: string | undefined;
|
|
11674
11753
|
mention?: string | undefined;
|
|
11675
11754
|
reaction?: string | undefined;
|
|
11676
11755
|
repliers?: string[] | undefined;
|
|
@@ -11687,7 +11766,7 @@ export declare const InviteUserRes: {
|
|
|
11687
11766
|
metadata?: string[] | undefined;
|
|
11688
11767
|
about_me?: string[] | undefined;
|
|
11689
11768
|
clan_name?: string | undefined;
|
|
11690
|
-
|
|
11769
|
+
app_id?: string | undefined;
|
|
11691
11770
|
is_mute?: boolean | undefined;
|
|
11692
11771
|
age_restricted?: number | undefined;
|
|
11693
11772
|
topic?: string | undefined;
|
|
@@ -11719,7 +11798,7 @@ export declare const InviteUserRes: {
|
|
|
11719
11798
|
sender_id?: string | undefined;
|
|
11720
11799
|
content?: string | undefined;
|
|
11721
11800
|
attachment?: string | undefined;
|
|
11722
|
-
|
|
11801
|
+
reference?: string | undefined;
|
|
11723
11802
|
mention?: string | undefined;
|
|
11724
11803
|
reaction?: string | undefined;
|
|
11725
11804
|
repliers?: string[] | undefined;
|
|
@@ -11730,7 +11809,7 @@ export declare const InviteUserRes: {
|
|
|
11730
11809
|
sender_id?: string | undefined;
|
|
11731
11810
|
content?: string | undefined;
|
|
11732
11811
|
attachment?: string | undefined;
|
|
11733
|
-
|
|
11812
|
+
reference?: string | undefined;
|
|
11734
11813
|
mention?: string | undefined;
|
|
11735
11814
|
reaction?: string | undefined;
|
|
11736
11815
|
repliers?: string[] | undefined;
|
|
@@ -11747,7 +11826,7 @@ export declare const InviteUserRes: {
|
|
|
11747
11826
|
metadata?: string[] | undefined;
|
|
11748
11827
|
about_me?: string[] | undefined;
|
|
11749
11828
|
clan_name?: string | undefined;
|
|
11750
|
-
|
|
11829
|
+
app_id?: string | undefined;
|
|
11751
11830
|
is_mute?: boolean | undefined;
|
|
11752
11831
|
age_restricted?: number | undefined;
|
|
11753
11832
|
topic?: string | undefined;
|
|
@@ -11771,7 +11850,7 @@ export declare const InviteUserRes: {
|
|
|
11771
11850
|
sender_id?: string | undefined;
|
|
11772
11851
|
content?: string | undefined;
|
|
11773
11852
|
attachment?: string | undefined;
|
|
11774
|
-
|
|
11853
|
+
reference?: string | undefined;
|
|
11775
11854
|
mention?: string | undefined;
|
|
11776
11855
|
reaction?: string | undefined;
|
|
11777
11856
|
repliers?: string[] | undefined;
|
|
@@ -11781,7 +11860,7 @@ export declare const InviteUserRes: {
|
|
|
11781
11860
|
sender_id?: string | undefined;
|
|
11782
11861
|
content?: string | undefined;
|
|
11783
11862
|
attachment?: string | undefined;
|
|
11784
|
-
|
|
11863
|
+
reference?: string | undefined;
|
|
11785
11864
|
mention?: string | undefined;
|
|
11786
11865
|
reaction?: string | undefined;
|
|
11787
11866
|
repliers?: (string[] & string[] & { [K_15 in Exclude<keyof I_1["channel_desc"]["last_sent_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
@@ -11792,7 +11871,7 @@ export declare const InviteUserRes: {
|
|
|
11792
11871
|
sender_id?: string | undefined;
|
|
11793
11872
|
content?: string | undefined;
|
|
11794
11873
|
attachment?: string | undefined;
|
|
11795
|
-
|
|
11874
|
+
reference?: string | undefined;
|
|
11796
11875
|
mention?: string | undefined;
|
|
11797
11876
|
reaction?: string | undefined;
|
|
11798
11877
|
repliers?: string[] | undefined;
|
|
@@ -11802,7 +11881,7 @@ export declare const InviteUserRes: {
|
|
|
11802
11881
|
sender_id?: string | undefined;
|
|
11803
11882
|
content?: string | undefined;
|
|
11804
11883
|
attachment?: string | undefined;
|
|
11805
|
-
|
|
11884
|
+
reference?: string | undefined;
|
|
11806
11885
|
mention?: string | undefined;
|
|
11807
11886
|
reaction?: string | undefined;
|
|
11808
11887
|
repliers?: (string[] & string[] & { [K_17 in Exclude<keyof I_1["channel_desc"]["last_seen_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
@@ -11819,7 +11898,7 @@ export declare const InviteUserRes: {
|
|
|
11819
11898
|
metadata?: (string[] & string[] & { [K_21 in Exclude<keyof I_1["channel_desc"]["metadata"], keyof string[]>]: never; }) | undefined;
|
|
11820
11899
|
about_me?: (string[] & string[] & { [K_22 in Exclude<keyof I_1["channel_desc"]["about_me"], keyof string[]>]: never; }) | undefined;
|
|
11821
11900
|
clan_name?: string | undefined;
|
|
11822
|
-
|
|
11901
|
+
app_id?: string | undefined;
|
|
11823
11902
|
is_mute?: boolean | undefined;
|
|
11824
11903
|
age_restricted?: number | undefined;
|
|
11825
11904
|
topic?: string | undefined;
|
|
@@ -11956,6 +12035,72 @@ export declare const UpdateClanProfileRequest: {
|
|
|
11956
12035
|
avatar?: string | undefined;
|
|
11957
12036
|
} & { [K_1 in Exclude<keyof I_1, keyof UpdateClanProfileRequest>]: never; }>(object: I_1): UpdateClanProfileRequest;
|
|
11958
12037
|
};
|
|
12038
|
+
export declare const UpdateClanOrderRequest: {
|
|
12039
|
+
encode(message: UpdateClanOrderRequest, writer?: _m0.Writer): _m0.Writer;
|
|
12040
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): UpdateClanOrderRequest;
|
|
12041
|
+
fromJSON(object: any): UpdateClanOrderRequest;
|
|
12042
|
+
toJSON(message: UpdateClanOrderRequest): unknown;
|
|
12043
|
+
create<I extends {
|
|
12044
|
+
clans_order?: {
|
|
12045
|
+
order?: number | undefined;
|
|
12046
|
+
clan_id?: string | undefined;
|
|
12047
|
+
}[] | undefined;
|
|
12048
|
+
} & {
|
|
12049
|
+
clans_order?: ({
|
|
12050
|
+
order?: number | undefined;
|
|
12051
|
+
clan_id?: string | undefined;
|
|
12052
|
+
}[] & ({
|
|
12053
|
+
order?: number | undefined;
|
|
12054
|
+
clan_id?: string | undefined;
|
|
12055
|
+
} & {
|
|
12056
|
+
order?: number | undefined;
|
|
12057
|
+
clan_id?: string | undefined;
|
|
12058
|
+
} & { [K in Exclude<keyof I["clans_order"][number], keyof UpdateClanOrderRequest_ClanOrder>]: never; })[] & { [K_1 in Exclude<keyof I["clans_order"], keyof {
|
|
12059
|
+
order?: number | undefined;
|
|
12060
|
+
clan_id?: string | undefined;
|
|
12061
|
+
}[]>]: never; }) | undefined;
|
|
12062
|
+
} & { [K_2 in Exclude<keyof I, "clans_order">]: never; }>(base?: I | undefined): UpdateClanOrderRequest;
|
|
12063
|
+
fromPartial<I_1 extends {
|
|
12064
|
+
clans_order?: {
|
|
12065
|
+
order?: number | undefined;
|
|
12066
|
+
clan_id?: string | undefined;
|
|
12067
|
+
}[] | undefined;
|
|
12068
|
+
} & {
|
|
12069
|
+
clans_order?: ({
|
|
12070
|
+
order?: number | undefined;
|
|
12071
|
+
clan_id?: string | undefined;
|
|
12072
|
+
}[] & ({
|
|
12073
|
+
order?: number | undefined;
|
|
12074
|
+
clan_id?: string | undefined;
|
|
12075
|
+
} & {
|
|
12076
|
+
order?: number | undefined;
|
|
12077
|
+
clan_id?: string | undefined;
|
|
12078
|
+
} & { [K_3 in Exclude<keyof I_1["clans_order"][number], keyof UpdateClanOrderRequest_ClanOrder>]: never; })[] & { [K_4 in Exclude<keyof I_1["clans_order"], keyof {
|
|
12079
|
+
order?: number | undefined;
|
|
12080
|
+
clan_id?: string | undefined;
|
|
12081
|
+
}[]>]: never; }) | undefined;
|
|
12082
|
+
} & { [K_5 in Exclude<keyof I_1, "clans_order">]: never; }>(object: I_1): UpdateClanOrderRequest;
|
|
12083
|
+
};
|
|
12084
|
+
export declare const UpdateClanOrderRequest_ClanOrder: {
|
|
12085
|
+
encode(message: UpdateClanOrderRequest_ClanOrder, writer?: _m0.Writer): _m0.Writer;
|
|
12086
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): UpdateClanOrderRequest_ClanOrder;
|
|
12087
|
+
fromJSON(object: any): UpdateClanOrderRequest_ClanOrder;
|
|
12088
|
+
toJSON(message: UpdateClanOrderRequest_ClanOrder): unknown;
|
|
12089
|
+
create<I extends {
|
|
12090
|
+
order?: number | undefined;
|
|
12091
|
+
clan_id?: string | undefined;
|
|
12092
|
+
} & {
|
|
12093
|
+
order?: number | undefined;
|
|
12094
|
+
clan_id?: string | undefined;
|
|
12095
|
+
} & { [K in Exclude<keyof I, keyof UpdateClanOrderRequest_ClanOrder>]: never; }>(base?: I | undefined): UpdateClanOrderRequest_ClanOrder;
|
|
12096
|
+
fromPartial<I_1 extends {
|
|
12097
|
+
order?: number | undefined;
|
|
12098
|
+
clan_id?: string | undefined;
|
|
12099
|
+
} & {
|
|
12100
|
+
order?: number | undefined;
|
|
12101
|
+
clan_id?: string | undefined;
|
|
12102
|
+
} & { [K_1 in Exclude<keyof I_1, keyof UpdateClanOrderRequest_ClanOrder>]: never; }>(object: I_1): UpdateClanOrderRequest_ClanOrder;
|
|
12103
|
+
};
|
|
11959
12104
|
export declare const CategoryDesc: {
|
|
11960
12105
|
encode(message: CategoryDesc, writer?: _m0.Writer): _m0.Writer;
|
|
11961
12106
|
decode(input: _m0.Reader | Uint8Array, length?: number): CategoryDesc;
|
|
@@ -12038,6 +12183,76 @@ export declare const UpdateCategoryOrderRequest: {
|
|
|
12038
12183
|
}[]>]: never; }) | undefined;
|
|
12039
12184
|
} & { [K_5 in Exclude<keyof I_1, keyof UpdateCategoryOrderRequest>]: never; }>(object: I_1): UpdateCategoryOrderRequest;
|
|
12040
12185
|
};
|
|
12186
|
+
export declare const UpdateRoleOrderRequest: {
|
|
12187
|
+
encode(message: UpdateRoleOrderRequest, writer?: _m0.Writer): _m0.Writer;
|
|
12188
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): UpdateRoleOrderRequest;
|
|
12189
|
+
fromJSON(object: any): UpdateRoleOrderRequest;
|
|
12190
|
+
toJSON(message: UpdateRoleOrderRequest): unknown;
|
|
12191
|
+
create<I extends {
|
|
12192
|
+
clan_id?: string | undefined;
|
|
12193
|
+
roles?: {
|
|
12194
|
+
role_id?: string | undefined;
|
|
12195
|
+
order?: number | undefined;
|
|
12196
|
+
}[] | undefined;
|
|
12197
|
+
} & {
|
|
12198
|
+
clan_id?: string | undefined;
|
|
12199
|
+
roles?: ({
|
|
12200
|
+
role_id?: string | undefined;
|
|
12201
|
+
order?: number | undefined;
|
|
12202
|
+
}[] & ({
|
|
12203
|
+
role_id?: string | undefined;
|
|
12204
|
+
order?: number | undefined;
|
|
12205
|
+
} & {
|
|
12206
|
+
role_id?: string | undefined;
|
|
12207
|
+
order?: number | undefined;
|
|
12208
|
+
} & { [K in Exclude<keyof I["roles"][number], keyof RoleOrderUpdate>]: never; })[] & { [K_1 in Exclude<keyof I["roles"], keyof {
|
|
12209
|
+
role_id?: string | undefined;
|
|
12210
|
+
order?: number | undefined;
|
|
12211
|
+
}[]>]: never; }) | undefined;
|
|
12212
|
+
} & { [K_2 in Exclude<keyof I, keyof UpdateRoleOrderRequest>]: never; }>(base?: I | undefined): UpdateRoleOrderRequest;
|
|
12213
|
+
fromPartial<I_1 extends {
|
|
12214
|
+
clan_id?: string | undefined;
|
|
12215
|
+
roles?: {
|
|
12216
|
+
role_id?: string | undefined;
|
|
12217
|
+
order?: number | undefined;
|
|
12218
|
+
}[] | undefined;
|
|
12219
|
+
} & {
|
|
12220
|
+
clan_id?: string | undefined;
|
|
12221
|
+
roles?: ({
|
|
12222
|
+
role_id?: string | undefined;
|
|
12223
|
+
order?: number | undefined;
|
|
12224
|
+
}[] & ({
|
|
12225
|
+
role_id?: string | undefined;
|
|
12226
|
+
order?: number | undefined;
|
|
12227
|
+
} & {
|
|
12228
|
+
role_id?: string | undefined;
|
|
12229
|
+
order?: number | undefined;
|
|
12230
|
+
} & { [K_3 in Exclude<keyof I_1["roles"][number], keyof RoleOrderUpdate>]: never; })[] & { [K_4 in Exclude<keyof I_1["roles"], keyof {
|
|
12231
|
+
role_id?: string | undefined;
|
|
12232
|
+
order?: number | undefined;
|
|
12233
|
+
}[]>]: never; }) | undefined;
|
|
12234
|
+
} & { [K_5 in Exclude<keyof I_1, keyof UpdateRoleOrderRequest>]: never; }>(object: I_1): UpdateRoleOrderRequest;
|
|
12235
|
+
};
|
|
12236
|
+
export declare const RoleOrderUpdate: {
|
|
12237
|
+
encode(message: RoleOrderUpdate, writer?: _m0.Writer): _m0.Writer;
|
|
12238
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): RoleOrderUpdate;
|
|
12239
|
+
fromJSON(object: any): RoleOrderUpdate;
|
|
12240
|
+
toJSON(message: RoleOrderUpdate): unknown;
|
|
12241
|
+
create<I extends {
|
|
12242
|
+
role_id?: string | undefined;
|
|
12243
|
+
order?: number | undefined;
|
|
12244
|
+
} & {
|
|
12245
|
+
role_id?: string | undefined;
|
|
12246
|
+
order?: number | undefined;
|
|
12247
|
+
} & { [K in Exclude<keyof I, keyof RoleOrderUpdate>]: never; }>(base?: I | undefined): RoleOrderUpdate;
|
|
12248
|
+
fromPartial<I_1 extends {
|
|
12249
|
+
role_id?: string | undefined;
|
|
12250
|
+
order?: number | undefined;
|
|
12251
|
+
} & {
|
|
12252
|
+
role_id?: string | undefined;
|
|
12253
|
+
order?: number | undefined;
|
|
12254
|
+
} & { [K_1 in Exclude<keyof I_1, keyof RoleOrderUpdate>]: never; }>(object: I_1): RoleOrderUpdate;
|
|
12255
|
+
};
|
|
12041
12256
|
export declare const CategoryOrderUpdate: {
|
|
12042
12257
|
encode(message: CategoryOrderUpdate, writer?: _m0.Writer): _m0.Writer;
|
|
12043
12258
|
decode(input: _m0.Reader | Uint8Array, length?: number): CategoryOrderUpdate;
|
|
@@ -12213,7 +12428,7 @@ export declare const ChannelMessageHeader: {
|
|
|
12213
12428
|
sender_id?: string | undefined;
|
|
12214
12429
|
content?: string | undefined;
|
|
12215
12430
|
attachment?: string | undefined;
|
|
12216
|
-
|
|
12431
|
+
reference?: string | undefined;
|
|
12217
12432
|
mention?: string | undefined;
|
|
12218
12433
|
reaction?: string | undefined;
|
|
12219
12434
|
repliers?: string[] | undefined;
|
|
@@ -12223,7 +12438,7 @@ export declare const ChannelMessageHeader: {
|
|
|
12223
12438
|
sender_id?: string | undefined;
|
|
12224
12439
|
content?: string | undefined;
|
|
12225
12440
|
attachment?: string | undefined;
|
|
12226
|
-
|
|
12441
|
+
reference?: string | undefined;
|
|
12227
12442
|
mention?: string | undefined;
|
|
12228
12443
|
reaction?: string | undefined;
|
|
12229
12444
|
repliers?: (string[] & string[] & { [K in Exclude<keyof I["repliers"], keyof string[]>]: never; }) | undefined;
|
|
@@ -12234,7 +12449,7 @@ export declare const ChannelMessageHeader: {
|
|
|
12234
12449
|
sender_id?: string | undefined;
|
|
12235
12450
|
content?: string | undefined;
|
|
12236
12451
|
attachment?: string | undefined;
|
|
12237
|
-
|
|
12452
|
+
reference?: string | undefined;
|
|
12238
12453
|
mention?: string | undefined;
|
|
12239
12454
|
reaction?: string | undefined;
|
|
12240
12455
|
repliers?: string[] | undefined;
|
|
@@ -12244,7 +12459,7 @@ export declare const ChannelMessageHeader: {
|
|
|
12244
12459
|
sender_id?: string | undefined;
|
|
12245
12460
|
content?: string | undefined;
|
|
12246
12461
|
attachment?: string | undefined;
|
|
12247
|
-
|
|
12462
|
+
reference?: string | undefined;
|
|
12248
12463
|
mention?: string | undefined;
|
|
12249
12464
|
reaction?: string | undefined;
|
|
12250
12465
|
repliers?: (string[] & string[] & { [K_2 in Exclude<keyof I_1["repliers"], keyof string[]>]: never; }) | undefined;
|
|
@@ -12273,7 +12488,7 @@ export declare const ChannelDescription: {
|
|
|
12273
12488
|
sender_id?: string | undefined;
|
|
12274
12489
|
content?: string | undefined;
|
|
12275
12490
|
attachment?: string | undefined;
|
|
12276
|
-
|
|
12491
|
+
reference?: string | undefined;
|
|
12277
12492
|
mention?: string | undefined;
|
|
12278
12493
|
reaction?: string | undefined;
|
|
12279
12494
|
repliers?: string[] | undefined;
|
|
@@ -12284,7 +12499,7 @@ export declare const ChannelDescription: {
|
|
|
12284
12499
|
sender_id?: string | undefined;
|
|
12285
12500
|
content?: string | undefined;
|
|
12286
12501
|
attachment?: string | undefined;
|
|
12287
|
-
|
|
12502
|
+
reference?: string | undefined;
|
|
12288
12503
|
mention?: string | undefined;
|
|
12289
12504
|
reaction?: string | undefined;
|
|
12290
12505
|
repliers?: string[] | undefined;
|
|
@@ -12301,7 +12516,7 @@ export declare const ChannelDescription: {
|
|
|
12301
12516
|
metadata?: string[] | undefined;
|
|
12302
12517
|
about_me?: string[] | undefined;
|
|
12303
12518
|
clan_name?: string | undefined;
|
|
12304
|
-
|
|
12519
|
+
app_id?: string | undefined;
|
|
12305
12520
|
is_mute?: boolean | undefined;
|
|
12306
12521
|
age_restricted?: number | undefined;
|
|
12307
12522
|
topic?: string | undefined;
|
|
@@ -12325,7 +12540,7 @@ export declare const ChannelDescription: {
|
|
|
12325
12540
|
sender_id?: string | undefined;
|
|
12326
12541
|
content?: string | undefined;
|
|
12327
12542
|
attachment?: string | undefined;
|
|
12328
|
-
|
|
12543
|
+
reference?: string | undefined;
|
|
12329
12544
|
mention?: string | undefined;
|
|
12330
12545
|
reaction?: string | undefined;
|
|
12331
12546
|
repliers?: string[] | undefined;
|
|
@@ -12335,7 +12550,7 @@ export declare const ChannelDescription: {
|
|
|
12335
12550
|
sender_id?: string | undefined;
|
|
12336
12551
|
content?: string | undefined;
|
|
12337
12552
|
attachment?: string | undefined;
|
|
12338
|
-
|
|
12553
|
+
reference?: string | undefined;
|
|
12339
12554
|
mention?: string | undefined;
|
|
12340
12555
|
reaction?: string | undefined;
|
|
12341
12556
|
repliers?: (string[] & string[] & { [K_2 in Exclude<keyof I["last_sent_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
@@ -12346,7 +12561,7 @@ export declare const ChannelDescription: {
|
|
|
12346
12561
|
sender_id?: string | undefined;
|
|
12347
12562
|
content?: string | undefined;
|
|
12348
12563
|
attachment?: string | undefined;
|
|
12349
|
-
|
|
12564
|
+
reference?: string | undefined;
|
|
12350
12565
|
mention?: string | undefined;
|
|
12351
12566
|
reaction?: string | undefined;
|
|
12352
12567
|
repliers?: string[] | undefined;
|
|
@@ -12356,7 +12571,7 @@ export declare const ChannelDescription: {
|
|
|
12356
12571
|
sender_id?: string | undefined;
|
|
12357
12572
|
content?: string | undefined;
|
|
12358
12573
|
attachment?: string | undefined;
|
|
12359
|
-
|
|
12574
|
+
reference?: string | undefined;
|
|
12360
12575
|
mention?: string | undefined;
|
|
12361
12576
|
reaction?: string | undefined;
|
|
12362
12577
|
repliers?: (string[] & string[] & { [K_4 in Exclude<keyof I["last_seen_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
@@ -12373,7 +12588,7 @@ export declare const ChannelDescription: {
|
|
|
12373
12588
|
metadata?: (string[] & string[] & { [K_8 in Exclude<keyof I["metadata"], keyof string[]>]: never; }) | undefined;
|
|
12374
12589
|
about_me?: (string[] & string[] & { [K_9 in Exclude<keyof I["about_me"], keyof string[]>]: never; }) | undefined;
|
|
12375
12590
|
clan_name?: string | undefined;
|
|
12376
|
-
|
|
12591
|
+
app_id?: string | undefined;
|
|
12377
12592
|
is_mute?: boolean | undefined;
|
|
12378
12593
|
age_restricted?: number | undefined;
|
|
12379
12594
|
topic?: string | undefined;
|
|
@@ -12398,7 +12613,7 @@ export declare const ChannelDescription: {
|
|
|
12398
12613
|
sender_id?: string | undefined;
|
|
12399
12614
|
content?: string | undefined;
|
|
12400
12615
|
attachment?: string | undefined;
|
|
12401
|
-
|
|
12616
|
+
reference?: string | undefined;
|
|
12402
12617
|
mention?: string | undefined;
|
|
12403
12618
|
reaction?: string | undefined;
|
|
12404
12619
|
repliers?: string[] | undefined;
|
|
@@ -12409,7 +12624,7 @@ export declare const ChannelDescription: {
|
|
|
12409
12624
|
sender_id?: string | undefined;
|
|
12410
12625
|
content?: string | undefined;
|
|
12411
12626
|
attachment?: string | undefined;
|
|
12412
|
-
|
|
12627
|
+
reference?: string | undefined;
|
|
12413
12628
|
mention?: string | undefined;
|
|
12414
12629
|
reaction?: string | undefined;
|
|
12415
12630
|
repliers?: string[] | undefined;
|
|
@@ -12426,7 +12641,7 @@ export declare const ChannelDescription: {
|
|
|
12426
12641
|
metadata?: string[] | undefined;
|
|
12427
12642
|
about_me?: string[] | undefined;
|
|
12428
12643
|
clan_name?: string | undefined;
|
|
12429
|
-
|
|
12644
|
+
app_id?: string | undefined;
|
|
12430
12645
|
is_mute?: boolean | undefined;
|
|
12431
12646
|
age_restricted?: number | undefined;
|
|
12432
12647
|
topic?: string | undefined;
|
|
@@ -12450,7 +12665,7 @@ export declare const ChannelDescription: {
|
|
|
12450
12665
|
sender_id?: string | undefined;
|
|
12451
12666
|
content?: string | undefined;
|
|
12452
12667
|
attachment?: string | undefined;
|
|
12453
|
-
|
|
12668
|
+
reference?: string | undefined;
|
|
12454
12669
|
mention?: string | undefined;
|
|
12455
12670
|
reaction?: string | undefined;
|
|
12456
12671
|
repliers?: string[] | undefined;
|
|
@@ -12460,7 +12675,7 @@ export declare const ChannelDescription: {
|
|
|
12460
12675
|
sender_id?: string | undefined;
|
|
12461
12676
|
content?: string | undefined;
|
|
12462
12677
|
attachment?: string | undefined;
|
|
12463
|
-
|
|
12678
|
+
reference?: string | undefined;
|
|
12464
12679
|
mention?: string | undefined;
|
|
12465
12680
|
reaction?: string | undefined;
|
|
12466
12681
|
repliers?: (string[] & string[] & { [K_14 in Exclude<keyof I_1["last_sent_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
@@ -12471,7 +12686,7 @@ export declare const ChannelDescription: {
|
|
|
12471
12686
|
sender_id?: string | undefined;
|
|
12472
12687
|
content?: string | undefined;
|
|
12473
12688
|
attachment?: string | undefined;
|
|
12474
|
-
|
|
12689
|
+
reference?: string | undefined;
|
|
12475
12690
|
mention?: string | undefined;
|
|
12476
12691
|
reaction?: string | undefined;
|
|
12477
12692
|
repliers?: string[] | undefined;
|
|
@@ -12481,7 +12696,7 @@ export declare const ChannelDescription: {
|
|
|
12481
12696
|
sender_id?: string | undefined;
|
|
12482
12697
|
content?: string | undefined;
|
|
12483
12698
|
attachment?: string | undefined;
|
|
12484
|
-
|
|
12699
|
+
reference?: string | undefined;
|
|
12485
12700
|
mention?: string | undefined;
|
|
12486
12701
|
reaction?: string | undefined;
|
|
12487
12702
|
repliers?: (string[] & string[] & { [K_16 in Exclude<keyof I_1["last_seen_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
@@ -12498,7 +12713,7 @@ export declare const ChannelDescription: {
|
|
|
12498
12713
|
metadata?: (string[] & string[] & { [K_20 in Exclude<keyof I_1["metadata"], keyof string[]>]: never; }) | undefined;
|
|
12499
12714
|
about_me?: (string[] & string[] & { [K_21 in Exclude<keyof I_1["about_me"], keyof string[]>]: never; }) | undefined;
|
|
12500
12715
|
clan_name?: string | undefined;
|
|
12501
|
-
|
|
12716
|
+
app_id?: string | undefined;
|
|
12502
12717
|
is_mute?: boolean | undefined;
|
|
12503
12718
|
age_restricted?: number | undefined;
|
|
12504
12719
|
topic?: string | undefined;
|
|
@@ -12530,7 +12745,7 @@ export declare const ChannelDescList: {
|
|
|
12530
12745
|
sender_id?: string | undefined;
|
|
12531
12746
|
content?: string | undefined;
|
|
12532
12747
|
attachment?: string | undefined;
|
|
12533
|
-
|
|
12748
|
+
reference?: string | undefined;
|
|
12534
12749
|
mention?: string | undefined;
|
|
12535
12750
|
reaction?: string | undefined;
|
|
12536
12751
|
repliers?: string[] | undefined;
|
|
@@ -12541,7 +12756,7 @@ export declare const ChannelDescList: {
|
|
|
12541
12756
|
sender_id?: string | undefined;
|
|
12542
12757
|
content?: string | undefined;
|
|
12543
12758
|
attachment?: string | undefined;
|
|
12544
|
-
|
|
12759
|
+
reference?: string | undefined;
|
|
12545
12760
|
mention?: string | undefined;
|
|
12546
12761
|
reaction?: string | undefined;
|
|
12547
12762
|
repliers?: string[] | undefined;
|
|
@@ -12558,7 +12773,7 @@ export declare const ChannelDescList: {
|
|
|
12558
12773
|
metadata?: string[] | undefined;
|
|
12559
12774
|
about_me?: string[] | undefined;
|
|
12560
12775
|
clan_name?: string | undefined;
|
|
12561
|
-
|
|
12776
|
+
app_id?: string | undefined;
|
|
12562
12777
|
is_mute?: boolean | undefined;
|
|
12563
12778
|
age_restricted?: number | undefined;
|
|
12564
12779
|
topic?: string | undefined;
|
|
@@ -12588,7 +12803,7 @@ export declare const ChannelDescList: {
|
|
|
12588
12803
|
sender_id?: string | undefined;
|
|
12589
12804
|
content?: string | undefined;
|
|
12590
12805
|
attachment?: string | undefined;
|
|
12591
|
-
|
|
12806
|
+
reference?: string | undefined;
|
|
12592
12807
|
mention?: string | undefined;
|
|
12593
12808
|
reaction?: string | undefined;
|
|
12594
12809
|
repliers?: string[] | undefined;
|
|
@@ -12599,7 +12814,7 @@ export declare const ChannelDescList: {
|
|
|
12599
12814
|
sender_id?: string | undefined;
|
|
12600
12815
|
content?: string | undefined;
|
|
12601
12816
|
attachment?: string | undefined;
|
|
12602
|
-
|
|
12817
|
+
reference?: string | undefined;
|
|
12603
12818
|
mention?: string | undefined;
|
|
12604
12819
|
reaction?: string | undefined;
|
|
12605
12820
|
repliers?: string[] | undefined;
|
|
@@ -12616,7 +12831,7 @@ export declare const ChannelDescList: {
|
|
|
12616
12831
|
metadata?: string[] | undefined;
|
|
12617
12832
|
about_me?: string[] | undefined;
|
|
12618
12833
|
clan_name?: string | undefined;
|
|
12619
|
-
|
|
12834
|
+
app_id?: string | undefined;
|
|
12620
12835
|
is_mute?: boolean | undefined;
|
|
12621
12836
|
age_restricted?: number | undefined;
|
|
12622
12837
|
topic?: string | undefined;
|
|
@@ -12640,7 +12855,7 @@ export declare const ChannelDescList: {
|
|
|
12640
12855
|
sender_id?: string | undefined;
|
|
12641
12856
|
content?: string | undefined;
|
|
12642
12857
|
attachment?: string | undefined;
|
|
12643
|
-
|
|
12858
|
+
reference?: string | undefined;
|
|
12644
12859
|
mention?: string | undefined;
|
|
12645
12860
|
reaction?: string | undefined;
|
|
12646
12861
|
repliers?: string[] | undefined;
|
|
@@ -12651,7 +12866,7 @@ export declare const ChannelDescList: {
|
|
|
12651
12866
|
sender_id?: string | undefined;
|
|
12652
12867
|
content?: string | undefined;
|
|
12653
12868
|
attachment?: string | undefined;
|
|
12654
|
-
|
|
12869
|
+
reference?: string | undefined;
|
|
12655
12870
|
mention?: string | undefined;
|
|
12656
12871
|
reaction?: string | undefined;
|
|
12657
12872
|
repliers?: string[] | undefined;
|
|
@@ -12668,7 +12883,7 @@ export declare const ChannelDescList: {
|
|
|
12668
12883
|
metadata?: string[] | undefined;
|
|
12669
12884
|
about_me?: string[] | undefined;
|
|
12670
12885
|
clan_name?: string | undefined;
|
|
12671
|
-
|
|
12886
|
+
app_id?: string | undefined;
|
|
12672
12887
|
is_mute?: boolean | undefined;
|
|
12673
12888
|
age_restricted?: number | undefined;
|
|
12674
12889
|
topic?: string | undefined;
|
|
@@ -12692,7 +12907,7 @@ export declare const ChannelDescList: {
|
|
|
12692
12907
|
sender_id?: string | undefined;
|
|
12693
12908
|
content?: string | undefined;
|
|
12694
12909
|
attachment?: string | undefined;
|
|
12695
|
-
|
|
12910
|
+
reference?: string | undefined;
|
|
12696
12911
|
mention?: string | undefined;
|
|
12697
12912
|
reaction?: string | undefined;
|
|
12698
12913
|
repliers?: string[] | undefined;
|
|
@@ -12702,7 +12917,7 @@ export declare const ChannelDescList: {
|
|
|
12702
12917
|
sender_id?: string | undefined;
|
|
12703
12918
|
content?: string | undefined;
|
|
12704
12919
|
attachment?: string | undefined;
|
|
12705
|
-
|
|
12920
|
+
reference?: string | undefined;
|
|
12706
12921
|
mention?: string | undefined;
|
|
12707
12922
|
reaction?: string | undefined;
|
|
12708
12923
|
repliers?: (string[] & string[] & { [K_2 in Exclude<keyof I["channeldesc"][number]["last_sent_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
@@ -12713,7 +12928,7 @@ export declare const ChannelDescList: {
|
|
|
12713
12928
|
sender_id?: string | undefined;
|
|
12714
12929
|
content?: string | undefined;
|
|
12715
12930
|
attachment?: string | undefined;
|
|
12716
|
-
|
|
12931
|
+
reference?: string | undefined;
|
|
12717
12932
|
mention?: string | undefined;
|
|
12718
12933
|
reaction?: string | undefined;
|
|
12719
12934
|
repliers?: string[] | undefined;
|
|
@@ -12723,7 +12938,7 @@ export declare const ChannelDescList: {
|
|
|
12723
12938
|
sender_id?: string | undefined;
|
|
12724
12939
|
content?: string | undefined;
|
|
12725
12940
|
attachment?: string | undefined;
|
|
12726
|
-
|
|
12941
|
+
reference?: string | undefined;
|
|
12727
12942
|
mention?: string | undefined;
|
|
12728
12943
|
reaction?: string | undefined;
|
|
12729
12944
|
repliers?: (string[] & string[] & { [K_4 in Exclude<keyof I["channeldesc"][number]["last_seen_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
@@ -12740,7 +12955,7 @@ export declare const ChannelDescList: {
|
|
|
12740
12955
|
metadata?: (string[] & string[] & { [K_8 in Exclude<keyof I["channeldesc"][number]["metadata"], keyof string[]>]: never; }) | undefined;
|
|
12741
12956
|
about_me?: (string[] & string[] & { [K_9 in Exclude<keyof I["channeldesc"][number]["about_me"], keyof string[]>]: never; }) | undefined;
|
|
12742
12957
|
clan_name?: string | undefined;
|
|
12743
|
-
|
|
12958
|
+
app_id?: string | undefined;
|
|
12744
12959
|
is_mute?: boolean | undefined;
|
|
12745
12960
|
age_restricted?: number | undefined;
|
|
12746
12961
|
topic?: string | undefined;
|
|
@@ -12764,7 +12979,7 @@ export declare const ChannelDescList: {
|
|
|
12764
12979
|
sender_id?: string | undefined;
|
|
12765
12980
|
content?: string | undefined;
|
|
12766
12981
|
attachment?: string | undefined;
|
|
12767
|
-
|
|
12982
|
+
reference?: string | undefined;
|
|
12768
12983
|
mention?: string | undefined;
|
|
12769
12984
|
reaction?: string | undefined;
|
|
12770
12985
|
repliers?: string[] | undefined;
|
|
@@ -12775,7 +12990,7 @@ export declare const ChannelDescList: {
|
|
|
12775
12990
|
sender_id?: string | undefined;
|
|
12776
12991
|
content?: string | undefined;
|
|
12777
12992
|
attachment?: string | undefined;
|
|
12778
|
-
|
|
12993
|
+
reference?: string | undefined;
|
|
12779
12994
|
mention?: string | undefined;
|
|
12780
12995
|
reaction?: string | undefined;
|
|
12781
12996
|
repliers?: string[] | undefined;
|
|
@@ -12792,7 +13007,7 @@ export declare const ChannelDescList: {
|
|
|
12792
13007
|
metadata?: string[] | undefined;
|
|
12793
13008
|
about_me?: string[] | undefined;
|
|
12794
13009
|
clan_name?: string | undefined;
|
|
12795
|
-
|
|
13010
|
+
app_id?: string | undefined;
|
|
12796
13011
|
is_mute?: boolean | undefined;
|
|
12797
13012
|
age_restricted?: number | undefined;
|
|
12798
13013
|
topic?: string | undefined;
|
|
@@ -12823,7 +13038,7 @@ export declare const ChannelDescList: {
|
|
|
12823
13038
|
sender_id?: string | undefined;
|
|
12824
13039
|
content?: string | undefined;
|
|
12825
13040
|
attachment?: string | undefined;
|
|
12826
|
-
|
|
13041
|
+
reference?: string | undefined;
|
|
12827
13042
|
mention?: string | undefined;
|
|
12828
13043
|
reaction?: string | undefined;
|
|
12829
13044
|
repliers?: string[] | undefined;
|
|
@@ -12834,7 +13049,7 @@ export declare const ChannelDescList: {
|
|
|
12834
13049
|
sender_id?: string | undefined;
|
|
12835
13050
|
content?: string | undefined;
|
|
12836
13051
|
attachment?: string | undefined;
|
|
12837
|
-
|
|
13052
|
+
reference?: string | undefined;
|
|
12838
13053
|
mention?: string | undefined;
|
|
12839
13054
|
reaction?: string | undefined;
|
|
12840
13055
|
repliers?: string[] | undefined;
|
|
@@ -12851,7 +13066,7 @@ export declare const ChannelDescList: {
|
|
|
12851
13066
|
metadata?: string[] | undefined;
|
|
12852
13067
|
about_me?: string[] | undefined;
|
|
12853
13068
|
clan_name?: string | undefined;
|
|
12854
|
-
|
|
13069
|
+
app_id?: string | undefined;
|
|
12855
13070
|
is_mute?: boolean | undefined;
|
|
12856
13071
|
age_restricted?: number | undefined;
|
|
12857
13072
|
topic?: string | undefined;
|
|
@@ -12881,7 +13096,7 @@ export declare const ChannelDescList: {
|
|
|
12881
13096
|
sender_id?: string | undefined;
|
|
12882
13097
|
content?: string | undefined;
|
|
12883
13098
|
attachment?: string | undefined;
|
|
12884
|
-
|
|
13099
|
+
reference?: string | undefined;
|
|
12885
13100
|
mention?: string | undefined;
|
|
12886
13101
|
reaction?: string | undefined;
|
|
12887
13102
|
repliers?: string[] | undefined;
|
|
@@ -12892,7 +13107,7 @@ export declare const ChannelDescList: {
|
|
|
12892
13107
|
sender_id?: string | undefined;
|
|
12893
13108
|
content?: string | undefined;
|
|
12894
13109
|
attachment?: string | undefined;
|
|
12895
|
-
|
|
13110
|
+
reference?: string | undefined;
|
|
12896
13111
|
mention?: string | undefined;
|
|
12897
13112
|
reaction?: string | undefined;
|
|
12898
13113
|
repliers?: string[] | undefined;
|
|
@@ -12909,7 +13124,7 @@ export declare const ChannelDescList: {
|
|
|
12909
13124
|
metadata?: string[] | undefined;
|
|
12910
13125
|
about_me?: string[] | undefined;
|
|
12911
13126
|
clan_name?: string | undefined;
|
|
12912
|
-
|
|
13127
|
+
app_id?: string | undefined;
|
|
12913
13128
|
is_mute?: boolean | undefined;
|
|
12914
13129
|
age_restricted?: number | undefined;
|
|
12915
13130
|
topic?: string | undefined;
|
|
@@ -12933,7 +13148,7 @@ export declare const ChannelDescList: {
|
|
|
12933
13148
|
sender_id?: string | undefined;
|
|
12934
13149
|
content?: string | undefined;
|
|
12935
13150
|
attachment?: string | undefined;
|
|
12936
|
-
|
|
13151
|
+
reference?: string | undefined;
|
|
12937
13152
|
mention?: string | undefined;
|
|
12938
13153
|
reaction?: string | undefined;
|
|
12939
13154
|
repliers?: string[] | undefined;
|
|
@@ -12944,7 +13159,7 @@ export declare const ChannelDescList: {
|
|
|
12944
13159
|
sender_id?: string | undefined;
|
|
12945
13160
|
content?: string | undefined;
|
|
12946
13161
|
attachment?: string | undefined;
|
|
12947
|
-
|
|
13162
|
+
reference?: string | undefined;
|
|
12948
13163
|
mention?: string | undefined;
|
|
12949
13164
|
reaction?: string | undefined;
|
|
12950
13165
|
repliers?: string[] | undefined;
|
|
@@ -12961,7 +13176,7 @@ export declare const ChannelDescList: {
|
|
|
12961
13176
|
metadata?: string[] | undefined;
|
|
12962
13177
|
about_me?: string[] | undefined;
|
|
12963
13178
|
clan_name?: string | undefined;
|
|
12964
|
-
|
|
13179
|
+
app_id?: string | undefined;
|
|
12965
13180
|
is_mute?: boolean | undefined;
|
|
12966
13181
|
age_restricted?: number | undefined;
|
|
12967
13182
|
topic?: string | undefined;
|
|
@@ -12985,7 +13200,7 @@ export declare const ChannelDescList: {
|
|
|
12985
13200
|
sender_id?: string | undefined;
|
|
12986
13201
|
content?: string | undefined;
|
|
12987
13202
|
attachment?: string | undefined;
|
|
12988
|
-
|
|
13203
|
+
reference?: string | undefined;
|
|
12989
13204
|
mention?: string | undefined;
|
|
12990
13205
|
reaction?: string | undefined;
|
|
12991
13206
|
repliers?: string[] | undefined;
|
|
@@ -12995,7 +13210,7 @@ export declare const ChannelDescList: {
|
|
|
12995
13210
|
sender_id?: string | undefined;
|
|
12996
13211
|
content?: string | undefined;
|
|
12997
13212
|
attachment?: string | undefined;
|
|
12998
|
-
|
|
13213
|
+
reference?: string | undefined;
|
|
12999
13214
|
mention?: string | undefined;
|
|
13000
13215
|
reaction?: string | undefined;
|
|
13001
13216
|
repliers?: (string[] & string[] & { [K_16 in Exclude<keyof I_1["channeldesc"][number]["last_sent_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
@@ -13006,7 +13221,7 @@ export declare const ChannelDescList: {
|
|
|
13006
13221
|
sender_id?: string | undefined;
|
|
13007
13222
|
content?: string | undefined;
|
|
13008
13223
|
attachment?: string | undefined;
|
|
13009
|
-
|
|
13224
|
+
reference?: string | undefined;
|
|
13010
13225
|
mention?: string | undefined;
|
|
13011
13226
|
reaction?: string | undefined;
|
|
13012
13227
|
repliers?: string[] | undefined;
|
|
@@ -13016,7 +13231,7 @@ export declare const ChannelDescList: {
|
|
|
13016
13231
|
sender_id?: string | undefined;
|
|
13017
13232
|
content?: string | undefined;
|
|
13018
13233
|
attachment?: string | undefined;
|
|
13019
|
-
|
|
13234
|
+
reference?: string | undefined;
|
|
13020
13235
|
mention?: string | undefined;
|
|
13021
13236
|
reaction?: string | undefined;
|
|
13022
13237
|
repliers?: (string[] & string[] & { [K_18 in Exclude<keyof I_1["channeldesc"][number]["last_seen_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
@@ -13033,7 +13248,7 @@ export declare const ChannelDescList: {
|
|
|
13033
13248
|
metadata?: (string[] & string[] & { [K_22 in Exclude<keyof I_1["channeldesc"][number]["metadata"], keyof string[]>]: never; }) | undefined;
|
|
13034
13249
|
about_me?: (string[] & string[] & { [K_23 in Exclude<keyof I_1["channeldesc"][number]["about_me"], keyof string[]>]: never; }) | undefined;
|
|
13035
13250
|
clan_name?: string | undefined;
|
|
13036
|
-
|
|
13251
|
+
app_id?: string | undefined;
|
|
13037
13252
|
is_mute?: boolean | undefined;
|
|
13038
13253
|
age_restricted?: number | undefined;
|
|
13039
13254
|
topic?: string | undefined;
|
|
@@ -13057,7 +13272,7 @@ export declare const ChannelDescList: {
|
|
|
13057
13272
|
sender_id?: string | undefined;
|
|
13058
13273
|
content?: string | undefined;
|
|
13059
13274
|
attachment?: string | undefined;
|
|
13060
|
-
|
|
13275
|
+
reference?: string | undefined;
|
|
13061
13276
|
mention?: string | undefined;
|
|
13062
13277
|
reaction?: string | undefined;
|
|
13063
13278
|
repliers?: string[] | undefined;
|
|
@@ -13068,7 +13283,7 @@ export declare const ChannelDescList: {
|
|
|
13068
13283
|
sender_id?: string | undefined;
|
|
13069
13284
|
content?: string | undefined;
|
|
13070
13285
|
attachment?: string | undefined;
|
|
13071
|
-
|
|
13286
|
+
reference?: string | undefined;
|
|
13072
13287
|
mention?: string | undefined;
|
|
13073
13288
|
reaction?: string | undefined;
|
|
13074
13289
|
repliers?: string[] | undefined;
|
|
@@ -13085,7 +13300,7 @@ export declare const ChannelDescList: {
|
|
|
13085
13300
|
metadata?: string[] | undefined;
|
|
13086
13301
|
about_me?: string[] | undefined;
|
|
13087
13302
|
clan_name?: string | undefined;
|
|
13088
|
-
|
|
13303
|
+
app_id?: string | undefined;
|
|
13089
13304
|
is_mute?: boolean | undefined;
|
|
13090
13305
|
age_restricted?: number | undefined;
|
|
13091
13306
|
topic?: string | undefined;
|
|
@@ -13166,6 +13381,22 @@ export declare const ListChannelDescsRequest: {
|
|
|
13166
13381
|
channel_type?: number | undefined;
|
|
13167
13382
|
} & { [K_1 in Exclude<keyof I_1, keyof ListChannelDescsRequest>]: never; }>(object: I_1): ListChannelDescsRequest;
|
|
13168
13383
|
};
|
|
13384
|
+
export declare const ListChannelDetailRequest: {
|
|
13385
|
+
encode(message: ListChannelDetailRequest, writer?: _m0.Writer): _m0.Writer;
|
|
13386
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): ListChannelDetailRequest;
|
|
13387
|
+
fromJSON(object: any): ListChannelDetailRequest;
|
|
13388
|
+
toJSON(message: ListChannelDetailRequest): unknown;
|
|
13389
|
+
create<I extends {
|
|
13390
|
+
channel_id?: string | undefined;
|
|
13391
|
+
} & {
|
|
13392
|
+
channel_id?: string | undefined;
|
|
13393
|
+
} & { [K in Exclude<keyof I, "channel_id">]: never; }>(base?: I | undefined): ListChannelDetailRequest;
|
|
13394
|
+
fromPartial<I_1 extends {
|
|
13395
|
+
channel_id?: string | undefined;
|
|
13396
|
+
} & {
|
|
13397
|
+
channel_id?: string | undefined;
|
|
13398
|
+
} & { [K_1 in Exclude<keyof I_1, "channel_id">]: never; }>(object: I_1): ListChannelDetailRequest;
|
|
13399
|
+
};
|
|
13169
13400
|
export declare const AddRoleChannelDescRequest: {
|
|
13170
13401
|
encode(message: AddRoleChannelDescRequest, writer?: _m0.Writer): _m0.Writer;
|
|
13171
13402
|
decode(input: _m0.Reader | Uint8Array, length?: number): AddRoleChannelDescRequest;
|
|
@@ -13200,7 +13431,7 @@ export declare const CreateChannelDescRequest: {
|
|
|
13200
13431
|
channel_label?: string | undefined;
|
|
13201
13432
|
channel_private?: number | undefined;
|
|
13202
13433
|
user_ids?: string[] | undefined;
|
|
13203
|
-
|
|
13434
|
+
app_id?: string | undefined;
|
|
13204
13435
|
} & {
|
|
13205
13436
|
clan_id?: string | undefined;
|
|
13206
13437
|
parent_id?: string | undefined;
|
|
@@ -13210,7 +13441,7 @@ export declare const CreateChannelDescRequest: {
|
|
|
13210
13441
|
channel_label?: string | undefined;
|
|
13211
13442
|
channel_private?: number | undefined;
|
|
13212
13443
|
user_ids?: (string[] & string[] & { [K in Exclude<keyof I["user_ids"], keyof string[]>]: never; }) | undefined;
|
|
13213
|
-
|
|
13444
|
+
app_id?: string | undefined;
|
|
13214
13445
|
} & { [K_1 in Exclude<keyof I, keyof CreateChannelDescRequest>]: never; }>(base?: I | undefined): CreateChannelDescRequest;
|
|
13215
13446
|
fromPartial<I_1 extends {
|
|
13216
13447
|
clan_id?: string | undefined;
|
|
@@ -13221,7 +13452,7 @@ export declare const CreateChannelDescRequest: {
|
|
|
13221
13452
|
channel_label?: string | undefined;
|
|
13222
13453
|
channel_private?: number | undefined;
|
|
13223
13454
|
user_ids?: string[] | undefined;
|
|
13224
|
-
|
|
13455
|
+
app_id?: string | undefined;
|
|
13225
13456
|
} & {
|
|
13226
13457
|
clan_id?: string | undefined;
|
|
13227
13458
|
parent_id?: string | undefined;
|
|
@@ -13231,7 +13462,7 @@ export declare const CreateChannelDescRequest: {
|
|
|
13231
13462
|
channel_label?: string | undefined;
|
|
13232
13463
|
channel_private?: number | undefined;
|
|
13233
13464
|
user_ids?: (string[] & string[] & { [K_2 in Exclude<keyof I_1["user_ids"], keyof string[]>]: never; }) | undefined;
|
|
13234
|
-
|
|
13465
|
+
app_id?: string | undefined;
|
|
13235
13466
|
} & { [K_3 in Exclude<keyof I_1, keyof CreateChannelDescRequest>]: never; }>(object: I_1): CreateChannelDescRequest;
|
|
13236
13467
|
};
|
|
13237
13468
|
export declare const DeleteChannelDescRequest: {
|
|
@@ -13259,7 +13490,7 @@ export declare const UpdateChannelDescRequest: {
|
|
|
13259
13490
|
channel_id?: string | undefined;
|
|
13260
13491
|
channel_label?: string | undefined;
|
|
13261
13492
|
category_id?: string | undefined;
|
|
13262
|
-
|
|
13493
|
+
app_id?: string | undefined;
|
|
13263
13494
|
topic?: string | undefined;
|
|
13264
13495
|
age_restricted?: number | undefined;
|
|
13265
13496
|
e2ee?: number | undefined;
|
|
@@ -13267,7 +13498,7 @@ export declare const UpdateChannelDescRequest: {
|
|
|
13267
13498
|
channel_id?: string | undefined;
|
|
13268
13499
|
channel_label?: string | undefined;
|
|
13269
13500
|
category_id?: string | undefined;
|
|
13270
|
-
|
|
13501
|
+
app_id?: string | undefined;
|
|
13271
13502
|
topic?: string | undefined;
|
|
13272
13503
|
age_restricted?: number | undefined;
|
|
13273
13504
|
e2ee?: number | undefined;
|
|
@@ -13276,7 +13507,7 @@ export declare const UpdateChannelDescRequest: {
|
|
|
13276
13507
|
channel_id?: string | undefined;
|
|
13277
13508
|
channel_label?: string | undefined;
|
|
13278
13509
|
category_id?: string | undefined;
|
|
13279
|
-
|
|
13510
|
+
app_id?: string | undefined;
|
|
13280
13511
|
topic?: string | undefined;
|
|
13281
13512
|
age_restricted?: number | undefined;
|
|
13282
13513
|
e2ee?: number | undefined;
|
|
@@ -13284,7 +13515,7 @@ export declare const UpdateChannelDescRequest: {
|
|
|
13284
13515
|
channel_id?: string | undefined;
|
|
13285
13516
|
channel_label?: string | undefined;
|
|
13286
13517
|
category_id?: string | undefined;
|
|
13287
|
-
|
|
13518
|
+
app_id?: string | undefined;
|
|
13288
13519
|
topic?: string | undefined;
|
|
13289
13520
|
age_restricted?: number | undefined;
|
|
13290
13521
|
e2ee?: number | undefined;
|
|
@@ -13438,6 +13669,7 @@ export declare const Role: {
|
|
|
13438
13669
|
role_channel_active?: number | undefined;
|
|
13439
13670
|
channel_ids?: string[] | undefined;
|
|
13440
13671
|
max_level_permission?: number | undefined;
|
|
13672
|
+
order_role?: number | undefined;
|
|
13441
13673
|
} & {
|
|
13442
13674
|
id?: string | undefined;
|
|
13443
13675
|
title?: string | undefined;
|
|
@@ -13547,6 +13779,7 @@ export declare const Role: {
|
|
|
13547
13779
|
role_channel_active?: number | undefined;
|
|
13548
13780
|
channel_ids?: (string[] & string[] & { [K_6 in Exclude<keyof I["channel_ids"], keyof string[]>]: never; }) | undefined;
|
|
13549
13781
|
max_level_permission?: number | undefined;
|
|
13782
|
+
order_role?: number | undefined;
|
|
13550
13783
|
} & { [K_7 in Exclude<keyof I, keyof Role>]: never; }>(base?: I | undefined): Role;
|
|
13551
13784
|
fromPartial<I_1 extends {
|
|
13552
13785
|
id?: string | undefined;
|
|
@@ -13587,6 +13820,7 @@ export declare const Role: {
|
|
|
13587
13820
|
role_channel_active?: number | undefined;
|
|
13588
13821
|
channel_ids?: string[] | undefined;
|
|
13589
13822
|
max_level_permission?: number | undefined;
|
|
13823
|
+
order_role?: number | undefined;
|
|
13590
13824
|
} & {
|
|
13591
13825
|
id?: string | undefined;
|
|
13592
13826
|
title?: string | undefined;
|
|
@@ -13696,6 +13930,7 @@ export declare const Role: {
|
|
|
13696
13930
|
role_channel_active?: number | undefined;
|
|
13697
13931
|
channel_ids?: (string[] & string[] & { [K_14 in Exclude<keyof I_1["channel_ids"], keyof string[]>]: never; }) | undefined;
|
|
13698
13932
|
max_level_permission?: number | undefined;
|
|
13933
|
+
order_role?: number | undefined;
|
|
13699
13934
|
} & { [K_15 in Exclude<keyof I_1, keyof Role>]: never; }>(object: I_1): Role;
|
|
13700
13935
|
};
|
|
13701
13936
|
export declare const EventManagement: {
|
|
@@ -13722,6 +13957,14 @@ export declare const EventManagement: {
|
|
|
13722
13957
|
channel_id?: string | undefined;
|
|
13723
13958
|
event_status?: number | undefined;
|
|
13724
13959
|
repeat_type?: number | undefined;
|
|
13960
|
+
is_private?: boolean | undefined;
|
|
13961
|
+
meet_room?: {
|
|
13962
|
+
meet_id?: string | undefined;
|
|
13963
|
+
room_name?: string | undefined;
|
|
13964
|
+
external_link?: string | undefined;
|
|
13965
|
+
creator_id?: string | undefined;
|
|
13966
|
+
event_id?: string | undefined;
|
|
13967
|
+
} | undefined;
|
|
13725
13968
|
} & {
|
|
13726
13969
|
id?: string | undefined;
|
|
13727
13970
|
title?: string | undefined;
|
|
@@ -13741,7 +13984,21 @@ export declare const EventManagement: {
|
|
|
13741
13984
|
channel_id?: string | undefined;
|
|
13742
13985
|
event_status?: number | undefined;
|
|
13743
13986
|
repeat_type?: number | undefined;
|
|
13744
|
-
|
|
13987
|
+
is_private?: boolean | undefined;
|
|
13988
|
+
meet_room?: ({
|
|
13989
|
+
meet_id?: string | undefined;
|
|
13990
|
+
room_name?: string | undefined;
|
|
13991
|
+
external_link?: string | undefined;
|
|
13992
|
+
creator_id?: string | undefined;
|
|
13993
|
+
event_id?: string | undefined;
|
|
13994
|
+
} & {
|
|
13995
|
+
meet_id?: string | undefined;
|
|
13996
|
+
room_name?: string | undefined;
|
|
13997
|
+
external_link?: string | undefined;
|
|
13998
|
+
creator_id?: string | undefined;
|
|
13999
|
+
event_id?: string | undefined;
|
|
14000
|
+
} & { [K_1 in Exclude<keyof I["meet_room"], keyof GenerateMezonMeetResponse>]: never; }) | undefined;
|
|
14001
|
+
} & { [K_2 in Exclude<keyof I, keyof EventManagement>]: never; }>(base?: I | undefined): EventManagement;
|
|
13745
14002
|
fromPartial<I_1 extends {
|
|
13746
14003
|
id?: string | undefined;
|
|
13747
14004
|
title?: string | undefined;
|
|
@@ -13761,6 +14018,14 @@ export declare const EventManagement: {
|
|
|
13761
14018
|
channel_id?: string | undefined;
|
|
13762
14019
|
event_status?: number | undefined;
|
|
13763
14020
|
repeat_type?: number | undefined;
|
|
14021
|
+
is_private?: boolean | undefined;
|
|
14022
|
+
meet_room?: {
|
|
14023
|
+
meet_id?: string | undefined;
|
|
14024
|
+
room_name?: string | undefined;
|
|
14025
|
+
external_link?: string | undefined;
|
|
14026
|
+
creator_id?: string | undefined;
|
|
14027
|
+
event_id?: string | undefined;
|
|
14028
|
+
} | undefined;
|
|
13764
14029
|
} & {
|
|
13765
14030
|
id?: string | undefined;
|
|
13766
14031
|
title?: string | undefined;
|
|
@@ -13774,13 +14039,27 @@ export declare const EventManagement: {
|
|
|
13774
14039
|
address?: string | undefined;
|
|
13775
14040
|
start_time?: Date | undefined;
|
|
13776
14041
|
end_time?: Date | undefined;
|
|
13777
|
-
user_ids?: (string[] & string[] & { [
|
|
14042
|
+
user_ids?: (string[] & string[] & { [K_3 in Exclude<keyof I_1["user_ids"], keyof string[]>]: never; }) | undefined;
|
|
13778
14043
|
create_time?: Date | undefined;
|
|
13779
14044
|
max_permission?: number | undefined;
|
|
13780
14045
|
channel_id?: string | undefined;
|
|
13781
14046
|
event_status?: number | undefined;
|
|
13782
14047
|
repeat_type?: number | undefined;
|
|
13783
|
-
|
|
14048
|
+
is_private?: boolean | undefined;
|
|
14049
|
+
meet_room?: ({
|
|
14050
|
+
meet_id?: string | undefined;
|
|
14051
|
+
room_name?: string | undefined;
|
|
14052
|
+
external_link?: string | undefined;
|
|
14053
|
+
creator_id?: string | undefined;
|
|
14054
|
+
event_id?: string | undefined;
|
|
14055
|
+
} & {
|
|
14056
|
+
meet_id?: string | undefined;
|
|
14057
|
+
room_name?: string | undefined;
|
|
14058
|
+
external_link?: string | undefined;
|
|
14059
|
+
creator_id?: string | undefined;
|
|
14060
|
+
event_id?: string | undefined;
|
|
14061
|
+
} & { [K_4 in Exclude<keyof I_1["meet_room"], keyof GenerateMezonMeetResponse>]: never; }) | undefined;
|
|
14062
|
+
} & { [K_5 in Exclude<keyof I_1, keyof EventManagement>]: never; }>(object: I_1): EventManagement;
|
|
13784
14063
|
};
|
|
13785
14064
|
export declare const Permission: {
|
|
13786
14065
|
encode(message: Permission, writer?: _m0.Writer): _m0.Writer;
|
|
@@ -13873,6 +14152,7 @@ export declare const PinMessage: {
|
|
|
13873
14152
|
avatar?: string | undefined;
|
|
13874
14153
|
create_time?: Date | undefined;
|
|
13875
14154
|
create_time_seconds?: number | undefined;
|
|
14155
|
+
attachment?: string | undefined;
|
|
13876
14156
|
} & {
|
|
13877
14157
|
id?: string | undefined;
|
|
13878
14158
|
message_id?: string | undefined;
|
|
@@ -13883,6 +14163,7 @@ export declare const PinMessage: {
|
|
|
13883
14163
|
avatar?: string | undefined;
|
|
13884
14164
|
create_time?: Date | undefined;
|
|
13885
14165
|
create_time_seconds?: number | undefined;
|
|
14166
|
+
attachment?: string | undefined;
|
|
13886
14167
|
} & { [K in Exclude<keyof I, keyof PinMessage>]: never; }>(base?: I | undefined): PinMessage;
|
|
13887
14168
|
fromPartial<I_1 extends {
|
|
13888
14169
|
id?: string | undefined;
|
|
@@ -13894,6 +14175,7 @@ export declare const PinMessage: {
|
|
|
13894
14175
|
avatar?: string | undefined;
|
|
13895
14176
|
create_time?: Date | undefined;
|
|
13896
14177
|
create_time_seconds?: number | undefined;
|
|
14178
|
+
attachment?: string | undefined;
|
|
13897
14179
|
} & {
|
|
13898
14180
|
id?: string | undefined;
|
|
13899
14181
|
message_id?: string | undefined;
|
|
@@ -13904,6 +14186,7 @@ export declare const PinMessage: {
|
|
|
13904
14186
|
avatar?: string | undefined;
|
|
13905
14187
|
create_time?: Date | undefined;
|
|
13906
14188
|
create_time_seconds?: number | undefined;
|
|
14189
|
+
attachment?: string | undefined;
|
|
13907
14190
|
} & { [K_1 in Exclude<keyof I_1, keyof PinMessage>]: never; }>(object: I_1): PinMessage;
|
|
13908
14191
|
};
|
|
13909
14192
|
export declare const PinMessagesList: {
|
|
@@ -13922,6 +14205,7 @@ export declare const PinMessagesList: {
|
|
|
13922
14205
|
avatar?: string | undefined;
|
|
13923
14206
|
create_time?: Date | undefined;
|
|
13924
14207
|
create_time_seconds?: number | undefined;
|
|
14208
|
+
attachment?: string | undefined;
|
|
13925
14209
|
}[] | undefined;
|
|
13926
14210
|
} & {
|
|
13927
14211
|
pin_messages_list?: ({
|
|
@@ -13934,6 +14218,7 @@ export declare const PinMessagesList: {
|
|
|
13934
14218
|
avatar?: string | undefined;
|
|
13935
14219
|
create_time?: Date | undefined;
|
|
13936
14220
|
create_time_seconds?: number | undefined;
|
|
14221
|
+
attachment?: string | undefined;
|
|
13937
14222
|
}[] & ({
|
|
13938
14223
|
id?: string | undefined;
|
|
13939
14224
|
message_id?: string | undefined;
|
|
@@ -13944,6 +14229,7 @@ export declare const PinMessagesList: {
|
|
|
13944
14229
|
avatar?: string | undefined;
|
|
13945
14230
|
create_time?: Date | undefined;
|
|
13946
14231
|
create_time_seconds?: number | undefined;
|
|
14232
|
+
attachment?: string | undefined;
|
|
13947
14233
|
} & {
|
|
13948
14234
|
id?: string | undefined;
|
|
13949
14235
|
message_id?: string | undefined;
|
|
@@ -13954,6 +14240,7 @@ export declare const PinMessagesList: {
|
|
|
13954
14240
|
avatar?: string | undefined;
|
|
13955
14241
|
create_time?: Date | undefined;
|
|
13956
14242
|
create_time_seconds?: number | undefined;
|
|
14243
|
+
attachment?: string | undefined;
|
|
13957
14244
|
} & { [K in Exclude<keyof I["pin_messages_list"][number], keyof PinMessage>]: never; })[] & { [K_1 in Exclude<keyof I["pin_messages_list"], keyof {
|
|
13958
14245
|
id?: string | undefined;
|
|
13959
14246
|
message_id?: string | undefined;
|
|
@@ -13964,6 +14251,7 @@ export declare const PinMessagesList: {
|
|
|
13964
14251
|
avatar?: string | undefined;
|
|
13965
14252
|
create_time?: Date | undefined;
|
|
13966
14253
|
create_time_seconds?: number | undefined;
|
|
14254
|
+
attachment?: string | undefined;
|
|
13967
14255
|
}[]>]: never; }) | undefined;
|
|
13968
14256
|
} & { [K_2 in Exclude<keyof I, "pin_messages_list">]: never; }>(base?: I | undefined): PinMessagesList;
|
|
13969
14257
|
fromPartial<I_1 extends {
|
|
@@ -13977,6 +14265,7 @@ export declare const PinMessagesList: {
|
|
|
13977
14265
|
avatar?: string | undefined;
|
|
13978
14266
|
create_time?: Date | undefined;
|
|
13979
14267
|
create_time_seconds?: number | undefined;
|
|
14268
|
+
attachment?: string | undefined;
|
|
13980
14269
|
}[] | undefined;
|
|
13981
14270
|
} & {
|
|
13982
14271
|
pin_messages_list?: ({
|
|
@@ -13989,6 +14278,7 @@ export declare const PinMessagesList: {
|
|
|
13989
14278
|
avatar?: string | undefined;
|
|
13990
14279
|
create_time?: Date | undefined;
|
|
13991
14280
|
create_time_seconds?: number | undefined;
|
|
14281
|
+
attachment?: string | undefined;
|
|
13992
14282
|
}[] & ({
|
|
13993
14283
|
id?: string | undefined;
|
|
13994
14284
|
message_id?: string | undefined;
|
|
@@ -13999,6 +14289,7 @@ export declare const PinMessagesList: {
|
|
|
13999
14289
|
avatar?: string | undefined;
|
|
14000
14290
|
create_time?: Date | undefined;
|
|
14001
14291
|
create_time_seconds?: number | undefined;
|
|
14292
|
+
attachment?: string | undefined;
|
|
14002
14293
|
} & {
|
|
14003
14294
|
id?: string | undefined;
|
|
14004
14295
|
message_id?: string | undefined;
|
|
@@ -14009,6 +14300,7 @@ export declare const PinMessagesList: {
|
|
|
14009
14300
|
avatar?: string | undefined;
|
|
14010
14301
|
create_time?: Date | undefined;
|
|
14011
14302
|
create_time_seconds?: number | undefined;
|
|
14303
|
+
attachment?: string | undefined;
|
|
14012
14304
|
} & { [K_3 in Exclude<keyof I_1["pin_messages_list"][number], keyof PinMessage>]: never; })[] & { [K_4 in Exclude<keyof I_1["pin_messages_list"], keyof {
|
|
14013
14305
|
id?: string | undefined;
|
|
14014
14306
|
message_id?: string | undefined;
|
|
@@ -14019,6 +14311,7 @@ export declare const PinMessagesList: {
|
|
|
14019
14311
|
avatar?: string | undefined;
|
|
14020
14312
|
create_time?: Date | undefined;
|
|
14021
14313
|
create_time_seconds?: number | undefined;
|
|
14314
|
+
attachment?: string | undefined;
|
|
14022
14315
|
}[]>]: never; }) | undefined;
|
|
14023
14316
|
} & { [K_5 in Exclude<keyof I_1, "pin_messages_list">]: never; }>(object: I_1): PinMessagesList;
|
|
14024
14317
|
};
|
|
@@ -14611,6 +14904,7 @@ export declare const RoleList: {
|
|
|
14611
14904
|
role_channel_active?: number | undefined;
|
|
14612
14905
|
channel_ids?: string[] | undefined;
|
|
14613
14906
|
max_level_permission?: number | undefined;
|
|
14907
|
+
order_role?: number | undefined;
|
|
14614
14908
|
}[] | undefined;
|
|
14615
14909
|
next_cursor?: string | undefined;
|
|
14616
14910
|
prev_cursor?: string | undefined;
|
|
@@ -14655,6 +14949,7 @@ export declare const RoleList: {
|
|
|
14655
14949
|
role_channel_active?: number | undefined;
|
|
14656
14950
|
channel_ids?: string[] | undefined;
|
|
14657
14951
|
max_level_permission?: number | undefined;
|
|
14952
|
+
order_role?: number | undefined;
|
|
14658
14953
|
}[] & ({
|
|
14659
14954
|
id?: string | undefined;
|
|
14660
14955
|
title?: string | undefined;
|
|
@@ -14694,6 +14989,7 @@ export declare const RoleList: {
|
|
|
14694
14989
|
role_channel_active?: number | undefined;
|
|
14695
14990
|
channel_ids?: string[] | undefined;
|
|
14696
14991
|
max_level_permission?: number | undefined;
|
|
14992
|
+
order_role?: number | undefined;
|
|
14697
14993
|
} & {
|
|
14698
14994
|
id?: string | undefined;
|
|
14699
14995
|
title?: string | undefined;
|
|
@@ -14803,6 +15099,7 @@ export declare const RoleList: {
|
|
|
14803
15099
|
role_channel_active?: number | undefined;
|
|
14804
15100
|
channel_ids?: (string[] & string[] & { [K_6 in Exclude<keyof I["roles"][number]["channel_ids"], keyof string[]>]: never; }) | undefined;
|
|
14805
15101
|
max_level_permission?: number | undefined;
|
|
15102
|
+
order_role?: number | undefined;
|
|
14806
15103
|
} & { [K_7 in Exclude<keyof I["roles"][number], keyof Role>]: never; })[] & { [K_8 in Exclude<keyof I["roles"], keyof {
|
|
14807
15104
|
id?: string | undefined;
|
|
14808
15105
|
title?: string | undefined;
|
|
@@ -14842,6 +15139,7 @@ export declare const RoleList: {
|
|
|
14842
15139
|
role_channel_active?: number | undefined;
|
|
14843
15140
|
channel_ids?: string[] | undefined;
|
|
14844
15141
|
max_level_permission?: number | undefined;
|
|
15142
|
+
order_role?: number | undefined;
|
|
14845
15143
|
}[]>]: never; }) | undefined;
|
|
14846
15144
|
next_cursor?: string | undefined;
|
|
14847
15145
|
prev_cursor?: string | undefined;
|
|
@@ -14887,6 +15185,7 @@ export declare const RoleList: {
|
|
|
14887
15185
|
role_channel_active?: number | undefined;
|
|
14888
15186
|
channel_ids?: string[] | undefined;
|
|
14889
15187
|
max_level_permission?: number | undefined;
|
|
15188
|
+
order_role?: number | undefined;
|
|
14890
15189
|
}[] | undefined;
|
|
14891
15190
|
next_cursor?: string | undefined;
|
|
14892
15191
|
prev_cursor?: string | undefined;
|
|
@@ -14931,6 +15230,7 @@ export declare const RoleList: {
|
|
|
14931
15230
|
role_channel_active?: number | undefined;
|
|
14932
15231
|
channel_ids?: string[] | undefined;
|
|
14933
15232
|
max_level_permission?: number | undefined;
|
|
15233
|
+
order_role?: number | undefined;
|
|
14934
15234
|
}[] & ({
|
|
14935
15235
|
id?: string | undefined;
|
|
14936
15236
|
title?: string | undefined;
|
|
@@ -14970,6 +15270,7 @@ export declare const RoleList: {
|
|
|
14970
15270
|
role_channel_active?: number | undefined;
|
|
14971
15271
|
channel_ids?: string[] | undefined;
|
|
14972
15272
|
max_level_permission?: number | undefined;
|
|
15273
|
+
order_role?: number | undefined;
|
|
14973
15274
|
} & {
|
|
14974
15275
|
id?: string | undefined;
|
|
14975
15276
|
title?: string | undefined;
|
|
@@ -15079,6 +15380,7 @@ export declare const RoleList: {
|
|
|
15079
15380
|
role_channel_active?: number | undefined;
|
|
15080
15381
|
channel_ids?: (string[] & string[] & { [K_16 in Exclude<keyof I_1["roles"][number]["channel_ids"], keyof string[]>]: never; }) | undefined;
|
|
15081
15382
|
max_level_permission?: number | undefined;
|
|
15383
|
+
order_role?: number | undefined;
|
|
15082
15384
|
} & { [K_17 in Exclude<keyof I_1["roles"][number], keyof Role>]: never; })[] & { [K_18 in Exclude<keyof I_1["roles"], keyof {
|
|
15083
15385
|
id?: string | undefined;
|
|
15084
15386
|
title?: string | undefined;
|
|
@@ -15118,6 +15420,7 @@ export declare const RoleList: {
|
|
|
15118
15420
|
role_channel_active?: number | undefined;
|
|
15119
15421
|
channel_ids?: string[] | undefined;
|
|
15120
15422
|
max_level_permission?: number | undefined;
|
|
15423
|
+
order_role?: number | undefined;
|
|
15121
15424
|
}[]>]: never; }) | undefined;
|
|
15122
15425
|
next_cursor?: string | undefined;
|
|
15123
15426
|
prev_cursor?: string | undefined;
|
|
@@ -15149,6 +15452,14 @@ export declare const EventList: {
|
|
|
15149
15452
|
channel_id?: string | undefined;
|
|
15150
15453
|
event_status?: number | undefined;
|
|
15151
15454
|
repeat_type?: number | undefined;
|
|
15455
|
+
is_private?: boolean | undefined;
|
|
15456
|
+
meet_room?: {
|
|
15457
|
+
meet_id?: string | undefined;
|
|
15458
|
+
room_name?: string | undefined;
|
|
15459
|
+
external_link?: string | undefined;
|
|
15460
|
+
creator_id?: string | undefined;
|
|
15461
|
+
event_id?: string | undefined;
|
|
15462
|
+
} | undefined;
|
|
15152
15463
|
}[] | undefined;
|
|
15153
15464
|
} & {
|
|
15154
15465
|
events?: ({
|
|
@@ -15170,6 +15481,14 @@ export declare const EventList: {
|
|
|
15170
15481
|
channel_id?: string | undefined;
|
|
15171
15482
|
event_status?: number | undefined;
|
|
15172
15483
|
repeat_type?: number | undefined;
|
|
15484
|
+
is_private?: boolean | undefined;
|
|
15485
|
+
meet_room?: {
|
|
15486
|
+
meet_id?: string | undefined;
|
|
15487
|
+
room_name?: string | undefined;
|
|
15488
|
+
external_link?: string | undefined;
|
|
15489
|
+
creator_id?: string | undefined;
|
|
15490
|
+
event_id?: string | undefined;
|
|
15491
|
+
} | undefined;
|
|
15173
15492
|
}[] & ({
|
|
15174
15493
|
id?: string | undefined;
|
|
15175
15494
|
title?: string | undefined;
|
|
@@ -15189,6 +15508,14 @@ export declare const EventList: {
|
|
|
15189
15508
|
channel_id?: string | undefined;
|
|
15190
15509
|
event_status?: number | undefined;
|
|
15191
15510
|
repeat_type?: number | undefined;
|
|
15511
|
+
is_private?: boolean | undefined;
|
|
15512
|
+
meet_room?: {
|
|
15513
|
+
meet_id?: string | undefined;
|
|
15514
|
+
room_name?: string | undefined;
|
|
15515
|
+
external_link?: string | undefined;
|
|
15516
|
+
creator_id?: string | undefined;
|
|
15517
|
+
event_id?: string | undefined;
|
|
15518
|
+
} | undefined;
|
|
15192
15519
|
} & {
|
|
15193
15520
|
id?: string | undefined;
|
|
15194
15521
|
title?: string | undefined;
|
|
@@ -15208,7 +15535,21 @@ export declare const EventList: {
|
|
|
15208
15535
|
channel_id?: string | undefined;
|
|
15209
15536
|
event_status?: number | undefined;
|
|
15210
15537
|
repeat_type?: number | undefined;
|
|
15211
|
-
|
|
15538
|
+
is_private?: boolean | undefined;
|
|
15539
|
+
meet_room?: ({
|
|
15540
|
+
meet_id?: string | undefined;
|
|
15541
|
+
room_name?: string | undefined;
|
|
15542
|
+
external_link?: string | undefined;
|
|
15543
|
+
creator_id?: string | undefined;
|
|
15544
|
+
event_id?: string | undefined;
|
|
15545
|
+
} & {
|
|
15546
|
+
meet_id?: string | undefined;
|
|
15547
|
+
room_name?: string | undefined;
|
|
15548
|
+
external_link?: string | undefined;
|
|
15549
|
+
creator_id?: string | undefined;
|
|
15550
|
+
event_id?: string | undefined;
|
|
15551
|
+
} & { [K_1 in Exclude<keyof I["events"][number]["meet_room"], keyof GenerateMezonMeetResponse>]: never; }) | undefined;
|
|
15552
|
+
} & { [K_2 in Exclude<keyof I["events"][number], keyof EventManagement>]: never; })[] & { [K_3 in Exclude<keyof I["events"], keyof {
|
|
15212
15553
|
id?: string | undefined;
|
|
15213
15554
|
title?: string | undefined;
|
|
15214
15555
|
logo?: string | undefined;
|
|
@@ -15227,8 +15568,16 @@ export declare const EventList: {
|
|
|
15227
15568
|
channel_id?: string | undefined;
|
|
15228
15569
|
event_status?: number | undefined;
|
|
15229
15570
|
repeat_type?: number | undefined;
|
|
15571
|
+
is_private?: boolean | undefined;
|
|
15572
|
+
meet_room?: {
|
|
15573
|
+
meet_id?: string | undefined;
|
|
15574
|
+
room_name?: string | undefined;
|
|
15575
|
+
external_link?: string | undefined;
|
|
15576
|
+
creator_id?: string | undefined;
|
|
15577
|
+
event_id?: string | undefined;
|
|
15578
|
+
} | undefined;
|
|
15230
15579
|
}[]>]: never; }) | undefined;
|
|
15231
|
-
} & { [
|
|
15580
|
+
} & { [K_4 in Exclude<keyof I, "events">]: never; }>(base?: I | undefined): EventList;
|
|
15232
15581
|
fromPartial<I_1 extends {
|
|
15233
15582
|
events?: {
|
|
15234
15583
|
id?: string | undefined;
|
|
@@ -15249,6 +15598,14 @@ export declare const EventList: {
|
|
|
15249
15598
|
channel_id?: string | undefined;
|
|
15250
15599
|
event_status?: number | undefined;
|
|
15251
15600
|
repeat_type?: number | undefined;
|
|
15601
|
+
is_private?: boolean | undefined;
|
|
15602
|
+
meet_room?: {
|
|
15603
|
+
meet_id?: string | undefined;
|
|
15604
|
+
room_name?: string | undefined;
|
|
15605
|
+
external_link?: string | undefined;
|
|
15606
|
+
creator_id?: string | undefined;
|
|
15607
|
+
event_id?: string | undefined;
|
|
15608
|
+
} | undefined;
|
|
15252
15609
|
}[] | undefined;
|
|
15253
15610
|
} & {
|
|
15254
15611
|
events?: ({
|
|
@@ -15270,6 +15627,14 @@ export declare const EventList: {
|
|
|
15270
15627
|
channel_id?: string | undefined;
|
|
15271
15628
|
event_status?: number | undefined;
|
|
15272
15629
|
repeat_type?: number | undefined;
|
|
15630
|
+
is_private?: boolean | undefined;
|
|
15631
|
+
meet_room?: {
|
|
15632
|
+
meet_id?: string | undefined;
|
|
15633
|
+
room_name?: string | undefined;
|
|
15634
|
+
external_link?: string | undefined;
|
|
15635
|
+
creator_id?: string | undefined;
|
|
15636
|
+
event_id?: string | undefined;
|
|
15637
|
+
} | undefined;
|
|
15273
15638
|
}[] & ({
|
|
15274
15639
|
id?: string | undefined;
|
|
15275
15640
|
title?: string | undefined;
|
|
@@ -15289,6 +15654,14 @@ export declare const EventList: {
|
|
|
15289
15654
|
channel_id?: string | undefined;
|
|
15290
15655
|
event_status?: number | undefined;
|
|
15291
15656
|
repeat_type?: number | undefined;
|
|
15657
|
+
is_private?: boolean | undefined;
|
|
15658
|
+
meet_room?: {
|
|
15659
|
+
meet_id?: string | undefined;
|
|
15660
|
+
room_name?: string | undefined;
|
|
15661
|
+
external_link?: string | undefined;
|
|
15662
|
+
creator_id?: string | undefined;
|
|
15663
|
+
event_id?: string | undefined;
|
|
15664
|
+
} | undefined;
|
|
15292
15665
|
} & {
|
|
15293
15666
|
id?: string | undefined;
|
|
15294
15667
|
title?: string | undefined;
|
|
@@ -15302,13 +15675,27 @@ export declare const EventList: {
|
|
|
15302
15675
|
address?: string | undefined;
|
|
15303
15676
|
start_time?: Date | undefined;
|
|
15304
15677
|
end_time?: Date | undefined;
|
|
15305
|
-
user_ids?: (string[] & string[] & { [
|
|
15678
|
+
user_ids?: (string[] & string[] & { [K_5 in Exclude<keyof I_1["events"][number]["user_ids"], keyof string[]>]: never; }) | undefined;
|
|
15306
15679
|
create_time?: Date | undefined;
|
|
15307
15680
|
max_permission?: number | undefined;
|
|
15308
15681
|
channel_id?: string | undefined;
|
|
15309
15682
|
event_status?: number | undefined;
|
|
15310
15683
|
repeat_type?: number | undefined;
|
|
15311
|
-
|
|
15684
|
+
is_private?: boolean | undefined;
|
|
15685
|
+
meet_room?: ({
|
|
15686
|
+
meet_id?: string | undefined;
|
|
15687
|
+
room_name?: string | undefined;
|
|
15688
|
+
external_link?: string | undefined;
|
|
15689
|
+
creator_id?: string | undefined;
|
|
15690
|
+
event_id?: string | undefined;
|
|
15691
|
+
} & {
|
|
15692
|
+
meet_id?: string | undefined;
|
|
15693
|
+
room_name?: string | undefined;
|
|
15694
|
+
external_link?: string | undefined;
|
|
15695
|
+
creator_id?: string | undefined;
|
|
15696
|
+
event_id?: string | undefined;
|
|
15697
|
+
} & { [K_6 in Exclude<keyof I_1["events"][number]["meet_room"], keyof GenerateMezonMeetResponse>]: never; }) | undefined;
|
|
15698
|
+
} & { [K_7 in Exclude<keyof I_1["events"][number], keyof EventManagement>]: never; })[] & { [K_8 in Exclude<keyof I_1["events"], keyof {
|
|
15312
15699
|
id?: string | undefined;
|
|
15313
15700
|
title?: string | undefined;
|
|
15314
15701
|
logo?: string | undefined;
|
|
@@ -15327,8 +15714,16 @@ export declare const EventList: {
|
|
|
15327
15714
|
channel_id?: string | undefined;
|
|
15328
15715
|
event_status?: number | undefined;
|
|
15329
15716
|
repeat_type?: number | undefined;
|
|
15717
|
+
is_private?: boolean | undefined;
|
|
15718
|
+
meet_room?: {
|
|
15719
|
+
meet_id?: string | undefined;
|
|
15720
|
+
room_name?: string | undefined;
|
|
15721
|
+
external_link?: string | undefined;
|
|
15722
|
+
creator_id?: string | undefined;
|
|
15723
|
+
event_id?: string | undefined;
|
|
15724
|
+
} | undefined;
|
|
15330
15725
|
}[]>]: never; }) | undefined;
|
|
15331
|
-
} & { [
|
|
15726
|
+
} & { [K_9 in Exclude<keyof I_1, "events">]: never; }>(object: I_1): EventList;
|
|
15332
15727
|
};
|
|
15333
15728
|
export declare const PermissionList: {
|
|
15334
15729
|
encode(message: PermissionList, writer?: _m0.Writer): _m0.Writer;
|
|
@@ -15682,6 +16077,7 @@ export declare const CreateRoleRequest: {
|
|
|
15682
16077
|
max_permission_id?: string | undefined;
|
|
15683
16078
|
add_user_ids?: string[] | undefined;
|
|
15684
16079
|
active_permission_ids?: string[] | undefined;
|
|
16080
|
+
order_role?: number | undefined;
|
|
15685
16081
|
} & {
|
|
15686
16082
|
title?: string | undefined;
|
|
15687
16083
|
color?: string | undefined;
|
|
@@ -15693,6 +16089,7 @@ export declare const CreateRoleRequest: {
|
|
|
15693
16089
|
max_permission_id?: string | undefined;
|
|
15694
16090
|
add_user_ids?: (string[] & string[] & { [K in Exclude<keyof I["add_user_ids"], keyof string[]>]: never; }) | undefined;
|
|
15695
16091
|
active_permission_ids?: (string[] & string[] & { [K_1 in Exclude<keyof I["active_permission_ids"], keyof string[]>]: never; }) | undefined;
|
|
16092
|
+
order_role?: number | undefined;
|
|
15696
16093
|
} & { [K_2 in Exclude<keyof I, keyof CreateRoleRequest>]: never; }>(base?: I | undefined): CreateRoleRequest;
|
|
15697
16094
|
fromPartial<I_1 extends {
|
|
15698
16095
|
title?: string | undefined;
|
|
@@ -15705,6 +16102,7 @@ export declare const CreateRoleRequest: {
|
|
|
15705
16102
|
max_permission_id?: string | undefined;
|
|
15706
16103
|
add_user_ids?: string[] | undefined;
|
|
15707
16104
|
active_permission_ids?: string[] | undefined;
|
|
16105
|
+
order_role?: number | undefined;
|
|
15708
16106
|
} & {
|
|
15709
16107
|
title?: string | undefined;
|
|
15710
16108
|
color?: string | undefined;
|
|
@@ -15716,6 +16114,7 @@ export declare const CreateRoleRequest: {
|
|
|
15716
16114
|
max_permission_id?: string | undefined;
|
|
15717
16115
|
add_user_ids?: (string[] & string[] & { [K_3 in Exclude<keyof I_1["add_user_ids"], keyof string[]>]: never; }) | undefined;
|
|
15718
16116
|
active_permission_ids?: (string[] & string[] & { [K_4 in Exclude<keyof I_1["active_permission_ids"], keyof string[]>]: never; }) | undefined;
|
|
16117
|
+
order_role?: number | undefined;
|
|
15719
16118
|
} & { [K_5 in Exclude<keyof I_1, keyof CreateRoleRequest>]: never; }>(object: I_1): CreateRoleRequest;
|
|
15720
16119
|
};
|
|
15721
16120
|
export declare const CreateEventRequest: {
|
|
@@ -15739,6 +16138,14 @@ export declare const CreateEventRequest: {
|
|
|
15739
16138
|
repeat_type?: number | undefined;
|
|
15740
16139
|
creator_id?: string | undefined;
|
|
15741
16140
|
user_id?: string | undefined;
|
|
16141
|
+
is_private?: boolean | undefined;
|
|
16142
|
+
meet_room?: {
|
|
16143
|
+
meet_id?: string | undefined;
|
|
16144
|
+
room_name?: string | undefined;
|
|
16145
|
+
external_link?: string | undefined;
|
|
16146
|
+
creator_id?: string | undefined;
|
|
16147
|
+
event_id?: string | undefined;
|
|
16148
|
+
} | undefined;
|
|
15742
16149
|
} & {
|
|
15743
16150
|
title?: string | undefined;
|
|
15744
16151
|
logo?: string | undefined;
|
|
@@ -15755,7 +16162,21 @@ export declare const CreateEventRequest: {
|
|
|
15755
16162
|
repeat_type?: number | undefined;
|
|
15756
16163
|
creator_id?: string | undefined;
|
|
15757
16164
|
user_id?: string | undefined;
|
|
15758
|
-
|
|
16165
|
+
is_private?: boolean | undefined;
|
|
16166
|
+
meet_room?: ({
|
|
16167
|
+
meet_id?: string | undefined;
|
|
16168
|
+
room_name?: string | undefined;
|
|
16169
|
+
external_link?: string | undefined;
|
|
16170
|
+
creator_id?: string | undefined;
|
|
16171
|
+
event_id?: string | undefined;
|
|
16172
|
+
} & {
|
|
16173
|
+
meet_id?: string | undefined;
|
|
16174
|
+
room_name?: string | undefined;
|
|
16175
|
+
external_link?: string | undefined;
|
|
16176
|
+
creator_id?: string | undefined;
|
|
16177
|
+
event_id?: string | undefined;
|
|
16178
|
+
} & { [K in Exclude<keyof I["meet_room"], keyof GenerateMezonMeetResponse>]: never; }) | undefined;
|
|
16179
|
+
} & { [K_1 in Exclude<keyof I, keyof CreateEventRequest>]: never; }>(base?: I | undefined): CreateEventRequest;
|
|
15759
16180
|
fromPartial<I_1 extends {
|
|
15760
16181
|
title?: string | undefined;
|
|
15761
16182
|
logo?: string | undefined;
|
|
@@ -15772,6 +16193,14 @@ export declare const CreateEventRequest: {
|
|
|
15772
16193
|
repeat_type?: number | undefined;
|
|
15773
16194
|
creator_id?: string | undefined;
|
|
15774
16195
|
user_id?: string | undefined;
|
|
16196
|
+
is_private?: boolean | undefined;
|
|
16197
|
+
meet_room?: {
|
|
16198
|
+
meet_id?: string | undefined;
|
|
16199
|
+
room_name?: string | undefined;
|
|
16200
|
+
external_link?: string | undefined;
|
|
16201
|
+
creator_id?: string | undefined;
|
|
16202
|
+
event_id?: string | undefined;
|
|
16203
|
+
} | undefined;
|
|
15775
16204
|
} & {
|
|
15776
16205
|
title?: string | undefined;
|
|
15777
16206
|
logo?: string | undefined;
|
|
@@ -15788,7 +16217,21 @@ export declare const CreateEventRequest: {
|
|
|
15788
16217
|
repeat_type?: number | undefined;
|
|
15789
16218
|
creator_id?: string | undefined;
|
|
15790
16219
|
user_id?: string | undefined;
|
|
15791
|
-
|
|
16220
|
+
is_private?: boolean | undefined;
|
|
16221
|
+
meet_room?: ({
|
|
16222
|
+
meet_id?: string | undefined;
|
|
16223
|
+
room_name?: string | undefined;
|
|
16224
|
+
external_link?: string | undefined;
|
|
16225
|
+
creator_id?: string | undefined;
|
|
16226
|
+
event_id?: string | undefined;
|
|
16227
|
+
} & {
|
|
16228
|
+
meet_id?: string | undefined;
|
|
16229
|
+
room_name?: string | undefined;
|
|
16230
|
+
external_link?: string | undefined;
|
|
16231
|
+
creator_id?: string | undefined;
|
|
16232
|
+
event_id?: string | undefined;
|
|
16233
|
+
} & { [K_2 in Exclude<keyof I_1["meet_room"], keyof GenerateMezonMeetResponse>]: never; }) | undefined;
|
|
16234
|
+
} & { [K_3 in Exclude<keyof I_1, keyof CreateEventRequest>]: never; }>(object: I_1): CreateEventRequest;
|
|
15792
16235
|
};
|
|
15793
16236
|
export declare const UpdateEventRequest: {
|
|
15794
16237
|
encode(message: UpdateEventRequest, writer?: _m0.Writer): _m0.Writer;
|
|
@@ -17837,6 +18280,7 @@ export declare const App: {
|
|
|
17837
18280
|
token?: string | undefined;
|
|
17838
18281
|
role?: number | undefined;
|
|
17839
18282
|
about?: string | undefined;
|
|
18283
|
+
app_url?: string | undefined;
|
|
17840
18284
|
} & {
|
|
17841
18285
|
id?: string | undefined;
|
|
17842
18286
|
appname?: string | undefined;
|
|
@@ -17847,6 +18291,7 @@ export declare const App: {
|
|
|
17847
18291
|
token?: string | undefined;
|
|
17848
18292
|
role?: number | undefined;
|
|
17849
18293
|
about?: string | undefined;
|
|
18294
|
+
app_url?: string | undefined;
|
|
17850
18295
|
} & { [K in Exclude<keyof I, keyof App>]: never; }>(base?: I | undefined): App;
|
|
17851
18296
|
fromPartial<I_1 extends {
|
|
17852
18297
|
id?: string | undefined;
|
|
@@ -17858,6 +18303,7 @@ export declare const App: {
|
|
|
17858
18303
|
token?: string | undefined;
|
|
17859
18304
|
role?: number | undefined;
|
|
17860
18305
|
about?: string | undefined;
|
|
18306
|
+
app_url?: string | undefined;
|
|
17861
18307
|
} & {
|
|
17862
18308
|
id?: string | undefined;
|
|
17863
18309
|
appname?: string | undefined;
|
|
@@ -17868,6 +18314,7 @@ export declare const App: {
|
|
|
17868
18314
|
token?: string | undefined;
|
|
17869
18315
|
role?: number | undefined;
|
|
17870
18316
|
about?: string | undefined;
|
|
18317
|
+
app_url?: string | undefined;
|
|
17871
18318
|
} & { [K_1 in Exclude<keyof I_1, keyof App>]: never; }>(object: I_1): App;
|
|
17872
18319
|
};
|
|
17873
18320
|
export declare const AppDeleteRequest: {
|
|
@@ -17906,6 +18353,7 @@ export declare const AppList: {
|
|
|
17906
18353
|
token?: string | undefined;
|
|
17907
18354
|
role?: number | undefined;
|
|
17908
18355
|
about?: string | undefined;
|
|
18356
|
+
app_url?: string | undefined;
|
|
17909
18357
|
}[] | undefined;
|
|
17910
18358
|
total_count?: number | undefined;
|
|
17911
18359
|
next_cursor?: string | undefined;
|
|
@@ -17920,6 +18368,7 @@ export declare const AppList: {
|
|
|
17920
18368
|
token?: string | undefined;
|
|
17921
18369
|
role?: number | undefined;
|
|
17922
18370
|
about?: string | undefined;
|
|
18371
|
+
app_url?: string | undefined;
|
|
17923
18372
|
}[] & ({
|
|
17924
18373
|
id?: string | undefined;
|
|
17925
18374
|
appname?: string | undefined;
|
|
@@ -17930,6 +18379,7 @@ export declare const AppList: {
|
|
|
17930
18379
|
token?: string | undefined;
|
|
17931
18380
|
role?: number | undefined;
|
|
17932
18381
|
about?: string | undefined;
|
|
18382
|
+
app_url?: string | undefined;
|
|
17933
18383
|
} & {
|
|
17934
18384
|
id?: string | undefined;
|
|
17935
18385
|
appname?: string | undefined;
|
|
@@ -17940,6 +18390,7 @@ export declare const AppList: {
|
|
|
17940
18390
|
token?: string | undefined;
|
|
17941
18391
|
role?: number | undefined;
|
|
17942
18392
|
about?: string | undefined;
|
|
18393
|
+
app_url?: string | undefined;
|
|
17943
18394
|
} & { [K in Exclude<keyof I["apps"][number], keyof App>]: never; })[] & { [K_1 in Exclude<keyof I["apps"], keyof {
|
|
17944
18395
|
id?: string | undefined;
|
|
17945
18396
|
appname?: string | undefined;
|
|
@@ -17950,6 +18401,7 @@ export declare const AppList: {
|
|
|
17950
18401
|
token?: string | undefined;
|
|
17951
18402
|
role?: number | undefined;
|
|
17952
18403
|
about?: string | undefined;
|
|
18404
|
+
app_url?: string | undefined;
|
|
17953
18405
|
}[]>]: never; }) | undefined;
|
|
17954
18406
|
total_count?: number | undefined;
|
|
17955
18407
|
next_cursor?: string | undefined;
|
|
@@ -17965,6 +18417,7 @@ export declare const AppList: {
|
|
|
17965
18417
|
token?: string | undefined;
|
|
17966
18418
|
role?: number | undefined;
|
|
17967
18419
|
about?: string | undefined;
|
|
18420
|
+
app_url?: string | undefined;
|
|
17968
18421
|
}[] | undefined;
|
|
17969
18422
|
total_count?: number | undefined;
|
|
17970
18423
|
next_cursor?: string | undefined;
|
|
@@ -17979,6 +18432,7 @@ export declare const AppList: {
|
|
|
17979
18432
|
token?: string | undefined;
|
|
17980
18433
|
role?: number | undefined;
|
|
17981
18434
|
about?: string | undefined;
|
|
18435
|
+
app_url?: string | undefined;
|
|
17982
18436
|
}[] & ({
|
|
17983
18437
|
id?: string | undefined;
|
|
17984
18438
|
appname?: string | undefined;
|
|
@@ -17989,6 +18443,7 @@ export declare const AppList: {
|
|
|
17989
18443
|
token?: string | undefined;
|
|
17990
18444
|
role?: number | undefined;
|
|
17991
18445
|
about?: string | undefined;
|
|
18446
|
+
app_url?: string | undefined;
|
|
17992
18447
|
} & {
|
|
17993
18448
|
id?: string | undefined;
|
|
17994
18449
|
appname?: string | undefined;
|
|
@@ -17999,6 +18454,7 @@ export declare const AppList: {
|
|
|
17999
18454
|
token?: string | undefined;
|
|
18000
18455
|
role?: number | undefined;
|
|
18001
18456
|
about?: string | undefined;
|
|
18457
|
+
app_url?: string | undefined;
|
|
18002
18458
|
} & { [K_3 in Exclude<keyof I_1["apps"][number], keyof App>]: never; })[] & { [K_4 in Exclude<keyof I_1["apps"], keyof {
|
|
18003
18459
|
id?: string | undefined;
|
|
18004
18460
|
appname?: string | undefined;
|
|
@@ -18009,6 +18465,7 @@ export declare const AppList: {
|
|
|
18009
18465
|
token?: string | undefined;
|
|
18010
18466
|
role?: number | undefined;
|
|
18011
18467
|
about?: string | undefined;
|
|
18468
|
+
app_url?: string | undefined;
|
|
18012
18469
|
}[]>]: never; }) | undefined;
|
|
18013
18470
|
total_count?: number | undefined;
|
|
18014
18471
|
next_cursor?: string | undefined;
|
|
@@ -18025,12 +18482,18 @@ export declare const AddAppRequest: {
|
|
|
18025
18482
|
creator_id?: string | undefined;
|
|
18026
18483
|
role?: number | undefined;
|
|
18027
18484
|
is_shadow?: boolean | undefined;
|
|
18485
|
+
app_url?: string | undefined;
|
|
18486
|
+
app_logo?: string | undefined;
|
|
18487
|
+
about_me?: string | undefined;
|
|
18028
18488
|
} & {
|
|
18029
18489
|
appname?: string | undefined;
|
|
18030
18490
|
token?: string | undefined;
|
|
18031
18491
|
creator_id?: string | undefined;
|
|
18032
18492
|
role?: number | undefined;
|
|
18033
18493
|
is_shadow?: boolean | undefined;
|
|
18494
|
+
app_url?: string | undefined;
|
|
18495
|
+
app_logo?: string | undefined;
|
|
18496
|
+
about_me?: string | undefined;
|
|
18034
18497
|
} & { [K in Exclude<keyof I, keyof AddAppRequest>]: never; }>(base?: I | undefined): AddAppRequest;
|
|
18035
18498
|
fromPartial<I_1 extends {
|
|
18036
18499
|
appname?: string | undefined;
|
|
@@ -18038,12 +18501,18 @@ export declare const AddAppRequest: {
|
|
|
18038
18501
|
creator_id?: string | undefined;
|
|
18039
18502
|
role?: number | undefined;
|
|
18040
18503
|
is_shadow?: boolean | undefined;
|
|
18504
|
+
app_url?: string | undefined;
|
|
18505
|
+
app_logo?: string | undefined;
|
|
18506
|
+
about_me?: string | undefined;
|
|
18041
18507
|
} & {
|
|
18042
18508
|
appname?: string | undefined;
|
|
18043
18509
|
token?: string | undefined;
|
|
18044
18510
|
creator_id?: string | undefined;
|
|
18045
18511
|
role?: number | undefined;
|
|
18046
18512
|
is_shadow?: boolean | undefined;
|
|
18513
|
+
app_url?: string | undefined;
|
|
18514
|
+
app_logo?: string | undefined;
|
|
18515
|
+
about_me?: string | undefined;
|
|
18047
18516
|
} & { [K_1 in Exclude<keyof I_1, keyof AddAppRequest>]: never; }>(object: I_1): AddAppRequest;
|
|
18048
18517
|
};
|
|
18049
18518
|
export declare const ListAppsRequest: {
|
|
@@ -18082,6 +18551,7 @@ export declare const UpdateAppRequest: {
|
|
|
18082
18551
|
applogo?: string | undefined;
|
|
18083
18552
|
token?: string | undefined;
|
|
18084
18553
|
about?: string | undefined;
|
|
18554
|
+
app_url?: string | undefined;
|
|
18085
18555
|
} & {
|
|
18086
18556
|
id?: string | undefined;
|
|
18087
18557
|
appname?: string | undefined;
|
|
@@ -18089,6 +18559,7 @@ export declare const UpdateAppRequest: {
|
|
|
18089
18559
|
applogo?: string | undefined;
|
|
18090
18560
|
token?: string | undefined;
|
|
18091
18561
|
about?: string | undefined;
|
|
18562
|
+
app_url?: string | undefined;
|
|
18092
18563
|
} & { [K in Exclude<keyof I, keyof UpdateAppRequest>]: never; }>(base?: I | undefined): UpdateAppRequest;
|
|
18093
18564
|
fromPartial<I_1 extends {
|
|
18094
18565
|
id?: string | undefined;
|
|
@@ -18097,6 +18568,7 @@ export declare const UpdateAppRequest: {
|
|
|
18097
18568
|
applogo?: string | undefined;
|
|
18098
18569
|
token?: string | undefined;
|
|
18099
18570
|
about?: string | undefined;
|
|
18571
|
+
app_url?: string | undefined;
|
|
18100
18572
|
} & {
|
|
18101
18573
|
id?: string | undefined;
|
|
18102
18574
|
appname?: string | undefined;
|
|
@@ -18104,6 +18576,7 @@ export declare const UpdateAppRequest: {
|
|
|
18104
18576
|
applogo?: string | undefined;
|
|
18105
18577
|
token?: string | undefined;
|
|
18106
18578
|
about?: string | undefined;
|
|
18579
|
+
app_url?: string | undefined;
|
|
18107
18580
|
} & { [K_1 in Exclude<keyof I_1, keyof UpdateAppRequest>]: never; }>(object: I_1): UpdateAppRequest;
|
|
18108
18581
|
};
|
|
18109
18582
|
export declare const AppId: {
|
|
@@ -18803,7 +19276,7 @@ export declare const ListChannelAppsResponse: {
|
|
|
18803
19276
|
clan_id?: string | undefined;
|
|
18804
19277
|
channel_id?: string | undefined;
|
|
18805
19278
|
app_id?: string | undefined;
|
|
18806
|
-
|
|
19279
|
+
app_url?: string | undefined;
|
|
18807
19280
|
}[] | undefined;
|
|
18808
19281
|
} & {
|
|
18809
19282
|
channel_apps?: ({
|
|
@@ -18811,25 +19284,25 @@ export declare const ListChannelAppsResponse: {
|
|
|
18811
19284
|
clan_id?: string | undefined;
|
|
18812
19285
|
channel_id?: string | undefined;
|
|
18813
19286
|
app_id?: string | undefined;
|
|
18814
|
-
|
|
19287
|
+
app_url?: string | undefined;
|
|
18815
19288
|
}[] & ({
|
|
18816
19289
|
id?: string | undefined;
|
|
18817
19290
|
clan_id?: string | undefined;
|
|
18818
19291
|
channel_id?: string | undefined;
|
|
18819
19292
|
app_id?: string | undefined;
|
|
18820
|
-
|
|
19293
|
+
app_url?: string | undefined;
|
|
18821
19294
|
} & {
|
|
18822
19295
|
id?: string | undefined;
|
|
18823
19296
|
clan_id?: string | undefined;
|
|
18824
19297
|
channel_id?: string | undefined;
|
|
18825
19298
|
app_id?: string | undefined;
|
|
18826
|
-
|
|
19299
|
+
app_url?: string | undefined;
|
|
18827
19300
|
} & { [K in Exclude<keyof I["channel_apps"][number], keyof ChannelAppResponse>]: never; })[] & { [K_1 in Exclude<keyof I["channel_apps"], keyof {
|
|
18828
19301
|
id?: string | undefined;
|
|
18829
19302
|
clan_id?: string | undefined;
|
|
18830
19303
|
channel_id?: string | undefined;
|
|
18831
19304
|
app_id?: string | undefined;
|
|
18832
|
-
|
|
19305
|
+
app_url?: string | undefined;
|
|
18833
19306
|
}[]>]: never; }) | undefined;
|
|
18834
19307
|
} & { [K_2 in Exclude<keyof I, "channel_apps">]: never; }>(base?: I | undefined): ListChannelAppsResponse;
|
|
18835
19308
|
fromPartial<I_1 extends {
|
|
@@ -18838,7 +19311,7 @@ export declare const ListChannelAppsResponse: {
|
|
|
18838
19311
|
clan_id?: string | undefined;
|
|
18839
19312
|
channel_id?: string | undefined;
|
|
18840
19313
|
app_id?: string | undefined;
|
|
18841
|
-
|
|
19314
|
+
app_url?: string | undefined;
|
|
18842
19315
|
}[] | undefined;
|
|
18843
19316
|
} & {
|
|
18844
19317
|
channel_apps?: ({
|
|
@@ -18846,25 +19319,25 @@ export declare const ListChannelAppsResponse: {
|
|
|
18846
19319
|
clan_id?: string | undefined;
|
|
18847
19320
|
channel_id?: string | undefined;
|
|
18848
19321
|
app_id?: string | undefined;
|
|
18849
|
-
|
|
19322
|
+
app_url?: string | undefined;
|
|
18850
19323
|
}[] & ({
|
|
18851
19324
|
id?: string | undefined;
|
|
18852
19325
|
clan_id?: string | undefined;
|
|
18853
19326
|
channel_id?: string | undefined;
|
|
18854
19327
|
app_id?: string | undefined;
|
|
18855
|
-
|
|
19328
|
+
app_url?: string | undefined;
|
|
18856
19329
|
} & {
|
|
18857
19330
|
id?: string | undefined;
|
|
18858
19331
|
clan_id?: string | undefined;
|
|
18859
19332
|
channel_id?: string | undefined;
|
|
18860
19333
|
app_id?: string | undefined;
|
|
18861
|
-
|
|
19334
|
+
app_url?: string | undefined;
|
|
18862
19335
|
} & { [K_3 in Exclude<keyof I_1["channel_apps"][number], keyof ChannelAppResponse>]: never; })[] & { [K_4 in Exclude<keyof I_1["channel_apps"], keyof {
|
|
18863
19336
|
id?: string | undefined;
|
|
18864
19337
|
clan_id?: string | undefined;
|
|
18865
19338
|
channel_id?: string | undefined;
|
|
18866
19339
|
app_id?: string | undefined;
|
|
18867
|
-
|
|
19340
|
+
app_url?: string | undefined;
|
|
18868
19341
|
}[]>]: never; }) | undefined;
|
|
18869
19342
|
} & { [K_5 in Exclude<keyof I_1, "channel_apps">]: never; }>(object: I_1): ListChannelAppsResponse;
|
|
18870
19343
|
};
|
|
@@ -18878,26 +19351,26 @@ export declare const ChannelAppResponse: {
|
|
|
18878
19351
|
clan_id?: string | undefined;
|
|
18879
19352
|
channel_id?: string | undefined;
|
|
18880
19353
|
app_id?: string | undefined;
|
|
18881
|
-
|
|
19354
|
+
app_url?: string | undefined;
|
|
18882
19355
|
} & {
|
|
18883
19356
|
id?: string | undefined;
|
|
18884
19357
|
clan_id?: string | undefined;
|
|
18885
19358
|
channel_id?: string | undefined;
|
|
18886
19359
|
app_id?: string | undefined;
|
|
18887
|
-
|
|
19360
|
+
app_url?: string | undefined;
|
|
18888
19361
|
} & { [K in Exclude<keyof I, keyof ChannelAppResponse>]: never; }>(base?: I | undefined): ChannelAppResponse;
|
|
18889
19362
|
fromPartial<I_1 extends {
|
|
18890
19363
|
id?: string | undefined;
|
|
18891
19364
|
clan_id?: string | undefined;
|
|
18892
19365
|
channel_id?: string | undefined;
|
|
18893
19366
|
app_id?: string | undefined;
|
|
18894
|
-
|
|
19367
|
+
app_url?: string | undefined;
|
|
18895
19368
|
} & {
|
|
18896
19369
|
id?: string | undefined;
|
|
18897
19370
|
clan_id?: string | undefined;
|
|
18898
19371
|
channel_id?: string | undefined;
|
|
18899
19372
|
app_id?: string | undefined;
|
|
18900
|
-
|
|
19373
|
+
app_url?: string | undefined;
|
|
18901
19374
|
} & { [K_1 in Exclude<keyof I_1, keyof ChannelAppResponse>]: never; }>(object: I_1): ChannelAppResponse;
|
|
18902
19375
|
};
|
|
18903
19376
|
export declare const AllUserClans: {
|
|
@@ -19224,6 +19697,7 @@ export declare const RoleListEventResponse: {
|
|
|
19224
19697
|
role_channel_active?: number | undefined;
|
|
19225
19698
|
channel_ids?: string[] | undefined;
|
|
19226
19699
|
max_level_permission?: number | undefined;
|
|
19700
|
+
order_role?: number | undefined;
|
|
19227
19701
|
}[] | undefined;
|
|
19228
19702
|
next_cursor?: string | undefined;
|
|
19229
19703
|
prev_cursor?: string | undefined;
|
|
@@ -19274,6 +19748,7 @@ export declare const RoleListEventResponse: {
|
|
|
19274
19748
|
role_channel_active?: number | undefined;
|
|
19275
19749
|
channel_ids?: string[] | undefined;
|
|
19276
19750
|
max_level_permission?: number | undefined;
|
|
19751
|
+
order_role?: number | undefined;
|
|
19277
19752
|
}[] | undefined;
|
|
19278
19753
|
next_cursor?: string | undefined;
|
|
19279
19754
|
prev_cursor?: string | undefined;
|
|
@@ -19318,6 +19793,7 @@ export declare const RoleListEventResponse: {
|
|
|
19318
19793
|
role_channel_active?: number | undefined;
|
|
19319
19794
|
channel_ids?: string[] | undefined;
|
|
19320
19795
|
max_level_permission?: number | undefined;
|
|
19796
|
+
order_role?: number | undefined;
|
|
19321
19797
|
}[] & ({
|
|
19322
19798
|
id?: string | undefined;
|
|
19323
19799
|
title?: string | undefined;
|
|
@@ -19357,6 +19833,7 @@ export declare const RoleListEventResponse: {
|
|
|
19357
19833
|
role_channel_active?: number | undefined;
|
|
19358
19834
|
channel_ids?: string[] | undefined;
|
|
19359
19835
|
max_level_permission?: number | undefined;
|
|
19836
|
+
order_role?: number | undefined;
|
|
19360
19837
|
} & {
|
|
19361
19838
|
id?: string | undefined;
|
|
19362
19839
|
title?: string | undefined;
|
|
@@ -19466,6 +19943,7 @@ export declare const RoleListEventResponse: {
|
|
|
19466
19943
|
role_channel_active?: number | undefined;
|
|
19467
19944
|
channel_ids?: (string[] & string[] & { [K_6 in Exclude<keyof I["roles"]["roles"][number]["channel_ids"], keyof string[]>]: never; }) | undefined;
|
|
19468
19945
|
max_level_permission?: number | undefined;
|
|
19946
|
+
order_role?: number | undefined;
|
|
19469
19947
|
} & { [K_7 in Exclude<keyof I["roles"]["roles"][number], keyof Role>]: never; })[] & { [K_8 in Exclude<keyof I["roles"]["roles"], keyof {
|
|
19470
19948
|
id?: string | undefined;
|
|
19471
19949
|
title?: string | undefined;
|
|
@@ -19505,6 +19983,7 @@ export declare const RoleListEventResponse: {
|
|
|
19505
19983
|
role_channel_active?: number | undefined;
|
|
19506
19984
|
channel_ids?: string[] | undefined;
|
|
19507
19985
|
max_level_permission?: number | undefined;
|
|
19986
|
+
order_role?: number | undefined;
|
|
19508
19987
|
}[]>]: never; }) | undefined;
|
|
19509
19988
|
next_cursor?: string | undefined;
|
|
19510
19989
|
prev_cursor?: string | undefined;
|
|
@@ -19556,6 +20035,7 @@ export declare const RoleListEventResponse: {
|
|
|
19556
20035
|
role_channel_active?: number | undefined;
|
|
19557
20036
|
channel_ids?: string[] | undefined;
|
|
19558
20037
|
max_level_permission?: number | undefined;
|
|
20038
|
+
order_role?: number | undefined;
|
|
19559
20039
|
}[] | undefined;
|
|
19560
20040
|
next_cursor?: string | undefined;
|
|
19561
20041
|
prev_cursor?: string | undefined;
|
|
@@ -19606,6 +20086,7 @@ export declare const RoleListEventResponse: {
|
|
|
19606
20086
|
role_channel_active?: number | undefined;
|
|
19607
20087
|
channel_ids?: string[] | undefined;
|
|
19608
20088
|
max_level_permission?: number | undefined;
|
|
20089
|
+
order_role?: number | undefined;
|
|
19609
20090
|
}[] | undefined;
|
|
19610
20091
|
next_cursor?: string | undefined;
|
|
19611
20092
|
prev_cursor?: string | undefined;
|
|
@@ -19650,6 +20131,7 @@ export declare const RoleListEventResponse: {
|
|
|
19650
20131
|
role_channel_active?: number | undefined;
|
|
19651
20132
|
channel_ids?: string[] | undefined;
|
|
19652
20133
|
max_level_permission?: number | undefined;
|
|
20134
|
+
order_role?: number | undefined;
|
|
19653
20135
|
}[] & ({
|
|
19654
20136
|
id?: string | undefined;
|
|
19655
20137
|
title?: string | undefined;
|
|
@@ -19689,6 +20171,7 @@ export declare const RoleListEventResponse: {
|
|
|
19689
20171
|
role_channel_active?: number | undefined;
|
|
19690
20172
|
channel_ids?: string[] | undefined;
|
|
19691
20173
|
max_level_permission?: number | undefined;
|
|
20174
|
+
order_role?: number | undefined;
|
|
19692
20175
|
} & {
|
|
19693
20176
|
id?: string | undefined;
|
|
19694
20177
|
title?: string | undefined;
|
|
@@ -19798,6 +20281,7 @@ export declare const RoleListEventResponse: {
|
|
|
19798
20281
|
role_channel_active?: number | undefined;
|
|
19799
20282
|
channel_ids?: (string[] & string[] & { [K_17 in Exclude<keyof I_1["roles"]["roles"][number]["channel_ids"], keyof string[]>]: never; }) | undefined;
|
|
19800
20283
|
max_level_permission?: number | undefined;
|
|
20284
|
+
order_role?: number | undefined;
|
|
19801
20285
|
} & { [K_18 in Exclude<keyof I_1["roles"]["roles"][number], keyof Role>]: never; })[] & { [K_19 in Exclude<keyof I_1["roles"]["roles"], keyof {
|
|
19802
20286
|
id?: string | undefined;
|
|
19803
20287
|
title?: string | undefined;
|
|
@@ -19837,6 +20321,7 @@ export declare const RoleListEventResponse: {
|
|
|
19837
20321
|
role_channel_active?: number | undefined;
|
|
19838
20322
|
channel_ids?: string[] | undefined;
|
|
19839
20323
|
max_level_permission?: number | undefined;
|
|
20324
|
+
order_role?: number | undefined;
|
|
19840
20325
|
}[]>]: never; }) | undefined;
|
|
19841
20326
|
next_cursor?: string | undefined;
|
|
19842
20327
|
prev_cursor?: string | undefined;
|
|
@@ -20179,7 +20664,7 @@ export declare const ChannelSettingItem: {
|
|
|
20179
20664
|
sender_id?: string | undefined;
|
|
20180
20665
|
content?: string | undefined;
|
|
20181
20666
|
attachment?: string | undefined;
|
|
20182
|
-
|
|
20667
|
+
reference?: string | undefined;
|
|
20183
20668
|
mention?: string | undefined;
|
|
20184
20669
|
reaction?: string | undefined;
|
|
20185
20670
|
repliers?: string[] | undefined;
|
|
@@ -20202,7 +20687,7 @@ export declare const ChannelSettingItem: {
|
|
|
20202
20687
|
sender_id?: string | undefined;
|
|
20203
20688
|
content?: string | undefined;
|
|
20204
20689
|
attachment?: string | undefined;
|
|
20205
|
-
|
|
20690
|
+
reference?: string | undefined;
|
|
20206
20691
|
mention?: string | undefined;
|
|
20207
20692
|
reaction?: string | undefined;
|
|
20208
20693
|
repliers?: string[] | undefined;
|
|
@@ -20212,7 +20697,7 @@ export declare const ChannelSettingItem: {
|
|
|
20212
20697
|
sender_id?: string | undefined;
|
|
20213
20698
|
content?: string | undefined;
|
|
20214
20699
|
attachment?: string | undefined;
|
|
20215
|
-
|
|
20700
|
+
reference?: string | undefined;
|
|
20216
20701
|
mention?: string | undefined;
|
|
20217
20702
|
reaction?: string | undefined;
|
|
20218
20703
|
repliers?: (string[] & string[] & { [K_1 in Exclude<keyof I["last_sent_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
@@ -20236,7 +20721,7 @@ export declare const ChannelSettingItem: {
|
|
|
20236
20721
|
sender_id?: string | undefined;
|
|
20237
20722
|
content?: string | undefined;
|
|
20238
20723
|
attachment?: string | undefined;
|
|
20239
|
-
|
|
20724
|
+
reference?: string | undefined;
|
|
20240
20725
|
mention?: string | undefined;
|
|
20241
20726
|
reaction?: string | undefined;
|
|
20242
20727
|
repliers?: string[] | undefined;
|
|
@@ -20259,7 +20744,7 @@ export declare const ChannelSettingItem: {
|
|
|
20259
20744
|
sender_id?: string | undefined;
|
|
20260
20745
|
content?: string | undefined;
|
|
20261
20746
|
attachment?: string | undefined;
|
|
20262
|
-
|
|
20747
|
+
reference?: string | undefined;
|
|
20263
20748
|
mention?: string | undefined;
|
|
20264
20749
|
reaction?: string | undefined;
|
|
20265
20750
|
repliers?: string[] | undefined;
|
|
@@ -20269,7 +20754,7 @@ export declare const ChannelSettingItem: {
|
|
|
20269
20754
|
sender_id?: string | undefined;
|
|
20270
20755
|
content?: string | undefined;
|
|
20271
20756
|
attachment?: string | undefined;
|
|
20272
|
-
|
|
20757
|
+
reference?: string | undefined;
|
|
20273
20758
|
mention?: string | undefined;
|
|
20274
20759
|
reaction?: string | undefined;
|
|
20275
20760
|
repliers?: (string[] & string[] & { [K_5 in Exclude<keyof I_1["last_sent_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
@@ -20303,7 +20788,7 @@ export declare const ChannelSettingListResponse: {
|
|
|
20303
20788
|
sender_id?: string | undefined;
|
|
20304
20789
|
content?: string | undefined;
|
|
20305
20790
|
attachment?: string | undefined;
|
|
20306
|
-
|
|
20791
|
+
reference?: string | undefined;
|
|
20307
20792
|
mention?: string | undefined;
|
|
20308
20793
|
reaction?: string | undefined;
|
|
20309
20794
|
repliers?: string[] | undefined;
|
|
@@ -20331,7 +20816,7 @@ export declare const ChannelSettingListResponse: {
|
|
|
20331
20816
|
sender_id?: string | undefined;
|
|
20332
20817
|
content?: string | undefined;
|
|
20333
20818
|
attachment?: string | undefined;
|
|
20334
|
-
|
|
20819
|
+
reference?: string | undefined;
|
|
20335
20820
|
mention?: string | undefined;
|
|
20336
20821
|
reaction?: string | undefined;
|
|
20337
20822
|
repliers?: string[] | undefined;
|
|
@@ -20354,7 +20839,7 @@ export declare const ChannelSettingListResponse: {
|
|
|
20354
20839
|
sender_id?: string | undefined;
|
|
20355
20840
|
content?: string | undefined;
|
|
20356
20841
|
attachment?: string | undefined;
|
|
20357
|
-
|
|
20842
|
+
reference?: string | undefined;
|
|
20358
20843
|
mention?: string | undefined;
|
|
20359
20844
|
reaction?: string | undefined;
|
|
20360
20845
|
repliers?: string[] | undefined;
|
|
@@ -20377,7 +20862,7 @@ export declare const ChannelSettingListResponse: {
|
|
|
20377
20862
|
sender_id?: string | undefined;
|
|
20378
20863
|
content?: string | undefined;
|
|
20379
20864
|
attachment?: string | undefined;
|
|
20380
|
-
|
|
20865
|
+
reference?: string | undefined;
|
|
20381
20866
|
mention?: string | undefined;
|
|
20382
20867
|
reaction?: string | undefined;
|
|
20383
20868
|
repliers?: string[] | undefined;
|
|
@@ -20387,7 +20872,7 @@ export declare const ChannelSettingListResponse: {
|
|
|
20387
20872
|
sender_id?: string | undefined;
|
|
20388
20873
|
content?: string | undefined;
|
|
20389
20874
|
attachment?: string | undefined;
|
|
20390
|
-
|
|
20875
|
+
reference?: string | undefined;
|
|
20391
20876
|
mention?: string | undefined;
|
|
20392
20877
|
reaction?: string | undefined;
|
|
20393
20878
|
repliers?: (string[] & string[] & { [K_1 in Exclude<keyof I["channel_setting_list"][number]["last_sent_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
@@ -20410,7 +20895,7 @@ export declare const ChannelSettingListResponse: {
|
|
|
20410
20895
|
sender_id?: string | undefined;
|
|
20411
20896
|
content?: string | undefined;
|
|
20412
20897
|
attachment?: string | undefined;
|
|
20413
|
-
|
|
20898
|
+
reference?: string | undefined;
|
|
20414
20899
|
mention?: string | undefined;
|
|
20415
20900
|
reaction?: string | undefined;
|
|
20416
20901
|
repliers?: string[] | undefined;
|
|
@@ -20439,7 +20924,7 @@ export declare const ChannelSettingListResponse: {
|
|
|
20439
20924
|
sender_id?: string | undefined;
|
|
20440
20925
|
content?: string | undefined;
|
|
20441
20926
|
attachment?: string | undefined;
|
|
20442
|
-
|
|
20927
|
+
reference?: string | undefined;
|
|
20443
20928
|
mention?: string | undefined;
|
|
20444
20929
|
reaction?: string | undefined;
|
|
20445
20930
|
repliers?: string[] | undefined;
|
|
@@ -20467,7 +20952,7 @@ export declare const ChannelSettingListResponse: {
|
|
|
20467
20952
|
sender_id?: string | undefined;
|
|
20468
20953
|
content?: string | undefined;
|
|
20469
20954
|
attachment?: string | undefined;
|
|
20470
|
-
|
|
20955
|
+
reference?: string | undefined;
|
|
20471
20956
|
mention?: string | undefined;
|
|
20472
20957
|
reaction?: string | undefined;
|
|
20473
20958
|
repliers?: string[] | undefined;
|
|
@@ -20490,7 +20975,7 @@ export declare const ChannelSettingListResponse: {
|
|
|
20490
20975
|
sender_id?: string | undefined;
|
|
20491
20976
|
content?: string | undefined;
|
|
20492
20977
|
attachment?: string | undefined;
|
|
20493
|
-
|
|
20978
|
+
reference?: string | undefined;
|
|
20494
20979
|
mention?: string | undefined;
|
|
20495
20980
|
reaction?: string | undefined;
|
|
20496
20981
|
repliers?: string[] | undefined;
|
|
@@ -20513,7 +20998,7 @@ export declare const ChannelSettingListResponse: {
|
|
|
20513
20998
|
sender_id?: string | undefined;
|
|
20514
20999
|
content?: string | undefined;
|
|
20515
21000
|
attachment?: string | undefined;
|
|
20516
|
-
|
|
21001
|
+
reference?: string | undefined;
|
|
20517
21002
|
mention?: string | undefined;
|
|
20518
21003
|
reaction?: string | undefined;
|
|
20519
21004
|
repliers?: string[] | undefined;
|
|
@@ -20523,7 +21008,7 @@ export declare const ChannelSettingListResponse: {
|
|
|
20523
21008
|
sender_id?: string | undefined;
|
|
20524
21009
|
content?: string | undefined;
|
|
20525
21010
|
attachment?: string | undefined;
|
|
20526
|
-
|
|
21011
|
+
reference?: string | undefined;
|
|
20527
21012
|
mention?: string | undefined;
|
|
20528
21013
|
reaction?: string | undefined;
|
|
20529
21014
|
repliers?: (string[] & string[] & { [K_7 in Exclude<keyof I_1["channel_setting_list"][number]["last_sent_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
@@ -20546,7 +21031,7 @@ export declare const ChannelSettingListResponse: {
|
|
|
20546
21031
|
sender_id?: string | undefined;
|
|
20547
21032
|
content?: string | undefined;
|
|
20548
21033
|
attachment?: string | undefined;
|
|
20549
|
-
|
|
21034
|
+
reference?: string | undefined;
|
|
20550
21035
|
mention?: string | undefined;
|
|
20551
21036
|
reaction?: string | undefined;
|
|
20552
21037
|
repliers?: string[] | undefined;
|
|
@@ -23449,7 +23934,7 @@ export declare const SdTopic: {
|
|
|
23449
23934
|
sender_id?: string | undefined;
|
|
23450
23935
|
content?: string | undefined;
|
|
23451
23936
|
attachment?: string | undefined;
|
|
23452
|
-
|
|
23937
|
+
reference?: string | undefined;
|
|
23453
23938
|
mention?: string | undefined;
|
|
23454
23939
|
reaction?: string | undefined;
|
|
23455
23940
|
repliers?: string[] | undefined;
|
|
@@ -23526,7 +24011,7 @@ export declare const SdTopic: {
|
|
|
23526
24011
|
sender_id?: string | undefined;
|
|
23527
24012
|
content?: string | undefined;
|
|
23528
24013
|
attachment?: string | undefined;
|
|
23529
|
-
|
|
24014
|
+
reference?: string | undefined;
|
|
23530
24015
|
mention?: string | undefined;
|
|
23531
24016
|
reaction?: string | undefined;
|
|
23532
24017
|
repliers?: string[] | undefined;
|
|
@@ -23536,7 +24021,7 @@ export declare const SdTopic: {
|
|
|
23536
24021
|
sender_id?: string | undefined;
|
|
23537
24022
|
content?: string | undefined;
|
|
23538
24023
|
attachment?: string | undefined;
|
|
23539
|
-
|
|
24024
|
+
reference?: string | undefined;
|
|
23540
24025
|
mention?: string | undefined;
|
|
23541
24026
|
reaction?: string | undefined;
|
|
23542
24027
|
repliers?: (string[] & string[] & { [K_1 in Exclude<keyof I["last_sent_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
@@ -23586,7 +24071,7 @@ export declare const SdTopic: {
|
|
|
23586
24071
|
sender_id?: string | undefined;
|
|
23587
24072
|
content?: string | undefined;
|
|
23588
24073
|
attachment?: string | undefined;
|
|
23589
|
-
|
|
24074
|
+
reference?: string | undefined;
|
|
23590
24075
|
mention?: string | undefined;
|
|
23591
24076
|
reaction?: string | undefined;
|
|
23592
24077
|
repliers?: string[] | undefined;
|
|
@@ -23663,7 +24148,7 @@ export declare const SdTopic: {
|
|
|
23663
24148
|
sender_id?: string | undefined;
|
|
23664
24149
|
content?: string | undefined;
|
|
23665
24150
|
attachment?: string | undefined;
|
|
23666
|
-
|
|
24151
|
+
reference?: string | undefined;
|
|
23667
24152
|
mention?: string | undefined;
|
|
23668
24153
|
reaction?: string | undefined;
|
|
23669
24154
|
repliers?: string[] | undefined;
|
|
@@ -23673,7 +24158,7 @@ export declare const SdTopic: {
|
|
|
23673
24158
|
sender_id?: string | undefined;
|
|
23674
24159
|
content?: string | undefined;
|
|
23675
24160
|
attachment?: string | undefined;
|
|
23676
|
-
|
|
24161
|
+
reference?: string | undefined;
|
|
23677
24162
|
mention?: string | undefined;
|
|
23678
24163
|
reaction?: string | undefined;
|
|
23679
24164
|
repliers?: (string[] & string[] & { [K_5 in Exclude<keyof I_1["last_sent_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
@@ -23755,7 +24240,7 @@ export declare const SdTopicList: {
|
|
|
23755
24240
|
sender_id?: string | undefined;
|
|
23756
24241
|
content?: string | undefined;
|
|
23757
24242
|
attachment?: string | undefined;
|
|
23758
|
-
|
|
24243
|
+
reference?: string | undefined;
|
|
23759
24244
|
mention?: string | undefined;
|
|
23760
24245
|
reaction?: string | undefined;
|
|
23761
24246
|
repliers?: string[] | undefined;
|
|
@@ -23807,7 +24292,7 @@ export declare const SdTopicList: {
|
|
|
23807
24292
|
sender_id?: string | undefined;
|
|
23808
24293
|
content?: string | undefined;
|
|
23809
24294
|
attachment?: string | undefined;
|
|
23810
|
-
|
|
24295
|
+
reference?: string | undefined;
|
|
23811
24296
|
mention?: string | undefined;
|
|
23812
24297
|
reaction?: string | undefined;
|
|
23813
24298
|
repliers?: string[] | undefined;
|
|
@@ -23856,7 +24341,7 @@ export declare const SdTopicList: {
|
|
|
23856
24341
|
sender_id?: string | undefined;
|
|
23857
24342
|
content?: string | undefined;
|
|
23858
24343
|
attachment?: string | undefined;
|
|
23859
|
-
|
|
24344
|
+
reference?: string | undefined;
|
|
23860
24345
|
mention?: string | undefined;
|
|
23861
24346
|
reaction?: string | undefined;
|
|
23862
24347
|
repliers?: string[] | undefined;
|
|
@@ -23933,7 +24418,7 @@ export declare const SdTopicList: {
|
|
|
23933
24418
|
sender_id?: string | undefined;
|
|
23934
24419
|
content?: string | undefined;
|
|
23935
24420
|
attachment?: string | undefined;
|
|
23936
|
-
|
|
24421
|
+
reference?: string | undefined;
|
|
23937
24422
|
mention?: string | undefined;
|
|
23938
24423
|
reaction?: string | undefined;
|
|
23939
24424
|
repliers?: string[] | undefined;
|
|
@@ -23943,7 +24428,7 @@ export declare const SdTopicList: {
|
|
|
23943
24428
|
sender_id?: string | undefined;
|
|
23944
24429
|
content?: string | undefined;
|
|
23945
24430
|
attachment?: string | undefined;
|
|
23946
|
-
|
|
24431
|
+
reference?: string | undefined;
|
|
23947
24432
|
mention?: string | undefined;
|
|
23948
24433
|
reaction?: string | undefined;
|
|
23949
24434
|
repliers?: (string[] & string[] & { [K_1 in Exclude<keyof I["topics"][number]["last_sent_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
@@ -23992,7 +24477,7 @@ export declare const SdTopicList: {
|
|
|
23992
24477
|
sender_id?: string | undefined;
|
|
23993
24478
|
content?: string | undefined;
|
|
23994
24479
|
attachment?: string | undefined;
|
|
23995
|
-
|
|
24480
|
+
reference?: string | undefined;
|
|
23996
24481
|
mention?: string | undefined;
|
|
23997
24482
|
reaction?: string | undefined;
|
|
23998
24483
|
repliers?: string[] | undefined;
|
|
@@ -24045,7 +24530,7 @@ export declare const SdTopicList: {
|
|
|
24045
24530
|
sender_id?: string | undefined;
|
|
24046
24531
|
content?: string | undefined;
|
|
24047
24532
|
attachment?: string | undefined;
|
|
24048
|
-
|
|
24533
|
+
reference?: string | undefined;
|
|
24049
24534
|
mention?: string | undefined;
|
|
24050
24535
|
reaction?: string | undefined;
|
|
24051
24536
|
repliers?: string[] | undefined;
|
|
@@ -24097,7 +24582,7 @@ export declare const SdTopicList: {
|
|
|
24097
24582
|
sender_id?: string | undefined;
|
|
24098
24583
|
content?: string | undefined;
|
|
24099
24584
|
attachment?: string | undefined;
|
|
24100
|
-
|
|
24585
|
+
reference?: string | undefined;
|
|
24101
24586
|
mention?: string | undefined;
|
|
24102
24587
|
reaction?: string | undefined;
|
|
24103
24588
|
repliers?: string[] | undefined;
|
|
@@ -24146,7 +24631,7 @@ export declare const SdTopicList: {
|
|
|
24146
24631
|
sender_id?: string | undefined;
|
|
24147
24632
|
content?: string | undefined;
|
|
24148
24633
|
attachment?: string | undefined;
|
|
24149
|
-
|
|
24634
|
+
reference?: string | undefined;
|
|
24150
24635
|
mention?: string | undefined;
|
|
24151
24636
|
reaction?: string | undefined;
|
|
24152
24637
|
repliers?: string[] | undefined;
|
|
@@ -24223,7 +24708,7 @@ export declare const SdTopicList: {
|
|
|
24223
24708
|
sender_id?: string | undefined;
|
|
24224
24709
|
content?: string | undefined;
|
|
24225
24710
|
attachment?: string | undefined;
|
|
24226
|
-
|
|
24711
|
+
reference?: string | undefined;
|
|
24227
24712
|
mention?: string | undefined;
|
|
24228
24713
|
reaction?: string | undefined;
|
|
24229
24714
|
repliers?: string[] | undefined;
|
|
@@ -24233,7 +24718,7 @@ export declare const SdTopicList: {
|
|
|
24233
24718
|
sender_id?: string | undefined;
|
|
24234
24719
|
content?: string | undefined;
|
|
24235
24720
|
attachment?: string | undefined;
|
|
24236
|
-
|
|
24721
|
+
reference?: string | undefined;
|
|
24237
24722
|
mention?: string | undefined;
|
|
24238
24723
|
reaction?: string | undefined;
|
|
24239
24724
|
repliers?: (string[] & string[] & { [K_7 in Exclude<keyof I_1["topics"][number]["last_sent_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
@@ -24282,7 +24767,7 @@ export declare const SdTopicList: {
|
|
|
24282
24767
|
sender_id?: string | undefined;
|
|
24283
24768
|
content?: string | undefined;
|
|
24284
24769
|
attachment?: string | undefined;
|
|
24285
|
-
|
|
24770
|
+
reference?: string | undefined;
|
|
24286
24771
|
mention?: string | undefined;
|
|
24287
24772
|
reaction?: string | undefined;
|
|
24288
24773
|
repliers?: string[] | undefined;
|
|
@@ -24370,6 +24855,46 @@ export declare const GenerateMeetTokenRequest: {
|
|
|
24370
24855
|
room_name?: string | undefined;
|
|
24371
24856
|
} & { [K_1 in Exclude<keyof I_1, keyof GenerateMeetTokenRequest>]: never; }>(object: I_1): GenerateMeetTokenRequest;
|
|
24372
24857
|
};
|
|
24858
|
+
export declare const GenerateMeetTokenExternalRequest: {
|
|
24859
|
+
encode(message: GenerateMeetTokenExternalRequest, writer?: _m0.Writer): _m0.Writer;
|
|
24860
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): GenerateMeetTokenExternalRequest;
|
|
24861
|
+
fromJSON(object: any): GenerateMeetTokenExternalRequest;
|
|
24862
|
+
toJSON(message: GenerateMeetTokenExternalRequest): unknown;
|
|
24863
|
+
create<I extends {
|
|
24864
|
+
body?: {
|
|
24865
|
+
[x: string]: any;
|
|
24866
|
+
} | undefined;
|
|
24867
|
+
token?: string | undefined;
|
|
24868
|
+
display_name?: string | undefined;
|
|
24869
|
+
is_guest?: boolean | undefined;
|
|
24870
|
+
} & {
|
|
24871
|
+
body?: ({
|
|
24872
|
+
[x: string]: any;
|
|
24873
|
+
} & {
|
|
24874
|
+
[x: string]: any;
|
|
24875
|
+
} & { [K in Exclude<keyof I["body"], string | number>]: never; }) | undefined;
|
|
24876
|
+
token?: string | undefined;
|
|
24877
|
+
display_name?: string | undefined;
|
|
24878
|
+
is_guest?: boolean | undefined;
|
|
24879
|
+
} & { [K_1 in Exclude<keyof I, keyof GenerateMeetTokenExternalRequest>]: never; }>(base?: I | undefined): GenerateMeetTokenExternalRequest;
|
|
24880
|
+
fromPartial<I_1 extends {
|
|
24881
|
+
body?: {
|
|
24882
|
+
[x: string]: any;
|
|
24883
|
+
} | undefined;
|
|
24884
|
+
token?: string | undefined;
|
|
24885
|
+
display_name?: string | undefined;
|
|
24886
|
+
is_guest?: boolean | undefined;
|
|
24887
|
+
} & {
|
|
24888
|
+
body?: ({
|
|
24889
|
+
[x: string]: any;
|
|
24890
|
+
} & {
|
|
24891
|
+
[x: string]: any;
|
|
24892
|
+
} & { [K_2 in Exclude<keyof I_1["body"], string | number>]: never; }) | undefined;
|
|
24893
|
+
token?: string | undefined;
|
|
24894
|
+
display_name?: string | undefined;
|
|
24895
|
+
is_guest?: boolean | undefined;
|
|
24896
|
+
} & { [K_3 in Exclude<keyof I_1, keyof GenerateMeetTokenExternalRequest>]: never; }>(object: I_1): GenerateMeetTokenExternalRequest;
|
|
24897
|
+
};
|
|
24373
24898
|
export declare const GenerateMeetTokenResponse: {
|
|
24374
24899
|
encode(message: GenerateMeetTokenResponse, writer?: _m0.Writer): _m0.Writer;
|
|
24375
24900
|
decode(input: _m0.Reader | Uint8Array, length?: number): GenerateMeetTokenResponse;
|
|
@@ -24386,6 +24911,62 @@ export declare const GenerateMeetTokenResponse: {
|
|
|
24386
24911
|
token?: string | undefined;
|
|
24387
24912
|
} & { [K_1 in Exclude<keyof I_1, "token">]: never; }>(object: I_1): GenerateMeetTokenResponse;
|
|
24388
24913
|
};
|
|
24914
|
+
export declare const GenerateMeetTokenExternalResponse: {
|
|
24915
|
+
encode(message: GenerateMeetTokenExternalResponse, writer?: _m0.Writer): _m0.Writer;
|
|
24916
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): GenerateMeetTokenExternalResponse;
|
|
24917
|
+
fromJSON(object: any): GenerateMeetTokenExternalResponse;
|
|
24918
|
+
toJSON(message: GenerateMeetTokenExternalResponse): unknown;
|
|
24919
|
+
create<I extends {
|
|
24920
|
+
token?: string | undefined;
|
|
24921
|
+
guest_user_id?: string | undefined;
|
|
24922
|
+
guest_access_token?: string | undefined;
|
|
24923
|
+
} & {
|
|
24924
|
+
token?: string | undefined;
|
|
24925
|
+
guest_user_id?: string | undefined;
|
|
24926
|
+
guest_access_token?: string | undefined;
|
|
24927
|
+
} & { [K in Exclude<keyof I, keyof GenerateMeetTokenExternalResponse>]: never; }>(base?: I | undefined): GenerateMeetTokenExternalResponse;
|
|
24928
|
+
fromPartial<I_1 extends {
|
|
24929
|
+
token?: string | undefined;
|
|
24930
|
+
guest_user_id?: string | undefined;
|
|
24931
|
+
guest_access_token?: string | undefined;
|
|
24932
|
+
} & {
|
|
24933
|
+
token?: string | undefined;
|
|
24934
|
+
guest_user_id?: string | undefined;
|
|
24935
|
+
guest_access_token?: string | undefined;
|
|
24936
|
+
} & { [K_1 in Exclude<keyof I_1, keyof GenerateMeetTokenExternalResponse>]: never; }>(object: I_1): GenerateMeetTokenExternalResponse;
|
|
24937
|
+
};
|
|
24938
|
+
export declare const GenerateMezonMeetResponse: {
|
|
24939
|
+
encode(message: GenerateMezonMeetResponse, writer?: _m0.Writer): _m0.Writer;
|
|
24940
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): GenerateMezonMeetResponse;
|
|
24941
|
+
fromJSON(object: any): GenerateMezonMeetResponse;
|
|
24942
|
+
toJSON(message: GenerateMezonMeetResponse): unknown;
|
|
24943
|
+
create<I extends {
|
|
24944
|
+
meet_id?: string | undefined;
|
|
24945
|
+
room_name?: string | undefined;
|
|
24946
|
+
external_link?: string | undefined;
|
|
24947
|
+
creator_id?: string | undefined;
|
|
24948
|
+
event_id?: string | undefined;
|
|
24949
|
+
} & {
|
|
24950
|
+
meet_id?: string | undefined;
|
|
24951
|
+
room_name?: string | undefined;
|
|
24952
|
+
external_link?: string | undefined;
|
|
24953
|
+
creator_id?: string | undefined;
|
|
24954
|
+
event_id?: string | undefined;
|
|
24955
|
+
} & { [K in Exclude<keyof I, keyof GenerateMezonMeetResponse>]: never; }>(base?: I | undefined): GenerateMezonMeetResponse;
|
|
24956
|
+
fromPartial<I_1 extends {
|
|
24957
|
+
meet_id?: string | undefined;
|
|
24958
|
+
room_name?: string | undefined;
|
|
24959
|
+
external_link?: string | undefined;
|
|
24960
|
+
creator_id?: string | undefined;
|
|
24961
|
+
event_id?: string | undefined;
|
|
24962
|
+
} & {
|
|
24963
|
+
meet_id?: string | undefined;
|
|
24964
|
+
room_name?: string | undefined;
|
|
24965
|
+
external_link?: string | undefined;
|
|
24966
|
+
creator_id?: string | undefined;
|
|
24967
|
+
event_id?: string | undefined;
|
|
24968
|
+
} & { [K_1 in Exclude<keyof I_1, keyof GenerateMezonMeetResponse>]: never; }>(object: I_1): GenerateMezonMeetResponse;
|
|
24969
|
+
};
|
|
24389
24970
|
export declare const CreateRoomChannelApps: {
|
|
24390
24971
|
encode(message: CreateRoomChannelApps, writer?: _m0.Writer): _m0.Writer;
|
|
24391
24972
|
decode(input: _m0.Reader | Uint8Array, length?: number): CreateRoomChannelApps;
|
|
@@ -24406,38 +24987,6 @@ export declare const CreateRoomChannelApps: {
|
|
|
24406
24987
|
room_name?: string | undefined;
|
|
24407
24988
|
} & { [K_1 in Exclude<keyof I_1, keyof CreateRoomChannelApps>]: never; }>(object: I_1): CreateRoomChannelApps;
|
|
24408
24989
|
};
|
|
24409
|
-
export declare const HandleParticipantMeetStateRequest: {
|
|
24410
|
-
encode(message: HandleParticipantMeetStateRequest, writer?: _m0.Writer): _m0.Writer;
|
|
24411
|
-
decode(input: _m0.Reader | Uint8Array, length?: number): HandleParticipantMeetStateRequest;
|
|
24412
|
-
fromJSON(object: any): HandleParticipantMeetStateRequest;
|
|
24413
|
-
toJSON(message: HandleParticipantMeetStateRequest): unknown;
|
|
24414
|
-
create<I extends {
|
|
24415
|
-
clan_id?: string | undefined;
|
|
24416
|
-
channel_id?: string | undefined;
|
|
24417
|
-
user_id?: string | undefined;
|
|
24418
|
-
display_name?: string | undefined;
|
|
24419
|
-
state?: number | undefined;
|
|
24420
|
-
} & {
|
|
24421
|
-
clan_id?: string | undefined;
|
|
24422
|
-
channel_id?: string | undefined;
|
|
24423
|
-
user_id?: string | undefined;
|
|
24424
|
-
display_name?: string | undefined;
|
|
24425
|
-
state?: number | undefined;
|
|
24426
|
-
} & { [K in Exclude<keyof I, keyof HandleParticipantMeetStateRequest>]: never; }>(base?: I | undefined): HandleParticipantMeetStateRequest;
|
|
24427
|
-
fromPartial<I_1 extends {
|
|
24428
|
-
clan_id?: string | undefined;
|
|
24429
|
-
channel_id?: string | undefined;
|
|
24430
|
-
user_id?: string | undefined;
|
|
24431
|
-
display_name?: string | undefined;
|
|
24432
|
-
state?: number | undefined;
|
|
24433
|
-
} & {
|
|
24434
|
-
clan_id?: string | undefined;
|
|
24435
|
-
channel_id?: string | undefined;
|
|
24436
|
-
user_id?: string | undefined;
|
|
24437
|
-
display_name?: string | undefined;
|
|
24438
|
-
state?: number | undefined;
|
|
24439
|
-
} & { [K_1 in Exclude<keyof I_1, keyof HandleParticipantMeetStateRequest>]: never; }>(object: I_1): HandleParticipantMeetStateRequest;
|
|
24440
|
-
};
|
|
24441
24990
|
export declare const MezonOauthClient: {
|
|
24442
24991
|
encode(message: MezonOauthClient, writer?: _m0.Writer): _m0.Writer;
|
|
24443
24992
|
decode(input: _m0.Reader | Uint8Array, length?: number): MezonOauthClient;
|
|
@@ -25210,6 +25759,74 @@ export declare const GenerateHashChannelAppsResponse: {
|
|
|
25210
25759
|
web_app_data?: string | undefined;
|
|
25211
25760
|
} & { [K_1 in Exclude<keyof I_1, "web_app_data">]: never; }>(object: I_1): GenerateHashChannelAppsResponse;
|
|
25212
25761
|
};
|
|
25762
|
+
export declare const GetMezonAccountRequest: {
|
|
25763
|
+
encode(message: GetMezonAccountRequest, writer?: _m0.Writer): _m0.Writer;
|
|
25764
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): GetMezonAccountRequest;
|
|
25765
|
+
fromJSON(object: any): GetMezonAccountRequest;
|
|
25766
|
+
toJSON(message: GetMezonAccountRequest): unknown;
|
|
25767
|
+
create<I extends {
|
|
25768
|
+
secret?: string | undefined;
|
|
25769
|
+
email?: string | undefined;
|
|
25770
|
+
} & {
|
|
25771
|
+
secret?: string | undefined;
|
|
25772
|
+
email?: string | undefined;
|
|
25773
|
+
} & { [K in Exclude<keyof I, keyof GetMezonAccountRequest>]: never; }>(base?: I | undefined): GetMezonAccountRequest;
|
|
25774
|
+
fromPartial<I_1 extends {
|
|
25775
|
+
secret?: string | undefined;
|
|
25776
|
+
email?: string | undefined;
|
|
25777
|
+
} & {
|
|
25778
|
+
secret?: string | undefined;
|
|
25779
|
+
email?: string | undefined;
|
|
25780
|
+
} & { [K_1 in Exclude<keyof I_1, keyof GetMezonAccountRequest>]: never; }>(object: I_1): GetMezonAccountRequest;
|
|
25781
|
+
};
|
|
25782
|
+
export declare const Message2InboxRequest: {
|
|
25783
|
+
encode(message: Message2InboxRequest, writer?: _m0.Writer): _m0.Writer;
|
|
25784
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): Message2InboxRequest;
|
|
25785
|
+
fromJSON(object: any): Message2InboxRequest;
|
|
25786
|
+
toJSON(message: Message2InboxRequest): unknown;
|
|
25787
|
+
create<I extends {
|
|
25788
|
+
message_id?: string | undefined;
|
|
25789
|
+
channel_id?: string | undefined;
|
|
25790
|
+
clan_id?: string | undefined;
|
|
25791
|
+
avatar?: string | undefined;
|
|
25792
|
+
content?: string | undefined;
|
|
25793
|
+
mentions?: string | undefined;
|
|
25794
|
+
attachments?: string | undefined;
|
|
25795
|
+
reactions?: string | undefined;
|
|
25796
|
+
references?: string | undefined;
|
|
25797
|
+
} & {
|
|
25798
|
+
message_id?: string | undefined;
|
|
25799
|
+
channel_id?: string | undefined;
|
|
25800
|
+
clan_id?: string | undefined;
|
|
25801
|
+
avatar?: string | undefined;
|
|
25802
|
+
content?: string | undefined;
|
|
25803
|
+
mentions?: string | undefined;
|
|
25804
|
+
attachments?: string | undefined;
|
|
25805
|
+
reactions?: string | undefined;
|
|
25806
|
+
references?: string | undefined;
|
|
25807
|
+
} & { [K in Exclude<keyof I, keyof Message2InboxRequest>]: never; }>(base?: I | undefined): Message2InboxRequest;
|
|
25808
|
+
fromPartial<I_1 extends {
|
|
25809
|
+
message_id?: string | undefined;
|
|
25810
|
+
channel_id?: string | undefined;
|
|
25811
|
+
clan_id?: string | undefined;
|
|
25812
|
+
avatar?: string | undefined;
|
|
25813
|
+
content?: string | undefined;
|
|
25814
|
+
mentions?: string | undefined;
|
|
25815
|
+
attachments?: string | undefined;
|
|
25816
|
+
reactions?: string | undefined;
|
|
25817
|
+
references?: string | undefined;
|
|
25818
|
+
} & {
|
|
25819
|
+
message_id?: string | undefined;
|
|
25820
|
+
channel_id?: string | undefined;
|
|
25821
|
+
clan_id?: string | undefined;
|
|
25822
|
+
avatar?: string | undefined;
|
|
25823
|
+
content?: string | undefined;
|
|
25824
|
+
mentions?: string | undefined;
|
|
25825
|
+
attachments?: string | undefined;
|
|
25826
|
+
reactions?: string | undefined;
|
|
25827
|
+
references?: string | undefined;
|
|
25828
|
+
} & { [K_1 in Exclude<keyof I_1, keyof Message2InboxRequest>]: never; }>(object: I_1): Message2InboxRequest;
|
|
25829
|
+
};
|
|
25213
25830
|
type Builtin = Date | Function | Uint8Array | string | number | boolean | undefined;
|
|
25214
25831
|
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 {} ? {
|
|
25215
25832
|
[K in keyof T]?: DeepPartial<T[K]>;
|