mezon-sdk 2.7.75 → 2.7.76
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 +598 -279
- package/dist/cjs/api/api.js +535 -405
- package/dist/cjs/api/api.js.map +1 -1
- package/dist/cjs/rtapi/realtime.d.ts +396 -237
- package/dist/cjs/rtapi/realtime.js +129 -1
- package/dist/cjs/rtapi/realtime.js.map +1 -1
- package/dist/esm/api/api.d.ts +598 -279
- package/dist/esm/api/api.js +508 -375
- package/dist/esm/api/api.js.map +1 -1
- package/dist/esm/rtapi/realtime.d.ts +396 -237
- package/dist/esm/rtapi/realtime.js +127 -0
- 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/cjs/api/api.d.ts
CHANGED
|
@@ -63,6 +63,8 @@ export interface Account {
|
|
|
63
63
|
logo: string;
|
|
64
64
|
/** Splash screen url */
|
|
65
65
|
splash_screen: string;
|
|
66
|
+
/** E2ee encrypt private key */
|
|
67
|
+
encrypt_private_key: string;
|
|
66
68
|
}
|
|
67
69
|
/** Obtain a new authentication token using a refresh token. */
|
|
68
70
|
export interface AccountRefresh {
|
|
@@ -751,6 +753,10 @@ export interface ChannelAttachment {
|
|
|
751
753
|
create_time: Date | undefined;
|
|
752
754
|
/** message id. */
|
|
753
755
|
message_id: string;
|
|
756
|
+
/** width */
|
|
757
|
+
width: number;
|
|
758
|
+
/** height */
|
|
759
|
+
height: number;
|
|
754
760
|
}
|
|
755
761
|
/** channel attachment list */
|
|
756
762
|
export interface ChannelAttachmentList {
|
|
@@ -1024,6 +1030,8 @@ export interface UpdateAccountRequest {
|
|
|
1024
1030
|
logo: string;
|
|
1025
1031
|
/** splash screen */
|
|
1026
1032
|
splash_screen: string;
|
|
1033
|
+
/** e2ee encrypt private key */
|
|
1034
|
+
encrypt_private_key: string;
|
|
1027
1035
|
}
|
|
1028
1036
|
/** Update fields in a given group. */
|
|
1029
1037
|
export interface UpdateGroupRequest {
|
|
@@ -1321,6 +1329,7 @@ export interface CreateCategoryDescRequest {
|
|
|
1321
1329
|
export interface DeleteCategoryDescRequest {
|
|
1322
1330
|
category_id: string;
|
|
1323
1331
|
clan_id: string;
|
|
1332
|
+
category_label: string;
|
|
1324
1333
|
}
|
|
1325
1334
|
/** A list of clan */
|
|
1326
1335
|
export interface CategoryDescList {
|
|
@@ -1353,6 +1362,8 @@ export interface ChannelMessageHeader {
|
|
|
1353
1362
|
mention: string;
|
|
1354
1363
|
/** the reactions */
|
|
1355
1364
|
reaction: string;
|
|
1365
|
+
/** */
|
|
1366
|
+
repliers: string[];
|
|
1356
1367
|
}
|
|
1357
1368
|
/** Channel description record */
|
|
1358
1369
|
export interface ChannelDescription {
|
|
@@ -1570,13 +1581,16 @@ export interface EventManagement {
|
|
|
1570
1581
|
start_event: number;
|
|
1571
1582
|
creator_id: string;
|
|
1572
1583
|
clan_id: string;
|
|
1573
|
-
|
|
1584
|
+
channel_voice_id: string;
|
|
1574
1585
|
address: string;
|
|
1575
1586
|
start_time: Date | undefined;
|
|
1576
1587
|
end_time: Date | undefined;
|
|
1577
1588
|
user_ids: string[];
|
|
1578
1589
|
create_time: Date | undefined;
|
|
1579
1590
|
max_permission: number;
|
|
1591
|
+
channel_id: string;
|
|
1592
|
+
event_status: number;
|
|
1593
|
+
repeat_type: number;
|
|
1580
1594
|
}
|
|
1581
1595
|
/** Permission record */
|
|
1582
1596
|
export interface Permission {
|
|
@@ -1846,12 +1860,16 @@ export interface CreateEventRequest {
|
|
|
1846
1860
|
logo: string;
|
|
1847
1861
|
description: string;
|
|
1848
1862
|
clan_id: string;
|
|
1849
|
-
|
|
1863
|
+
channel_voice_id: string;
|
|
1850
1864
|
address: string;
|
|
1851
1865
|
start_time: Date | undefined;
|
|
1852
1866
|
end_time: Date | undefined;
|
|
1853
1867
|
event_id: string;
|
|
1854
|
-
event_status:
|
|
1868
|
+
event_status: number;
|
|
1869
|
+
channel_id: string;
|
|
1870
|
+
action: number;
|
|
1871
|
+
repeat_type: number;
|
|
1872
|
+
creator_id: string;
|
|
1855
1873
|
}
|
|
1856
1874
|
/** update a event within clan. */
|
|
1857
1875
|
export interface UpdateEventRequest {
|
|
@@ -1865,6 +1883,9 @@ export interface UpdateEventRequest {
|
|
|
1865
1883
|
end_time: Date | undefined;
|
|
1866
1884
|
clan_id: string;
|
|
1867
1885
|
creator_id: string;
|
|
1886
|
+
channel_voice_id: string;
|
|
1887
|
+
channel_id_old: string;
|
|
1888
|
+
repeat_type: number;
|
|
1868
1889
|
}
|
|
1869
1890
|
/** Delete a role the user has access to. */
|
|
1870
1891
|
export interface DeleteRoleRequest {
|
|
@@ -1874,6 +1895,8 @@ export interface DeleteRoleRequest {
|
|
|
1874
1895
|
channel_id: string;
|
|
1875
1896
|
/** clan_id */
|
|
1876
1897
|
clan_id: string;
|
|
1898
|
+
/** role label */
|
|
1899
|
+
role_label: string;
|
|
1877
1900
|
}
|
|
1878
1901
|
export interface DeleteEventRequest {
|
|
1879
1902
|
/** The id of a event. */
|
|
@@ -1882,6 +1905,10 @@ export interface DeleteEventRequest {
|
|
|
1882
1905
|
clan_id: string;
|
|
1883
1906
|
/** creator id */
|
|
1884
1907
|
creator_id: string;
|
|
1908
|
+
/** event label */
|
|
1909
|
+
event_label: string;
|
|
1910
|
+
/** channel id */
|
|
1911
|
+
channel_id: string;
|
|
1885
1912
|
}
|
|
1886
1913
|
/** Update fields in a given role. */
|
|
1887
1914
|
export interface UpdateRoleRequest {
|
|
@@ -1917,6 +1944,8 @@ export interface UpdateRoleChannelRequest {
|
|
|
1917
1944
|
channel_id: string;
|
|
1918
1945
|
/** The ID of the role to update. */
|
|
1919
1946
|
user_id: string;
|
|
1947
|
+
/** Role label */
|
|
1948
|
+
role_label: string;
|
|
1920
1949
|
}
|
|
1921
1950
|
export interface PermissionUpdate {
|
|
1922
1951
|
/** permission_id */
|
|
@@ -2093,6 +2122,7 @@ export interface ClanEmojiGetByClanIdRequest {
|
|
|
2093
2122
|
export interface ClanEmojiDeleteRequest {
|
|
2094
2123
|
id: string;
|
|
2095
2124
|
clan_id: string;
|
|
2125
|
+
emoji_label: string;
|
|
2096
2126
|
}
|
|
2097
2127
|
export interface ClanEmojiUpdateRequest {
|
|
2098
2128
|
id: string;
|
|
@@ -2186,6 +2216,7 @@ export interface ClanStickerUpdateByIdRequest {
|
|
|
2186
2216
|
export interface ClanStickerDeleteRequest {
|
|
2187
2217
|
id: string;
|
|
2188
2218
|
clan_id: string;
|
|
2219
|
+
sticker_label: string;
|
|
2189
2220
|
}
|
|
2190
2221
|
export interface ChangeChannelCategoryRequest {
|
|
2191
2222
|
channel_id: string;
|
|
@@ -2325,6 +2356,8 @@ export interface SystemMessage {
|
|
|
2325
2356
|
boost_message: string;
|
|
2326
2357
|
/** Setup tips */
|
|
2327
2358
|
setup_tips: string;
|
|
2359
|
+
/** Hide audit log */
|
|
2360
|
+
hide_audit_log: string;
|
|
2328
2361
|
}
|
|
2329
2362
|
/** List of system message. */
|
|
2330
2363
|
export interface SystemMessagesList {
|
|
@@ -2344,6 +2377,8 @@ export interface SystemMessageRequest {
|
|
|
2344
2377
|
boost_message: string;
|
|
2345
2378
|
/** Setup tips */
|
|
2346
2379
|
setup_tips: string;
|
|
2380
|
+
/** Hide audit log */
|
|
2381
|
+
hide_audit_log: string;
|
|
2347
2382
|
}
|
|
2348
2383
|
/** Request to delete a system message by clan ID. */
|
|
2349
2384
|
export interface DeleteSystemMessage {
|
|
@@ -2359,19 +2394,22 @@ export interface DeleteCategoryOrderRequest {
|
|
|
2359
2394
|
clan_id: string;
|
|
2360
2395
|
}
|
|
2361
2396
|
export interface StreamHttpCallbackRequest {
|
|
2362
|
-
|
|
2397
|
+
/** id */
|
|
2398
|
+
id: string;
|
|
2399
|
+
/** client_id */
|
|
2363
2400
|
client_id: string;
|
|
2364
|
-
|
|
2365
|
-
|
|
2366
|
-
|
|
2367
|
-
|
|
2368
|
-
|
|
2369
|
-
|
|
2370
|
-
|
|
2371
|
-
|
|
2372
|
-
|
|
2373
|
-
|
|
2374
|
-
|
|
2401
|
+
/** clan_id */
|
|
2402
|
+
clan_id: string;
|
|
2403
|
+
/** channel_id */
|
|
2404
|
+
channel_id: string;
|
|
2405
|
+
/** user_id */
|
|
2406
|
+
user_id: string;
|
|
2407
|
+
/** action */
|
|
2408
|
+
action: number;
|
|
2409
|
+
/** is_publisher */
|
|
2410
|
+
is_publisher: boolean;
|
|
2411
|
+
/** token */
|
|
2412
|
+
token: string;
|
|
2375
2413
|
}
|
|
2376
2414
|
export interface StreamHttpCallbackResponse {
|
|
2377
2415
|
code: number | undefined;
|
|
@@ -2407,24 +2445,6 @@ export interface RegisterStreamingChannelResponse {
|
|
|
2407
2445
|
/** streaming url */
|
|
2408
2446
|
streaming_url: string;
|
|
2409
2447
|
}
|
|
2410
|
-
export interface ListStreamingChannelsRequest {
|
|
2411
|
-
/** clan id */
|
|
2412
|
-
clan_id: string;
|
|
2413
|
-
}
|
|
2414
|
-
export interface ListStreamingChannelsResponse {
|
|
2415
|
-
/** list of streaming channel */
|
|
2416
|
-
streaming_channels: StreamingChannelResponse[];
|
|
2417
|
-
}
|
|
2418
|
-
export interface StreamingChannelResponse {
|
|
2419
|
-
/** clan id */
|
|
2420
|
-
clan_id: string;
|
|
2421
|
-
/** channel id */
|
|
2422
|
-
channel_id: string;
|
|
2423
|
-
/** stream url */
|
|
2424
|
-
streaming_url: string;
|
|
2425
|
-
/** status */
|
|
2426
|
-
is_streaming: boolean;
|
|
2427
|
-
}
|
|
2428
2448
|
export interface GiveCoffeeEvent {
|
|
2429
2449
|
/** sender id */
|
|
2430
2450
|
sender_id: string;
|
|
@@ -2795,6 +2815,10 @@ export interface TokenSentEvent {
|
|
|
2795
2815
|
amount: number;
|
|
2796
2816
|
/** note */
|
|
2797
2817
|
note: string;
|
|
2818
|
+
/** */
|
|
2819
|
+
extra_attribute: string;
|
|
2820
|
+
/** */
|
|
2821
|
+
transaction_id: string;
|
|
2798
2822
|
}
|
|
2799
2823
|
export interface WithdrawTokenRequest {
|
|
2800
2824
|
/** amount of token */
|
|
@@ -3056,6 +3080,7 @@ export interface SdTopic {
|
|
|
3056
3080
|
create_time: Date | undefined;
|
|
3057
3081
|
update_time: Date | undefined;
|
|
3058
3082
|
message: ChannelMessage | undefined;
|
|
3083
|
+
last_sent_message: ChannelMessageHeader | undefined;
|
|
3059
3084
|
}
|
|
3060
3085
|
export interface SdTopicRequest {
|
|
3061
3086
|
message_id: string;
|
|
@@ -3067,7 +3092,7 @@ export interface SdTopicList {
|
|
|
3067
3092
|
topics: SdTopic[];
|
|
3068
3093
|
}
|
|
3069
3094
|
export interface ListSdTopicRequest {
|
|
3070
|
-
|
|
3095
|
+
clan_id: string;
|
|
3071
3096
|
limit: number;
|
|
3072
3097
|
}
|
|
3073
3098
|
export interface SdTopicDetailRequest {
|
|
@@ -3120,6 +3145,7 @@ export declare const Account: {
|
|
|
3120
3145
|
disable_time?: Date | undefined;
|
|
3121
3146
|
logo?: string | undefined;
|
|
3122
3147
|
splash_screen?: string | undefined;
|
|
3148
|
+
encrypt_private_key?: string | undefined;
|
|
3123
3149
|
} & {
|
|
3124
3150
|
user?: ({
|
|
3125
3151
|
id?: string | undefined;
|
|
@@ -3196,6 +3222,7 @@ export declare const Account: {
|
|
|
3196
3222
|
disable_time?: Date | undefined;
|
|
3197
3223
|
logo?: string | undefined;
|
|
3198
3224
|
splash_screen?: string | undefined;
|
|
3225
|
+
encrypt_private_key?: string | undefined;
|
|
3199
3226
|
} & { [K_4 in Exclude<keyof I, keyof Account>]: never; }>(base?: I | undefined): Account;
|
|
3200
3227
|
fromPartial<I_1 extends {
|
|
3201
3228
|
user?: {
|
|
@@ -3234,6 +3261,7 @@ export declare const Account: {
|
|
|
3234
3261
|
disable_time?: Date | undefined;
|
|
3235
3262
|
logo?: string | undefined;
|
|
3236
3263
|
splash_screen?: string | undefined;
|
|
3264
|
+
encrypt_private_key?: string | undefined;
|
|
3237
3265
|
} & {
|
|
3238
3266
|
user?: ({
|
|
3239
3267
|
id?: string | undefined;
|
|
@@ -3310,6 +3338,7 @@ export declare const Account: {
|
|
|
3310
3338
|
disable_time?: Date | undefined;
|
|
3311
3339
|
logo?: string | undefined;
|
|
3312
3340
|
splash_screen?: string | undefined;
|
|
3341
|
+
encrypt_private_key?: string | undefined;
|
|
3313
3342
|
} & { [K_9 in Exclude<keyof I_1, keyof Account>]: never; }>(object: I_1): Account;
|
|
3314
3343
|
};
|
|
3315
3344
|
export declare const AccountRefresh: {
|
|
@@ -5038,6 +5067,7 @@ export declare const ChannelMessageList: {
|
|
|
5038
5067
|
referece?: string | undefined;
|
|
5039
5068
|
mention?: string | undefined;
|
|
5040
5069
|
reaction?: string | undefined;
|
|
5070
|
+
repliers?: string[] | undefined;
|
|
5041
5071
|
} | undefined;
|
|
5042
5072
|
last_sent_message?: {
|
|
5043
5073
|
id?: string | undefined;
|
|
@@ -5048,6 +5078,7 @@ export declare const ChannelMessageList: {
|
|
|
5048
5078
|
referece?: string | undefined;
|
|
5049
5079
|
mention?: string | undefined;
|
|
5050
5080
|
reaction?: string | undefined;
|
|
5081
|
+
repliers?: string[] | undefined;
|
|
5051
5082
|
} | undefined;
|
|
5052
5083
|
} & {
|
|
5053
5084
|
messages?: ({
|
|
@@ -5172,6 +5203,7 @@ export declare const ChannelMessageList: {
|
|
|
5172
5203
|
referece?: string | undefined;
|
|
5173
5204
|
mention?: string | undefined;
|
|
5174
5205
|
reaction?: string | undefined;
|
|
5206
|
+
repliers?: string[] | undefined;
|
|
5175
5207
|
} & {
|
|
5176
5208
|
id?: string | undefined;
|
|
5177
5209
|
timestamp_seconds?: number | undefined;
|
|
@@ -5181,7 +5213,8 @@ export declare const ChannelMessageList: {
|
|
|
5181
5213
|
referece?: string | undefined;
|
|
5182
5214
|
mention?: string | undefined;
|
|
5183
5215
|
reaction?: string | undefined;
|
|
5184
|
-
|
|
5216
|
+
repliers?: (string[] & string[] & { [K_2 in Exclude<keyof I["last_seen_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
5217
|
+
} & { [K_3 in Exclude<keyof I["last_seen_message"], keyof ChannelMessageHeader>]: never; }) | undefined;
|
|
5185
5218
|
last_sent_message?: ({
|
|
5186
5219
|
id?: string | undefined;
|
|
5187
5220
|
timestamp_seconds?: number | undefined;
|
|
@@ -5191,6 +5224,7 @@ export declare const ChannelMessageList: {
|
|
|
5191
5224
|
referece?: string | undefined;
|
|
5192
5225
|
mention?: string | undefined;
|
|
5193
5226
|
reaction?: string | undefined;
|
|
5227
|
+
repliers?: string[] | undefined;
|
|
5194
5228
|
} & {
|
|
5195
5229
|
id?: string | undefined;
|
|
5196
5230
|
timestamp_seconds?: number | undefined;
|
|
@@ -5200,8 +5234,9 @@ export declare const ChannelMessageList: {
|
|
|
5200
5234
|
referece?: string | undefined;
|
|
5201
5235
|
mention?: string | undefined;
|
|
5202
5236
|
reaction?: string | undefined;
|
|
5203
|
-
|
|
5204
|
-
|
|
5237
|
+
repliers?: (string[] & string[] & { [K_4 in Exclude<keyof I["last_sent_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
5238
|
+
} & { [K_5 in Exclude<keyof I["last_sent_message"], keyof ChannelMessageHeader>]: never; }) | undefined;
|
|
5239
|
+
} & { [K_6 in Exclude<keyof I, keyof ChannelMessageList>]: never; }>(base?: I | undefined): ChannelMessageList;
|
|
5205
5240
|
fromPartial<I_1 extends {
|
|
5206
5241
|
messages?: {
|
|
5207
5242
|
clan_id?: string | undefined;
|
|
@@ -5241,6 +5276,7 @@ export declare const ChannelMessageList: {
|
|
|
5241
5276
|
referece?: string | undefined;
|
|
5242
5277
|
mention?: string | undefined;
|
|
5243
5278
|
reaction?: string | undefined;
|
|
5279
|
+
repliers?: string[] | undefined;
|
|
5244
5280
|
} | undefined;
|
|
5245
5281
|
last_sent_message?: {
|
|
5246
5282
|
id?: string | undefined;
|
|
@@ -5251,6 +5287,7 @@ export declare const ChannelMessageList: {
|
|
|
5251
5287
|
referece?: string | undefined;
|
|
5252
5288
|
mention?: string | undefined;
|
|
5253
5289
|
reaction?: string | undefined;
|
|
5290
|
+
repliers?: string[] | undefined;
|
|
5254
5291
|
} | undefined;
|
|
5255
5292
|
} & {
|
|
5256
5293
|
messages?: ({
|
|
@@ -5337,7 +5374,7 @@ export declare const ChannelMessageList: {
|
|
|
5337
5374
|
hide_editted?: boolean | undefined;
|
|
5338
5375
|
is_public?: boolean | undefined;
|
|
5339
5376
|
topic_id?: string | undefined;
|
|
5340
|
-
} & { [
|
|
5377
|
+
} & { [K_7 in Exclude<keyof I_1["messages"][number], keyof ChannelMessage>]: never; })[] & { [K_8 in Exclude<keyof I_1["messages"], keyof {
|
|
5341
5378
|
clan_id?: string | undefined;
|
|
5342
5379
|
channel_id?: string | undefined;
|
|
5343
5380
|
message_id?: string | undefined;
|
|
@@ -5375,6 +5412,7 @@ export declare const ChannelMessageList: {
|
|
|
5375
5412
|
referece?: string | undefined;
|
|
5376
5413
|
mention?: string | undefined;
|
|
5377
5414
|
reaction?: string | undefined;
|
|
5415
|
+
repliers?: string[] | undefined;
|
|
5378
5416
|
} & {
|
|
5379
5417
|
id?: string | undefined;
|
|
5380
5418
|
timestamp_seconds?: number | undefined;
|
|
@@ -5384,7 +5422,8 @@ export declare const ChannelMessageList: {
|
|
|
5384
5422
|
referece?: string | undefined;
|
|
5385
5423
|
mention?: string | undefined;
|
|
5386
5424
|
reaction?: string | undefined;
|
|
5387
|
-
|
|
5425
|
+
repliers?: (string[] & string[] & { [K_9 in Exclude<keyof I_1["last_seen_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
5426
|
+
} & { [K_10 in Exclude<keyof I_1["last_seen_message"], keyof ChannelMessageHeader>]: never; }) | undefined;
|
|
5388
5427
|
last_sent_message?: ({
|
|
5389
5428
|
id?: string | undefined;
|
|
5390
5429
|
timestamp_seconds?: number | undefined;
|
|
@@ -5394,6 +5433,7 @@ export declare const ChannelMessageList: {
|
|
|
5394
5433
|
referece?: string | undefined;
|
|
5395
5434
|
mention?: string | undefined;
|
|
5396
5435
|
reaction?: string | undefined;
|
|
5436
|
+
repliers?: string[] | undefined;
|
|
5397
5437
|
} & {
|
|
5398
5438
|
id?: string | undefined;
|
|
5399
5439
|
timestamp_seconds?: number | undefined;
|
|
@@ -5403,8 +5443,9 @@ export declare const ChannelMessageList: {
|
|
|
5403
5443
|
referece?: string | undefined;
|
|
5404
5444
|
mention?: string | undefined;
|
|
5405
5445
|
reaction?: string | undefined;
|
|
5406
|
-
|
|
5407
|
-
|
|
5446
|
+
repliers?: (string[] & string[] & { [K_11 in Exclude<keyof I_1["last_sent_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
5447
|
+
} & { [K_12 in Exclude<keyof I_1["last_sent_message"], keyof ChannelMessageHeader>]: never; }) | undefined;
|
|
5448
|
+
} & { [K_13 in Exclude<keyof I_1, keyof ChannelMessageList>]: never; }>(object: I_1): ChannelMessageList;
|
|
5408
5449
|
};
|
|
5409
5450
|
export declare const CreateGroupRequest: {
|
|
5410
5451
|
encode(message: CreateGroupRequest, writer?: _m0.Writer): _m0.Writer;
|
|
@@ -7006,6 +7047,8 @@ export declare const ChannelAttachment: {
|
|
|
7006
7047
|
uploader?: string | undefined;
|
|
7007
7048
|
create_time?: Date | undefined;
|
|
7008
7049
|
message_id?: string | undefined;
|
|
7050
|
+
width?: number | undefined;
|
|
7051
|
+
height?: number | undefined;
|
|
7009
7052
|
} & {
|
|
7010
7053
|
id?: string | undefined;
|
|
7011
7054
|
filename?: string | undefined;
|
|
@@ -7015,6 +7058,8 @@ export declare const ChannelAttachment: {
|
|
|
7015
7058
|
uploader?: string | undefined;
|
|
7016
7059
|
create_time?: Date | undefined;
|
|
7017
7060
|
message_id?: string | undefined;
|
|
7061
|
+
width?: number | undefined;
|
|
7062
|
+
height?: number | undefined;
|
|
7018
7063
|
} & { [K in Exclude<keyof I, keyof ChannelAttachment>]: never; }>(base?: I | undefined): ChannelAttachment;
|
|
7019
7064
|
fromPartial<I_1 extends {
|
|
7020
7065
|
id?: string | undefined;
|
|
@@ -7025,6 +7070,8 @@ export declare const ChannelAttachment: {
|
|
|
7025
7070
|
uploader?: string | undefined;
|
|
7026
7071
|
create_time?: Date | undefined;
|
|
7027
7072
|
message_id?: string | undefined;
|
|
7073
|
+
width?: number | undefined;
|
|
7074
|
+
height?: number | undefined;
|
|
7028
7075
|
} & {
|
|
7029
7076
|
id?: string | undefined;
|
|
7030
7077
|
filename?: string | undefined;
|
|
@@ -7034,6 +7081,8 @@ export declare const ChannelAttachment: {
|
|
|
7034
7081
|
uploader?: string | undefined;
|
|
7035
7082
|
create_time?: Date | undefined;
|
|
7036
7083
|
message_id?: string | undefined;
|
|
7084
|
+
width?: number | undefined;
|
|
7085
|
+
height?: number | undefined;
|
|
7037
7086
|
} & { [K_1 in Exclude<keyof I_1, keyof ChannelAttachment>]: never; }>(object: I_1): ChannelAttachment;
|
|
7038
7087
|
};
|
|
7039
7088
|
export declare const ChannelAttachmentList: {
|
|
@@ -7051,6 +7100,8 @@ export declare const ChannelAttachmentList: {
|
|
|
7051
7100
|
uploader?: string | undefined;
|
|
7052
7101
|
create_time?: Date | undefined;
|
|
7053
7102
|
message_id?: string | undefined;
|
|
7103
|
+
width?: number | undefined;
|
|
7104
|
+
height?: number | undefined;
|
|
7054
7105
|
}[] | undefined;
|
|
7055
7106
|
} & {
|
|
7056
7107
|
attachments?: ({
|
|
@@ -7062,6 +7113,8 @@ export declare const ChannelAttachmentList: {
|
|
|
7062
7113
|
uploader?: string | undefined;
|
|
7063
7114
|
create_time?: Date | undefined;
|
|
7064
7115
|
message_id?: string | undefined;
|
|
7116
|
+
width?: number | undefined;
|
|
7117
|
+
height?: number | undefined;
|
|
7065
7118
|
}[] & ({
|
|
7066
7119
|
id?: string | undefined;
|
|
7067
7120
|
filename?: string | undefined;
|
|
@@ -7071,6 +7124,8 @@ export declare const ChannelAttachmentList: {
|
|
|
7071
7124
|
uploader?: string | undefined;
|
|
7072
7125
|
create_time?: Date | undefined;
|
|
7073
7126
|
message_id?: string | undefined;
|
|
7127
|
+
width?: number | undefined;
|
|
7128
|
+
height?: number | undefined;
|
|
7074
7129
|
} & {
|
|
7075
7130
|
id?: string | undefined;
|
|
7076
7131
|
filename?: string | undefined;
|
|
@@ -7080,6 +7135,8 @@ export declare const ChannelAttachmentList: {
|
|
|
7080
7135
|
uploader?: string | undefined;
|
|
7081
7136
|
create_time?: Date | undefined;
|
|
7082
7137
|
message_id?: string | undefined;
|
|
7138
|
+
width?: number | undefined;
|
|
7139
|
+
height?: number | undefined;
|
|
7083
7140
|
} & { [K in Exclude<keyof I["attachments"][number], keyof ChannelAttachment>]: never; })[] & { [K_1 in Exclude<keyof I["attachments"], keyof {
|
|
7084
7141
|
id?: string | undefined;
|
|
7085
7142
|
filename?: string | undefined;
|
|
@@ -7089,6 +7146,8 @@ export declare const ChannelAttachmentList: {
|
|
|
7089
7146
|
uploader?: string | undefined;
|
|
7090
7147
|
create_time?: Date | undefined;
|
|
7091
7148
|
message_id?: string | undefined;
|
|
7149
|
+
width?: number | undefined;
|
|
7150
|
+
height?: number | undefined;
|
|
7092
7151
|
}[]>]: never; }) | undefined;
|
|
7093
7152
|
} & { [K_2 in Exclude<keyof I, "attachments">]: never; }>(base?: I | undefined): ChannelAttachmentList;
|
|
7094
7153
|
fromPartial<I_1 extends {
|
|
@@ -7101,6 +7160,8 @@ export declare const ChannelAttachmentList: {
|
|
|
7101
7160
|
uploader?: string | undefined;
|
|
7102
7161
|
create_time?: Date | undefined;
|
|
7103
7162
|
message_id?: string | undefined;
|
|
7163
|
+
width?: number | undefined;
|
|
7164
|
+
height?: number | undefined;
|
|
7104
7165
|
}[] | undefined;
|
|
7105
7166
|
} & {
|
|
7106
7167
|
attachments?: ({
|
|
@@ -7112,6 +7173,8 @@ export declare const ChannelAttachmentList: {
|
|
|
7112
7173
|
uploader?: string | undefined;
|
|
7113
7174
|
create_time?: Date | undefined;
|
|
7114
7175
|
message_id?: string | undefined;
|
|
7176
|
+
width?: number | undefined;
|
|
7177
|
+
height?: number | undefined;
|
|
7115
7178
|
}[] & ({
|
|
7116
7179
|
id?: string | undefined;
|
|
7117
7180
|
filename?: string | undefined;
|
|
@@ -7121,6 +7184,8 @@ export declare const ChannelAttachmentList: {
|
|
|
7121
7184
|
uploader?: string | undefined;
|
|
7122
7185
|
create_time?: Date | undefined;
|
|
7123
7186
|
message_id?: string | undefined;
|
|
7187
|
+
width?: number | undefined;
|
|
7188
|
+
height?: number | undefined;
|
|
7124
7189
|
} & {
|
|
7125
7190
|
id?: string | undefined;
|
|
7126
7191
|
filename?: string | undefined;
|
|
@@ -7130,6 +7195,8 @@ export declare const ChannelAttachmentList: {
|
|
|
7130
7195
|
uploader?: string | undefined;
|
|
7131
7196
|
create_time?: Date | undefined;
|
|
7132
7197
|
message_id?: string | undefined;
|
|
7198
|
+
width?: number | undefined;
|
|
7199
|
+
height?: number | undefined;
|
|
7133
7200
|
} & { [K_3 in Exclude<keyof I_1["attachments"][number], keyof ChannelAttachment>]: never; })[] & { [K_4 in Exclude<keyof I_1["attachments"], keyof {
|
|
7134
7201
|
id?: string | undefined;
|
|
7135
7202
|
filename?: string | undefined;
|
|
@@ -7139,6 +7206,8 @@ export declare const ChannelAttachmentList: {
|
|
|
7139
7206
|
uploader?: string | undefined;
|
|
7140
7207
|
create_time?: Date | undefined;
|
|
7141
7208
|
message_id?: string | undefined;
|
|
7209
|
+
width?: number | undefined;
|
|
7210
|
+
height?: number | undefined;
|
|
7142
7211
|
}[]>]: never; }) | undefined;
|
|
7143
7212
|
} & { [K_5 in Exclude<keyof I_1, "attachments">]: never; }>(object: I_1): ChannelAttachmentList;
|
|
7144
7213
|
};
|
|
@@ -8502,6 +8571,7 @@ export declare const UpdateAccountRequest: {
|
|
|
8502
8571
|
dob?: Date | undefined;
|
|
8503
8572
|
logo?: string | undefined;
|
|
8504
8573
|
splash_screen?: string | undefined;
|
|
8574
|
+
encrypt_private_key?: string | undefined;
|
|
8505
8575
|
} & {
|
|
8506
8576
|
username?: string | undefined;
|
|
8507
8577
|
display_name?: string | undefined;
|
|
@@ -8513,6 +8583,7 @@ export declare const UpdateAccountRequest: {
|
|
|
8513
8583
|
dob?: Date | undefined;
|
|
8514
8584
|
logo?: string | undefined;
|
|
8515
8585
|
splash_screen?: string | undefined;
|
|
8586
|
+
encrypt_private_key?: string | undefined;
|
|
8516
8587
|
} & { [K in Exclude<keyof I, keyof UpdateAccountRequest>]: never; }>(base?: I | undefined): UpdateAccountRequest;
|
|
8517
8588
|
fromPartial<I_1 extends {
|
|
8518
8589
|
username?: string | undefined;
|
|
@@ -8525,6 +8596,7 @@ export declare const UpdateAccountRequest: {
|
|
|
8525
8596
|
dob?: Date | undefined;
|
|
8526
8597
|
logo?: string | undefined;
|
|
8527
8598
|
splash_screen?: string | undefined;
|
|
8599
|
+
encrypt_private_key?: string | undefined;
|
|
8528
8600
|
} & {
|
|
8529
8601
|
username?: string | undefined;
|
|
8530
8602
|
display_name?: string | undefined;
|
|
@@ -8536,6 +8608,7 @@ export declare const UpdateAccountRequest: {
|
|
|
8536
8608
|
dob?: Date | undefined;
|
|
8537
8609
|
logo?: string | undefined;
|
|
8538
8610
|
splash_screen?: string | undefined;
|
|
8611
|
+
encrypt_private_key?: string | undefined;
|
|
8539
8612
|
} & { [K_1 in Exclude<keyof I_1, keyof UpdateAccountRequest>]: never; }>(object: I_1): UpdateAccountRequest;
|
|
8540
8613
|
};
|
|
8541
8614
|
export declare const UpdateGroupRequest: {
|
|
@@ -9902,16 +9975,20 @@ export declare const DeleteCategoryDescRequest: {
|
|
|
9902
9975
|
create<I extends {
|
|
9903
9976
|
category_id?: string | undefined;
|
|
9904
9977
|
clan_id?: string | undefined;
|
|
9978
|
+
category_label?: string | undefined;
|
|
9905
9979
|
} & {
|
|
9906
9980
|
category_id?: string | undefined;
|
|
9907
9981
|
clan_id?: string | undefined;
|
|
9982
|
+
category_label?: string | undefined;
|
|
9908
9983
|
} & { [K in Exclude<keyof I, keyof DeleteCategoryDescRequest>]: never; }>(base?: I | undefined): DeleteCategoryDescRequest;
|
|
9909
9984
|
fromPartial<I_1 extends {
|
|
9910
9985
|
category_id?: string | undefined;
|
|
9911
9986
|
clan_id?: string | undefined;
|
|
9987
|
+
category_label?: string | undefined;
|
|
9912
9988
|
} & {
|
|
9913
9989
|
category_id?: string | undefined;
|
|
9914
9990
|
clan_id?: string | undefined;
|
|
9991
|
+
category_label?: string | undefined;
|
|
9915
9992
|
} & { [K_1 in Exclude<keyof I_1, keyof DeleteCategoryDescRequest>]: never; }>(object: I_1): DeleteCategoryDescRequest;
|
|
9916
9993
|
};
|
|
9917
9994
|
export declare const CategoryDescList: {
|
|
@@ -10028,6 +10105,7 @@ export declare const ChannelMessageHeader: {
|
|
|
10028
10105
|
referece?: string | undefined;
|
|
10029
10106
|
mention?: string | undefined;
|
|
10030
10107
|
reaction?: string | undefined;
|
|
10108
|
+
repliers?: string[] | undefined;
|
|
10031
10109
|
} & {
|
|
10032
10110
|
id?: string | undefined;
|
|
10033
10111
|
timestamp_seconds?: number | undefined;
|
|
@@ -10037,7 +10115,8 @@ export declare const ChannelMessageHeader: {
|
|
|
10037
10115
|
referece?: string | undefined;
|
|
10038
10116
|
mention?: string | undefined;
|
|
10039
10117
|
reaction?: string | undefined;
|
|
10040
|
-
|
|
10118
|
+
repliers?: (string[] & string[] & { [K in Exclude<keyof I["repliers"], keyof string[]>]: never; }) | undefined;
|
|
10119
|
+
} & { [K_1 in Exclude<keyof I, keyof ChannelMessageHeader>]: never; }>(base?: I | undefined): ChannelMessageHeader;
|
|
10041
10120
|
fromPartial<I_1 extends {
|
|
10042
10121
|
id?: string | undefined;
|
|
10043
10122
|
timestamp_seconds?: number | undefined;
|
|
@@ -10047,6 +10126,7 @@ export declare const ChannelMessageHeader: {
|
|
|
10047
10126
|
referece?: string | undefined;
|
|
10048
10127
|
mention?: string | undefined;
|
|
10049
10128
|
reaction?: string | undefined;
|
|
10129
|
+
repliers?: string[] | undefined;
|
|
10050
10130
|
} & {
|
|
10051
10131
|
id?: string | undefined;
|
|
10052
10132
|
timestamp_seconds?: number | undefined;
|
|
@@ -10056,7 +10136,8 @@ export declare const ChannelMessageHeader: {
|
|
|
10056
10136
|
referece?: string | undefined;
|
|
10057
10137
|
mention?: string | undefined;
|
|
10058
10138
|
reaction?: string | undefined;
|
|
10059
|
-
|
|
10139
|
+
repliers?: (string[] & string[] & { [K_2 in Exclude<keyof I_1["repliers"], keyof string[]>]: never; }) | undefined;
|
|
10140
|
+
} & { [K_3 in Exclude<keyof I_1, keyof ChannelMessageHeader>]: never; }>(object: I_1): ChannelMessageHeader;
|
|
10060
10141
|
};
|
|
10061
10142
|
export declare const ChannelDescription: {
|
|
10062
10143
|
encode(message: ChannelDescription, writer?: _m0.Writer): _m0.Writer;
|
|
@@ -10084,6 +10165,7 @@ export declare const ChannelDescription: {
|
|
|
10084
10165
|
referece?: string | undefined;
|
|
10085
10166
|
mention?: string | undefined;
|
|
10086
10167
|
reaction?: string | undefined;
|
|
10168
|
+
repliers?: string[] | undefined;
|
|
10087
10169
|
} | undefined;
|
|
10088
10170
|
last_seen_message?: {
|
|
10089
10171
|
id?: string | undefined;
|
|
@@ -10094,6 +10176,7 @@ export declare const ChannelDescription: {
|
|
|
10094
10176
|
referece?: string | undefined;
|
|
10095
10177
|
mention?: string | undefined;
|
|
10096
10178
|
reaction?: string | undefined;
|
|
10179
|
+
repliers?: string[] | undefined;
|
|
10097
10180
|
} | undefined;
|
|
10098
10181
|
is_online?: boolean[] | undefined;
|
|
10099
10182
|
meeting_code?: string | undefined;
|
|
@@ -10133,6 +10216,7 @@ export declare const ChannelDescription: {
|
|
|
10133
10216
|
referece?: string | undefined;
|
|
10134
10217
|
mention?: string | undefined;
|
|
10135
10218
|
reaction?: string | undefined;
|
|
10219
|
+
repliers?: string[] | undefined;
|
|
10136
10220
|
} & {
|
|
10137
10221
|
id?: string | undefined;
|
|
10138
10222
|
timestamp_seconds?: number | undefined;
|
|
@@ -10142,7 +10226,8 @@ export declare const ChannelDescription: {
|
|
|
10142
10226
|
referece?: string | undefined;
|
|
10143
10227
|
mention?: string | undefined;
|
|
10144
10228
|
reaction?: string | undefined;
|
|
10145
|
-
|
|
10229
|
+
repliers?: (string[] & string[] & { [K_2 in Exclude<keyof I["last_sent_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
10230
|
+
} & { [K_3 in Exclude<keyof I["last_sent_message"], keyof ChannelMessageHeader>]: never; }) | undefined;
|
|
10146
10231
|
last_seen_message?: ({
|
|
10147
10232
|
id?: string | undefined;
|
|
10148
10233
|
timestamp_seconds?: number | undefined;
|
|
@@ -10152,6 +10237,7 @@ export declare const ChannelDescription: {
|
|
|
10152
10237
|
referece?: string | undefined;
|
|
10153
10238
|
mention?: string | undefined;
|
|
10154
10239
|
reaction?: string | undefined;
|
|
10240
|
+
repliers?: string[] | undefined;
|
|
10155
10241
|
} & {
|
|
10156
10242
|
id?: string | undefined;
|
|
10157
10243
|
timestamp_seconds?: number | undefined;
|
|
@@ -10161,8 +10247,9 @@ export declare const ChannelDescription: {
|
|
|
10161
10247
|
referece?: string | undefined;
|
|
10162
10248
|
mention?: string | undefined;
|
|
10163
10249
|
reaction?: string | undefined;
|
|
10164
|
-
|
|
10165
|
-
|
|
10250
|
+
repliers?: (string[] & string[] & { [K_4 in Exclude<keyof I["last_seen_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
10251
|
+
} & { [K_5 in Exclude<keyof I["last_seen_message"], keyof ChannelMessageHeader>]: never; }) | undefined;
|
|
10252
|
+
is_online?: (boolean[] & boolean[] & { [K_6 in Exclude<keyof I["is_online"], keyof boolean[]>]: never; }) | undefined;
|
|
10166
10253
|
meeting_code?: string | undefined;
|
|
10167
10254
|
count_mess_unread?: number | undefined;
|
|
10168
10255
|
active?: number | undefined;
|
|
@@ -10171,15 +10258,15 @@ export declare const ChannelDescription: {
|
|
|
10171
10258
|
creator_name?: string | undefined;
|
|
10172
10259
|
create_time_seconds?: number | undefined;
|
|
10173
10260
|
update_time_seconds?: number | undefined;
|
|
10174
|
-
metadata?: (string[] & string[] & { [
|
|
10175
|
-
about_me?: (string[] & string[] & { [
|
|
10261
|
+
metadata?: (string[] & string[] & { [K_7 in Exclude<keyof I["metadata"], keyof string[]>]: never; }) | undefined;
|
|
10262
|
+
about_me?: (string[] & string[] & { [K_8 in Exclude<keyof I["about_me"], keyof string[]>]: never; }) | undefined;
|
|
10176
10263
|
clan_name?: string | undefined;
|
|
10177
10264
|
app_url?: string | undefined;
|
|
10178
10265
|
is_mute?: boolean | undefined;
|
|
10179
10266
|
age_restricted?: number | undefined;
|
|
10180
10267
|
topic?: string | undefined;
|
|
10181
10268
|
e2ee?: number | undefined;
|
|
10182
|
-
} & { [
|
|
10269
|
+
} & { [K_9 in Exclude<keyof I, keyof ChannelDescription>]: never; }>(base?: I | undefined): ChannelDescription;
|
|
10183
10270
|
fromPartial<I_1 extends {
|
|
10184
10271
|
clan_id?: string | undefined;
|
|
10185
10272
|
parrent_id?: string | undefined;
|
|
@@ -10201,6 +10288,7 @@ export declare const ChannelDescription: {
|
|
|
10201
10288
|
referece?: string | undefined;
|
|
10202
10289
|
mention?: string | undefined;
|
|
10203
10290
|
reaction?: string | undefined;
|
|
10291
|
+
repliers?: string[] | undefined;
|
|
10204
10292
|
} | undefined;
|
|
10205
10293
|
last_seen_message?: {
|
|
10206
10294
|
id?: string | undefined;
|
|
@@ -10211,6 +10299,7 @@ export declare const ChannelDescription: {
|
|
|
10211
10299
|
referece?: string | undefined;
|
|
10212
10300
|
mention?: string | undefined;
|
|
10213
10301
|
reaction?: string | undefined;
|
|
10302
|
+
repliers?: string[] | undefined;
|
|
10214
10303
|
} | undefined;
|
|
10215
10304
|
is_online?: boolean[] | undefined;
|
|
10216
10305
|
meeting_code?: string | undefined;
|
|
@@ -10239,8 +10328,8 @@ export declare const ChannelDescription: {
|
|
|
10239
10328
|
creator_id?: string | undefined;
|
|
10240
10329
|
channel_label?: string | undefined;
|
|
10241
10330
|
channel_private?: number | undefined;
|
|
10242
|
-
channel_avatar?: (string[] & string[] & { [
|
|
10243
|
-
user_id?: (string[] & string[] & { [
|
|
10331
|
+
channel_avatar?: (string[] & string[] & { [K_10 in Exclude<keyof I_1["channel_avatar"], keyof string[]>]: never; }) | undefined;
|
|
10332
|
+
user_id?: (string[] & string[] & { [K_11 in Exclude<keyof I_1["user_id"], keyof string[]>]: never; }) | undefined;
|
|
10244
10333
|
last_sent_message?: ({
|
|
10245
10334
|
id?: string | undefined;
|
|
10246
10335
|
timestamp_seconds?: number | undefined;
|
|
@@ -10250,6 +10339,7 @@ export declare const ChannelDescription: {
|
|
|
10250
10339
|
referece?: string | undefined;
|
|
10251
10340
|
mention?: string | undefined;
|
|
10252
10341
|
reaction?: string | undefined;
|
|
10342
|
+
repliers?: string[] | undefined;
|
|
10253
10343
|
} & {
|
|
10254
10344
|
id?: string | undefined;
|
|
10255
10345
|
timestamp_seconds?: number | undefined;
|
|
@@ -10259,7 +10349,8 @@ export declare const ChannelDescription: {
|
|
|
10259
10349
|
referece?: string | undefined;
|
|
10260
10350
|
mention?: string | undefined;
|
|
10261
10351
|
reaction?: string | undefined;
|
|
10262
|
-
|
|
10352
|
+
repliers?: (string[] & string[] & { [K_12 in Exclude<keyof I_1["last_sent_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
10353
|
+
} & { [K_13 in Exclude<keyof I_1["last_sent_message"], keyof ChannelMessageHeader>]: never; }) | undefined;
|
|
10263
10354
|
last_seen_message?: ({
|
|
10264
10355
|
id?: string | undefined;
|
|
10265
10356
|
timestamp_seconds?: number | undefined;
|
|
@@ -10269,6 +10360,7 @@ export declare const ChannelDescription: {
|
|
|
10269
10360
|
referece?: string | undefined;
|
|
10270
10361
|
mention?: string | undefined;
|
|
10271
10362
|
reaction?: string | undefined;
|
|
10363
|
+
repliers?: string[] | undefined;
|
|
10272
10364
|
} & {
|
|
10273
10365
|
id?: string | undefined;
|
|
10274
10366
|
timestamp_seconds?: number | undefined;
|
|
@@ -10278,8 +10370,9 @@ export declare const ChannelDescription: {
|
|
|
10278
10370
|
referece?: string | undefined;
|
|
10279
10371
|
mention?: string | undefined;
|
|
10280
10372
|
reaction?: string | undefined;
|
|
10281
|
-
|
|
10282
|
-
|
|
10373
|
+
repliers?: (string[] & string[] & { [K_14 in Exclude<keyof I_1["last_seen_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
10374
|
+
} & { [K_15 in Exclude<keyof I_1["last_seen_message"], keyof ChannelMessageHeader>]: never; }) | undefined;
|
|
10375
|
+
is_online?: (boolean[] & boolean[] & { [K_16 in Exclude<keyof I_1["is_online"], keyof boolean[]>]: never; }) | undefined;
|
|
10283
10376
|
meeting_code?: string | undefined;
|
|
10284
10377
|
count_mess_unread?: number | undefined;
|
|
10285
10378
|
active?: number | undefined;
|
|
@@ -10288,15 +10381,15 @@ export declare const ChannelDescription: {
|
|
|
10288
10381
|
creator_name?: string | undefined;
|
|
10289
10382
|
create_time_seconds?: number | undefined;
|
|
10290
10383
|
update_time_seconds?: number | undefined;
|
|
10291
|
-
metadata?: (string[] & string[] & { [
|
|
10292
|
-
about_me?: (string[] & string[] & { [
|
|
10384
|
+
metadata?: (string[] & string[] & { [K_17 in Exclude<keyof I_1["metadata"], keyof string[]>]: never; }) | undefined;
|
|
10385
|
+
about_me?: (string[] & string[] & { [K_18 in Exclude<keyof I_1["about_me"], keyof string[]>]: never; }) | undefined;
|
|
10293
10386
|
clan_name?: string | undefined;
|
|
10294
10387
|
app_url?: string | undefined;
|
|
10295
10388
|
is_mute?: boolean | undefined;
|
|
10296
10389
|
age_restricted?: number | undefined;
|
|
10297
10390
|
topic?: string | undefined;
|
|
10298
10391
|
e2ee?: number | undefined;
|
|
10299
|
-
} & { [
|
|
10392
|
+
} & { [K_19 in Exclude<keyof I_1, keyof ChannelDescription>]: never; }>(object: I_1): ChannelDescription;
|
|
10300
10393
|
};
|
|
10301
10394
|
export declare const ChannelDescList: {
|
|
10302
10395
|
encode(message: ChannelDescList, writer?: _m0.Writer): _m0.Writer;
|
|
@@ -10325,6 +10418,7 @@ export declare const ChannelDescList: {
|
|
|
10325
10418
|
referece?: string | undefined;
|
|
10326
10419
|
mention?: string | undefined;
|
|
10327
10420
|
reaction?: string | undefined;
|
|
10421
|
+
repliers?: string[] | undefined;
|
|
10328
10422
|
} | undefined;
|
|
10329
10423
|
last_seen_message?: {
|
|
10330
10424
|
id?: string | undefined;
|
|
@@ -10335,6 +10429,7 @@ export declare const ChannelDescList: {
|
|
|
10335
10429
|
referece?: string | undefined;
|
|
10336
10430
|
mention?: string | undefined;
|
|
10337
10431
|
reaction?: string | undefined;
|
|
10432
|
+
repliers?: string[] | undefined;
|
|
10338
10433
|
} | undefined;
|
|
10339
10434
|
is_online?: boolean[] | undefined;
|
|
10340
10435
|
meeting_code?: string | undefined;
|
|
@@ -10379,6 +10474,7 @@ export declare const ChannelDescList: {
|
|
|
10379
10474
|
referece?: string | undefined;
|
|
10380
10475
|
mention?: string | undefined;
|
|
10381
10476
|
reaction?: string | undefined;
|
|
10477
|
+
repliers?: string[] | undefined;
|
|
10382
10478
|
} | undefined;
|
|
10383
10479
|
last_seen_message?: {
|
|
10384
10480
|
id?: string | undefined;
|
|
@@ -10389,6 +10485,7 @@ export declare const ChannelDescList: {
|
|
|
10389
10485
|
referece?: string | undefined;
|
|
10390
10486
|
mention?: string | undefined;
|
|
10391
10487
|
reaction?: string | undefined;
|
|
10488
|
+
repliers?: string[] | undefined;
|
|
10392
10489
|
} | undefined;
|
|
10393
10490
|
is_online?: boolean[] | undefined;
|
|
10394
10491
|
meeting_code?: string | undefined;
|
|
@@ -10428,6 +10525,7 @@ export declare const ChannelDescList: {
|
|
|
10428
10525
|
referece?: string | undefined;
|
|
10429
10526
|
mention?: string | undefined;
|
|
10430
10527
|
reaction?: string | undefined;
|
|
10528
|
+
repliers?: string[] | undefined;
|
|
10431
10529
|
} | undefined;
|
|
10432
10530
|
last_seen_message?: {
|
|
10433
10531
|
id?: string | undefined;
|
|
@@ -10438,6 +10536,7 @@ export declare const ChannelDescList: {
|
|
|
10438
10536
|
referece?: string | undefined;
|
|
10439
10537
|
mention?: string | undefined;
|
|
10440
10538
|
reaction?: string | undefined;
|
|
10539
|
+
repliers?: string[] | undefined;
|
|
10441
10540
|
} | undefined;
|
|
10442
10541
|
is_online?: boolean[] | undefined;
|
|
10443
10542
|
meeting_code?: string | undefined;
|
|
@@ -10477,6 +10576,7 @@ export declare const ChannelDescList: {
|
|
|
10477
10576
|
referece?: string | undefined;
|
|
10478
10577
|
mention?: string | undefined;
|
|
10479
10578
|
reaction?: string | undefined;
|
|
10579
|
+
repliers?: string[] | undefined;
|
|
10480
10580
|
} & {
|
|
10481
10581
|
id?: string | undefined;
|
|
10482
10582
|
timestamp_seconds?: number | undefined;
|
|
@@ -10486,7 +10586,8 @@ export declare const ChannelDescList: {
|
|
|
10486
10586
|
referece?: string | undefined;
|
|
10487
10587
|
mention?: string | undefined;
|
|
10488
10588
|
reaction?: string | undefined;
|
|
10489
|
-
|
|
10589
|
+
repliers?: (string[] & string[] & { [K_2 in Exclude<keyof I["channeldesc"][number]["last_sent_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
10590
|
+
} & { [K_3 in Exclude<keyof I["channeldesc"][number]["last_sent_message"], keyof ChannelMessageHeader>]: never; }) | undefined;
|
|
10490
10591
|
last_seen_message?: ({
|
|
10491
10592
|
id?: string | undefined;
|
|
10492
10593
|
timestamp_seconds?: number | undefined;
|
|
@@ -10496,6 +10597,7 @@ export declare const ChannelDescList: {
|
|
|
10496
10597
|
referece?: string | undefined;
|
|
10497
10598
|
mention?: string | undefined;
|
|
10498
10599
|
reaction?: string | undefined;
|
|
10600
|
+
repliers?: string[] | undefined;
|
|
10499
10601
|
} & {
|
|
10500
10602
|
id?: string | undefined;
|
|
10501
10603
|
timestamp_seconds?: number | undefined;
|
|
@@ -10505,8 +10607,9 @@ export declare const ChannelDescList: {
|
|
|
10505
10607
|
referece?: string | undefined;
|
|
10506
10608
|
mention?: string | undefined;
|
|
10507
10609
|
reaction?: string | undefined;
|
|
10508
|
-
|
|
10509
|
-
|
|
10610
|
+
repliers?: (string[] & string[] & { [K_4 in Exclude<keyof I["channeldesc"][number]["last_seen_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
10611
|
+
} & { [K_5 in Exclude<keyof I["channeldesc"][number]["last_seen_message"], keyof ChannelMessageHeader>]: never; }) | undefined;
|
|
10612
|
+
is_online?: (boolean[] & boolean[] & { [K_6 in Exclude<keyof I["channeldesc"][number]["is_online"], keyof boolean[]>]: never; }) | undefined;
|
|
10510
10613
|
meeting_code?: string | undefined;
|
|
10511
10614
|
count_mess_unread?: number | undefined;
|
|
10512
10615
|
active?: number | undefined;
|
|
@@ -10515,15 +10618,15 @@ export declare const ChannelDescList: {
|
|
|
10515
10618
|
creator_name?: string | undefined;
|
|
10516
10619
|
create_time_seconds?: number | undefined;
|
|
10517
10620
|
update_time_seconds?: number | undefined;
|
|
10518
|
-
metadata?: (string[] & string[] & { [
|
|
10519
|
-
about_me?: (string[] & string[] & { [
|
|
10621
|
+
metadata?: (string[] & string[] & { [K_7 in Exclude<keyof I["channeldesc"][number]["metadata"], keyof string[]>]: never; }) | undefined;
|
|
10622
|
+
about_me?: (string[] & string[] & { [K_8 in Exclude<keyof I["channeldesc"][number]["about_me"], keyof string[]>]: never; }) | undefined;
|
|
10520
10623
|
clan_name?: string | undefined;
|
|
10521
10624
|
app_url?: string | undefined;
|
|
10522
10625
|
is_mute?: boolean | undefined;
|
|
10523
10626
|
age_restricted?: number | undefined;
|
|
10524
10627
|
topic?: string | undefined;
|
|
10525
10628
|
e2ee?: number | undefined;
|
|
10526
|
-
} & { [
|
|
10629
|
+
} & { [K_9 in Exclude<keyof I["channeldesc"][number], keyof ChannelDescription>]: never; })[] & { [K_10 in Exclude<keyof I["channeldesc"], keyof {
|
|
10527
10630
|
clan_id?: string | undefined;
|
|
10528
10631
|
parrent_id?: string | undefined;
|
|
10529
10632
|
channel_id?: string | undefined;
|
|
@@ -10544,6 +10647,7 @@ export declare const ChannelDescList: {
|
|
|
10544
10647
|
referece?: string | undefined;
|
|
10545
10648
|
mention?: string | undefined;
|
|
10546
10649
|
reaction?: string | undefined;
|
|
10650
|
+
repliers?: string[] | undefined;
|
|
10547
10651
|
} | undefined;
|
|
10548
10652
|
last_seen_message?: {
|
|
10549
10653
|
id?: string | undefined;
|
|
@@ -10554,6 +10658,7 @@ export declare const ChannelDescList: {
|
|
|
10554
10658
|
referece?: string | undefined;
|
|
10555
10659
|
mention?: string | undefined;
|
|
10556
10660
|
reaction?: string | undefined;
|
|
10661
|
+
repliers?: string[] | undefined;
|
|
10557
10662
|
} | undefined;
|
|
10558
10663
|
is_online?: boolean[] | undefined;
|
|
10559
10664
|
meeting_code?: string | undefined;
|
|
@@ -10576,7 +10681,7 @@ export declare const ChannelDescList: {
|
|
|
10576
10681
|
next_cursor?: string | undefined;
|
|
10577
10682
|
prev_cursor?: string | undefined;
|
|
10578
10683
|
cacheable_cursor?: string | undefined;
|
|
10579
|
-
} & { [
|
|
10684
|
+
} & { [K_11 in Exclude<keyof I, keyof ChannelDescList>]: never; }>(base?: I | undefined): ChannelDescList;
|
|
10580
10685
|
fromPartial<I_1 extends {
|
|
10581
10686
|
channeldesc?: {
|
|
10582
10687
|
clan_id?: string | undefined;
|
|
@@ -10599,6 +10704,7 @@ export declare const ChannelDescList: {
|
|
|
10599
10704
|
referece?: string | undefined;
|
|
10600
10705
|
mention?: string | undefined;
|
|
10601
10706
|
reaction?: string | undefined;
|
|
10707
|
+
repliers?: string[] | undefined;
|
|
10602
10708
|
} | undefined;
|
|
10603
10709
|
last_seen_message?: {
|
|
10604
10710
|
id?: string | undefined;
|
|
@@ -10609,6 +10715,7 @@ export declare const ChannelDescList: {
|
|
|
10609
10715
|
referece?: string | undefined;
|
|
10610
10716
|
mention?: string | undefined;
|
|
10611
10717
|
reaction?: string | undefined;
|
|
10718
|
+
repliers?: string[] | undefined;
|
|
10612
10719
|
} | undefined;
|
|
10613
10720
|
is_online?: boolean[] | undefined;
|
|
10614
10721
|
meeting_code?: string | undefined;
|
|
@@ -10653,6 +10760,7 @@ export declare const ChannelDescList: {
|
|
|
10653
10760
|
referece?: string | undefined;
|
|
10654
10761
|
mention?: string | undefined;
|
|
10655
10762
|
reaction?: string | undefined;
|
|
10763
|
+
repliers?: string[] | undefined;
|
|
10656
10764
|
} | undefined;
|
|
10657
10765
|
last_seen_message?: {
|
|
10658
10766
|
id?: string | undefined;
|
|
@@ -10663,6 +10771,7 @@ export declare const ChannelDescList: {
|
|
|
10663
10771
|
referece?: string | undefined;
|
|
10664
10772
|
mention?: string | undefined;
|
|
10665
10773
|
reaction?: string | undefined;
|
|
10774
|
+
repliers?: string[] | undefined;
|
|
10666
10775
|
} | undefined;
|
|
10667
10776
|
is_online?: boolean[] | undefined;
|
|
10668
10777
|
meeting_code?: string | undefined;
|
|
@@ -10702,6 +10811,7 @@ export declare const ChannelDescList: {
|
|
|
10702
10811
|
referece?: string | undefined;
|
|
10703
10812
|
mention?: string | undefined;
|
|
10704
10813
|
reaction?: string | undefined;
|
|
10814
|
+
repliers?: string[] | undefined;
|
|
10705
10815
|
} | undefined;
|
|
10706
10816
|
last_seen_message?: {
|
|
10707
10817
|
id?: string | undefined;
|
|
@@ -10712,6 +10822,7 @@ export declare const ChannelDescList: {
|
|
|
10712
10822
|
referece?: string | undefined;
|
|
10713
10823
|
mention?: string | undefined;
|
|
10714
10824
|
reaction?: string | undefined;
|
|
10825
|
+
repliers?: string[] | undefined;
|
|
10715
10826
|
} | undefined;
|
|
10716
10827
|
is_online?: boolean[] | undefined;
|
|
10717
10828
|
meeting_code?: string | undefined;
|
|
@@ -10740,8 +10851,8 @@ export declare const ChannelDescList: {
|
|
|
10740
10851
|
creator_id?: string | undefined;
|
|
10741
10852
|
channel_label?: string | undefined;
|
|
10742
10853
|
channel_private?: number | undefined;
|
|
10743
|
-
channel_avatar?: (string[] & string[] & { [
|
|
10744
|
-
user_id?: (string[] & string[] & { [
|
|
10854
|
+
channel_avatar?: (string[] & string[] & { [K_12 in Exclude<keyof I_1["channeldesc"][number]["channel_avatar"], keyof string[]>]: never; }) | undefined;
|
|
10855
|
+
user_id?: (string[] & string[] & { [K_13 in Exclude<keyof I_1["channeldesc"][number]["user_id"], keyof string[]>]: never; }) | undefined;
|
|
10745
10856
|
last_sent_message?: ({
|
|
10746
10857
|
id?: string | undefined;
|
|
10747
10858
|
timestamp_seconds?: number | undefined;
|
|
@@ -10751,6 +10862,7 @@ export declare const ChannelDescList: {
|
|
|
10751
10862
|
referece?: string | undefined;
|
|
10752
10863
|
mention?: string | undefined;
|
|
10753
10864
|
reaction?: string | undefined;
|
|
10865
|
+
repliers?: string[] | undefined;
|
|
10754
10866
|
} & {
|
|
10755
10867
|
id?: string | undefined;
|
|
10756
10868
|
timestamp_seconds?: number | undefined;
|
|
@@ -10760,7 +10872,8 @@ export declare const ChannelDescList: {
|
|
|
10760
10872
|
referece?: string | undefined;
|
|
10761
10873
|
mention?: string | undefined;
|
|
10762
10874
|
reaction?: string | undefined;
|
|
10763
|
-
|
|
10875
|
+
repliers?: (string[] & string[] & { [K_14 in Exclude<keyof I_1["channeldesc"][number]["last_sent_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
10876
|
+
} & { [K_15 in Exclude<keyof I_1["channeldesc"][number]["last_sent_message"], keyof ChannelMessageHeader>]: never; }) | undefined;
|
|
10764
10877
|
last_seen_message?: ({
|
|
10765
10878
|
id?: string | undefined;
|
|
10766
10879
|
timestamp_seconds?: number | undefined;
|
|
@@ -10770,6 +10883,7 @@ export declare const ChannelDescList: {
|
|
|
10770
10883
|
referece?: string | undefined;
|
|
10771
10884
|
mention?: string | undefined;
|
|
10772
10885
|
reaction?: string | undefined;
|
|
10886
|
+
repliers?: string[] | undefined;
|
|
10773
10887
|
} & {
|
|
10774
10888
|
id?: string | undefined;
|
|
10775
10889
|
timestamp_seconds?: number | undefined;
|
|
@@ -10779,8 +10893,9 @@ export declare const ChannelDescList: {
|
|
|
10779
10893
|
referece?: string | undefined;
|
|
10780
10894
|
mention?: string | undefined;
|
|
10781
10895
|
reaction?: string | undefined;
|
|
10782
|
-
|
|
10783
|
-
|
|
10896
|
+
repliers?: (string[] & string[] & { [K_16 in Exclude<keyof I_1["channeldesc"][number]["last_seen_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
10897
|
+
} & { [K_17 in Exclude<keyof I_1["channeldesc"][number]["last_seen_message"], keyof ChannelMessageHeader>]: never; }) | undefined;
|
|
10898
|
+
is_online?: (boolean[] & boolean[] & { [K_18 in Exclude<keyof I_1["channeldesc"][number]["is_online"], keyof boolean[]>]: never; }) | undefined;
|
|
10784
10899
|
meeting_code?: string | undefined;
|
|
10785
10900
|
count_mess_unread?: number | undefined;
|
|
10786
10901
|
active?: number | undefined;
|
|
@@ -10789,15 +10904,15 @@ export declare const ChannelDescList: {
|
|
|
10789
10904
|
creator_name?: string | undefined;
|
|
10790
10905
|
create_time_seconds?: number | undefined;
|
|
10791
10906
|
update_time_seconds?: number | undefined;
|
|
10792
|
-
metadata?: (string[] & string[] & { [
|
|
10793
|
-
about_me?: (string[] & string[] & { [
|
|
10907
|
+
metadata?: (string[] & string[] & { [K_19 in Exclude<keyof I_1["channeldesc"][number]["metadata"], keyof string[]>]: never; }) | undefined;
|
|
10908
|
+
about_me?: (string[] & string[] & { [K_20 in Exclude<keyof I_1["channeldesc"][number]["about_me"], keyof string[]>]: never; }) | undefined;
|
|
10794
10909
|
clan_name?: string | undefined;
|
|
10795
10910
|
app_url?: string | undefined;
|
|
10796
10911
|
is_mute?: boolean | undefined;
|
|
10797
10912
|
age_restricted?: number | undefined;
|
|
10798
10913
|
topic?: string | undefined;
|
|
10799
10914
|
e2ee?: number | undefined;
|
|
10800
|
-
} & { [
|
|
10915
|
+
} & { [K_21 in Exclude<keyof I_1["channeldesc"][number], keyof ChannelDescription>]: never; })[] & { [K_22 in Exclude<keyof I_1["channeldesc"], keyof {
|
|
10801
10916
|
clan_id?: string | undefined;
|
|
10802
10917
|
parrent_id?: string | undefined;
|
|
10803
10918
|
channel_id?: string | undefined;
|
|
@@ -10818,6 +10933,7 @@ export declare const ChannelDescList: {
|
|
|
10818
10933
|
referece?: string | undefined;
|
|
10819
10934
|
mention?: string | undefined;
|
|
10820
10935
|
reaction?: string | undefined;
|
|
10936
|
+
repliers?: string[] | undefined;
|
|
10821
10937
|
} | undefined;
|
|
10822
10938
|
last_seen_message?: {
|
|
10823
10939
|
id?: string | undefined;
|
|
@@ -10828,6 +10944,7 @@ export declare const ChannelDescList: {
|
|
|
10828
10944
|
referece?: string | undefined;
|
|
10829
10945
|
mention?: string | undefined;
|
|
10830
10946
|
reaction?: string | undefined;
|
|
10947
|
+
repliers?: string[] | undefined;
|
|
10831
10948
|
} | undefined;
|
|
10832
10949
|
is_online?: boolean[] | undefined;
|
|
10833
10950
|
meeting_code?: string | undefined;
|
|
@@ -10850,7 +10967,7 @@ export declare const ChannelDescList: {
|
|
|
10850
10967
|
next_cursor?: string | undefined;
|
|
10851
10968
|
prev_cursor?: string | undefined;
|
|
10852
10969
|
cacheable_cursor?: string | undefined;
|
|
10853
|
-
} & { [
|
|
10970
|
+
} & { [K_23 in Exclude<keyof I_1, keyof ChannelDescList>]: never; }>(object: I_1): ChannelDescList;
|
|
10854
10971
|
};
|
|
10855
10972
|
export declare const ListThreadRequest: {
|
|
10856
10973
|
encode(message: ListThreadRequest, writer?: _m0.Writer): _m0.Writer;
|
|
@@ -11462,13 +11579,16 @@ export declare const EventManagement: {
|
|
|
11462
11579
|
start_event?: number | undefined;
|
|
11463
11580
|
creator_id?: string | undefined;
|
|
11464
11581
|
clan_id?: string | undefined;
|
|
11465
|
-
|
|
11582
|
+
channel_voice_id?: string | undefined;
|
|
11466
11583
|
address?: string | undefined;
|
|
11467
11584
|
start_time?: Date | undefined;
|
|
11468
11585
|
end_time?: Date | undefined;
|
|
11469
11586
|
user_ids?: string[] | undefined;
|
|
11470
11587
|
create_time?: Date | undefined;
|
|
11471
11588
|
max_permission?: number | undefined;
|
|
11589
|
+
channel_id?: string | undefined;
|
|
11590
|
+
event_status?: number | undefined;
|
|
11591
|
+
repeat_type?: number | undefined;
|
|
11472
11592
|
} & {
|
|
11473
11593
|
id?: string | undefined;
|
|
11474
11594
|
title?: string | undefined;
|
|
@@ -11478,13 +11598,16 @@ export declare const EventManagement: {
|
|
|
11478
11598
|
start_event?: number | undefined;
|
|
11479
11599
|
creator_id?: string | undefined;
|
|
11480
11600
|
clan_id?: string | undefined;
|
|
11481
|
-
|
|
11601
|
+
channel_voice_id?: string | undefined;
|
|
11482
11602
|
address?: string | undefined;
|
|
11483
11603
|
start_time?: Date | undefined;
|
|
11484
11604
|
end_time?: Date | undefined;
|
|
11485
11605
|
user_ids?: (string[] & string[] & { [K in Exclude<keyof I["user_ids"], keyof string[]>]: never; }) | undefined;
|
|
11486
11606
|
create_time?: Date | undefined;
|
|
11487
11607
|
max_permission?: number | undefined;
|
|
11608
|
+
channel_id?: string | undefined;
|
|
11609
|
+
event_status?: number | undefined;
|
|
11610
|
+
repeat_type?: number | undefined;
|
|
11488
11611
|
} & { [K_1 in Exclude<keyof I, keyof EventManagement>]: never; }>(base?: I | undefined): EventManagement;
|
|
11489
11612
|
fromPartial<I_1 extends {
|
|
11490
11613
|
id?: string | undefined;
|
|
@@ -11495,13 +11618,16 @@ export declare const EventManagement: {
|
|
|
11495
11618
|
start_event?: number | undefined;
|
|
11496
11619
|
creator_id?: string | undefined;
|
|
11497
11620
|
clan_id?: string | undefined;
|
|
11498
|
-
|
|
11621
|
+
channel_voice_id?: string | undefined;
|
|
11499
11622
|
address?: string | undefined;
|
|
11500
11623
|
start_time?: Date | undefined;
|
|
11501
11624
|
end_time?: Date | undefined;
|
|
11502
11625
|
user_ids?: string[] | undefined;
|
|
11503
11626
|
create_time?: Date | undefined;
|
|
11504
11627
|
max_permission?: number | undefined;
|
|
11628
|
+
channel_id?: string | undefined;
|
|
11629
|
+
event_status?: number | undefined;
|
|
11630
|
+
repeat_type?: number | undefined;
|
|
11505
11631
|
} & {
|
|
11506
11632
|
id?: string | undefined;
|
|
11507
11633
|
title?: string | undefined;
|
|
@@ -11511,13 +11637,16 @@ export declare const EventManagement: {
|
|
|
11511
11637
|
start_event?: number | undefined;
|
|
11512
11638
|
creator_id?: string | undefined;
|
|
11513
11639
|
clan_id?: string | undefined;
|
|
11514
|
-
|
|
11640
|
+
channel_voice_id?: string | undefined;
|
|
11515
11641
|
address?: string | undefined;
|
|
11516
11642
|
start_time?: Date | undefined;
|
|
11517
11643
|
end_time?: Date | undefined;
|
|
11518
11644
|
user_ids?: (string[] & string[] & { [K_2 in Exclude<keyof I_1["user_ids"], keyof string[]>]: never; }) | undefined;
|
|
11519
11645
|
create_time?: Date | undefined;
|
|
11520
11646
|
max_permission?: number | undefined;
|
|
11647
|
+
channel_id?: string | undefined;
|
|
11648
|
+
event_status?: number | undefined;
|
|
11649
|
+
repeat_type?: number | undefined;
|
|
11521
11650
|
} & { [K_3 in Exclude<keyof I_1, keyof EventManagement>]: never; }>(object: I_1): EventManagement;
|
|
11522
11651
|
};
|
|
11523
11652
|
export declare const Permission: {
|
|
@@ -12873,13 +13002,16 @@ export declare const EventList: {
|
|
|
12873
13002
|
start_event?: number | undefined;
|
|
12874
13003
|
creator_id?: string | undefined;
|
|
12875
13004
|
clan_id?: string | undefined;
|
|
12876
|
-
|
|
13005
|
+
channel_voice_id?: string | undefined;
|
|
12877
13006
|
address?: string | undefined;
|
|
12878
13007
|
start_time?: Date | undefined;
|
|
12879
13008
|
end_time?: Date | undefined;
|
|
12880
13009
|
user_ids?: string[] | undefined;
|
|
12881
13010
|
create_time?: Date | undefined;
|
|
12882
13011
|
max_permission?: number | undefined;
|
|
13012
|
+
channel_id?: string | undefined;
|
|
13013
|
+
event_status?: number | undefined;
|
|
13014
|
+
repeat_type?: number | undefined;
|
|
12883
13015
|
}[] | undefined;
|
|
12884
13016
|
} & {
|
|
12885
13017
|
events?: ({
|
|
@@ -12891,13 +13023,16 @@ export declare const EventList: {
|
|
|
12891
13023
|
start_event?: number | undefined;
|
|
12892
13024
|
creator_id?: string | undefined;
|
|
12893
13025
|
clan_id?: string | undefined;
|
|
12894
|
-
|
|
13026
|
+
channel_voice_id?: string | undefined;
|
|
12895
13027
|
address?: string | undefined;
|
|
12896
13028
|
start_time?: Date | undefined;
|
|
12897
13029
|
end_time?: Date | undefined;
|
|
12898
13030
|
user_ids?: string[] | undefined;
|
|
12899
13031
|
create_time?: Date | undefined;
|
|
12900
13032
|
max_permission?: number | undefined;
|
|
13033
|
+
channel_id?: string | undefined;
|
|
13034
|
+
event_status?: number | undefined;
|
|
13035
|
+
repeat_type?: number | undefined;
|
|
12901
13036
|
}[] & ({
|
|
12902
13037
|
id?: string | undefined;
|
|
12903
13038
|
title?: string | undefined;
|
|
@@ -12907,13 +13042,16 @@ export declare const EventList: {
|
|
|
12907
13042
|
start_event?: number | undefined;
|
|
12908
13043
|
creator_id?: string | undefined;
|
|
12909
13044
|
clan_id?: string | undefined;
|
|
12910
|
-
|
|
13045
|
+
channel_voice_id?: string | undefined;
|
|
12911
13046
|
address?: string | undefined;
|
|
12912
13047
|
start_time?: Date | undefined;
|
|
12913
13048
|
end_time?: Date | undefined;
|
|
12914
13049
|
user_ids?: string[] | undefined;
|
|
12915
13050
|
create_time?: Date | undefined;
|
|
12916
13051
|
max_permission?: number | undefined;
|
|
13052
|
+
channel_id?: string | undefined;
|
|
13053
|
+
event_status?: number | undefined;
|
|
13054
|
+
repeat_type?: number | undefined;
|
|
12917
13055
|
} & {
|
|
12918
13056
|
id?: string | undefined;
|
|
12919
13057
|
title?: string | undefined;
|
|
@@ -12923,13 +13061,16 @@ export declare const EventList: {
|
|
|
12923
13061
|
start_event?: number | undefined;
|
|
12924
13062
|
creator_id?: string | undefined;
|
|
12925
13063
|
clan_id?: string | undefined;
|
|
12926
|
-
|
|
13064
|
+
channel_voice_id?: string | undefined;
|
|
12927
13065
|
address?: string | undefined;
|
|
12928
13066
|
start_time?: Date | undefined;
|
|
12929
13067
|
end_time?: Date | undefined;
|
|
12930
13068
|
user_ids?: (string[] & string[] & { [K in Exclude<keyof I["events"][number]["user_ids"], keyof string[]>]: never; }) | undefined;
|
|
12931
13069
|
create_time?: Date | undefined;
|
|
12932
13070
|
max_permission?: number | undefined;
|
|
13071
|
+
channel_id?: string | undefined;
|
|
13072
|
+
event_status?: number | undefined;
|
|
13073
|
+
repeat_type?: number | undefined;
|
|
12933
13074
|
} & { [K_1 in Exclude<keyof I["events"][number], keyof EventManagement>]: never; })[] & { [K_2 in Exclude<keyof I["events"], keyof {
|
|
12934
13075
|
id?: string | undefined;
|
|
12935
13076
|
title?: string | undefined;
|
|
@@ -12939,13 +13080,16 @@ export declare const EventList: {
|
|
|
12939
13080
|
start_event?: number | undefined;
|
|
12940
13081
|
creator_id?: string | undefined;
|
|
12941
13082
|
clan_id?: string | undefined;
|
|
12942
|
-
|
|
13083
|
+
channel_voice_id?: string | undefined;
|
|
12943
13084
|
address?: string | undefined;
|
|
12944
13085
|
start_time?: Date | undefined;
|
|
12945
13086
|
end_time?: Date | undefined;
|
|
12946
13087
|
user_ids?: string[] | undefined;
|
|
12947
13088
|
create_time?: Date | undefined;
|
|
12948
13089
|
max_permission?: number | undefined;
|
|
13090
|
+
channel_id?: string | undefined;
|
|
13091
|
+
event_status?: number | undefined;
|
|
13092
|
+
repeat_type?: number | undefined;
|
|
12949
13093
|
}[]>]: never; }) | undefined;
|
|
12950
13094
|
} & { [K_3 in Exclude<keyof I, "events">]: never; }>(base?: I | undefined): EventList;
|
|
12951
13095
|
fromPartial<I_1 extends {
|
|
@@ -12958,13 +13102,16 @@ export declare const EventList: {
|
|
|
12958
13102
|
start_event?: number | undefined;
|
|
12959
13103
|
creator_id?: string | undefined;
|
|
12960
13104
|
clan_id?: string | undefined;
|
|
12961
|
-
|
|
13105
|
+
channel_voice_id?: string | undefined;
|
|
12962
13106
|
address?: string | undefined;
|
|
12963
13107
|
start_time?: Date | undefined;
|
|
12964
13108
|
end_time?: Date | undefined;
|
|
12965
13109
|
user_ids?: string[] | undefined;
|
|
12966
13110
|
create_time?: Date | undefined;
|
|
12967
13111
|
max_permission?: number | undefined;
|
|
13112
|
+
channel_id?: string | undefined;
|
|
13113
|
+
event_status?: number | undefined;
|
|
13114
|
+
repeat_type?: number | undefined;
|
|
12968
13115
|
}[] | undefined;
|
|
12969
13116
|
} & {
|
|
12970
13117
|
events?: ({
|
|
@@ -12976,13 +13123,16 @@ export declare const EventList: {
|
|
|
12976
13123
|
start_event?: number | undefined;
|
|
12977
13124
|
creator_id?: string | undefined;
|
|
12978
13125
|
clan_id?: string | undefined;
|
|
12979
|
-
|
|
13126
|
+
channel_voice_id?: string | undefined;
|
|
12980
13127
|
address?: string | undefined;
|
|
12981
13128
|
start_time?: Date | undefined;
|
|
12982
13129
|
end_time?: Date | undefined;
|
|
12983
13130
|
user_ids?: string[] | undefined;
|
|
12984
13131
|
create_time?: Date | undefined;
|
|
12985
13132
|
max_permission?: number | undefined;
|
|
13133
|
+
channel_id?: string | undefined;
|
|
13134
|
+
event_status?: number | undefined;
|
|
13135
|
+
repeat_type?: number | undefined;
|
|
12986
13136
|
}[] & ({
|
|
12987
13137
|
id?: string | undefined;
|
|
12988
13138
|
title?: string | undefined;
|
|
@@ -12992,13 +13142,16 @@ export declare const EventList: {
|
|
|
12992
13142
|
start_event?: number | undefined;
|
|
12993
13143
|
creator_id?: string | undefined;
|
|
12994
13144
|
clan_id?: string | undefined;
|
|
12995
|
-
|
|
13145
|
+
channel_voice_id?: string | undefined;
|
|
12996
13146
|
address?: string | undefined;
|
|
12997
13147
|
start_time?: Date | undefined;
|
|
12998
13148
|
end_time?: Date | undefined;
|
|
12999
13149
|
user_ids?: string[] | undefined;
|
|
13000
13150
|
create_time?: Date | undefined;
|
|
13001
13151
|
max_permission?: number | undefined;
|
|
13152
|
+
channel_id?: string | undefined;
|
|
13153
|
+
event_status?: number | undefined;
|
|
13154
|
+
repeat_type?: number | undefined;
|
|
13002
13155
|
} & {
|
|
13003
13156
|
id?: string | undefined;
|
|
13004
13157
|
title?: string | undefined;
|
|
@@ -13008,13 +13161,16 @@ export declare const EventList: {
|
|
|
13008
13161
|
start_event?: number | undefined;
|
|
13009
13162
|
creator_id?: string | undefined;
|
|
13010
13163
|
clan_id?: string | undefined;
|
|
13011
|
-
|
|
13164
|
+
channel_voice_id?: string | undefined;
|
|
13012
13165
|
address?: string | undefined;
|
|
13013
13166
|
start_time?: Date | undefined;
|
|
13014
13167
|
end_time?: Date | undefined;
|
|
13015
13168
|
user_ids?: (string[] & string[] & { [K_4 in Exclude<keyof I_1["events"][number]["user_ids"], keyof string[]>]: never; }) | undefined;
|
|
13016
13169
|
create_time?: Date | undefined;
|
|
13017
13170
|
max_permission?: number | undefined;
|
|
13171
|
+
channel_id?: string | undefined;
|
|
13172
|
+
event_status?: number | undefined;
|
|
13173
|
+
repeat_type?: number | undefined;
|
|
13018
13174
|
} & { [K_5 in Exclude<keyof I_1["events"][number], keyof EventManagement>]: never; })[] & { [K_6 in Exclude<keyof I_1["events"], keyof {
|
|
13019
13175
|
id?: string | undefined;
|
|
13020
13176
|
title?: string | undefined;
|
|
@@ -13024,13 +13180,16 @@ export declare const EventList: {
|
|
|
13024
13180
|
start_event?: number | undefined;
|
|
13025
13181
|
creator_id?: string | undefined;
|
|
13026
13182
|
clan_id?: string | undefined;
|
|
13027
|
-
|
|
13183
|
+
channel_voice_id?: string | undefined;
|
|
13028
13184
|
address?: string | undefined;
|
|
13029
13185
|
start_time?: Date | undefined;
|
|
13030
13186
|
end_time?: Date | undefined;
|
|
13031
13187
|
user_ids?: string[] | undefined;
|
|
13032
13188
|
create_time?: Date | undefined;
|
|
13033
13189
|
max_permission?: number | undefined;
|
|
13190
|
+
channel_id?: string | undefined;
|
|
13191
|
+
event_status?: number | undefined;
|
|
13192
|
+
repeat_type?: number | undefined;
|
|
13034
13193
|
}[]>]: never; }) | undefined;
|
|
13035
13194
|
} & { [K_7 in Exclude<keyof I_1, "events">]: never; }>(object: I_1): EventList;
|
|
13036
13195
|
};
|
|
@@ -13506,46 +13665,62 @@ export declare const CreateEventRequest: {
|
|
|
13506
13665
|
logo?: string | undefined;
|
|
13507
13666
|
description?: string | undefined;
|
|
13508
13667
|
clan_id?: string | undefined;
|
|
13509
|
-
|
|
13668
|
+
channel_voice_id?: string | undefined;
|
|
13510
13669
|
address?: string | undefined;
|
|
13511
13670
|
start_time?: Date | undefined;
|
|
13512
13671
|
end_time?: Date | undefined;
|
|
13513
13672
|
event_id?: string | undefined;
|
|
13514
|
-
event_status?:
|
|
13673
|
+
event_status?: number | undefined;
|
|
13674
|
+
channel_id?: string | undefined;
|
|
13675
|
+
action?: number | undefined;
|
|
13676
|
+
repeat_type?: number | undefined;
|
|
13677
|
+
creator_id?: string | undefined;
|
|
13515
13678
|
} & {
|
|
13516
13679
|
title?: string | undefined;
|
|
13517
13680
|
logo?: string | undefined;
|
|
13518
13681
|
description?: string | undefined;
|
|
13519
13682
|
clan_id?: string | undefined;
|
|
13520
|
-
|
|
13683
|
+
channel_voice_id?: string | undefined;
|
|
13521
13684
|
address?: string | undefined;
|
|
13522
13685
|
start_time?: Date | undefined;
|
|
13523
13686
|
end_time?: Date | undefined;
|
|
13524
13687
|
event_id?: string | undefined;
|
|
13525
|
-
event_status?:
|
|
13688
|
+
event_status?: number | undefined;
|
|
13689
|
+
channel_id?: string | undefined;
|
|
13690
|
+
action?: number | undefined;
|
|
13691
|
+
repeat_type?: number | undefined;
|
|
13692
|
+
creator_id?: string | undefined;
|
|
13526
13693
|
} & { [K in Exclude<keyof I, keyof CreateEventRequest>]: never; }>(base?: I | undefined): CreateEventRequest;
|
|
13527
13694
|
fromPartial<I_1 extends {
|
|
13528
13695
|
title?: string | undefined;
|
|
13529
13696
|
logo?: string | undefined;
|
|
13530
13697
|
description?: string | undefined;
|
|
13531
13698
|
clan_id?: string | undefined;
|
|
13532
|
-
|
|
13699
|
+
channel_voice_id?: string | undefined;
|
|
13533
13700
|
address?: string | undefined;
|
|
13534
13701
|
start_time?: Date | undefined;
|
|
13535
13702
|
end_time?: Date | undefined;
|
|
13536
13703
|
event_id?: string | undefined;
|
|
13537
|
-
event_status?:
|
|
13704
|
+
event_status?: number | undefined;
|
|
13705
|
+
channel_id?: string | undefined;
|
|
13706
|
+
action?: number | undefined;
|
|
13707
|
+
repeat_type?: number | undefined;
|
|
13708
|
+
creator_id?: string | undefined;
|
|
13538
13709
|
} & {
|
|
13539
13710
|
title?: string | undefined;
|
|
13540
13711
|
logo?: string | undefined;
|
|
13541
13712
|
description?: string | undefined;
|
|
13542
13713
|
clan_id?: string | undefined;
|
|
13543
|
-
|
|
13714
|
+
channel_voice_id?: string | undefined;
|
|
13544
13715
|
address?: string | undefined;
|
|
13545
13716
|
start_time?: Date | undefined;
|
|
13546
13717
|
end_time?: Date | undefined;
|
|
13547
13718
|
event_id?: string | undefined;
|
|
13548
|
-
event_status?:
|
|
13719
|
+
event_status?: number | undefined;
|
|
13720
|
+
channel_id?: string | undefined;
|
|
13721
|
+
action?: number | undefined;
|
|
13722
|
+
repeat_type?: number | undefined;
|
|
13723
|
+
creator_id?: string | undefined;
|
|
13549
13724
|
} & { [K_1 in Exclude<keyof I_1, keyof CreateEventRequest>]: never; }>(object: I_1): CreateEventRequest;
|
|
13550
13725
|
};
|
|
13551
13726
|
export declare const UpdateEventRequest: {
|
|
@@ -13564,6 +13739,9 @@ export declare const UpdateEventRequest: {
|
|
|
13564
13739
|
end_time?: Date | undefined;
|
|
13565
13740
|
clan_id?: string | undefined;
|
|
13566
13741
|
creator_id?: string | undefined;
|
|
13742
|
+
channel_voice_id?: string | undefined;
|
|
13743
|
+
channel_id_old?: string | undefined;
|
|
13744
|
+
repeat_type?: number | undefined;
|
|
13567
13745
|
} & {
|
|
13568
13746
|
title?: string | undefined;
|
|
13569
13747
|
logo?: string | undefined;
|
|
@@ -13575,6 +13753,9 @@ export declare const UpdateEventRequest: {
|
|
|
13575
13753
|
end_time?: Date | undefined;
|
|
13576
13754
|
clan_id?: string | undefined;
|
|
13577
13755
|
creator_id?: string | undefined;
|
|
13756
|
+
channel_voice_id?: string | undefined;
|
|
13757
|
+
channel_id_old?: string | undefined;
|
|
13758
|
+
repeat_type?: number | undefined;
|
|
13578
13759
|
} & { [K in Exclude<keyof I, keyof UpdateEventRequest>]: never; }>(base?: I | undefined): UpdateEventRequest;
|
|
13579
13760
|
fromPartial<I_1 extends {
|
|
13580
13761
|
title?: string | undefined;
|
|
@@ -13587,6 +13768,9 @@ export declare const UpdateEventRequest: {
|
|
|
13587
13768
|
end_time?: Date | undefined;
|
|
13588
13769
|
clan_id?: string | undefined;
|
|
13589
13770
|
creator_id?: string | undefined;
|
|
13771
|
+
channel_voice_id?: string | undefined;
|
|
13772
|
+
channel_id_old?: string | undefined;
|
|
13773
|
+
repeat_type?: number | undefined;
|
|
13590
13774
|
} & {
|
|
13591
13775
|
title?: string | undefined;
|
|
13592
13776
|
logo?: string | undefined;
|
|
@@ -13598,6 +13782,9 @@ export declare const UpdateEventRequest: {
|
|
|
13598
13782
|
end_time?: Date | undefined;
|
|
13599
13783
|
clan_id?: string | undefined;
|
|
13600
13784
|
creator_id?: string | undefined;
|
|
13785
|
+
channel_voice_id?: string | undefined;
|
|
13786
|
+
channel_id_old?: string | undefined;
|
|
13787
|
+
repeat_type?: number | undefined;
|
|
13601
13788
|
} & { [K_1 in Exclude<keyof I_1, keyof UpdateEventRequest>]: never; }>(object: I_1): UpdateEventRequest;
|
|
13602
13789
|
};
|
|
13603
13790
|
export declare const DeleteRoleRequest: {
|
|
@@ -13609,19 +13796,23 @@ export declare const DeleteRoleRequest: {
|
|
|
13609
13796
|
role_id?: string | undefined;
|
|
13610
13797
|
channel_id?: string | undefined;
|
|
13611
13798
|
clan_id?: string | undefined;
|
|
13799
|
+
role_label?: string | undefined;
|
|
13612
13800
|
} & {
|
|
13613
13801
|
role_id?: string | undefined;
|
|
13614
13802
|
channel_id?: string | undefined;
|
|
13615
13803
|
clan_id?: string | undefined;
|
|
13804
|
+
role_label?: string | undefined;
|
|
13616
13805
|
} & { [K in Exclude<keyof I, keyof DeleteRoleRequest>]: never; }>(base?: I | undefined): DeleteRoleRequest;
|
|
13617
13806
|
fromPartial<I_1 extends {
|
|
13618
13807
|
role_id?: string | undefined;
|
|
13619
13808
|
channel_id?: string | undefined;
|
|
13620
13809
|
clan_id?: string | undefined;
|
|
13810
|
+
role_label?: string | undefined;
|
|
13621
13811
|
} & {
|
|
13622
13812
|
role_id?: string | undefined;
|
|
13623
13813
|
channel_id?: string | undefined;
|
|
13624
13814
|
clan_id?: string | undefined;
|
|
13815
|
+
role_label?: string | undefined;
|
|
13625
13816
|
} & { [K_1 in Exclude<keyof I_1, keyof DeleteRoleRequest>]: never; }>(object: I_1): DeleteRoleRequest;
|
|
13626
13817
|
};
|
|
13627
13818
|
export declare const DeleteEventRequest: {
|
|
@@ -13633,19 +13824,27 @@ export declare const DeleteEventRequest: {
|
|
|
13633
13824
|
event_id?: string | undefined;
|
|
13634
13825
|
clan_id?: string | undefined;
|
|
13635
13826
|
creator_id?: string | undefined;
|
|
13827
|
+
event_label?: string | undefined;
|
|
13828
|
+
channel_id?: string | undefined;
|
|
13636
13829
|
} & {
|
|
13637
13830
|
event_id?: string | undefined;
|
|
13638
13831
|
clan_id?: string | undefined;
|
|
13639
13832
|
creator_id?: string | undefined;
|
|
13833
|
+
event_label?: string | undefined;
|
|
13834
|
+
channel_id?: string | undefined;
|
|
13640
13835
|
} & { [K in Exclude<keyof I, keyof DeleteEventRequest>]: never; }>(base?: I | undefined): DeleteEventRequest;
|
|
13641
13836
|
fromPartial<I_1 extends {
|
|
13642
13837
|
event_id?: string | undefined;
|
|
13643
13838
|
clan_id?: string | undefined;
|
|
13644
13839
|
creator_id?: string | undefined;
|
|
13840
|
+
event_label?: string | undefined;
|
|
13841
|
+
channel_id?: string | undefined;
|
|
13645
13842
|
} & {
|
|
13646
13843
|
event_id?: string | undefined;
|
|
13647
13844
|
clan_id?: string | undefined;
|
|
13648
13845
|
creator_id?: string | undefined;
|
|
13846
|
+
event_label?: string | undefined;
|
|
13847
|
+
channel_id?: string | undefined;
|
|
13649
13848
|
} & { [K_1 in Exclude<keyof I_1, keyof DeleteEventRequest>]: never; }>(object: I_1): DeleteEventRequest;
|
|
13650
13849
|
};
|
|
13651
13850
|
export declare const UpdateRoleRequest: {
|
|
@@ -13727,6 +13926,7 @@ export declare const UpdateRoleChannelRequest: {
|
|
|
13727
13926
|
max_permission_id?: string | undefined;
|
|
13728
13927
|
channel_id?: string | undefined;
|
|
13729
13928
|
user_id?: string | undefined;
|
|
13929
|
+
role_label?: string | undefined;
|
|
13730
13930
|
} & {
|
|
13731
13931
|
role_id?: string | undefined;
|
|
13732
13932
|
permission_update?: ({
|
|
@@ -13749,6 +13949,7 @@ export declare const UpdateRoleChannelRequest: {
|
|
|
13749
13949
|
max_permission_id?: string | undefined;
|
|
13750
13950
|
channel_id?: string | undefined;
|
|
13751
13951
|
user_id?: string | undefined;
|
|
13952
|
+
role_label?: string | undefined;
|
|
13752
13953
|
} & { [K_2 in Exclude<keyof I, keyof UpdateRoleChannelRequest>]: never; }>(base?: I | undefined): UpdateRoleChannelRequest;
|
|
13753
13954
|
fromPartial<I_1 extends {
|
|
13754
13955
|
role_id?: string | undefined;
|
|
@@ -13760,6 +13961,7 @@ export declare const UpdateRoleChannelRequest: {
|
|
|
13760
13961
|
max_permission_id?: string | undefined;
|
|
13761
13962
|
channel_id?: string | undefined;
|
|
13762
13963
|
user_id?: string | undefined;
|
|
13964
|
+
role_label?: string | undefined;
|
|
13763
13965
|
} & {
|
|
13764
13966
|
role_id?: string | undefined;
|
|
13765
13967
|
permission_update?: ({
|
|
@@ -13782,6 +13984,7 @@ export declare const UpdateRoleChannelRequest: {
|
|
|
13782
13984
|
max_permission_id?: string | undefined;
|
|
13783
13985
|
channel_id?: string | undefined;
|
|
13784
13986
|
user_id?: string | undefined;
|
|
13987
|
+
role_label?: string | undefined;
|
|
13785
13988
|
} & { [K_5 in Exclude<keyof I_1, keyof UpdateRoleChannelRequest>]: never; }>(object: I_1): UpdateRoleChannelRequest;
|
|
13786
13989
|
};
|
|
13787
13990
|
export declare const PermissionUpdate: {
|
|
@@ -14960,16 +15163,20 @@ export declare const ClanEmojiDeleteRequest: {
|
|
|
14960
15163
|
create<I extends {
|
|
14961
15164
|
id?: string | undefined;
|
|
14962
15165
|
clan_id?: string | undefined;
|
|
15166
|
+
emoji_label?: string | undefined;
|
|
14963
15167
|
} & {
|
|
14964
15168
|
id?: string | undefined;
|
|
14965
15169
|
clan_id?: string | undefined;
|
|
15170
|
+
emoji_label?: string | undefined;
|
|
14966
15171
|
} & { [K in Exclude<keyof I, keyof ClanEmojiDeleteRequest>]: never; }>(base?: I | undefined): ClanEmojiDeleteRequest;
|
|
14967
15172
|
fromPartial<I_1 extends {
|
|
14968
15173
|
id?: string | undefined;
|
|
14969
15174
|
clan_id?: string | undefined;
|
|
15175
|
+
emoji_label?: string | undefined;
|
|
14970
15176
|
} & {
|
|
14971
15177
|
id?: string | undefined;
|
|
14972
15178
|
clan_id?: string | undefined;
|
|
15179
|
+
emoji_label?: string | undefined;
|
|
14973
15180
|
} & { [K_1 in Exclude<keyof I_1, keyof ClanEmojiDeleteRequest>]: never; }>(object: I_1): ClanEmojiDeleteRequest;
|
|
14974
15181
|
};
|
|
14975
15182
|
export declare const ClanEmojiUpdateRequest: {
|
|
@@ -15468,16 +15675,20 @@ export declare const ClanStickerDeleteRequest: {
|
|
|
15468
15675
|
create<I extends {
|
|
15469
15676
|
id?: string | undefined;
|
|
15470
15677
|
clan_id?: string | undefined;
|
|
15678
|
+
sticker_label?: string | undefined;
|
|
15471
15679
|
} & {
|
|
15472
15680
|
id?: string | undefined;
|
|
15473
15681
|
clan_id?: string | undefined;
|
|
15682
|
+
sticker_label?: string | undefined;
|
|
15474
15683
|
} & { [K in Exclude<keyof I, keyof ClanStickerDeleteRequest>]: never; }>(base?: I | undefined): ClanStickerDeleteRequest;
|
|
15475
15684
|
fromPartial<I_1 extends {
|
|
15476
15685
|
id?: string | undefined;
|
|
15477
15686
|
clan_id?: string | undefined;
|
|
15687
|
+
sticker_label?: string | undefined;
|
|
15478
15688
|
} & {
|
|
15479
15689
|
id?: string | undefined;
|
|
15480
15690
|
clan_id?: string | undefined;
|
|
15691
|
+
sticker_label?: string | undefined;
|
|
15481
15692
|
} & { [K_1 in Exclude<keyof I_1, keyof ClanStickerDeleteRequest>]: never; }>(object: I_1): ClanStickerDeleteRequest;
|
|
15482
15693
|
};
|
|
15483
15694
|
export declare const ChangeChannelCategoryRequest: {
|
|
@@ -15991,6 +16202,7 @@ export declare const SystemMessage: {
|
|
|
15991
16202
|
welcome_sticker?: string | undefined;
|
|
15992
16203
|
boost_message?: string | undefined;
|
|
15993
16204
|
setup_tips?: string | undefined;
|
|
16205
|
+
hide_audit_log?: string | undefined;
|
|
15994
16206
|
} & {
|
|
15995
16207
|
id?: string | undefined;
|
|
15996
16208
|
clan_id?: string | undefined;
|
|
@@ -15999,6 +16211,7 @@ export declare const SystemMessage: {
|
|
|
15999
16211
|
welcome_sticker?: string | undefined;
|
|
16000
16212
|
boost_message?: string | undefined;
|
|
16001
16213
|
setup_tips?: string | undefined;
|
|
16214
|
+
hide_audit_log?: string | undefined;
|
|
16002
16215
|
} & { [K in Exclude<keyof I, keyof SystemMessage>]: never; }>(base?: I | undefined): SystemMessage;
|
|
16003
16216
|
fromPartial<I_1 extends {
|
|
16004
16217
|
id?: string | undefined;
|
|
@@ -16008,6 +16221,7 @@ export declare const SystemMessage: {
|
|
|
16008
16221
|
welcome_sticker?: string | undefined;
|
|
16009
16222
|
boost_message?: string | undefined;
|
|
16010
16223
|
setup_tips?: string | undefined;
|
|
16224
|
+
hide_audit_log?: string | undefined;
|
|
16011
16225
|
} & {
|
|
16012
16226
|
id?: string | undefined;
|
|
16013
16227
|
clan_id?: string | undefined;
|
|
@@ -16016,6 +16230,7 @@ export declare const SystemMessage: {
|
|
|
16016
16230
|
welcome_sticker?: string | undefined;
|
|
16017
16231
|
boost_message?: string | undefined;
|
|
16018
16232
|
setup_tips?: string | undefined;
|
|
16233
|
+
hide_audit_log?: string | undefined;
|
|
16019
16234
|
} & { [K_1 in Exclude<keyof I_1, keyof SystemMessage>]: never; }>(object: I_1): SystemMessage;
|
|
16020
16235
|
};
|
|
16021
16236
|
export declare const SystemMessagesList: {
|
|
@@ -16032,6 +16247,7 @@ export declare const SystemMessagesList: {
|
|
|
16032
16247
|
welcome_sticker?: string | undefined;
|
|
16033
16248
|
boost_message?: string | undefined;
|
|
16034
16249
|
setup_tips?: string | undefined;
|
|
16250
|
+
hide_audit_log?: string | undefined;
|
|
16035
16251
|
}[] | undefined;
|
|
16036
16252
|
} & {
|
|
16037
16253
|
system_messages_list?: ({
|
|
@@ -16042,6 +16258,7 @@ export declare const SystemMessagesList: {
|
|
|
16042
16258
|
welcome_sticker?: string | undefined;
|
|
16043
16259
|
boost_message?: string | undefined;
|
|
16044
16260
|
setup_tips?: string | undefined;
|
|
16261
|
+
hide_audit_log?: string | undefined;
|
|
16045
16262
|
}[] & ({
|
|
16046
16263
|
id?: string | undefined;
|
|
16047
16264
|
clan_id?: string | undefined;
|
|
@@ -16050,6 +16267,7 @@ export declare const SystemMessagesList: {
|
|
|
16050
16267
|
welcome_sticker?: string | undefined;
|
|
16051
16268
|
boost_message?: string | undefined;
|
|
16052
16269
|
setup_tips?: string | undefined;
|
|
16270
|
+
hide_audit_log?: string | undefined;
|
|
16053
16271
|
} & {
|
|
16054
16272
|
id?: string | undefined;
|
|
16055
16273
|
clan_id?: string | undefined;
|
|
@@ -16058,6 +16276,7 @@ export declare const SystemMessagesList: {
|
|
|
16058
16276
|
welcome_sticker?: string | undefined;
|
|
16059
16277
|
boost_message?: string | undefined;
|
|
16060
16278
|
setup_tips?: string | undefined;
|
|
16279
|
+
hide_audit_log?: string | undefined;
|
|
16061
16280
|
} & { [K in Exclude<keyof I["system_messages_list"][number], keyof SystemMessage>]: never; })[] & { [K_1 in Exclude<keyof I["system_messages_list"], keyof {
|
|
16062
16281
|
id?: string | undefined;
|
|
16063
16282
|
clan_id?: string | undefined;
|
|
@@ -16066,6 +16285,7 @@ export declare const SystemMessagesList: {
|
|
|
16066
16285
|
welcome_sticker?: string | undefined;
|
|
16067
16286
|
boost_message?: string | undefined;
|
|
16068
16287
|
setup_tips?: string | undefined;
|
|
16288
|
+
hide_audit_log?: string | undefined;
|
|
16069
16289
|
}[]>]: never; }) | undefined;
|
|
16070
16290
|
} & { [K_2 in Exclude<keyof I, "system_messages_list">]: never; }>(base?: I | undefined): SystemMessagesList;
|
|
16071
16291
|
fromPartial<I_1 extends {
|
|
@@ -16077,6 +16297,7 @@ export declare const SystemMessagesList: {
|
|
|
16077
16297
|
welcome_sticker?: string | undefined;
|
|
16078
16298
|
boost_message?: string | undefined;
|
|
16079
16299
|
setup_tips?: string | undefined;
|
|
16300
|
+
hide_audit_log?: string | undefined;
|
|
16080
16301
|
}[] | undefined;
|
|
16081
16302
|
} & {
|
|
16082
16303
|
system_messages_list?: ({
|
|
@@ -16087,6 +16308,7 @@ export declare const SystemMessagesList: {
|
|
|
16087
16308
|
welcome_sticker?: string | undefined;
|
|
16088
16309
|
boost_message?: string | undefined;
|
|
16089
16310
|
setup_tips?: string | undefined;
|
|
16311
|
+
hide_audit_log?: string | undefined;
|
|
16090
16312
|
}[] & ({
|
|
16091
16313
|
id?: string | undefined;
|
|
16092
16314
|
clan_id?: string | undefined;
|
|
@@ -16095,6 +16317,7 @@ export declare const SystemMessagesList: {
|
|
|
16095
16317
|
welcome_sticker?: string | undefined;
|
|
16096
16318
|
boost_message?: string | undefined;
|
|
16097
16319
|
setup_tips?: string | undefined;
|
|
16320
|
+
hide_audit_log?: string | undefined;
|
|
16098
16321
|
} & {
|
|
16099
16322
|
id?: string | undefined;
|
|
16100
16323
|
clan_id?: string | undefined;
|
|
@@ -16103,6 +16326,7 @@ export declare const SystemMessagesList: {
|
|
|
16103
16326
|
welcome_sticker?: string | undefined;
|
|
16104
16327
|
boost_message?: string | undefined;
|
|
16105
16328
|
setup_tips?: string | undefined;
|
|
16329
|
+
hide_audit_log?: string | undefined;
|
|
16106
16330
|
} & { [K_3 in Exclude<keyof I_1["system_messages_list"][number], keyof SystemMessage>]: never; })[] & { [K_4 in Exclude<keyof I_1["system_messages_list"], keyof {
|
|
16107
16331
|
id?: string | undefined;
|
|
16108
16332
|
clan_id?: string | undefined;
|
|
@@ -16111,6 +16335,7 @@ export declare const SystemMessagesList: {
|
|
|
16111
16335
|
welcome_sticker?: string | undefined;
|
|
16112
16336
|
boost_message?: string | undefined;
|
|
16113
16337
|
setup_tips?: string | undefined;
|
|
16338
|
+
hide_audit_log?: string | undefined;
|
|
16114
16339
|
}[]>]: never; }) | undefined;
|
|
16115
16340
|
} & { [K_5 in Exclude<keyof I_1, "system_messages_list">]: never; }>(object: I_1): SystemMessagesList;
|
|
16116
16341
|
};
|
|
@@ -16126,6 +16351,7 @@ export declare const SystemMessageRequest: {
|
|
|
16126
16351
|
welcome_sticker?: string | undefined;
|
|
16127
16352
|
boost_message?: string | undefined;
|
|
16128
16353
|
setup_tips?: string | undefined;
|
|
16354
|
+
hide_audit_log?: string | undefined;
|
|
16129
16355
|
} & {
|
|
16130
16356
|
clan_id?: string | undefined;
|
|
16131
16357
|
channel_id?: string | undefined;
|
|
@@ -16133,6 +16359,7 @@ export declare const SystemMessageRequest: {
|
|
|
16133
16359
|
welcome_sticker?: string | undefined;
|
|
16134
16360
|
boost_message?: string | undefined;
|
|
16135
16361
|
setup_tips?: string | undefined;
|
|
16362
|
+
hide_audit_log?: string | undefined;
|
|
16136
16363
|
} & { [K in Exclude<keyof I, keyof SystemMessageRequest>]: never; }>(base?: I | undefined): SystemMessageRequest;
|
|
16137
16364
|
fromPartial<I_1 extends {
|
|
16138
16365
|
clan_id?: string | undefined;
|
|
@@ -16141,6 +16368,7 @@ export declare const SystemMessageRequest: {
|
|
|
16141
16368
|
welcome_sticker?: string | undefined;
|
|
16142
16369
|
boost_message?: string | undefined;
|
|
16143
16370
|
setup_tips?: string | undefined;
|
|
16371
|
+
hide_audit_log?: string | undefined;
|
|
16144
16372
|
} & {
|
|
16145
16373
|
clan_id?: string | undefined;
|
|
16146
16374
|
channel_id?: string | undefined;
|
|
@@ -16148,6 +16376,7 @@ export declare const SystemMessageRequest: {
|
|
|
16148
16376
|
welcome_sticker?: string | undefined;
|
|
16149
16377
|
boost_message?: string | undefined;
|
|
16150
16378
|
setup_tips?: string | undefined;
|
|
16379
|
+
hide_audit_log?: string | undefined;
|
|
16151
16380
|
} & { [K_1 in Exclude<keyof I_1, keyof SystemMessageRequest>]: never; }>(object: I_1): SystemMessageRequest;
|
|
16152
16381
|
};
|
|
16153
16382
|
export declare const DeleteSystemMessage: {
|
|
@@ -16204,62 +16433,42 @@ export declare const StreamHttpCallbackRequest: {
|
|
|
16204
16433
|
fromJSON(object: any): StreamHttpCallbackRequest;
|
|
16205
16434
|
toJSON(message: StreamHttpCallbackRequest): unknown;
|
|
16206
16435
|
create<I extends {
|
|
16207
|
-
|
|
16436
|
+
id?: string | undefined;
|
|
16208
16437
|
client_id?: string | undefined;
|
|
16209
|
-
|
|
16210
|
-
|
|
16211
|
-
|
|
16212
|
-
|
|
16213
|
-
|
|
16214
|
-
|
|
16215
|
-
|
|
16216
|
-
|
|
16217
|
-
page_url?: string | undefined;
|
|
16218
|
-
tcUrl?: string | undefined;
|
|
16219
|
-
service_id?: string | undefined;
|
|
16220
|
-
} & {
|
|
16221
|
-
action?: string | undefined;
|
|
16438
|
+
clan_id?: string | undefined;
|
|
16439
|
+
channel_id?: string | undefined;
|
|
16440
|
+
user_id?: string | undefined;
|
|
16441
|
+
action?: number | undefined;
|
|
16442
|
+
is_publisher?: boolean | undefined;
|
|
16443
|
+
token?: string | undefined;
|
|
16444
|
+
} & {
|
|
16445
|
+
id?: string | undefined;
|
|
16222
16446
|
client_id?: string | undefined;
|
|
16223
|
-
|
|
16224
|
-
|
|
16225
|
-
|
|
16226
|
-
|
|
16227
|
-
|
|
16228
|
-
|
|
16229
|
-
stream_url?: string | undefined;
|
|
16230
|
-
stream_id?: string | undefined;
|
|
16231
|
-
page_url?: string | undefined;
|
|
16232
|
-
tcUrl?: string | undefined;
|
|
16233
|
-
service_id?: string | undefined;
|
|
16447
|
+
clan_id?: string | undefined;
|
|
16448
|
+
channel_id?: string | undefined;
|
|
16449
|
+
user_id?: string | undefined;
|
|
16450
|
+
action?: number | undefined;
|
|
16451
|
+
is_publisher?: boolean | undefined;
|
|
16452
|
+
token?: string | undefined;
|
|
16234
16453
|
} & { [K in Exclude<keyof I, keyof StreamHttpCallbackRequest>]: never; }>(base?: I | undefined): StreamHttpCallbackRequest;
|
|
16235
16454
|
fromPartial<I_1 extends {
|
|
16236
|
-
|
|
16455
|
+
id?: string | undefined;
|
|
16237
16456
|
client_id?: string | undefined;
|
|
16238
|
-
|
|
16239
|
-
|
|
16240
|
-
|
|
16241
|
-
|
|
16242
|
-
|
|
16243
|
-
|
|
16244
|
-
|
|
16245
|
-
|
|
16246
|
-
page_url?: string | undefined;
|
|
16247
|
-
tcUrl?: string | undefined;
|
|
16248
|
-
service_id?: string | undefined;
|
|
16249
|
-
} & {
|
|
16250
|
-
action?: string | undefined;
|
|
16457
|
+
clan_id?: string | undefined;
|
|
16458
|
+
channel_id?: string | undefined;
|
|
16459
|
+
user_id?: string | undefined;
|
|
16460
|
+
action?: number | undefined;
|
|
16461
|
+
is_publisher?: boolean | undefined;
|
|
16462
|
+
token?: string | undefined;
|
|
16463
|
+
} & {
|
|
16464
|
+
id?: string | undefined;
|
|
16251
16465
|
client_id?: string | undefined;
|
|
16252
|
-
|
|
16253
|
-
|
|
16254
|
-
|
|
16255
|
-
|
|
16256
|
-
|
|
16257
|
-
|
|
16258
|
-
stream_url?: string | undefined;
|
|
16259
|
-
stream_id?: string | undefined;
|
|
16260
|
-
page_url?: string | undefined;
|
|
16261
|
-
tcUrl?: string | undefined;
|
|
16262
|
-
service_id?: string | undefined;
|
|
16466
|
+
clan_id?: string | undefined;
|
|
16467
|
+
channel_id?: string | undefined;
|
|
16468
|
+
user_id?: string | undefined;
|
|
16469
|
+
action?: number | undefined;
|
|
16470
|
+
is_publisher?: boolean | undefined;
|
|
16471
|
+
token?: string | undefined;
|
|
16263
16472
|
} & { [K_1 in Exclude<keyof I_1, keyof StreamHttpCallbackRequest>]: never; }>(object: I_1): StreamHttpCallbackRequest;
|
|
16264
16473
|
};
|
|
16265
16474
|
export declare const StreamHttpCallbackResponse: {
|
|
@@ -16420,116 +16629,6 @@ export declare const RegisterStreamingChannelResponse: {
|
|
|
16420
16629
|
streaming_url?: string | undefined;
|
|
16421
16630
|
} & { [K_1 in Exclude<keyof I_1, keyof RegisterStreamingChannelResponse>]: never; }>(object: I_1): RegisterStreamingChannelResponse;
|
|
16422
16631
|
};
|
|
16423
|
-
export declare const ListStreamingChannelsRequest: {
|
|
16424
|
-
encode(message: ListStreamingChannelsRequest, writer?: _m0.Writer): _m0.Writer;
|
|
16425
|
-
decode(input: _m0.Reader | Uint8Array, length?: number): ListStreamingChannelsRequest;
|
|
16426
|
-
fromJSON(object: any): ListStreamingChannelsRequest;
|
|
16427
|
-
toJSON(message: ListStreamingChannelsRequest): unknown;
|
|
16428
|
-
create<I extends {
|
|
16429
|
-
clan_id?: string | undefined;
|
|
16430
|
-
} & {
|
|
16431
|
-
clan_id?: string | undefined;
|
|
16432
|
-
} & { [K in Exclude<keyof I, "clan_id">]: never; }>(base?: I | undefined): ListStreamingChannelsRequest;
|
|
16433
|
-
fromPartial<I_1 extends {
|
|
16434
|
-
clan_id?: string | undefined;
|
|
16435
|
-
} & {
|
|
16436
|
-
clan_id?: string | undefined;
|
|
16437
|
-
} & { [K_1 in Exclude<keyof I_1, "clan_id">]: never; }>(object: I_1): ListStreamingChannelsRequest;
|
|
16438
|
-
};
|
|
16439
|
-
export declare const ListStreamingChannelsResponse: {
|
|
16440
|
-
encode(message: ListStreamingChannelsResponse, writer?: _m0.Writer): _m0.Writer;
|
|
16441
|
-
decode(input: _m0.Reader | Uint8Array, length?: number): ListStreamingChannelsResponse;
|
|
16442
|
-
fromJSON(object: any): ListStreamingChannelsResponse;
|
|
16443
|
-
toJSON(message: ListStreamingChannelsResponse): unknown;
|
|
16444
|
-
create<I extends {
|
|
16445
|
-
streaming_channels?: {
|
|
16446
|
-
clan_id?: string | undefined;
|
|
16447
|
-
channel_id?: string | undefined;
|
|
16448
|
-
streaming_url?: string | undefined;
|
|
16449
|
-
is_streaming?: boolean | undefined;
|
|
16450
|
-
}[] | undefined;
|
|
16451
|
-
} & {
|
|
16452
|
-
streaming_channels?: ({
|
|
16453
|
-
clan_id?: string | undefined;
|
|
16454
|
-
channel_id?: string | undefined;
|
|
16455
|
-
streaming_url?: string | undefined;
|
|
16456
|
-
is_streaming?: boolean | undefined;
|
|
16457
|
-
}[] & ({
|
|
16458
|
-
clan_id?: string | undefined;
|
|
16459
|
-
channel_id?: string | undefined;
|
|
16460
|
-
streaming_url?: string | undefined;
|
|
16461
|
-
is_streaming?: boolean | undefined;
|
|
16462
|
-
} & {
|
|
16463
|
-
clan_id?: string | undefined;
|
|
16464
|
-
channel_id?: string | undefined;
|
|
16465
|
-
streaming_url?: string | undefined;
|
|
16466
|
-
is_streaming?: boolean | undefined;
|
|
16467
|
-
} & { [K in Exclude<keyof I["streaming_channels"][number], keyof StreamingChannelResponse>]: never; })[] & { [K_1 in Exclude<keyof I["streaming_channels"], keyof {
|
|
16468
|
-
clan_id?: string | undefined;
|
|
16469
|
-
channel_id?: string | undefined;
|
|
16470
|
-
streaming_url?: string | undefined;
|
|
16471
|
-
is_streaming?: boolean | undefined;
|
|
16472
|
-
}[]>]: never; }) | undefined;
|
|
16473
|
-
} & { [K_2 in Exclude<keyof I, "streaming_channels">]: never; }>(base?: I | undefined): ListStreamingChannelsResponse;
|
|
16474
|
-
fromPartial<I_1 extends {
|
|
16475
|
-
streaming_channels?: {
|
|
16476
|
-
clan_id?: string | undefined;
|
|
16477
|
-
channel_id?: string | undefined;
|
|
16478
|
-
streaming_url?: string | undefined;
|
|
16479
|
-
is_streaming?: boolean | undefined;
|
|
16480
|
-
}[] | undefined;
|
|
16481
|
-
} & {
|
|
16482
|
-
streaming_channels?: ({
|
|
16483
|
-
clan_id?: string | undefined;
|
|
16484
|
-
channel_id?: string | undefined;
|
|
16485
|
-
streaming_url?: string | undefined;
|
|
16486
|
-
is_streaming?: boolean | undefined;
|
|
16487
|
-
}[] & ({
|
|
16488
|
-
clan_id?: string | undefined;
|
|
16489
|
-
channel_id?: string | undefined;
|
|
16490
|
-
streaming_url?: string | undefined;
|
|
16491
|
-
is_streaming?: boolean | undefined;
|
|
16492
|
-
} & {
|
|
16493
|
-
clan_id?: string | undefined;
|
|
16494
|
-
channel_id?: string | undefined;
|
|
16495
|
-
streaming_url?: string | undefined;
|
|
16496
|
-
is_streaming?: boolean | undefined;
|
|
16497
|
-
} & { [K_3 in Exclude<keyof I_1["streaming_channels"][number], keyof StreamingChannelResponse>]: never; })[] & { [K_4 in Exclude<keyof I_1["streaming_channels"], keyof {
|
|
16498
|
-
clan_id?: string | undefined;
|
|
16499
|
-
channel_id?: string | undefined;
|
|
16500
|
-
streaming_url?: string | undefined;
|
|
16501
|
-
is_streaming?: boolean | undefined;
|
|
16502
|
-
}[]>]: never; }) | undefined;
|
|
16503
|
-
} & { [K_5 in Exclude<keyof I_1, "streaming_channels">]: never; }>(object: I_1): ListStreamingChannelsResponse;
|
|
16504
|
-
};
|
|
16505
|
-
export declare const StreamingChannelResponse: {
|
|
16506
|
-
encode(message: StreamingChannelResponse, writer?: _m0.Writer): _m0.Writer;
|
|
16507
|
-
decode(input: _m0.Reader | Uint8Array, length?: number): StreamingChannelResponse;
|
|
16508
|
-
fromJSON(object: any): StreamingChannelResponse;
|
|
16509
|
-
toJSON(message: StreamingChannelResponse): unknown;
|
|
16510
|
-
create<I extends {
|
|
16511
|
-
clan_id?: string | undefined;
|
|
16512
|
-
channel_id?: string | undefined;
|
|
16513
|
-
streaming_url?: string | undefined;
|
|
16514
|
-
is_streaming?: boolean | undefined;
|
|
16515
|
-
} & {
|
|
16516
|
-
clan_id?: string | undefined;
|
|
16517
|
-
channel_id?: string | undefined;
|
|
16518
|
-
streaming_url?: string | undefined;
|
|
16519
|
-
is_streaming?: boolean | undefined;
|
|
16520
|
-
} & { [K in Exclude<keyof I, keyof StreamingChannelResponse>]: never; }>(base?: I | undefined): StreamingChannelResponse;
|
|
16521
|
-
fromPartial<I_1 extends {
|
|
16522
|
-
clan_id?: string | undefined;
|
|
16523
|
-
channel_id?: string | undefined;
|
|
16524
|
-
streaming_url?: string | undefined;
|
|
16525
|
-
is_streaming?: boolean | undefined;
|
|
16526
|
-
} & {
|
|
16527
|
-
clan_id?: string | undefined;
|
|
16528
|
-
channel_id?: string | undefined;
|
|
16529
|
-
streaming_url?: string | undefined;
|
|
16530
|
-
is_streaming?: boolean | undefined;
|
|
16531
|
-
} & { [K_1 in Exclude<keyof I_1, keyof StreamingChannelResponse>]: never; }>(object: I_1): StreamingChannelResponse;
|
|
16532
|
-
};
|
|
16533
16632
|
export declare const GiveCoffeeEvent: {
|
|
16534
16633
|
encode(message: GiveCoffeeEvent, writer?: _m0.Writer): _m0.Writer;
|
|
16535
16634
|
decode(input: _m0.Reader | Uint8Array, length?: number): GiveCoffeeEvent;
|
|
@@ -17962,6 +18061,7 @@ export declare const ChannelSettingItem: {
|
|
|
17962
18061
|
referece?: string | undefined;
|
|
17963
18062
|
mention?: string | undefined;
|
|
17964
18063
|
reaction?: string | undefined;
|
|
18064
|
+
repliers?: string[] | undefined;
|
|
17965
18065
|
} | undefined;
|
|
17966
18066
|
} & {
|
|
17967
18067
|
id?: string | undefined;
|
|
@@ -17984,6 +18084,7 @@ export declare const ChannelSettingItem: {
|
|
|
17984
18084
|
referece?: string | undefined;
|
|
17985
18085
|
mention?: string | undefined;
|
|
17986
18086
|
reaction?: string | undefined;
|
|
18087
|
+
repliers?: string[] | undefined;
|
|
17987
18088
|
} & {
|
|
17988
18089
|
id?: string | undefined;
|
|
17989
18090
|
timestamp_seconds?: number | undefined;
|
|
@@ -17993,8 +18094,9 @@ export declare const ChannelSettingItem: {
|
|
|
17993
18094
|
referece?: string | undefined;
|
|
17994
18095
|
mention?: string | undefined;
|
|
17995
18096
|
reaction?: string | undefined;
|
|
17996
|
-
|
|
17997
|
-
|
|
18097
|
+
repliers?: (string[] & string[] & { [K_1 in Exclude<keyof I["last_sent_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
18098
|
+
} & { [K_2 in Exclude<keyof I["last_sent_message"], keyof ChannelMessageHeader>]: never; }) | undefined;
|
|
18099
|
+
} & { [K_3 in Exclude<keyof I, keyof ChannelSettingItem>]: never; }>(base?: I | undefined): ChannelSettingItem;
|
|
17998
18100
|
fromPartial<I_1 extends {
|
|
17999
18101
|
id?: string | undefined;
|
|
18000
18102
|
creator_id?: string | undefined;
|
|
@@ -18016,6 +18118,7 @@ export declare const ChannelSettingItem: {
|
|
|
18016
18118
|
referece?: string | undefined;
|
|
18017
18119
|
mention?: string | undefined;
|
|
18018
18120
|
reaction?: string | undefined;
|
|
18121
|
+
repliers?: string[] | undefined;
|
|
18019
18122
|
} | undefined;
|
|
18020
18123
|
} & {
|
|
18021
18124
|
id?: string | undefined;
|
|
@@ -18027,7 +18130,7 @@ export declare const ChannelSettingItem: {
|
|
|
18027
18130
|
channel_private?: number | undefined;
|
|
18028
18131
|
channel_type?: number | undefined;
|
|
18029
18132
|
active?: number | undefined;
|
|
18030
|
-
user_ids?: (string[] & string[] & { [
|
|
18133
|
+
user_ids?: (string[] & string[] & { [K_4 in Exclude<keyof I_1["user_ids"], keyof string[]>]: never; }) | undefined;
|
|
18031
18134
|
message_count?: number | undefined;
|
|
18032
18135
|
last_sent_message?: ({
|
|
18033
18136
|
id?: string | undefined;
|
|
@@ -18038,6 +18141,7 @@ export declare const ChannelSettingItem: {
|
|
|
18038
18141
|
referece?: string | undefined;
|
|
18039
18142
|
mention?: string | undefined;
|
|
18040
18143
|
reaction?: string | undefined;
|
|
18144
|
+
repliers?: string[] | undefined;
|
|
18041
18145
|
} & {
|
|
18042
18146
|
id?: string | undefined;
|
|
18043
18147
|
timestamp_seconds?: number | undefined;
|
|
@@ -18047,8 +18151,9 @@ export declare const ChannelSettingItem: {
|
|
|
18047
18151
|
referece?: string | undefined;
|
|
18048
18152
|
mention?: string | undefined;
|
|
18049
18153
|
reaction?: string | undefined;
|
|
18050
|
-
|
|
18051
|
-
|
|
18154
|
+
repliers?: (string[] & string[] & { [K_5 in Exclude<keyof I_1["last_sent_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
18155
|
+
} & { [K_6 in Exclude<keyof I_1["last_sent_message"], keyof ChannelMessageHeader>]: never; }) | undefined;
|
|
18156
|
+
} & { [K_7 in Exclude<keyof I_1, keyof ChannelSettingItem>]: never; }>(object: I_1): ChannelSettingItem;
|
|
18052
18157
|
};
|
|
18053
18158
|
export declare const ChannelSettingListResponse: {
|
|
18054
18159
|
encode(message: ChannelSettingListResponse, writer?: _m0.Writer): _m0.Writer;
|
|
@@ -18080,6 +18185,7 @@ export declare const ChannelSettingListResponse: {
|
|
|
18080
18185
|
referece?: string | undefined;
|
|
18081
18186
|
mention?: string | undefined;
|
|
18082
18187
|
reaction?: string | undefined;
|
|
18188
|
+
repliers?: string[] | undefined;
|
|
18083
18189
|
} | undefined;
|
|
18084
18190
|
}[] | undefined;
|
|
18085
18191
|
} & {
|
|
@@ -18107,6 +18213,7 @@ export declare const ChannelSettingListResponse: {
|
|
|
18107
18213
|
referece?: string | undefined;
|
|
18108
18214
|
mention?: string | undefined;
|
|
18109
18215
|
reaction?: string | undefined;
|
|
18216
|
+
repliers?: string[] | undefined;
|
|
18110
18217
|
} | undefined;
|
|
18111
18218
|
}[] & ({
|
|
18112
18219
|
id?: string | undefined;
|
|
@@ -18129,6 +18236,7 @@ export declare const ChannelSettingListResponse: {
|
|
|
18129
18236
|
referece?: string | undefined;
|
|
18130
18237
|
mention?: string | undefined;
|
|
18131
18238
|
reaction?: string | undefined;
|
|
18239
|
+
repliers?: string[] | undefined;
|
|
18132
18240
|
} | undefined;
|
|
18133
18241
|
} & {
|
|
18134
18242
|
id?: string | undefined;
|
|
@@ -18151,6 +18259,7 @@ export declare const ChannelSettingListResponse: {
|
|
|
18151
18259
|
referece?: string | undefined;
|
|
18152
18260
|
mention?: string | undefined;
|
|
18153
18261
|
reaction?: string | undefined;
|
|
18262
|
+
repliers?: string[] | undefined;
|
|
18154
18263
|
} & {
|
|
18155
18264
|
id?: string | undefined;
|
|
18156
18265
|
timestamp_seconds?: number | undefined;
|
|
@@ -18160,8 +18269,9 @@ export declare const ChannelSettingListResponse: {
|
|
|
18160
18269
|
referece?: string | undefined;
|
|
18161
18270
|
mention?: string | undefined;
|
|
18162
18271
|
reaction?: string | undefined;
|
|
18163
|
-
|
|
18164
|
-
|
|
18272
|
+
repliers?: (string[] & string[] & { [K_1 in Exclude<keyof I["channel_setting_list"][number]["last_sent_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
18273
|
+
} & { [K_2 in Exclude<keyof I["channel_setting_list"][number]["last_sent_message"], keyof ChannelMessageHeader>]: never; }) | undefined;
|
|
18274
|
+
} & { [K_3 in Exclude<keyof I["channel_setting_list"][number], keyof ChannelSettingItem>]: never; })[] & { [K_4 in Exclude<keyof I["channel_setting_list"], keyof {
|
|
18165
18275
|
id?: string | undefined;
|
|
18166
18276
|
creator_id?: string | undefined;
|
|
18167
18277
|
parent_id?: string | undefined;
|
|
@@ -18182,9 +18292,10 @@ export declare const ChannelSettingListResponse: {
|
|
|
18182
18292
|
referece?: string | undefined;
|
|
18183
18293
|
mention?: string | undefined;
|
|
18184
18294
|
reaction?: string | undefined;
|
|
18295
|
+
repliers?: string[] | undefined;
|
|
18185
18296
|
} | undefined;
|
|
18186
18297
|
}[]>]: never; }) | undefined;
|
|
18187
|
-
} & { [
|
|
18298
|
+
} & { [K_5 in Exclude<keyof I, keyof ChannelSettingListResponse>]: never; }>(base?: I | undefined): ChannelSettingListResponse;
|
|
18188
18299
|
fromPartial<I_1 extends {
|
|
18189
18300
|
clan_id?: string | undefined;
|
|
18190
18301
|
channel_count?: number | undefined;
|
|
@@ -18210,6 +18321,7 @@ export declare const ChannelSettingListResponse: {
|
|
|
18210
18321
|
referece?: string | undefined;
|
|
18211
18322
|
mention?: string | undefined;
|
|
18212
18323
|
reaction?: string | undefined;
|
|
18324
|
+
repliers?: string[] | undefined;
|
|
18213
18325
|
} | undefined;
|
|
18214
18326
|
}[] | undefined;
|
|
18215
18327
|
} & {
|
|
@@ -18237,6 +18349,7 @@ export declare const ChannelSettingListResponse: {
|
|
|
18237
18349
|
referece?: string | undefined;
|
|
18238
18350
|
mention?: string | undefined;
|
|
18239
18351
|
reaction?: string | undefined;
|
|
18352
|
+
repliers?: string[] | undefined;
|
|
18240
18353
|
} | undefined;
|
|
18241
18354
|
}[] & ({
|
|
18242
18355
|
id?: string | undefined;
|
|
@@ -18259,6 +18372,7 @@ export declare const ChannelSettingListResponse: {
|
|
|
18259
18372
|
referece?: string | undefined;
|
|
18260
18373
|
mention?: string | undefined;
|
|
18261
18374
|
reaction?: string | undefined;
|
|
18375
|
+
repliers?: string[] | undefined;
|
|
18262
18376
|
} | undefined;
|
|
18263
18377
|
} & {
|
|
18264
18378
|
id?: string | undefined;
|
|
@@ -18270,7 +18384,7 @@ export declare const ChannelSettingListResponse: {
|
|
|
18270
18384
|
channel_private?: number | undefined;
|
|
18271
18385
|
channel_type?: number | undefined;
|
|
18272
18386
|
active?: number | undefined;
|
|
18273
|
-
user_ids?: (string[] & string[] & { [
|
|
18387
|
+
user_ids?: (string[] & string[] & { [K_6 in Exclude<keyof I_1["channel_setting_list"][number]["user_ids"], keyof string[]>]: never; }) | undefined;
|
|
18274
18388
|
message_count?: number | undefined;
|
|
18275
18389
|
last_sent_message?: ({
|
|
18276
18390
|
id?: string | undefined;
|
|
@@ -18281,6 +18395,7 @@ export declare const ChannelSettingListResponse: {
|
|
|
18281
18395
|
referece?: string | undefined;
|
|
18282
18396
|
mention?: string | undefined;
|
|
18283
18397
|
reaction?: string | undefined;
|
|
18398
|
+
repliers?: string[] | undefined;
|
|
18284
18399
|
} & {
|
|
18285
18400
|
id?: string | undefined;
|
|
18286
18401
|
timestamp_seconds?: number | undefined;
|
|
@@ -18290,8 +18405,9 @@ export declare const ChannelSettingListResponse: {
|
|
|
18290
18405
|
referece?: string | undefined;
|
|
18291
18406
|
mention?: string | undefined;
|
|
18292
18407
|
reaction?: string | undefined;
|
|
18293
|
-
|
|
18294
|
-
|
|
18408
|
+
repliers?: (string[] & string[] & { [K_7 in Exclude<keyof I_1["channel_setting_list"][number]["last_sent_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
18409
|
+
} & { [K_8 in Exclude<keyof I_1["channel_setting_list"][number]["last_sent_message"], keyof ChannelMessageHeader>]: never; }) | undefined;
|
|
18410
|
+
} & { [K_9 in Exclude<keyof I_1["channel_setting_list"][number], keyof ChannelSettingItem>]: never; })[] & { [K_10 in Exclude<keyof I_1["channel_setting_list"], keyof {
|
|
18295
18411
|
id?: string | undefined;
|
|
18296
18412
|
creator_id?: string | undefined;
|
|
18297
18413
|
parent_id?: string | undefined;
|
|
@@ -18312,9 +18428,10 @@ export declare const ChannelSettingListResponse: {
|
|
|
18312
18428
|
referece?: string | undefined;
|
|
18313
18429
|
mention?: string | undefined;
|
|
18314
18430
|
reaction?: string | undefined;
|
|
18431
|
+
repliers?: string[] | undefined;
|
|
18315
18432
|
} | undefined;
|
|
18316
18433
|
}[]>]: never; }) | undefined;
|
|
18317
|
-
} & { [
|
|
18434
|
+
} & { [K_11 in Exclude<keyof I_1, keyof ChannelSettingListResponse>]: never; }>(object: I_1): ChannelSettingListResponse;
|
|
18318
18435
|
};
|
|
18319
18436
|
export declare const MarkAsReadRequest: {
|
|
18320
18437
|
encode(message: MarkAsReadRequest, writer?: _m0.Writer): _m0.Writer;
|
|
@@ -19437,12 +19554,16 @@ export declare const TokenSentEvent: {
|
|
|
19437
19554
|
receiver_id?: string | undefined;
|
|
19438
19555
|
amount?: number | undefined;
|
|
19439
19556
|
note?: string | undefined;
|
|
19557
|
+
extra_attribute?: string | undefined;
|
|
19558
|
+
transaction_id?: string | undefined;
|
|
19440
19559
|
} & {
|
|
19441
19560
|
sender_id?: string | undefined;
|
|
19442
19561
|
sender_name?: string | undefined;
|
|
19443
19562
|
receiver_id?: string | undefined;
|
|
19444
19563
|
amount?: number | undefined;
|
|
19445
19564
|
note?: string | undefined;
|
|
19565
|
+
extra_attribute?: string | undefined;
|
|
19566
|
+
transaction_id?: string | undefined;
|
|
19446
19567
|
} & { [K in Exclude<keyof I, keyof TokenSentEvent>]: never; }>(base?: I | undefined): TokenSentEvent;
|
|
19447
19568
|
fromPartial<I_1 extends {
|
|
19448
19569
|
sender_id?: string | undefined;
|
|
@@ -19450,12 +19571,16 @@ export declare const TokenSentEvent: {
|
|
|
19450
19571
|
receiver_id?: string | undefined;
|
|
19451
19572
|
amount?: number | undefined;
|
|
19452
19573
|
note?: string | undefined;
|
|
19574
|
+
extra_attribute?: string | undefined;
|
|
19575
|
+
transaction_id?: string | undefined;
|
|
19453
19576
|
} & {
|
|
19454
19577
|
sender_id?: string | undefined;
|
|
19455
19578
|
sender_name?: string | undefined;
|
|
19456
19579
|
receiver_id?: string | undefined;
|
|
19457
19580
|
amount?: number | undefined;
|
|
19458
19581
|
note?: string | undefined;
|
|
19582
|
+
extra_attribute?: string | undefined;
|
|
19583
|
+
transaction_id?: string | undefined;
|
|
19459
19584
|
} & { [K_1 in Exclude<keyof I_1, keyof TokenSentEvent>]: never; }>(object: I_1): TokenSentEvent;
|
|
19460
19585
|
};
|
|
19461
19586
|
export declare const WithdrawTokenRequest: {
|
|
@@ -21195,6 +21320,17 @@ export declare const SdTopic: {
|
|
|
21195
21320
|
is_public?: boolean | undefined;
|
|
21196
21321
|
topic_id?: string | undefined;
|
|
21197
21322
|
} | undefined;
|
|
21323
|
+
last_sent_message?: {
|
|
21324
|
+
id?: string | undefined;
|
|
21325
|
+
timestamp_seconds?: number | undefined;
|
|
21326
|
+
sender_id?: string | undefined;
|
|
21327
|
+
content?: string | undefined;
|
|
21328
|
+
attachment?: string | undefined;
|
|
21329
|
+
referece?: string | undefined;
|
|
21330
|
+
mention?: string | undefined;
|
|
21331
|
+
reaction?: string | undefined;
|
|
21332
|
+
repliers?: string[] | undefined;
|
|
21333
|
+
} | undefined;
|
|
21198
21334
|
} & {
|
|
21199
21335
|
id?: string | undefined;
|
|
21200
21336
|
creator_id?: string | undefined;
|
|
@@ -21261,7 +21397,28 @@ export declare const SdTopic: {
|
|
|
21261
21397
|
is_public?: boolean | undefined;
|
|
21262
21398
|
topic_id?: string | undefined;
|
|
21263
21399
|
} & { [K in Exclude<keyof I["message"], keyof ChannelMessage>]: never; }) | undefined;
|
|
21264
|
-
|
|
21400
|
+
last_sent_message?: ({
|
|
21401
|
+
id?: string | undefined;
|
|
21402
|
+
timestamp_seconds?: number | undefined;
|
|
21403
|
+
sender_id?: string | undefined;
|
|
21404
|
+
content?: string | undefined;
|
|
21405
|
+
attachment?: string | undefined;
|
|
21406
|
+
referece?: string | undefined;
|
|
21407
|
+
mention?: string | undefined;
|
|
21408
|
+
reaction?: string | undefined;
|
|
21409
|
+
repliers?: string[] | undefined;
|
|
21410
|
+
} & {
|
|
21411
|
+
id?: string | undefined;
|
|
21412
|
+
timestamp_seconds?: number | undefined;
|
|
21413
|
+
sender_id?: string | undefined;
|
|
21414
|
+
content?: string | undefined;
|
|
21415
|
+
attachment?: string | undefined;
|
|
21416
|
+
referece?: string | undefined;
|
|
21417
|
+
mention?: string | undefined;
|
|
21418
|
+
reaction?: string | undefined;
|
|
21419
|
+
repliers?: (string[] & string[] & { [K_1 in Exclude<keyof I["last_sent_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
21420
|
+
} & { [K_2 in Exclude<keyof I["last_sent_message"], keyof ChannelMessageHeader>]: never; }) | undefined;
|
|
21421
|
+
} & { [K_3 in Exclude<keyof I, keyof SdTopic>]: never; }>(base?: I | undefined): SdTopic;
|
|
21265
21422
|
fromPartial<I_1 extends {
|
|
21266
21423
|
id?: string | undefined;
|
|
21267
21424
|
creator_id?: string | undefined;
|
|
@@ -21300,6 +21457,17 @@ export declare const SdTopic: {
|
|
|
21300
21457
|
is_public?: boolean | undefined;
|
|
21301
21458
|
topic_id?: string | undefined;
|
|
21302
21459
|
} | undefined;
|
|
21460
|
+
last_sent_message?: {
|
|
21461
|
+
id?: string | undefined;
|
|
21462
|
+
timestamp_seconds?: number | undefined;
|
|
21463
|
+
sender_id?: string | undefined;
|
|
21464
|
+
content?: string | undefined;
|
|
21465
|
+
attachment?: string | undefined;
|
|
21466
|
+
referece?: string | undefined;
|
|
21467
|
+
mention?: string | undefined;
|
|
21468
|
+
reaction?: string | undefined;
|
|
21469
|
+
repliers?: string[] | undefined;
|
|
21470
|
+
} | undefined;
|
|
21303
21471
|
} & {
|
|
21304
21472
|
id?: string | undefined;
|
|
21305
21473
|
creator_id?: string | undefined;
|
|
@@ -21365,8 +21533,29 @@ export declare const SdTopic: {
|
|
|
21365
21533
|
hide_editted?: boolean | undefined;
|
|
21366
21534
|
is_public?: boolean | undefined;
|
|
21367
21535
|
topic_id?: string | undefined;
|
|
21368
|
-
} & { [
|
|
21369
|
-
|
|
21536
|
+
} & { [K_4 in Exclude<keyof I_1["message"], keyof ChannelMessage>]: never; }) | undefined;
|
|
21537
|
+
last_sent_message?: ({
|
|
21538
|
+
id?: string | undefined;
|
|
21539
|
+
timestamp_seconds?: number | undefined;
|
|
21540
|
+
sender_id?: string | undefined;
|
|
21541
|
+
content?: string | undefined;
|
|
21542
|
+
attachment?: string | undefined;
|
|
21543
|
+
referece?: string | undefined;
|
|
21544
|
+
mention?: string | undefined;
|
|
21545
|
+
reaction?: string | undefined;
|
|
21546
|
+
repliers?: string[] | undefined;
|
|
21547
|
+
} & {
|
|
21548
|
+
id?: string | undefined;
|
|
21549
|
+
timestamp_seconds?: number | undefined;
|
|
21550
|
+
sender_id?: string | undefined;
|
|
21551
|
+
content?: string | undefined;
|
|
21552
|
+
attachment?: string | undefined;
|
|
21553
|
+
referece?: string | undefined;
|
|
21554
|
+
mention?: string | undefined;
|
|
21555
|
+
reaction?: string | undefined;
|
|
21556
|
+
repliers?: (string[] & string[] & { [K_5 in Exclude<keyof I_1["last_sent_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
21557
|
+
} & { [K_6 in Exclude<keyof I_1["last_sent_message"], keyof ChannelMessageHeader>]: never; }) | undefined;
|
|
21558
|
+
} & { [K_7 in Exclude<keyof I_1, keyof SdTopic>]: never; }>(object: I_1): SdTopic;
|
|
21370
21559
|
};
|
|
21371
21560
|
export declare const SdTopicRequest: {
|
|
21372
21561
|
encode(message: SdTopicRequest, writer?: _m0.Writer): _m0.Writer;
|
|
@@ -21437,6 +21626,17 @@ export declare const SdTopicList: {
|
|
|
21437
21626
|
is_public?: boolean | undefined;
|
|
21438
21627
|
topic_id?: string | undefined;
|
|
21439
21628
|
} | undefined;
|
|
21629
|
+
last_sent_message?: {
|
|
21630
|
+
id?: string | undefined;
|
|
21631
|
+
timestamp_seconds?: number | undefined;
|
|
21632
|
+
sender_id?: string | undefined;
|
|
21633
|
+
content?: string | undefined;
|
|
21634
|
+
attachment?: string | undefined;
|
|
21635
|
+
referece?: string | undefined;
|
|
21636
|
+
mention?: string | undefined;
|
|
21637
|
+
reaction?: string | undefined;
|
|
21638
|
+
repliers?: string[] | undefined;
|
|
21639
|
+
} | undefined;
|
|
21440
21640
|
}[] | undefined;
|
|
21441
21641
|
} & {
|
|
21442
21642
|
count?: number | undefined;
|
|
@@ -21478,6 +21678,17 @@ export declare const SdTopicList: {
|
|
|
21478
21678
|
is_public?: boolean | undefined;
|
|
21479
21679
|
topic_id?: string | undefined;
|
|
21480
21680
|
} | undefined;
|
|
21681
|
+
last_sent_message?: {
|
|
21682
|
+
id?: string | undefined;
|
|
21683
|
+
timestamp_seconds?: number | undefined;
|
|
21684
|
+
sender_id?: string | undefined;
|
|
21685
|
+
content?: string | undefined;
|
|
21686
|
+
attachment?: string | undefined;
|
|
21687
|
+
referece?: string | undefined;
|
|
21688
|
+
mention?: string | undefined;
|
|
21689
|
+
reaction?: string | undefined;
|
|
21690
|
+
repliers?: string[] | undefined;
|
|
21691
|
+
} | undefined;
|
|
21481
21692
|
}[] & ({
|
|
21482
21693
|
id?: string | undefined;
|
|
21483
21694
|
creator_id?: string | undefined;
|
|
@@ -21516,6 +21727,17 @@ export declare const SdTopicList: {
|
|
|
21516
21727
|
is_public?: boolean | undefined;
|
|
21517
21728
|
topic_id?: string | undefined;
|
|
21518
21729
|
} | undefined;
|
|
21730
|
+
last_sent_message?: {
|
|
21731
|
+
id?: string | undefined;
|
|
21732
|
+
timestamp_seconds?: number | undefined;
|
|
21733
|
+
sender_id?: string | undefined;
|
|
21734
|
+
content?: string | undefined;
|
|
21735
|
+
attachment?: string | undefined;
|
|
21736
|
+
referece?: string | undefined;
|
|
21737
|
+
mention?: string | undefined;
|
|
21738
|
+
reaction?: string | undefined;
|
|
21739
|
+
repliers?: string[] | undefined;
|
|
21740
|
+
} | undefined;
|
|
21519
21741
|
} & {
|
|
21520
21742
|
id?: string | undefined;
|
|
21521
21743
|
creator_id?: string | undefined;
|
|
@@ -21582,7 +21804,28 @@ export declare const SdTopicList: {
|
|
|
21582
21804
|
is_public?: boolean | undefined;
|
|
21583
21805
|
topic_id?: string | undefined;
|
|
21584
21806
|
} & { [K in Exclude<keyof I["topics"][number]["message"], keyof ChannelMessage>]: never; }) | undefined;
|
|
21585
|
-
|
|
21807
|
+
last_sent_message?: ({
|
|
21808
|
+
id?: string | undefined;
|
|
21809
|
+
timestamp_seconds?: number | undefined;
|
|
21810
|
+
sender_id?: string | undefined;
|
|
21811
|
+
content?: string | undefined;
|
|
21812
|
+
attachment?: string | undefined;
|
|
21813
|
+
referece?: string | undefined;
|
|
21814
|
+
mention?: string | undefined;
|
|
21815
|
+
reaction?: string | undefined;
|
|
21816
|
+
repliers?: string[] | undefined;
|
|
21817
|
+
} & {
|
|
21818
|
+
id?: string | undefined;
|
|
21819
|
+
timestamp_seconds?: number | undefined;
|
|
21820
|
+
sender_id?: string | undefined;
|
|
21821
|
+
content?: string | undefined;
|
|
21822
|
+
attachment?: string | undefined;
|
|
21823
|
+
referece?: string | undefined;
|
|
21824
|
+
mention?: string | undefined;
|
|
21825
|
+
reaction?: string | undefined;
|
|
21826
|
+
repliers?: (string[] & string[] & { [K_1 in Exclude<keyof I["topics"][number]["last_sent_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
21827
|
+
} & { [K_2 in Exclude<keyof I["topics"][number]["last_sent_message"], keyof ChannelMessageHeader>]: never; }) | undefined;
|
|
21828
|
+
} & { [K_3 in Exclude<keyof I["topics"][number], keyof SdTopic>]: never; })[] & { [K_4 in Exclude<keyof I["topics"], keyof {
|
|
21586
21829
|
id?: string | undefined;
|
|
21587
21830
|
creator_id?: string | undefined;
|
|
21588
21831
|
message_id?: string | undefined;
|
|
@@ -21620,8 +21863,19 @@ export declare const SdTopicList: {
|
|
|
21620
21863
|
is_public?: boolean | undefined;
|
|
21621
21864
|
topic_id?: string | undefined;
|
|
21622
21865
|
} | undefined;
|
|
21866
|
+
last_sent_message?: {
|
|
21867
|
+
id?: string | undefined;
|
|
21868
|
+
timestamp_seconds?: number | undefined;
|
|
21869
|
+
sender_id?: string | undefined;
|
|
21870
|
+
content?: string | undefined;
|
|
21871
|
+
attachment?: string | undefined;
|
|
21872
|
+
referece?: string | undefined;
|
|
21873
|
+
mention?: string | undefined;
|
|
21874
|
+
reaction?: string | undefined;
|
|
21875
|
+
repliers?: string[] | undefined;
|
|
21876
|
+
} | undefined;
|
|
21623
21877
|
}[]>]: never; }) | undefined;
|
|
21624
|
-
} & { [
|
|
21878
|
+
} & { [K_5 in Exclude<keyof I, keyof SdTopicList>]: never; }>(base?: I | undefined): SdTopicList;
|
|
21625
21879
|
fromPartial<I_1 extends {
|
|
21626
21880
|
count?: number | undefined;
|
|
21627
21881
|
topics?: {
|
|
@@ -21662,6 +21916,17 @@ export declare const SdTopicList: {
|
|
|
21662
21916
|
is_public?: boolean | undefined;
|
|
21663
21917
|
topic_id?: string | undefined;
|
|
21664
21918
|
} | undefined;
|
|
21919
|
+
last_sent_message?: {
|
|
21920
|
+
id?: string | undefined;
|
|
21921
|
+
timestamp_seconds?: number | undefined;
|
|
21922
|
+
sender_id?: string | undefined;
|
|
21923
|
+
content?: string | undefined;
|
|
21924
|
+
attachment?: string | undefined;
|
|
21925
|
+
referece?: string | undefined;
|
|
21926
|
+
mention?: string | undefined;
|
|
21927
|
+
reaction?: string | undefined;
|
|
21928
|
+
repliers?: string[] | undefined;
|
|
21929
|
+
} | undefined;
|
|
21665
21930
|
}[] | undefined;
|
|
21666
21931
|
} & {
|
|
21667
21932
|
count?: number | undefined;
|
|
@@ -21703,6 +21968,17 @@ export declare const SdTopicList: {
|
|
|
21703
21968
|
is_public?: boolean | undefined;
|
|
21704
21969
|
topic_id?: string | undefined;
|
|
21705
21970
|
} | undefined;
|
|
21971
|
+
last_sent_message?: {
|
|
21972
|
+
id?: string | undefined;
|
|
21973
|
+
timestamp_seconds?: number | undefined;
|
|
21974
|
+
sender_id?: string | undefined;
|
|
21975
|
+
content?: string | undefined;
|
|
21976
|
+
attachment?: string | undefined;
|
|
21977
|
+
referece?: string | undefined;
|
|
21978
|
+
mention?: string | undefined;
|
|
21979
|
+
reaction?: string | undefined;
|
|
21980
|
+
repliers?: string[] | undefined;
|
|
21981
|
+
} | undefined;
|
|
21706
21982
|
}[] & ({
|
|
21707
21983
|
id?: string | undefined;
|
|
21708
21984
|
creator_id?: string | undefined;
|
|
@@ -21741,6 +22017,17 @@ export declare const SdTopicList: {
|
|
|
21741
22017
|
is_public?: boolean | undefined;
|
|
21742
22018
|
topic_id?: string | undefined;
|
|
21743
22019
|
} | undefined;
|
|
22020
|
+
last_sent_message?: {
|
|
22021
|
+
id?: string | undefined;
|
|
22022
|
+
timestamp_seconds?: number | undefined;
|
|
22023
|
+
sender_id?: string | undefined;
|
|
22024
|
+
content?: string | undefined;
|
|
22025
|
+
attachment?: string | undefined;
|
|
22026
|
+
referece?: string | undefined;
|
|
22027
|
+
mention?: string | undefined;
|
|
22028
|
+
reaction?: string | undefined;
|
|
22029
|
+
repliers?: string[] | undefined;
|
|
22030
|
+
} | undefined;
|
|
21744
22031
|
} & {
|
|
21745
22032
|
id?: string | undefined;
|
|
21746
22033
|
creator_id?: string | undefined;
|
|
@@ -21806,8 +22093,29 @@ export declare const SdTopicList: {
|
|
|
21806
22093
|
hide_editted?: boolean | undefined;
|
|
21807
22094
|
is_public?: boolean | undefined;
|
|
21808
22095
|
topic_id?: string | undefined;
|
|
21809
|
-
} & { [
|
|
21810
|
-
|
|
22096
|
+
} & { [K_6 in Exclude<keyof I_1["topics"][number]["message"], keyof ChannelMessage>]: never; }) | undefined;
|
|
22097
|
+
last_sent_message?: ({
|
|
22098
|
+
id?: string | undefined;
|
|
22099
|
+
timestamp_seconds?: number | undefined;
|
|
22100
|
+
sender_id?: string | undefined;
|
|
22101
|
+
content?: string | undefined;
|
|
22102
|
+
attachment?: string | undefined;
|
|
22103
|
+
referece?: string | undefined;
|
|
22104
|
+
mention?: string | undefined;
|
|
22105
|
+
reaction?: string | undefined;
|
|
22106
|
+
repliers?: string[] | undefined;
|
|
22107
|
+
} & {
|
|
22108
|
+
id?: string | undefined;
|
|
22109
|
+
timestamp_seconds?: number | undefined;
|
|
22110
|
+
sender_id?: string | undefined;
|
|
22111
|
+
content?: string | undefined;
|
|
22112
|
+
attachment?: string | undefined;
|
|
22113
|
+
referece?: string | undefined;
|
|
22114
|
+
mention?: string | undefined;
|
|
22115
|
+
reaction?: string | undefined;
|
|
22116
|
+
repliers?: (string[] & string[] & { [K_7 in Exclude<keyof I_1["topics"][number]["last_sent_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
22117
|
+
} & { [K_8 in Exclude<keyof I_1["topics"][number]["last_sent_message"], keyof ChannelMessageHeader>]: never; }) | undefined;
|
|
22118
|
+
} & { [K_9 in Exclude<keyof I_1["topics"][number], keyof SdTopic>]: never; })[] & { [K_10 in Exclude<keyof I_1["topics"], keyof {
|
|
21811
22119
|
id?: string | undefined;
|
|
21812
22120
|
creator_id?: string | undefined;
|
|
21813
22121
|
message_id?: string | undefined;
|
|
@@ -21845,8 +22153,19 @@ export declare const SdTopicList: {
|
|
|
21845
22153
|
is_public?: boolean | undefined;
|
|
21846
22154
|
topic_id?: string | undefined;
|
|
21847
22155
|
} | undefined;
|
|
22156
|
+
last_sent_message?: {
|
|
22157
|
+
id?: string | undefined;
|
|
22158
|
+
timestamp_seconds?: number | undefined;
|
|
22159
|
+
sender_id?: string | undefined;
|
|
22160
|
+
content?: string | undefined;
|
|
22161
|
+
attachment?: string | undefined;
|
|
22162
|
+
referece?: string | undefined;
|
|
22163
|
+
mention?: string | undefined;
|
|
22164
|
+
reaction?: string | undefined;
|
|
22165
|
+
repliers?: string[] | undefined;
|
|
22166
|
+
} | undefined;
|
|
21848
22167
|
}[]>]: never; }) | undefined;
|
|
21849
|
-
} & { [
|
|
22168
|
+
} & { [K_11 in Exclude<keyof I_1, keyof SdTopicList>]: never; }>(object: I_1): SdTopicList;
|
|
21850
22169
|
};
|
|
21851
22170
|
export declare const ListSdTopicRequest: {
|
|
21852
22171
|
encode(message: ListSdTopicRequest, writer?: _m0.Writer): _m0.Writer;
|
|
@@ -21854,17 +22173,17 @@ export declare const ListSdTopicRequest: {
|
|
|
21854
22173
|
fromJSON(object: any): ListSdTopicRequest;
|
|
21855
22174
|
toJSON(message: ListSdTopicRequest): unknown;
|
|
21856
22175
|
create<I extends {
|
|
21857
|
-
|
|
22176
|
+
clan_id?: string | undefined;
|
|
21858
22177
|
limit?: number | undefined;
|
|
21859
22178
|
} & {
|
|
21860
|
-
|
|
22179
|
+
clan_id?: string | undefined;
|
|
21861
22180
|
limit?: number | undefined;
|
|
21862
22181
|
} & { [K in Exclude<keyof I, keyof ListSdTopicRequest>]: never; }>(base?: I | undefined): ListSdTopicRequest;
|
|
21863
22182
|
fromPartial<I_1 extends {
|
|
21864
|
-
|
|
22183
|
+
clan_id?: string | undefined;
|
|
21865
22184
|
limit?: number | undefined;
|
|
21866
22185
|
} & {
|
|
21867
|
-
|
|
22186
|
+
clan_id?: string | undefined;
|
|
21868
22187
|
limit?: number | undefined;
|
|
21869
22188
|
} & { [K_1 in Exclude<keyof I_1, keyof ListSdTopicRequest>]: never; }>(object: I_1): ListSdTopicRequest;
|
|
21870
22189
|
};
|