mezon-js-protobuf 1.8.22 → 1.8.24
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/api/api.ts +200 -275
- package/dist/mezon-js-protobuf/api/api.d.ts +129 -148
- package/dist/mezon-js-protobuf/rtapi/realtime.d.ts +695 -593
- package/dist/mezon-js-protobuf.cjs.js +84 -9
- package/dist/mezon-js-protobuf.esm.mjs +84 -9
- package/package.json +1 -1
- package/rtapi/realtime.ts +36 -0
|
@@ -511,6 +511,8 @@ export interface ChannelUserList_ChannelUser {
|
|
|
511
511
|
clan_avatar: string;
|
|
512
512
|
/** clan Id */
|
|
513
513
|
clan_id: string;
|
|
514
|
+
/** added by */
|
|
515
|
+
added_by: string;
|
|
514
516
|
}
|
|
515
517
|
/** A list of users belonging to a channel, along with their role. */
|
|
516
518
|
export interface VoiceChannelUser {
|
|
@@ -982,6 +984,10 @@ export interface ClanDesc {
|
|
|
982
984
|
onboarding_banner: string;
|
|
983
985
|
/** clan order */
|
|
984
986
|
clan_order: number;
|
|
987
|
+
/** is community */
|
|
988
|
+
is_community: boolean;
|
|
989
|
+
/** community banner */
|
|
990
|
+
community_banner: string;
|
|
985
991
|
}
|
|
986
992
|
/** Clan information */
|
|
987
993
|
export interface CreateClanDescRequest {
|
|
@@ -1000,7 +1006,7 @@ export interface UpdateClanDescRequest {
|
|
|
1000
1006
|
/** Clan logo */
|
|
1001
1007
|
logo: string;
|
|
1002
1008
|
/** Clan banner */
|
|
1003
|
-
banner: string;
|
|
1009
|
+
banner: string | undefined;
|
|
1004
1010
|
/** Clan status */
|
|
1005
1011
|
status: number;
|
|
1006
1012
|
/** Is onboarding. */
|
|
@@ -1008,7 +1014,11 @@ export interface UpdateClanDescRequest {
|
|
|
1008
1014
|
/** Welcome channel id. */
|
|
1009
1015
|
welcome_channel_id: string;
|
|
1010
1016
|
/** Onboarding_banner. */
|
|
1011
|
-
onboarding_banner: string;
|
|
1017
|
+
onboarding_banner: string | undefined;
|
|
1018
|
+
/** Enable community. */
|
|
1019
|
+
is_community: boolean | undefined;
|
|
1020
|
+
/** Community banner. */
|
|
1021
|
+
community_banner: string | undefined;
|
|
1012
1022
|
}
|
|
1013
1023
|
/** Delete a clan the user has access to. */
|
|
1014
1024
|
export interface DeleteClanDescRequest {
|
|
@@ -1449,8 +1459,14 @@ export interface NotificationSetting {
|
|
|
1449
1459
|
}
|
|
1450
1460
|
/** */
|
|
1451
1461
|
export interface DeletePinMessage {
|
|
1462
|
+
/** */
|
|
1463
|
+
id: string;
|
|
1452
1464
|
/** */
|
|
1453
1465
|
message_id: string;
|
|
1466
|
+
/** */
|
|
1467
|
+
channel_id: string;
|
|
1468
|
+
/** */
|
|
1469
|
+
clan_id: string;
|
|
1454
1470
|
}
|
|
1455
1471
|
/** */
|
|
1456
1472
|
export interface PinMessage {
|
|
@@ -1845,11 +1861,11 @@ export interface SearchMessageDocument {
|
|
|
1845
1861
|
/** The message ID. */
|
|
1846
1862
|
message_id: string;
|
|
1847
1863
|
/** The channel ID. */
|
|
1848
|
-
channel_id:
|
|
1864
|
+
channel_id: string;
|
|
1849
1865
|
/** The clan ID. */
|
|
1850
|
-
clan_id:
|
|
1866
|
+
clan_id: string;
|
|
1851
1867
|
/** The user ID of sender. */
|
|
1852
|
-
sender_id:
|
|
1868
|
+
sender_id: string;
|
|
1853
1869
|
/** Message content */
|
|
1854
1870
|
content: string;
|
|
1855
1871
|
/** Mention users */
|
|
@@ -2660,9 +2676,9 @@ export interface TokenSentEvent {
|
|
|
2660
2676
|
amount: number;
|
|
2661
2677
|
/** note */
|
|
2662
2678
|
note: string;
|
|
2663
|
-
/**
|
|
2679
|
+
/** extra attribute */
|
|
2664
2680
|
extra_attribute: string;
|
|
2665
|
-
/**
|
|
2681
|
+
/** transaction id */
|
|
2666
2682
|
transaction_id: string;
|
|
2667
2683
|
}
|
|
2668
2684
|
export interface UnlockItemRequest {
|
|
@@ -3108,17 +3124,6 @@ export interface ForSaleItem {
|
|
|
3108
3124
|
export interface ForSaleItemList {
|
|
3109
3125
|
for_sale_items: ForSaleItem[];
|
|
3110
3126
|
}
|
|
3111
|
-
export interface ListChannelMemberRequest {
|
|
3112
|
-
channel_id: string;
|
|
3113
|
-
clan_id: string;
|
|
3114
|
-
}
|
|
3115
|
-
export interface ChannelMemberDetail {
|
|
3116
|
-
member_id: string;
|
|
3117
|
-
added_by: string;
|
|
3118
|
-
}
|
|
3119
|
-
export interface ChannelMemberList {
|
|
3120
|
-
channel_members: ChannelMemberDetail[];
|
|
3121
|
-
}
|
|
3122
3127
|
export declare const Account: {
|
|
3123
3128
|
encode(message: Account, writer?: _m0.Writer): _m0.Writer;
|
|
3124
3129
|
decode(input: _m0.Reader | Uint8Array, length?: number): Account;
|
|
@@ -6167,6 +6172,7 @@ export declare const ChannelUserList: {
|
|
|
6167
6172
|
clan_nick?: string | undefined;
|
|
6168
6173
|
clan_avatar?: string | undefined;
|
|
6169
6174
|
clan_id?: string | undefined;
|
|
6175
|
+
added_by?: string | undefined;
|
|
6170
6176
|
}[] | undefined;
|
|
6171
6177
|
cursor?: string | undefined;
|
|
6172
6178
|
channel_id?: string | undefined;
|
|
@@ -6179,6 +6185,7 @@ export declare const ChannelUserList: {
|
|
|
6179
6185
|
clan_nick?: string | undefined;
|
|
6180
6186
|
clan_avatar?: string | undefined;
|
|
6181
6187
|
clan_id?: string | undefined;
|
|
6188
|
+
added_by?: string | undefined;
|
|
6182
6189
|
}[] & ({
|
|
6183
6190
|
user_id?: string | undefined;
|
|
6184
6191
|
role_id?: string[] | undefined;
|
|
@@ -6187,6 +6194,7 @@ export declare const ChannelUserList: {
|
|
|
6187
6194
|
clan_nick?: string | undefined;
|
|
6188
6195
|
clan_avatar?: string | undefined;
|
|
6189
6196
|
clan_id?: string | undefined;
|
|
6197
|
+
added_by?: string | undefined;
|
|
6190
6198
|
} & {
|
|
6191
6199
|
user_id?: string | undefined;
|
|
6192
6200
|
role_id?: (string[] & string[] & { [K in Exclude<keyof I["channel_users"][number]["role_id"], keyof string[]>]: never; }) | undefined;
|
|
@@ -6195,6 +6203,7 @@ export declare const ChannelUserList: {
|
|
|
6195
6203
|
clan_nick?: string | undefined;
|
|
6196
6204
|
clan_avatar?: string | undefined;
|
|
6197
6205
|
clan_id?: string | undefined;
|
|
6206
|
+
added_by?: string | undefined;
|
|
6198
6207
|
} & { [K_1 in Exclude<keyof I["channel_users"][number], keyof ChannelUserList_ChannelUser>]: never; })[] & { [K_2 in Exclude<keyof I["channel_users"], keyof {
|
|
6199
6208
|
user_id?: string | undefined;
|
|
6200
6209
|
role_id?: string[] | undefined;
|
|
@@ -6203,6 +6212,7 @@ export declare const ChannelUserList: {
|
|
|
6203
6212
|
clan_nick?: string | undefined;
|
|
6204
6213
|
clan_avatar?: string | undefined;
|
|
6205
6214
|
clan_id?: string | undefined;
|
|
6215
|
+
added_by?: string | undefined;
|
|
6206
6216
|
}[]>]: never; }) | undefined;
|
|
6207
6217
|
cursor?: string | undefined;
|
|
6208
6218
|
channel_id?: string | undefined;
|
|
@@ -6216,6 +6226,7 @@ export declare const ChannelUserList: {
|
|
|
6216
6226
|
clan_nick?: string | undefined;
|
|
6217
6227
|
clan_avatar?: string | undefined;
|
|
6218
6228
|
clan_id?: string | undefined;
|
|
6229
|
+
added_by?: string | undefined;
|
|
6219
6230
|
}[] | undefined;
|
|
6220
6231
|
cursor?: string | undefined;
|
|
6221
6232
|
channel_id?: string | undefined;
|
|
@@ -6228,6 +6239,7 @@ export declare const ChannelUserList: {
|
|
|
6228
6239
|
clan_nick?: string | undefined;
|
|
6229
6240
|
clan_avatar?: string | undefined;
|
|
6230
6241
|
clan_id?: string | undefined;
|
|
6242
|
+
added_by?: string | undefined;
|
|
6231
6243
|
}[] & ({
|
|
6232
6244
|
user_id?: string | undefined;
|
|
6233
6245
|
role_id?: string[] | undefined;
|
|
@@ -6236,6 +6248,7 @@ export declare const ChannelUserList: {
|
|
|
6236
6248
|
clan_nick?: string | undefined;
|
|
6237
6249
|
clan_avatar?: string | undefined;
|
|
6238
6250
|
clan_id?: string | undefined;
|
|
6251
|
+
added_by?: string | undefined;
|
|
6239
6252
|
} & {
|
|
6240
6253
|
user_id?: string | undefined;
|
|
6241
6254
|
role_id?: (string[] & string[] & { [K_4 in Exclude<keyof I_1["channel_users"][number]["role_id"], keyof string[]>]: never; }) | undefined;
|
|
@@ -6244,6 +6257,7 @@ export declare const ChannelUserList: {
|
|
|
6244
6257
|
clan_nick?: string | undefined;
|
|
6245
6258
|
clan_avatar?: string | undefined;
|
|
6246
6259
|
clan_id?: string | undefined;
|
|
6260
|
+
added_by?: string | undefined;
|
|
6247
6261
|
} & { [K_5 in Exclude<keyof I_1["channel_users"][number], keyof ChannelUserList_ChannelUser>]: never; })[] & { [K_6 in Exclude<keyof I_1["channel_users"], keyof {
|
|
6248
6262
|
user_id?: string | undefined;
|
|
6249
6263
|
role_id?: string[] | undefined;
|
|
@@ -6252,6 +6266,7 @@ export declare const ChannelUserList: {
|
|
|
6252
6266
|
clan_nick?: string | undefined;
|
|
6253
6267
|
clan_avatar?: string | undefined;
|
|
6254
6268
|
clan_id?: string | undefined;
|
|
6269
|
+
added_by?: string | undefined;
|
|
6255
6270
|
}[]>]: never; }) | undefined;
|
|
6256
6271
|
cursor?: string | undefined;
|
|
6257
6272
|
channel_id?: string | undefined;
|
|
@@ -6270,6 +6285,7 @@ export declare const ChannelUserList_ChannelUser: {
|
|
|
6270
6285
|
clan_nick?: string | undefined;
|
|
6271
6286
|
clan_avatar?: string | undefined;
|
|
6272
6287
|
clan_id?: string | undefined;
|
|
6288
|
+
added_by?: string | undefined;
|
|
6273
6289
|
} & {
|
|
6274
6290
|
user_id?: string | undefined;
|
|
6275
6291
|
role_id?: (string[] & string[] & { [K in Exclude<keyof I["role_id"], keyof string[]>]: never; }) | undefined;
|
|
@@ -6278,6 +6294,7 @@ export declare const ChannelUserList_ChannelUser: {
|
|
|
6278
6294
|
clan_nick?: string | undefined;
|
|
6279
6295
|
clan_avatar?: string | undefined;
|
|
6280
6296
|
clan_id?: string | undefined;
|
|
6297
|
+
added_by?: string | undefined;
|
|
6281
6298
|
} & { [K_1 in Exclude<keyof I, keyof ChannelUserList_ChannelUser>]: never; }>(base?: I | undefined): ChannelUserList_ChannelUser;
|
|
6282
6299
|
fromPartial<I_1 extends {
|
|
6283
6300
|
user_id?: string | undefined;
|
|
@@ -6287,6 +6304,7 @@ export declare const ChannelUserList_ChannelUser: {
|
|
|
6287
6304
|
clan_nick?: string | undefined;
|
|
6288
6305
|
clan_avatar?: string | undefined;
|
|
6289
6306
|
clan_id?: string | undefined;
|
|
6307
|
+
added_by?: string | undefined;
|
|
6290
6308
|
} & {
|
|
6291
6309
|
user_id?: string | undefined;
|
|
6292
6310
|
role_id?: (string[] & string[] & { [K_2 in Exclude<keyof I_1["role_id"], keyof string[]>]: never; }) | undefined;
|
|
@@ -6295,6 +6313,7 @@ export declare const ChannelUserList_ChannelUser: {
|
|
|
6295
6313
|
clan_nick?: string | undefined;
|
|
6296
6314
|
clan_avatar?: string | undefined;
|
|
6297
6315
|
clan_id?: string | undefined;
|
|
6316
|
+
added_by?: string | undefined;
|
|
6298
6317
|
} & { [K_3 in Exclude<keyof I_1, keyof ChannelUserList_ChannelUser>]: never; }>(object: I_1): ChannelUserList_ChannelUser;
|
|
6299
6318
|
};
|
|
6300
6319
|
export declare const VoiceChannelUser: {
|
|
@@ -9760,6 +9779,8 @@ export declare const ClanDesc: {
|
|
|
9760
9779
|
welcome_channel_id?: string | undefined;
|
|
9761
9780
|
onboarding_banner?: string | undefined;
|
|
9762
9781
|
clan_order?: number | undefined;
|
|
9782
|
+
is_community?: boolean | undefined;
|
|
9783
|
+
community_banner?: string | undefined;
|
|
9763
9784
|
} & {
|
|
9764
9785
|
creator_id?: string | undefined;
|
|
9765
9786
|
clan_name?: string | undefined;
|
|
@@ -9772,6 +9793,8 @@ export declare const ClanDesc: {
|
|
|
9772
9793
|
welcome_channel_id?: string | undefined;
|
|
9773
9794
|
onboarding_banner?: string | undefined;
|
|
9774
9795
|
clan_order?: number | undefined;
|
|
9796
|
+
is_community?: boolean | undefined;
|
|
9797
|
+
community_banner?: string | undefined;
|
|
9775
9798
|
} & { [K in Exclude<keyof I, keyof ClanDesc>]: never; }>(base?: I | undefined): ClanDesc;
|
|
9776
9799
|
fromPartial<I_1 extends {
|
|
9777
9800
|
creator_id?: string | undefined;
|
|
@@ -9785,6 +9808,8 @@ export declare const ClanDesc: {
|
|
|
9785
9808
|
welcome_channel_id?: string | undefined;
|
|
9786
9809
|
onboarding_banner?: string | undefined;
|
|
9787
9810
|
clan_order?: number | undefined;
|
|
9811
|
+
is_community?: boolean | undefined;
|
|
9812
|
+
community_banner?: string | undefined;
|
|
9788
9813
|
} & {
|
|
9789
9814
|
creator_id?: string | undefined;
|
|
9790
9815
|
clan_name?: string | undefined;
|
|
@@ -9797,6 +9822,8 @@ export declare const ClanDesc: {
|
|
|
9797
9822
|
welcome_channel_id?: string | undefined;
|
|
9798
9823
|
onboarding_banner?: string | undefined;
|
|
9799
9824
|
clan_order?: number | undefined;
|
|
9825
|
+
is_community?: boolean | undefined;
|
|
9826
|
+
community_banner?: string | undefined;
|
|
9800
9827
|
} & { [K_1 in Exclude<keyof I_1, keyof ClanDesc>]: never; }>(object: I_1): ClanDesc;
|
|
9801
9828
|
};
|
|
9802
9829
|
export declare const CreateClanDescRequest: {
|
|
@@ -9837,6 +9864,8 @@ export declare const UpdateClanDescRequest: {
|
|
|
9837
9864
|
is_onboarding?: boolean | undefined;
|
|
9838
9865
|
welcome_channel_id?: string | undefined;
|
|
9839
9866
|
onboarding_banner?: string | undefined;
|
|
9867
|
+
is_community?: boolean | undefined;
|
|
9868
|
+
community_banner?: string | undefined;
|
|
9840
9869
|
} & {
|
|
9841
9870
|
clan_id?: string | undefined;
|
|
9842
9871
|
clan_name?: string | undefined;
|
|
@@ -9846,6 +9875,8 @@ export declare const UpdateClanDescRequest: {
|
|
|
9846
9875
|
is_onboarding?: boolean | undefined;
|
|
9847
9876
|
welcome_channel_id?: string | undefined;
|
|
9848
9877
|
onboarding_banner?: string | undefined;
|
|
9878
|
+
is_community?: boolean | undefined;
|
|
9879
|
+
community_banner?: string | undefined;
|
|
9849
9880
|
} & { [K in Exclude<keyof I, keyof UpdateClanDescRequest>]: never; }>(base?: I | undefined): UpdateClanDescRequest;
|
|
9850
9881
|
fromPartial<I_1 extends {
|
|
9851
9882
|
clan_id?: string | undefined;
|
|
@@ -9856,6 +9887,8 @@ export declare const UpdateClanDescRequest: {
|
|
|
9856
9887
|
is_onboarding?: boolean | undefined;
|
|
9857
9888
|
welcome_channel_id?: string | undefined;
|
|
9858
9889
|
onboarding_banner?: string | undefined;
|
|
9890
|
+
is_community?: boolean | undefined;
|
|
9891
|
+
community_banner?: string | undefined;
|
|
9859
9892
|
} & {
|
|
9860
9893
|
clan_id?: string | undefined;
|
|
9861
9894
|
clan_name?: string | undefined;
|
|
@@ -9865,6 +9898,8 @@ export declare const UpdateClanDescRequest: {
|
|
|
9865
9898
|
is_onboarding?: boolean | undefined;
|
|
9866
9899
|
welcome_channel_id?: string | undefined;
|
|
9867
9900
|
onboarding_banner?: string | undefined;
|
|
9901
|
+
is_community?: boolean | undefined;
|
|
9902
|
+
community_banner?: string | undefined;
|
|
9868
9903
|
} & { [K_1 in Exclude<keyof I_1, keyof UpdateClanDescRequest>]: never; }>(object: I_1): UpdateClanDescRequest;
|
|
9869
9904
|
};
|
|
9870
9905
|
export declare const DeleteClanDescRequest: {
|
|
@@ -9925,6 +9960,8 @@ export declare const ClanDescList: {
|
|
|
9925
9960
|
welcome_channel_id?: string | undefined;
|
|
9926
9961
|
onboarding_banner?: string | undefined;
|
|
9927
9962
|
clan_order?: number | undefined;
|
|
9963
|
+
is_community?: boolean | undefined;
|
|
9964
|
+
community_banner?: string | undefined;
|
|
9928
9965
|
}[] | undefined;
|
|
9929
9966
|
} & {
|
|
9930
9967
|
clandesc?: ({
|
|
@@ -9939,6 +9976,8 @@ export declare const ClanDescList: {
|
|
|
9939
9976
|
welcome_channel_id?: string | undefined;
|
|
9940
9977
|
onboarding_banner?: string | undefined;
|
|
9941
9978
|
clan_order?: number | undefined;
|
|
9979
|
+
is_community?: boolean | undefined;
|
|
9980
|
+
community_banner?: string | undefined;
|
|
9942
9981
|
}[] & ({
|
|
9943
9982
|
creator_id?: string | undefined;
|
|
9944
9983
|
clan_name?: string | undefined;
|
|
@@ -9951,6 +9990,8 @@ export declare const ClanDescList: {
|
|
|
9951
9990
|
welcome_channel_id?: string | undefined;
|
|
9952
9991
|
onboarding_banner?: string | undefined;
|
|
9953
9992
|
clan_order?: number | undefined;
|
|
9993
|
+
is_community?: boolean | undefined;
|
|
9994
|
+
community_banner?: string | undefined;
|
|
9954
9995
|
} & {
|
|
9955
9996
|
creator_id?: string | undefined;
|
|
9956
9997
|
clan_name?: string | undefined;
|
|
@@ -9963,6 +10004,8 @@ export declare const ClanDescList: {
|
|
|
9963
10004
|
welcome_channel_id?: string | undefined;
|
|
9964
10005
|
onboarding_banner?: string | undefined;
|
|
9965
10006
|
clan_order?: number | undefined;
|
|
10007
|
+
is_community?: boolean | undefined;
|
|
10008
|
+
community_banner?: string | undefined;
|
|
9966
10009
|
} & { [K in Exclude<keyof I["clandesc"][number], keyof ClanDesc>]: never; })[] & { [K_1 in Exclude<keyof I["clandesc"], keyof {
|
|
9967
10010
|
creator_id?: string | undefined;
|
|
9968
10011
|
clan_name?: string | undefined;
|
|
@@ -9975,6 +10018,8 @@ export declare const ClanDescList: {
|
|
|
9975
10018
|
welcome_channel_id?: string | undefined;
|
|
9976
10019
|
onboarding_banner?: string | undefined;
|
|
9977
10020
|
clan_order?: number | undefined;
|
|
10021
|
+
is_community?: boolean | undefined;
|
|
10022
|
+
community_banner?: string | undefined;
|
|
9978
10023
|
}[]>]: never; }) | undefined;
|
|
9979
10024
|
} & { [K_2 in Exclude<keyof I, "clandesc">]: never; }>(base?: I | undefined): ClanDescList;
|
|
9980
10025
|
fromPartial<I_1 extends {
|
|
@@ -9990,6 +10035,8 @@ export declare const ClanDescList: {
|
|
|
9990
10035
|
welcome_channel_id?: string | undefined;
|
|
9991
10036
|
onboarding_banner?: string | undefined;
|
|
9992
10037
|
clan_order?: number | undefined;
|
|
10038
|
+
is_community?: boolean | undefined;
|
|
10039
|
+
community_banner?: string | undefined;
|
|
9993
10040
|
}[] | undefined;
|
|
9994
10041
|
} & {
|
|
9995
10042
|
clandesc?: ({
|
|
@@ -10004,6 +10051,8 @@ export declare const ClanDescList: {
|
|
|
10004
10051
|
welcome_channel_id?: string | undefined;
|
|
10005
10052
|
onboarding_banner?: string | undefined;
|
|
10006
10053
|
clan_order?: number | undefined;
|
|
10054
|
+
is_community?: boolean | undefined;
|
|
10055
|
+
community_banner?: string | undefined;
|
|
10007
10056
|
}[] & ({
|
|
10008
10057
|
creator_id?: string | undefined;
|
|
10009
10058
|
clan_name?: string | undefined;
|
|
@@ -10016,6 +10065,8 @@ export declare const ClanDescList: {
|
|
|
10016
10065
|
welcome_channel_id?: string | undefined;
|
|
10017
10066
|
onboarding_banner?: string | undefined;
|
|
10018
10067
|
clan_order?: number | undefined;
|
|
10068
|
+
is_community?: boolean | undefined;
|
|
10069
|
+
community_banner?: string | undefined;
|
|
10019
10070
|
} & {
|
|
10020
10071
|
creator_id?: string | undefined;
|
|
10021
10072
|
clan_name?: string | undefined;
|
|
@@ -10028,6 +10079,8 @@ export declare const ClanDescList: {
|
|
|
10028
10079
|
welcome_channel_id?: string | undefined;
|
|
10029
10080
|
onboarding_banner?: string | undefined;
|
|
10030
10081
|
clan_order?: number | undefined;
|
|
10082
|
+
is_community?: boolean | undefined;
|
|
10083
|
+
community_banner?: string | undefined;
|
|
10031
10084
|
} & { [K_3 in Exclude<keyof I_1["clandesc"][number], keyof ClanDesc>]: never; })[] & { [K_4 in Exclude<keyof I_1["clandesc"], keyof {
|
|
10032
10085
|
creator_id?: string | undefined;
|
|
10033
10086
|
clan_name?: string | undefined;
|
|
@@ -10040,6 +10093,8 @@ export declare const ClanDescList: {
|
|
|
10040
10093
|
welcome_channel_id?: string | undefined;
|
|
10041
10094
|
onboarding_banner?: string | undefined;
|
|
10042
10095
|
clan_order?: number | undefined;
|
|
10096
|
+
is_community?: boolean | undefined;
|
|
10097
|
+
community_banner?: string | undefined;
|
|
10043
10098
|
}[]>]: never; }) | undefined;
|
|
10044
10099
|
} & { [K_5 in Exclude<keyof I_1, "clandesc">]: never; }>(object: I_1): ClanDescList;
|
|
10045
10100
|
};
|
|
@@ -12703,15 +12758,27 @@ export declare const DeletePinMessage: {
|
|
|
12703
12758
|
fromJSON(object: any): DeletePinMessage;
|
|
12704
12759
|
toJSON(message: DeletePinMessage): unknown;
|
|
12705
12760
|
create<I extends {
|
|
12761
|
+
id?: string | undefined;
|
|
12706
12762
|
message_id?: string | undefined;
|
|
12763
|
+
channel_id?: string | undefined;
|
|
12764
|
+
clan_id?: string | undefined;
|
|
12707
12765
|
} & {
|
|
12766
|
+
id?: string | undefined;
|
|
12708
12767
|
message_id?: string | undefined;
|
|
12709
|
-
|
|
12768
|
+
channel_id?: string | undefined;
|
|
12769
|
+
clan_id?: string | undefined;
|
|
12770
|
+
} & { [K in Exclude<keyof I, keyof DeletePinMessage>]: never; }>(base?: I | undefined): DeletePinMessage;
|
|
12710
12771
|
fromPartial<I_1 extends {
|
|
12772
|
+
id?: string | undefined;
|
|
12711
12773
|
message_id?: string | undefined;
|
|
12774
|
+
channel_id?: string | undefined;
|
|
12775
|
+
clan_id?: string | undefined;
|
|
12712
12776
|
} & {
|
|
12777
|
+
id?: string | undefined;
|
|
12713
12778
|
message_id?: string | undefined;
|
|
12714
|
-
|
|
12779
|
+
channel_id?: string | undefined;
|
|
12780
|
+
clan_id?: string | undefined;
|
|
12781
|
+
} & { [K_1 in Exclude<keyof I_1, keyof DeletePinMessage>]: never; }>(object: I_1): DeletePinMessage;
|
|
12715
12782
|
};
|
|
12716
12783
|
export declare const PinMessage: {
|
|
12717
12784
|
encode(message: PinMessage, writer?: _m0.Writer): _m0.Writer;
|
|
@@ -15308,9 +15375,9 @@ export declare const SearchMessageDocument: {
|
|
|
15308
15375
|
toJSON(message: SearchMessageDocument): unknown;
|
|
15309
15376
|
create<I extends {
|
|
15310
15377
|
message_id?: string | undefined;
|
|
15311
|
-
channel_id?:
|
|
15312
|
-
clan_id?:
|
|
15313
|
-
sender_id?:
|
|
15378
|
+
channel_id?: string | undefined;
|
|
15379
|
+
clan_id?: string | undefined;
|
|
15380
|
+
sender_id?: string | undefined;
|
|
15314
15381
|
content?: string | undefined;
|
|
15315
15382
|
mentions?: string | undefined;
|
|
15316
15383
|
reactions?: string | undefined;
|
|
@@ -15334,9 +15401,9 @@ export declare const SearchMessageDocument: {
|
|
|
15334
15401
|
avatar_url?: string | undefined;
|
|
15335
15402
|
} & {
|
|
15336
15403
|
message_id?: string | undefined;
|
|
15337
|
-
channel_id?:
|
|
15338
|
-
clan_id?:
|
|
15339
|
-
sender_id?:
|
|
15404
|
+
channel_id?: string | undefined;
|
|
15405
|
+
clan_id?: string | undefined;
|
|
15406
|
+
sender_id?: string | undefined;
|
|
15340
15407
|
content?: string | undefined;
|
|
15341
15408
|
mentions?: string | undefined;
|
|
15342
15409
|
reactions?: string | undefined;
|
|
@@ -15385,9 +15452,9 @@ export declare const SearchMessageDocument: {
|
|
|
15385
15452
|
} & { [K_2 in Exclude<keyof I, keyof SearchMessageDocument>]: never; }>(base?: I | undefined): SearchMessageDocument;
|
|
15386
15453
|
fromPartial<I_1 extends {
|
|
15387
15454
|
message_id?: string | undefined;
|
|
15388
|
-
channel_id?:
|
|
15389
|
-
clan_id?:
|
|
15390
|
-
sender_id?:
|
|
15455
|
+
channel_id?: string | undefined;
|
|
15456
|
+
clan_id?: string | undefined;
|
|
15457
|
+
sender_id?: string | undefined;
|
|
15391
15458
|
content?: string | undefined;
|
|
15392
15459
|
mentions?: string | undefined;
|
|
15393
15460
|
reactions?: string | undefined;
|
|
@@ -15411,9 +15478,9 @@ export declare const SearchMessageDocument: {
|
|
|
15411
15478
|
avatar_url?: string | undefined;
|
|
15412
15479
|
} & {
|
|
15413
15480
|
message_id?: string | undefined;
|
|
15414
|
-
channel_id?:
|
|
15415
|
-
clan_id?:
|
|
15416
|
-
sender_id?:
|
|
15481
|
+
channel_id?: string | undefined;
|
|
15482
|
+
clan_id?: string | undefined;
|
|
15483
|
+
sender_id?: string | undefined;
|
|
15417
15484
|
content?: string | undefined;
|
|
15418
15485
|
mentions?: string | undefined;
|
|
15419
15486
|
reactions?: string | undefined;
|
|
@@ -15469,9 +15536,9 @@ export declare const SearchMessageResponse: {
|
|
|
15469
15536
|
create<I extends {
|
|
15470
15537
|
messages?: {
|
|
15471
15538
|
message_id?: string | undefined;
|
|
15472
|
-
channel_id?:
|
|
15473
|
-
clan_id?:
|
|
15474
|
-
sender_id?:
|
|
15539
|
+
channel_id?: string | undefined;
|
|
15540
|
+
clan_id?: string | undefined;
|
|
15541
|
+
sender_id?: string | undefined;
|
|
15475
15542
|
content?: string | undefined;
|
|
15476
15543
|
mentions?: string | undefined;
|
|
15477
15544
|
reactions?: string | undefined;
|
|
@@ -15498,9 +15565,9 @@ export declare const SearchMessageResponse: {
|
|
|
15498
15565
|
} & {
|
|
15499
15566
|
messages?: ({
|
|
15500
15567
|
message_id?: string | undefined;
|
|
15501
|
-
channel_id?:
|
|
15502
|
-
clan_id?:
|
|
15503
|
-
sender_id?:
|
|
15568
|
+
channel_id?: string | undefined;
|
|
15569
|
+
clan_id?: string | undefined;
|
|
15570
|
+
sender_id?: string | undefined;
|
|
15504
15571
|
content?: string | undefined;
|
|
15505
15572
|
mentions?: string | undefined;
|
|
15506
15573
|
reactions?: string | undefined;
|
|
@@ -15524,9 +15591,9 @@ export declare const SearchMessageResponse: {
|
|
|
15524
15591
|
avatar_url?: string | undefined;
|
|
15525
15592
|
}[] & ({
|
|
15526
15593
|
message_id?: string | undefined;
|
|
15527
|
-
channel_id?:
|
|
15528
|
-
clan_id?:
|
|
15529
|
-
sender_id?:
|
|
15594
|
+
channel_id?: string | undefined;
|
|
15595
|
+
clan_id?: string | undefined;
|
|
15596
|
+
sender_id?: string | undefined;
|
|
15530
15597
|
content?: string | undefined;
|
|
15531
15598
|
mentions?: string | undefined;
|
|
15532
15599
|
reactions?: string | undefined;
|
|
@@ -15550,9 +15617,9 @@ export declare const SearchMessageResponse: {
|
|
|
15550
15617
|
avatar_url?: string | undefined;
|
|
15551
15618
|
} & {
|
|
15552
15619
|
message_id?: string | undefined;
|
|
15553
|
-
channel_id?:
|
|
15554
|
-
clan_id?:
|
|
15555
|
-
sender_id?:
|
|
15620
|
+
channel_id?: string | undefined;
|
|
15621
|
+
clan_id?: string | undefined;
|
|
15622
|
+
sender_id?: string | undefined;
|
|
15556
15623
|
content?: string | undefined;
|
|
15557
15624
|
mentions?: string | undefined;
|
|
15558
15625
|
reactions?: string | undefined;
|
|
@@ -15600,9 +15667,9 @@ export declare const SearchMessageResponse: {
|
|
|
15600
15667
|
avatar_url?: string | undefined;
|
|
15601
15668
|
} & { [K_2 in Exclude<keyof I["messages"][number], keyof SearchMessageDocument>]: never; })[] & { [K_3 in Exclude<keyof I["messages"], keyof {
|
|
15602
15669
|
message_id?: string | undefined;
|
|
15603
|
-
channel_id?:
|
|
15604
|
-
clan_id?:
|
|
15605
|
-
sender_id?:
|
|
15670
|
+
channel_id?: string | undefined;
|
|
15671
|
+
clan_id?: string | undefined;
|
|
15672
|
+
sender_id?: string | undefined;
|
|
15606
15673
|
content?: string | undefined;
|
|
15607
15674
|
mentions?: string | undefined;
|
|
15608
15675
|
reactions?: string | undefined;
|
|
@@ -15630,9 +15697,9 @@ export declare const SearchMessageResponse: {
|
|
|
15630
15697
|
fromPartial<I_1 extends {
|
|
15631
15698
|
messages?: {
|
|
15632
15699
|
message_id?: string | undefined;
|
|
15633
|
-
channel_id?:
|
|
15634
|
-
clan_id?:
|
|
15635
|
-
sender_id?:
|
|
15700
|
+
channel_id?: string | undefined;
|
|
15701
|
+
clan_id?: string | undefined;
|
|
15702
|
+
sender_id?: string | undefined;
|
|
15636
15703
|
content?: string | undefined;
|
|
15637
15704
|
mentions?: string | undefined;
|
|
15638
15705
|
reactions?: string | undefined;
|
|
@@ -15659,9 +15726,9 @@ export declare const SearchMessageResponse: {
|
|
|
15659
15726
|
} & {
|
|
15660
15727
|
messages?: ({
|
|
15661
15728
|
message_id?: string | undefined;
|
|
15662
|
-
channel_id?:
|
|
15663
|
-
clan_id?:
|
|
15664
|
-
sender_id?:
|
|
15729
|
+
channel_id?: string | undefined;
|
|
15730
|
+
clan_id?: string | undefined;
|
|
15731
|
+
sender_id?: string | undefined;
|
|
15665
15732
|
content?: string | undefined;
|
|
15666
15733
|
mentions?: string | undefined;
|
|
15667
15734
|
reactions?: string | undefined;
|
|
@@ -15685,9 +15752,9 @@ export declare const SearchMessageResponse: {
|
|
|
15685
15752
|
avatar_url?: string | undefined;
|
|
15686
15753
|
}[] & ({
|
|
15687
15754
|
message_id?: string | undefined;
|
|
15688
|
-
channel_id?:
|
|
15689
|
-
clan_id?:
|
|
15690
|
-
sender_id?:
|
|
15755
|
+
channel_id?: string | undefined;
|
|
15756
|
+
clan_id?: string | undefined;
|
|
15757
|
+
sender_id?: string | undefined;
|
|
15691
15758
|
content?: string | undefined;
|
|
15692
15759
|
mentions?: string | undefined;
|
|
15693
15760
|
reactions?: string | undefined;
|
|
@@ -15711,9 +15778,9 @@ export declare const SearchMessageResponse: {
|
|
|
15711
15778
|
avatar_url?: string | undefined;
|
|
15712
15779
|
} & {
|
|
15713
15780
|
message_id?: string | undefined;
|
|
15714
|
-
channel_id?:
|
|
15715
|
-
clan_id?:
|
|
15716
|
-
sender_id?:
|
|
15781
|
+
channel_id?: string | undefined;
|
|
15782
|
+
clan_id?: string | undefined;
|
|
15783
|
+
sender_id?: string | undefined;
|
|
15717
15784
|
content?: string | undefined;
|
|
15718
15785
|
mentions?: string | undefined;
|
|
15719
15786
|
reactions?: string | undefined;
|
|
@@ -15761,9 +15828,9 @@ export declare const SearchMessageResponse: {
|
|
|
15761
15828
|
avatar_url?: string | undefined;
|
|
15762
15829
|
} & { [K_7 in Exclude<keyof I_1["messages"][number], keyof SearchMessageDocument>]: never; })[] & { [K_8 in Exclude<keyof I_1["messages"], keyof {
|
|
15763
15830
|
message_id?: string | undefined;
|
|
15764
|
-
channel_id?:
|
|
15765
|
-
clan_id?:
|
|
15766
|
-
sender_id?:
|
|
15831
|
+
channel_id?: string | undefined;
|
|
15832
|
+
clan_id?: string | undefined;
|
|
15833
|
+
sender_id?: string | undefined;
|
|
15767
15834
|
content?: string | undefined;
|
|
15768
15835
|
mentions?: string | undefined;
|
|
15769
15836
|
reactions?: string | undefined;
|
|
@@ -24649,92 +24716,6 @@ export declare const ForSaleItemList: {
|
|
|
24649
24716
|
}[]>]: never; }) | undefined;
|
|
24650
24717
|
} & { [K_5 in Exclude<keyof I_1, "for_sale_items">]: never; }>(object: I_1): ForSaleItemList;
|
|
24651
24718
|
};
|
|
24652
|
-
export declare const ListChannelMemberRequest: {
|
|
24653
|
-
encode(message: ListChannelMemberRequest, writer?: _m0.Writer): _m0.Writer;
|
|
24654
|
-
decode(input: _m0.Reader | Uint8Array, length?: number): ListChannelMemberRequest;
|
|
24655
|
-
fromJSON(object: any): ListChannelMemberRequest;
|
|
24656
|
-
toJSON(message: ListChannelMemberRequest): unknown;
|
|
24657
|
-
create<I extends {
|
|
24658
|
-
channel_id?: string | undefined;
|
|
24659
|
-
clan_id?: string | undefined;
|
|
24660
|
-
} & {
|
|
24661
|
-
channel_id?: string | undefined;
|
|
24662
|
-
clan_id?: string | undefined;
|
|
24663
|
-
} & { [K in Exclude<keyof I, keyof ListChannelMemberRequest>]: never; }>(base?: I | undefined): ListChannelMemberRequest;
|
|
24664
|
-
fromPartial<I_1 extends {
|
|
24665
|
-
channel_id?: string | undefined;
|
|
24666
|
-
clan_id?: string | undefined;
|
|
24667
|
-
} & {
|
|
24668
|
-
channel_id?: string | undefined;
|
|
24669
|
-
clan_id?: string | undefined;
|
|
24670
|
-
} & { [K_1 in Exclude<keyof I_1, keyof ListChannelMemberRequest>]: never; }>(object: I_1): ListChannelMemberRequest;
|
|
24671
|
-
};
|
|
24672
|
-
export declare const ChannelMemberDetail: {
|
|
24673
|
-
encode(message: ChannelMemberDetail, writer?: _m0.Writer): _m0.Writer;
|
|
24674
|
-
decode(input: _m0.Reader | Uint8Array, length?: number): ChannelMemberDetail;
|
|
24675
|
-
fromJSON(object: any): ChannelMemberDetail;
|
|
24676
|
-
toJSON(message: ChannelMemberDetail): unknown;
|
|
24677
|
-
create<I extends {
|
|
24678
|
-
member_id?: string | undefined;
|
|
24679
|
-
added_by?: string | undefined;
|
|
24680
|
-
} & {
|
|
24681
|
-
member_id?: string | undefined;
|
|
24682
|
-
added_by?: string | undefined;
|
|
24683
|
-
} & { [K in Exclude<keyof I, keyof ChannelMemberDetail>]: never; }>(base?: I | undefined): ChannelMemberDetail;
|
|
24684
|
-
fromPartial<I_1 extends {
|
|
24685
|
-
member_id?: string | undefined;
|
|
24686
|
-
added_by?: string | undefined;
|
|
24687
|
-
} & {
|
|
24688
|
-
member_id?: string | undefined;
|
|
24689
|
-
added_by?: string | undefined;
|
|
24690
|
-
} & { [K_1 in Exclude<keyof I_1, keyof ChannelMemberDetail>]: never; }>(object: I_1): ChannelMemberDetail;
|
|
24691
|
-
};
|
|
24692
|
-
export declare const ChannelMemberList: {
|
|
24693
|
-
encode(message: ChannelMemberList, writer?: _m0.Writer): _m0.Writer;
|
|
24694
|
-
decode(input: _m0.Reader | Uint8Array, length?: number): ChannelMemberList;
|
|
24695
|
-
fromJSON(object: any): ChannelMemberList;
|
|
24696
|
-
toJSON(message: ChannelMemberList): unknown;
|
|
24697
|
-
create<I extends {
|
|
24698
|
-
channel_members?: {
|
|
24699
|
-
member_id?: string | undefined;
|
|
24700
|
-
added_by?: string | undefined;
|
|
24701
|
-
}[] | undefined;
|
|
24702
|
-
} & {
|
|
24703
|
-
channel_members?: ({
|
|
24704
|
-
member_id?: string | undefined;
|
|
24705
|
-
added_by?: string | undefined;
|
|
24706
|
-
}[] & ({
|
|
24707
|
-
member_id?: string | undefined;
|
|
24708
|
-
added_by?: string | undefined;
|
|
24709
|
-
} & {
|
|
24710
|
-
member_id?: string | undefined;
|
|
24711
|
-
added_by?: string | undefined;
|
|
24712
|
-
} & { [K in Exclude<keyof I["channel_members"][number], keyof ChannelMemberDetail>]: never; })[] & { [K_1 in Exclude<keyof I["channel_members"], keyof {
|
|
24713
|
-
member_id?: string | undefined;
|
|
24714
|
-
added_by?: string | undefined;
|
|
24715
|
-
}[]>]: never; }) | undefined;
|
|
24716
|
-
} & { [K_2 in Exclude<keyof I, "channel_members">]: never; }>(base?: I | undefined): ChannelMemberList;
|
|
24717
|
-
fromPartial<I_1 extends {
|
|
24718
|
-
channel_members?: {
|
|
24719
|
-
member_id?: string | undefined;
|
|
24720
|
-
added_by?: string | undefined;
|
|
24721
|
-
}[] | undefined;
|
|
24722
|
-
} & {
|
|
24723
|
-
channel_members?: ({
|
|
24724
|
-
member_id?: string | undefined;
|
|
24725
|
-
added_by?: string | undefined;
|
|
24726
|
-
}[] & ({
|
|
24727
|
-
member_id?: string | undefined;
|
|
24728
|
-
added_by?: string | undefined;
|
|
24729
|
-
} & {
|
|
24730
|
-
member_id?: string | undefined;
|
|
24731
|
-
added_by?: string | undefined;
|
|
24732
|
-
} & { [K_3 in Exclude<keyof I_1["channel_members"][number], keyof ChannelMemberDetail>]: never; })[] & { [K_4 in Exclude<keyof I_1["channel_members"], keyof {
|
|
24733
|
-
member_id?: string | undefined;
|
|
24734
|
-
added_by?: string | undefined;
|
|
24735
|
-
}[]>]: never; }) | undefined;
|
|
24736
|
-
} & { [K_5 in Exclude<keyof I_1, "channel_members">]: never; }>(object: I_1): ChannelMemberList;
|
|
24737
|
-
};
|
|
24738
24719
|
type Builtin = Date | Function | Uint8Array | string | number | boolean | undefined;
|
|
24739
24720
|
export type DeepPartial<T> = T extends Builtin ? T : T extends globalThis.Array<infer U> ? globalThis.Array<DeepPartial<U>> : T extends ReadonlyArray<infer U> ? ReadonlyArray<DeepPartial<U>> : T extends {} ? {
|
|
24740
24721
|
[K in keyof T]?: DeepPartial<T[K]>;
|