mezon-sdk 2.7.74 → 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 +1217 -316
- package/dist/cjs/api/api.js +731 -465
- package/dist/cjs/api/api.js.map +1 -1
- package/dist/cjs/constants/enum.d.ts +19 -0
- package/dist/cjs/constants/enum.js +19 -0
- package/dist/cjs/constants/enum.js.map +1 -1
- package/dist/cjs/interfaces/socket.d.ts +31 -6
- package/dist/cjs/message-socket-events/user_channel_added.js +1 -1
- package/dist/cjs/message-socket-events/user_channel_added.js.map +1 -1
- package/dist/cjs/rtapi/realtime.d.ts +1862 -274
- package/dist/cjs/rtapi/realtime.js +424 -65
- package/dist/cjs/rtapi/realtime.js.map +1 -1
- package/dist/esm/api/api.d.ts +1217 -316
- package/dist/esm/api/api.js +716 -448
- package/dist/esm/api/api.js.map +1 -1
- package/dist/esm/constants/enum.d.ts +19 -0
- package/dist/esm/constants/enum.js +19 -0
- package/dist/esm/constants/enum.js.map +1 -1
- package/dist/esm/interfaces/socket.d.ts +31 -6
- package/dist/esm/message-socket-events/user_channel_added.js +1 -1
- package/dist/esm/message-socket-events/user_channel_added.js.map +1 -1
- package/dist/esm/rtapi/realtime.d.ts +1862 -274
- package/dist/esm/rtapi/realtime.js +410 -54
- 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 {
|
|
@@ -477,6 +479,8 @@ export interface MessageReaction {
|
|
|
477
479
|
message_sender_id: string;
|
|
478
480
|
/** is public */
|
|
479
481
|
is_public: boolean;
|
|
482
|
+
/** topic id */
|
|
483
|
+
topic_id: string;
|
|
480
484
|
}
|
|
481
485
|
/** Message attachment */
|
|
482
486
|
export interface MessageAttachment {
|
|
@@ -747,6 +751,12 @@ export interface ChannelAttachment {
|
|
|
747
751
|
uploader: string;
|
|
748
752
|
/** The UNIX time (for gRPC clients) or ISO string (for REST clients) when the group was created. */
|
|
749
753
|
create_time: Date | undefined;
|
|
754
|
+
/** message id. */
|
|
755
|
+
message_id: string;
|
|
756
|
+
/** width */
|
|
757
|
+
width: number;
|
|
758
|
+
/** height */
|
|
759
|
+
height: number;
|
|
750
760
|
}
|
|
751
761
|
/** channel attachment list */
|
|
752
762
|
export interface ChannelAttachmentList {
|
|
@@ -831,6 +841,8 @@ export interface ListChannelMessagesRequest {
|
|
|
831
841
|
limit: number | undefined;
|
|
832
842
|
/** True if listing should be older messages to newer, false if reverse. */
|
|
833
843
|
direction: number | undefined;
|
|
844
|
+
/** */
|
|
845
|
+
topic_id: string;
|
|
834
846
|
}
|
|
835
847
|
/** List friends for a user. */
|
|
836
848
|
export interface ListFriendsRequest {
|
|
@@ -1018,6 +1030,8 @@ export interface UpdateAccountRequest {
|
|
|
1018
1030
|
logo: string;
|
|
1019
1031
|
/** splash screen */
|
|
1020
1032
|
splash_screen: string;
|
|
1033
|
+
/** e2ee encrypt private key */
|
|
1034
|
+
encrypt_private_key: string;
|
|
1021
1035
|
}
|
|
1022
1036
|
/** Update fields in a given group. */
|
|
1023
1037
|
export interface UpdateGroupRequest {
|
|
@@ -1315,6 +1329,7 @@ export interface CreateCategoryDescRequest {
|
|
|
1315
1329
|
export interface DeleteCategoryDescRequest {
|
|
1316
1330
|
category_id: string;
|
|
1317
1331
|
clan_id: string;
|
|
1332
|
+
category_label: string;
|
|
1318
1333
|
}
|
|
1319
1334
|
/** A list of clan */
|
|
1320
1335
|
export interface CategoryDescList {
|
|
@@ -1347,6 +1362,8 @@ export interface ChannelMessageHeader {
|
|
|
1347
1362
|
mention: string;
|
|
1348
1363
|
/** the reactions */
|
|
1349
1364
|
reaction: string;
|
|
1365
|
+
/** */
|
|
1366
|
+
repliers: string[];
|
|
1350
1367
|
}
|
|
1351
1368
|
/** Channel description record */
|
|
1352
1369
|
export interface ChannelDescription {
|
|
@@ -1564,13 +1581,16 @@ export interface EventManagement {
|
|
|
1564
1581
|
start_event: number;
|
|
1565
1582
|
creator_id: string;
|
|
1566
1583
|
clan_id: string;
|
|
1567
|
-
|
|
1584
|
+
channel_voice_id: string;
|
|
1568
1585
|
address: string;
|
|
1569
1586
|
start_time: Date | undefined;
|
|
1570
1587
|
end_time: Date | undefined;
|
|
1571
1588
|
user_ids: string[];
|
|
1572
1589
|
create_time: Date | undefined;
|
|
1573
1590
|
max_permission: number;
|
|
1591
|
+
channel_id: string;
|
|
1592
|
+
event_status: number;
|
|
1593
|
+
repeat_type: number;
|
|
1574
1594
|
}
|
|
1575
1595
|
/** Permission record */
|
|
1576
1596
|
export interface Permission {
|
|
@@ -1840,12 +1860,16 @@ export interface CreateEventRequest {
|
|
|
1840
1860
|
logo: string;
|
|
1841
1861
|
description: string;
|
|
1842
1862
|
clan_id: string;
|
|
1843
|
-
|
|
1863
|
+
channel_voice_id: string;
|
|
1844
1864
|
address: string;
|
|
1845
1865
|
start_time: Date | undefined;
|
|
1846
1866
|
end_time: Date | undefined;
|
|
1847
1867
|
event_id: string;
|
|
1848
|
-
event_status:
|
|
1868
|
+
event_status: number;
|
|
1869
|
+
channel_id: string;
|
|
1870
|
+
action: number;
|
|
1871
|
+
repeat_type: number;
|
|
1872
|
+
creator_id: string;
|
|
1849
1873
|
}
|
|
1850
1874
|
/** update a event within clan. */
|
|
1851
1875
|
export interface UpdateEventRequest {
|
|
@@ -1858,6 +1882,10 @@ export interface UpdateEventRequest {
|
|
|
1858
1882
|
start_time: Date | undefined;
|
|
1859
1883
|
end_time: Date | undefined;
|
|
1860
1884
|
clan_id: string;
|
|
1885
|
+
creator_id: string;
|
|
1886
|
+
channel_voice_id: string;
|
|
1887
|
+
channel_id_old: string;
|
|
1888
|
+
repeat_type: number;
|
|
1861
1889
|
}
|
|
1862
1890
|
/** Delete a role the user has access to. */
|
|
1863
1891
|
export interface DeleteRoleRequest {
|
|
@@ -1867,12 +1895,20 @@ export interface DeleteRoleRequest {
|
|
|
1867
1895
|
channel_id: string;
|
|
1868
1896
|
/** clan_id */
|
|
1869
1897
|
clan_id: string;
|
|
1898
|
+
/** role label */
|
|
1899
|
+
role_label: string;
|
|
1870
1900
|
}
|
|
1871
1901
|
export interface DeleteEventRequest {
|
|
1872
1902
|
/** The id of a event. */
|
|
1873
1903
|
event_id: string;
|
|
1874
1904
|
/** clan id */
|
|
1875
1905
|
clan_id: string;
|
|
1906
|
+
/** creator id */
|
|
1907
|
+
creator_id: string;
|
|
1908
|
+
/** event label */
|
|
1909
|
+
event_label: string;
|
|
1910
|
+
/** channel id */
|
|
1911
|
+
channel_id: string;
|
|
1876
1912
|
}
|
|
1877
1913
|
/** Update fields in a given role. */
|
|
1878
1914
|
export interface UpdateRoleRequest {
|
|
@@ -1908,6 +1944,8 @@ export interface UpdateRoleChannelRequest {
|
|
|
1908
1944
|
channel_id: string;
|
|
1909
1945
|
/** The ID of the role to update. */
|
|
1910
1946
|
user_id: string;
|
|
1947
|
+
/** Role label */
|
|
1948
|
+
role_label: string;
|
|
1911
1949
|
}
|
|
1912
1950
|
export interface PermissionUpdate {
|
|
1913
1951
|
/** permission_id */
|
|
@@ -2084,6 +2122,7 @@ export interface ClanEmojiGetByClanIdRequest {
|
|
|
2084
2122
|
export interface ClanEmojiDeleteRequest {
|
|
2085
2123
|
id: string;
|
|
2086
2124
|
clan_id: string;
|
|
2125
|
+
emoji_label: string;
|
|
2087
2126
|
}
|
|
2088
2127
|
export interface ClanEmojiUpdateRequest {
|
|
2089
2128
|
id: string;
|
|
@@ -2177,6 +2216,7 @@ export interface ClanStickerUpdateByIdRequest {
|
|
|
2177
2216
|
export interface ClanStickerDeleteRequest {
|
|
2178
2217
|
id: string;
|
|
2179
2218
|
clan_id: string;
|
|
2219
|
+
sticker_label: string;
|
|
2180
2220
|
}
|
|
2181
2221
|
export interface ChangeChannelCategoryRequest {
|
|
2182
2222
|
channel_id: string;
|
|
@@ -2316,6 +2356,8 @@ export interface SystemMessage {
|
|
|
2316
2356
|
boost_message: string;
|
|
2317
2357
|
/** Setup tips */
|
|
2318
2358
|
setup_tips: string;
|
|
2359
|
+
/** Hide audit log */
|
|
2360
|
+
hide_audit_log: string;
|
|
2319
2361
|
}
|
|
2320
2362
|
/** List of system message. */
|
|
2321
2363
|
export interface SystemMessagesList {
|
|
@@ -2335,6 +2377,8 @@ export interface SystemMessageRequest {
|
|
|
2335
2377
|
boost_message: string;
|
|
2336
2378
|
/** Setup tips */
|
|
2337
2379
|
setup_tips: string;
|
|
2380
|
+
/** Hide audit log */
|
|
2381
|
+
hide_audit_log: string;
|
|
2338
2382
|
}
|
|
2339
2383
|
/** Request to delete a system message by clan ID. */
|
|
2340
2384
|
export interface DeleteSystemMessage {
|
|
@@ -2349,22 +2393,25 @@ export interface GetSystemMessage {
|
|
|
2349
2393
|
export interface DeleteCategoryOrderRequest {
|
|
2350
2394
|
clan_id: string;
|
|
2351
2395
|
}
|
|
2352
|
-
export interface
|
|
2353
|
-
|
|
2396
|
+
export interface StreamHttpCallbackRequest {
|
|
2397
|
+
/** id */
|
|
2398
|
+
id: string;
|
|
2399
|
+
/** client_id */
|
|
2354
2400
|
client_id: string;
|
|
2355
|
-
|
|
2356
|
-
|
|
2357
|
-
|
|
2358
|
-
|
|
2359
|
-
|
|
2360
|
-
|
|
2361
|
-
|
|
2362
|
-
|
|
2363
|
-
|
|
2364
|
-
|
|
2365
|
-
|
|
2366
|
-
|
|
2367
|
-
|
|
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;
|
|
2413
|
+
}
|
|
2414
|
+
export interface StreamHttpCallbackResponse {
|
|
2368
2415
|
code: number | undefined;
|
|
2369
2416
|
msg: string;
|
|
2370
2417
|
}
|
|
@@ -2398,24 +2445,6 @@ export interface RegisterStreamingChannelResponse {
|
|
|
2398
2445
|
/** streaming url */
|
|
2399
2446
|
streaming_url: string;
|
|
2400
2447
|
}
|
|
2401
|
-
export interface ListStreamingChannelsRequest {
|
|
2402
|
-
/** clan id */
|
|
2403
|
-
clan_id: string;
|
|
2404
|
-
}
|
|
2405
|
-
export interface ListStreamingChannelsResponse {
|
|
2406
|
-
/** list of streaming channel */
|
|
2407
|
-
streaming_channels: StreamingChannelResponse[];
|
|
2408
|
-
}
|
|
2409
|
-
export interface StreamingChannelResponse {
|
|
2410
|
-
/** clan id */
|
|
2411
|
-
clan_id: string;
|
|
2412
|
-
/** channel id */
|
|
2413
|
-
channel_id: string;
|
|
2414
|
-
/** stream url */
|
|
2415
|
-
streaming_url: string;
|
|
2416
|
-
/** status */
|
|
2417
|
-
is_streaming: boolean;
|
|
2418
|
-
}
|
|
2419
2448
|
export interface GiveCoffeeEvent {
|
|
2420
2449
|
/** sender id */
|
|
2421
2450
|
sender_id: string;
|
|
@@ -2762,19 +2791,18 @@ export interface AuditLog {
|
|
|
2762
2791
|
details: string;
|
|
2763
2792
|
time_log: Date | undefined;
|
|
2764
2793
|
channel_id: string;
|
|
2794
|
+
channel_label: string;
|
|
2765
2795
|
}
|
|
2766
2796
|
export interface ListAuditLog {
|
|
2767
2797
|
total_count: number;
|
|
2768
|
-
|
|
2769
|
-
page_size: number;
|
|
2798
|
+
date_log: string;
|
|
2770
2799
|
logs: AuditLog[];
|
|
2771
2800
|
}
|
|
2772
2801
|
export interface ListAuditLogRequest {
|
|
2773
2802
|
action_log: string;
|
|
2774
2803
|
user_id: string;
|
|
2775
2804
|
clan_id: string;
|
|
2776
|
-
|
|
2777
|
-
page_size: number;
|
|
2805
|
+
date_log: string;
|
|
2778
2806
|
}
|
|
2779
2807
|
export interface TokenSentEvent {
|
|
2780
2808
|
/** sender id */
|
|
@@ -2787,6 +2815,10 @@ export interface TokenSentEvent {
|
|
|
2787
2815
|
amount: number;
|
|
2788
2816
|
/** note */
|
|
2789
2817
|
note: string;
|
|
2818
|
+
/** */
|
|
2819
|
+
extra_attribute: string;
|
|
2820
|
+
/** */
|
|
2821
|
+
transaction_id: string;
|
|
2790
2822
|
}
|
|
2791
2823
|
export interface WithdrawTokenRequest {
|
|
2792
2824
|
/** amount of token */
|
|
@@ -3047,6 +3079,8 @@ export interface SdTopic {
|
|
|
3047
3079
|
status: number;
|
|
3048
3080
|
create_time: Date | undefined;
|
|
3049
3081
|
update_time: Date | undefined;
|
|
3082
|
+
message: ChannelMessage | undefined;
|
|
3083
|
+
last_sent_message: ChannelMessageHeader | undefined;
|
|
3050
3084
|
}
|
|
3051
3085
|
export interface SdTopicRequest {
|
|
3052
3086
|
message_id: string;
|
|
@@ -3058,9 +3092,12 @@ export interface SdTopicList {
|
|
|
3058
3092
|
topics: SdTopic[];
|
|
3059
3093
|
}
|
|
3060
3094
|
export interface ListSdTopicRequest {
|
|
3061
|
-
|
|
3095
|
+
clan_id: string;
|
|
3062
3096
|
limit: number;
|
|
3063
3097
|
}
|
|
3098
|
+
export interface SdTopicDetailRequest {
|
|
3099
|
+
topic_id: string;
|
|
3100
|
+
}
|
|
3064
3101
|
export interface DeleteSdTopicRequest {
|
|
3065
3102
|
channel_id: string;
|
|
3066
3103
|
id: string;
|
|
@@ -3108,6 +3145,7 @@ export declare const Account: {
|
|
|
3108
3145
|
disable_time?: Date | undefined;
|
|
3109
3146
|
logo?: string | undefined;
|
|
3110
3147
|
splash_screen?: string | undefined;
|
|
3148
|
+
encrypt_private_key?: string | undefined;
|
|
3111
3149
|
} & {
|
|
3112
3150
|
user?: ({
|
|
3113
3151
|
id?: string | undefined;
|
|
@@ -3184,6 +3222,7 @@ export declare const Account: {
|
|
|
3184
3222
|
disable_time?: Date | undefined;
|
|
3185
3223
|
logo?: string | undefined;
|
|
3186
3224
|
splash_screen?: string | undefined;
|
|
3225
|
+
encrypt_private_key?: string | undefined;
|
|
3187
3226
|
} & { [K_4 in Exclude<keyof I, keyof Account>]: never; }>(base?: I | undefined): Account;
|
|
3188
3227
|
fromPartial<I_1 extends {
|
|
3189
3228
|
user?: {
|
|
@@ -3222,6 +3261,7 @@ export declare const Account: {
|
|
|
3222
3261
|
disable_time?: Date | undefined;
|
|
3223
3262
|
logo?: string | undefined;
|
|
3224
3263
|
splash_screen?: string | undefined;
|
|
3264
|
+
encrypt_private_key?: string | undefined;
|
|
3225
3265
|
} & {
|
|
3226
3266
|
user?: ({
|
|
3227
3267
|
id?: string | undefined;
|
|
@@ -3298,6 +3338,7 @@ export declare const Account: {
|
|
|
3298
3338
|
disable_time?: Date | undefined;
|
|
3299
3339
|
logo?: string | undefined;
|
|
3300
3340
|
splash_screen?: string | undefined;
|
|
3341
|
+
encrypt_private_key?: string | undefined;
|
|
3301
3342
|
} & { [K_9 in Exclude<keyof I_1, keyof Account>]: never; }>(object: I_1): Account;
|
|
3302
3343
|
};
|
|
3303
3344
|
export declare const AccountRefresh: {
|
|
@@ -4822,6 +4863,7 @@ export declare const MessageReaction: {
|
|
|
4822
4863
|
mode?: number | undefined;
|
|
4823
4864
|
message_sender_id?: string | undefined;
|
|
4824
4865
|
is_public?: boolean | undefined;
|
|
4866
|
+
topic_id?: string | undefined;
|
|
4825
4867
|
} & {
|
|
4826
4868
|
id?: string | undefined;
|
|
4827
4869
|
emoji_id?: string | undefined;
|
|
@@ -4837,6 +4879,7 @@ export declare const MessageReaction: {
|
|
|
4837
4879
|
mode?: number | undefined;
|
|
4838
4880
|
message_sender_id?: string | undefined;
|
|
4839
4881
|
is_public?: boolean | undefined;
|
|
4882
|
+
topic_id?: string | undefined;
|
|
4840
4883
|
} & { [K in Exclude<keyof I, keyof MessageReaction>]: never; }>(base?: I | undefined): MessageReaction;
|
|
4841
4884
|
fromPartial<I_1 extends {
|
|
4842
4885
|
id?: string | undefined;
|
|
@@ -4853,6 +4896,7 @@ export declare const MessageReaction: {
|
|
|
4853
4896
|
mode?: number | undefined;
|
|
4854
4897
|
message_sender_id?: string | undefined;
|
|
4855
4898
|
is_public?: boolean | undefined;
|
|
4899
|
+
topic_id?: string | undefined;
|
|
4856
4900
|
} & {
|
|
4857
4901
|
id?: string | undefined;
|
|
4858
4902
|
emoji_id?: string | undefined;
|
|
@@ -4868,6 +4912,7 @@ export declare const MessageReaction: {
|
|
|
4868
4912
|
mode?: number | undefined;
|
|
4869
4913
|
message_sender_id?: string | undefined;
|
|
4870
4914
|
is_public?: boolean | undefined;
|
|
4915
|
+
topic_id?: string | undefined;
|
|
4871
4916
|
} & { [K_1 in Exclude<keyof I_1, keyof MessageReaction>]: never; }>(object: I_1): MessageReaction;
|
|
4872
4917
|
};
|
|
4873
4918
|
export declare const MessageAttachment: {
|
|
@@ -5022,6 +5067,7 @@ export declare const ChannelMessageList: {
|
|
|
5022
5067
|
referece?: string | undefined;
|
|
5023
5068
|
mention?: string | undefined;
|
|
5024
5069
|
reaction?: string | undefined;
|
|
5070
|
+
repliers?: string[] | undefined;
|
|
5025
5071
|
} | undefined;
|
|
5026
5072
|
last_sent_message?: {
|
|
5027
5073
|
id?: string | undefined;
|
|
@@ -5032,6 +5078,7 @@ export declare const ChannelMessageList: {
|
|
|
5032
5078
|
referece?: string | undefined;
|
|
5033
5079
|
mention?: string | undefined;
|
|
5034
5080
|
reaction?: string | undefined;
|
|
5081
|
+
repliers?: string[] | undefined;
|
|
5035
5082
|
} | undefined;
|
|
5036
5083
|
} & {
|
|
5037
5084
|
messages?: ({
|
|
@@ -5156,6 +5203,7 @@ export declare const ChannelMessageList: {
|
|
|
5156
5203
|
referece?: string | undefined;
|
|
5157
5204
|
mention?: string | undefined;
|
|
5158
5205
|
reaction?: string | undefined;
|
|
5206
|
+
repliers?: string[] | undefined;
|
|
5159
5207
|
} & {
|
|
5160
5208
|
id?: string | undefined;
|
|
5161
5209
|
timestamp_seconds?: number | undefined;
|
|
@@ -5165,7 +5213,8 @@ export declare const ChannelMessageList: {
|
|
|
5165
5213
|
referece?: string | undefined;
|
|
5166
5214
|
mention?: string | undefined;
|
|
5167
5215
|
reaction?: string | undefined;
|
|
5168
|
-
|
|
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;
|
|
5169
5218
|
last_sent_message?: ({
|
|
5170
5219
|
id?: string | undefined;
|
|
5171
5220
|
timestamp_seconds?: number | undefined;
|
|
@@ -5175,6 +5224,7 @@ export declare const ChannelMessageList: {
|
|
|
5175
5224
|
referece?: string | undefined;
|
|
5176
5225
|
mention?: string | undefined;
|
|
5177
5226
|
reaction?: string | undefined;
|
|
5227
|
+
repliers?: string[] | undefined;
|
|
5178
5228
|
} & {
|
|
5179
5229
|
id?: string | undefined;
|
|
5180
5230
|
timestamp_seconds?: number | undefined;
|
|
@@ -5184,8 +5234,9 @@ export declare const ChannelMessageList: {
|
|
|
5184
5234
|
referece?: string | undefined;
|
|
5185
5235
|
mention?: string | undefined;
|
|
5186
5236
|
reaction?: string | undefined;
|
|
5187
|
-
|
|
5188
|
-
|
|
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;
|
|
5189
5240
|
fromPartial<I_1 extends {
|
|
5190
5241
|
messages?: {
|
|
5191
5242
|
clan_id?: string | undefined;
|
|
@@ -5225,6 +5276,7 @@ export declare const ChannelMessageList: {
|
|
|
5225
5276
|
referece?: string | undefined;
|
|
5226
5277
|
mention?: string | undefined;
|
|
5227
5278
|
reaction?: string | undefined;
|
|
5279
|
+
repliers?: string[] | undefined;
|
|
5228
5280
|
} | undefined;
|
|
5229
5281
|
last_sent_message?: {
|
|
5230
5282
|
id?: string | undefined;
|
|
@@ -5235,6 +5287,7 @@ export declare const ChannelMessageList: {
|
|
|
5235
5287
|
referece?: string | undefined;
|
|
5236
5288
|
mention?: string | undefined;
|
|
5237
5289
|
reaction?: string | undefined;
|
|
5290
|
+
repliers?: string[] | undefined;
|
|
5238
5291
|
} | undefined;
|
|
5239
5292
|
} & {
|
|
5240
5293
|
messages?: ({
|
|
@@ -5321,7 +5374,7 @@ export declare const ChannelMessageList: {
|
|
|
5321
5374
|
hide_editted?: boolean | undefined;
|
|
5322
5375
|
is_public?: boolean | undefined;
|
|
5323
5376
|
topic_id?: string | undefined;
|
|
5324
|
-
} & { [
|
|
5377
|
+
} & { [K_7 in Exclude<keyof I_1["messages"][number], keyof ChannelMessage>]: never; })[] & { [K_8 in Exclude<keyof I_1["messages"], keyof {
|
|
5325
5378
|
clan_id?: string | undefined;
|
|
5326
5379
|
channel_id?: string | undefined;
|
|
5327
5380
|
message_id?: string | undefined;
|
|
@@ -5359,6 +5412,7 @@ export declare const ChannelMessageList: {
|
|
|
5359
5412
|
referece?: string | undefined;
|
|
5360
5413
|
mention?: string | undefined;
|
|
5361
5414
|
reaction?: string | undefined;
|
|
5415
|
+
repliers?: string[] | undefined;
|
|
5362
5416
|
} & {
|
|
5363
5417
|
id?: string | undefined;
|
|
5364
5418
|
timestamp_seconds?: number | undefined;
|
|
@@ -5368,7 +5422,8 @@ export declare const ChannelMessageList: {
|
|
|
5368
5422
|
referece?: string | undefined;
|
|
5369
5423
|
mention?: string | undefined;
|
|
5370
5424
|
reaction?: string | undefined;
|
|
5371
|
-
|
|
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;
|
|
5372
5427
|
last_sent_message?: ({
|
|
5373
5428
|
id?: string | undefined;
|
|
5374
5429
|
timestamp_seconds?: number | undefined;
|
|
@@ -5378,6 +5433,7 @@ export declare const ChannelMessageList: {
|
|
|
5378
5433
|
referece?: string | undefined;
|
|
5379
5434
|
mention?: string | undefined;
|
|
5380
5435
|
reaction?: string | undefined;
|
|
5436
|
+
repliers?: string[] | undefined;
|
|
5381
5437
|
} & {
|
|
5382
5438
|
id?: string | undefined;
|
|
5383
5439
|
timestamp_seconds?: number | undefined;
|
|
@@ -5387,8 +5443,9 @@ export declare const ChannelMessageList: {
|
|
|
5387
5443
|
referece?: string | undefined;
|
|
5388
5444
|
mention?: string | undefined;
|
|
5389
5445
|
reaction?: string | undefined;
|
|
5390
|
-
|
|
5391
|
-
|
|
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;
|
|
5392
5449
|
};
|
|
5393
5450
|
export declare const CreateGroupRequest: {
|
|
5394
5451
|
encode(message: CreateGroupRequest, writer?: _m0.Writer): _m0.Writer;
|
|
@@ -6989,6 +7046,9 @@ export declare const ChannelAttachment: {
|
|
|
6989
7046
|
url?: string | undefined;
|
|
6990
7047
|
uploader?: string | undefined;
|
|
6991
7048
|
create_time?: Date | undefined;
|
|
7049
|
+
message_id?: string | undefined;
|
|
7050
|
+
width?: number | undefined;
|
|
7051
|
+
height?: number | undefined;
|
|
6992
7052
|
} & {
|
|
6993
7053
|
id?: string | undefined;
|
|
6994
7054
|
filename?: string | undefined;
|
|
@@ -6997,6 +7057,9 @@ export declare const ChannelAttachment: {
|
|
|
6997
7057
|
url?: string | undefined;
|
|
6998
7058
|
uploader?: string | undefined;
|
|
6999
7059
|
create_time?: Date | undefined;
|
|
7060
|
+
message_id?: string | undefined;
|
|
7061
|
+
width?: number | undefined;
|
|
7062
|
+
height?: number | undefined;
|
|
7000
7063
|
} & { [K in Exclude<keyof I, keyof ChannelAttachment>]: never; }>(base?: I | undefined): ChannelAttachment;
|
|
7001
7064
|
fromPartial<I_1 extends {
|
|
7002
7065
|
id?: string | undefined;
|
|
@@ -7006,6 +7069,9 @@ export declare const ChannelAttachment: {
|
|
|
7006
7069
|
url?: string | undefined;
|
|
7007
7070
|
uploader?: string | undefined;
|
|
7008
7071
|
create_time?: Date | undefined;
|
|
7072
|
+
message_id?: string | undefined;
|
|
7073
|
+
width?: number | undefined;
|
|
7074
|
+
height?: number | undefined;
|
|
7009
7075
|
} & {
|
|
7010
7076
|
id?: string | undefined;
|
|
7011
7077
|
filename?: string | undefined;
|
|
@@ -7014,6 +7080,9 @@ export declare const ChannelAttachment: {
|
|
|
7014
7080
|
url?: string | undefined;
|
|
7015
7081
|
uploader?: string | undefined;
|
|
7016
7082
|
create_time?: Date | undefined;
|
|
7083
|
+
message_id?: string | undefined;
|
|
7084
|
+
width?: number | undefined;
|
|
7085
|
+
height?: number | undefined;
|
|
7017
7086
|
} & { [K_1 in Exclude<keyof I_1, keyof ChannelAttachment>]: never; }>(object: I_1): ChannelAttachment;
|
|
7018
7087
|
};
|
|
7019
7088
|
export declare const ChannelAttachmentList: {
|
|
@@ -7030,6 +7099,9 @@ export declare const ChannelAttachmentList: {
|
|
|
7030
7099
|
url?: string | undefined;
|
|
7031
7100
|
uploader?: string | undefined;
|
|
7032
7101
|
create_time?: Date | undefined;
|
|
7102
|
+
message_id?: string | undefined;
|
|
7103
|
+
width?: number | undefined;
|
|
7104
|
+
height?: number | undefined;
|
|
7033
7105
|
}[] | undefined;
|
|
7034
7106
|
} & {
|
|
7035
7107
|
attachments?: ({
|
|
@@ -7040,6 +7112,9 @@ export declare const ChannelAttachmentList: {
|
|
|
7040
7112
|
url?: string | undefined;
|
|
7041
7113
|
uploader?: string | undefined;
|
|
7042
7114
|
create_time?: Date | undefined;
|
|
7115
|
+
message_id?: string | undefined;
|
|
7116
|
+
width?: number | undefined;
|
|
7117
|
+
height?: number | undefined;
|
|
7043
7118
|
}[] & ({
|
|
7044
7119
|
id?: string | undefined;
|
|
7045
7120
|
filename?: string | undefined;
|
|
@@ -7048,6 +7123,9 @@ export declare const ChannelAttachmentList: {
|
|
|
7048
7123
|
url?: string | undefined;
|
|
7049
7124
|
uploader?: string | undefined;
|
|
7050
7125
|
create_time?: Date | undefined;
|
|
7126
|
+
message_id?: string | undefined;
|
|
7127
|
+
width?: number | undefined;
|
|
7128
|
+
height?: number | undefined;
|
|
7051
7129
|
} & {
|
|
7052
7130
|
id?: string | undefined;
|
|
7053
7131
|
filename?: string | undefined;
|
|
@@ -7056,6 +7134,9 @@ export declare const ChannelAttachmentList: {
|
|
|
7056
7134
|
url?: string | undefined;
|
|
7057
7135
|
uploader?: string | undefined;
|
|
7058
7136
|
create_time?: Date | undefined;
|
|
7137
|
+
message_id?: string | undefined;
|
|
7138
|
+
width?: number | undefined;
|
|
7139
|
+
height?: number | undefined;
|
|
7059
7140
|
} & { [K in Exclude<keyof I["attachments"][number], keyof ChannelAttachment>]: never; })[] & { [K_1 in Exclude<keyof I["attachments"], keyof {
|
|
7060
7141
|
id?: string | undefined;
|
|
7061
7142
|
filename?: string | undefined;
|
|
@@ -7064,6 +7145,9 @@ export declare const ChannelAttachmentList: {
|
|
|
7064
7145
|
url?: string | undefined;
|
|
7065
7146
|
uploader?: string | undefined;
|
|
7066
7147
|
create_time?: Date | undefined;
|
|
7148
|
+
message_id?: string | undefined;
|
|
7149
|
+
width?: number | undefined;
|
|
7150
|
+
height?: number | undefined;
|
|
7067
7151
|
}[]>]: never; }) | undefined;
|
|
7068
7152
|
} & { [K_2 in Exclude<keyof I, "attachments">]: never; }>(base?: I | undefined): ChannelAttachmentList;
|
|
7069
7153
|
fromPartial<I_1 extends {
|
|
@@ -7075,6 +7159,9 @@ export declare const ChannelAttachmentList: {
|
|
|
7075
7159
|
url?: string | undefined;
|
|
7076
7160
|
uploader?: string | undefined;
|
|
7077
7161
|
create_time?: Date | undefined;
|
|
7162
|
+
message_id?: string | undefined;
|
|
7163
|
+
width?: number | undefined;
|
|
7164
|
+
height?: number | undefined;
|
|
7078
7165
|
}[] | undefined;
|
|
7079
7166
|
} & {
|
|
7080
7167
|
attachments?: ({
|
|
@@ -7085,6 +7172,9 @@ export declare const ChannelAttachmentList: {
|
|
|
7085
7172
|
url?: string | undefined;
|
|
7086
7173
|
uploader?: string | undefined;
|
|
7087
7174
|
create_time?: Date | undefined;
|
|
7175
|
+
message_id?: string | undefined;
|
|
7176
|
+
width?: number | undefined;
|
|
7177
|
+
height?: number | undefined;
|
|
7088
7178
|
}[] & ({
|
|
7089
7179
|
id?: string | undefined;
|
|
7090
7180
|
filename?: string | undefined;
|
|
@@ -7093,6 +7183,9 @@ export declare const ChannelAttachmentList: {
|
|
|
7093
7183
|
url?: string | undefined;
|
|
7094
7184
|
uploader?: string | undefined;
|
|
7095
7185
|
create_time?: Date | undefined;
|
|
7186
|
+
message_id?: string | undefined;
|
|
7187
|
+
width?: number | undefined;
|
|
7188
|
+
height?: number | undefined;
|
|
7096
7189
|
} & {
|
|
7097
7190
|
id?: string | undefined;
|
|
7098
7191
|
filename?: string | undefined;
|
|
@@ -7101,6 +7194,9 @@ export declare const ChannelAttachmentList: {
|
|
|
7101
7194
|
url?: string | undefined;
|
|
7102
7195
|
uploader?: string | undefined;
|
|
7103
7196
|
create_time?: Date | undefined;
|
|
7197
|
+
message_id?: string | undefined;
|
|
7198
|
+
width?: number | undefined;
|
|
7199
|
+
height?: number | undefined;
|
|
7104
7200
|
} & { [K_3 in Exclude<keyof I_1["attachments"][number], keyof ChannelAttachment>]: never; })[] & { [K_4 in Exclude<keyof I_1["attachments"], keyof {
|
|
7105
7201
|
id?: string | undefined;
|
|
7106
7202
|
filename?: string | undefined;
|
|
@@ -7109,6 +7205,9 @@ export declare const ChannelAttachmentList: {
|
|
|
7109
7205
|
url?: string | undefined;
|
|
7110
7206
|
uploader?: string | undefined;
|
|
7111
7207
|
create_time?: Date | undefined;
|
|
7208
|
+
message_id?: string | undefined;
|
|
7209
|
+
width?: number | undefined;
|
|
7210
|
+
height?: number | undefined;
|
|
7112
7211
|
}[]>]: never; }) | undefined;
|
|
7113
7212
|
} & { [K_5 in Exclude<keyof I_1, "attachments">]: never; }>(object: I_1): ChannelAttachmentList;
|
|
7114
7213
|
};
|
|
@@ -7899,12 +7998,14 @@ export declare const ListChannelMessagesRequest: {
|
|
|
7899
7998
|
message_id?: string | undefined;
|
|
7900
7999
|
limit?: number | undefined;
|
|
7901
8000
|
direction?: number | undefined;
|
|
8001
|
+
topic_id?: string | undefined;
|
|
7902
8002
|
} & {
|
|
7903
8003
|
clan_id?: string | undefined;
|
|
7904
8004
|
channel_id?: string | undefined;
|
|
7905
8005
|
message_id?: string | undefined;
|
|
7906
8006
|
limit?: number | undefined;
|
|
7907
8007
|
direction?: number | undefined;
|
|
8008
|
+
topic_id?: string | undefined;
|
|
7908
8009
|
} & { [K in Exclude<keyof I, keyof ListChannelMessagesRequest>]: never; }>(base?: I | undefined): ListChannelMessagesRequest;
|
|
7909
8010
|
fromPartial<I_1 extends {
|
|
7910
8011
|
clan_id?: string | undefined;
|
|
@@ -7912,12 +8013,14 @@ export declare const ListChannelMessagesRequest: {
|
|
|
7912
8013
|
message_id?: string | undefined;
|
|
7913
8014
|
limit?: number | undefined;
|
|
7914
8015
|
direction?: number | undefined;
|
|
8016
|
+
topic_id?: string | undefined;
|
|
7915
8017
|
} & {
|
|
7916
8018
|
clan_id?: string | undefined;
|
|
7917
8019
|
channel_id?: string | undefined;
|
|
7918
8020
|
message_id?: string | undefined;
|
|
7919
8021
|
limit?: number | undefined;
|
|
7920
8022
|
direction?: number | undefined;
|
|
8023
|
+
topic_id?: string | undefined;
|
|
7921
8024
|
} & { [K_1 in Exclude<keyof I_1, keyof ListChannelMessagesRequest>]: never; }>(object: I_1): ListChannelMessagesRequest;
|
|
7922
8025
|
};
|
|
7923
8026
|
export declare const ListFriendsRequest: {
|
|
@@ -8468,6 +8571,7 @@ export declare const UpdateAccountRequest: {
|
|
|
8468
8571
|
dob?: Date | undefined;
|
|
8469
8572
|
logo?: string | undefined;
|
|
8470
8573
|
splash_screen?: string | undefined;
|
|
8574
|
+
encrypt_private_key?: string | undefined;
|
|
8471
8575
|
} & {
|
|
8472
8576
|
username?: string | undefined;
|
|
8473
8577
|
display_name?: string | undefined;
|
|
@@ -8479,6 +8583,7 @@ export declare const UpdateAccountRequest: {
|
|
|
8479
8583
|
dob?: Date | undefined;
|
|
8480
8584
|
logo?: string | undefined;
|
|
8481
8585
|
splash_screen?: string | undefined;
|
|
8586
|
+
encrypt_private_key?: string | undefined;
|
|
8482
8587
|
} & { [K in Exclude<keyof I, keyof UpdateAccountRequest>]: never; }>(base?: I | undefined): UpdateAccountRequest;
|
|
8483
8588
|
fromPartial<I_1 extends {
|
|
8484
8589
|
username?: string | undefined;
|
|
@@ -8491,6 +8596,7 @@ export declare const UpdateAccountRequest: {
|
|
|
8491
8596
|
dob?: Date | undefined;
|
|
8492
8597
|
logo?: string | undefined;
|
|
8493
8598
|
splash_screen?: string | undefined;
|
|
8599
|
+
encrypt_private_key?: string | undefined;
|
|
8494
8600
|
} & {
|
|
8495
8601
|
username?: string | undefined;
|
|
8496
8602
|
display_name?: string | undefined;
|
|
@@ -8502,6 +8608,7 @@ export declare const UpdateAccountRequest: {
|
|
|
8502
8608
|
dob?: Date | undefined;
|
|
8503
8609
|
logo?: string | undefined;
|
|
8504
8610
|
splash_screen?: string | undefined;
|
|
8611
|
+
encrypt_private_key?: string | undefined;
|
|
8505
8612
|
} & { [K_1 in Exclude<keyof I_1, keyof UpdateAccountRequest>]: never; }>(object: I_1): UpdateAccountRequest;
|
|
8506
8613
|
};
|
|
8507
8614
|
export declare const UpdateGroupRequest: {
|
|
@@ -9868,16 +9975,20 @@ export declare const DeleteCategoryDescRequest: {
|
|
|
9868
9975
|
create<I extends {
|
|
9869
9976
|
category_id?: string | undefined;
|
|
9870
9977
|
clan_id?: string | undefined;
|
|
9978
|
+
category_label?: string | undefined;
|
|
9871
9979
|
} & {
|
|
9872
9980
|
category_id?: string | undefined;
|
|
9873
9981
|
clan_id?: string | undefined;
|
|
9982
|
+
category_label?: string | undefined;
|
|
9874
9983
|
} & { [K in Exclude<keyof I, keyof DeleteCategoryDescRequest>]: never; }>(base?: I | undefined): DeleteCategoryDescRequest;
|
|
9875
9984
|
fromPartial<I_1 extends {
|
|
9876
9985
|
category_id?: string | undefined;
|
|
9877
9986
|
clan_id?: string | undefined;
|
|
9987
|
+
category_label?: string | undefined;
|
|
9878
9988
|
} & {
|
|
9879
9989
|
category_id?: string | undefined;
|
|
9880
9990
|
clan_id?: string | undefined;
|
|
9991
|
+
category_label?: string | undefined;
|
|
9881
9992
|
} & { [K_1 in Exclude<keyof I_1, keyof DeleteCategoryDescRequest>]: never; }>(object: I_1): DeleteCategoryDescRequest;
|
|
9882
9993
|
};
|
|
9883
9994
|
export declare const CategoryDescList: {
|
|
@@ -9994,6 +10105,7 @@ export declare const ChannelMessageHeader: {
|
|
|
9994
10105
|
referece?: string | undefined;
|
|
9995
10106
|
mention?: string | undefined;
|
|
9996
10107
|
reaction?: string | undefined;
|
|
10108
|
+
repliers?: string[] | undefined;
|
|
9997
10109
|
} & {
|
|
9998
10110
|
id?: string | undefined;
|
|
9999
10111
|
timestamp_seconds?: number | undefined;
|
|
@@ -10003,7 +10115,8 @@ export declare const ChannelMessageHeader: {
|
|
|
10003
10115
|
referece?: string | undefined;
|
|
10004
10116
|
mention?: string | undefined;
|
|
10005
10117
|
reaction?: string | undefined;
|
|
10006
|
-
|
|
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;
|
|
10007
10120
|
fromPartial<I_1 extends {
|
|
10008
10121
|
id?: string | undefined;
|
|
10009
10122
|
timestamp_seconds?: number | undefined;
|
|
@@ -10013,6 +10126,7 @@ export declare const ChannelMessageHeader: {
|
|
|
10013
10126
|
referece?: string | undefined;
|
|
10014
10127
|
mention?: string | undefined;
|
|
10015
10128
|
reaction?: string | undefined;
|
|
10129
|
+
repliers?: string[] | undefined;
|
|
10016
10130
|
} & {
|
|
10017
10131
|
id?: string | undefined;
|
|
10018
10132
|
timestamp_seconds?: number | undefined;
|
|
@@ -10022,7 +10136,8 @@ export declare const ChannelMessageHeader: {
|
|
|
10022
10136
|
referece?: string | undefined;
|
|
10023
10137
|
mention?: string | undefined;
|
|
10024
10138
|
reaction?: string | undefined;
|
|
10025
|
-
|
|
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;
|
|
10026
10141
|
};
|
|
10027
10142
|
export declare const ChannelDescription: {
|
|
10028
10143
|
encode(message: ChannelDescription, writer?: _m0.Writer): _m0.Writer;
|
|
@@ -10050,6 +10165,7 @@ export declare const ChannelDescription: {
|
|
|
10050
10165
|
referece?: string | undefined;
|
|
10051
10166
|
mention?: string | undefined;
|
|
10052
10167
|
reaction?: string | undefined;
|
|
10168
|
+
repliers?: string[] | undefined;
|
|
10053
10169
|
} | undefined;
|
|
10054
10170
|
last_seen_message?: {
|
|
10055
10171
|
id?: string | undefined;
|
|
@@ -10060,6 +10176,7 @@ export declare const ChannelDescription: {
|
|
|
10060
10176
|
referece?: string | undefined;
|
|
10061
10177
|
mention?: string | undefined;
|
|
10062
10178
|
reaction?: string | undefined;
|
|
10179
|
+
repliers?: string[] | undefined;
|
|
10063
10180
|
} | undefined;
|
|
10064
10181
|
is_online?: boolean[] | undefined;
|
|
10065
10182
|
meeting_code?: string | undefined;
|
|
@@ -10099,6 +10216,7 @@ export declare const ChannelDescription: {
|
|
|
10099
10216
|
referece?: string | undefined;
|
|
10100
10217
|
mention?: string | undefined;
|
|
10101
10218
|
reaction?: string | undefined;
|
|
10219
|
+
repliers?: string[] | undefined;
|
|
10102
10220
|
} & {
|
|
10103
10221
|
id?: string | undefined;
|
|
10104
10222
|
timestamp_seconds?: number | undefined;
|
|
@@ -10108,7 +10226,8 @@ export declare const ChannelDescription: {
|
|
|
10108
10226
|
referece?: string | undefined;
|
|
10109
10227
|
mention?: string | undefined;
|
|
10110
10228
|
reaction?: string | undefined;
|
|
10111
|
-
|
|
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;
|
|
10112
10231
|
last_seen_message?: ({
|
|
10113
10232
|
id?: string | undefined;
|
|
10114
10233
|
timestamp_seconds?: number | undefined;
|
|
@@ -10118,6 +10237,7 @@ export declare const ChannelDescription: {
|
|
|
10118
10237
|
referece?: string | undefined;
|
|
10119
10238
|
mention?: string | undefined;
|
|
10120
10239
|
reaction?: string | undefined;
|
|
10240
|
+
repliers?: string[] | undefined;
|
|
10121
10241
|
} & {
|
|
10122
10242
|
id?: string | undefined;
|
|
10123
10243
|
timestamp_seconds?: number | undefined;
|
|
@@ -10127,8 +10247,9 @@ export declare const ChannelDescription: {
|
|
|
10127
10247
|
referece?: string | undefined;
|
|
10128
10248
|
mention?: string | undefined;
|
|
10129
10249
|
reaction?: string | undefined;
|
|
10130
|
-
|
|
10131
|
-
|
|
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;
|
|
10132
10253
|
meeting_code?: string | undefined;
|
|
10133
10254
|
count_mess_unread?: number | undefined;
|
|
10134
10255
|
active?: number | undefined;
|
|
@@ -10137,15 +10258,15 @@ export declare const ChannelDescription: {
|
|
|
10137
10258
|
creator_name?: string | undefined;
|
|
10138
10259
|
create_time_seconds?: number | undefined;
|
|
10139
10260
|
update_time_seconds?: number | undefined;
|
|
10140
|
-
metadata?: (string[] & string[] & { [
|
|
10141
|
-
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;
|
|
10142
10263
|
clan_name?: string | undefined;
|
|
10143
10264
|
app_url?: string | undefined;
|
|
10144
10265
|
is_mute?: boolean | undefined;
|
|
10145
10266
|
age_restricted?: number | undefined;
|
|
10146
10267
|
topic?: string | undefined;
|
|
10147
10268
|
e2ee?: number | undefined;
|
|
10148
|
-
} & { [
|
|
10269
|
+
} & { [K_9 in Exclude<keyof I, keyof ChannelDescription>]: never; }>(base?: I | undefined): ChannelDescription;
|
|
10149
10270
|
fromPartial<I_1 extends {
|
|
10150
10271
|
clan_id?: string | undefined;
|
|
10151
10272
|
parrent_id?: string | undefined;
|
|
@@ -10167,6 +10288,7 @@ export declare const ChannelDescription: {
|
|
|
10167
10288
|
referece?: string | undefined;
|
|
10168
10289
|
mention?: string | undefined;
|
|
10169
10290
|
reaction?: string | undefined;
|
|
10291
|
+
repliers?: string[] | undefined;
|
|
10170
10292
|
} | undefined;
|
|
10171
10293
|
last_seen_message?: {
|
|
10172
10294
|
id?: string | undefined;
|
|
@@ -10177,6 +10299,7 @@ export declare const ChannelDescription: {
|
|
|
10177
10299
|
referece?: string | undefined;
|
|
10178
10300
|
mention?: string | undefined;
|
|
10179
10301
|
reaction?: string | undefined;
|
|
10302
|
+
repliers?: string[] | undefined;
|
|
10180
10303
|
} | undefined;
|
|
10181
10304
|
is_online?: boolean[] | undefined;
|
|
10182
10305
|
meeting_code?: string | undefined;
|
|
@@ -10205,8 +10328,8 @@ export declare const ChannelDescription: {
|
|
|
10205
10328
|
creator_id?: string | undefined;
|
|
10206
10329
|
channel_label?: string | undefined;
|
|
10207
10330
|
channel_private?: number | undefined;
|
|
10208
|
-
channel_avatar?: (string[] & string[] & { [
|
|
10209
|
-
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;
|
|
10210
10333
|
last_sent_message?: ({
|
|
10211
10334
|
id?: string | undefined;
|
|
10212
10335
|
timestamp_seconds?: number | undefined;
|
|
@@ -10216,6 +10339,7 @@ export declare const ChannelDescription: {
|
|
|
10216
10339
|
referece?: string | undefined;
|
|
10217
10340
|
mention?: string | undefined;
|
|
10218
10341
|
reaction?: string | undefined;
|
|
10342
|
+
repliers?: string[] | undefined;
|
|
10219
10343
|
} & {
|
|
10220
10344
|
id?: string | undefined;
|
|
10221
10345
|
timestamp_seconds?: number | undefined;
|
|
@@ -10225,7 +10349,8 @@ export declare const ChannelDescription: {
|
|
|
10225
10349
|
referece?: string | undefined;
|
|
10226
10350
|
mention?: string | undefined;
|
|
10227
10351
|
reaction?: string | undefined;
|
|
10228
|
-
|
|
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;
|
|
10229
10354
|
last_seen_message?: ({
|
|
10230
10355
|
id?: string | undefined;
|
|
10231
10356
|
timestamp_seconds?: number | undefined;
|
|
@@ -10235,6 +10360,7 @@ export declare const ChannelDescription: {
|
|
|
10235
10360
|
referece?: string | undefined;
|
|
10236
10361
|
mention?: string | undefined;
|
|
10237
10362
|
reaction?: string | undefined;
|
|
10363
|
+
repliers?: string[] | undefined;
|
|
10238
10364
|
} & {
|
|
10239
10365
|
id?: string | undefined;
|
|
10240
10366
|
timestamp_seconds?: number | undefined;
|
|
@@ -10244,8 +10370,9 @@ export declare const ChannelDescription: {
|
|
|
10244
10370
|
referece?: string | undefined;
|
|
10245
10371
|
mention?: string | undefined;
|
|
10246
10372
|
reaction?: string | undefined;
|
|
10247
|
-
|
|
10248
|
-
|
|
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;
|
|
10249
10376
|
meeting_code?: string | undefined;
|
|
10250
10377
|
count_mess_unread?: number | undefined;
|
|
10251
10378
|
active?: number | undefined;
|
|
@@ -10254,15 +10381,15 @@ export declare const ChannelDescription: {
|
|
|
10254
10381
|
creator_name?: string | undefined;
|
|
10255
10382
|
create_time_seconds?: number | undefined;
|
|
10256
10383
|
update_time_seconds?: number | undefined;
|
|
10257
|
-
metadata?: (string[] & string[] & { [
|
|
10258
|
-
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;
|
|
10259
10386
|
clan_name?: string | undefined;
|
|
10260
10387
|
app_url?: string | undefined;
|
|
10261
10388
|
is_mute?: boolean | undefined;
|
|
10262
10389
|
age_restricted?: number | undefined;
|
|
10263
10390
|
topic?: string | undefined;
|
|
10264
10391
|
e2ee?: number | undefined;
|
|
10265
|
-
} & { [
|
|
10392
|
+
} & { [K_19 in Exclude<keyof I_1, keyof ChannelDescription>]: never; }>(object: I_1): ChannelDescription;
|
|
10266
10393
|
};
|
|
10267
10394
|
export declare const ChannelDescList: {
|
|
10268
10395
|
encode(message: ChannelDescList, writer?: _m0.Writer): _m0.Writer;
|
|
@@ -10291,6 +10418,7 @@ export declare const ChannelDescList: {
|
|
|
10291
10418
|
referece?: string | undefined;
|
|
10292
10419
|
mention?: string | undefined;
|
|
10293
10420
|
reaction?: string | undefined;
|
|
10421
|
+
repliers?: string[] | undefined;
|
|
10294
10422
|
} | undefined;
|
|
10295
10423
|
last_seen_message?: {
|
|
10296
10424
|
id?: string | undefined;
|
|
@@ -10301,6 +10429,7 @@ export declare const ChannelDescList: {
|
|
|
10301
10429
|
referece?: string | undefined;
|
|
10302
10430
|
mention?: string | undefined;
|
|
10303
10431
|
reaction?: string | undefined;
|
|
10432
|
+
repliers?: string[] | undefined;
|
|
10304
10433
|
} | undefined;
|
|
10305
10434
|
is_online?: boolean[] | undefined;
|
|
10306
10435
|
meeting_code?: string | undefined;
|
|
@@ -10345,6 +10474,7 @@ export declare const ChannelDescList: {
|
|
|
10345
10474
|
referece?: string | undefined;
|
|
10346
10475
|
mention?: string | undefined;
|
|
10347
10476
|
reaction?: string | undefined;
|
|
10477
|
+
repliers?: string[] | undefined;
|
|
10348
10478
|
} | undefined;
|
|
10349
10479
|
last_seen_message?: {
|
|
10350
10480
|
id?: string | undefined;
|
|
@@ -10355,6 +10485,7 @@ export declare const ChannelDescList: {
|
|
|
10355
10485
|
referece?: string | undefined;
|
|
10356
10486
|
mention?: string | undefined;
|
|
10357
10487
|
reaction?: string | undefined;
|
|
10488
|
+
repliers?: string[] | undefined;
|
|
10358
10489
|
} | undefined;
|
|
10359
10490
|
is_online?: boolean[] | undefined;
|
|
10360
10491
|
meeting_code?: string | undefined;
|
|
@@ -10394,6 +10525,7 @@ export declare const ChannelDescList: {
|
|
|
10394
10525
|
referece?: string | undefined;
|
|
10395
10526
|
mention?: string | undefined;
|
|
10396
10527
|
reaction?: string | undefined;
|
|
10528
|
+
repliers?: string[] | undefined;
|
|
10397
10529
|
} | undefined;
|
|
10398
10530
|
last_seen_message?: {
|
|
10399
10531
|
id?: string | undefined;
|
|
@@ -10404,6 +10536,7 @@ export declare const ChannelDescList: {
|
|
|
10404
10536
|
referece?: string | undefined;
|
|
10405
10537
|
mention?: string | undefined;
|
|
10406
10538
|
reaction?: string | undefined;
|
|
10539
|
+
repliers?: string[] | undefined;
|
|
10407
10540
|
} | undefined;
|
|
10408
10541
|
is_online?: boolean[] | undefined;
|
|
10409
10542
|
meeting_code?: string | undefined;
|
|
@@ -10443,6 +10576,7 @@ export declare const ChannelDescList: {
|
|
|
10443
10576
|
referece?: string | undefined;
|
|
10444
10577
|
mention?: string | undefined;
|
|
10445
10578
|
reaction?: string | undefined;
|
|
10579
|
+
repliers?: string[] | undefined;
|
|
10446
10580
|
} & {
|
|
10447
10581
|
id?: string | undefined;
|
|
10448
10582
|
timestamp_seconds?: number | undefined;
|
|
@@ -10452,7 +10586,8 @@ export declare const ChannelDescList: {
|
|
|
10452
10586
|
referece?: string | undefined;
|
|
10453
10587
|
mention?: string | undefined;
|
|
10454
10588
|
reaction?: string | undefined;
|
|
10455
|
-
|
|
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;
|
|
10456
10591
|
last_seen_message?: ({
|
|
10457
10592
|
id?: string | undefined;
|
|
10458
10593
|
timestamp_seconds?: number | undefined;
|
|
@@ -10462,6 +10597,7 @@ export declare const ChannelDescList: {
|
|
|
10462
10597
|
referece?: string | undefined;
|
|
10463
10598
|
mention?: string | undefined;
|
|
10464
10599
|
reaction?: string | undefined;
|
|
10600
|
+
repliers?: string[] | undefined;
|
|
10465
10601
|
} & {
|
|
10466
10602
|
id?: string | undefined;
|
|
10467
10603
|
timestamp_seconds?: number | undefined;
|
|
@@ -10471,8 +10607,9 @@ export declare const ChannelDescList: {
|
|
|
10471
10607
|
referece?: string | undefined;
|
|
10472
10608
|
mention?: string | undefined;
|
|
10473
10609
|
reaction?: string | undefined;
|
|
10474
|
-
|
|
10475
|
-
|
|
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;
|
|
10476
10613
|
meeting_code?: string | undefined;
|
|
10477
10614
|
count_mess_unread?: number | undefined;
|
|
10478
10615
|
active?: number | undefined;
|
|
@@ -10481,15 +10618,15 @@ export declare const ChannelDescList: {
|
|
|
10481
10618
|
creator_name?: string | undefined;
|
|
10482
10619
|
create_time_seconds?: number | undefined;
|
|
10483
10620
|
update_time_seconds?: number | undefined;
|
|
10484
|
-
metadata?: (string[] & string[] & { [
|
|
10485
|
-
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;
|
|
10486
10623
|
clan_name?: string | undefined;
|
|
10487
10624
|
app_url?: string | undefined;
|
|
10488
10625
|
is_mute?: boolean | undefined;
|
|
10489
10626
|
age_restricted?: number | undefined;
|
|
10490
10627
|
topic?: string | undefined;
|
|
10491
10628
|
e2ee?: number | undefined;
|
|
10492
|
-
} & { [
|
|
10629
|
+
} & { [K_9 in Exclude<keyof I["channeldesc"][number], keyof ChannelDescription>]: never; })[] & { [K_10 in Exclude<keyof I["channeldesc"], keyof {
|
|
10493
10630
|
clan_id?: string | undefined;
|
|
10494
10631
|
parrent_id?: string | undefined;
|
|
10495
10632
|
channel_id?: string | undefined;
|
|
@@ -10510,6 +10647,7 @@ export declare const ChannelDescList: {
|
|
|
10510
10647
|
referece?: string | undefined;
|
|
10511
10648
|
mention?: string | undefined;
|
|
10512
10649
|
reaction?: string | undefined;
|
|
10650
|
+
repliers?: string[] | undefined;
|
|
10513
10651
|
} | undefined;
|
|
10514
10652
|
last_seen_message?: {
|
|
10515
10653
|
id?: string | undefined;
|
|
@@ -10520,6 +10658,7 @@ export declare const ChannelDescList: {
|
|
|
10520
10658
|
referece?: string | undefined;
|
|
10521
10659
|
mention?: string | undefined;
|
|
10522
10660
|
reaction?: string | undefined;
|
|
10661
|
+
repliers?: string[] | undefined;
|
|
10523
10662
|
} | undefined;
|
|
10524
10663
|
is_online?: boolean[] | undefined;
|
|
10525
10664
|
meeting_code?: string | undefined;
|
|
@@ -10542,7 +10681,7 @@ export declare const ChannelDescList: {
|
|
|
10542
10681
|
next_cursor?: string | undefined;
|
|
10543
10682
|
prev_cursor?: string | undefined;
|
|
10544
10683
|
cacheable_cursor?: string | undefined;
|
|
10545
|
-
} & { [
|
|
10684
|
+
} & { [K_11 in Exclude<keyof I, keyof ChannelDescList>]: never; }>(base?: I | undefined): ChannelDescList;
|
|
10546
10685
|
fromPartial<I_1 extends {
|
|
10547
10686
|
channeldesc?: {
|
|
10548
10687
|
clan_id?: string | undefined;
|
|
@@ -10565,6 +10704,7 @@ export declare const ChannelDescList: {
|
|
|
10565
10704
|
referece?: string | undefined;
|
|
10566
10705
|
mention?: string | undefined;
|
|
10567
10706
|
reaction?: string | undefined;
|
|
10707
|
+
repliers?: string[] | undefined;
|
|
10568
10708
|
} | undefined;
|
|
10569
10709
|
last_seen_message?: {
|
|
10570
10710
|
id?: string | undefined;
|
|
@@ -10575,6 +10715,7 @@ export declare const ChannelDescList: {
|
|
|
10575
10715
|
referece?: string | undefined;
|
|
10576
10716
|
mention?: string | undefined;
|
|
10577
10717
|
reaction?: string | undefined;
|
|
10718
|
+
repliers?: string[] | undefined;
|
|
10578
10719
|
} | undefined;
|
|
10579
10720
|
is_online?: boolean[] | undefined;
|
|
10580
10721
|
meeting_code?: string | undefined;
|
|
@@ -10619,6 +10760,7 @@ export declare const ChannelDescList: {
|
|
|
10619
10760
|
referece?: string | undefined;
|
|
10620
10761
|
mention?: string | undefined;
|
|
10621
10762
|
reaction?: string | undefined;
|
|
10763
|
+
repliers?: string[] | undefined;
|
|
10622
10764
|
} | undefined;
|
|
10623
10765
|
last_seen_message?: {
|
|
10624
10766
|
id?: string | undefined;
|
|
@@ -10629,6 +10771,7 @@ export declare const ChannelDescList: {
|
|
|
10629
10771
|
referece?: string | undefined;
|
|
10630
10772
|
mention?: string | undefined;
|
|
10631
10773
|
reaction?: string | undefined;
|
|
10774
|
+
repliers?: string[] | undefined;
|
|
10632
10775
|
} | undefined;
|
|
10633
10776
|
is_online?: boolean[] | undefined;
|
|
10634
10777
|
meeting_code?: string | undefined;
|
|
@@ -10668,6 +10811,7 @@ export declare const ChannelDescList: {
|
|
|
10668
10811
|
referece?: string | undefined;
|
|
10669
10812
|
mention?: string | undefined;
|
|
10670
10813
|
reaction?: string | undefined;
|
|
10814
|
+
repliers?: string[] | undefined;
|
|
10671
10815
|
} | undefined;
|
|
10672
10816
|
last_seen_message?: {
|
|
10673
10817
|
id?: string | undefined;
|
|
@@ -10678,6 +10822,7 @@ export declare const ChannelDescList: {
|
|
|
10678
10822
|
referece?: string | undefined;
|
|
10679
10823
|
mention?: string | undefined;
|
|
10680
10824
|
reaction?: string | undefined;
|
|
10825
|
+
repliers?: string[] | undefined;
|
|
10681
10826
|
} | undefined;
|
|
10682
10827
|
is_online?: boolean[] | undefined;
|
|
10683
10828
|
meeting_code?: string | undefined;
|
|
@@ -10706,8 +10851,8 @@ export declare const ChannelDescList: {
|
|
|
10706
10851
|
creator_id?: string | undefined;
|
|
10707
10852
|
channel_label?: string | undefined;
|
|
10708
10853
|
channel_private?: number | undefined;
|
|
10709
|
-
channel_avatar?: (string[] & string[] & { [
|
|
10710
|
-
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;
|
|
10711
10856
|
last_sent_message?: ({
|
|
10712
10857
|
id?: string | undefined;
|
|
10713
10858
|
timestamp_seconds?: number | undefined;
|
|
@@ -10717,6 +10862,7 @@ export declare const ChannelDescList: {
|
|
|
10717
10862
|
referece?: string | undefined;
|
|
10718
10863
|
mention?: string | undefined;
|
|
10719
10864
|
reaction?: string | undefined;
|
|
10865
|
+
repliers?: string[] | undefined;
|
|
10720
10866
|
} & {
|
|
10721
10867
|
id?: string | undefined;
|
|
10722
10868
|
timestamp_seconds?: number | undefined;
|
|
@@ -10726,7 +10872,8 @@ export declare const ChannelDescList: {
|
|
|
10726
10872
|
referece?: string | undefined;
|
|
10727
10873
|
mention?: string | undefined;
|
|
10728
10874
|
reaction?: string | undefined;
|
|
10729
|
-
|
|
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;
|
|
10730
10877
|
last_seen_message?: ({
|
|
10731
10878
|
id?: string | undefined;
|
|
10732
10879
|
timestamp_seconds?: number | undefined;
|
|
@@ -10736,6 +10883,7 @@ export declare const ChannelDescList: {
|
|
|
10736
10883
|
referece?: string | undefined;
|
|
10737
10884
|
mention?: string | undefined;
|
|
10738
10885
|
reaction?: string | undefined;
|
|
10886
|
+
repliers?: string[] | undefined;
|
|
10739
10887
|
} & {
|
|
10740
10888
|
id?: string | undefined;
|
|
10741
10889
|
timestamp_seconds?: number | undefined;
|
|
@@ -10745,8 +10893,9 @@ export declare const ChannelDescList: {
|
|
|
10745
10893
|
referece?: string | undefined;
|
|
10746
10894
|
mention?: string | undefined;
|
|
10747
10895
|
reaction?: string | undefined;
|
|
10748
|
-
|
|
10749
|
-
|
|
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;
|
|
10750
10899
|
meeting_code?: string | undefined;
|
|
10751
10900
|
count_mess_unread?: number | undefined;
|
|
10752
10901
|
active?: number | undefined;
|
|
@@ -10755,15 +10904,15 @@ export declare const ChannelDescList: {
|
|
|
10755
10904
|
creator_name?: string | undefined;
|
|
10756
10905
|
create_time_seconds?: number | undefined;
|
|
10757
10906
|
update_time_seconds?: number | undefined;
|
|
10758
|
-
metadata?: (string[] & string[] & { [
|
|
10759
|
-
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;
|
|
10760
10909
|
clan_name?: string | undefined;
|
|
10761
10910
|
app_url?: string | undefined;
|
|
10762
10911
|
is_mute?: boolean | undefined;
|
|
10763
10912
|
age_restricted?: number | undefined;
|
|
10764
10913
|
topic?: string | undefined;
|
|
10765
10914
|
e2ee?: number | undefined;
|
|
10766
|
-
} & { [
|
|
10915
|
+
} & { [K_21 in Exclude<keyof I_1["channeldesc"][number], keyof ChannelDescription>]: never; })[] & { [K_22 in Exclude<keyof I_1["channeldesc"], keyof {
|
|
10767
10916
|
clan_id?: string | undefined;
|
|
10768
10917
|
parrent_id?: string | undefined;
|
|
10769
10918
|
channel_id?: string | undefined;
|
|
@@ -10784,6 +10933,7 @@ export declare const ChannelDescList: {
|
|
|
10784
10933
|
referece?: string | undefined;
|
|
10785
10934
|
mention?: string | undefined;
|
|
10786
10935
|
reaction?: string | undefined;
|
|
10936
|
+
repliers?: string[] | undefined;
|
|
10787
10937
|
} | undefined;
|
|
10788
10938
|
last_seen_message?: {
|
|
10789
10939
|
id?: string | undefined;
|
|
@@ -10794,6 +10944,7 @@ export declare const ChannelDescList: {
|
|
|
10794
10944
|
referece?: string | undefined;
|
|
10795
10945
|
mention?: string | undefined;
|
|
10796
10946
|
reaction?: string | undefined;
|
|
10947
|
+
repliers?: string[] | undefined;
|
|
10797
10948
|
} | undefined;
|
|
10798
10949
|
is_online?: boolean[] | undefined;
|
|
10799
10950
|
meeting_code?: string | undefined;
|
|
@@ -10816,7 +10967,7 @@ export declare const ChannelDescList: {
|
|
|
10816
10967
|
next_cursor?: string | undefined;
|
|
10817
10968
|
prev_cursor?: string | undefined;
|
|
10818
10969
|
cacheable_cursor?: string | undefined;
|
|
10819
|
-
} & { [
|
|
10970
|
+
} & { [K_23 in Exclude<keyof I_1, keyof ChannelDescList>]: never; }>(object: I_1): ChannelDescList;
|
|
10820
10971
|
};
|
|
10821
10972
|
export declare const ListThreadRequest: {
|
|
10822
10973
|
encode(message: ListThreadRequest, writer?: _m0.Writer): _m0.Writer;
|
|
@@ -11428,13 +11579,16 @@ export declare const EventManagement: {
|
|
|
11428
11579
|
start_event?: number | undefined;
|
|
11429
11580
|
creator_id?: string | undefined;
|
|
11430
11581
|
clan_id?: string | undefined;
|
|
11431
|
-
|
|
11582
|
+
channel_voice_id?: string | undefined;
|
|
11432
11583
|
address?: string | undefined;
|
|
11433
11584
|
start_time?: Date | undefined;
|
|
11434
11585
|
end_time?: Date | undefined;
|
|
11435
11586
|
user_ids?: string[] | undefined;
|
|
11436
11587
|
create_time?: Date | undefined;
|
|
11437
11588
|
max_permission?: number | undefined;
|
|
11589
|
+
channel_id?: string | undefined;
|
|
11590
|
+
event_status?: number | undefined;
|
|
11591
|
+
repeat_type?: number | undefined;
|
|
11438
11592
|
} & {
|
|
11439
11593
|
id?: string | undefined;
|
|
11440
11594
|
title?: string | undefined;
|
|
@@ -11444,13 +11598,16 @@ export declare const EventManagement: {
|
|
|
11444
11598
|
start_event?: number | undefined;
|
|
11445
11599
|
creator_id?: string | undefined;
|
|
11446
11600
|
clan_id?: string | undefined;
|
|
11447
|
-
|
|
11601
|
+
channel_voice_id?: string | undefined;
|
|
11448
11602
|
address?: string | undefined;
|
|
11449
11603
|
start_time?: Date | undefined;
|
|
11450
11604
|
end_time?: Date | undefined;
|
|
11451
11605
|
user_ids?: (string[] & string[] & { [K in Exclude<keyof I["user_ids"], keyof string[]>]: never; }) | undefined;
|
|
11452
11606
|
create_time?: Date | undefined;
|
|
11453
11607
|
max_permission?: number | undefined;
|
|
11608
|
+
channel_id?: string | undefined;
|
|
11609
|
+
event_status?: number | undefined;
|
|
11610
|
+
repeat_type?: number | undefined;
|
|
11454
11611
|
} & { [K_1 in Exclude<keyof I, keyof EventManagement>]: never; }>(base?: I | undefined): EventManagement;
|
|
11455
11612
|
fromPartial<I_1 extends {
|
|
11456
11613
|
id?: string | undefined;
|
|
@@ -11461,13 +11618,16 @@ export declare const EventManagement: {
|
|
|
11461
11618
|
start_event?: number | undefined;
|
|
11462
11619
|
creator_id?: string | undefined;
|
|
11463
11620
|
clan_id?: string | undefined;
|
|
11464
|
-
|
|
11621
|
+
channel_voice_id?: string | undefined;
|
|
11465
11622
|
address?: string | undefined;
|
|
11466
11623
|
start_time?: Date | undefined;
|
|
11467
11624
|
end_time?: Date | undefined;
|
|
11468
11625
|
user_ids?: string[] | undefined;
|
|
11469
11626
|
create_time?: Date | undefined;
|
|
11470
11627
|
max_permission?: number | undefined;
|
|
11628
|
+
channel_id?: string | undefined;
|
|
11629
|
+
event_status?: number | undefined;
|
|
11630
|
+
repeat_type?: number | undefined;
|
|
11471
11631
|
} & {
|
|
11472
11632
|
id?: string | undefined;
|
|
11473
11633
|
title?: string | undefined;
|
|
@@ -11477,13 +11637,16 @@ export declare const EventManagement: {
|
|
|
11477
11637
|
start_event?: number | undefined;
|
|
11478
11638
|
creator_id?: string | undefined;
|
|
11479
11639
|
clan_id?: string | undefined;
|
|
11480
|
-
|
|
11640
|
+
channel_voice_id?: string | undefined;
|
|
11481
11641
|
address?: string | undefined;
|
|
11482
11642
|
start_time?: Date | undefined;
|
|
11483
11643
|
end_time?: Date | undefined;
|
|
11484
11644
|
user_ids?: (string[] & string[] & { [K_2 in Exclude<keyof I_1["user_ids"], keyof string[]>]: never; }) | undefined;
|
|
11485
11645
|
create_time?: Date | undefined;
|
|
11486
11646
|
max_permission?: number | undefined;
|
|
11647
|
+
channel_id?: string | undefined;
|
|
11648
|
+
event_status?: number | undefined;
|
|
11649
|
+
repeat_type?: number | undefined;
|
|
11487
11650
|
} & { [K_3 in Exclude<keyof I_1, keyof EventManagement>]: never; }>(object: I_1): EventManagement;
|
|
11488
11651
|
};
|
|
11489
11652
|
export declare const Permission: {
|
|
@@ -12839,13 +13002,16 @@ export declare const EventList: {
|
|
|
12839
13002
|
start_event?: number | undefined;
|
|
12840
13003
|
creator_id?: string | undefined;
|
|
12841
13004
|
clan_id?: string | undefined;
|
|
12842
|
-
|
|
13005
|
+
channel_voice_id?: string | undefined;
|
|
12843
13006
|
address?: string | undefined;
|
|
12844
13007
|
start_time?: Date | undefined;
|
|
12845
13008
|
end_time?: Date | undefined;
|
|
12846
13009
|
user_ids?: string[] | undefined;
|
|
12847
13010
|
create_time?: Date | undefined;
|
|
12848
13011
|
max_permission?: number | undefined;
|
|
13012
|
+
channel_id?: string | undefined;
|
|
13013
|
+
event_status?: number | undefined;
|
|
13014
|
+
repeat_type?: number | undefined;
|
|
12849
13015
|
}[] | undefined;
|
|
12850
13016
|
} & {
|
|
12851
13017
|
events?: ({
|
|
@@ -12857,13 +13023,16 @@ export declare const EventList: {
|
|
|
12857
13023
|
start_event?: number | undefined;
|
|
12858
13024
|
creator_id?: string | undefined;
|
|
12859
13025
|
clan_id?: string | undefined;
|
|
12860
|
-
|
|
13026
|
+
channel_voice_id?: string | undefined;
|
|
12861
13027
|
address?: string | undefined;
|
|
12862
13028
|
start_time?: Date | undefined;
|
|
12863
13029
|
end_time?: Date | undefined;
|
|
12864
13030
|
user_ids?: string[] | undefined;
|
|
12865
13031
|
create_time?: Date | undefined;
|
|
12866
13032
|
max_permission?: number | undefined;
|
|
13033
|
+
channel_id?: string | undefined;
|
|
13034
|
+
event_status?: number | undefined;
|
|
13035
|
+
repeat_type?: number | undefined;
|
|
12867
13036
|
}[] & ({
|
|
12868
13037
|
id?: string | undefined;
|
|
12869
13038
|
title?: string | undefined;
|
|
@@ -12873,13 +13042,16 @@ export declare const EventList: {
|
|
|
12873
13042
|
start_event?: number | undefined;
|
|
12874
13043
|
creator_id?: string | undefined;
|
|
12875
13044
|
clan_id?: string | undefined;
|
|
12876
|
-
|
|
13045
|
+
channel_voice_id?: string | undefined;
|
|
12877
13046
|
address?: string | undefined;
|
|
12878
13047
|
start_time?: Date | undefined;
|
|
12879
13048
|
end_time?: Date | undefined;
|
|
12880
13049
|
user_ids?: string[] | undefined;
|
|
12881
13050
|
create_time?: Date | undefined;
|
|
12882
13051
|
max_permission?: number | undefined;
|
|
13052
|
+
channel_id?: string | undefined;
|
|
13053
|
+
event_status?: number | undefined;
|
|
13054
|
+
repeat_type?: number | undefined;
|
|
12883
13055
|
} & {
|
|
12884
13056
|
id?: string | undefined;
|
|
12885
13057
|
title?: string | undefined;
|
|
@@ -12889,13 +13061,16 @@ export declare const EventList: {
|
|
|
12889
13061
|
start_event?: number | undefined;
|
|
12890
13062
|
creator_id?: string | undefined;
|
|
12891
13063
|
clan_id?: string | undefined;
|
|
12892
|
-
|
|
13064
|
+
channel_voice_id?: string | undefined;
|
|
12893
13065
|
address?: string | undefined;
|
|
12894
13066
|
start_time?: Date | undefined;
|
|
12895
13067
|
end_time?: Date | undefined;
|
|
12896
13068
|
user_ids?: (string[] & string[] & { [K in Exclude<keyof I["events"][number]["user_ids"], keyof string[]>]: never; }) | undefined;
|
|
12897
13069
|
create_time?: Date | undefined;
|
|
12898
13070
|
max_permission?: number | undefined;
|
|
13071
|
+
channel_id?: string | undefined;
|
|
13072
|
+
event_status?: number | undefined;
|
|
13073
|
+
repeat_type?: number | undefined;
|
|
12899
13074
|
} & { [K_1 in Exclude<keyof I["events"][number], keyof EventManagement>]: never; })[] & { [K_2 in Exclude<keyof I["events"], keyof {
|
|
12900
13075
|
id?: string | undefined;
|
|
12901
13076
|
title?: string | undefined;
|
|
@@ -12905,13 +13080,16 @@ export declare const EventList: {
|
|
|
12905
13080
|
start_event?: number | undefined;
|
|
12906
13081
|
creator_id?: string | undefined;
|
|
12907
13082
|
clan_id?: string | undefined;
|
|
12908
|
-
|
|
13083
|
+
channel_voice_id?: string | undefined;
|
|
12909
13084
|
address?: string | undefined;
|
|
12910
13085
|
start_time?: Date | undefined;
|
|
12911
13086
|
end_time?: Date | undefined;
|
|
12912
13087
|
user_ids?: string[] | undefined;
|
|
12913
13088
|
create_time?: Date | undefined;
|
|
12914
13089
|
max_permission?: number | undefined;
|
|
13090
|
+
channel_id?: string | undefined;
|
|
13091
|
+
event_status?: number | undefined;
|
|
13092
|
+
repeat_type?: number | undefined;
|
|
12915
13093
|
}[]>]: never; }) | undefined;
|
|
12916
13094
|
} & { [K_3 in Exclude<keyof I, "events">]: never; }>(base?: I | undefined): EventList;
|
|
12917
13095
|
fromPartial<I_1 extends {
|
|
@@ -12924,13 +13102,16 @@ export declare const EventList: {
|
|
|
12924
13102
|
start_event?: number | undefined;
|
|
12925
13103
|
creator_id?: string | undefined;
|
|
12926
13104
|
clan_id?: string | undefined;
|
|
12927
|
-
|
|
13105
|
+
channel_voice_id?: string | undefined;
|
|
12928
13106
|
address?: string | undefined;
|
|
12929
13107
|
start_time?: Date | undefined;
|
|
12930
13108
|
end_time?: Date | undefined;
|
|
12931
13109
|
user_ids?: string[] | undefined;
|
|
12932
13110
|
create_time?: Date | undefined;
|
|
12933
13111
|
max_permission?: number | undefined;
|
|
13112
|
+
channel_id?: string | undefined;
|
|
13113
|
+
event_status?: number | undefined;
|
|
13114
|
+
repeat_type?: number | undefined;
|
|
12934
13115
|
}[] | undefined;
|
|
12935
13116
|
} & {
|
|
12936
13117
|
events?: ({
|
|
@@ -12942,13 +13123,16 @@ export declare const EventList: {
|
|
|
12942
13123
|
start_event?: number | undefined;
|
|
12943
13124
|
creator_id?: string | undefined;
|
|
12944
13125
|
clan_id?: string | undefined;
|
|
12945
|
-
|
|
13126
|
+
channel_voice_id?: string | undefined;
|
|
12946
13127
|
address?: string | undefined;
|
|
12947
13128
|
start_time?: Date | undefined;
|
|
12948
13129
|
end_time?: Date | undefined;
|
|
12949
13130
|
user_ids?: string[] | undefined;
|
|
12950
13131
|
create_time?: Date | undefined;
|
|
12951
13132
|
max_permission?: number | undefined;
|
|
13133
|
+
channel_id?: string | undefined;
|
|
13134
|
+
event_status?: number | undefined;
|
|
13135
|
+
repeat_type?: number | undefined;
|
|
12952
13136
|
}[] & ({
|
|
12953
13137
|
id?: string | undefined;
|
|
12954
13138
|
title?: string | undefined;
|
|
@@ -12958,13 +13142,16 @@ export declare const EventList: {
|
|
|
12958
13142
|
start_event?: number | undefined;
|
|
12959
13143
|
creator_id?: string | undefined;
|
|
12960
13144
|
clan_id?: string | undefined;
|
|
12961
|
-
|
|
13145
|
+
channel_voice_id?: string | undefined;
|
|
12962
13146
|
address?: string | undefined;
|
|
12963
13147
|
start_time?: Date | undefined;
|
|
12964
13148
|
end_time?: Date | undefined;
|
|
12965
13149
|
user_ids?: string[] | undefined;
|
|
12966
13150
|
create_time?: Date | undefined;
|
|
12967
13151
|
max_permission?: number | undefined;
|
|
13152
|
+
channel_id?: string | undefined;
|
|
13153
|
+
event_status?: number | undefined;
|
|
13154
|
+
repeat_type?: number | undefined;
|
|
12968
13155
|
} & {
|
|
12969
13156
|
id?: string | undefined;
|
|
12970
13157
|
title?: string | undefined;
|
|
@@ -12974,13 +13161,16 @@ export declare const EventList: {
|
|
|
12974
13161
|
start_event?: number | undefined;
|
|
12975
13162
|
creator_id?: string | undefined;
|
|
12976
13163
|
clan_id?: string | undefined;
|
|
12977
|
-
|
|
13164
|
+
channel_voice_id?: string | undefined;
|
|
12978
13165
|
address?: string | undefined;
|
|
12979
13166
|
start_time?: Date | undefined;
|
|
12980
13167
|
end_time?: Date | undefined;
|
|
12981
13168
|
user_ids?: (string[] & string[] & { [K_4 in Exclude<keyof I_1["events"][number]["user_ids"], keyof string[]>]: never; }) | undefined;
|
|
12982
13169
|
create_time?: Date | undefined;
|
|
12983
13170
|
max_permission?: number | undefined;
|
|
13171
|
+
channel_id?: string | undefined;
|
|
13172
|
+
event_status?: number | undefined;
|
|
13173
|
+
repeat_type?: number | undefined;
|
|
12984
13174
|
} & { [K_5 in Exclude<keyof I_1["events"][number], keyof EventManagement>]: never; })[] & { [K_6 in Exclude<keyof I_1["events"], keyof {
|
|
12985
13175
|
id?: string | undefined;
|
|
12986
13176
|
title?: string | undefined;
|
|
@@ -12990,13 +13180,16 @@ export declare const EventList: {
|
|
|
12990
13180
|
start_event?: number | undefined;
|
|
12991
13181
|
creator_id?: string | undefined;
|
|
12992
13182
|
clan_id?: string | undefined;
|
|
12993
|
-
|
|
13183
|
+
channel_voice_id?: string | undefined;
|
|
12994
13184
|
address?: string | undefined;
|
|
12995
13185
|
start_time?: Date | undefined;
|
|
12996
13186
|
end_time?: Date | undefined;
|
|
12997
13187
|
user_ids?: string[] | undefined;
|
|
12998
13188
|
create_time?: Date | undefined;
|
|
12999
13189
|
max_permission?: number | undefined;
|
|
13190
|
+
channel_id?: string | undefined;
|
|
13191
|
+
event_status?: number | undefined;
|
|
13192
|
+
repeat_type?: number | undefined;
|
|
13000
13193
|
}[]>]: never; }) | undefined;
|
|
13001
13194
|
} & { [K_7 in Exclude<keyof I_1, "events">]: never; }>(object: I_1): EventList;
|
|
13002
13195
|
};
|
|
@@ -13472,46 +13665,62 @@ export declare const CreateEventRequest: {
|
|
|
13472
13665
|
logo?: string | undefined;
|
|
13473
13666
|
description?: string | undefined;
|
|
13474
13667
|
clan_id?: string | undefined;
|
|
13475
|
-
|
|
13668
|
+
channel_voice_id?: string | undefined;
|
|
13476
13669
|
address?: string | undefined;
|
|
13477
13670
|
start_time?: Date | undefined;
|
|
13478
13671
|
end_time?: Date | undefined;
|
|
13479
13672
|
event_id?: string | undefined;
|
|
13480
|
-
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;
|
|
13481
13678
|
} & {
|
|
13482
13679
|
title?: string | undefined;
|
|
13483
13680
|
logo?: string | undefined;
|
|
13484
13681
|
description?: string | undefined;
|
|
13485
13682
|
clan_id?: string | undefined;
|
|
13486
|
-
|
|
13683
|
+
channel_voice_id?: string | undefined;
|
|
13487
13684
|
address?: string | undefined;
|
|
13488
13685
|
start_time?: Date | undefined;
|
|
13489
13686
|
end_time?: Date | undefined;
|
|
13490
13687
|
event_id?: string | undefined;
|
|
13491
|
-
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;
|
|
13492
13693
|
} & { [K in Exclude<keyof I, keyof CreateEventRequest>]: never; }>(base?: I | undefined): CreateEventRequest;
|
|
13493
13694
|
fromPartial<I_1 extends {
|
|
13494
13695
|
title?: string | undefined;
|
|
13495
13696
|
logo?: string | undefined;
|
|
13496
13697
|
description?: string | undefined;
|
|
13497
13698
|
clan_id?: string | undefined;
|
|
13498
|
-
|
|
13699
|
+
channel_voice_id?: string | undefined;
|
|
13499
13700
|
address?: string | undefined;
|
|
13500
13701
|
start_time?: Date | undefined;
|
|
13501
13702
|
end_time?: Date | undefined;
|
|
13502
13703
|
event_id?: string | undefined;
|
|
13503
|
-
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;
|
|
13504
13709
|
} & {
|
|
13505
13710
|
title?: string | undefined;
|
|
13506
13711
|
logo?: string | undefined;
|
|
13507
13712
|
description?: string | undefined;
|
|
13508
13713
|
clan_id?: string | undefined;
|
|
13509
|
-
|
|
13714
|
+
channel_voice_id?: string | undefined;
|
|
13510
13715
|
address?: string | undefined;
|
|
13511
13716
|
start_time?: Date | undefined;
|
|
13512
13717
|
end_time?: Date | undefined;
|
|
13513
13718
|
event_id?: string | undefined;
|
|
13514
|
-
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;
|
|
13515
13724
|
} & { [K_1 in Exclude<keyof I_1, keyof CreateEventRequest>]: never; }>(object: I_1): CreateEventRequest;
|
|
13516
13725
|
};
|
|
13517
13726
|
export declare const UpdateEventRequest: {
|
|
@@ -13529,6 +13738,10 @@ export declare const UpdateEventRequest: {
|
|
|
13529
13738
|
start_time?: Date | undefined;
|
|
13530
13739
|
end_time?: Date | undefined;
|
|
13531
13740
|
clan_id?: string | undefined;
|
|
13741
|
+
creator_id?: string | undefined;
|
|
13742
|
+
channel_voice_id?: string | undefined;
|
|
13743
|
+
channel_id_old?: string | undefined;
|
|
13744
|
+
repeat_type?: number | undefined;
|
|
13532
13745
|
} & {
|
|
13533
13746
|
title?: string | undefined;
|
|
13534
13747
|
logo?: string | undefined;
|
|
@@ -13539,6 +13752,10 @@ export declare const UpdateEventRequest: {
|
|
|
13539
13752
|
start_time?: Date | undefined;
|
|
13540
13753
|
end_time?: Date | undefined;
|
|
13541
13754
|
clan_id?: string | undefined;
|
|
13755
|
+
creator_id?: string | undefined;
|
|
13756
|
+
channel_voice_id?: string | undefined;
|
|
13757
|
+
channel_id_old?: string | undefined;
|
|
13758
|
+
repeat_type?: number | undefined;
|
|
13542
13759
|
} & { [K in Exclude<keyof I, keyof UpdateEventRequest>]: never; }>(base?: I | undefined): UpdateEventRequest;
|
|
13543
13760
|
fromPartial<I_1 extends {
|
|
13544
13761
|
title?: string | undefined;
|
|
@@ -13550,6 +13767,10 @@ export declare const UpdateEventRequest: {
|
|
|
13550
13767
|
start_time?: Date | undefined;
|
|
13551
13768
|
end_time?: Date | undefined;
|
|
13552
13769
|
clan_id?: string | undefined;
|
|
13770
|
+
creator_id?: string | undefined;
|
|
13771
|
+
channel_voice_id?: string | undefined;
|
|
13772
|
+
channel_id_old?: string | undefined;
|
|
13773
|
+
repeat_type?: number | undefined;
|
|
13553
13774
|
} & {
|
|
13554
13775
|
title?: string | undefined;
|
|
13555
13776
|
logo?: string | undefined;
|
|
@@ -13560,6 +13781,10 @@ export declare const UpdateEventRequest: {
|
|
|
13560
13781
|
start_time?: Date | undefined;
|
|
13561
13782
|
end_time?: Date | undefined;
|
|
13562
13783
|
clan_id?: string | undefined;
|
|
13784
|
+
creator_id?: string | undefined;
|
|
13785
|
+
channel_voice_id?: string | undefined;
|
|
13786
|
+
channel_id_old?: string | undefined;
|
|
13787
|
+
repeat_type?: number | undefined;
|
|
13563
13788
|
} & { [K_1 in Exclude<keyof I_1, keyof UpdateEventRequest>]: never; }>(object: I_1): UpdateEventRequest;
|
|
13564
13789
|
};
|
|
13565
13790
|
export declare const DeleteRoleRequest: {
|
|
@@ -13571,19 +13796,23 @@ export declare const DeleteRoleRequest: {
|
|
|
13571
13796
|
role_id?: string | undefined;
|
|
13572
13797
|
channel_id?: string | undefined;
|
|
13573
13798
|
clan_id?: string | undefined;
|
|
13799
|
+
role_label?: string | undefined;
|
|
13574
13800
|
} & {
|
|
13575
13801
|
role_id?: string | undefined;
|
|
13576
13802
|
channel_id?: string | undefined;
|
|
13577
13803
|
clan_id?: string | undefined;
|
|
13804
|
+
role_label?: string | undefined;
|
|
13578
13805
|
} & { [K in Exclude<keyof I, keyof DeleteRoleRequest>]: never; }>(base?: I | undefined): DeleteRoleRequest;
|
|
13579
13806
|
fromPartial<I_1 extends {
|
|
13580
13807
|
role_id?: string | undefined;
|
|
13581
13808
|
channel_id?: string | undefined;
|
|
13582
13809
|
clan_id?: string | undefined;
|
|
13810
|
+
role_label?: string | undefined;
|
|
13583
13811
|
} & {
|
|
13584
13812
|
role_id?: string | undefined;
|
|
13585
13813
|
channel_id?: string | undefined;
|
|
13586
13814
|
clan_id?: string | undefined;
|
|
13815
|
+
role_label?: string | undefined;
|
|
13587
13816
|
} & { [K_1 in Exclude<keyof I_1, keyof DeleteRoleRequest>]: never; }>(object: I_1): DeleteRoleRequest;
|
|
13588
13817
|
};
|
|
13589
13818
|
export declare const DeleteEventRequest: {
|
|
@@ -13594,16 +13823,28 @@ export declare const DeleteEventRequest: {
|
|
|
13594
13823
|
create<I extends {
|
|
13595
13824
|
event_id?: string | undefined;
|
|
13596
13825
|
clan_id?: string | undefined;
|
|
13826
|
+
creator_id?: string | undefined;
|
|
13827
|
+
event_label?: string | undefined;
|
|
13828
|
+
channel_id?: string | undefined;
|
|
13597
13829
|
} & {
|
|
13598
13830
|
event_id?: string | undefined;
|
|
13599
13831
|
clan_id?: string | undefined;
|
|
13832
|
+
creator_id?: string | undefined;
|
|
13833
|
+
event_label?: string | undefined;
|
|
13834
|
+
channel_id?: string | undefined;
|
|
13600
13835
|
} & { [K in Exclude<keyof I, keyof DeleteEventRequest>]: never; }>(base?: I | undefined): DeleteEventRequest;
|
|
13601
13836
|
fromPartial<I_1 extends {
|
|
13602
13837
|
event_id?: string | undefined;
|
|
13603
13838
|
clan_id?: string | undefined;
|
|
13839
|
+
creator_id?: string | undefined;
|
|
13840
|
+
event_label?: string | undefined;
|
|
13841
|
+
channel_id?: string | undefined;
|
|
13604
13842
|
} & {
|
|
13605
13843
|
event_id?: string | undefined;
|
|
13606
13844
|
clan_id?: string | undefined;
|
|
13845
|
+
creator_id?: string | undefined;
|
|
13846
|
+
event_label?: string | undefined;
|
|
13847
|
+
channel_id?: string | undefined;
|
|
13607
13848
|
} & { [K_1 in Exclude<keyof I_1, keyof DeleteEventRequest>]: never; }>(object: I_1): DeleteEventRequest;
|
|
13608
13849
|
};
|
|
13609
13850
|
export declare const UpdateRoleRequest: {
|
|
@@ -13685,6 +13926,7 @@ export declare const UpdateRoleChannelRequest: {
|
|
|
13685
13926
|
max_permission_id?: string | undefined;
|
|
13686
13927
|
channel_id?: string | undefined;
|
|
13687
13928
|
user_id?: string | undefined;
|
|
13929
|
+
role_label?: string | undefined;
|
|
13688
13930
|
} & {
|
|
13689
13931
|
role_id?: string | undefined;
|
|
13690
13932
|
permission_update?: ({
|
|
@@ -13707,6 +13949,7 @@ export declare const UpdateRoleChannelRequest: {
|
|
|
13707
13949
|
max_permission_id?: string | undefined;
|
|
13708
13950
|
channel_id?: string | undefined;
|
|
13709
13951
|
user_id?: string | undefined;
|
|
13952
|
+
role_label?: string | undefined;
|
|
13710
13953
|
} & { [K_2 in Exclude<keyof I, keyof UpdateRoleChannelRequest>]: never; }>(base?: I | undefined): UpdateRoleChannelRequest;
|
|
13711
13954
|
fromPartial<I_1 extends {
|
|
13712
13955
|
role_id?: string | undefined;
|
|
@@ -13718,6 +13961,7 @@ export declare const UpdateRoleChannelRequest: {
|
|
|
13718
13961
|
max_permission_id?: string | undefined;
|
|
13719
13962
|
channel_id?: string | undefined;
|
|
13720
13963
|
user_id?: string | undefined;
|
|
13964
|
+
role_label?: string | undefined;
|
|
13721
13965
|
} & {
|
|
13722
13966
|
role_id?: string | undefined;
|
|
13723
13967
|
permission_update?: ({
|
|
@@ -13740,6 +13984,7 @@ export declare const UpdateRoleChannelRequest: {
|
|
|
13740
13984
|
max_permission_id?: string | undefined;
|
|
13741
13985
|
channel_id?: string | undefined;
|
|
13742
13986
|
user_id?: string | undefined;
|
|
13987
|
+
role_label?: string | undefined;
|
|
13743
13988
|
} & { [K_5 in Exclude<keyof I_1, keyof UpdateRoleChannelRequest>]: never; }>(object: I_1): UpdateRoleChannelRequest;
|
|
13744
13989
|
};
|
|
13745
13990
|
export declare const PermissionUpdate: {
|
|
@@ -14918,16 +15163,20 @@ export declare const ClanEmojiDeleteRequest: {
|
|
|
14918
15163
|
create<I extends {
|
|
14919
15164
|
id?: string | undefined;
|
|
14920
15165
|
clan_id?: string | undefined;
|
|
15166
|
+
emoji_label?: string | undefined;
|
|
14921
15167
|
} & {
|
|
14922
15168
|
id?: string | undefined;
|
|
14923
15169
|
clan_id?: string | undefined;
|
|
15170
|
+
emoji_label?: string | undefined;
|
|
14924
15171
|
} & { [K in Exclude<keyof I, keyof ClanEmojiDeleteRequest>]: never; }>(base?: I | undefined): ClanEmojiDeleteRequest;
|
|
14925
15172
|
fromPartial<I_1 extends {
|
|
14926
15173
|
id?: string | undefined;
|
|
14927
15174
|
clan_id?: string | undefined;
|
|
15175
|
+
emoji_label?: string | undefined;
|
|
14928
15176
|
} & {
|
|
14929
15177
|
id?: string | undefined;
|
|
14930
15178
|
clan_id?: string | undefined;
|
|
15179
|
+
emoji_label?: string | undefined;
|
|
14931
15180
|
} & { [K_1 in Exclude<keyof I_1, keyof ClanEmojiDeleteRequest>]: never; }>(object: I_1): ClanEmojiDeleteRequest;
|
|
14932
15181
|
};
|
|
14933
15182
|
export declare const ClanEmojiUpdateRequest: {
|
|
@@ -15426,16 +15675,20 @@ export declare const ClanStickerDeleteRequest: {
|
|
|
15426
15675
|
create<I extends {
|
|
15427
15676
|
id?: string | undefined;
|
|
15428
15677
|
clan_id?: string | undefined;
|
|
15678
|
+
sticker_label?: string | undefined;
|
|
15429
15679
|
} & {
|
|
15430
15680
|
id?: string | undefined;
|
|
15431
15681
|
clan_id?: string | undefined;
|
|
15682
|
+
sticker_label?: string | undefined;
|
|
15432
15683
|
} & { [K in Exclude<keyof I, keyof ClanStickerDeleteRequest>]: never; }>(base?: I | undefined): ClanStickerDeleteRequest;
|
|
15433
15684
|
fromPartial<I_1 extends {
|
|
15434
15685
|
id?: string | undefined;
|
|
15435
15686
|
clan_id?: string | undefined;
|
|
15687
|
+
sticker_label?: string | undefined;
|
|
15436
15688
|
} & {
|
|
15437
15689
|
id?: string | undefined;
|
|
15438
15690
|
clan_id?: string | undefined;
|
|
15691
|
+
sticker_label?: string | undefined;
|
|
15439
15692
|
} & { [K_1 in Exclude<keyof I_1, keyof ClanStickerDeleteRequest>]: never; }>(object: I_1): ClanStickerDeleteRequest;
|
|
15440
15693
|
};
|
|
15441
15694
|
export declare const ChangeChannelCategoryRequest: {
|
|
@@ -15949,6 +16202,7 @@ export declare const SystemMessage: {
|
|
|
15949
16202
|
welcome_sticker?: string | undefined;
|
|
15950
16203
|
boost_message?: string | undefined;
|
|
15951
16204
|
setup_tips?: string | undefined;
|
|
16205
|
+
hide_audit_log?: string | undefined;
|
|
15952
16206
|
} & {
|
|
15953
16207
|
id?: string | undefined;
|
|
15954
16208
|
clan_id?: string | undefined;
|
|
@@ -15957,6 +16211,7 @@ export declare const SystemMessage: {
|
|
|
15957
16211
|
welcome_sticker?: string | undefined;
|
|
15958
16212
|
boost_message?: string | undefined;
|
|
15959
16213
|
setup_tips?: string | undefined;
|
|
16214
|
+
hide_audit_log?: string | undefined;
|
|
15960
16215
|
} & { [K in Exclude<keyof I, keyof SystemMessage>]: never; }>(base?: I | undefined): SystemMessage;
|
|
15961
16216
|
fromPartial<I_1 extends {
|
|
15962
16217
|
id?: string | undefined;
|
|
@@ -15966,6 +16221,7 @@ export declare const SystemMessage: {
|
|
|
15966
16221
|
welcome_sticker?: string | undefined;
|
|
15967
16222
|
boost_message?: string | undefined;
|
|
15968
16223
|
setup_tips?: string | undefined;
|
|
16224
|
+
hide_audit_log?: string | undefined;
|
|
15969
16225
|
} & {
|
|
15970
16226
|
id?: string | undefined;
|
|
15971
16227
|
clan_id?: string | undefined;
|
|
@@ -15974,6 +16230,7 @@ export declare const SystemMessage: {
|
|
|
15974
16230
|
welcome_sticker?: string | undefined;
|
|
15975
16231
|
boost_message?: string | undefined;
|
|
15976
16232
|
setup_tips?: string | undefined;
|
|
16233
|
+
hide_audit_log?: string | undefined;
|
|
15977
16234
|
} & { [K_1 in Exclude<keyof I_1, keyof SystemMessage>]: never; }>(object: I_1): SystemMessage;
|
|
15978
16235
|
};
|
|
15979
16236
|
export declare const SystemMessagesList: {
|
|
@@ -15990,6 +16247,7 @@ export declare const SystemMessagesList: {
|
|
|
15990
16247
|
welcome_sticker?: string | undefined;
|
|
15991
16248
|
boost_message?: string | undefined;
|
|
15992
16249
|
setup_tips?: string | undefined;
|
|
16250
|
+
hide_audit_log?: string | undefined;
|
|
15993
16251
|
}[] | undefined;
|
|
15994
16252
|
} & {
|
|
15995
16253
|
system_messages_list?: ({
|
|
@@ -16000,6 +16258,7 @@ export declare const SystemMessagesList: {
|
|
|
16000
16258
|
welcome_sticker?: string | undefined;
|
|
16001
16259
|
boost_message?: string | undefined;
|
|
16002
16260
|
setup_tips?: string | undefined;
|
|
16261
|
+
hide_audit_log?: string | undefined;
|
|
16003
16262
|
}[] & ({
|
|
16004
16263
|
id?: string | undefined;
|
|
16005
16264
|
clan_id?: string | undefined;
|
|
@@ -16008,6 +16267,7 @@ export declare const SystemMessagesList: {
|
|
|
16008
16267
|
welcome_sticker?: string | undefined;
|
|
16009
16268
|
boost_message?: string | undefined;
|
|
16010
16269
|
setup_tips?: string | undefined;
|
|
16270
|
+
hide_audit_log?: string | undefined;
|
|
16011
16271
|
} & {
|
|
16012
16272
|
id?: string | undefined;
|
|
16013
16273
|
clan_id?: string | undefined;
|
|
@@ -16016,6 +16276,7 @@ export declare const SystemMessagesList: {
|
|
|
16016
16276
|
welcome_sticker?: string | undefined;
|
|
16017
16277
|
boost_message?: string | undefined;
|
|
16018
16278
|
setup_tips?: string | undefined;
|
|
16279
|
+
hide_audit_log?: string | undefined;
|
|
16019
16280
|
} & { [K in Exclude<keyof I["system_messages_list"][number], keyof SystemMessage>]: never; })[] & { [K_1 in Exclude<keyof I["system_messages_list"], keyof {
|
|
16020
16281
|
id?: string | undefined;
|
|
16021
16282
|
clan_id?: string | undefined;
|
|
@@ -16024,6 +16285,7 @@ export declare const SystemMessagesList: {
|
|
|
16024
16285
|
welcome_sticker?: string | undefined;
|
|
16025
16286
|
boost_message?: string | undefined;
|
|
16026
16287
|
setup_tips?: string | undefined;
|
|
16288
|
+
hide_audit_log?: string | undefined;
|
|
16027
16289
|
}[]>]: never; }) | undefined;
|
|
16028
16290
|
} & { [K_2 in Exclude<keyof I, "system_messages_list">]: never; }>(base?: I | undefined): SystemMessagesList;
|
|
16029
16291
|
fromPartial<I_1 extends {
|
|
@@ -16035,6 +16297,7 @@ export declare const SystemMessagesList: {
|
|
|
16035
16297
|
welcome_sticker?: string | undefined;
|
|
16036
16298
|
boost_message?: string | undefined;
|
|
16037
16299
|
setup_tips?: string | undefined;
|
|
16300
|
+
hide_audit_log?: string | undefined;
|
|
16038
16301
|
}[] | undefined;
|
|
16039
16302
|
} & {
|
|
16040
16303
|
system_messages_list?: ({
|
|
@@ -16045,6 +16308,7 @@ export declare const SystemMessagesList: {
|
|
|
16045
16308
|
welcome_sticker?: string | undefined;
|
|
16046
16309
|
boost_message?: string | undefined;
|
|
16047
16310
|
setup_tips?: string | undefined;
|
|
16311
|
+
hide_audit_log?: string | undefined;
|
|
16048
16312
|
}[] & ({
|
|
16049
16313
|
id?: string | undefined;
|
|
16050
16314
|
clan_id?: string | undefined;
|
|
@@ -16053,6 +16317,7 @@ export declare const SystemMessagesList: {
|
|
|
16053
16317
|
welcome_sticker?: string | undefined;
|
|
16054
16318
|
boost_message?: string | undefined;
|
|
16055
16319
|
setup_tips?: string | undefined;
|
|
16320
|
+
hide_audit_log?: string | undefined;
|
|
16056
16321
|
} & {
|
|
16057
16322
|
id?: string | undefined;
|
|
16058
16323
|
clan_id?: string | undefined;
|
|
@@ -16061,6 +16326,7 @@ export declare const SystemMessagesList: {
|
|
|
16061
16326
|
welcome_sticker?: string | undefined;
|
|
16062
16327
|
boost_message?: string | undefined;
|
|
16063
16328
|
setup_tips?: string | undefined;
|
|
16329
|
+
hide_audit_log?: string | undefined;
|
|
16064
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 {
|
|
16065
16331
|
id?: string | undefined;
|
|
16066
16332
|
clan_id?: string | undefined;
|
|
@@ -16069,6 +16335,7 @@ export declare const SystemMessagesList: {
|
|
|
16069
16335
|
welcome_sticker?: string | undefined;
|
|
16070
16336
|
boost_message?: string | undefined;
|
|
16071
16337
|
setup_tips?: string | undefined;
|
|
16338
|
+
hide_audit_log?: string | undefined;
|
|
16072
16339
|
}[]>]: never; }) | undefined;
|
|
16073
16340
|
} & { [K_5 in Exclude<keyof I_1, "system_messages_list">]: never; }>(object: I_1): SystemMessagesList;
|
|
16074
16341
|
};
|
|
@@ -16084,6 +16351,7 @@ export declare const SystemMessageRequest: {
|
|
|
16084
16351
|
welcome_sticker?: string | undefined;
|
|
16085
16352
|
boost_message?: string | undefined;
|
|
16086
16353
|
setup_tips?: string | undefined;
|
|
16354
|
+
hide_audit_log?: string | undefined;
|
|
16087
16355
|
} & {
|
|
16088
16356
|
clan_id?: string | undefined;
|
|
16089
16357
|
channel_id?: string | undefined;
|
|
@@ -16091,6 +16359,7 @@ export declare const SystemMessageRequest: {
|
|
|
16091
16359
|
welcome_sticker?: string | undefined;
|
|
16092
16360
|
boost_message?: string | undefined;
|
|
16093
16361
|
setup_tips?: string | undefined;
|
|
16362
|
+
hide_audit_log?: string | undefined;
|
|
16094
16363
|
} & { [K in Exclude<keyof I, keyof SystemMessageRequest>]: never; }>(base?: I | undefined): SystemMessageRequest;
|
|
16095
16364
|
fromPartial<I_1 extends {
|
|
16096
16365
|
clan_id?: string | undefined;
|
|
@@ -16099,6 +16368,7 @@ export declare const SystemMessageRequest: {
|
|
|
16099
16368
|
welcome_sticker?: string | undefined;
|
|
16100
16369
|
boost_message?: string | undefined;
|
|
16101
16370
|
setup_tips?: string | undefined;
|
|
16371
|
+
hide_audit_log?: string | undefined;
|
|
16102
16372
|
} & {
|
|
16103
16373
|
clan_id?: string | undefined;
|
|
16104
16374
|
channel_id?: string | undefined;
|
|
@@ -16106,6 +16376,7 @@ export declare const SystemMessageRequest: {
|
|
|
16106
16376
|
welcome_sticker?: string | undefined;
|
|
16107
16377
|
boost_message?: string | undefined;
|
|
16108
16378
|
setup_tips?: string | undefined;
|
|
16379
|
+
hide_audit_log?: string | undefined;
|
|
16109
16380
|
} & { [K_1 in Exclude<keyof I_1, keyof SystemMessageRequest>]: never; }>(object: I_1): SystemMessageRequest;
|
|
16110
16381
|
};
|
|
16111
16382
|
export declare const DeleteSystemMessage: {
|
|
@@ -16156,89 +16427,69 @@ export declare const DeleteCategoryOrderRequest: {
|
|
|
16156
16427
|
clan_id?: string | undefined;
|
|
16157
16428
|
} & { [K_1 in Exclude<keyof I_1, "clan_id">]: never; }>(object: I_1): DeleteCategoryOrderRequest;
|
|
16158
16429
|
};
|
|
16159
|
-
export declare const
|
|
16160
|
-
encode(message:
|
|
16161
|
-
decode(input: _m0.Reader | Uint8Array, length?: number):
|
|
16162
|
-
fromJSON(object: any):
|
|
16163
|
-
toJSON(message:
|
|
16430
|
+
export declare const StreamHttpCallbackRequest: {
|
|
16431
|
+
encode(message: StreamHttpCallbackRequest, writer?: _m0.Writer): _m0.Writer;
|
|
16432
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): StreamHttpCallbackRequest;
|
|
16433
|
+
fromJSON(object: any): StreamHttpCallbackRequest;
|
|
16434
|
+
toJSON(message: StreamHttpCallbackRequest): unknown;
|
|
16164
16435
|
create<I extends {
|
|
16165
|
-
|
|
16436
|
+
id?: string | undefined;
|
|
16166
16437
|
client_id?: string | undefined;
|
|
16167
|
-
|
|
16168
|
-
|
|
16169
|
-
|
|
16170
|
-
|
|
16171
|
-
|
|
16172
|
-
|
|
16173
|
-
|
|
16174
|
-
|
|
16175
|
-
page_url?: string | undefined;
|
|
16176
|
-
tcUrl?: string | undefined;
|
|
16177
|
-
service_id?: string | undefined;
|
|
16178
|
-
} & {
|
|
16179
|
-
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;
|
|
16180
16446
|
client_id?: string | undefined;
|
|
16181
|
-
|
|
16182
|
-
|
|
16183
|
-
|
|
16184
|
-
|
|
16185
|
-
|
|
16186
|
-
|
|
16187
|
-
|
|
16188
|
-
|
|
16189
|
-
|
|
16190
|
-
tcUrl?: string | undefined;
|
|
16191
|
-
service_id?: string | undefined;
|
|
16192
|
-
} & { [K in Exclude<keyof I, keyof OssrsHttpCallbackRequest>]: never; }>(base?: I | undefined): OssrsHttpCallbackRequest;
|
|
16193
|
-
fromPartial<I_1 extends {
|
|
16194
|
-
action?: 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;
|
|
16453
|
+
} & { [K in Exclude<keyof I, keyof StreamHttpCallbackRequest>]: never; }>(base?: I | undefined): StreamHttpCallbackRequest;
|
|
16454
|
+
fromPartial<I_1 extends {
|
|
16455
|
+
id?: string | undefined;
|
|
16195
16456
|
client_id?: string | undefined;
|
|
16196
|
-
|
|
16197
|
-
|
|
16198
|
-
|
|
16199
|
-
|
|
16200
|
-
|
|
16201
|
-
|
|
16202
|
-
|
|
16203
|
-
|
|
16204
|
-
page_url?: string | undefined;
|
|
16205
|
-
tcUrl?: string | undefined;
|
|
16206
|
-
service_id?: string | undefined;
|
|
16207
|
-
} & {
|
|
16208
|
-
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;
|
|
16209
16465
|
client_id?: string | undefined;
|
|
16210
|
-
|
|
16211
|
-
|
|
16212
|
-
|
|
16213
|
-
|
|
16214
|
-
|
|
16215
|
-
|
|
16216
|
-
|
|
16217
|
-
|
|
16218
|
-
|
|
16219
|
-
|
|
16220
|
-
|
|
16221
|
-
|
|
16222
|
-
|
|
16223
|
-
export declare const OssrsHttpCallbackResponse: {
|
|
16224
|
-
encode(message: OssrsHttpCallbackResponse, writer?: _m0.Writer): _m0.Writer;
|
|
16225
|
-
decode(input: _m0.Reader | Uint8Array, length?: number): OssrsHttpCallbackResponse;
|
|
16226
|
-
fromJSON(object: any): OssrsHttpCallbackResponse;
|
|
16227
|
-
toJSON(message: OssrsHttpCallbackResponse): unknown;
|
|
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;
|
|
16472
|
+
} & { [K_1 in Exclude<keyof I_1, keyof StreamHttpCallbackRequest>]: never; }>(object: I_1): StreamHttpCallbackRequest;
|
|
16473
|
+
};
|
|
16474
|
+
export declare const StreamHttpCallbackResponse: {
|
|
16475
|
+
encode(message: StreamHttpCallbackResponse, writer?: _m0.Writer): _m0.Writer;
|
|
16476
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): StreamHttpCallbackResponse;
|
|
16477
|
+
fromJSON(object: any): StreamHttpCallbackResponse;
|
|
16478
|
+
toJSON(message: StreamHttpCallbackResponse): unknown;
|
|
16228
16479
|
create<I extends {
|
|
16229
16480
|
code?: number | undefined;
|
|
16230
16481
|
msg?: string | undefined;
|
|
16231
16482
|
} & {
|
|
16232
16483
|
code?: number | undefined;
|
|
16233
16484
|
msg?: string | undefined;
|
|
16234
|
-
} & { [K in Exclude<keyof I, keyof
|
|
16485
|
+
} & { [K in Exclude<keyof I, keyof StreamHttpCallbackResponse>]: never; }>(base?: I | undefined): StreamHttpCallbackResponse;
|
|
16235
16486
|
fromPartial<I_1 extends {
|
|
16236
16487
|
code?: number | undefined;
|
|
16237
16488
|
msg?: string | undefined;
|
|
16238
16489
|
} & {
|
|
16239
16490
|
code?: number | undefined;
|
|
16240
16491
|
msg?: string | undefined;
|
|
16241
|
-
} & { [K_1 in Exclude<keyof I_1, keyof
|
|
16492
|
+
} & { [K_1 in Exclude<keyof I_1, keyof StreamHttpCallbackResponse>]: never; }>(object: I_1): StreamHttpCallbackResponse;
|
|
16242
16493
|
};
|
|
16243
16494
|
export declare const StreamingChannelUser: {
|
|
16244
16495
|
encode(message: StreamingChannelUser, writer?: _m0.Writer): _m0.Writer;
|
|
@@ -16378,116 +16629,6 @@ export declare const RegisterStreamingChannelResponse: {
|
|
|
16378
16629
|
streaming_url?: string | undefined;
|
|
16379
16630
|
} & { [K_1 in Exclude<keyof I_1, keyof RegisterStreamingChannelResponse>]: never; }>(object: I_1): RegisterStreamingChannelResponse;
|
|
16380
16631
|
};
|
|
16381
|
-
export declare const ListStreamingChannelsRequest: {
|
|
16382
|
-
encode(message: ListStreamingChannelsRequest, writer?: _m0.Writer): _m0.Writer;
|
|
16383
|
-
decode(input: _m0.Reader | Uint8Array, length?: number): ListStreamingChannelsRequest;
|
|
16384
|
-
fromJSON(object: any): ListStreamingChannelsRequest;
|
|
16385
|
-
toJSON(message: ListStreamingChannelsRequest): unknown;
|
|
16386
|
-
create<I extends {
|
|
16387
|
-
clan_id?: string | undefined;
|
|
16388
|
-
} & {
|
|
16389
|
-
clan_id?: string | undefined;
|
|
16390
|
-
} & { [K in Exclude<keyof I, "clan_id">]: never; }>(base?: I | undefined): ListStreamingChannelsRequest;
|
|
16391
|
-
fromPartial<I_1 extends {
|
|
16392
|
-
clan_id?: string | undefined;
|
|
16393
|
-
} & {
|
|
16394
|
-
clan_id?: string | undefined;
|
|
16395
|
-
} & { [K_1 in Exclude<keyof I_1, "clan_id">]: never; }>(object: I_1): ListStreamingChannelsRequest;
|
|
16396
|
-
};
|
|
16397
|
-
export declare const ListStreamingChannelsResponse: {
|
|
16398
|
-
encode(message: ListStreamingChannelsResponse, writer?: _m0.Writer): _m0.Writer;
|
|
16399
|
-
decode(input: _m0.Reader | Uint8Array, length?: number): ListStreamingChannelsResponse;
|
|
16400
|
-
fromJSON(object: any): ListStreamingChannelsResponse;
|
|
16401
|
-
toJSON(message: ListStreamingChannelsResponse): unknown;
|
|
16402
|
-
create<I extends {
|
|
16403
|
-
streaming_channels?: {
|
|
16404
|
-
clan_id?: string | undefined;
|
|
16405
|
-
channel_id?: string | undefined;
|
|
16406
|
-
streaming_url?: string | undefined;
|
|
16407
|
-
is_streaming?: boolean | undefined;
|
|
16408
|
-
}[] | undefined;
|
|
16409
|
-
} & {
|
|
16410
|
-
streaming_channels?: ({
|
|
16411
|
-
clan_id?: string | undefined;
|
|
16412
|
-
channel_id?: string | undefined;
|
|
16413
|
-
streaming_url?: string | undefined;
|
|
16414
|
-
is_streaming?: boolean | undefined;
|
|
16415
|
-
}[] & ({
|
|
16416
|
-
clan_id?: string | undefined;
|
|
16417
|
-
channel_id?: string | undefined;
|
|
16418
|
-
streaming_url?: string | undefined;
|
|
16419
|
-
is_streaming?: boolean | undefined;
|
|
16420
|
-
} & {
|
|
16421
|
-
clan_id?: string | undefined;
|
|
16422
|
-
channel_id?: string | undefined;
|
|
16423
|
-
streaming_url?: string | undefined;
|
|
16424
|
-
is_streaming?: boolean | undefined;
|
|
16425
|
-
} & { [K in Exclude<keyof I["streaming_channels"][number], keyof StreamingChannelResponse>]: never; })[] & { [K_1 in Exclude<keyof I["streaming_channels"], keyof {
|
|
16426
|
-
clan_id?: string | undefined;
|
|
16427
|
-
channel_id?: string | undefined;
|
|
16428
|
-
streaming_url?: string | undefined;
|
|
16429
|
-
is_streaming?: boolean | undefined;
|
|
16430
|
-
}[]>]: never; }) | undefined;
|
|
16431
|
-
} & { [K_2 in Exclude<keyof I, "streaming_channels">]: never; }>(base?: I | undefined): ListStreamingChannelsResponse;
|
|
16432
|
-
fromPartial<I_1 extends {
|
|
16433
|
-
streaming_channels?: {
|
|
16434
|
-
clan_id?: string | undefined;
|
|
16435
|
-
channel_id?: string | undefined;
|
|
16436
|
-
streaming_url?: string | undefined;
|
|
16437
|
-
is_streaming?: boolean | undefined;
|
|
16438
|
-
}[] | undefined;
|
|
16439
|
-
} & {
|
|
16440
|
-
streaming_channels?: ({
|
|
16441
|
-
clan_id?: string | undefined;
|
|
16442
|
-
channel_id?: string | undefined;
|
|
16443
|
-
streaming_url?: string | undefined;
|
|
16444
|
-
is_streaming?: boolean | undefined;
|
|
16445
|
-
}[] & ({
|
|
16446
|
-
clan_id?: string | undefined;
|
|
16447
|
-
channel_id?: string | undefined;
|
|
16448
|
-
streaming_url?: string | undefined;
|
|
16449
|
-
is_streaming?: boolean | undefined;
|
|
16450
|
-
} & {
|
|
16451
|
-
clan_id?: string | undefined;
|
|
16452
|
-
channel_id?: string | undefined;
|
|
16453
|
-
streaming_url?: string | undefined;
|
|
16454
|
-
is_streaming?: boolean | undefined;
|
|
16455
|
-
} & { [K_3 in Exclude<keyof I_1["streaming_channels"][number], keyof StreamingChannelResponse>]: never; })[] & { [K_4 in Exclude<keyof I_1["streaming_channels"], keyof {
|
|
16456
|
-
clan_id?: string | undefined;
|
|
16457
|
-
channel_id?: string | undefined;
|
|
16458
|
-
streaming_url?: string | undefined;
|
|
16459
|
-
is_streaming?: boolean | undefined;
|
|
16460
|
-
}[]>]: never; }) | undefined;
|
|
16461
|
-
} & { [K_5 in Exclude<keyof I_1, "streaming_channels">]: never; }>(object: I_1): ListStreamingChannelsResponse;
|
|
16462
|
-
};
|
|
16463
|
-
export declare const StreamingChannelResponse: {
|
|
16464
|
-
encode(message: StreamingChannelResponse, writer?: _m0.Writer): _m0.Writer;
|
|
16465
|
-
decode(input: _m0.Reader | Uint8Array, length?: number): StreamingChannelResponse;
|
|
16466
|
-
fromJSON(object: any): StreamingChannelResponse;
|
|
16467
|
-
toJSON(message: StreamingChannelResponse): unknown;
|
|
16468
|
-
create<I extends {
|
|
16469
|
-
clan_id?: string | undefined;
|
|
16470
|
-
channel_id?: string | undefined;
|
|
16471
|
-
streaming_url?: string | undefined;
|
|
16472
|
-
is_streaming?: boolean | undefined;
|
|
16473
|
-
} & {
|
|
16474
|
-
clan_id?: string | undefined;
|
|
16475
|
-
channel_id?: string | undefined;
|
|
16476
|
-
streaming_url?: string | undefined;
|
|
16477
|
-
is_streaming?: boolean | undefined;
|
|
16478
|
-
} & { [K in Exclude<keyof I, keyof StreamingChannelResponse>]: never; }>(base?: I | undefined): StreamingChannelResponse;
|
|
16479
|
-
fromPartial<I_1 extends {
|
|
16480
|
-
clan_id?: string | undefined;
|
|
16481
|
-
channel_id?: string | undefined;
|
|
16482
|
-
streaming_url?: string | undefined;
|
|
16483
|
-
is_streaming?: boolean | undefined;
|
|
16484
|
-
} & {
|
|
16485
|
-
clan_id?: string | undefined;
|
|
16486
|
-
channel_id?: string | undefined;
|
|
16487
|
-
streaming_url?: string | undefined;
|
|
16488
|
-
is_streaming?: boolean | undefined;
|
|
16489
|
-
} & { [K_1 in Exclude<keyof I_1, keyof StreamingChannelResponse>]: never; }>(object: I_1): StreamingChannelResponse;
|
|
16490
|
-
};
|
|
16491
16632
|
export declare const GiveCoffeeEvent: {
|
|
16492
16633
|
encode(message: GiveCoffeeEvent, writer?: _m0.Writer): _m0.Writer;
|
|
16493
16634
|
decode(input: _m0.Reader | Uint8Array, length?: number): GiveCoffeeEvent;
|
|
@@ -17920,6 +18061,7 @@ export declare const ChannelSettingItem: {
|
|
|
17920
18061
|
referece?: string | undefined;
|
|
17921
18062
|
mention?: string | undefined;
|
|
17922
18063
|
reaction?: string | undefined;
|
|
18064
|
+
repliers?: string[] | undefined;
|
|
17923
18065
|
} | undefined;
|
|
17924
18066
|
} & {
|
|
17925
18067
|
id?: string | undefined;
|
|
@@ -17942,6 +18084,7 @@ export declare const ChannelSettingItem: {
|
|
|
17942
18084
|
referece?: string | undefined;
|
|
17943
18085
|
mention?: string | undefined;
|
|
17944
18086
|
reaction?: string | undefined;
|
|
18087
|
+
repliers?: string[] | undefined;
|
|
17945
18088
|
} & {
|
|
17946
18089
|
id?: string | undefined;
|
|
17947
18090
|
timestamp_seconds?: number | undefined;
|
|
@@ -17951,8 +18094,9 @@ export declare const ChannelSettingItem: {
|
|
|
17951
18094
|
referece?: string | undefined;
|
|
17952
18095
|
mention?: string | undefined;
|
|
17953
18096
|
reaction?: string | undefined;
|
|
17954
|
-
|
|
17955
|
-
|
|
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;
|
|
17956
18100
|
fromPartial<I_1 extends {
|
|
17957
18101
|
id?: string | undefined;
|
|
17958
18102
|
creator_id?: string | undefined;
|
|
@@ -17974,6 +18118,7 @@ export declare const ChannelSettingItem: {
|
|
|
17974
18118
|
referece?: string | undefined;
|
|
17975
18119
|
mention?: string | undefined;
|
|
17976
18120
|
reaction?: string | undefined;
|
|
18121
|
+
repliers?: string[] | undefined;
|
|
17977
18122
|
} | undefined;
|
|
17978
18123
|
} & {
|
|
17979
18124
|
id?: string | undefined;
|
|
@@ -17985,7 +18130,7 @@ export declare const ChannelSettingItem: {
|
|
|
17985
18130
|
channel_private?: number | undefined;
|
|
17986
18131
|
channel_type?: number | undefined;
|
|
17987
18132
|
active?: number | undefined;
|
|
17988
|
-
user_ids?: (string[] & string[] & { [
|
|
18133
|
+
user_ids?: (string[] & string[] & { [K_4 in Exclude<keyof I_1["user_ids"], keyof string[]>]: never; }) | undefined;
|
|
17989
18134
|
message_count?: number | undefined;
|
|
17990
18135
|
last_sent_message?: ({
|
|
17991
18136
|
id?: string | undefined;
|
|
@@ -17996,6 +18141,7 @@ export declare const ChannelSettingItem: {
|
|
|
17996
18141
|
referece?: string | undefined;
|
|
17997
18142
|
mention?: string | undefined;
|
|
17998
18143
|
reaction?: string | undefined;
|
|
18144
|
+
repliers?: string[] | undefined;
|
|
17999
18145
|
} & {
|
|
18000
18146
|
id?: string | undefined;
|
|
18001
18147
|
timestamp_seconds?: number | undefined;
|
|
@@ -18005,8 +18151,9 @@ export declare const ChannelSettingItem: {
|
|
|
18005
18151
|
referece?: string | undefined;
|
|
18006
18152
|
mention?: string | undefined;
|
|
18007
18153
|
reaction?: string | undefined;
|
|
18008
|
-
|
|
18009
|
-
|
|
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;
|
|
18010
18157
|
};
|
|
18011
18158
|
export declare const ChannelSettingListResponse: {
|
|
18012
18159
|
encode(message: ChannelSettingListResponse, writer?: _m0.Writer): _m0.Writer;
|
|
@@ -18038,6 +18185,7 @@ export declare const ChannelSettingListResponse: {
|
|
|
18038
18185
|
referece?: string | undefined;
|
|
18039
18186
|
mention?: string | undefined;
|
|
18040
18187
|
reaction?: string | undefined;
|
|
18188
|
+
repliers?: string[] | undefined;
|
|
18041
18189
|
} | undefined;
|
|
18042
18190
|
}[] | undefined;
|
|
18043
18191
|
} & {
|
|
@@ -18065,6 +18213,7 @@ export declare const ChannelSettingListResponse: {
|
|
|
18065
18213
|
referece?: string | undefined;
|
|
18066
18214
|
mention?: string | undefined;
|
|
18067
18215
|
reaction?: string | undefined;
|
|
18216
|
+
repliers?: string[] | undefined;
|
|
18068
18217
|
} | undefined;
|
|
18069
18218
|
}[] & ({
|
|
18070
18219
|
id?: string | undefined;
|
|
@@ -18087,6 +18236,7 @@ export declare const ChannelSettingListResponse: {
|
|
|
18087
18236
|
referece?: string | undefined;
|
|
18088
18237
|
mention?: string | undefined;
|
|
18089
18238
|
reaction?: string | undefined;
|
|
18239
|
+
repliers?: string[] | undefined;
|
|
18090
18240
|
} | undefined;
|
|
18091
18241
|
} & {
|
|
18092
18242
|
id?: string | undefined;
|
|
@@ -18109,6 +18259,7 @@ export declare const ChannelSettingListResponse: {
|
|
|
18109
18259
|
referece?: string | undefined;
|
|
18110
18260
|
mention?: string | undefined;
|
|
18111
18261
|
reaction?: string | undefined;
|
|
18262
|
+
repliers?: string[] | undefined;
|
|
18112
18263
|
} & {
|
|
18113
18264
|
id?: string | undefined;
|
|
18114
18265
|
timestamp_seconds?: number | undefined;
|
|
@@ -18118,8 +18269,9 @@ export declare const ChannelSettingListResponse: {
|
|
|
18118
18269
|
referece?: string | undefined;
|
|
18119
18270
|
mention?: string | undefined;
|
|
18120
18271
|
reaction?: string | undefined;
|
|
18121
|
-
|
|
18122
|
-
|
|
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 {
|
|
18123
18275
|
id?: string | undefined;
|
|
18124
18276
|
creator_id?: string | undefined;
|
|
18125
18277
|
parent_id?: string | undefined;
|
|
@@ -18140,9 +18292,10 @@ export declare const ChannelSettingListResponse: {
|
|
|
18140
18292
|
referece?: string | undefined;
|
|
18141
18293
|
mention?: string | undefined;
|
|
18142
18294
|
reaction?: string | undefined;
|
|
18295
|
+
repliers?: string[] | undefined;
|
|
18143
18296
|
} | undefined;
|
|
18144
18297
|
}[]>]: never; }) | undefined;
|
|
18145
|
-
} & { [
|
|
18298
|
+
} & { [K_5 in Exclude<keyof I, keyof ChannelSettingListResponse>]: never; }>(base?: I | undefined): ChannelSettingListResponse;
|
|
18146
18299
|
fromPartial<I_1 extends {
|
|
18147
18300
|
clan_id?: string | undefined;
|
|
18148
18301
|
channel_count?: number | undefined;
|
|
@@ -18168,6 +18321,7 @@ export declare const ChannelSettingListResponse: {
|
|
|
18168
18321
|
referece?: string | undefined;
|
|
18169
18322
|
mention?: string | undefined;
|
|
18170
18323
|
reaction?: string | undefined;
|
|
18324
|
+
repliers?: string[] | undefined;
|
|
18171
18325
|
} | undefined;
|
|
18172
18326
|
}[] | undefined;
|
|
18173
18327
|
} & {
|
|
@@ -18195,6 +18349,7 @@ export declare const ChannelSettingListResponse: {
|
|
|
18195
18349
|
referece?: string | undefined;
|
|
18196
18350
|
mention?: string | undefined;
|
|
18197
18351
|
reaction?: string | undefined;
|
|
18352
|
+
repliers?: string[] | undefined;
|
|
18198
18353
|
} | undefined;
|
|
18199
18354
|
}[] & ({
|
|
18200
18355
|
id?: string | undefined;
|
|
@@ -18217,6 +18372,7 @@ export declare const ChannelSettingListResponse: {
|
|
|
18217
18372
|
referece?: string | undefined;
|
|
18218
18373
|
mention?: string | undefined;
|
|
18219
18374
|
reaction?: string | undefined;
|
|
18375
|
+
repliers?: string[] | undefined;
|
|
18220
18376
|
} | undefined;
|
|
18221
18377
|
} & {
|
|
18222
18378
|
id?: string | undefined;
|
|
@@ -18228,7 +18384,7 @@ export declare const ChannelSettingListResponse: {
|
|
|
18228
18384
|
channel_private?: number | undefined;
|
|
18229
18385
|
channel_type?: number | undefined;
|
|
18230
18386
|
active?: number | undefined;
|
|
18231
|
-
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;
|
|
18232
18388
|
message_count?: number | undefined;
|
|
18233
18389
|
last_sent_message?: ({
|
|
18234
18390
|
id?: string | undefined;
|
|
@@ -18239,6 +18395,7 @@ export declare const ChannelSettingListResponse: {
|
|
|
18239
18395
|
referece?: string | undefined;
|
|
18240
18396
|
mention?: string | undefined;
|
|
18241
18397
|
reaction?: string | undefined;
|
|
18398
|
+
repliers?: string[] | undefined;
|
|
18242
18399
|
} & {
|
|
18243
18400
|
id?: string | undefined;
|
|
18244
18401
|
timestamp_seconds?: number | undefined;
|
|
@@ -18248,8 +18405,9 @@ export declare const ChannelSettingListResponse: {
|
|
|
18248
18405
|
referece?: string | undefined;
|
|
18249
18406
|
mention?: string | undefined;
|
|
18250
18407
|
reaction?: string | undefined;
|
|
18251
|
-
|
|
18252
|
-
|
|
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 {
|
|
18253
18411
|
id?: string | undefined;
|
|
18254
18412
|
creator_id?: string | undefined;
|
|
18255
18413
|
parent_id?: string | undefined;
|
|
@@ -18270,9 +18428,10 @@ export declare const ChannelSettingListResponse: {
|
|
|
18270
18428
|
referece?: string | undefined;
|
|
18271
18429
|
mention?: string | undefined;
|
|
18272
18430
|
reaction?: string | undefined;
|
|
18431
|
+
repliers?: string[] | undefined;
|
|
18273
18432
|
} | undefined;
|
|
18274
18433
|
}[]>]: never; }) | undefined;
|
|
18275
|
-
} & { [
|
|
18434
|
+
} & { [K_11 in Exclude<keyof I_1, keyof ChannelSettingListResponse>]: never; }>(object: I_1): ChannelSettingListResponse;
|
|
18276
18435
|
};
|
|
18277
18436
|
export declare const MarkAsReadRequest: {
|
|
18278
18437
|
encode(message: MarkAsReadRequest, writer?: _m0.Writer): _m0.Writer;
|
|
@@ -19185,6 +19344,7 @@ export declare const AuditLog: {
|
|
|
19185
19344
|
details?: string | undefined;
|
|
19186
19345
|
time_log?: Date | undefined;
|
|
19187
19346
|
channel_id?: string | undefined;
|
|
19347
|
+
channel_label?: string | undefined;
|
|
19188
19348
|
} & {
|
|
19189
19349
|
id?: string | undefined;
|
|
19190
19350
|
user_id?: string | undefined;
|
|
@@ -19195,6 +19355,7 @@ export declare const AuditLog: {
|
|
|
19195
19355
|
details?: string | undefined;
|
|
19196
19356
|
time_log?: Date | undefined;
|
|
19197
19357
|
channel_id?: string | undefined;
|
|
19358
|
+
channel_label?: string | undefined;
|
|
19198
19359
|
} & { [K in Exclude<keyof I, keyof AuditLog>]: never; }>(base?: I | undefined): AuditLog;
|
|
19199
19360
|
fromPartial<I_1 extends {
|
|
19200
19361
|
id?: string | undefined;
|
|
@@ -19206,6 +19367,7 @@ export declare const AuditLog: {
|
|
|
19206
19367
|
details?: string | undefined;
|
|
19207
19368
|
time_log?: Date | undefined;
|
|
19208
19369
|
channel_id?: string | undefined;
|
|
19370
|
+
channel_label?: string | undefined;
|
|
19209
19371
|
} & {
|
|
19210
19372
|
id?: string | undefined;
|
|
19211
19373
|
user_id?: string | undefined;
|
|
@@ -19216,6 +19378,7 @@ export declare const AuditLog: {
|
|
|
19216
19378
|
details?: string | undefined;
|
|
19217
19379
|
time_log?: Date | undefined;
|
|
19218
19380
|
channel_id?: string | undefined;
|
|
19381
|
+
channel_label?: string | undefined;
|
|
19219
19382
|
} & { [K_1 in Exclude<keyof I_1, keyof AuditLog>]: never; }>(object: I_1): AuditLog;
|
|
19220
19383
|
};
|
|
19221
19384
|
export declare const ListAuditLog: {
|
|
@@ -19225,8 +19388,7 @@ export declare const ListAuditLog: {
|
|
|
19225
19388
|
toJSON(message: ListAuditLog): unknown;
|
|
19226
19389
|
create<I extends {
|
|
19227
19390
|
total_count?: number | undefined;
|
|
19228
|
-
|
|
19229
|
-
page_size?: number | undefined;
|
|
19391
|
+
date_log?: string | undefined;
|
|
19230
19392
|
logs?: {
|
|
19231
19393
|
id?: string | undefined;
|
|
19232
19394
|
user_id?: string | undefined;
|
|
@@ -19237,11 +19399,11 @@ export declare const ListAuditLog: {
|
|
|
19237
19399
|
details?: string | undefined;
|
|
19238
19400
|
time_log?: Date | undefined;
|
|
19239
19401
|
channel_id?: string | undefined;
|
|
19402
|
+
channel_label?: string | undefined;
|
|
19240
19403
|
}[] | undefined;
|
|
19241
19404
|
} & {
|
|
19242
19405
|
total_count?: number | undefined;
|
|
19243
|
-
|
|
19244
|
-
page_size?: number | undefined;
|
|
19406
|
+
date_log?: string | undefined;
|
|
19245
19407
|
logs?: ({
|
|
19246
19408
|
id?: string | undefined;
|
|
19247
19409
|
user_id?: string | undefined;
|
|
@@ -19252,6 +19414,7 @@ export declare const ListAuditLog: {
|
|
|
19252
19414
|
details?: string | undefined;
|
|
19253
19415
|
time_log?: Date | undefined;
|
|
19254
19416
|
channel_id?: string | undefined;
|
|
19417
|
+
channel_label?: string | undefined;
|
|
19255
19418
|
}[] & ({
|
|
19256
19419
|
id?: string | undefined;
|
|
19257
19420
|
user_id?: string | undefined;
|
|
@@ -19262,6 +19425,7 @@ export declare const ListAuditLog: {
|
|
|
19262
19425
|
details?: string | undefined;
|
|
19263
19426
|
time_log?: Date | undefined;
|
|
19264
19427
|
channel_id?: string | undefined;
|
|
19428
|
+
channel_label?: string | undefined;
|
|
19265
19429
|
} & {
|
|
19266
19430
|
id?: string | undefined;
|
|
19267
19431
|
user_id?: string | undefined;
|
|
@@ -19272,6 +19436,7 @@ export declare const ListAuditLog: {
|
|
|
19272
19436
|
details?: string | undefined;
|
|
19273
19437
|
time_log?: Date | undefined;
|
|
19274
19438
|
channel_id?: string | undefined;
|
|
19439
|
+
channel_label?: string | undefined;
|
|
19275
19440
|
} & { [K in Exclude<keyof I["logs"][number], keyof AuditLog>]: never; })[] & { [K_1 in Exclude<keyof I["logs"], keyof {
|
|
19276
19441
|
id?: string | undefined;
|
|
19277
19442
|
user_id?: string | undefined;
|
|
@@ -19282,12 +19447,12 @@ export declare const ListAuditLog: {
|
|
|
19282
19447
|
details?: string | undefined;
|
|
19283
19448
|
time_log?: Date | undefined;
|
|
19284
19449
|
channel_id?: string | undefined;
|
|
19450
|
+
channel_label?: string | undefined;
|
|
19285
19451
|
}[]>]: never; }) | undefined;
|
|
19286
19452
|
} & { [K_2 in Exclude<keyof I, keyof ListAuditLog>]: never; }>(base?: I | undefined): ListAuditLog;
|
|
19287
19453
|
fromPartial<I_1 extends {
|
|
19288
19454
|
total_count?: number | undefined;
|
|
19289
|
-
|
|
19290
|
-
page_size?: number | undefined;
|
|
19455
|
+
date_log?: string | undefined;
|
|
19291
19456
|
logs?: {
|
|
19292
19457
|
id?: string | undefined;
|
|
19293
19458
|
user_id?: string | undefined;
|
|
@@ -19298,11 +19463,11 @@ export declare const ListAuditLog: {
|
|
|
19298
19463
|
details?: string | undefined;
|
|
19299
19464
|
time_log?: Date | undefined;
|
|
19300
19465
|
channel_id?: string | undefined;
|
|
19466
|
+
channel_label?: string | undefined;
|
|
19301
19467
|
}[] | undefined;
|
|
19302
19468
|
} & {
|
|
19303
19469
|
total_count?: number | undefined;
|
|
19304
|
-
|
|
19305
|
-
page_size?: number | undefined;
|
|
19470
|
+
date_log?: string | undefined;
|
|
19306
19471
|
logs?: ({
|
|
19307
19472
|
id?: string | undefined;
|
|
19308
19473
|
user_id?: string | undefined;
|
|
@@ -19313,6 +19478,7 @@ export declare const ListAuditLog: {
|
|
|
19313
19478
|
details?: string | undefined;
|
|
19314
19479
|
time_log?: Date | undefined;
|
|
19315
19480
|
channel_id?: string | undefined;
|
|
19481
|
+
channel_label?: string | undefined;
|
|
19316
19482
|
}[] & ({
|
|
19317
19483
|
id?: string | undefined;
|
|
19318
19484
|
user_id?: string | undefined;
|
|
@@ -19323,6 +19489,7 @@ export declare const ListAuditLog: {
|
|
|
19323
19489
|
details?: string | undefined;
|
|
19324
19490
|
time_log?: Date | undefined;
|
|
19325
19491
|
channel_id?: string | undefined;
|
|
19492
|
+
channel_label?: string | undefined;
|
|
19326
19493
|
} & {
|
|
19327
19494
|
id?: string | undefined;
|
|
19328
19495
|
user_id?: string | undefined;
|
|
@@ -19333,6 +19500,7 @@ export declare const ListAuditLog: {
|
|
|
19333
19500
|
details?: string | undefined;
|
|
19334
19501
|
time_log?: Date | undefined;
|
|
19335
19502
|
channel_id?: string | undefined;
|
|
19503
|
+
channel_label?: string | undefined;
|
|
19336
19504
|
} & { [K_3 in Exclude<keyof I_1["logs"][number], keyof AuditLog>]: never; })[] & { [K_4 in Exclude<keyof I_1["logs"], keyof {
|
|
19337
19505
|
id?: string | undefined;
|
|
19338
19506
|
user_id?: string | undefined;
|
|
@@ -19343,6 +19511,7 @@ export declare const ListAuditLog: {
|
|
|
19343
19511
|
details?: string | undefined;
|
|
19344
19512
|
time_log?: Date | undefined;
|
|
19345
19513
|
channel_id?: string | undefined;
|
|
19514
|
+
channel_label?: string | undefined;
|
|
19346
19515
|
}[]>]: never; }) | undefined;
|
|
19347
19516
|
} & { [K_5 in Exclude<keyof I_1, keyof ListAuditLog>]: never; }>(object: I_1): ListAuditLog;
|
|
19348
19517
|
};
|
|
@@ -19355,27 +19524,23 @@ export declare const ListAuditLogRequest: {
|
|
|
19355
19524
|
action_log?: string | undefined;
|
|
19356
19525
|
user_id?: string | undefined;
|
|
19357
19526
|
clan_id?: string | undefined;
|
|
19358
|
-
|
|
19359
|
-
page_size?: number | undefined;
|
|
19527
|
+
date_log?: string | undefined;
|
|
19360
19528
|
} & {
|
|
19361
19529
|
action_log?: string | undefined;
|
|
19362
19530
|
user_id?: string | undefined;
|
|
19363
19531
|
clan_id?: string | undefined;
|
|
19364
|
-
|
|
19365
|
-
page_size?: number | undefined;
|
|
19532
|
+
date_log?: string | undefined;
|
|
19366
19533
|
} & { [K in Exclude<keyof I, keyof ListAuditLogRequest>]: never; }>(base?: I | undefined): ListAuditLogRequest;
|
|
19367
19534
|
fromPartial<I_1 extends {
|
|
19368
19535
|
action_log?: string | undefined;
|
|
19369
19536
|
user_id?: string | undefined;
|
|
19370
19537
|
clan_id?: string | undefined;
|
|
19371
|
-
|
|
19372
|
-
page_size?: number | undefined;
|
|
19538
|
+
date_log?: string | undefined;
|
|
19373
19539
|
} & {
|
|
19374
19540
|
action_log?: string | undefined;
|
|
19375
19541
|
user_id?: string | undefined;
|
|
19376
19542
|
clan_id?: string | undefined;
|
|
19377
|
-
|
|
19378
|
-
page_size?: number | undefined;
|
|
19543
|
+
date_log?: string | undefined;
|
|
19379
19544
|
} & { [K_1 in Exclude<keyof I_1, keyof ListAuditLogRequest>]: never; }>(object: I_1): ListAuditLogRequest;
|
|
19380
19545
|
};
|
|
19381
19546
|
export declare const TokenSentEvent: {
|
|
@@ -19389,12 +19554,16 @@ export declare const TokenSentEvent: {
|
|
|
19389
19554
|
receiver_id?: string | undefined;
|
|
19390
19555
|
amount?: number | undefined;
|
|
19391
19556
|
note?: string | undefined;
|
|
19557
|
+
extra_attribute?: string | undefined;
|
|
19558
|
+
transaction_id?: string | undefined;
|
|
19392
19559
|
} & {
|
|
19393
19560
|
sender_id?: string | undefined;
|
|
19394
19561
|
sender_name?: string | undefined;
|
|
19395
19562
|
receiver_id?: string | undefined;
|
|
19396
19563
|
amount?: number | undefined;
|
|
19397
19564
|
note?: string | undefined;
|
|
19565
|
+
extra_attribute?: string | undefined;
|
|
19566
|
+
transaction_id?: string | undefined;
|
|
19398
19567
|
} & { [K in Exclude<keyof I, keyof TokenSentEvent>]: never; }>(base?: I | undefined): TokenSentEvent;
|
|
19399
19568
|
fromPartial<I_1 extends {
|
|
19400
19569
|
sender_id?: string | undefined;
|
|
@@ -19402,12 +19571,16 @@ export declare const TokenSentEvent: {
|
|
|
19402
19571
|
receiver_id?: string | undefined;
|
|
19403
19572
|
amount?: number | undefined;
|
|
19404
19573
|
note?: string | undefined;
|
|
19574
|
+
extra_attribute?: string | undefined;
|
|
19575
|
+
transaction_id?: string | undefined;
|
|
19405
19576
|
} & {
|
|
19406
19577
|
sender_id?: string | undefined;
|
|
19407
19578
|
sender_name?: string | undefined;
|
|
19408
19579
|
receiver_id?: string | undefined;
|
|
19409
19580
|
amount?: number | undefined;
|
|
19410
19581
|
note?: string | undefined;
|
|
19582
|
+
extra_attribute?: string | undefined;
|
|
19583
|
+
transaction_id?: string | undefined;
|
|
19411
19584
|
} & { [K_1 in Exclude<keyof I_1, keyof TokenSentEvent>]: never; }>(object: I_1): TokenSentEvent;
|
|
19412
19585
|
};
|
|
19413
19586
|
export declare const WithdrawTokenRequest: {
|
|
@@ -21118,6 +21291,46 @@ export declare const SdTopic: {
|
|
|
21118
21291
|
status?: number | undefined;
|
|
21119
21292
|
create_time?: Date | undefined;
|
|
21120
21293
|
update_time?: Date | undefined;
|
|
21294
|
+
message?: {
|
|
21295
|
+
clan_id?: string | undefined;
|
|
21296
|
+
channel_id?: string | undefined;
|
|
21297
|
+
message_id?: string | undefined;
|
|
21298
|
+
code?: number | undefined;
|
|
21299
|
+
sender_id?: string | undefined;
|
|
21300
|
+
username?: string | undefined;
|
|
21301
|
+
avatar?: string | undefined;
|
|
21302
|
+
content?: string | undefined;
|
|
21303
|
+
create_time?: Date | undefined;
|
|
21304
|
+
update_time?: Date | undefined;
|
|
21305
|
+
channel_label?: string | undefined;
|
|
21306
|
+
clan_logo?: string | undefined;
|
|
21307
|
+
category_name?: string | undefined;
|
|
21308
|
+
display_name?: string | undefined;
|
|
21309
|
+
clan_nick?: string | undefined;
|
|
21310
|
+
clan_avatar?: string | undefined;
|
|
21311
|
+
reactions?: string | undefined;
|
|
21312
|
+
mentions?: string | undefined;
|
|
21313
|
+
attachments?: string | undefined;
|
|
21314
|
+
references?: string | undefined;
|
|
21315
|
+
referenced_message?: string | undefined;
|
|
21316
|
+
create_time_seconds?: number | undefined;
|
|
21317
|
+
update_time_seconds?: number | undefined;
|
|
21318
|
+
mode?: number | undefined;
|
|
21319
|
+
hide_editted?: boolean | undefined;
|
|
21320
|
+
is_public?: boolean | undefined;
|
|
21321
|
+
topic_id?: string | undefined;
|
|
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;
|
|
21121
21334
|
} & {
|
|
21122
21335
|
id?: string | undefined;
|
|
21123
21336
|
creator_id?: string | undefined;
|
|
@@ -21127,7 +21340,85 @@ export declare const SdTopic: {
|
|
|
21127
21340
|
status?: number | undefined;
|
|
21128
21341
|
create_time?: Date | undefined;
|
|
21129
21342
|
update_time?: Date | undefined;
|
|
21130
|
-
|
|
21343
|
+
message?: ({
|
|
21344
|
+
clan_id?: string | undefined;
|
|
21345
|
+
channel_id?: string | undefined;
|
|
21346
|
+
message_id?: string | undefined;
|
|
21347
|
+
code?: number | undefined;
|
|
21348
|
+
sender_id?: string | undefined;
|
|
21349
|
+
username?: string | undefined;
|
|
21350
|
+
avatar?: string | undefined;
|
|
21351
|
+
content?: string | undefined;
|
|
21352
|
+
create_time?: Date | undefined;
|
|
21353
|
+
update_time?: Date | undefined;
|
|
21354
|
+
channel_label?: string | undefined;
|
|
21355
|
+
clan_logo?: string | undefined;
|
|
21356
|
+
category_name?: string | undefined;
|
|
21357
|
+
display_name?: string | undefined;
|
|
21358
|
+
clan_nick?: string | undefined;
|
|
21359
|
+
clan_avatar?: string | undefined;
|
|
21360
|
+
reactions?: string | undefined;
|
|
21361
|
+
mentions?: string | undefined;
|
|
21362
|
+
attachments?: string | undefined;
|
|
21363
|
+
references?: string | undefined;
|
|
21364
|
+
referenced_message?: string | undefined;
|
|
21365
|
+
create_time_seconds?: number | undefined;
|
|
21366
|
+
update_time_seconds?: number | undefined;
|
|
21367
|
+
mode?: number | undefined;
|
|
21368
|
+
hide_editted?: boolean | undefined;
|
|
21369
|
+
is_public?: boolean | undefined;
|
|
21370
|
+
topic_id?: string | undefined;
|
|
21371
|
+
} & {
|
|
21372
|
+
clan_id?: string | undefined;
|
|
21373
|
+
channel_id?: string | undefined;
|
|
21374
|
+
message_id?: string | undefined;
|
|
21375
|
+
code?: number | undefined;
|
|
21376
|
+
sender_id?: string | undefined;
|
|
21377
|
+
username?: string | undefined;
|
|
21378
|
+
avatar?: string | undefined;
|
|
21379
|
+
content?: string | undefined;
|
|
21380
|
+
create_time?: Date | undefined;
|
|
21381
|
+
update_time?: Date | undefined;
|
|
21382
|
+
channel_label?: string | undefined;
|
|
21383
|
+
clan_logo?: string | undefined;
|
|
21384
|
+
category_name?: string | undefined;
|
|
21385
|
+
display_name?: string | undefined;
|
|
21386
|
+
clan_nick?: string | undefined;
|
|
21387
|
+
clan_avatar?: string | undefined;
|
|
21388
|
+
reactions?: string | undefined;
|
|
21389
|
+
mentions?: string | undefined;
|
|
21390
|
+
attachments?: string | undefined;
|
|
21391
|
+
references?: string | undefined;
|
|
21392
|
+
referenced_message?: string | undefined;
|
|
21393
|
+
create_time_seconds?: number | undefined;
|
|
21394
|
+
update_time_seconds?: number | undefined;
|
|
21395
|
+
mode?: number | undefined;
|
|
21396
|
+
hide_editted?: boolean | undefined;
|
|
21397
|
+
is_public?: boolean | undefined;
|
|
21398
|
+
topic_id?: string | undefined;
|
|
21399
|
+
} & { [K in Exclude<keyof I["message"], keyof ChannelMessage>]: never; }) | undefined;
|
|
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;
|
|
21131
21422
|
fromPartial<I_1 extends {
|
|
21132
21423
|
id?: string | undefined;
|
|
21133
21424
|
creator_id?: string | undefined;
|
|
@@ -21137,6 +21428,46 @@ export declare const SdTopic: {
|
|
|
21137
21428
|
status?: number | undefined;
|
|
21138
21429
|
create_time?: Date | undefined;
|
|
21139
21430
|
update_time?: Date | undefined;
|
|
21431
|
+
message?: {
|
|
21432
|
+
clan_id?: string | undefined;
|
|
21433
|
+
channel_id?: string | undefined;
|
|
21434
|
+
message_id?: string | undefined;
|
|
21435
|
+
code?: number | undefined;
|
|
21436
|
+
sender_id?: string | undefined;
|
|
21437
|
+
username?: string | undefined;
|
|
21438
|
+
avatar?: string | undefined;
|
|
21439
|
+
content?: string | undefined;
|
|
21440
|
+
create_time?: Date | undefined;
|
|
21441
|
+
update_time?: Date | undefined;
|
|
21442
|
+
channel_label?: string | undefined;
|
|
21443
|
+
clan_logo?: string | undefined;
|
|
21444
|
+
category_name?: string | undefined;
|
|
21445
|
+
display_name?: string | undefined;
|
|
21446
|
+
clan_nick?: string | undefined;
|
|
21447
|
+
clan_avatar?: string | undefined;
|
|
21448
|
+
reactions?: string | undefined;
|
|
21449
|
+
mentions?: string | undefined;
|
|
21450
|
+
attachments?: string | undefined;
|
|
21451
|
+
references?: string | undefined;
|
|
21452
|
+
referenced_message?: string | undefined;
|
|
21453
|
+
create_time_seconds?: number | undefined;
|
|
21454
|
+
update_time_seconds?: number | undefined;
|
|
21455
|
+
mode?: number | undefined;
|
|
21456
|
+
hide_editted?: boolean | undefined;
|
|
21457
|
+
is_public?: boolean | undefined;
|
|
21458
|
+
topic_id?: string | undefined;
|
|
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;
|
|
21140
21471
|
} & {
|
|
21141
21472
|
id?: string | undefined;
|
|
21142
21473
|
creator_id?: string | undefined;
|
|
@@ -21146,7 +21477,85 @@ export declare const SdTopic: {
|
|
|
21146
21477
|
status?: number | undefined;
|
|
21147
21478
|
create_time?: Date | undefined;
|
|
21148
21479
|
update_time?: Date | undefined;
|
|
21149
|
-
|
|
21480
|
+
message?: ({
|
|
21481
|
+
clan_id?: string | undefined;
|
|
21482
|
+
channel_id?: string | undefined;
|
|
21483
|
+
message_id?: string | undefined;
|
|
21484
|
+
code?: number | undefined;
|
|
21485
|
+
sender_id?: string | undefined;
|
|
21486
|
+
username?: string | undefined;
|
|
21487
|
+
avatar?: string | undefined;
|
|
21488
|
+
content?: string | undefined;
|
|
21489
|
+
create_time?: Date | undefined;
|
|
21490
|
+
update_time?: Date | undefined;
|
|
21491
|
+
channel_label?: string | undefined;
|
|
21492
|
+
clan_logo?: string | undefined;
|
|
21493
|
+
category_name?: string | undefined;
|
|
21494
|
+
display_name?: string | undefined;
|
|
21495
|
+
clan_nick?: string | undefined;
|
|
21496
|
+
clan_avatar?: string | undefined;
|
|
21497
|
+
reactions?: string | undefined;
|
|
21498
|
+
mentions?: string | undefined;
|
|
21499
|
+
attachments?: string | undefined;
|
|
21500
|
+
references?: string | undefined;
|
|
21501
|
+
referenced_message?: string | undefined;
|
|
21502
|
+
create_time_seconds?: number | undefined;
|
|
21503
|
+
update_time_seconds?: number | undefined;
|
|
21504
|
+
mode?: number | undefined;
|
|
21505
|
+
hide_editted?: boolean | undefined;
|
|
21506
|
+
is_public?: boolean | undefined;
|
|
21507
|
+
topic_id?: string | undefined;
|
|
21508
|
+
} & {
|
|
21509
|
+
clan_id?: string | undefined;
|
|
21510
|
+
channel_id?: string | undefined;
|
|
21511
|
+
message_id?: string | undefined;
|
|
21512
|
+
code?: number | undefined;
|
|
21513
|
+
sender_id?: string | undefined;
|
|
21514
|
+
username?: string | undefined;
|
|
21515
|
+
avatar?: string | undefined;
|
|
21516
|
+
content?: string | undefined;
|
|
21517
|
+
create_time?: Date | undefined;
|
|
21518
|
+
update_time?: Date | undefined;
|
|
21519
|
+
channel_label?: string | undefined;
|
|
21520
|
+
clan_logo?: string | undefined;
|
|
21521
|
+
category_name?: string | undefined;
|
|
21522
|
+
display_name?: string | undefined;
|
|
21523
|
+
clan_nick?: string | undefined;
|
|
21524
|
+
clan_avatar?: string | undefined;
|
|
21525
|
+
reactions?: string | undefined;
|
|
21526
|
+
mentions?: string | undefined;
|
|
21527
|
+
attachments?: string | undefined;
|
|
21528
|
+
references?: string | undefined;
|
|
21529
|
+
referenced_message?: string | undefined;
|
|
21530
|
+
create_time_seconds?: number | undefined;
|
|
21531
|
+
update_time_seconds?: number | undefined;
|
|
21532
|
+
mode?: number | undefined;
|
|
21533
|
+
hide_editted?: boolean | undefined;
|
|
21534
|
+
is_public?: boolean | undefined;
|
|
21535
|
+
topic_id?: string | undefined;
|
|
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;
|
|
21150
21559
|
};
|
|
21151
21560
|
export declare const SdTopicRequest: {
|
|
21152
21561
|
encode(message: SdTopicRequest, writer?: _m0.Writer): _m0.Writer;
|
|
@@ -21188,6 +21597,46 @@ export declare const SdTopicList: {
|
|
|
21188
21597
|
status?: number | undefined;
|
|
21189
21598
|
create_time?: Date | undefined;
|
|
21190
21599
|
update_time?: Date | undefined;
|
|
21600
|
+
message?: {
|
|
21601
|
+
clan_id?: string | undefined;
|
|
21602
|
+
channel_id?: string | undefined;
|
|
21603
|
+
message_id?: string | undefined;
|
|
21604
|
+
code?: number | undefined;
|
|
21605
|
+
sender_id?: string | undefined;
|
|
21606
|
+
username?: string | undefined;
|
|
21607
|
+
avatar?: string | undefined;
|
|
21608
|
+
content?: string | undefined;
|
|
21609
|
+
create_time?: Date | undefined;
|
|
21610
|
+
update_time?: Date | undefined;
|
|
21611
|
+
channel_label?: string | undefined;
|
|
21612
|
+
clan_logo?: string | undefined;
|
|
21613
|
+
category_name?: string | undefined;
|
|
21614
|
+
display_name?: string | undefined;
|
|
21615
|
+
clan_nick?: string | undefined;
|
|
21616
|
+
clan_avatar?: string | undefined;
|
|
21617
|
+
reactions?: string | undefined;
|
|
21618
|
+
mentions?: string | undefined;
|
|
21619
|
+
attachments?: string | undefined;
|
|
21620
|
+
references?: string | undefined;
|
|
21621
|
+
referenced_message?: string | undefined;
|
|
21622
|
+
create_time_seconds?: number | undefined;
|
|
21623
|
+
update_time_seconds?: number | undefined;
|
|
21624
|
+
mode?: number | undefined;
|
|
21625
|
+
hide_editted?: boolean | undefined;
|
|
21626
|
+
is_public?: boolean | undefined;
|
|
21627
|
+
topic_id?: string | undefined;
|
|
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;
|
|
21191
21640
|
}[] | undefined;
|
|
21192
21641
|
} & {
|
|
21193
21642
|
count?: number | undefined;
|
|
@@ -21200,6 +21649,46 @@ export declare const SdTopicList: {
|
|
|
21200
21649
|
status?: number | undefined;
|
|
21201
21650
|
create_time?: Date | undefined;
|
|
21202
21651
|
update_time?: Date | undefined;
|
|
21652
|
+
message?: {
|
|
21653
|
+
clan_id?: string | undefined;
|
|
21654
|
+
channel_id?: string | undefined;
|
|
21655
|
+
message_id?: string | undefined;
|
|
21656
|
+
code?: number | undefined;
|
|
21657
|
+
sender_id?: string | undefined;
|
|
21658
|
+
username?: string | undefined;
|
|
21659
|
+
avatar?: string | undefined;
|
|
21660
|
+
content?: string | undefined;
|
|
21661
|
+
create_time?: Date | undefined;
|
|
21662
|
+
update_time?: Date | undefined;
|
|
21663
|
+
channel_label?: string | undefined;
|
|
21664
|
+
clan_logo?: string | undefined;
|
|
21665
|
+
category_name?: string | undefined;
|
|
21666
|
+
display_name?: string | undefined;
|
|
21667
|
+
clan_nick?: string | undefined;
|
|
21668
|
+
clan_avatar?: string | undefined;
|
|
21669
|
+
reactions?: string | undefined;
|
|
21670
|
+
mentions?: string | undefined;
|
|
21671
|
+
attachments?: string | undefined;
|
|
21672
|
+
references?: string | undefined;
|
|
21673
|
+
referenced_message?: string | undefined;
|
|
21674
|
+
create_time_seconds?: number | undefined;
|
|
21675
|
+
update_time_seconds?: number | undefined;
|
|
21676
|
+
mode?: number | undefined;
|
|
21677
|
+
hide_editted?: boolean | undefined;
|
|
21678
|
+
is_public?: boolean | undefined;
|
|
21679
|
+
topic_id?: string | undefined;
|
|
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;
|
|
21203
21692
|
}[] & ({
|
|
21204
21693
|
id?: string | undefined;
|
|
21205
21694
|
creator_id?: string | undefined;
|
|
@@ -21209,6 +21698,46 @@ export declare const SdTopicList: {
|
|
|
21209
21698
|
status?: number | undefined;
|
|
21210
21699
|
create_time?: Date | undefined;
|
|
21211
21700
|
update_time?: Date | undefined;
|
|
21701
|
+
message?: {
|
|
21702
|
+
clan_id?: string | undefined;
|
|
21703
|
+
channel_id?: string | undefined;
|
|
21704
|
+
message_id?: string | undefined;
|
|
21705
|
+
code?: number | undefined;
|
|
21706
|
+
sender_id?: string | undefined;
|
|
21707
|
+
username?: string | undefined;
|
|
21708
|
+
avatar?: string | undefined;
|
|
21709
|
+
content?: string | undefined;
|
|
21710
|
+
create_time?: Date | undefined;
|
|
21711
|
+
update_time?: Date | undefined;
|
|
21712
|
+
channel_label?: string | undefined;
|
|
21713
|
+
clan_logo?: string | undefined;
|
|
21714
|
+
category_name?: string | undefined;
|
|
21715
|
+
display_name?: string | undefined;
|
|
21716
|
+
clan_nick?: string | undefined;
|
|
21717
|
+
clan_avatar?: string | undefined;
|
|
21718
|
+
reactions?: string | undefined;
|
|
21719
|
+
mentions?: string | undefined;
|
|
21720
|
+
attachments?: string | undefined;
|
|
21721
|
+
references?: string | undefined;
|
|
21722
|
+
referenced_message?: string | undefined;
|
|
21723
|
+
create_time_seconds?: number | undefined;
|
|
21724
|
+
update_time_seconds?: number | undefined;
|
|
21725
|
+
mode?: number | undefined;
|
|
21726
|
+
hide_editted?: boolean | undefined;
|
|
21727
|
+
is_public?: boolean | undefined;
|
|
21728
|
+
topic_id?: string | undefined;
|
|
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;
|
|
21212
21741
|
} & {
|
|
21213
21742
|
id?: string | undefined;
|
|
21214
21743
|
creator_id?: string | undefined;
|
|
@@ -21218,7 +21747,85 @@ export declare const SdTopicList: {
|
|
|
21218
21747
|
status?: number | undefined;
|
|
21219
21748
|
create_time?: Date | undefined;
|
|
21220
21749
|
update_time?: Date | undefined;
|
|
21221
|
-
|
|
21750
|
+
message?: ({
|
|
21751
|
+
clan_id?: string | undefined;
|
|
21752
|
+
channel_id?: string | undefined;
|
|
21753
|
+
message_id?: string | undefined;
|
|
21754
|
+
code?: number | undefined;
|
|
21755
|
+
sender_id?: string | undefined;
|
|
21756
|
+
username?: string | undefined;
|
|
21757
|
+
avatar?: string | undefined;
|
|
21758
|
+
content?: string | undefined;
|
|
21759
|
+
create_time?: Date | undefined;
|
|
21760
|
+
update_time?: Date | undefined;
|
|
21761
|
+
channel_label?: string | undefined;
|
|
21762
|
+
clan_logo?: string | undefined;
|
|
21763
|
+
category_name?: string | undefined;
|
|
21764
|
+
display_name?: string | undefined;
|
|
21765
|
+
clan_nick?: string | undefined;
|
|
21766
|
+
clan_avatar?: string | undefined;
|
|
21767
|
+
reactions?: string | undefined;
|
|
21768
|
+
mentions?: string | undefined;
|
|
21769
|
+
attachments?: string | undefined;
|
|
21770
|
+
references?: string | undefined;
|
|
21771
|
+
referenced_message?: string | undefined;
|
|
21772
|
+
create_time_seconds?: number | undefined;
|
|
21773
|
+
update_time_seconds?: number | undefined;
|
|
21774
|
+
mode?: number | undefined;
|
|
21775
|
+
hide_editted?: boolean | undefined;
|
|
21776
|
+
is_public?: boolean | undefined;
|
|
21777
|
+
topic_id?: string | undefined;
|
|
21778
|
+
} & {
|
|
21779
|
+
clan_id?: string | undefined;
|
|
21780
|
+
channel_id?: string | undefined;
|
|
21781
|
+
message_id?: string | undefined;
|
|
21782
|
+
code?: number | undefined;
|
|
21783
|
+
sender_id?: string | undefined;
|
|
21784
|
+
username?: string | undefined;
|
|
21785
|
+
avatar?: string | undefined;
|
|
21786
|
+
content?: string | undefined;
|
|
21787
|
+
create_time?: Date | undefined;
|
|
21788
|
+
update_time?: Date | undefined;
|
|
21789
|
+
channel_label?: string | undefined;
|
|
21790
|
+
clan_logo?: string | undefined;
|
|
21791
|
+
category_name?: string | undefined;
|
|
21792
|
+
display_name?: string | undefined;
|
|
21793
|
+
clan_nick?: string | undefined;
|
|
21794
|
+
clan_avatar?: string | undefined;
|
|
21795
|
+
reactions?: string | undefined;
|
|
21796
|
+
mentions?: string | undefined;
|
|
21797
|
+
attachments?: string | undefined;
|
|
21798
|
+
references?: string | undefined;
|
|
21799
|
+
referenced_message?: string | undefined;
|
|
21800
|
+
create_time_seconds?: number | undefined;
|
|
21801
|
+
update_time_seconds?: number | undefined;
|
|
21802
|
+
mode?: number | undefined;
|
|
21803
|
+
hide_editted?: boolean | undefined;
|
|
21804
|
+
is_public?: boolean | undefined;
|
|
21805
|
+
topic_id?: string | undefined;
|
|
21806
|
+
} & { [K in Exclude<keyof I["topics"][number]["message"], keyof ChannelMessage>]: never; }) | undefined;
|
|
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 {
|
|
21222
21829
|
id?: string | undefined;
|
|
21223
21830
|
creator_id?: string | undefined;
|
|
21224
21831
|
message_id?: string | undefined;
|
|
@@ -21227,8 +21834,48 @@ export declare const SdTopicList: {
|
|
|
21227
21834
|
status?: number | undefined;
|
|
21228
21835
|
create_time?: Date | undefined;
|
|
21229
21836
|
update_time?: Date | undefined;
|
|
21837
|
+
message?: {
|
|
21838
|
+
clan_id?: string | undefined;
|
|
21839
|
+
channel_id?: string | undefined;
|
|
21840
|
+
message_id?: string | undefined;
|
|
21841
|
+
code?: number | undefined;
|
|
21842
|
+
sender_id?: string | undefined;
|
|
21843
|
+
username?: string | undefined;
|
|
21844
|
+
avatar?: string | undefined;
|
|
21845
|
+
content?: string | undefined;
|
|
21846
|
+
create_time?: Date | undefined;
|
|
21847
|
+
update_time?: Date | undefined;
|
|
21848
|
+
channel_label?: string | undefined;
|
|
21849
|
+
clan_logo?: string | undefined;
|
|
21850
|
+
category_name?: string | undefined;
|
|
21851
|
+
display_name?: string | undefined;
|
|
21852
|
+
clan_nick?: string | undefined;
|
|
21853
|
+
clan_avatar?: string | undefined;
|
|
21854
|
+
reactions?: string | undefined;
|
|
21855
|
+
mentions?: string | undefined;
|
|
21856
|
+
attachments?: string | undefined;
|
|
21857
|
+
references?: string | undefined;
|
|
21858
|
+
referenced_message?: string | undefined;
|
|
21859
|
+
create_time_seconds?: number | undefined;
|
|
21860
|
+
update_time_seconds?: number | undefined;
|
|
21861
|
+
mode?: number | undefined;
|
|
21862
|
+
hide_editted?: boolean | undefined;
|
|
21863
|
+
is_public?: boolean | undefined;
|
|
21864
|
+
topic_id?: string | undefined;
|
|
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;
|
|
21230
21877
|
}[]>]: never; }) | undefined;
|
|
21231
|
-
} & { [
|
|
21878
|
+
} & { [K_5 in Exclude<keyof I, keyof SdTopicList>]: never; }>(base?: I | undefined): SdTopicList;
|
|
21232
21879
|
fromPartial<I_1 extends {
|
|
21233
21880
|
count?: number | undefined;
|
|
21234
21881
|
topics?: {
|
|
@@ -21240,6 +21887,46 @@ export declare const SdTopicList: {
|
|
|
21240
21887
|
status?: number | undefined;
|
|
21241
21888
|
create_time?: Date | undefined;
|
|
21242
21889
|
update_time?: Date | undefined;
|
|
21890
|
+
message?: {
|
|
21891
|
+
clan_id?: string | undefined;
|
|
21892
|
+
channel_id?: string | undefined;
|
|
21893
|
+
message_id?: string | undefined;
|
|
21894
|
+
code?: number | undefined;
|
|
21895
|
+
sender_id?: string | undefined;
|
|
21896
|
+
username?: string | undefined;
|
|
21897
|
+
avatar?: string | undefined;
|
|
21898
|
+
content?: string | undefined;
|
|
21899
|
+
create_time?: Date | undefined;
|
|
21900
|
+
update_time?: Date | undefined;
|
|
21901
|
+
channel_label?: string | undefined;
|
|
21902
|
+
clan_logo?: string | undefined;
|
|
21903
|
+
category_name?: string | undefined;
|
|
21904
|
+
display_name?: string | undefined;
|
|
21905
|
+
clan_nick?: string | undefined;
|
|
21906
|
+
clan_avatar?: string | undefined;
|
|
21907
|
+
reactions?: string | undefined;
|
|
21908
|
+
mentions?: string | undefined;
|
|
21909
|
+
attachments?: string | undefined;
|
|
21910
|
+
references?: string | undefined;
|
|
21911
|
+
referenced_message?: string | undefined;
|
|
21912
|
+
create_time_seconds?: number | undefined;
|
|
21913
|
+
update_time_seconds?: number | undefined;
|
|
21914
|
+
mode?: number | undefined;
|
|
21915
|
+
hide_editted?: boolean | undefined;
|
|
21916
|
+
is_public?: boolean | undefined;
|
|
21917
|
+
topic_id?: string | undefined;
|
|
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;
|
|
21243
21930
|
}[] | undefined;
|
|
21244
21931
|
} & {
|
|
21245
21932
|
count?: number | undefined;
|
|
@@ -21252,6 +21939,46 @@ export declare const SdTopicList: {
|
|
|
21252
21939
|
status?: number | undefined;
|
|
21253
21940
|
create_time?: Date | undefined;
|
|
21254
21941
|
update_time?: Date | undefined;
|
|
21942
|
+
message?: {
|
|
21943
|
+
clan_id?: string | undefined;
|
|
21944
|
+
channel_id?: string | undefined;
|
|
21945
|
+
message_id?: string | undefined;
|
|
21946
|
+
code?: number | undefined;
|
|
21947
|
+
sender_id?: string | undefined;
|
|
21948
|
+
username?: string | undefined;
|
|
21949
|
+
avatar?: string | undefined;
|
|
21950
|
+
content?: string | undefined;
|
|
21951
|
+
create_time?: Date | undefined;
|
|
21952
|
+
update_time?: Date | undefined;
|
|
21953
|
+
channel_label?: string | undefined;
|
|
21954
|
+
clan_logo?: string | undefined;
|
|
21955
|
+
category_name?: string | undefined;
|
|
21956
|
+
display_name?: string | undefined;
|
|
21957
|
+
clan_nick?: string | undefined;
|
|
21958
|
+
clan_avatar?: string | undefined;
|
|
21959
|
+
reactions?: string | undefined;
|
|
21960
|
+
mentions?: string | undefined;
|
|
21961
|
+
attachments?: string | undefined;
|
|
21962
|
+
references?: string | undefined;
|
|
21963
|
+
referenced_message?: string | undefined;
|
|
21964
|
+
create_time_seconds?: number | undefined;
|
|
21965
|
+
update_time_seconds?: number | undefined;
|
|
21966
|
+
mode?: number | undefined;
|
|
21967
|
+
hide_editted?: boolean | undefined;
|
|
21968
|
+
is_public?: boolean | undefined;
|
|
21969
|
+
topic_id?: string | undefined;
|
|
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;
|
|
21255
21982
|
}[] & ({
|
|
21256
21983
|
id?: string | undefined;
|
|
21257
21984
|
creator_id?: string | undefined;
|
|
@@ -21261,6 +21988,46 @@ export declare const SdTopicList: {
|
|
|
21261
21988
|
status?: number | undefined;
|
|
21262
21989
|
create_time?: Date | undefined;
|
|
21263
21990
|
update_time?: Date | undefined;
|
|
21991
|
+
message?: {
|
|
21992
|
+
clan_id?: string | undefined;
|
|
21993
|
+
channel_id?: string | undefined;
|
|
21994
|
+
message_id?: string | undefined;
|
|
21995
|
+
code?: number | undefined;
|
|
21996
|
+
sender_id?: string | undefined;
|
|
21997
|
+
username?: string | undefined;
|
|
21998
|
+
avatar?: string | undefined;
|
|
21999
|
+
content?: string | undefined;
|
|
22000
|
+
create_time?: Date | undefined;
|
|
22001
|
+
update_time?: Date | undefined;
|
|
22002
|
+
channel_label?: string | undefined;
|
|
22003
|
+
clan_logo?: string | undefined;
|
|
22004
|
+
category_name?: string | undefined;
|
|
22005
|
+
display_name?: string | undefined;
|
|
22006
|
+
clan_nick?: string | undefined;
|
|
22007
|
+
clan_avatar?: string | undefined;
|
|
22008
|
+
reactions?: string | undefined;
|
|
22009
|
+
mentions?: string | undefined;
|
|
22010
|
+
attachments?: string | undefined;
|
|
22011
|
+
references?: string | undefined;
|
|
22012
|
+
referenced_message?: string | undefined;
|
|
22013
|
+
create_time_seconds?: number | undefined;
|
|
22014
|
+
update_time_seconds?: number | undefined;
|
|
22015
|
+
mode?: number | undefined;
|
|
22016
|
+
hide_editted?: boolean | undefined;
|
|
22017
|
+
is_public?: boolean | undefined;
|
|
22018
|
+
topic_id?: string | undefined;
|
|
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;
|
|
21264
22031
|
} & {
|
|
21265
22032
|
id?: string | undefined;
|
|
21266
22033
|
creator_id?: string | undefined;
|
|
@@ -21270,7 +22037,85 @@ export declare const SdTopicList: {
|
|
|
21270
22037
|
status?: number | undefined;
|
|
21271
22038
|
create_time?: Date | undefined;
|
|
21272
22039
|
update_time?: Date | undefined;
|
|
21273
|
-
|
|
22040
|
+
message?: ({
|
|
22041
|
+
clan_id?: string | undefined;
|
|
22042
|
+
channel_id?: string | undefined;
|
|
22043
|
+
message_id?: string | undefined;
|
|
22044
|
+
code?: number | undefined;
|
|
22045
|
+
sender_id?: string | undefined;
|
|
22046
|
+
username?: string | undefined;
|
|
22047
|
+
avatar?: string | undefined;
|
|
22048
|
+
content?: string | undefined;
|
|
22049
|
+
create_time?: Date | undefined;
|
|
22050
|
+
update_time?: Date | undefined;
|
|
22051
|
+
channel_label?: string | undefined;
|
|
22052
|
+
clan_logo?: string | undefined;
|
|
22053
|
+
category_name?: string | undefined;
|
|
22054
|
+
display_name?: string | undefined;
|
|
22055
|
+
clan_nick?: string | undefined;
|
|
22056
|
+
clan_avatar?: string | undefined;
|
|
22057
|
+
reactions?: string | undefined;
|
|
22058
|
+
mentions?: string | undefined;
|
|
22059
|
+
attachments?: string | undefined;
|
|
22060
|
+
references?: string | undefined;
|
|
22061
|
+
referenced_message?: string | undefined;
|
|
22062
|
+
create_time_seconds?: number | undefined;
|
|
22063
|
+
update_time_seconds?: number | undefined;
|
|
22064
|
+
mode?: number | undefined;
|
|
22065
|
+
hide_editted?: boolean | undefined;
|
|
22066
|
+
is_public?: boolean | undefined;
|
|
22067
|
+
topic_id?: string | undefined;
|
|
22068
|
+
} & {
|
|
22069
|
+
clan_id?: string | undefined;
|
|
22070
|
+
channel_id?: string | undefined;
|
|
22071
|
+
message_id?: string | undefined;
|
|
22072
|
+
code?: number | undefined;
|
|
22073
|
+
sender_id?: string | undefined;
|
|
22074
|
+
username?: string | undefined;
|
|
22075
|
+
avatar?: string | undefined;
|
|
22076
|
+
content?: string | undefined;
|
|
22077
|
+
create_time?: Date | undefined;
|
|
22078
|
+
update_time?: Date | undefined;
|
|
22079
|
+
channel_label?: string | undefined;
|
|
22080
|
+
clan_logo?: string | undefined;
|
|
22081
|
+
category_name?: string | undefined;
|
|
22082
|
+
display_name?: string | undefined;
|
|
22083
|
+
clan_nick?: string | undefined;
|
|
22084
|
+
clan_avatar?: string | undefined;
|
|
22085
|
+
reactions?: string | undefined;
|
|
22086
|
+
mentions?: string | undefined;
|
|
22087
|
+
attachments?: string | undefined;
|
|
22088
|
+
references?: string | undefined;
|
|
22089
|
+
referenced_message?: string | undefined;
|
|
22090
|
+
create_time_seconds?: number | undefined;
|
|
22091
|
+
update_time_seconds?: number | undefined;
|
|
22092
|
+
mode?: number | undefined;
|
|
22093
|
+
hide_editted?: boolean | undefined;
|
|
22094
|
+
is_public?: boolean | undefined;
|
|
22095
|
+
topic_id?: string | undefined;
|
|
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 {
|
|
21274
22119
|
id?: string | undefined;
|
|
21275
22120
|
creator_id?: string | undefined;
|
|
21276
22121
|
message_id?: string | undefined;
|
|
@@ -21279,8 +22124,48 @@ export declare const SdTopicList: {
|
|
|
21279
22124
|
status?: number | undefined;
|
|
21280
22125
|
create_time?: Date | undefined;
|
|
21281
22126
|
update_time?: Date | undefined;
|
|
22127
|
+
message?: {
|
|
22128
|
+
clan_id?: string | undefined;
|
|
22129
|
+
channel_id?: string | undefined;
|
|
22130
|
+
message_id?: string | undefined;
|
|
22131
|
+
code?: number | undefined;
|
|
22132
|
+
sender_id?: string | undefined;
|
|
22133
|
+
username?: string | undefined;
|
|
22134
|
+
avatar?: string | undefined;
|
|
22135
|
+
content?: string | undefined;
|
|
22136
|
+
create_time?: Date | undefined;
|
|
22137
|
+
update_time?: Date | undefined;
|
|
22138
|
+
channel_label?: string | undefined;
|
|
22139
|
+
clan_logo?: string | undefined;
|
|
22140
|
+
category_name?: string | undefined;
|
|
22141
|
+
display_name?: string | undefined;
|
|
22142
|
+
clan_nick?: string | undefined;
|
|
22143
|
+
clan_avatar?: string | undefined;
|
|
22144
|
+
reactions?: string | undefined;
|
|
22145
|
+
mentions?: string | undefined;
|
|
22146
|
+
attachments?: string | undefined;
|
|
22147
|
+
references?: string | undefined;
|
|
22148
|
+
referenced_message?: string | undefined;
|
|
22149
|
+
create_time_seconds?: number | undefined;
|
|
22150
|
+
update_time_seconds?: number | undefined;
|
|
22151
|
+
mode?: number | undefined;
|
|
22152
|
+
hide_editted?: boolean | undefined;
|
|
22153
|
+
is_public?: boolean | undefined;
|
|
22154
|
+
topic_id?: string | undefined;
|
|
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;
|
|
21282
22167
|
}[]>]: never; }) | undefined;
|
|
21283
|
-
} & { [
|
|
22168
|
+
} & { [K_11 in Exclude<keyof I_1, keyof SdTopicList>]: never; }>(object: I_1): SdTopicList;
|
|
21284
22169
|
};
|
|
21285
22170
|
export declare const ListSdTopicRequest: {
|
|
21286
22171
|
encode(message: ListSdTopicRequest, writer?: _m0.Writer): _m0.Writer;
|
|
@@ -21288,20 +22173,36 @@ export declare const ListSdTopicRequest: {
|
|
|
21288
22173
|
fromJSON(object: any): ListSdTopicRequest;
|
|
21289
22174
|
toJSON(message: ListSdTopicRequest): unknown;
|
|
21290
22175
|
create<I extends {
|
|
21291
|
-
|
|
22176
|
+
clan_id?: string | undefined;
|
|
21292
22177
|
limit?: number | undefined;
|
|
21293
22178
|
} & {
|
|
21294
|
-
|
|
22179
|
+
clan_id?: string | undefined;
|
|
21295
22180
|
limit?: number | undefined;
|
|
21296
22181
|
} & { [K in Exclude<keyof I, keyof ListSdTopicRequest>]: never; }>(base?: I | undefined): ListSdTopicRequest;
|
|
21297
22182
|
fromPartial<I_1 extends {
|
|
21298
|
-
|
|
22183
|
+
clan_id?: string | undefined;
|
|
21299
22184
|
limit?: number | undefined;
|
|
21300
22185
|
} & {
|
|
21301
|
-
|
|
22186
|
+
clan_id?: string | undefined;
|
|
21302
22187
|
limit?: number | undefined;
|
|
21303
22188
|
} & { [K_1 in Exclude<keyof I_1, keyof ListSdTopicRequest>]: never; }>(object: I_1): ListSdTopicRequest;
|
|
21304
22189
|
};
|
|
22190
|
+
export declare const SdTopicDetailRequest: {
|
|
22191
|
+
encode(message: SdTopicDetailRequest, writer?: _m0.Writer): _m0.Writer;
|
|
22192
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): SdTopicDetailRequest;
|
|
22193
|
+
fromJSON(object: any): SdTopicDetailRequest;
|
|
22194
|
+
toJSON(message: SdTopicDetailRequest): unknown;
|
|
22195
|
+
create<I extends {
|
|
22196
|
+
topic_id?: string | undefined;
|
|
22197
|
+
} & {
|
|
22198
|
+
topic_id?: string | undefined;
|
|
22199
|
+
} & { [K in Exclude<keyof I, "topic_id">]: never; }>(base?: I | undefined): SdTopicDetailRequest;
|
|
22200
|
+
fromPartial<I_1 extends {
|
|
22201
|
+
topic_id?: string | undefined;
|
|
22202
|
+
} & {
|
|
22203
|
+
topic_id?: string | undefined;
|
|
22204
|
+
} & { [K_1 in Exclude<keyof I_1, "topic_id">]: never; }>(object: I_1): SdTopicDetailRequest;
|
|
22205
|
+
};
|
|
21305
22206
|
export declare const DeleteSdTopicRequest: {
|
|
21306
22207
|
encode(message: DeleteSdTopicRequest, writer?: _m0.Writer): _m0.Writer;
|
|
21307
22208
|
decode(input: _m0.Reader | Uint8Array, length?: number): DeleteSdTopicRequest;
|