mezon-sdk 2.7.99 → 2.8.1
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 +564 -99
- package/dist/cjs/api/api.js +704 -52
- package/dist/cjs/api/api.js.map +1 -1
- package/dist/cjs/api.d.ts +5 -1
- package/dist/cjs/api.js +55 -0
- package/dist/cjs/api.js.map +1 -1
- package/dist/cjs/constants/enum.d.ts +7 -3
- package/dist/cjs/constants/enum.js +4 -0
- package/dist/cjs/constants/enum.js.map +1 -1
- package/dist/cjs/interfaces/socket.d.ts +42 -0
- package/dist/cjs/mezon-client/client/MezonClient.d.ts +2 -1
- package/dist/cjs/mezon-client/client/MezonClient.js +5 -1
- package/dist/cjs/mezon-client/client/MezonClient.js.map +1 -1
- package/dist/cjs/mezon-client/manager/socket_manager.js +1 -3
- package/dist/cjs/mezon-client/manager/socket_manager.js.map +1 -1
- package/dist/cjs/mezon-client/structures/Clan.d.ts +1 -0
- package/dist/cjs/mezon-client/structures/Clan.js +3 -0
- package/dist/cjs/mezon-client/structures/Clan.js.map +1 -1
- package/dist/cjs/mezon-client/structures/Message.d.ts +1 -1
- package/dist/cjs/mezon-client/structures/Message.js +3 -1
- package/dist/cjs/mezon-client/structures/Message.js.map +1 -1
- package/dist/cjs/mezon-client/structures/TextChannel.d.ts +3 -1
- package/dist/cjs/mezon-client/structures/TextChannel.js +30 -0
- package/dist/cjs/mezon-client/structures/TextChannel.js.map +1 -1
- package/dist/cjs/rtapi/realtime.d.ts +32313 -12006
- package/dist/cjs/rtapi/realtime.js +1471 -7
- package/dist/cjs/rtapi/realtime.js.map +1 -1
- package/dist/cjs/utils/helper.d.ts +2 -1
- package/dist/cjs/utils/helper.js +22 -1
- package/dist/cjs/utils/helper.js.map +1 -1
- package/dist/esm/api/api.d.ts +564 -99
- package/dist/esm/api/api.js +685 -43
- package/dist/esm/api/api.js.map +1 -1
- package/dist/esm/api.d.ts +5 -1
- package/dist/esm/api.js +55 -0
- package/dist/esm/api.js.map +1 -1
- package/dist/esm/constants/enum.d.ts +7 -3
- package/dist/esm/constants/enum.js +4 -0
- package/dist/esm/constants/enum.js.map +1 -1
- package/dist/esm/interfaces/socket.d.ts +42 -0
- package/dist/esm/mezon-client/client/MezonClient.d.ts +2 -1
- package/dist/esm/mezon-client/client/MezonClient.js +5 -1
- package/dist/esm/mezon-client/client/MezonClient.js.map +1 -1
- package/dist/esm/mezon-client/manager/socket_manager.js +1 -3
- package/dist/esm/mezon-client/manager/socket_manager.js.map +1 -1
- package/dist/esm/mezon-client/structures/Clan.d.ts +1 -0
- package/dist/esm/mezon-client/structures/Clan.js +3 -0
- package/dist/esm/mezon-client/structures/Clan.js.map +1 -1
- package/dist/esm/mezon-client/structures/Message.d.ts +1 -1
- package/dist/esm/mezon-client/structures/Message.js +3 -1
- package/dist/esm/mezon-client/structures/Message.js.map +1 -1
- package/dist/esm/mezon-client/structures/TextChannel.d.ts +3 -1
- package/dist/esm/mezon-client/structures/TextChannel.js +30 -1
- package/dist/esm/mezon-client/structures/TextChannel.js.map +1 -1
- package/dist/esm/rtapi/realtime.d.ts +32313 -12006
- package/dist/esm/rtapi/realtime.js +1464 -2
- package/dist/esm/rtapi/realtime.js.map +1 -1
- package/dist/esm/utils/helper.d.ts +2 -1
- package/dist/esm/utils/helper.js +20 -0
- package/dist/esm/utils/helper.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
|
@@ -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 {
|
|
@@ -889,6 +891,8 @@ export interface User {
|
|
|
889
891
|
dob: Date | undefined;
|
|
890
892
|
/** Mezone id */
|
|
891
893
|
mezon_id: string;
|
|
894
|
+
/** list clan nick name */
|
|
895
|
+
list_nick_names: string[];
|
|
892
896
|
}
|
|
893
897
|
/** A list of groups belonging to a user, along with the user's role in each group. */
|
|
894
898
|
export interface UserGroupList {
|
|
@@ -1919,6 +1923,8 @@ export interface ClanEmoji {
|
|
|
1919
1923
|
logo: string;
|
|
1920
1924
|
/** clan name */
|
|
1921
1925
|
clan_name: string;
|
|
1926
|
+
/** is for sale */
|
|
1927
|
+
is_for_sale: boolean;
|
|
1922
1928
|
}
|
|
1923
1929
|
export interface EmojiListedResponse {
|
|
1924
1930
|
emoji_list: ClanEmoji[];
|
|
@@ -1937,6 +1943,8 @@ export interface ClanSticker {
|
|
|
1937
1943
|
logo: string;
|
|
1938
1944
|
clan_name: string;
|
|
1939
1945
|
media_type: number;
|
|
1946
|
+
/** is for sale */
|
|
1947
|
+
is_for_sale: boolean;
|
|
1940
1948
|
}
|
|
1941
1949
|
export interface AllUsersAddChannelRequest {
|
|
1942
1950
|
channel_id: string;
|
|
@@ -1953,6 +1961,7 @@ export interface ClanEmojiCreateRequest {
|
|
|
1953
1961
|
shortname: string;
|
|
1954
1962
|
category: string;
|
|
1955
1963
|
id: string;
|
|
1964
|
+
is_for_sale: boolean;
|
|
1956
1965
|
}
|
|
1957
1966
|
export interface ClanEmojiGetByClanIdRequest {
|
|
1958
1967
|
clan_id: string;
|
|
@@ -2038,11 +2047,13 @@ export interface ClanStickerAddRequest {
|
|
|
2038
2047
|
source: string;
|
|
2039
2048
|
shortname: string;
|
|
2040
2049
|
category: string;
|
|
2041
|
-
clan_id:
|
|
2050
|
+
clan_id: string;
|
|
2042
2051
|
/** UNIQUE include type number */
|
|
2043
2052
|
id: string;
|
|
2044
2053
|
/** media type for image or audio */
|
|
2045
2054
|
media_type: number;
|
|
2055
|
+
/** is for sale */
|
|
2056
|
+
is_for_sale: boolean;
|
|
2046
2057
|
}
|
|
2047
2058
|
export interface ClanStickerListByClanIdRequest {
|
|
2048
2059
|
clan_id: string;
|
|
@@ -2147,6 +2158,8 @@ export interface UpdateAppRequest {
|
|
|
2147
2158
|
about: string;
|
|
2148
2159
|
/** App url. */
|
|
2149
2160
|
app_url: string;
|
|
2161
|
+
/** need update or not */
|
|
2162
|
+
is_shadow: string;
|
|
2150
2163
|
}
|
|
2151
2164
|
/** The identifier for an app. */
|
|
2152
2165
|
export interface AppId {
|
|
@@ -2654,9 +2667,14 @@ export interface TokenSentEvent {
|
|
|
2654
2667
|
/** */
|
|
2655
2668
|
transaction_id: string;
|
|
2656
2669
|
}
|
|
2657
|
-
export interface
|
|
2658
|
-
/**
|
|
2659
|
-
|
|
2670
|
+
export interface UnlockItemRequest {
|
|
2671
|
+
/** item id */
|
|
2672
|
+
item_id: string;
|
|
2673
|
+
/** item type */
|
|
2674
|
+
item_type: number;
|
|
2675
|
+
}
|
|
2676
|
+
export interface UnlockedItemResponse {
|
|
2677
|
+
source: string;
|
|
2660
2678
|
}
|
|
2661
2679
|
export interface ListOnboardingRequest {
|
|
2662
2680
|
/** clan id */
|
|
@@ -2884,7 +2902,12 @@ export interface WalletLedgerList {
|
|
|
2884
2902
|
}
|
|
2885
2903
|
export interface WalletLedgerListReq {
|
|
2886
2904
|
limit: number | undefined;
|
|
2887
|
-
|
|
2905
|
+
/**
|
|
2906
|
+
* filter = 0 for all
|
|
2907
|
+
* filter = 1 for sent
|
|
2908
|
+
* filter = 2 for recieve
|
|
2909
|
+
*/
|
|
2910
|
+
filter: number;
|
|
2888
2911
|
transaction_id: string;
|
|
2889
2912
|
page: number | undefined;
|
|
2890
2913
|
}
|
|
@@ -3003,7 +3026,7 @@ export interface MezonOauthClient {
|
|
|
3003
3026
|
userinfo_signed_response_alg: string;
|
|
3004
3027
|
}
|
|
3005
3028
|
export interface MezonOauthClientList {
|
|
3006
|
-
|
|
3029
|
+
list_mezon_oauth_client: MezonOauthClient[];
|
|
3007
3030
|
}
|
|
3008
3031
|
export interface GetMezonOauthClientRequest {
|
|
3009
3032
|
client_id: string;
|
|
@@ -3059,6 +3082,34 @@ export interface AccountMezon_VarsEntry {
|
|
|
3059
3082
|
key: string;
|
|
3060
3083
|
value: string;
|
|
3061
3084
|
}
|
|
3085
|
+
export interface QuickMenuAccess {
|
|
3086
|
+
id: string;
|
|
3087
|
+
bot_id: string;
|
|
3088
|
+
clan_id: string;
|
|
3089
|
+
channel_id: string;
|
|
3090
|
+
menu_name: string;
|
|
3091
|
+
background: string;
|
|
3092
|
+
action_msg: string;
|
|
3093
|
+
menu_type: number;
|
|
3094
|
+
}
|
|
3095
|
+
export interface ListQuickMenuAccessRequest {
|
|
3096
|
+
bot_id: string;
|
|
3097
|
+
channel_id: string;
|
|
3098
|
+
menu_type: number;
|
|
3099
|
+
}
|
|
3100
|
+
export interface QuickMenuAccessList {
|
|
3101
|
+
list_menus: QuickMenuAccess[];
|
|
3102
|
+
}
|
|
3103
|
+
export interface ListForSaleItemsRequest {
|
|
3104
|
+
page: number;
|
|
3105
|
+
}
|
|
3106
|
+
export interface ForSaleItem {
|
|
3107
|
+
type: number;
|
|
3108
|
+
preview_url: string;
|
|
3109
|
+
}
|
|
3110
|
+
export interface ForSaleItemList {
|
|
3111
|
+
for_sale_items: ForSaleItem[];
|
|
3112
|
+
}
|
|
3062
3113
|
export declare const Account: {
|
|
3063
3114
|
encode(message: Account, writer?: _m0.Writer): _m0.Writer;
|
|
3064
3115
|
decode(input: _m0.Reader | Uint8Array, length?: number): Account;
|
|
@@ -3088,6 +3139,7 @@ export declare const Account: {
|
|
|
3088
3139
|
is_mobile?: boolean | undefined;
|
|
3089
3140
|
dob?: Date | undefined;
|
|
3090
3141
|
mezon_id?: string | undefined;
|
|
3142
|
+
list_nick_names?: string[] | undefined;
|
|
3091
3143
|
} | undefined;
|
|
3092
3144
|
wallet?: string | undefined;
|
|
3093
3145
|
email?: string | undefined;
|
|
@@ -3121,6 +3173,7 @@ export declare const Account: {
|
|
|
3121
3173
|
is_mobile?: boolean | undefined;
|
|
3122
3174
|
dob?: Date | undefined;
|
|
3123
3175
|
mezon_id?: string | undefined;
|
|
3176
|
+
list_nick_names?: string[] | undefined;
|
|
3124
3177
|
} & {
|
|
3125
3178
|
id?: string | undefined;
|
|
3126
3179
|
username?: string | undefined;
|
|
@@ -3144,7 +3197,8 @@ export declare const Account: {
|
|
|
3144
3197
|
is_mobile?: boolean | undefined;
|
|
3145
3198
|
dob?: Date | undefined;
|
|
3146
3199
|
mezon_id?: string | undefined;
|
|
3147
|
-
|
|
3200
|
+
list_nick_names?: (string[] & string[] & { [K in Exclude<keyof I["user"]["list_nick_names"], keyof string[]>]: never; }) | undefined;
|
|
3201
|
+
} & { [K_1 in Exclude<keyof I["user"], keyof User>]: never; }) | undefined;
|
|
3148
3202
|
wallet?: string | undefined;
|
|
3149
3203
|
email?: string | undefined;
|
|
3150
3204
|
mezon_id?: string | undefined;
|
|
@@ -3153,7 +3207,7 @@ export declare const Account: {
|
|
|
3153
3207
|
logo?: string | undefined;
|
|
3154
3208
|
splash_screen?: string | undefined;
|
|
3155
3209
|
encrypt_private_key?: string | undefined;
|
|
3156
|
-
} & { [
|
|
3210
|
+
} & { [K_2 in Exclude<keyof I, keyof Account>]: never; }>(base?: I | undefined): Account;
|
|
3157
3211
|
fromPartial<I_1 extends {
|
|
3158
3212
|
user?: {
|
|
3159
3213
|
id?: string | undefined;
|
|
@@ -3178,6 +3232,7 @@ export declare const Account: {
|
|
|
3178
3232
|
is_mobile?: boolean | undefined;
|
|
3179
3233
|
dob?: Date | undefined;
|
|
3180
3234
|
mezon_id?: string | undefined;
|
|
3235
|
+
list_nick_names?: string[] | undefined;
|
|
3181
3236
|
} | undefined;
|
|
3182
3237
|
wallet?: string | undefined;
|
|
3183
3238
|
email?: string | undefined;
|
|
@@ -3211,6 +3266,7 @@ export declare const Account: {
|
|
|
3211
3266
|
is_mobile?: boolean | undefined;
|
|
3212
3267
|
dob?: Date | undefined;
|
|
3213
3268
|
mezon_id?: string | undefined;
|
|
3269
|
+
list_nick_names?: string[] | undefined;
|
|
3214
3270
|
} & {
|
|
3215
3271
|
id?: string | undefined;
|
|
3216
3272
|
username?: string | undefined;
|
|
@@ -3234,7 +3290,8 @@ export declare const Account: {
|
|
|
3234
3290
|
is_mobile?: boolean | undefined;
|
|
3235
3291
|
dob?: Date | undefined;
|
|
3236
3292
|
mezon_id?: string | undefined;
|
|
3237
|
-
|
|
3293
|
+
list_nick_names?: (string[] & string[] & { [K_3 in Exclude<keyof I_1["user"]["list_nick_names"], keyof string[]>]: never; }) | undefined;
|
|
3294
|
+
} & { [K_4 in Exclude<keyof I_1["user"], keyof User>]: never; }) | undefined;
|
|
3238
3295
|
wallet?: string | undefined;
|
|
3239
3296
|
email?: string | undefined;
|
|
3240
3297
|
mezon_id?: string | undefined;
|
|
@@ -3243,7 +3300,7 @@ export declare const Account: {
|
|
|
3243
3300
|
logo?: string | undefined;
|
|
3244
3301
|
splash_screen?: string | undefined;
|
|
3245
3302
|
encrypt_private_key?: string | undefined;
|
|
3246
|
-
} & { [
|
|
3303
|
+
} & { [K_5 in Exclude<keyof I_1, keyof Account>]: never; }>(object: I_1): Account;
|
|
3247
3304
|
};
|
|
3248
3305
|
export declare const AccountRefresh: {
|
|
3249
3306
|
encode(message: AccountRefresh, writer?: _m0.Writer): _m0.Writer;
|
|
@@ -4830,6 +4887,7 @@ export declare const Friend: {
|
|
|
4830
4887
|
is_mobile?: boolean | undefined;
|
|
4831
4888
|
dob?: Date | undefined;
|
|
4832
4889
|
mezon_id?: string | undefined;
|
|
4890
|
+
list_nick_names?: string[] | undefined;
|
|
4833
4891
|
} | undefined;
|
|
4834
4892
|
state?: number | undefined;
|
|
4835
4893
|
update_time?: Date | undefined;
|
|
@@ -4858,6 +4916,7 @@ export declare const Friend: {
|
|
|
4858
4916
|
is_mobile?: boolean | undefined;
|
|
4859
4917
|
dob?: Date | undefined;
|
|
4860
4918
|
mezon_id?: string | undefined;
|
|
4919
|
+
list_nick_names?: string[] | undefined;
|
|
4861
4920
|
} & {
|
|
4862
4921
|
id?: string | undefined;
|
|
4863
4922
|
username?: string | undefined;
|
|
@@ -4881,11 +4940,12 @@ export declare const Friend: {
|
|
|
4881
4940
|
is_mobile?: boolean | undefined;
|
|
4882
4941
|
dob?: Date | undefined;
|
|
4883
4942
|
mezon_id?: string | undefined;
|
|
4884
|
-
|
|
4943
|
+
list_nick_names?: (string[] & string[] & { [K in Exclude<keyof I["user"]["list_nick_names"], keyof string[]>]: never; }) | undefined;
|
|
4944
|
+
} & { [K_1 in Exclude<keyof I["user"], keyof User>]: never; }) | undefined;
|
|
4885
4945
|
state?: number | undefined;
|
|
4886
4946
|
update_time?: Date | undefined;
|
|
4887
4947
|
source_id?: string | undefined;
|
|
4888
|
-
} & { [
|
|
4948
|
+
} & { [K_2 in Exclude<keyof I, keyof Friend>]: never; }>(base?: I | undefined): Friend;
|
|
4889
4949
|
fromPartial<I_1 extends {
|
|
4890
4950
|
user?: {
|
|
4891
4951
|
id?: string | undefined;
|
|
@@ -4910,6 +4970,7 @@ export declare const Friend: {
|
|
|
4910
4970
|
is_mobile?: boolean | undefined;
|
|
4911
4971
|
dob?: Date | undefined;
|
|
4912
4972
|
mezon_id?: string | undefined;
|
|
4973
|
+
list_nick_names?: string[] | undefined;
|
|
4913
4974
|
} | undefined;
|
|
4914
4975
|
state?: number | undefined;
|
|
4915
4976
|
update_time?: Date | undefined;
|
|
@@ -4938,6 +4999,7 @@ export declare const Friend: {
|
|
|
4938
4999
|
is_mobile?: boolean | undefined;
|
|
4939
5000
|
dob?: Date | undefined;
|
|
4940
5001
|
mezon_id?: string | undefined;
|
|
5002
|
+
list_nick_names?: string[] | undefined;
|
|
4941
5003
|
} & {
|
|
4942
5004
|
id?: string | undefined;
|
|
4943
5005
|
username?: string | undefined;
|
|
@@ -4961,11 +5023,12 @@ export declare const Friend: {
|
|
|
4961
5023
|
is_mobile?: boolean | undefined;
|
|
4962
5024
|
dob?: Date | undefined;
|
|
4963
5025
|
mezon_id?: string | undefined;
|
|
4964
|
-
|
|
5026
|
+
list_nick_names?: (string[] & string[] & { [K_3 in Exclude<keyof I_1["user"]["list_nick_names"], keyof string[]>]: never; }) | undefined;
|
|
5027
|
+
} & { [K_4 in Exclude<keyof I_1["user"], keyof User>]: never; }) | undefined;
|
|
4965
5028
|
state?: number | undefined;
|
|
4966
5029
|
update_time?: Date | undefined;
|
|
4967
5030
|
source_id?: string | undefined;
|
|
4968
|
-
} & { [
|
|
5031
|
+
} & { [K_5 in Exclude<keyof I_1, keyof Friend>]: never; }>(object: I_1): Friend;
|
|
4969
5032
|
};
|
|
4970
5033
|
export declare const FriendList: {
|
|
4971
5034
|
encode(message: FriendList, writer?: _m0.Writer): _m0.Writer;
|
|
@@ -4997,6 +5060,7 @@ export declare const FriendList: {
|
|
|
4997
5060
|
is_mobile?: boolean | undefined;
|
|
4998
5061
|
dob?: Date | undefined;
|
|
4999
5062
|
mezon_id?: string | undefined;
|
|
5063
|
+
list_nick_names?: string[] | undefined;
|
|
5000
5064
|
} | undefined;
|
|
5001
5065
|
state?: number | undefined;
|
|
5002
5066
|
update_time?: Date | undefined;
|
|
@@ -5028,6 +5092,7 @@ export declare const FriendList: {
|
|
|
5028
5092
|
is_mobile?: boolean | undefined;
|
|
5029
5093
|
dob?: Date | undefined;
|
|
5030
5094
|
mezon_id?: string | undefined;
|
|
5095
|
+
list_nick_names?: string[] | undefined;
|
|
5031
5096
|
} | undefined;
|
|
5032
5097
|
state?: number | undefined;
|
|
5033
5098
|
update_time?: Date | undefined;
|
|
@@ -5056,6 +5121,7 @@ export declare const FriendList: {
|
|
|
5056
5121
|
is_mobile?: boolean | undefined;
|
|
5057
5122
|
dob?: Date | undefined;
|
|
5058
5123
|
mezon_id?: string | undefined;
|
|
5124
|
+
list_nick_names?: string[] | undefined;
|
|
5059
5125
|
} | undefined;
|
|
5060
5126
|
state?: number | undefined;
|
|
5061
5127
|
update_time?: Date | undefined;
|
|
@@ -5084,6 +5150,7 @@ export declare const FriendList: {
|
|
|
5084
5150
|
is_mobile?: boolean | undefined;
|
|
5085
5151
|
dob?: Date | undefined;
|
|
5086
5152
|
mezon_id?: string | undefined;
|
|
5153
|
+
list_nick_names?: string[] | undefined;
|
|
5087
5154
|
} & {
|
|
5088
5155
|
id?: string | undefined;
|
|
5089
5156
|
username?: string | undefined;
|
|
@@ -5107,11 +5174,12 @@ export declare const FriendList: {
|
|
|
5107
5174
|
is_mobile?: boolean | undefined;
|
|
5108
5175
|
dob?: Date | undefined;
|
|
5109
5176
|
mezon_id?: string | undefined;
|
|
5110
|
-
|
|
5177
|
+
list_nick_names?: (string[] & string[] & { [K in Exclude<keyof I["friends"][number]["user"]["list_nick_names"], keyof string[]>]: never; }) | undefined;
|
|
5178
|
+
} & { [K_1 in Exclude<keyof I["friends"][number]["user"], keyof User>]: never; }) | undefined;
|
|
5111
5179
|
state?: number | undefined;
|
|
5112
5180
|
update_time?: Date | undefined;
|
|
5113
5181
|
source_id?: string | undefined;
|
|
5114
|
-
} & { [
|
|
5182
|
+
} & { [K_2 in Exclude<keyof I["friends"][number], keyof Friend>]: never; })[] & { [K_3 in Exclude<keyof I["friends"], keyof {
|
|
5115
5183
|
user?: {
|
|
5116
5184
|
id?: string | undefined;
|
|
5117
5185
|
username?: string | undefined;
|
|
@@ -5135,13 +5203,14 @@ export declare const FriendList: {
|
|
|
5135
5203
|
is_mobile?: boolean | undefined;
|
|
5136
5204
|
dob?: Date | undefined;
|
|
5137
5205
|
mezon_id?: string | undefined;
|
|
5206
|
+
list_nick_names?: string[] | undefined;
|
|
5138
5207
|
} | undefined;
|
|
5139
5208
|
state?: number | undefined;
|
|
5140
5209
|
update_time?: Date | undefined;
|
|
5141
5210
|
source_id?: string | undefined;
|
|
5142
5211
|
}[]>]: never; }) | undefined;
|
|
5143
5212
|
cursor?: string | undefined;
|
|
5144
|
-
} & { [
|
|
5213
|
+
} & { [K_4 in Exclude<keyof I, keyof FriendList>]: never; }>(base?: I | undefined): FriendList;
|
|
5145
5214
|
fromPartial<I_1 extends {
|
|
5146
5215
|
friends?: {
|
|
5147
5216
|
user?: {
|
|
@@ -5167,6 +5236,7 @@ export declare const FriendList: {
|
|
|
5167
5236
|
is_mobile?: boolean | undefined;
|
|
5168
5237
|
dob?: Date | undefined;
|
|
5169
5238
|
mezon_id?: string | undefined;
|
|
5239
|
+
list_nick_names?: string[] | undefined;
|
|
5170
5240
|
} | undefined;
|
|
5171
5241
|
state?: number | undefined;
|
|
5172
5242
|
update_time?: Date | undefined;
|
|
@@ -5198,6 +5268,7 @@ export declare const FriendList: {
|
|
|
5198
5268
|
is_mobile?: boolean | undefined;
|
|
5199
5269
|
dob?: Date | undefined;
|
|
5200
5270
|
mezon_id?: string | undefined;
|
|
5271
|
+
list_nick_names?: string[] | undefined;
|
|
5201
5272
|
} | undefined;
|
|
5202
5273
|
state?: number | undefined;
|
|
5203
5274
|
update_time?: Date | undefined;
|
|
@@ -5226,6 +5297,7 @@ export declare const FriendList: {
|
|
|
5226
5297
|
is_mobile?: boolean | undefined;
|
|
5227
5298
|
dob?: Date | undefined;
|
|
5228
5299
|
mezon_id?: string | undefined;
|
|
5300
|
+
list_nick_names?: string[] | undefined;
|
|
5229
5301
|
} | undefined;
|
|
5230
5302
|
state?: number | undefined;
|
|
5231
5303
|
update_time?: Date | undefined;
|
|
@@ -5254,6 +5326,7 @@ export declare const FriendList: {
|
|
|
5254
5326
|
is_mobile?: boolean | undefined;
|
|
5255
5327
|
dob?: Date | undefined;
|
|
5256
5328
|
mezon_id?: string | undefined;
|
|
5329
|
+
list_nick_names?: string[] | undefined;
|
|
5257
5330
|
} & {
|
|
5258
5331
|
id?: string | undefined;
|
|
5259
5332
|
username?: string | undefined;
|
|
@@ -5277,11 +5350,12 @@ export declare const FriendList: {
|
|
|
5277
5350
|
is_mobile?: boolean | undefined;
|
|
5278
5351
|
dob?: Date | undefined;
|
|
5279
5352
|
mezon_id?: string | undefined;
|
|
5280
|
-
|
|
5353
|
+
list_nick_names?: (string[] & string[] & { [K_5 in Exclude<keyof I_1["friends"][number]["user"]["list_nick_names"], keyof string[]>]: never; }) | undefined;
|
|
5354
|
+
} & { [K_6 in Exclude<keyof I_1["friends"][number]["user"], keyof User>]: never; }) | undefined;
|
|
5281
5355
|
state?: number | undefined;
|
|
5282
5356
|
update_time?: Date | undefined;
|
|
5283
5357
|
source_id?: string | undefined;
|
|
5284
|
-
} & { [
|
|
5358
|
+
} & { [K_7 in Exclude<keyof I_1["friends"][number], keyof Friend>]: never; })[] & { [K_8 in Exclude<keyof I_1["friends"], keyof {
|
|
5285
5359
|
user?: {
|
|
5286
5360
|
id?: string | undefined;
|
|
5287
5361
|
username?: string | undefined;
|
|
@@ -5305,13 +5379,14 @@ export declare const FriendList: {
|
|
|
5305
5379
|
is_mobile?: boolean | undefined;
|
|
5306
5380
|
dob?: Date | undefined;
|
|
5307
5381
|
mezon_id?: string | undefined;
|
|
5382
|
+
list_nick_names?: string[] | undefined;
|
|
5308
5383
|
} | undefined;
|
|
5309
5384
|
state?: number | undefined;
|
|
5310
5385
|
update_time?: Date | undefined;
|
|
5311
5386
|
source_id?: string | undefined;
|
|
5312
5387
|
}[]>]: never; }) | undefined;
|
|
5313
5388
|
cursor?: string | undefined;
|
|
5314
|
-
} & { [
|
|
5389
|
+
} & { [K_9 in Exclude<keyof I_1, keyof FriendList>]: never; }>(object: I_1): FriendList;
|
|
5315
5390
|
};
|
|
5316
5391
|
export declare const GetUsersRequest: {
|
|
5317
5392
|
encode(message: GetUsersRequest, writer?: _m0.Writer): _m0.Writer;
|
|
@@ -5597,6 +5672,7 @@ export declare const GroupUserList: {
|
|
|
5597
5672
|
is_mobile?: boolean | undefined;
|
|
5598
5673
|
dob?: Date | undefined;
|
|
5599
5674
|
mezon_id?: string | undefined;
|
|
5675
|
+
list_nick_names?: string[] | undefined;
|
|
5600
5676
|
} | undefined;
|
|
5601
5677
|
state?: number | undefined;
|
|
5602
5678
|
}[] | undefined;
|
|
@@ -5626,6 +5702,7 @@ export declare const GroupUserList: {
|
|
|
5626
5702
|
is_mobile?: boolean | undefined;
|
|
5627
5703
|
dob?: Date | undefined;
|
|
5628
5704
|
mezon_id?: string | undefined;
|
|
5705
|
+
list_nick_names?: string[] | undefined;
|
|
5629
5706
|
} | undefined;
|
|
5630
5707
|
state?: number | undefined;
|
|
5631
5708
|
}[] & ({
|
|
@@ -5652,6 +5729,7 @@ export declare const GroupUserList: {
|
|
|
5652
5729
|
is_mobile?: boolean | undefined;
|
|
5653
5730
|
dob?: Date | undefined;
|
|
5654
5731
|
mezon_id?: string | undefined;
|
|
5732
|
+
list_nick_names?: string[] | undefined;
|
|
5655
5733
|
} | undefined;
|
|
5656
5734
|
state?: number | undefined;
|
|
5657
5735
|
} & {
|
|
@@ -5678,6 +5756,7 @@ export declare const GroupUserList: {
|
|
|
5678
5756
|
is_mobile?: boolean | undefined;
|
|
5679
5757
|
dob?: Date | undefined;
|
|
5680
5758
|
mezon_id?: string | undefined;
|
|
5759
|
+
list_nick_names?: string[] | undefined;
|
|
5681
5760
|
} & {
|
|
5682
5761
|
id?: string | undefined;
|
|
5683
5762
|
username?: string | undefined;
|
|
@@ -5701,9 +5780,10 @@ export declare const GroupUserList: {
|
|
|
5701
5780
|
is_mobile?: boolean | undefined;
|
|
5702
5781
|
dob?: Date | undefined;
|
|
5703
5782
|
mezon_id?: string | undefined;
|
|
5704
|
-
|
|
5783
|
+
list_nick_names?: (string[] & string[] & { [K in Exclude<keyof I["group_users"][number]["user"]["list_nick_names"], keyof string[]>]: never; }) | undefined;
|
|
5784
|
+
} & { [K_1 in Exclude<keyof I["group_users"][number]["user"], keyof User>]: never; }) | undefined;
|
|
5705
5785
|
state?: number | undefined;
|
|
5706
|
-
} & { [
|
|
5786
|
+
} & { [K_2 in Exclude<keyof I["group_users"][number], keyof GroupUserList_GroupUser>]: never; })[] & { [K_3 in Exclude<keyof I["group_users"], keyof {
|
|
5707
5787
|
user?: {
|
|
5708
5788
|
id?: string | undefined;
|
|
5709
5789
|
username?: string | undefined;
|
|
@@ -5727,11 +5807,12 @@ export declare const GroupUserList: {
|
|
|
5727
5807
|
is_mobile?: boolean | undefined;
|
|
5728
5808
|
dob?: Date | undefined;
|
|
5729
5809
|
mezon_id?: string | undefined;
|
|
5810
|
+
list_nick_names?: string[] | undefined;
|
|
5730
5811
|
} | undefined;
|
|
5731
5812
|
state?: number | undefined;
|
|
5732
5813
|
}[]>]: never; }) | undefined;
|
|
5733
5814
|
cursor?: string | undefined;
|
|
5734
|
-
} & { [
|
|
5815
|
+
} & { [K_4 in Exclude<keyof I, keyof GroupUserList>]: never; }>(base?: I | undefined): GroupUserList;
|
|
5735
5816
|
fromPartial<I_1 extends {
|
|
5736
5817
|
group_users?: {
|
|
5737
5818
|
user?: {
|
|
@@ -5757,6 +5838,7 @@ export declare const GroupUserList: {
|
|
|
5757
5838
|
is_mobile?: boolean | undefined;
|
|
5758
5839
|
dob?: Date | undefined;
|
|
5759
5840
|
mezon_id?: string | undefined;
|
|
5841
|
+
list_nick_names?: string[] | undefined;
|
|
5760
5842
|
} | undefined;
|
|
5761
5843
|
state?: number | undefined;
|
|
5762
5844
|
}[] | undefined;
|
|
@@ -5786,6 +5868,7 @@ export declare const GroupUserList: {
|
|
|
5786
5868
|
is_mobile?: boolean | undefined;
|
|
5787
5869
|
dob?: Date | undefined;
|
|
5788
5870
|
mezon_id?: string | undefined;
|
|
5871
|
+
list_nick_names?: string[] | undefined;
|
|
5789
5872
|
} | undefined;
|
|
5790
5873
|
state?: number | undefined;
|
|
5791
5874
|
}[] & ({
|
|
@@ -5812,6 +5895,7 @@ export declare const GroupUserList: {
|
|
|
5812
5895
|
is_mobile?: boolean | undefined;
|
|
5813
5896
|
dob?: Date | undefined;
|
|
5814
5897
|
mezon_id?: string | undefined;
|
|
5898
|
+
list_nick_names?: string[] | undefined;
|
|
5815
5899
|
} | undefined;
|
|
5816
5900
|
state?: number | undefined;
|
|
5817
5901
|
} & {
|
|
@@ -5838,6 +5922,7 @@ export declare const GroupUserList: {
|
|
|
5838
5922
|
is_mobile?: boolean | undefined;
|
|
5839
5923
|
dob?: Date | undefined;
|
|
5840
5924
|
mezon_id?: string | undefined;
|
|
5925
|
+
list_nick_names?: string[] | undefined;
|
|
5841
5926
|
} & {
|
|
5842
5927
|
id?: string | undefined;
|
|
5843
5928
|
username?: string | undefined;
|
|
@@ -5861,9 +5946,10 @@ export declare const GroupUserList: {
|
|
|
5861
5946
|
is_mobile?: boolean | undefined;
|
|
5862
5947
|
dob?: Date | undefined;
|
|
5863
5948
|
mezon_id?: string | undefined;
|
|
5864
|
-
|
|
5949
|
+
list_nick_names?: (string[] & string[] & { [K_5 in Exclude<keyof I_1["group_users"][number]["user"]["list_nick_names"], keyof string[]>]: never; }) | undefined;
|
|
5950
|
+
} & { [K_6 in Exclude<keyof I_1["group_users"][number]["user"], keyof User>]: never; }) | undefined;
|
|
5865
5951
|
state?: number | undefined;
|
|
5866
|
-
} & { [
|
|
5952
|
+
} & { [K_7 in Exclude<keyof I_1["group_users"][number], keyof GroupUserList_GroupUser>]: never; })[] & { [K_8 in Exclude<keyof I_1["group_users"], keyof {
|
|
5867
5953
|
user?: {
|
|
5868
5954
|
id?: string | undefined;
|
|
5869
5955
|
username?: string | undefined;
|
|
@@ -5887,11 +5973,12 @@ export declare const GroupUserList: {
|
|
|
5887
5973
|
is_mobile?: boolean | undefined;
|
|
5888
5974
|
dob?: Date | undefined;
|
|
5889
5975
|
mezon_id?: string | undefined;
|
|
5976
|
+
list_nick_names?: string[] | undefined;
|
|
5890
5977
|
} | undefined;
|
|
5891
5978
|
state?: number | undefined;
|
|
5892
5979
|
}[]>]: never; }) | undefined;
|
|
5893
5980
|
cursor?: string | undefined;
|
|
5894
|
-
} & { [
|
|
5981
|
+
} & { [K_9 in Exclude<keyof I_1, keyof GroupUserList>]: never; }>(object: I_1): GroupUserList;
|
|
5895
5982
|
};
|
|
5896
5983
|
export declare const GroupUserList_GroupUser: {
|
|
5897
5984
|
encode(message: GroupUserList_GroupUser, writer?: _m0.Writer): _m0.Writer;
|
|
@@ -5922,6 +6009,7 @@ export declare const GroupUserList_GroupUser: {
|
|
|
5922
6009
|
is_mobile?: boolean | undefined;
|
|
5923
6010
|
dob?: Date | undefined;
|
|
5924
6011
|
mezon_id?: string | undefined;
|
|
6012
|
+
list_nick_names?: string[] | undefined;
|
|
5925
6013
|
} | undefined;
|
|
5926
6014
|
state?: number | undefined;
|
|
5927
6015
|
} & {
|
|
@@ -5948,6 +6036,7 @@ export declare const GroupUserList_GroupUser: {
|
|
|
5948
6036
|
is_mobile?: boolean | undefined;
|
|
5949
6037
|
dob?: Date | undefined;
|
|
5950
6038
|
mezon_id?: string | undefined;
|
|
6039
|
+
list_nick_names?: string[] | undefined;
|
|
5951
6040
|
} & {
|
|
5952
6041
|
id?: string | undefined;
|
|
5953
6042
|
username?: string | undefined;
|
|
@@ -5971,9 +6060,10 @@ export declare const GroupUserList_GroupUser: {
|
|
|
5971
6060
|
is_mobile?: boolean | undefined;
|
|
5972
6061
|
dob?: Date | undefined;
|
|
5973
6062
|
mezon_id?: string | undefined;
|
|
5974
|
-
|
|
6063
|
+
list_nick_names?: (string[] & string[] & { [K in Exclude<keyof I["user"]["list_nick_names"], keyof string[]>]: never; }) | undefined;
|
|
6064
|
+
} & { [K_1 in Exclude<keyof I["user"], keyof User>]: never; }) | undefined;
|
|
5975
6065
|
state?: number | undefined;
|
|
5976
|
-
} & { [
|
|
6066
|
+
} & { [K_2 in Exclude<keyof I, keyof GroupUserList_GroupUser>]: never; }>(base?: I | undefined): GroupUserList_GroupUser;
|
|
5977
6067
|
fromPartial<I_1 extends {
|
|
5978
6068
|
user?: {
|
|
5979
6069
|
id?: string | undefined;
|
|
@@ -5998,6 +6088,7 @@ export declare const GroupUserList_GroupUser: {
|
|
|
5998
6088
|
is_mobile?: boolean | undefined;
|
|
5999
6089
|
dob?: Date | undefined;
|
|
6000
6090
|
mezon_id?: string | undefined;
|
|
6091
|
+
list_nick_names?: string[] | undefined;
|
|
6001
6092
|
} | undefined;
|
|
6002
6093
|
state?: number | undefined;
|
|
6003
6094
|
} & {
|
|
@@ -6024,6 +6115,7 @@ export declare const GroupUserList_GroupUser: {
|
|
|
6024
6115
|
is_mobile?: boolean | undefined;
|
|
6025
6116
|
dob?: Date | undefined;
|
|
6026
6117
|
mezon_id?: string | undefined;
|
|
6118
|
+
list_nick_names?: string[] | undefined;
|
|
6027
6119
|
} & {
|
|
6028
6120
|
id?: string | undefined;
|
|
6029
6121
|
username?: string | undefined;
|
|
@@ -6047,9 +6139,10 @@ export declare const GroupUserList_GroupUser: {
|
|
|
6047
6139
|
is_mobile?: boolean | undefined;
|
|
6048
6140
|
dob?: Date | undefined;
|
|
6049
6141
|
mezon_id?: string | undefined;
|
|
6050
|
-
|
|
6142
|
+
list_nick_names?: (string[] & string[] & { [K_3 in Exclude<keyof I_1["user"]["list_nick_names"], keyof string[]>]: never; }) | undefined;
|
|
6143
|
+
} & { [K_4 in Exclude<keyof I_1["user"], keyof User>]: never; }) | undefined;
|
|
6051
6144
|
state?: number | undefined;
|
|
6052
|
-
} & { [
|
|
6145
|
+
} & { [K_5 in Exclude<keyof I_1, keyof GroupUserList_GroupUser>]: never; }>(object: I_1): GroupUserList_GroupUser;
|
|
6053
6146
|
};
|
|
6054
6147
|
export declare const ChannelUserList: {
|
|
6055
6148
|
encode(message: ChannelUserList, writer?: _m0.Writer): _m0.Writer;
|
|
@@ -6065,6 +6158,7 @@ export declare const ChannelUserList: {
|
|
|
6065
6158
|
clan_nick?: string | undefined;
|
|
6066
6159
|
clan_avatar?: string | undefined;
|
|
6067
6160
|
clan_id?: string | undefined;
|
|
6161
|
+
added_by?: string | undefined;
|
|
6068
6162
|
}[] | undefined;
|
|
6069
6163
|
cursor?: string | undefined;
|
|
6070
6164
|
channel_id?: string | undefined;
|
|
@@ -6077,6 +6171,7 @@ export declare const ChannelUserList: {
|
|
|
6077
6171
|
clan_nick?: string | undefined;
|
|
6078
6172
|
clan_avatar?: string | undefined;
|
|
6079
6173
|
clan_id?: string | undefined;
|
|
6174
|
+
added_by?: string | undefined;
|
|
6080
6175
|
}[] & ({
|
|
6081
6176
|
user_id?: string | undefined;
|
|
6082
6177
|
role_id?: string[] | undefined;
|
|
@@ -6085,6 +6180,7 @@ export declare const ChannelUserList: {
|
|
|
6085
6180
|
clan_nick?: string | undefined;
|
|
6086
6181
|
clan_avatar?: string | undefined;
|
|
6087
6182
|
clan_id?: string | undefined;
|
|
6183
|
+
added_by?: string | undefined;
|
|
6088
6184
|
} & {
|
|
6089
6185
|
user_id?: string | undefined;
|
|
6090
6186
|
role_id?: (string[] & string[] & { [K in Exclude<keyof I["channel_users"][number]["role_id"], keyof string[]>]: never; }) | undefined;
|
|
@@ -6093,6 +6189,7 @@ export declare const ChannelUserList: {
|
|
|
6093
6189
|
clan_nick?: string | undefined;
|
|
6094
6190
|
clan_avatar?: string | undefined;
|
|
6095
6191
|
clan_id?: string | undefined;
|
|
6192
|
+
added_by?: string | undefined;
|
|
6096
6193
|
} & { [K_1 in Exclude<keyof I["channel_users"][number], keyof ChannelUserList_ChannelUser>]: never; })[] & { [K_2 in Exclude<keyof I["channel_users"], keyof {
|
|
6097
6194
|
user_id?: string | undefined;
|
|
6098
6195
|
role_id?: string[] | undefined;
|
|
@@ -6101,6 +6198,7 @@ export declare const ChannelUserList: {
|
|
|
6101
6198
|
clan_nick?: string | undefined;
|
|
6102
6199
|
clan_avatar?: string | undefined;
|
|
6103
6200
|
clan_id?: string | undefined;
|
|
6201
|
+
added_by?: string | undefined;
|
|
6104
6202
|
}[]>]: never; }) | undefined;
|
|
6105
6203
|
cursor?: string | undefined;
|
|
6106
6204
|
channel_id?: string | undefined;
|
|
@@ -6114,6 +6212,7 @@ export declare const ChannelUserList: {
|
|
|
6114
6212
|
clan_nick?: string | undefined;
|
|
6115
6213
|
clan_avatar?: string | undefined;
|
|
6116
6214
|
clan_id?: string | undefined;
|
|
6215
|
+
added_by?: string | undefined;
|
|
6117
6216
|
}[] | undefined;
|
|
6118
6217
|
cursor?: string | undefined;
|
|
6119
6218
|
channel_id?: string | undefined;
|
|
@@ -6126,6 +6225,7 @@ export declare const ChannelUserList: {
|
|
|
6126
6225
|
clan_nick?: string | undefined;
|
|
6127
6226
|
clan_avatar?: string | undefined;
|
|
6128
6227
|
clan_id?: string | undefined;
|
|
6228
|
+
added_by?: string | undefined;
|
|
6129
6229
|
}[] & ({
|
|
6130
6230
|
user_id?: string | undefined;
|
|
6131
6231
|
role_id?: string[] | undefined;
|
|
@@ -6134,6 +6234,7 @@ export declare const ChannelUserList: {
|
|
|
6134
6234
|
clan_nick?: string | undefined;
|
|
6135
6235
|
clan_avatar?: string | undefined;
|
|
6136
6236
|
clan_id?: string | undefined;
|
|
6237
|
+
added_by?: string | undefined;
|
|
6137
6238
|
} & {
|
|
6138
6239
|
user_id?: string | undefined;
|
|
6139
6240
|
role_id?: (string[] & string[] & { [K_4 in Exclude<keyof I_1["channel_users"][number]["role_id"], keyof string[]>]: never; }) | undefined;
|
|
@@ -6142,6 +6243,7 @@ export declare const ChannelUserList: {
|
|
|
6142
6243
|
clan_nick?: string | undefined;
|
|
6143
6244
|
clan_avatar?: string | undefined;
|
|
6144
6245
|
clan_id?: string | undefined;
|
|
6246
|
+
added_by?: string | undefined;
|
|
6145
6247
|
} & { [K_5 in Exclude<keyof I_1["channel_users"][number], keyof ChannelUserList_ChannelUser>]: never; })[] & { [K_6 in Exclude<keyof I_1["channel_users"], keyof {
|
|
6146
6248
|
user_id?: string | undefined;
|
|
6147
6249
|
role_id?: string[] | undefined;
|
|
@@ -6150,6 +6252,7 @@ export declare const ChannelUserList: {
|
|
|
6150
6252
|
clan_nick?: string | undefined;
|
|
6151
6253
|
clan_avatar?: string | undefined;
|
|
6152
6254
|
clan_id?: string | undefined;
|
|
6255
|
+
added_by?: string | undefined;
|
|
6153
6256
|
}[]>]: never; }) | undefined;
|
|
6154
6257
|
cursor?: string | undefined;
|
|
6155
6258
|
channel_id?: string | undefined;
|
|
@@ -6168,6 +6271,7 @@ export declare const ChannelUserList_ChannelUser: {
|
|
|
6168
6271
|
clan_nick?: string | undefined;
|
|
6169
6272
|
clan_avatar?: string | undefined;
|
|
6170
6273
|
clan_id?: string | undefined;
|
|
6274
|
+
added_by?: string | undefined;
|
|
6171
6275
|
} & {
|
|
6172
6276
|
user_id?: string | undefined;
|
|
6173
6277
|
role_id?: (string[] & string[] & { [K in Exclude<keyof I["role_id"], keyof string[]>]: never; }) | undefined;
|
|
@@ -6176,6 +6280,7 @@ export declare const ChannelUserList_ChannelUser: {
|
|
|
6176
6280
|
clan_nick?: string | undefined;
|
|
6177
6281
|
clan_avatar?: string | undefined;
|
|
6178
6282
|
clan_id?: string | undefined;
|
|
6283
|
+
added_by?: string | undefined;
|
|
6179
6284
|
} & { [K_1 in Exclude<keyof I, keyof ChannelUserList_ChannelUser>]: never; }>(base?: I | undefined): ChannelUserList_ChannelUser;
|
|
6180
6285
|
fromPartial<I_1 extends {
|
|
6181
6286
|
user_id?: string | undefined;
|
|
@@ -6185,6 +6290,7 @@ export declare const ChannelUserList_ChannelUser: {
|
|
|
6185
6290
|
clan_nick?: string | undefined;
|
|
6186
6291
|
clan_avatar?: string | undefined;
|
|
6187
6292
|
clan_id?: string | undefined;
|
|
6293
|
+
added_by?: string | undefined;
|
|
6188
6294
|
} & {
|
|
6189
6295
|
user_id?: string | undefined;
|
|
6190
6296
|
role_id?: (string[] & string[] & { [K_2 in Exclude<keyof I_1["role_id"], keyof string[]>]: never; }) | undefined;
|
|
@@ -6193,6 +6299,7 @@ export declare const ChannelUserList_ChannelUser: {
|
|
|
6193
6299
|
clan_nick?: string | undefined;
|
|
6194
6300
|
clan_avatar?: string | undefined;
|
|
6195
6301
|
clan_id?: string | undefined;
|
|
6302
|
+
added_by?: string | undefined;
|
|
6196
6303
|
} & { [K_3 in Exclude<keyof I_1, keyof ChannelUserList_ChannelUser>]: never; }>(object: I_1): ChannelUserList_ChannelUser;
|
|
6197
6304
|
};
|
|
6198
6305
|
export declare const VoiceChannelUser: {
|
|
@@ -6497,6 +6604,7 @@ export declare const ClanUserList: {
|
|
|
6497
6604
|
is_mobile?: boolean | undefined;
|
|
6498
6605
|
dob?: Date | undefined;
|
|
6499
6606
|
mezon_id?: string | undefined;
|
|
6607
|
+
list_nick_names?: string[] | undefined;
|
|
6500
6608
|
} | undefined;
|
|
6501
6609
|
role_id?: string[] | undefined;
|
|
6502
6610
|
clan_nick?: string | undefined;
|
|
@@ -6530,6 +6638,7 @@ export declare const ClanUserList: {
|
|
|
6530
6638
|
is_mobile?: boolean | undefined;
|
|
6531
6639
|
dob?: Date | undefined;
|
|
6532
6640
|
mezon_id?: string | undefined;
|
|
6641
|
+
list_nick_names?: string[] | undefined;
|
|
6533
6642
|
} | undefined;
|
|
6534
6643
|
role_id?: string[] | undefined;
|
|
6535
6644
|
clan_nick?: string | undefined;
|
|
@@ -6559,6 +6668,7 @@ export declare const ClanUserList: {
|
|
|
6559
6668
|
is_mobile?: boolean | undefined;
|
|
6560
6669
|
dob?: Date | undefined;
|
|
6561
6670
|
mezon_id?: string | undefined;
|
|
6671
|
+
list_nick_names?: string[] | undefined;
|
|
6562
6672
|
} | undefined;
|
|
6563
6673
|
role_id?: string[] | undefined;
|
|
6564
6674
|
clan_nick?: string | undefined;
|
|
@@ -6588,6 +6698,7 @@ export declare const ClanUserList: {
|
|
|
6588
6698
|
is_mobile?: boolean | undefined;
|
|
6589
6699
|
dob?: Date | undefined;
|
|
6590
6700
|
mezon_id?: string | undefined;
|
|
6701
|
+
list_nick_names?: string[] | undefined;
|
|
6591
6702
|
} & {
|
|
6592
6703
|
id?: string | undefined;
|
|
6593
6704
|
username?: string | undefined;
|
|
@@ -6611,12 +6722,13 @@ export declare const ClanUserList: {
|
|
|
6611
6722
|
is_mobile?: boolean | undefined;
|
|
6612
6723
|
dob?: Date | undefined;
|
|
6613
6724
|
mezon_id?: string | undefined;
|
|
6614
|
-
|
|
6615
|
-
|
|
6725
|
+
list_nick_names?: (string[] & string[] & { [K in Exclude<keyof I["clan_users"][number]["user"]["list_nick_names"], keyof string[]>]: never; }) | undefined;
|
|
6726
|
+
} & { [K_1 in Exclude<keyof I["clan_users"][number]["user"], keyof User>]: never; }) | undefined;
|
|
6727
|
+
role_id?: (string[] & string[] & { [K_2 in Exclude<keyof I["clan_users"][number]["role_id"], keyof string[]>]: never; }) | undefined;
|
|
6616
6728
|
clan_nick?: string | undefined;
|
|
6617
6729
|
clan_avatar?: string | undefined;
|
|
6618
6730
|
clan_id?: string | undefined;
|
|
6619
|
-
} & { [
|
|
6731
|
+
} & { [K_3 in Exclude<keyof I["clan_users"][number], keyof ClanUserList_ClanUser>]: never; })[] & { [K_4 in Exclude<keyof I["clan_users"], keyof {
|
|
6620
6732
|
user?: {
|
|
6621
6733
|
id?: string | undefined;
|
|
6622
6734
|
username?: string | undefined;
|
|
@@ -6640,6 +6752,7 @@ export declare const ClanUserList: {
|
|
|
6640
6752
|
is_mobile?: boolean | undefined;
|
|
6641
6753
|
dob?: Date | undefined;
|
|
6642
6754
|
mezon_id?: string | undefined;
|
|
6755
|
+
list_nick_names?: string[] | undefined;
|
|
6643
6756
|
} | undefined;
|
|
6644
6757
|
role_id?: string[] | undefined;
|
|
6645
6758
|
clan_nick?: string | undefined;
|
|
@@ -6648,7 +6761,7 @@ export declare const ClanUserList: {
|
|
|
6648
6761
|
}[]>]: never; }) | undefined;
|
|
6649
6762
|
cursor?: string | undefined;
|
|
6650
6763
|
clan_id?: string | undefined;
|
|
6651
|
-
} & { [
|
|
6764
|
+
} & { [K_5 in Exclude<keyof I, keyof ClanUserList>]: never; }>(base?: I | undefined): ClanUserList;
|
|
6652
6765
|
fromPartial<I_1 extends {
|
|
6653
6766
|
clan_users?: {
|
|
6654
6767
|
user?: {
|
|
@@ -6674,6 +6787,7 @@ export declare const ClanUserList: {
|
|
|
6674
6787
|
is_mobile?: boolean | undefined;
|
|
6675
6788
|
dob?: Date | undefined;
|
|
6676
6789
|
mezon_id?: string | undefined;
|
|
6790
|
+
list_nick_names?: string[] | undefined;
|
|
6677
6791
|
} | undefined;
|
|
6678
6792
|
role_id?: string[] | undefined;
|
|
6679
6793
|
clan_nick?: string | undefined;
|
|
@@ -6707,6 +6821,7 @@ export declare const ClanUserList: {
|
|
|
6707
6821
|
is_mobile?: boolean | undefined;
|
|
6708
6822
|
dob?: Date | undefined;
|
|
6709
6823
|
mezon_id?: string | undefined;
|
|
6824
|
+
list_nick_names?: string[] | undefined;
|
|
6710
6825
|
} | undefined;
|
|
6711
6826
|
role_id?: string[] | undefined;
|
|
6712
6827
|
clan_nick?: string | undefined;
|
|
@@ -6736,6 +6851,7 @@ export declare const ClanUserList: {
|
|
|
6736
6851
|
is_mobile?: boolean | undefined;
|
|
6737
6852
|
dob?: Date | undefined;
|
|
6738
6853
|
mezon_id?: string | undefined;
|
|
6854
|
+
list_nick_names?: string[] | undefined;
|
|
6739
6855
|
} | undefined;
|
|
6740
6856
|
role_id?: string[] | undefined;
|
|
6741
6857
|
clan_nick?: string | undefined;
|
|
@@ -6765,6 +6881,7 @@ export declare const ClanUserList: {
|
|
|
6765
6881
|
is_mobile?: boolean | undefined;
|
|
6766
6882
|
dob?: Date | undefined;
|
|
6767
6883
|
mezon_id?: string | undefined;
|
|
6884
|
+
list_nick_names?: string[] | undefined;
|
|
6768
6885
|
} & {
|
|
6769
6886
|
id?: string | undefined;
|
|
6770
6887
|
username?: string | undefined;
|
|
@@ -6788,12 +6905,13 @@ export declare const ClanUserList: {
|
|
|
6788
6905
|
is_mobile?: boolean | undefined;
|
|
6789
6906
|
dob?: Date | undefined;
|
|
6790
6907
|
mezon_id?: string | undefined;
|
|
6791
|
-
|
|
6792
|
-
|
|
6908
|
+
list_nick_names?: (string[] & string[] & { [K_6 in Exclude<keyof I_1["clan_users"][number]["user"]["list_nick_names"], keyof string[]>]: never; }) | undefined;
|
|
6909
|
+
} & { [K_7 in Exclude<keyof I_1["clan_users"][number]["user"], keyof User>]: never; }) | undefined;
|
|
6910
|
+
role_id?: (string[] & string[] & { [K_8 in Exclude<keyof I_1["clan_users"][number]["role_id"], keyof string[]>]: never; }) | undefined;
|
|
6793
6911
|
clan_nick?: string | undefined;
|
|
6794
6912
|
clan_avatar?: string | undefined;
|
|
6795
6913
|
clan_id?: string | undefined;
|
|
6796
|
-
} & { [
|
|
6914
|
+
} & { [K_9 in Exclude<keyof I_1["clan_users"][number], keyof ClanUserList_ClanUser>]: never; })[] & { [K_10 in Exclude<keyof I_1["clan_users"], keyof {
|
|
6797
6915
|
user?: {
|
|
6798
6916
|
id?: string | undefined;
|
|
6799
6917
|
username?: string | undefined;
|
|
@@ -6817,6 +6935,7 @@ export declare const ClanUserList: {
|
|
|
6817
6935
|
is_mobile?: boolean | undefined;
|
|
6818
6936
|
dob?: Date | undefined;
|
|
6819
6937
|
mezon_id?: string | undefined;
|
|
6938
|
+
list_nick_names?: string[] | undefined;
|
|
6820
6939
|
} | undefined;
|
|
6821
6940
|
role_id?: string[] | undefined;
|
|
6822
6941
|
clan_nick?: string | undefined;
|
|
@@ -6825,7 +6944,7 @@ export declare const ClanUserList: {
|
|
|
6825
6944
|
}[]>]: never; }) | undefined;
|
|
6826
6945
|
cursor?: string | undefined;
|
|
6827
6946
|
clan_id?: string | undefined;
|
|
6828
|
-
} & { [
|
|
6947
|
+
} & { [K_11 in Exclude<keyof I_1, keyof ClanUserList>]: never; }>(object: I_1): ClanUserList;
|
|
6829
6948
|
};
|
|
6830
6949
|
export declare const ClanUserList_ClanUser: {
|
|
6831
6950
|
encode(message: ClanUserList_ClanUser, writer?: _m0.Writer): _m0.Writer;
|
|
@@ -6856,6 +6975,7 @@ export declare const ClanUserList_ClanUser: {
|
|
|
6856
6975
|
is_mobile?: boolean | undefined;
|
|
6857
6976
|
dob?: Date | undefined;
|
|
6858
6977
|
mezon_id?: string | undefined;
|
|
6978
|
+
list_nick_names?: string[] | undefined;
|
|
6859
6979
|
} | undefined;
|
|
6860
6980
|
role_id?: string[] | undefined;
|
|
6861
6981
|
clan_nick?: string | undefined;
|
|
@@ -6885,6 +7005,7 @@ export declare const ClanUserList_ClanUser: {
|
|
|
6885
7005
|
is_mobile?: boolean | undefined;
|
|
6886
7006
|
dob?: Date | undefined;
|
|
6887
7007
|
mezon_id?: string | undefined;
|
|
7008
|
+
list_nick_names?: string[] | undefined;
|
|
6888
7009
|
} & {
|
|
6889
7010
|
id?: string | undefined;
|
|
6890
7011
|
username?: string | undefined;
|
|
@@ -6908,12 +7029,13 @@ export declare const ClanUserList_ClanUser: {
|
|
|
6908
7029
|
is_mobile?: boolean | undefined;
|
|
6909
7030
|
dob?: Date | undefined;
|
|
6910
7031
|
mezon_id?: string | undefined;
|
|
6911
|
-
|
|
6912
|
-
|
|
7032
|
+
list_nick_names?: (string[] & string[] & { [K in Exclude<keyof I["user"]["list_nick_names"], keyof string[]>]: never; }) | undefined;
|
|
7033
|
+
} & { [K_1 in Exclude<keyof I["user"], keyof User>]: never; }) | undefined;
|
|
7034
|
+
role_id?: (string[] & string[] & { [K_2 in Exclude<keyof I["role_id"], keyof string[]>]: never; }) | undefined;
|
|
6913
7035
|
clan_nick?: string | undefined;
|
|
6914
7036
|
clan_avatar?: string | undefined;
|
|
6915
7037
|
clan_id?: string | undefined;
|
|
6916
|
-
} & { [
|
|
7038
|
+
} & { [K_3 in Exclude<keyof I, keyof ClanUserList_ClanUser>]: never; }>(base?: I | undefined): ClanUserList_ClanUser;
|
|
6917
7039
|
fromPartial<I_1 extends {
|
|
6918
7040
|
user?: {
|
|
6919
7041
|
id?: string | undefined;
|
|
@@ -6938,6 +7060,7 @@ export declare const ClanUserList_ClanUser: {
|
|
|
6938
7060
|
is_mobile?: boolean | undefined;
|
|
6939
7061
|
dob?: Date | undefined;
|
|
6940
7062
|
mezon_id?: string | undefined;
|
|
7063
|
+
list_nick_names?: string[] | undefined;
|
|
6941
7064
|
} | undefined;
|
|
6942
7065
|
role_id?: string[] | undefined;
|
|
6943
7066
|
clan_nick?: string | undefined;
|
|
@@ -6967,6 +7090,7 @@ export declare const ClanUserList_ClanUser: {
|
|
|
6967
7090
|
is_mobile?: boolean | undefined;
|
|
6968
7091
|
dob?: Date | undefined;
|
|
6969
7092
|
mezon_id?: string | undefined;
|
|
7093
|
+
list_nick_names?: string[] | undefined;
|
|
6970
7094
|
} & {
|
|
6971
7095
|
id?: string | undefined;
|
|
6972
7096
|
username?: string | undefined;
|
|
@@ -6990,12 +7114,13 @@ export declare const ClanUserList_ClanUser: {
|
|
|
6990
7114
|
is_mobile?: boolean | undefined;
|
|
6991
7115
|
dob?: Date | undefined;
|
|
6992
7116
|
mezon_id?: string | undefined;
|
|
6993
|
-
|
|
6994
|
-
|
|
7117
|
+
list_nick_names?: (string[] & string[] & { [K_4 in Exclude<keyof I_1["user"]["list_nick_names"], keyof string[]>]: never; }) | undefined;
|
|
7118
|
+
} & { [K_5 in Exclude<keyof I_1["user"], keyof User>]: never; }) | undefined;
|
|
7119
|
+
role_id?: (string[] & string[] & { [K_6 in Exclude<keyof I_1["role_id"], keyof string[]>]: never; }) | undefined;
|
|
6995
7120
|
clan_nick?: string | undefined;
|
|
6996
7121
|
clan_avatar?: string | undefined;
|
|
6997
7122
|
clan_id?: string | undefined;
|
|
6998
|
-
} & { [
|
|
7123
|
+
} & { [K_7 in Exclude<keyof I_1, keyof ClanUserList_ClanUser>]: never; }>(object: I_1): ClanUserList_ClanUser;
|
|
6999
7124
|
};
|
|
7000
7125
|
export declare const RegistFcmDeviceTokenRequest: {
|
|
7001
7126
|
encode(message: RegistFcmDeviceTokenRequest, writer?: _m0.Writer): _m0.Writer;
|
|
@@ -8903,6 +9028,7 @@ export declare const User: {
|
|
|
8903
9028
|
is_mobile?: boolean | undefined;
|
|
8904
9029
|
dob?: Date | undefined;
|
|
8905
9030
|
mezon_id?: string | undefined;
|
|
9031
|
+
list_nick_names?: string[] | undefined;
|
|
8906
9032
|
} & {
|
|
8907
9033
|
id?: string | undefined;
|
|
8908
9034
|
username?: string | undefined;
|
|
@@ -8926,7 +9052,8 @@ export declare const User: {
|
|
|
8926
9052
|
is_mobile?: boolean | undefined;
|
|
8927
9053
|
dob?: Date | undefined;
|
|
8928
9054
|
mezon_id?: string | undefined;
|
|
8929
|
-
|
|
9055
|
+
list_nick_names?: (string[] & string[] & { [K in Exclude<keyof I["list_nick_names"], keyof string[]>]: never; }) | undefined;
|
|
9056
|
+
} & { [K_1 in Exclude<keyof I, keyof User>]: never; }>(base?: I | undefined): User;
|
|
8930
9057
|
fromPartial<I_1 extends {
|
|
8931
9058
|
id?: string | undefined;
|
|
8932
9059
|
username?: string | undefined;
|
|
@@ -8950,6 +9077,7 @@ export declare const User: {
|
|
|
8950
9077
|
is_mobile?: boolean | undefined;
|
|
8951
9078
|
dob?: Date | undefined;
|
|
8952
9079
|
mezon_id?: string | undefined;
|
|
9080
|
+
list_nick_names?: string[] | undefined;
|
|
8953
9081
|
} & {
|
|
8954
9082
|
id?: string | undefined;
|
|
8955
9083
|
username?: string | undefined;
|
|
@@ -8973,7 +9101,8 @@ export declare const User: {
|
|
|
8973
9101
|
is_mobile?: boolean | undefined;
|
|
8974
9102
|
dob?: Date | undefined;
|
|
8975
9103
|
mezon_id?: string | undefined;
|
|
8976
|
-
|
|
9104
|
+
list_nick_names?: (string[] & string[] & { [K_2 in Exclude<keyof I_1["list_nick_names"], keyof string[]>]: never; }) | undefined;
|
|
9105
|
+
} & { [K_3 in Exclude<keyof I_1, keyof User>]: never; }>(object: I_1): User;
|
|
8977
9106
|
};
|
|
8978
9107
|
export declare const UserGroupList: {
|
|
8979
9108
|
encode(message: UserGroupList, writer?: _m0.Writer): _m0.Writer;
|
|
@@ -9308,6 +9437,7 @@ export declare const Users: {
|
|
|
9308
9437
|
is_mobile?: boolean | undefined;
|
|
9309
9438
|
dob?: Date | undefined;
|
|
9310
9439
|
mezon_id?: string | undefined;
|
|
9440
|
+
list_nick_names?: string[] | undefined;
|
|
9311
9441
|
}[] | undefined;
|
|
9312
9442
|
} & {
|
|
9313
9443
|
users?: ({
|
|
@@ -9333,6 +9463,7 @@ export declare const Users: {
|
|
|
9333
9463
|
is_mobile?: boolean | undefined;
|
|
9334
9464
|
dob?: Date | undefined;
|
|
9335
9465
|
mezon_id?: string | undefined;
|
|
9466
|
+
list_nick_names?: string[] | undefined;
|
|
9336
9467
|
}[] & ({
|
|
9337
9468
|
id?: string | undefined;
|
|
9338
9469
|
username?: string | undefined;
|
|
@@ -9356,6 +9487,7 @@ export declare const Users: {
|
|
|
9356
9487
|
is_mobile?: boolean | undefined;
|
|
9357
9488
|
dob?: Date | undefined;
|
|
9358
9489
|
mezon_id?: string | undefined;
|
|
9490
|
+
list_nick_names?: string[] | undefined;
|
|
9359
9491
|
} & {
|
|
9360
9492
|
id?: string | undefined;
|
|
9361
9493
|
username?: string | undefined;
|
|
@@ -9379,7 +9511,8 @@ export declare const Users: {
|
|
|
9379
9511
|
is_mobile?: boolean | undefined;
|
|
9380
9512
|
dob?: Date | undefined;
|
|
9381
9513
|
mezon_id?: string | undefined;
|
|
9382
|
-
|
|
9514
|
+
list_nick_names?: (string[] & string[] & { [K in Exclude<keyof I["users"][number]["list_nick_names"], keyof string[]>]: never; }) | undefined;
|
|
9515
|
+
} & { [K_1 in Exclude<keyof I["users"][number], keyof User>]: never; })[] & { [K_2 in Exclude<keyof I["users"], keyof {
|
|
9383
9516
|
id?: string | undefined;
|
|
9384
9517
|
username?: string | undefined;
|
|
9385
9518
|
display_name?: string | undefined;
|
|
@@ -9402,8 +9535,9 @@ export declare const Users: {
|
|
|
9402
9535
|
is_mobile?: boolean | undefined;
|
|
9403
9536
|
dob?: Date | undefined;
|
|
9404
9537
|
mezon_id?: string | undefined;
|
|
9538
|
+
list_nick_names?: string[] | undefined;
|
|
9405
9539
|
}[]>]: never; }) | undefined;
|
|
9406
|
-
} & { [
|
|
9540
|
+
} & { [K_3 in Exclude<keyof I, "users">]: never; }>(base?: I | undefined): Users;
|
|
9407
9541
|
fromPartial<I_1 extends {
|
|
9408
9542
|
users?: {
|
|
9409
9543
|
id?: string | undefined;
|
|
@@ -9428,6 +9562,7 @@ export declare const Users: {
|
|
|
9428
9562
|
is_mobile?: boolean | undefined;
|
|
9429
9563
|
dob?: Date | undefined;
|
|
9430
9564
|
mezon_id?: string | undefined;
|
|
9565
|
+
list_nick_names?: string[] | undefined;
|
|
9431
9566
|
}[] | undefined;
|
|
9432
9567
|
} & {
|
|
9433
9568
|
users?: ({
|
|
@@ -9453,6 +9588,7 @@ export declare const Users: {
|
|
|
9453
9588
|
is_mobile?: boolean | undefined;
|
|
9454
9589
|
dob?: Date | undefined;
|
|
9455
9590
|
mezon_id?: string | undefined;
|
|
9591
|
+
list_nick_names?: string[] | undefined;
|
|
9456
9592
|
}[] & ({
|
|
9457
9593
|
id?: string | undefined;
|
|
9458
9594
|
username?: string | undefined;
|
|
@@ -9476,6 +9612,7 @@ export declare const Users: {
|
|
|
9476
9612
|
is_mobile?: boolean | undefined;
|
|
9477
9613
|
dob?: Date | undefined;
|
|
9478
9614
|
mezon_id?: string | undefined;
|
|
9615
|
+
list_nick_names?: string[] | undefined;
|
|
9479
9616
|
} & {
|
|
9480
9617
|
id?: string | undefined;
|
|
9481
9618
|
username?: string | undefined;
|
|
@@ -9499,7 +9636,8 @@ export declare const Users: {
|
|
|
9499
9636
|
is_mobile?: boolean | undefined;
|
|
9500
9637
|
dob?: Date | undefined;
|
|
9501
9638
|
mezon_id?: string | undefined;
|
|
9502
|
-
|
|
9639
|
+
list_nick_names?: (string[] & string[] & { [K_4 in Exclude<keyof I_1["users"][number]["list_nick_names"], keyof string[]>]: never; }) | undefined;
|
|
9640
|
+
} & { [K_5 in Exclude<keyof I_1["users"][number], keyof User>]: never; })[] & { [K_6 in Exclude<keyof I_1["users"], keyof {
|
|
9503
9641
|
id?: string | undefined;
|
|
9504
9642
|
username?: string | undefined;
|
|
9505
9643
|
display_name?: string | undefined;
|
|
@@ -9522,8 +9660,9 @@ export declare const Users: {
|
|
|
9522
9660
|
is_mobile?: boolean | undefined;
|
|
9523
9661
|
dob?: Date | undefined;
|
|
9524
9662
|
mezon_id?: string | undefined;
|
|
9663
|
+
list_nick_names?: string[] | undefined;
|
|
9525
9664
|
}[]>]: never; }) | undefined;
|
|
9526
|
-
} & { [
|
|
9665
|
+
} & { [K_7 in Exclude<keyof I_1, "users">]: never; }>(object: I_1): Users;
|
|
9527
9666
|
};
|
|
9528
9667
|
export declare const ClanDescProfile: {
|
|
9529
9668
|
encode(message: ClanDescProfile, writer?: _m0.Writer): _m0.Writer;
|
|
@@ -15741,6 +15880,7 @@ export declare const ClanEmoji: {
|
|
|
15741
15880
|
clan_id?: string | undefined;
|
|
15742
15881
|
logo?: string | undefined;
|
|
15743
15882
|
clan_name?: string | undefined;
|
|
15883
|
+
is_for_sale?: boolean | undefined;
|
|
15744
15884
|
} & {
|
|
15745
15885
|
id?: string | undefined;
|
|
15746
15886
|
src?: string | undefined;
|
|
@@ -15750,6 +15890,7 @@ export declare const ClanEmoji: {
|
|
|
15750
15890
|
clan_id?: string | undefined;
|
|
15751
15891
|
logo?: string | undefined;
|
|
15752
15892
|
clan_name?: string | undefined;
|
|
15893
|
+
is_for_sale?: boolean | undefined;
|
|
15753
15894
|
} & { [K in Exclude<keyof I, keyof ClanEmoji>]: never; }>(base?: I | undefined): ClanEmoji;
|
|
15754
15895
|
fromPartial<I_1 extends {
|
|
15755
15896
|
id?: string | undefined;
|
|
@@ -15760,6 +15901,7 @@ export declare const ClanEmoji: {
|
|
|
15760
15901
|
clan_id?: string | undefined;
|
|
15761
15902
|
logo?: string | undefined;
|
|
15762
15903
|
clan_name?: string | undefined;
|
|
15904
|
+
is_for_sale?: boolean | undefined;
|
|
15763
15905
|
} & {
|
|
15764
15906
|
id?: string | undefined;
|
|
15765
15907
|
src?: string | undefined;
|
|
@@ -15769,6 +15911,7 @@ export declare const ClanEmoji: {
|
|
|
15769
15911
|
clan_id?: string | undefined;
|
|
15770
15912
|
logo?: string | undefined;
|
|
15771
15913
|
clan_name?: string | undefined;
|
|
15914
|
+
is_for_sale?: boolean | undefined;
|
|
15772
15915
|
} & { [K_1 in Exclude<keyof I_1, keyof ClanEmoji>]: never; }>(object: I_1): ClanEmoji;
|
|
15773
15916
|
};
|
|
15774
15917
|
export declare const EmojiListedResponse: {
|
|
@@ -15786,6 +15929,7 @@ export declare const EmojiListedResponse: {
|
|
|
15786
15929
|
clan_id?: string | undefined;
|
|
15787
15930
|
logo?: string | undefined;
|
|
15788
15931
|
clan_name?: string | undefined;
|
|
15932
|
+
is_for_sale?: boolean | undefined;
|
|
15789
15933
|
}[] | undefined;
|
|
15790
15934
|
} & {
|
|
15791
15935
|
emoji_list?: ({
|
|
@@ -15797,6 +15941,7 @@ export declare const EmojiListedResponse: {
|
|
|
15797
15941
|
clan_id?: string | undefined;
|
|
15798
15942
|
logo?: string | undefined;
|
|
15799
15943
|
clan_name?: string | undefined;
|
|
15944
|
+
is_for_sale?: boolean | undefined;
|
|
15800
15945
|
}[] & ({
|
|
15801
15946
|
id?: string | undefined;
|
|
15802
15947
|
src?: string | undefined;
|
|
@@ -15806,6 +15951,7 @@ export declare const EmojiListedResponse: {
|
|
|
15806
15951
|
clan_id?: string | undefined;
|
|
15807
15952
|
logo?: string | undefined;
|
|
15808
15953
|
clan_name?: string | undefined;
|
|
15954
|
+
is_for_sale?: boolean | undefined;
|
|
15809
15955
|
} & {
|
|
15810
15956
|
id?: string | undefined;
|
|
15811
15957
|
src?: string | undefined;
|
|
@@ -15815,6 +15961,7 @@ export declare const EmojiListedResponse: {
|
|
|
15815
15961
|
clan_id?: string | undefined;
|
|
15816
15962
|
logo?: string | undefined;
|
|
15817
15963
|
clan_name?: string | undefined;
|
|
15964
|
+
is_for_sale?: boolean | undefined;
|
|
15818
15965
|
} & { [K in Exclude<keyof I["emoji_list"][number], keyof ClanEmoji>]: never; })[] & { [K_1 in Exclude<keyof I["emoji_list"], keyof {
|
|
15819
15966
|
id?: string | undefined;
|
|
15820
15967
|
src?: string | undefined;
|
|
@@ -15824,6 +15971,7 @@ export declare const EmojiListedResponse: {
|
|
|
15824
15971
|
clan_id?: string | undefined;
|
|
15825
15972
|
logo?: string | undefined;
|
|
15826
15973
|
clan_name?: string | undefined;
|
|
15974
|
+
is_for_sale?: boolean | undefined;
|
|
15827
15975
|
}[]>]: never; }) | undefined;
|
|
15828
15976
|
} & { [K_2 in Exclude<keyof I, "emoji_list">]: never; }>(base?: I | undefined): EmojiListedResponse;
|
|
15829
15977
|
fromPartial<I_1 extends {
|
|
@@ -15836,6 +15984,7 @@ export declare const EmojiListedResponse: {
|
|
|
15836
15984
|
clan_id?: string | undefined;
|
|
15837
15985
|
logo?: string | undefined;
|
|
15838
15986
|
clan_name?: string | undefined;
|
|
15987
|
+
is_for_sale?: boolean | undefined;
|
|
15839
15988
|
}[] | undefined;
|
|
15840
15989
|
} & {
|
|
15841
15990
|
emoji_list?: ({
|
|
@@ -15847,6 +15996,7 @@ export declare const EmojiListedResponse: {
|
|
|
15847
15996
|
clan_id?: string | undefined;
|
|
15848
15997
|
logo?: string | undefined;
|
|
15849
15998
|
clan_name?: string | undefined;
|
|
15999
|
+
is_for_sale?: boolean | undefined;
|
|
15850
16000
|
}[] & ({
|
|
15851
16001
|
id?: string | undefined;
|
|
15852
16002
|
src?: string | undefined;
|
|
@@ -15856,6 +16006,7 @@ export declare const EmojiListedResponse: {
|
|
|
15856
16006
|
clan_id?: string | undefined;
|
|
15857
16007
|
logo?: string | undefined;
|
|
15858
16008
|
clan_name?: string | undefined;
|
|
16009
|
+
is_for_sale?: boolean | undefined;
|
|
15859
16010
|
} & {
|
|
15860
16011
|
id?: string | undefined;
|
|
15861
16012
|
src?: string | undefined;
|
|
@@ -15865,6 +16016,7 @@ export declare const EmojiListedResponse: {
|
|
|
15865
16016
|
clan_id?: string | undefined;
|
|
15866
16017
|
logo?: string | undefined;
|
|
15867
16018
|
clan_name?: string | undefined;
|
|
16019
|
+
is_for_sale?: boolean | undefined;
|
|
15868
16020
|
} & { [K_3 in Exclude<keyof I_1["emoji_list"][number], keyof ClanEmoji>]: never; })[] & { [K_4 in Exclude<keyof I_1["emoji_list"], keyof {
|
|
15869
16021
|
id?: string | undefined;
|
|
15870
16022
|
src?: string | undefined;
|
|
@@ -15874,6 +16026,7 @@ export declare const EmojiListedResponse: {
|
|
|
15874
16026
|
clan_id?: string | undefined;
|
|
15875
16027
|
logo?: string | undefined;
|
|
15876
16028
|
clan_name?: string | undefined;
|
|
16029
|
+
is_for_sale?: boolean | undefined;
|
|
15877
16030
|
}[]>]: never; }) | undefined;
|
|
15878
16031
|
} & { [K_5 in Exclude<keyof I_1, "emoji_list">]: never; }>(object: I_1): EmojiListedResponse;
|
|
15879
16032
|
};
|
|
@@ -15894,6 +16047,7 @@ export declare const StickerListedResponse: {
|
|
|
15894
16047
|
logo?: string | undefined;
|
|
15895
16048
|
clan_name?: string | undefined;
|
|
15896
16049
|
media_type?: number | undefined;
|
|
16050
|
+
is_for_sale?: boolean | undefined;
|
|
15897
16051
|
}[] | undefined;
|
|
15898
16052
|
} & {
|
|
15899
16053
|
stickers?: ({
|
|
@@ -15907,6 +16061,7 @@ export declare const StickerListedResponse: {
|
|
|
15907
16061
|
logo?: string | undefined;
|
|
15908
16062
|
clan_name?: string | undefined;
|
|
15909
16063
|
media_type?: number | undefined;
|
|
16064
|
+
is_for_sale?: boolean | undefined;
|
|
15910
16065
|
}[] & ({
|
|
15911
16066
|
id?: string | undefined;
|
|
15912
16067
|
source?: string | undefined;
|
|
@@ -15918,6 +16073,7 @@ export declare const StickerListedResponse: {
|
|
|
15918
16073
|
logo?: string | undefined;
|
|
15919
16074
|
clan_name?: string | undefined;
|
|
15920
16075
|
media_type?: number | undefined;
|
|
16076
|
+
is_for_sale?: boolean | undefined;
|
|
15921
16077
|
} & {
|
|
15922
16078
|
id?: string | undefined;
|
|
15923
16079
|
source?: string | undefined;
|
|
@@ -15929,6 +16085,7 @@ export declare const StickerListedResponse: {
|
|
|
15929
16085
|
logo?: string | undefined;
|
|
15930
16086
|
clan_name?: string | undefined;
|
|
15931
16087
|
media_type?: number | undefined;
|
|
16088
|
+
is_for_sale?: boolean | undefined;
|
|
15932
16089
|
} & { [K in Exclude<keyof I["stickers"][number], keyof ClanSticker>]: never; })[] & { [K_1 in Exclude<keyof I["stickers"], keyof {
|
|
15933
16090
|
id?: string | undefined;
|
|
15934
16091
|
source?: string | undefined;
|
|
@@ -15940,6 +16097,7 @@ export declare const StickerListedResponse: {
|
|
|
15940
16097
|
logo?: string | undefined;
|
|
15941
16098
|
clan_name?: string | undefined;
|
|
15942
16099
|
media_type?: number | undefined;
|
|
16100
|
+
is_for_sale?: boolean | undefined;
|
|
15943
16101
|
}[]>]: never; }) | undefined;
|
|
15944
16102
|
} & { [K_2 in Exclude<keyof I, "stickers">]: never; }>(base?: I | undefined): StickerListedResponse;
|
|
15945
16103
|
fromPartial<I_1 extends {
|
|
@@ -15954,6 +16112,7 @@ export declare const StickerListedResponse: {
|
|
|
15954
16112
|
logo?: string | undefined;
|
|
15955
16113
|
clan_name?: string | undefined;
|
|
15956
16114
|
media_type?: number | undefined;
|
|
16115
|
+
is_for_sale?: boolean | undefined;
|
|
15957
16116
|
}[] | undefined;
|
|
15958
16117
|
} & {
|
|
15959
16118
|
stickers?: ({
|
|
@@ -15967,6 +16126,7 @@ export declare const StickerListedResponse: {
|
|
|
15967
16126
|
logo?: string | undefined;
|
|
15968
16127
|
clan_name?: string | undefined;
|
|
15969
16128
|
media_type?: number | undefined;
|
|
16129
|
+
is_for_sale?: boolean | undefined;
|
|
15970
16130
|
}[] & ({
|
|
15971
16131
|
id?: string | undefined;
|
|
15972
16132
|
source?: string | undefined;
|
|
@@ -15978,6 +16138,7 @@ export declare const StickerListedResponse: {
|
|
|
15978
16138
|
logo?: string | undefined;
|
|
15979
16139
|
clan_name?: string | undefined;
|
|
15980
16140
|
media_type?: number | undefined;
|
|
16141
|
+
is_for_sale?: boolean | undefined;
|
|
15981
16142
|
} & {
|
|
15982
16143
|
id?: string | undefined;
|
|
15983
16144
|
source?: string | undefined;
|
|
@@ -15989,6 +16150,7 @@ export declare const StickerListedResponse: {
|
|
|
15989
16150
|
logo?: string | undefined;
|
|
15990
16151
|
clan_name?: string | undefined;
|
|
15991
16152
|
media_type?: number | undefined;
|
|
16153
|
+
is_for_sale?: boolean | undefined;
|
|
15992
16154
|
} & { [K_3 in Exclude<keyof I_1["stickers"][number], keyof ClanSticker>]: never; })[] & { [K_4 in Exclude<keyof I_1["stickers"], keyof {
|
|
15993
16155
|
id?: string | undefined;
|
|
15994
16156
|
source?: string | undefined;
|
|
@@ -16000,6 +16162,7 @@ export declare const StickerListedResponse: {
|
|
|
16000
16162
|
logo?: string | undefined;
|
|
16001
16163
|
clan_name?: string | undefined;
|
|
16002
16164
|
media_type?: number | undefined;
|
|
16165
|
+
is_for_sale?: boolean | undefined;
|
|
16003
16166
|
}[]>]: never; }) | undefined;
|
|
16004
16167
|
} & { [K_5 in Exclude<keyof I_1, "stickers">]: never; }>(object: I_1): StickerListedResponse;
|
|
16005
16168
|
};
|
|
@@ -16019,6 +16182,7 @@ export declare const ClanSticker: {
|
|
|
16019
16182
|
logo?: string | undefined;
|
|
16020
16183
|
clan_name?: string | undefined;
|
|
16021
16184
|
media_type?: number | undefined;
|
|
16185
|
+
is_for_sale?: boolean | undefined;
|
|
16022
16186
|
} & {
|
|
16023
16187
|
id?: string | undefined;
|
|
16024
16188
|
source?: string | undefined;
|
|
@@ -16030,6 +16194,7 @@ export declare const ClanSticker: {
|
|
|
16030
16194
|
logo?: string | undefined;
|
|
16031
16195
|
clan_name?: string | undefined;
|
|
16032
16196
|
media_type?: number | undefined;
|
|
16197
|
+
is_for_sale?: boolean | undefined;
|
|
16033
16198
|
} & { [K in Exclude<keyof I, keyof ClanSticker>]: never; }>(base?: I | undefined): ClanSticker;
|
|
16034
16199
|
fromPartial<I_1 extends {
|
|
16035
16200
|
id?: string | undefined;
|
|
@@ -16042,6 +16207,7 @@ export declare const ClanSticker: {
|
|
|
16042
16207
|
logo?: string | undefined;
|
|
16043
16208
|
clan_name?: string | undefined;
|
|
16044
16209
|
media_type?: number | undefined;
|
|
16210
|
+
is_for_sale?: boolean | undefined;
|
|
16045
16211
|
} & {
|
|
16046
16212
|
id?: string | undefined;
|
|
16047
16213
|
source?: string | undefined;
|
|
@@ -16053,6 +16219,7 @@ export declare const ClanSticker: {
|
|
|
16053
16219
|
logo?: string | undefined;
|
|
16054
16220
|
clan_name?: string | undefined;
|
|
16055
16221
|
media_type?: number | undefined;
|
|
16222
|
+
is_for_sale?: boolean | undefined;
|
|
16056
16223
|
} & { [K_1 in Exclude<keyof I_1, keyof ClanSticker>]: never; }>(object: I_1): ClanSticker;
|
|
16057
16224
|
};
|
|
16058
16225
|
export declare const AllUsersAddChannelRequest: {
|
|
@@ -16110,12 +16277,14 @@ export declare const ClanEmojiCreateRequest: {
|
|
|
16110
16277
|
shortname?: string | undefined;
|
|
16111
16278
|
category?: string | undefined;
|
|
16112
16279
|
id?: string | undefined;
|
|
16280
|
+
is_for_sale?: boolean | undefined;
|
|
16113
16281
|
} & {
|
|
16114
16282
|
clan_id?: string | undefined;
|
|
16115
16283
|
source?: string | undefined;
|
|
16116
16284
|
shortname?: string | undefined;
|
|
16117
16285
|
category?: string | undefined;
|
|
16118
16286
|
id?: string | undefined;
|
|
16287
|
+
is_for_sale?: boolean | undefined;
|
|
16119
16288
|
} & { [K in Exclude<keyof I, keyof ClanEmojiCreateRequest>]: never; }>(base?: I | undefined): ClanEmojiCreateRequest;
|
|
16120
16289
|
fromPartial<I_1 extends {
|
|
16121
16290
|
clan_id?: string | undefined;
|
|
@@ -16123,12 +16292,14 @@ export declare const ClanEmojiCreateRequest: {
|
|
|
16123
16292
|
shortname?: string | undefined;
|
|
16124
16293
|
category?: string | undefined;
|
|
16125
16294
|
id?: string | undefined;
|
|
16295
|
+
is_for_sale?: boolean | undefined;
|
|
16126
16296
|
} & {
|
|
16127
16297
|
clan_id?: string | undefined;
|
|
16128
16298
|
source?: string | undefined;
|
|
16129
16299
|
shortname?: string | undefined;
|
|
16130
16300
|
category?: string | undefined;
|
|
16131
16301
|
id?: string | undefined;
|
|
16302
|
+
is_for_sale?: boolean | undefined;
|
|
16132
16303
|
} & { [K_1 in Exclude<keyof I_1, keyof ClanEmojiCreateRequest>]: never; }>(object: I_1): ClanEmojiCreateRequest;
|
|
16133
16304
|
};
|
|
16134
16305
|
export declare const ClanEmojiGetByClanIdRequest: {
|
|
@@ -16602,31 +16773,35 @@ export declare const ClanStickerAddRequest: {
|
|
|
16602
16773
|
source?: string | undefined;
|
|
16603
16774
|
shortname?: string | undefined;
|
|
16604
16775
|
category?: string | undefined;
|
|
16605
|
-
clan_id?:
|
|
16776
|
+
clan_id?: string | undefined;
|
|
16606
16777
|
id?: string | undefined;
|
|
16607
16778
|
media_type?: number | undefined;
|
|
16779
|
+
is_for_sale?: boolean | undefined;
|
|
16608
16780
|
} & {
|
|
16609
16781
|
source?: string | undefined;
|
|
16610
16782
|
shortname?: string | undefined;
|
|
16611
16783
|
category?: string | undefined;
|
|
16612
|
-
clan_id?:
|
|
16784
|
+
clan_id?: string | undefined;
|
|
16613
16785
|
id?: string | undefined;
|
|
16614
16786
|
media_type?: number | undefined;
|
|
16787
|
+
is_for_sale?: boolean | undefined;
|
|
16615
16788
|
} & { [K in Exclude<keyof I, keyof ClanStickerAddRequest>]: never; }>(base?: I | undefined): ClanStickerAddRequest;
|
|
16616
16789
|
fromPartial<I_1 extends {
|
|
16617
16790
|
source?: string | undefined;
|
|
16618
16791
|
shortname?: string | undefined;
|
|
16619
16792
|
category?: string | undefined;
|
|
16620
|
-
clan_id?:
|
|
16793
|
+
clan_id?: string | undefined;
|
|
16621
16794
|
id?: string | undefined;
|
|
16622
16795
|
media_type?: number | undefined;
|
|
16796
|
+
is_for_sale?: boolean | undefined;
|
|
16623
16797
|
} & {
|
|
16624
16798
|
source?: string | undefined;
|
|
16625
16799
|
shortname?: string | undefined;
|
|
16626
16800
|
category?: string | undefined;
|
|
16627
|
-
clan_id?:
|
|
16801
|
+
clan_id?: string | undefined;
|
|
16628
16802
|
id?: string | undefined;
|
|
16629
16803
|
media_type?: number | undefined;
|
|
16804
|
+
is_for_sale?: boolean | undefined;
|
|
16630
16805
|
} & { [K_1 in Exclude<keyof I_1, keyof ClanStickerAddRequest>]: never; }>(object: I_1): ClanStickerAddRequest;
|
|
16631
16806
|
};
|
|
16632
16807
|
export declare const ClanStickerListByClanIdRequest: {
|
|
@@ -17012,6 +17187,7 @@ export declare const UpdateAppRequest: {
|
|
|
17012
17187
|
token?: string | undefined;
|
|
17013
17188
|
about?: string | undefined;
|
|
17014
17189
|
app_url?: string | undefined;
|
|
17190
|
+
is_shadow?: string | undefined;
|
|
17015
17191
|
} & {
|
|
17016
17192
|
id?: string | undefined;
|
|
17017
17193
|
appname?: string | undefined;
|
|
@@ -17020,6 +17196,7 @@ export declare const UpdateAppRequest: {
|
|
|
17020
17196
|
token?: string | undefined;
|
|
17021
17197
|
about?: string | undefined;
|
|
17022
17198
|
app_url?: string | undefined;
|
|
17199
|
+
is_shadow?: string | undefined;
|
|
17023
17200
|
} & { [K in Exclude<keyof I, keyof UpdateAppRequest>]: never; }>(base?: I | undefined): UpdateAppRequest;
|
|
17024
17201
|
fromPartial<I_1 extends {
|
|
17025
17202
|
id?: string | undefined;
|
|
@@ -17029,6 +17206,7 @@ export declare const UpdateAppRequest: {
|
|
|
17029
17206
|
token?: string | undefined;
|
|
17030
17207
|
about?: string | undefined;
|
|
17031
17208
|
app_url?: string | undefined;
|
|
17209
|
+
is_shadow?: string | undefined;
|
|
17032
17210
|
} & {
|
|
17033
17211
|
id?: string | undefined;
|
|
17034
17212
|
appname?: string | undefined;
|
|
@@ -17037,6 +17215,7 @@ export declare const UpdateAppRequest: {
|
|
|
17037
17215
|
token?: string | undefined;
|
|
17038
17216
|
about?: string | undefined;
|
|
17039
17217
|
app_url?: string | undefined;
|
|
17218
|
+
is_shadow?: string | undefined;
|
|
17040
17219
|
} & { [K_1 in Exclude<keyof I_1, keyof UpdateAppRequest>]: never; }>(object: I_1): UpdateAppRequest;
|
|
17041
17220
|
};
|
|
17042
17221
|
export declare const AppId: {
|
|
@@ -17740,6 +17919,7 @@ export declare const AllUserClans: {
|
|
|
17740
17919
|
is_mobile?: boolean | undefined;
|
|
17741
17920
|
dob?: Date | undefined;
|
|
17742
17921
|
mezon_id?: string | undefined;
|
|
17922
|
+
list_nick_names?: string[] | undefined;
|
|
17743
17923
|
}[] | undefined;
|
|
17744
17924
|
} & {
|
|
17745
17925
|
users?: ({
|
|
@@ -17765,6 +17945,7 @@ export declare const AllUserClans: {
|
|
|
17765
17945
|
is_mobile?: boolean | undefined;
|
|
17766
17946
|
dob?: Date | undefined;
|
|
17767
17947
|
mezon_id?: string | undefined;
|
|
17948
|
+
list_nick_names?: string[] | undefined;
|
|
17768
17949
|
}[] & ({
|
|
17769
17950
|
id?: string | undefined;
|
|
17770
17951
|
username?: string | undefined;
|
|
@@ -17788,6 +17969,7 @@ export declare const AllUserClans: {
|
|
|
17788
17969
|
is_mobile?: boolean | undefined;
|
|
17789
17970
|
dob?: Date | undefined;
|
|
17790
17971
|
mezon_id?: string | undefined;
|
|
17972
|
+
list_nick_names?: string[] | undefined;
|
|
17791
17973
|
} & {
|
|
17792
17974
|
id?: string | undefined;
|
|
17793
17975
|
username?: string | undefined;
|
|
@@ -17811,7 +17993,8 @@ export declare const AllUserClans: {
|
|
|
17811
17993
|
is_mobile?: boolean | undefined;
|
|
17812
17994
|
dob?: Date | undefined;
|
|
17813
17995
|
mezon_id?: string | undefined;
|
|
17814
|
-
|
|
17996
|
+
list_nick_names?: (string[] & string[] & { [K in Exclude<keyof I["users"][number]["list_nick_names"], keyof string[]>]: never; }) | undefined;
|
|
17997
|
+
} & { [K_1 in Exclude<keyof I["users"][number], keyof User>]: never; })[] & { [K_2 in Exclude<keyof I["users"], keyof {
|
|
17815
17998
|
id?: string | undefined;
|
|
17816
17999
|
username?: string | undefined;
|
|
17817
18000
|
display_name?: string | undefined;
|
|
@@ -17834,8 +18017,9 @@ export declare const AllUserClans: {
|
|
|
17834
18017
|
is_mobile?: boolean | undefined;
|
|
17835
18018
|
dob?: Date | undefined;
|
|
17836
18019
|
mezon_id?: string | undefined;
|
|
18020
|
+
list_nick_names?: string[] | undefined;
|
|
17837
18021
|
}[]>]: never; }) | undefined;
|
|
17838
|
-
} & { [
|
|
18022
|
+
} & { [K_3 in Exclude<keyof I, "users">]: never; }>(base?: I | undefined): AllUserClans;
|
|
17839
18023
|
fromPartial<I_1 extends {
|
|
17840
18024
|
users?: {
|
|
17841
18025
|
id?: string | undefined;
|
|
@@ -17860,6 +18044,7 @@ export declare const AllUserClans: {
|
|
|
17860
18044
|
is_mobile?: boolean | undefined;
|
|
17861
18045
|
dob?: Date | undefined;
|
|
17862
18046
|
mezon_id?: string | undefined;
|
|
18047
|
+
list_nick_names?: string[] | undefined;
|
|
17863
18048
|
}[] | undefined;
|
|
17864
18049
|
} & {
|
|
17865
18050
|
users?: ({
|
|
@@ -17885,6 +18070,7 @@ export declare const AllUserClans: {
|
|
|
17885
18070
|
is_mobile?: boolean | undefined;
|
|
17886
18071
|
dob?: Date | undefined;
|
|
17887
18072
|
mezon_id?: string | undefined;
|
|
18073
|
+
list_nick_names?: string[] | undefined;
|
|
17888
18074
|
}[] & ({
|
|
17889
18075
|
id?: string | undefined;
|
|
17890
18076
|
username?: string | undefined;
|
|
@@ -17908,6 +18094,7 @@ export declare const AllUserClans: {
|
|
|
17908
18094
|
is_mobile?: boolean | undefined;
|
|
17909
18095
|
dob?: Date | undefined;
|
|
17910
18096
|
mezon_id?: string | undefined;
|
|
18097
|
+
list_nick_names?: string[] | undefined;
|
|
17911
18098
|
} & {
|
|
17912
18099
|
id?: string | undefined;
|
|
17913
18100
|
username?: string | undefined;
|
|
@@ -17931,7 +18118,8 @@ export declare const AllUserClans: {
|
|
|
17931
18118
|
is_mobile?: boolean | undefined;
|
|
17932
18119
|
dob?: Date | undefined;
|
|
17933
18120
|
mezon_id?: string | undefined;
|
|
17934
|
-
|
|
18121
|
+
list_nick_names?: (string[] & string[] & { [K_4 in Exclude<keyof I_1["users"][number]["list_nick_names"], keyof string[]>]: never; }) | undefined;
|
|
18122
|
+
} & { [K_5 in Exclude<keyof I_1["users"][number], keyof User>]: never; })[] & { [K_6 in Exclude<keyof I_1["users"], keyof {
|
|
17935
18123
|
id?: string | undefined;
|
|
17936
18124
|
username?: string | undefined;
|
|
17937
18125
|
display_name?: string | undefined;
|
|
@@ -17954,8 +18142,9 @@ export declare const AllUserClans: {
|
|
|
17954
18142
|
is_mobile?: boolean | undefined;
|
|
17955
18143
|
dob?: Date | undefined;
|
|
17956
18144
|
mezon_id?: string | undefined;
|
|
18145
|
+
list_nick_names?: string[] | undefined;
|
|
17957
18146
|
}[]>]: never; }) | undefined;
|
|
17958
|
-
} & { [
|
|
18147
|
+
} & { [K_7 in Exclude<keyof I_1, "users">]: never; }>(object: I_1): AllUserClans;
|
|
17959
18148
|
};
|
|
17960
18149
|
export declare const RoleListEventRequest: {
|
|
17961
18150
|
encode(message: RoleListEventRequest, writer?: _m0.Writer): _m0.Writer;
|
|
@@ -20537,21 +20726,41 @@ export declare const TokenSentEvent: {
|
|
|
20537
20726
|
transaction_id?: string | undefined;
|
|
20538
20727
|
} & { [K_1 in Exclude<keyof I_1, keyof TokenSentEvent>]: never; }>(object: I_1): TokenSentEvent;
|
|
20539
20728
|
};
|
|
20540
|
-
export declare const
|
|
20541
|
-
encode(message:
|
|
20542
|
-
decode(input: _m0.Reader | Uint8Array, length?: number):
|
|
20543
|
-
fromJSON(object: any):
|
|
20544
|
-
toJSON(message:
|
|
20729
|
+
export declare const UnlockItemRequest: {
|
|
20730
|
+
encode(message: UnlockItemRequest, writer?: _m0.Writer): _m0.Writer;
|
|
20731
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): UnlockItemRequest;
|
|
20732
|
+
fromJSON(object: any): UnlockItemRequest;
|
|
20733
|
+
toJSON(message: UnlockItemRequest): unknown;
|
|
20545
20734
|
create<I extends {
|
|
20546
|
-
|
|
20735
|
+
item_id?: string | undefined;
|
|
20736
|
+
item_type?: number | undefined;
|
|
20547
20737
|
} & {
|
|
20548
|
-
|
|
20549
|
-
|
|
20738
|
+
item_id?: string | undefined;
|
|
20739
|
+
item_type?: number | undefined;
|
|
20740
|
+
} & { [K in Exclude<keyof I, keyof UnlockItemRequest>]: never; }>(base?: I | undefined): UnlockItemRequest;
|
|
20550
20741
|
fromPartial<I_1 extends {
|
|
20551
|
-
|
|
20742
|
+
item_id?: string | undefined;
|
|
20743
|
+
item_type?: number | undefined;
|
|
20552
20744
|
} & {
|
|
20553
|
-
|
|
20554
|
-
|
|
20745
|
+
item_id?: string | undefined;
|
|
20746
|
+
item_type?: number | undefined;
|
|
20747
|
+
} & { [K_1 in Exclude<keyof I_1, keyof UnlockItemRequest>]: never; }>(object: I_1): UnlockItemRequest;
|
|
20748
|
+
};
|
|
20749
|
+
export declare const UnlockedItemResponse: {
|
|
20750
|
+
encode(message: UnlockedItemResponse, writer?: _m0.Writer): _m0.Writer;
|
|
20751
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): UnlockedItemResponse;
|
|
20752
|
+
fromJSON(object: any): UnlockedItemResponse;
|
|
20753
|
+
toJSON(message: UnlockedItemResponse): unknown;
|
|
20754
|
+
create<I extends {
|
|
20755
|
+
source?: string | undefined;
|
|
20756
|
+
} & {
|
|
20757
|
+
source?: string | undefined;
|
|
20758
|
+
} & { [K in Exclude<keyof I, "source">]: never; }>(base?: I | undefined): UnlockedItemResponse;
|
|
20759
|
+
fromPartial<I_1 extends {
|
|
20760
|
+
source?: string | undefined;
|
|
20761
|
+
} & {
|
|
20762
|
+
source?: string | undefined;
|
|
20763
|
+
} & { [K_1 in Exclude<keyof I_1, "source">]: never; }>(object: I_1): UnlockedItemResponse;
|
|
20555
20764
|
};
|
|
20556
20765
|
export declare const ListOnboardingRequest: {
|
|
20557
20766
|
encode(message: ListOnboardingRequest, writer?: _m0.Writer): _m0.Writer;
|
|
@@ -22138,23 +22347,23 @@ export declare const WalletLedgerListReq: {
|
|
|
22138
22347
|
toJSON(message: WalletLedgerListReq): unknown;
|
|
22139
22348
|
create<I extends {
|
|
22140
22349
|
limit?: number | undefined;
|
|
22141
|
-
|
|
22350
|
+
filter?: number | undefined;
|
|
22142
22351
|
transaction_id?: string | undefined;
|
|
22143
22352
|
page?: number | undefined;
|
|
22144
22353
|
} & {
|
|
22145
22354
|
limit?: number | undefined;
|
|
22146
|
-
|
|
22355
|
+
filter?: number | undefined;
|
|
22147
22356
|
transaction_id?: string | undefined;
|
|
22148
22357
|
page?: number | undefined;
|
|
22149
22358
|
} & { [K in Exclude<keyof I, keyof WalletLedgerListReq>]: never; }>(base?: I | undefined): WalletLedgerListReq;
|
|
22150
22359
|
fromPartial<I_1 extends {
|
|
22151
22360
|
limit?: number | undefined;
|
|
22152
|
-
|
|
22361
|
+
filter?: number | undefined;
|
|
22153
22362
|
transaction_id?: string | undefined;
|
|
22154
22363
|
page?: number | undefined;
|
|
22155
22364
|
} & {
|
|
22156
22365
|
limit?: number | undefined;
|
|
22157
|
-
|
|
22366
|
+
filter?: number | undefined;
|
|
22158
22367
|
transaction_id?: string | undefined;
|
|
22159
22368
|
page?: number | undefined;
|
|
22160
22369
|
} & { [K_1 in Exclude<keyof I_1, keyof WalletLedgerListReq>]: never; }>(object: I_1): WalletLedgerListReq;
|
|
@@ -23467,7 +23676,7 @@ export declare const MezonOauthClientList: {
|
|
|
23467
23676
|
fromJSON(object: any): MezonOauthClientList;
|
|
23468
23677
|
toJSON(message: MezonOauthClientList): unknown;
|
|
23469
23678
|
create<I extends {
|
|
23470
|
-
|
|
23679
|
+
list_mezon_oauth_client?: {
|
|
23471
23680
|
access_token_strategy?: string | undefined;
|
|
23472
23681
|
allowed_cors_origins?: string[] | undefined;
|
|
23473
23682
|
audience?: string[] | undefined;
|
|
@@ -23517,7 +23726,7 @@ export declare const MezonOauthClientList: {
|
|
|
23517
23726
|
userinfo_signed_response_alg?: string | undefined;
|
|
23518
23727
|
}[] | undefined;
|
|
23519
23728
|
} & {
|
|
23520
|
-
|
|
23729
|
+
list_mezon_oauth_client?: ({
|
|
23521
23730
|
access_token_strategy?: string | undefined;
|
|
23522
23731
|
allowed_cors_origins?: string[] | undefined;
|
|
23523
23732
|
audience?: string[] | undefined;
|
|
@@ -23615,8 +23824,8 @@ export declare const MezonOauthClientList: {
|
|
|
23615
23824
|
userinfo_signed_response_alg?: string | undefined;
|
|
23616
23825
|
} & {
|
|
23617
23826
|
access_token_strategy?: string | undefined;
|
|
23618
|
-
allowed_cors_origins?: (string[] & string[] & { [K in Exclude<keyof I["
|
|
23619
|
-
audience?: (string[] & string[] & { [K_1 in Exclude<keyof I["
|
|
23827
|
+
allowed_cors_origins?: (string[] & string[] & { [K in Exclude<keyof I["list_mezon_oauth_client"][number]["allowed_cors_origins"], keyof string[]>]: never; }) | undefined;
|
|
23828
|
+
audience?: (string[] & string[] & { [K_1 in Exclude<keyof I["list_mezon_oauth_client"][number]["audience"], keyof string[]>]: never; }) | undefined;
|
|
23620
23829
|
authorization_code_grant_access_token_lifespan?: string | undefined;
|
|
23621
23830
|
authorization_code_grant_id_token_lifespan?: string | undefined;
|
|
23622
23831
|
authorization_code_grant_refresh_token_lifespan?: string | undefined;
|
|
@@ -23628,29 +23837,29 @@ export declare const MezonOauthClientList: {
|
|
|
23628
23837
|
client_secret?: string | undefined;
|
|
23629
23838
|
client_secret_expires_at?: number | undefined;
|
|
23630
23839
|
client_uri?: string | undefined;
|
|
23631
|
-
contacts?: (string[] & string[] & { [K_2 in Exclude<keyof I["
|
|
23840
|
+
contacts?: (string[] & string[] & { [K_2 in Exclude<keyof I["list_mezon_oauth_client"][number]["contacts"], keyof string[]>]: never; }) | undefined;
|
|
23632
23841
|
created_at?: Date | undefined;
|
|
23633
23842
|
frontchannel_logout_session_required?: boolean | undefined;
|
|
23634
23843
|
frontchannel_logout_uri?: string | undefined;
|
|
23635
|
-
grant_types?: (string[] & string[] & { [K_3 in Exclude<keyof I["
|
|
23844
|
+
grant_types?: (string[] & string[] & { [K_3 in Exclude<keyof I["list_mezon_oauth_client"][number]["grant_types"], keyof string[]>]: never; }) | undefined;
|
|
23636
23845
|
implicit_grant_access_token_lifespan?: string | undefined;
|
|
23637
23846
|
implicit_grant_id_token_lifespan?: string | undefined;
|
|
23638
|
-
jwks?: (string[] & string[] & { [K_4 in Exclude<keyof I["
|
|
23847
|
+
jwks?: (string[] & string[] & { [K_4 in Exclude<keyof I["list_mezon_oauth_client"][number]["jwks"], keyof string[]>]: never; }) | undefined;
|
|
23639
23848
|
jwks_uri?: string | undefined;
|
|
23640
23849
|
jwt_bearer_grant_access_token_lifespan?: string | undefined;
|
|
23641
23850
|
logo_uri?: string | undefined;
|
|
23642
23851
|
owner?: string | undefined;
|
|
23643
23852
|
policy_uri?: string | undefined;
|
|
23644
|
-
post_logout_redirect_uris?: (string[] & string[] & { [K_5 in Exclude<keyof I["
|
|
23645
|
-
redirect_uris?: (string[] & string[] & { [K_6 in Exclude<keyof I["
|
|
23853
|
+
post_logout_redirect_uris?: (string[] & string[] & { [K_5 in Exclude<keyof I["list_mezon_oauth_client"][number]["post_logout_redirect_uris"], keyof string[]>]: never; }) | undefined;
|
|
23854
|
+
redirect_uris?: (string[] & string[] & { [K_6 in Exclude<keyof I["list_mezon_oauth_client"][number]["redirect_uris"], keyof string[]>]: never; }) | undefined;
|
|
23646
23855
|
refresh_token_grant_access_token_lifespan?: string | undefined;
|
|
23647
23856
|
refresh_token_grant_id_token_lifespan?: string | undefined;
|
|
23648
23857
|
refresh_token_grant_refresh_token_lifespan?: string | undefined;
|
|
23649
23858
|
registration_access_token?: string | undefined;
|
|
23650
23859
|
registration_client_uri?: string | undefined;
|
|
23651
23860
|
request_object_signing_alg?: string | undefined;
|
|
23652
|
-
request_uris?: (string[] & string[] & { [K_7 in Exclude<keyof I["
|
|
23653
|
-
response_types?: (string[] & string[] & { [K_8 in Exclude<keyof I["
|
|
23861
|
+
request_uris?: (string[] & string[] & { [K_7 in Exclude<keyof I["list_mezon_oauth_client"][number]["request_uris"], keyof string[]>]: never; }) | undefined;
|
|
23862
|
+
response_types?: (string[] & string[] & { [K_8 in Exclude<keyof I["list_mezon_oauth_client"][number]["response_types"], keyof string[]>]: never; }) | undefined;
|
|
23654
23863
|
scope?: string | undefined;
|
|
23655
23864
|
sector_identifier_uri?: string | undefined;
|
|
23656
23865
|
skip_consent?: boolean | undefined;
|
|
@@ -23661,7 +23870,7 @@ export declare const MezonOauthClientList: {
|
|
|
23661
23870
|
tos_uri?: string | undefined;
|
|
23662
23871
|
updated_at?: Date | undefined;
|
|
23663
23872
|
userinfo_signed_response_alg?: string | undefined;
|
|
23664
|
-
} & { [K_9 in Exclude<keyof I["
|
|
23873
|
+
} & { [K_9 in Exclude<keyof I["list_mezon_oauth_client"][number], keyof MezonOauthClient>]: never; })[] & { [K_10 in Exclude<keyof I["list_mezon_oauth_client"], keyof {
|
|
23665
23874
|
access_token_strategy?: string | undefined;
|
|
23666
23875
|
allowed_cors_origins?: string[] | undefined;
|
|
23667
23876
|
audience?: string[] | undefined;
|
|
@@ -23710,9 +23919,9 @@ export declare const MezonOauthClientList: {
|
|
|
23710
23919
|
updated_at?: Date | undefined;
|
|
23711
23920
|
userinfo_signed_response_alg?: string | undefined;
|
|
23712
23921
|
}[]>]: never; }) | undefined;
|
|
23713
|
-
} & { [K_11 in Exclude<keyof I, "
|
|
23922
|
+
} & { [K_11 in Exclude<keyof I, "list_mezon_oauth_client">]: never; }>(base?: I | undefined): MezonOauthClientList;
|
|
23714
23923
|
fromPartial<I_1 extends {
|
|
23715
|
-
|
|
23924
|
+
list_mezon_oauth_client?: {
|
|
23716
23925
|
access_token_strategy?: string | undefined;
|
|
23717
23926
|
allowed_cors_origins?: string[] | undefined;
|
|
23718
23927
|
audience?: string[] | undefined;
|
|
@@ -23762,7 +23971,7 @@ export declare const MezonOauthClientList: {
|
|
|
23762
23971
|
userinfo_signed_response_alg?: string | undefined;
|
|
23763
23972
|
}[] | undefined;
|
|
23764
23973
|
} & {
|
|
23765
|
-
|
|
23974
|
+
list_mezon_oauth_client?: ({
|
|
23766
23975
|
access_token_strategy?: string | undefined;
|
|
23767
23976
|
allowed_cors_origins?: string[] | undefined;
|
|
23768
23977
|
audience?: string[] | undefined;
|
|
@@ -23860,8 +24069,8 @@ export declare const MezonOauthClientList: {
|
|
|
23860
24069
|
userinfo_signed_response_alg?: string | undefined;
|
|
23861
24070
|
} & {
|
|
23862
24071
|
access_token_strategy?: string | undefined;
|
|
23863
|
-
allowed_cors_origins?: (string[] & string[] & { [K_12 in Exclude<keyof I_1["
|
|
23864
|
-
audience?: (string[] & string[] & { [K_13 in Exclude<keyof I_1["
|
|
24072
|
+
allowed_cors_origins?: (string[] & string[] & { [K_12 in Exclude<keyof I_1["list_mezon_oauth_client"][number]["allowed_cors_origins"], keyof string[]>]: never; }) | undefined;
|
|
24073
|
+
audience?: (string[] & string[] & { [K_13 in Exclude<keyof I_1["list_mezon_oauth_client"][number]["audience"], keyof string[]>]: never; }) | undefined;
|
|
23865
24074
|
authorization_code_grant_access_token_lifespan?: string | undefined;
|
|
23866
24075
|
authorization_code_grant_id_token_lifespan?: string | undefined;
|
|
23867
24076
|
authorization_code_grant_refresh_token_lifespan?: string | undefined;
|
|
@@ -23873,29 +24082,29 @@ export declare const MezonOauthClientList: {
|
|
|
23873
24082
|
client_secret?: string | undefined;
|
|
23874
24083
|
client_secret_expires_at?: number | undefined;
|
|
23875
24084
|
client_uri?: string | undefined;
|
|
23876
|
-
contacts?: (string[] & string[] & { [K_14 in Exclude<keyof I_1["
|
|
24085
|
+
contacts?: (string[] & string[] & { [K_14 in Exclude<keyof I_1["list_mezon_oauth_client"][number]["contacts"], keyof string[]>]: never; }) | undefined;
|
|
23877
24086
|
created_at?: Date | undefined;
|
|
23878
24087
|
frontchannel_logout_session_required?: boolean | undefined;
|
|
23879
24088
|
frontchannel_logout_uri?: string | undefined;
|
|
23880
|
-
grant_types?: (string[] & string[] & { [K_15 in Exclude<keyof I_1["
|
|
24089
|
+
grant_types?: (string[] & string[] & { [K_15 in Exclude<keyof I_1["list_mezon_oauth_client"][number]["grant_types"], keyof string[]>]: never; }) | undefined;
|
|
23881
24090
|
implicit_grant_access_token_lifespan?: string | undefined;
|
|
23882
24091
|
implicit_grant_id_token_lifespan?: string | undefined;
|
|
23883
|
-
jwks?: (string[] & string[] & { [K_16 in Exclude<keyof I_1["
|
|
24092
|
+
jwks?: (string[] & string[] & { [K_16 in Exclude<keyof I_1["list_mezon_oauth_client"][number]["jwks"], keyof string[]>]: never; }) | undefined;
|
|
23884
24093
|
jwks_uri?: string | undefined;
|
|
23885
24094
|
jwt_bearer_grant_access_token_lifespan?: string | undefined;
|
|
23886
24095
|
logo_uri?: string | undefined;
|
|
23887
24096
|
owner?: string | undefined;
|
|
23888
24097
|
policy_uri?: string | undefined;
|
|
23889
|
-
post_logout_redirect_uris?: (string[] & string[] & { [K_17 in Exclude<keyof I_1["
|
|
23890
|
-
redirect_uris?: (string[] & string[] & { [K_18 in Exclude<keyof I_1["
|
|
24098
|
+
post_logout_redirect_uris?: (string[] & string[] & { [K_17 in Exclude<keyof I_1["list_mezon_oauth_client"][number]["post_logout_redirect_uris"], keyof string[]>]: never; }) | undefined;
|
|
24099
|
+
redirect_uris?: (string[] & string[] & { [K_18 in Exclude<keyof I_1["list_mezon_oauth_client"][number]["redirect_uris"], keyof string[]>]: never; }) | undefined;
|
|
23891
24100
|
refresh_token_grant_access_token_lifespan?: string | undefined;
|
|
23892
24101
|
refresh_token_grant_id_token_lifespan?: string | undefined;
|
|
23893
24102
|
refresh_token_grant_refresh_token_lifespan?: string | undefined;
|
|
23894
24103
|
registration_access_token?: string | undefined;
|
|
23895
24104
|
registration_client_uri?: string | undefined;
|
|
23896
24105
|
request_object_signing_alg?: string | undefined;
|
|
23897
|
-
request_uris?: (string[] & string[] & { [K_19 in Exclude<keyof I_1["
|
|
23898
|
-
response_types?: (string[] & string[] & { [K_20 in Exclude<keyof I_1["
|
|
24106
|
+
request_uris?: (string[] & string[] & { [K_19 in Exclude<keyof I_1["list_mezon_oauth_client"][number]["request_uris"], keyof string[]>]: never; }) | undefined;
|
|
24107
|
+
response_types?: (string[] & string[] & { [K_20 in Exclude<keyof I_1["list_mezon_oauth_client"][number]["response_types"], keyof string[]>]: never; }) | undefined;
|
|
23899
24108
|
scope?: string | undefined;
|
|
23900
24109
|
sector_identifier_uri?: string | undefined;
|
|
23901
24110
|
skip_consent?: boolean | undefined;
|
|
@@ -23906,7 +24115,7 @@ export declare const MezonOauthClientList: {
|
|
|
23906
24115
|
tos_uri?: string | undefined;
|
|
23907
24116
|
updated_at?: Date | undefined;
|
|
23908
24117
|
userinfo_signed_response_alg?: string | undefined;
|
|
23909
|
-
} & { [K_21 in Exclude<keyof I_1["
|
|
24118
|
+
} & { [K_21 in Exclude<keyof I_1["list_mezon_oauth_client"][number], keyof MezonOauthClient>]: never; })[] & { [K_22 in Exclude<keyof I_1["list_mezon_oauth_client"], keyof {
|
|
23910
24119
|
access_token_strategy?: string | undefined;
|
|
23911
24120
|
allowed_cors_origins?: string[] | undefined;
|
|
23912
24121
|
audience?: string[] | undefined;
|
|
@@ -23955,7 +24164,7 @@ export declare const MezonOauthClientList: {
|
|
|
23955
24164
|
updated_at?: Date | undefined;
|
|
23956
24165
|
userinfo_signed_response_alg?: string | undefined;
|
|
23957
24166
|
}[]>]: never; }) | undefined;
|
|
23958
|
-
} & { [K_23 in Exclude<keyof I_1, "
|
|
24167
|
+
} & { [K_23 in Exclude<keyof I_1, "list_mezon_oauth_client">]: never; }>(object: I_1): MezonOauthClientList;
|
|
23959
24168
|
};
|
|
23960
24169
|
export declare const GetMezonOauthClientRequest: {
|
|
23961
24170
|
encode(message: GetMezonOauthClientRequest, writer?: _m0.Writer): _m0.Writer;
|
|
@@ -24189,6 +24398,262 @@ export declare const AccountMezon_VarsEntry: {
|
|
|
24189
24398
|
value?: string | undefined;
|
|
24190
24399
|
} & { [K_1 in Exclude<keyof I_1, keyof AccountMezon_VarsEntry>]: never; }>(object: I_1): AccountMezon_VarsEntry;
|
|
24191
24400
|
};
|
|
24401
|
+
export declare const QuickMenuAccess: {
|
|
24402
|
+
encode(message: QuickMenuAccess, writer?: _m0.Writer): _m0.Writer;
|
|
24403
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): QuickMenuAccess;
|
|
24404
|
+
fromJSON(object: any): QuickMenuAccess;
|
|
24405
|
+
toJSON(message: QuickMenuAccess): unknown;
|
|
24406
|
+
create<I extends {
|
|
24407
|
+
id?: string | undefined;
|
|
24408
|
+
bot_id?: string | undefined;
|
|
24409
|
+
clan_id?: string | undefined;
|
|
24410
|
+
channel_id?: string | undefined;
|
|
24411
|
+
menu_name?: string | undefined;
|
|
24412
|
+
background?: string | undefined;
|
|
24413
|
+
action_msg?: string | undefined;
|
|
24414
|
+
menu_type?: number | undefined;
|
|
24415
|
+
} & {
|
|
24416
|
+
id?: string | undefined;
|
|
24417
|
+
bot_id?: string | undefined;
|
|
24418
|
+
clan_id?: string | undefined;
|
|
24419
|
+
channel_id?: string | undefined;
|
|
24420
|
+
menu_name?: string | undefined;
|
|
24421
|
+
background?: string | undefined;
|
|
24422
|
+
action_msg?: string | undefined;
|
|
24423
|
+
menu_type?: number | undefined;
|
|
24424
|
+
} & { [K in Exclude<keyof I, keyof QuickMenuAccess>]: never; }>(base?: I | undefined): QuickMenuAccess;
|
|
24425
|
+
fromPartial<I_1 extends {
|
|
24426
|
+
id?: string | undefined;
|
|
24427
|
+
bot_id?: string | undefined;
|
|
24428
|
+
clan_id?: string | undefined;
|
|
24429
|
+
channel_id?: string | undefined;
|
|
24430
|
+
menu_name?: string | undefined;
|
|
24431
|
+
background?: string | undefined;
|
|
24432
|
+
action_msg?: string | undefined;
|
|
24433
|
+
menu_type?: number | undefined;
|
|
24434
|
+
} & {
|
|
24435
|
+
id?: string | undefined;
|
|
24436
|
+
bot_id?: string | undefined;
|
|
24437
|
+
clan_id?: string | undefined;
|
|
24438
|
+
channel_id?: string | undefined;
|
|
24439
|
+
menu_name?: string | undefined;
|
|
24440
|
+
background?: string | undefined;
|
|
24441
|
+
action_msg?: string | undefined;
|
|
24442
|
+
menu_type?: number | undefined;
|
|
24443
|
+
} & { [K_1 in Exclude<keyof I_1, keyof QuickMenuAccess>]: never; }>(object: I_1): QuickMenuAccess;
|
|
24444
|
+
};
|
|
24445
|
+
export declare const ListQuickMenuAccessRequest: {
|
|
24446
|
+
encode(message: ListQuickMenuAccessRequest, writer?: _m0.Writer): _m0.Writer;
|
|
24447
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): ListQuickMenuAccessRequest;
|
|
24448
|
+
fromJSON(object: any): ListQuickMenuAccessRequest;
|
|
24449
|
+
toJSON(message: ListQuickMenuAccessRequest): unknown;
|
|
24450
|
+
create<I extends {
|
|
24451
|
+
bot_id?: string | undefined;
|
|
24452
|
+
channel_id?: string | undefined;
|
|
24453
|
+
menu_type?: number | undefined;
|
|
24454
|
+
} & {
|
|
24455
|
+
bot_id?: string | undefined;
|
|
24456
|
+
channel_id?: string | undefined;
|
|
24457
|
+
menu_type?: number | undefined;
|
|
24458
|
+
} & { [K in Exclude<keyof I, keyof ListQuickMenuAccessRequest>]: never; }>(base?: I | undefined): ListQuickMenuAccessRequest;
|
|
24459
|
+
fromPartial<I_1 extends {
|
|
24460
|
+
bot_id?: string | undefined;
|
|
24461
|
+
channel_id?: string | undefined;
|
|
24462
|
+
menu_type?: number | undefined;
|
|
24463
|
+
} & {
|
|
24464
|
+
bot_id?: string | undefined;
|
|
24465
|
+
channel_id?: string | undefined;
|
|
24466
|
+
menu_type?: number | undefined;
|
|
24467
|
+
} & { [K_1 in Exclude<keyof I_1, keyof ListQuickMenuAccessRequest>]: never; }>(object: I_1): ListQuickMenuAccessRequest;
|
|
24468
|
+
};
|
|
24469
|
+
export declare const QuickMenuAccessList: {
|
|
24470
|
+
encode(message: QuickMenuAccessList, writer?: _m0.Writer): _m0.Writer;
|
|
24471
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): QuickMenuAccessList;
|
|
24472
|
+
fromJSON(object: any): QuickMenuAccessList;
|
|
24473
|
+
toJSON(message: QuickMenuAccessList): unknown;
|
|
24474
|
+
create<I extends {
|
|
24475
|
+
list_menus?: {
|
|
24476
|
+
id?: string | undefined;
|
|
24477
|
+
bot_id?: string | undefined;
|
|
24478
|
+
clan_id?: string | undefined;
|
|
24479
|
+
channel_id?: string | undefined;
|
|
24480
|
+
menu_name?: string | undefined;
|
|
24481
|
+
background?: string | undefined;
|
|
24482
|
+
action_msg?: string | undefined;
|
|
24483
|
+
menu_type?: number | undefined;
|
|
24484
|
+
}[] | undefined;
|
|
24485
|
+
} & {
|
|
24486
|
+
list_menus?: ({
|
|
24487
|
+
id?: string | undefined;
|
|
24488
|
+
bot_id?: string | undefined;
|
|
24489
|
+
clan_id?: string | undefined;
|
|
24490
|
+
channel_id?: string | undefined;
|
|
24491
|
+
menu_name?: string | undefined;
|
|
24492
|
+
background?: string | undefined;
|
|
24493
|
+
action_msg?: string | undefined;
|
|
24494
|
+
menu_type?: number | undefined;
|
|
24495
|
+
}[] & ({
|
|
24496
|
+
id?: string | undefined;
|
|
24497
|
+
bot_id?: string | undefined;
|
|
24498
|
+
clan_id?: string | undefined;
|
|
24499
|
+
channel_id?: string | undefined;
|
|
24500
|
+
menu_name?: string | undefined;
|
|
24501
|
+
background?: string | undefined;
|
|
24502
|
+
action_msg?: string | undefined;
|
|
24503
|
+
menu_type?: number | undefined;
|
|
24504
|
+
} & {
|
|
24505
|
+
id?: string | undefined;
|
|
24506
|
+
bot_id?: string | undefined;
|
|
24507
|
+
clan_id?: string | undefined;
|
|
24508
|
+
channel_id?: string | undefined;
|
|
24509
|
+
menu_name?: string | undefined;
|
|
24510
|
+
background?: string | undefined;
|
|
24511
|
+
action_msg?: string | undefined;
|
|
24512
|
+
menu_type?: number | undefined;
|
|
24513
|
+
} & { [K in Exclude<keyof I["list_menus"][number], keyof QuickMenuAccess>]: never; })[] & { [K_1 in Exclude<keyof I["list_menus"], keyof {
|
|
24514
|
+
id?: string | undefined;
|
|
24515
|
+
bot_id?: string | undefined;
|
|
24516
|
+
clan_id?: string | undefined;
|
|
24517
|
+
channel_id?: string | undefined;
|
|
24518
|
+
menu_name?: string | undefined;
|
|
24519
|
+
background?: string | undefined;
|
|
24520
|
+
action_msg?: string | undefined;
|
|
24521
|
+
menu_type?: number | undefined;
|
|
24522
|
+
}[]>]: never; }) | undefined;
|
|
24523
|
+
} & { [K_2 in Exclude<keyof I, "list_menus">]: never; }>(base?: I | undefined): QuickMenuAccessList;
|
|
24524
|
+
fromPartial<I_1 extends {
|
|
24525
|
+
list_menus?: {
|
|
24526
|
+
id?: string | undefined;
|
|
24527
|
+
bot_id?: string | undefined;
|
|
24528
|
+
clan_id?: string | undefined;
|
|
24529
|
+
channel_id?: string | undefined;
|
|
24530
|
+
menu_name?: string | undefined;
|
|
24531
|
+
background?: string | undefined;
|
|
24532
|
+
action_msg?: string | undefined;
|
|
24533
|
+
menu_type?: number | undefined;
|
|
24534
|
+
}[] | undefined;
|
|
24535
|
+
} & {
|
|
24536
|
+
list_menus?: ({
|
|
24537
|
+
id?: string | undefined;
|
|
24538
|
+
bot_id?: string | undefined;
|
|
24539
|
+
clan_id?: string | undefined;
|
|
24540
|
+
channel_id?: string | undefined;
|
|
24541
|
+
menu_name?: string | undefined;
|
|
24542
|
+
background?: string | undefined;
|
|
24543
|
+
action_msg?: string | undefined;
|
|
24544
|
+
menu_type?: number | undefined;
|
|
24545
|
+
}[] & ({
|
|
24546
|
+
id?: string | undefined;
|
|
24547
|
+
bot_id?: string | undefined;
|
|
24548
|
+
clan_id?: string | undefined;
|
|
24549
|
+
channel_id?: string | undefined;
|
|
24550
|
+
menu_name?: string | undefined;
|
|
24551
|
+
background?: string | undefined;
|
|
24552
|
+
action_msg?: string | undefined;
|
|
24553
|
+
menu_type?: number | undefined;
|
|
24554
|
+
} & {
|
|
24555
|
+
id?: string | undefined;
|
|
24556
|
+
bot_id?: string | undefined;
|
|
24557
|
+
clan_id?: string | undefined;
|
|
24558
|
+
channel_id?: string | undefined;
|
|
24559
|
+
menu_name?: string | undefined;
|
|
24560
|
+
background?: string | undefined;
|
|
24561
|
+
action_msg?: string | undefined;
|
|
24562
|
+
menu_type?: number | undefined;
|
|
24563
|
+
} & { [K_3 in Exclude<keyof I_1["list_menus"][number], keyof QuickMenuAccess>]: never; })[] & { [K_4 in Exclude<keyof I_1["list_menus"], keyof {
|
|
24564
|
+
id?: string | undefined;
|
|
24565
|
+
bot_id?: string | undefined;
|
|
24566
|
+
clan_id?: string | undefined;
|
|
24567
|
+
channel_id?: string | undefined;
|
|
24568
|
+
menu_name?: string | undefined;
|
|
24569
|
+
background?: string | undefined;
|
|
24570
|
+
action_msg?: string | undefined;
|
|
24571
|
+
menu_type?: number | undefined;
|
|
24572
|
+
}[]>]: never; }) | undefined;
|
|
24573
|
+
} & { [K_5 in Exclude<keyof I_1, "list_menus">]: never; }>(object: I_1): QuickMenuAccessList;
|
|
24574
|
+
};
|
|
24575
|
+
export declare const ListForSaleItemsRequest: {
|
|
24576
|
+
encode(message: ListForSaleItemsRequest, writer?: _m0.Writer): _m0.Writer;
|
|
24577
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): ListForSaleItemsRequest;
|
|
24578
|
+
fromJSON(object: any): ListForSaleItemsRequest;
|
|
24579
|
+
toJSON(message: ListForSaleItemsRequest): unknown;
|
|
24580
|
+
create<I extends {
|
|
24581
|
+
page?: number | undefined;
|
|
24582
|
+
} & {
|
|
24583
|
+
page?: number | undefined;
|
|
24584
|
+
} & { [K in Exclude<keyof I, "page">]: never; }>(base?: I | undefined): ListForSaleItemsRequest;
|
|
24585
|
+
fromPartial<I_1 extends {
|
|
24586
|
+
page?: number | undefined;
|
|
24587
|
+
} & {
|
|
24588
|
+
page?: number | undefined;
|
|
24589
|
+
} & { [K_1 in Exclude<keyof I_1, "page">]: never; }>(object: I_1): ListForSaleItemsRequest;
|
|
24590
|
+
};
|
|
24591
|
+
export declare const ForSaleItem: {
|
|
24592
|
+
encode(message: ForSaleItem, writer?: _m0.Writer): _m0.Writer;
|
|
24593
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): ForSaleItem;
|
|
24594
|
+
fromJSON(object: any): ForSaleItem;
|
|
24595
|
+
toJSON(message: ForSaleItem): unknown;
|
|
24596
|
+
create<I extends {
|
|
24597
|
+
type?: number | undefined;
|
|
24598
|
+
preview_url?: string | undefined;
|
|
24599
|
+
} & {
|
|
24600
|
+
type?: number | undefined;
|
|
24601
|
+
preview_url?: string | undefined;
|
|
24602
|
+
} & { [K in Exclude<keyof I, keyof ForSaleItem>]: never; }>(base?: I | undefined): ForSaleItem;
|
|
24603
|
+
fromPartial<I_1 extends {
|
|
24604
|
+
type?: number | undefined;
|
|
24605
|
+
preview_url?: string | undefined;
|
|
24606
|
+
} & {
|
|
24607
|
+
type?: number | undefined;
|
|
24608
|
+
preview_url?: string | undefined;
|
|
24609
|
+
} & { [K_1 in Exclude<keyof I_1, keyof ForSaleItem>]: never; }>(object: I_1): ForSaleItem;
|
|
24610
|
+
};
|
|
24611
|
+
export declare const ForSaleItemList: {
|
|
24612
|
+
encode(message: ForSaleItemList, writer?: _m0.Writer): _m0.Writer;
|
|
24613
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): ForSaleItemList;
|
|
24614
|
+
fromJSON(object: any): ForSaleItemList;
|
|
24615
|
+
toJSON(message: ForSaleItemList): unknown;
|
|
24616
|
+
create<I extends {
|
|
24617
|
+
for_sale_items?: {
|
|
24618
|
+
type?: number | undefined;
|
|
24619
|
+
preview_url?: string | undefined;
|
|
24620
|
+
}[] | undefined;
|
|
24621
|
+
} & {
|
|
24622
|
+
for_sale_items?: ({
|
|
24623
|
+
type?: number | undefined;
|
|
24624
|
+
preview_url?: string | undefined;
|
|
24625
|
+
}[] & ({
|
|
24626
|
+
type?: number | undefined;
|
|
24627
|
+
preview_url?: string | undefined;
|
|
24628
|
+
} & {
|
|
24629
|
+
type?: number | undefined;
|
|
24630
|
+
preview_url?: string | undefined;
|
|
24631
|
+
} & { [K in Exclude<keyof I["for_sale_items"][number], keyof ForSaleItem>]: never; })[] & { [K_1 in Exclude<keyof I["for_sale_items"], keyof {
|
|
24632
|
+
type?: number | undefined;
|
|
24633
|
+
preview_url?: string | undefined;
|
|
24634
|
+
}[]>]: never; }) | undefined;
|
|
24635
|
+
} & { [K_2 in Exclude<keyof I, "for_sale_items">]: never; }>(base?: I | undefined): ForSaleItemList;
|
|
24636
|
+
fromPartial<I_1 extends {
|
|
24637
|
+
for_sale_items?: {
|
|
24638
|
+
type?: number | undefined;
|
|
24639
|
+
preview_url?: string | undefined;
|
|
24640
|
+
}[] | undefined;
|
|
24641
|
+
} & {
|
|
24642
|
+
for_sale_items?: ({
|
|
24643
|
+
type?: number | undefined;
|
|
24644
|
+
preview_url?: string | undefined;
|
|
24645
|
+
}[] & ({
|
|
24646
|
+
type?: number | undefined;
|
|
24647
|
+
preview_url?: string | undefined;
|
|
24648
|
+
} & {
|
|
24649
|
+
type?: number | undefined;
|
|
24650
|
+
preview_url?: string | undefined;
|
|
24651
|
+
} & { [K_3 in Exclude<keyof I_1["for_sale_items"][number], keyof ForSaleItem>]: never; })[] & { [K_4 in Exclude<keyof I_1["for_sale_items"], keyof {
|
|
24652
|
+
type?: number | undefined;
|
|
24653
|
+
preview_url?: string | undefined;
|
|
24654
|
+
}[]>]: never; }) | undefined;
|
|
24655
|
+
} & { [K_5 in Exclude<keyof I_1, "for_sale_items">]: never; }>(object: I_1): ForSaleItemList;
|
|
24656
|
+
};
|
|
24192
24657
|
type Builtin = Date | Function | Uint8Array | string | number | boolean | undefined;
|
|
24193
24658
|
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 {} ? {
|
|
24194
24659
|
[K in keyof T]?: DeepPartial<T[K]>;
|