mezon-sdk 2.7.98 → 2.8.0
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 +708 -196
- package/dist/cjs/api/api.js +983 -274
- package/dist/cjs/api/api.js.map +1 -1
- package/dist/cjs/interfaces/api.d.ts +4 -0
- package/dist/cjs/interfaces/client.d.ts +16 -0
- package/dist/cjs/interfaces/client.js.map +1 -1
- package/dist/cjs/interfaces/socket.d.ts +2 -0
- package/dist/cjs/mezon-client/client/MezonClient.js +32 -23
- package/dist/cjs/mezon-client/client/MezonClient.js.map +1 -1
- package/dist/cjs/mezon-client/manager/channel_manager.js +1 -1
- package/dist/cjs/mezon-client/manager/channel_manager.js.map +1 -1
- package/dist/cjs/mezon-client/manager/socket_manager.d.ts +2 -1
- package/dist/cjs/mezon-client/manager/socket_manager.js +13 -5
- package/dist/cjs/mezon-client/manager/socket_manager.js.map +1 -1
- package/dist/cjs/mezon-client/structures/Clan.d.ts +2 -0
- package/dist/cjs/mezon-client/structures/Clan.js +1 -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 +1 -0
- package/dist/cjs/mezon-client/structures/TextChannel.js +34 -0
- package/dist/cjs/mezon-client/structures/TextChannel.js.map +1 -1
- package/dist/cjs/mezon-client/utils/AsyncThrottleQueue.d.ts +6 -4
- package/dist/cjs/mezon-client/utils/AsyncThrottleQueue.js +29 -24
- package/dist/cjs/mezon-client/utils/AsyncThrottleQueue.js.map +1 -1
- package/dist/cjs/rtapi/realtime.d.ts +33241 -11758
- package/dist/cjs/rtapi/realtime.js +2099 -239
- package/dist/cjs/rtapi/realtime.js.map +1 -1
- package/dist/cjs/socket.d.ts +4 -2
- package/dist/cjs/socket.js +34 -0
- package/dist/cjs/socket.js.map +1 -1
- package/dist/esm/api/api.d.ts +708 -196
- package/dist/esm/api/api.js +962 -265
- package/dist/esm/api/api.js.map +1 -1
- package/dist/esm/interfaces/api.d.ts +4 -0
- package/dist/esm/interfaces/client.d.ts +16 -0
- package/dist/esm/interfaces/client.js.map +1 -1
- package/dist/esm/interfaces/socket.d.ts +2 -0
- package/dist/esm/mezon-client/client/MezonClient.js +31 -22
- package/dist/esm/mezon-client/client/MezonClient.js.map +1 -1
- package/dist/esm/mezon-client/manager/channel_manager.js +1 -1
- package/dist/esm/mezon-client/manager/channel_manager.js.map +1 -1
- package/dist/esm/mezon-client/manager/socket_manager.d.ts +2 -1
- package/dist/esm/mezon-client/manager/socket_manager.js +11 -4
- package/dist/esm/mezon-client/manager/socket_manager.js.map +1 -1
- package/dist/esm/mezon-client/structures/Clan.d.ts +2 -0
- package/dist/esm/mezon-client/structures/Clan.js +2 -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 +1 -0
- package/dist/esm/mezon-client/structures/TextChannel.js +34 -0
- package/dist/esm/mezon-client/structures/TextChannel.js.map +1 -1
- package/dist/esm/mezon-client/utils/AsyncThrottleQueue.d.ts +6 -4
- package/dist/esm/mezon-client/utils/AsyncThrottleQueue.js +30 -25
- package/dist/esm/mezon-client/utils/AsyncThrottleQueue.js.map +1 -1
- package/dist/esm/rtapi/realtime.d.ts +33241 -11758
- package/dist/esm/rtapi/realtime.js +2066 -213
- package/dist/esm/rtapi/realtime.js.map +1 -1
- package/dist/esm/socket.d.ts +4 -2
- package/dist/esm/socket.js +33 -0
- package/dist/esm/socket.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
|
@@ -384,6 +384,8 @@ export interface Friend {
|
|
|
384
384
|
state: number | undefined;
|
|
385
385
|
/** Time of the latest relationship update. */
|
|
386
386
|
update_time: Date | undefined;
|
|
387
|
+
/** source id */
|
|
388
|
+
source_id: string;
|
|
387
389
|
}
|
|
388
390
|
/** The friendship status. */
|
|
389
391
|
export declare enum Friend_State {
|
|
@@ -583,6 +585,8 @@ export interface RegistFcmDeviceTokenRequest {
|
|
|
583
585
|
device_id: string;
|
|
584
586
|
/** */
|
|
585
587
|
platform: string;
|
|
588
|
+
/** voip token for IOS */
|
|
589
|
+
voip_token: string;
|
|
586
590
|
}
|
|
587
591
|
export interface RegistFcmDeviceTokenResponse {
|
|
588
592
|
/** The token */
|
|
@@ -885,6 +889,8 @@ export interface User {
|
|
|
885
889
|
dob: Date | undefined;
|
|
886
890
|
/** Mezone id */
|
|
887
891
|
mezon_id: string;
|
|
892
|
+
/** list clan nick name */
|
|
893
|
+
list_nick_names: string[];
|
|
888
894
|
}
|
|
889
895
|
/** A list of groups belonging to a user, along with the user's role in each group. */
|
|
890
896
|
export interface UserGroupList {
|
|
@@ -1915,6 +1921,8 @@ export interface ClanEmoji {
|
|
|
1915
1921
|
logo: string;
|
|
1916
1922
|
/** clan name */
|
|
1917
1923
|
clan_name: string;
|
|
1924
|
+
/** is for sale */
|
|
1925
|
+
is_for_sale: boolean;
|
|
1918
1926
|
}
|
|
1919
1927
|
export interface EmojiListedResponse {
|
|
1920
1928
|
emoji_list: ClanEmoji[];
|
|
@@ -1932,6 +1940,9 @@ export interface ClanSticker {
|
|
|
1932
1940
|
clan_id: string;
|
|
1933
1941
|
logo: string;
|
|
1934
1942
|
clan_name: string;
|
|
1943
|
+
media_type: number;
|
|
1944
|
+
/** is for sale */
|
|
1945
|
+
is_for_sale: boolean;
|
|
1935
1946
|
}
|
|
1936
1947
|
export interface AllUsersAddChannelRequest {
|
|
1937
1948
|
channel_id: string;
|
|
@@ -1948,6 +1959,7 @@ export interface ClanEmojiCreateRequest {
|
|
|
1948
1959
|
shortname: string;
|
|
1949
1960
|
category: string;
|
|
1950
1961
|
id: string;
|
|
1962
|
+
is_for_sale: boolean;
|
|
1951
1963
|
}
|
|
1952
1964
|
export interface ClanEmojiGetByClanIdRequest {
|
|
1953
1965
|
clan_id: string;
|
|
@@ -2033,9 +2045,13 @@ export interface ClanStickerAddRequest {
|
|
|
2033
2045
|
source: string;
|
|
2034
2046
|
shortname: string;
|
|
2035
2047
|
category: string;
|
|
2036
|
-
clan_id:
|
|
2048
|
+
clan_id: string;
|
|
2037
2049
|
/** UNIQUE include type number */
|
|
2038
2050
|
id: string;
|
|
2051
|
+
/** media type for image or audio */
|
|
2052
|
+
media_type: number;
|
|
2053
|
+
/** is for sale */
|
|
2054
|
+
is_for_sale: boolean;
|
|
2039
2055
|
}
|
|
2040
2056
|
export interface ClanStickerListByClanIdRequest {
|
|
2041
2057
|
clan_id: string;
|
|
@@ -2140,6 +2156,8 @@ export interface UpdateAppRequest {
|
|
|
2140
2156
|
about: string;
|
|
2141
2157
|
/** App url. */
|
|
2142
2158
|
app_url: string;
|
|
2159
|
+
/** need update or not */
|
|
2160
|
+
is_shadow: string;
|
|
2143
2161
|
}
|
|
2144
2162
|
/** The identifier for an app. */
|
|
2145
2163
|
export interface AppId {
|
|
@@ -2309,17 +2327,17 @@ export interface RoleListEventRequest {
|
|
|
2309
2327
|
/** clan id */
|
|
2310
2328
|
clan_id: string;
|
|
2311
2329
|
/** limit */
|
|
2312
|
-
limit:
|
|
2330
|
+
limit: number;
|
|
2313
2331
|
/** state */
|
|
2314
|
-
state:
|
|
2332
|
+
state: number;
|
|
2315
2333
|
/** cursor */
|
|
2316
2334
|
cursor: string;
|
|
2317
2335
|
}
|
|
2318
2336
|
export interface RoleListEventResponse {
|
|
2319
2337
|
/** limit */
|
|
2320
|
-
limit:
|
|
2338
|
+
limit: number;
|
|
2321
2339
|
/** state */
|
|
2322
|
-
state:
|
|
2340
|
+
state: number;
|
|
2323
2341
|
/** cursor */
|
|
2324
2342
|
cursor: string;
|
|
2325
2343
|
/** clan_id */
|
|
@@ -2647,9 +2665,14 @@ export interface TokenSentEvent {
|
|
|
2647
2665
|
/** */
|
|
2648
2666
|
transaction_id: string;
|
|
2649
2667
|
}
|
|
2650
|
-
export interface
|
|
2651
|
-
/**
|
|
2652
|
-
|
|
2668
|
+
export interface UnlockItemRequest {
|
|
2669
|
+
/** item id */
|
|
2670
|
+
item_id: string;
|
|
2671
|
+
/** item type */
|
|
2672
|
+
item_type: number;
|
|
2673
|
+
}
|
|
2674
|
+
export interface UnlockedItemResponse {
|
|
2675
|
+
source: string;
|
|
2653
2676
|
}
|
|
2654
2677
|
export interface ListOnboardingRequest {
|
|
2655
2678
|
/** clan id */
|
|
@@ -2877,7 +2900,12 @@ export interface WalletLedgerList {
|
|
|
2877
2900
|
}
|
|
2878
2901
|
export interface WalletLedgerListReq {
|
|
2879
2902
|
limit: number | undefined;
|
|
2880
|
-
|
|
2903
|
+
/**
|
|
2904
|
+
* filter = 0 for all
|
|
2905
|
+
* filter = 1 for sent
|
|
2906
|
+
* filter = 2 for recieve
|
|
2907
|
+
*/
|
|
2908
|
+
filter: number;
|
|
2881
2909
|
transaction_id: string;
|
|
2882
2910
|
page: number | undefined;
|
|
2883
2911
|
}
|
|
@@ -2932,22 +2960,9 @@ export interface GenerateMeetTokenRequest {
|
|
|
2932
2960
|
channel_id: string;
|
|
2933
2961
|
room_name: string;
|
|
2934
2962
|
}
|
|
2935
|
-
export interface GenerateMeetTokenExternalRequest {
|
|
2936
|
-
body: {
|
|
2937
|
-
[key: string]: any;
|
|
2938
|
-
} | undefined;
|
|
2939
|
-
token: string;
|
|
2940
|
-
display_name: string;
|
|
2941
|
-
is_guest: boolean;
|
|
2942
|
-
}
|
|
2943
2963
|
export interface GenerateMeetTokenResponse {
|
|
2944
2964
|
token: string;
|
|
2945
2965
|
}
|
|
2946
|
-
export interface GenerateMeetTokenExternalResponse {
|
|
2947
|
-
token: string;
|
|
2948
|
-
guest_user_id: string;
|
|
2949
|
-
guest_access_token: string;
|
|
2950
|
-
}
|
|
2951
2966
|
export interface GenerateMezonMeetResponse {
|
|
2952
2967
|
meet_id: string;
|
|
2953
2968
|
room_name: string;
|
|
@@ -3009,7 +3024,7 @@ export interface MezonOauthClient {
|
|
|
3009
3024
|
userinfo_signed_response_alg: string;
|
|
3010
3025
|
}
|
|
3011
3026
|
export interface MezonOauthClientList {
|
|
3012
|
-
|
|
3027
|
+
list_mezon_oauth_client: MezonOauthClient[];
|
|
3013
3028
|
}
|
|
3014
3029
|
export interface GetMezonOauthClientRequest {
|
|
3015
3030
|
client_id: string;
|
|
@@ -3065,6 +3080,45 @@ export interface AccountMezon_VarsEntry {
|
|
|
3065
3080
|
key: string;
|
|
3066
3081
|
value: string;
|
|
3067
3082
|
}
|
|
3083
|
+
export interface QuickMenuAccess {
|
|
3084
|
+
id: string;
|
|
3085
|
+
bot_id: string;
|
|
3086
|
+
clan_id: string;
|
|
3087
|
+
channel_id: string;
|
|
3088
|
+
menu_name: string;
|
|
3089
|
+
background: string;
|
|
3090
|
+
action_msg: string;
|
|
3091
|
+
menu_type: number;
|
|
3092
|
+
}
|
|
3093
|
+
export interface ListQuickMenuAccessRequest {
|
|
3094
|
+
bot_id: string;
|
|
3095
|
+
channel_id: string;
|
|
3096
|
+
menu_type: number;
|
|
3097
|
+
}
|
|
3098
|
+
export interface QuickMenuAccessList {
|
|
3099
|
+
list_menus: QuickMenuAccess[];
|
|
3100
|
+
}
|
|
3101
|
+
export interface ListForSaleItemsRequest {
|
|
3102
|
+
page: number;
|
|
3103
|
+
}
|
|
3104
|
+
export interface ForSaleItem {
|
|
3105
|
+
type: number;
|
|
3106
|
+
preview_url: string;
|
|
3107
|
+
}
|
|
3108
|
+
export interface ForSaleItemList {
|
|
3109
|
+
for_sale_items: ForSaleItem[];
|
|
3110
|
+
}
|
|
3111
|
+
export interface ListChannelMemberRequest {
|
|
3112
|
+
channel_id: string;
|
|
3113
|
+
clan_id: string;
|
|
3114
|
+
}
|
|
3115
|
+
export interface ChannelMemberDetail {
|
|
3116
|
+
member_id: string;
|
|
3117
|
+
added_by: string;
|
|
3118
|
+
}
|
|
3119
|
+
export interface ChannelMemberList {
|
|
3120
|
+
channel_members: ChannelMemberDetail[];
|
|
3121
|
+
}
|
|
3068
3122
|
export declare const Account: {
|
|
3069
3123
|
encode(message: Account, writer?: _m0.Writer): _m0.Writer;
|
|
3070
3124
|
decode(input: _m0.Reader | Uint8Array, length?: number): Account;
|
|
@@ -3094,6 +3148,7 @@ export declare const Account: {
|
|
|
3094
3148
|
is_mobile?: boolean | undefined;
|
|
3095
3149
|
dob?: Date | undefined;
|
|
3096
3150
|
mezon_id?: string | undefined;
|
|
3151
|
+
list_nick_names?: string[] | undefined;
|
|
3097
3152
|
} | undefined;
|
|
3098
3153
|
wallet?: string | undefined;
|
|
3099
3154
|
email?: string | undefined;
|
|
@@ -3127,6 +3182,7 @@ export declare const Account: {
|
|
|
3127
3182
|
is_mobile?: boolean | undefined;
|
|
3128
3183
|
dob?: Date | undefined;
|
|
3129
3184
|
mezon_id?: string | undefined;
|
|
3185
|
+
list_nick_names?: string[] | undefined;
|
|
3130
3186
|
} & {
|
|
3131
3187
|
id?: string | undefined;
|
|
3132
3188
|
username?: string | undefined;
|
|
@@ -3150,7 +3206,8 @@ export declare const Account: {
|
|
|
3150
3206
|
is_mobile?: boolean | undefined;
|
|
3151
3207
|
dob?: Date | undefined;
|
|
3152
3208
|
mezon_id?: string | undefined;
|
|
3153
|
-
|
|
3209
|
+
list_nick_names?: (string[] & string[] & { [K in Exclude<keyof I["user"]["list_nick_names"], keyof string[]>]: never; }) | undefined;
|
|
3210
|
+
} & { [K_1 in Exclude<keyof I["user"], keyof User>]: never; }) | undefined;
|
|
3154
3211
|
wallet?: string | undefined;
|
|
3155
3212
|
email?: string | undefined;
|
|
3156
3213
|
mezon_id?: string | undefined;
|
|
@@ -3159,7 +3216,7 @@ export declare const Account: {
|
|
|
3159
3216
|
logo?: string | undefined;
|
|
3160
3217
|
splash_screen?: string | undefined;
|
|
3161
3218
|
encrypt_private_key?: string | undefined;
|
|
3162
|
-
} & { [
|
|
3219
|
+
} & { [K_2 in Exclude<keyof I, keyof Account>]: never; }>(base?: I | undefined): Account;
|
|
3163
3220
|
fromPartial<I_1 extends {
|
|
3164
3221
|
user?: {
|
|
3165
3222
|
id?: string | undefined;
|
|
@@ -3184,6 +3241,7 @@ export declare const Account: {
|
|
|
3184
3241
|
is_mobile?: boolean | undefined;
|
|
3185
3242
|
dob?: Date | undefined;
|
|
3186
3243
|
mezon_id?: string | undefined;
|
|
3244
|
+
list_nick_names?: string[] | undefined;
|
|
3187
3245
|
} | undefined;
|
|
3188
3246
|
wallet?: string | undefined;
|
|
3189
3247
|
email?: string | undefined;
|
|
@@ -3217,6 +3275,7 @@ export declare const Account: {
|
|
|
3217
3275
|
is_mobile?: boolean | undefined;
|
|
3218
3276
|
dob?: Date | undefined;
|
|
3219
3277
|
mezon_id?: string | undefined;
|
|
3278
|
+
list_nick_names?: string[] | undefined;
|
|
3220
3279
|
} & {
|
|
3221
3280
|
id?: string | undefined;
|
|
3222
3281
|
username?: string | undefined;
|
|
@@ -3240,7 +3299,8 @@ export declare const Account: {
|
|
|
3240
3299
|
is_mobile?: boolean | undefined;
|
|
3241
3300
|
dob?: Date | undefined;
|
|
3242
3301
|
mezon_id?: string | undefined;
|
|
3243
|
-
|
|
3302
|
+
list_nick_names?: (string[] & string[] & { [K_3 in Exclude<keyof I_1["user"]["list_nick_names"], keyof string[]>]: never; }) | undefined;
|
|
3303
|
+
} & { [K_4 in Exclude<keyof I_1["user"], keyof User>]: never; }) | undefined;
|
|
3244
3304
|
wallet?: string | undefined;
|
|
3245
3305
|
email?: string | undefined;
|
|
3246
3306
|
mezon_id?: string | undefined;
|
|
@@ -3249,7 +3309,7 @@ export declare const Account: {
|
|
|
3249
3309
|
logo?: string | undefined;
|
|
3250
3310
|
splash_screen?: string | undefined;
|
|
3251
3311
|
encrypt_private_key?: string | undefined;
|
|
3252
|
-
} & { [
|
|
3312
|
+
} & { [K_5 in Exclude<keyof I_1, keyof Account>]: never; }>(object: I_1): Account;
|
|
3253
3313
|
};
|
|
3254
3314
|
export declare const AccountRefresh: {
|
|
3255
3315
|
encode(message: AccountRefresh, writer?: _m0.Writer): _m0.Writer;
|
|
@@ -4836,9 +4896,11 @@ export declare const Friend: {
|
|
|
4836
4896
|
is_mobile?: boolean | undefined;
|
|
4837
4897
|
dob?: Date | undefined;
|
|
4838
4898
|
mezon_id?: string | undefined;
|
|
4899
|
+
list_nick_names?: string[] | undefined;
|
|
4839
4900
|
} | undefined;
|
|
4840
4901
|
state?: number | undefined;
|
|
4841
4902
|
update_time?: Date | undefined;
|
|
4903
|
+
source_id?: string | undefined;
|
|
4842
4904
|
} & {
|
|
4843
4905
|
user?: ({
|
|
4844
4906
|
id?: string | undefined;
|
|
@@ -4863,6 +4925,7 @@ export declare const Friend: {
|
|
|
4863
4925
|
is_mobile?: boolean | undefined;
|
|
4864
4926
|
dob?: Date | undefined;
|
|
4865
4927
|
mezon_id?: string | undefined;
|
|
4928
|
+
list_nick_names?: string[] | undefined;
|
|
4866
4929
|
} & {
|
|
4867
4930
|
id?: string | undefined;
|
|
4868
4931
|
username?: string | undefined;
|
|
@@ -4886,10 +4949,12 @@ export declare const Friend: {
|
|
|
4886
4949
|
is_mobile?: boolean | undefined;
|
|
4887
4950
|
dob?: Date | undefined;
|
|
4888
4951
|
mezon_id?: string | undefined;
|
|
4889
|
-
|
|
4952
|
+
list_nick_names?: (string[] & string[] & { [K in Exclude<keyof I["user"]["list_nick_names"], keyof string[]>]: never; }) | undefined;
|
|
4953
|
+
} & { [K_1 in Exclude<keyof I["user"], keyof User>]: never; }) | undefined;
|
|
4890
4954
|
state?: number | undefined;
|
|
4891
4955
|
update_time?: Date | undefined;
|
|
4892
|
-
|
|
4956
|
+
source_id?: string | undefined;
|
|
4957
|
+
} & { [K_2 in Exclude<keyof I, keyof Friend>]: never; }>(base?: I | undefined): Friend;
|
|
4893
4958
|
fromPartial<I_1 extends {
|
|
4894
4959
|
user?: {
|
|
4895
4960
|
id?: string | undefined;
|
|
@@ -4914,9 +4979,11 @@ export declare const Friend: {
|
|
|
4914
4979
|
is_mobile?: boolean | undefined;
|
|
4915
4980
|
dob?: Date | undefined;
|
|
4916
4981
|
mezon_id?: string | undefined;
|
|
4982
|
+
list_nick_names?: string[] | undefined;
|
|
4917
4983
|
} | undefined;
|
|
4918
4984
|
state?: number | undefined;
|
|
4919
4985
|
update_time?: Date | undefined;
|
|
4986
|
+
source_id?: string | undefined;
|
|
4920
4987
|
} & {
|
|
4921
4988
|
user?: ({
|
|
4922
4989
|
id?: string | undefined;
|
|
@@ -4941,6 +5008,7 @@ export declare const Friend: {
|
|
|
4941
5008
|
is_mobile?: boolean | undefined;
|
|
4942
5009
|
dob?: Date | undefined;
|
|
4943
5010
|
mezon_id?: string | undefined;
|
|
5011
|
+
list_nick_names?: string[] | undefined;
|
|
4944
5012
|
} & {
|
|
4945
5013
|
id?: string | undefined;
|
|
4946
5014
|
username?: string | undefined;
|
|
@@ -4964,10 +5032,12 @@ export declare const Friend: {
|
|
|
4964
5032
|
is_mobile?: boolean | undefined;
|
|
4965
5033
|
dob?: Date | undefined;
|
|
4966
5034
|
mezon_id?: string | undefined;
|
|
4967
|
-
|
|
5035
|
+
list_nick_names?: (string[] & string[] & { [K_3 in Exclude<keyof I_1["user"]["list_nick_names"], keyof string[]>]: never; }) | undefined;
|
|
5036
|
+
} & { [K_4 in Exclude<keyof I_1["user"], keyof User>]: never; }) | undefined;
|
|
4968
5037
|
state?: number | undefined;
|
|
4969
5038
|
update_time?: Date | undefined;
|
|
4970
|
-
|
|
5039
|
+
source_id?: string | undefined;
|
|
5040
|
+
} & { [K_5 in Exclude<keyof I_1, keyof Friend>]: never; }>(object: I_1): Friend;
|
|
4971
5041
|
};
|
|
4972
5042
|
export declare const FriendList: {
|
|
4973
5043
|
encode(message: FriendList, writer?: _m0.Writer): _m0.Writer;
|
|
@@ -4999,9 +5069,11 @@ export declare const FriendList: {
|
|
|
4999
5069
|
is_mobile?: boolean | undefined;
|
|
5000
5070
|
dob?: Date | undefined;
|
|
5001
5071
|
mezon_id?: string | undefined;
|
|
5072
|
+
list_nick_names?: string[] | undefined;
|
|
5002
5073
|
} | undefined;
|
|
5003
5074
|
state?: number | undefined;
|
|
5004
5075
|
update_time?: Date | undefined;
|
|
5076
|
+
source_id?: string | undefined;
|
|
5005
5077
|
}[] | undefined;
|
|
5006
5078
|
cursor?: string | undefined;
|
|
5007
5079
|
} & {
|
|
@@ -5029,9 +5101,11 @@ export declare const FriendList: {
|
|
|
5029
5101
|
is_mobile?: boolean | undefined;
|
|
5030
5102
|
dob?: Date | undefined;
|
|
5031
5103
|
mezon_id?: string | undefined;
|
|
5104
|
+
list_nick_names?: string[] | undefined;
|
|
5032
5105
|
} | undefined;
|
|
5033
5106
|
state?: number | undefined;
|
|
5034
5107
|
update_time?: Date | undefined;
|
|
5108
|
+
source_id?: string | undefined;
|
|
5035
5109
|
}[] & ({
|
|
5036
5110
|
user?: {
|
|
5037
5111
|
id?: string | undefined;
|
|
@@ -5056,9 +5130,11 @@ export declare const FriendList: {
|
|
|
5056
5130
|
is_mobile?: boolean | undefined;
|
|
5057
5131
|
dob?: Date | undefined;
|
|
5058
5132
|
mezon_id?: string | undefined;
|
|
5133
|
+
list_nick_names?: string[] | undefined;
|
|
5059
5134
|
} | undefined;
|
|
5060
5135
|
state?: number | undefined;
|
|
5061
5136
|
update_time?: Date | undefined;
|
|
5137
|
+
source_id?: string | undefined;
|
|
5062
5138
|
} & {
|
|
5063
5139
|
user?: ({
|
|
5064
5140
|
id?: string | undefined;
|
|
@@ -5083,6 +5159,7 @@ export declare const FriendList: {
|
|
|
5083
5159
|
is_mobile?: boolean | undefined;
|
|
5084
5160
|
dob?: Date | undefined;
|
|
5085
5161
|
mezon_id?: string | undefined;
|
|
5162
|
+
list_nick_names?: string[] | undefined;
|
|
5086
5163
|
} & {
|
|
5087
5164
|
id?: string | undefined;
|
|
5088
5165
|
username?: string | undefined;
|
|
@@ -5106,10 +5183,12 @@ export declare const FriendList: {
|
|
|
5106
5183
|
is_mobile?: boolean | undefined;
|
|
5107
5184
|
dob?: Date | undefined;
|
|
5108
5185
|
mezon_id?: string | undefined;
|
|
5109
|
-
|
|
5186
|
+
list_nick_names?: (string[] & string[] & { [K in Exclude<keyof I["friends"][number]["user"]["list_nick_names"], keyof string[]>]: never; }) | undefined;
|
|
5187
|
+
} & { [K_1 in Exclude<keyof I["friends"][number]["user"], keyof User>]: never; }) | undefined;
|
|
5110
5188
|
state?: number | undefined;
|
|
5111
5189
|
update_time?: Date | undefined;
|
|
5112
|
-
|
|
5190
|
+
source_id?: string | undefined;
|
|
5191
|
+
} & { [K_2 in Exclude<keyof I["friends"][number], keyof Friend>]: never; })[] & { [K_3 in Exclude<keyof I["friends"], keyof {
|
|
5113
5192
|
user?: {
|
|
5114
5193
|
id?: string | undefined;
|
|
5115
5194
|
username?: string | undefined;
|
|
@@ -5133,12 +5212,14 @@ export declare const FriendList: {
|
|
|
5133
5212
|
is_mobile?: boolean | undefined;
|
|
5134
5213
|
dob?: Date | undefined;
|
|
5135
5214
|
mezon_id?: string | undefined;
|
|
5215
|
+
list_nick_names?: string[] | undefined;
|
|
5136
5216
|
} | undefined;
|
|
5137
5217
|
state?: number | undefined;
|
|
5138
5218
|
update_time?: Date | undefined;
|
|
5219
|
+
source_id?: string | undefined;
|
|
5139
5220
|
}[]>]: never; }) | undefined;
|
|
5140
5221
|
cursor?: string | undefined;
|
|
5141
|
-
} & { [
|
|
5222
|
+
} & { [K_4 in Exclude<keyof I, keyof FriendList>]: never; }>(base?: I | undefined): FriendList;
|
|
5142
5223
|
fromPartial<I_1 extends {
|
|
5143
5224
|
friends?: {
|
|
5144
5225
|
user?: {
|
|
@@ -5164,9 +5245,11 @@ export declare const FriendList: {
|
|
|
5164
5245
|
is_mobile?: boolean | undefined;
|
|
5165
5246
|
dob?: Date | undefined;
|
|
5166
5247
|
mezon_id?: string | undefined;
|
|
5248
|
+
list_nick_names?: string[] | undefined;
|
|
5167
5249
|
} | undefined;
|
|
5168
5250
|
state?: number | undefined;
|
|
5169
5251
|
update_time?: Date | undefined;
|
|
5252
|
+
source_id?: string | undefined;
|
|
5170
5253
|
}[] | undefined;
|
|
5171
5254
|
cursor?: string | undefined;
|
|
5172
5255
|
} & {
|
|
@@ -5194,9 +5277,11 @@ export declare const FriendList: {
|
|
|
5194
5277
|
is_mobile?: boolean | undefined;
|
|
5195
5278
|
dob?: Date | undefined;
|
|
5196
5279
|
mezon_id?: string | undefined;
|
|
5280
|
+
list_nick_names?: string[] | undefined;
|
|
5197
5281
|
} | undefined;
|
|
5198
5282
|
state?: number | undefined;
|
|
5199
5283
|
update_time?: Date | undefined;
|
|
5284
|
+
source_id?: string | undefined;
|
|
5200
5285
|
}[] & ({
|
|
5201
5286
|
user?: {
|
|
5202
5287
|
id?: string | undefined;
|
|
@@ -5221,9 +5306,11 @@ export declare const FriendList: {
|
|
|
5221
5306
|
is_mobile?: boolean | undefined;
|
|
5222
5307
|
dob?: Date | undefined;
|
|
5223
5308
|
mezon_id?: string | undefined;
|
|
5309
|
+
list_nick_names?: string[] | undefined;
|
|
5224
5310
|
} | undefined;
|
|
5225
5311
|
state?: number | undefined;
|
|
5226
5312
|
update_time?: Date | undefined;
|
|
5313
|
+
source_id?: string | undefined;
|
|
5227
5314
|
} & {
|
|
5228
5315
|
user?: ({
|
|
5229
5316
|
id?: string | undefined;
|
|
@@ -5248,6 +5335,7 @@ export declare const FriendList: {
|
|
|
5248
5335
|
is_mobile?: boolean | undefined;
|
|
5249
5336
|
dob?: Date | undefined;
|
|
5250
5337
|
mezon_id?: string | undefined;
|
|
5338
|
+
list_nick_names?: string[] | undefined;
|
|
5251
5339
|
} & {
|
|
5252
5340
|
id?: string | undefined;
|
|
5253
5341
|
username?: string | undefined;
|
|
@@ -5271,10 +5359,12 @@ export declare const FriendList: {
|
|
|
5271
5359
|
is_mobile?: boolean | undefined;
|
|
5272
5360
|
dob?: Date | undefined;
|
|
5273
5361
|
mezon_id?: string | undefined;
|
|
5274
|
-
|
|
5362
|
+
list_nick_names?: (string[] & string[] & { [K_5 in Exclude<keyof I_1["friends"][number]["user"]["list_nick_names"], keyof string[]>]: never; }) | undefined;
|
|
5363
|
+
} & { [K_6 in Exclude<keyof I_1["friends"][number]["user"], keyof User>]: never; }) | undefined;
|
|
5275
5364
|
state?: number | undefined;
|
|
5276
5365
|
update_time?: Date | undefined;
|
|
5277
|
-
|
|
5366
|
+
source_id?: string | undefined;
|
|
5367
|
+
} & { [K_7 in Exclude<keyof I_1["friends"][number], keyof Friend>]: never; })[] & { [K_8 in Exclude<keyof I_1["friends"], keyof {
|
|
5278
5368
|
user?: {
|
|
5279
5369
|
id?: string | undefined;
|
|
5280
5370
|
username?: string | undefined;
|
|
@@ -5298,12 +5388,14 @@ export declare const FriendList: {
|
|
|
5298
5388
|
is_mobile?: boolean | undefined;
|
|
5299
5389
|
dob?: Date | undefined;
|
|
5300
5390
|
mezon_id?: string | undefined;
|
|
5391
|
+
list_nick_names?: string[] | undefined;
|
|
5301
5392
|
} | undefined;
|
|
5302
5393
|
state?: number | undefined;
|
|
5303
5394
|
update_time?: Date | undefined;
|
|
5395
|
+
source_id?: string | undefined;
|
|
5304
5396
|
}[]>]: never; }) | undefined;
|
|
5305
5397
|
cursor?: string | undefined;
|
|
5306
|
-
} & { [
|
|
5398
|
+
} & { [K_9 in Exclude<keyof I_1, keyof FriendList>]: never; }>(object: I_1): FriendList;
|
|
5307
5399
|
};
|
|
5308
5400
|
export declare const GetUsersRequest: {
|
|
5309
5401
|
encode(message: GetUsersRequest, writer?: _m0.Writer): _m0.Writer;
|
|
@@ -5589,6 +5681,7 @@ export declare const GroupUserList: {
|
|
|
5589
5681
|
is_mobile?: boolean | undefined;
|
|
5590
5682
|
dob?: Date | undefined;
|
|
5591
5683
|
mezon_id?: string | undefined;
|
|
5684
|
+
list_nick_names?: string[] | undefined;
|
|
5592
5685
|
} | undefined;
|
|
5593
5686
|
state?: number | undefined;
|
|
5594
5687
|
}[] | undefined;
|
|
@@ -5618,6 +5711,7 @@ export declare const GroupUserList: {
|
|
|
5618
5711
|
is_mobile?: boolean | undefined;
|
|
5619
5712
|
dob?: Date | undefined;
|
|
5620
5713
|
mezon_id?: string | undefined;
|
|
5714
|
+
list_nick_names?: string[] | undefined;
|
|
5621
5715
|
} | undefined;
|
|
5622
5716
|
state?: number | undefined;
|
|
5623
5717
|
}[] & ({
|
|
@@ -5644,6 +5738,7 @@ export declare const GroupUserList: {
|
|
|
5644
5738
|
is_mobile?: boolean | undefined;
|
|
5645
5739
|
dob?: Date | undefined;
|
|
5646
5740
|
mezon_id?: string | undefined;
|
|
5741
|
+
list_nick_names?: string[] | undefined;
|
|
5647
5742
|
} | undefined;
|
|
5648
5743
|
state?: number | undefined;
|
|
5649
5744
|
} & {
|
|
@@ -5670,6 +5765,7 @@ export declare const GroupUserList: {
|
|
|
5670
5765
|
is_mobile?: boolean | undefined;
|
|
5671
5766
|
dob?: Date | undefined;
|
|
5672
5767
|
mezon_id?: string | undefined;
|
|
5768
|
+
list_nick_names?: string[] | undefined;
|
|
5673
5769
|
} & {
|
|
5674
5770
|
id?: string | undefined;
|
|
5675
5771
|
username?: string | undefined;
|
|
@@ -5693,9 +5789,10 @@ export declare const GroupUserList: {
|
|
|
5693
5789
|
is_mobile?: boolean | undefined;
|
|
5694
5790
|
dob?: Date | undefined;
|
|
5695
5791
|
mezon_id?: string | undefined;
|
|
5696
|
-
|
|
5792
|
+
list_nick_names?: (string[] & string[] & { [K in Exclude<keyof I["group_users"][number]["user"]["list_nick_names"], keyof string[]>]: never; }) | undefined;
|
|
5793
|
+
} & { [K_1 in Exclude<keyof I["group_users"][number]["user"], keyof User>]: never; }) | undefined;
|
|
5697
5794
|
state?: number | undefined;
|
|
5698
|
-
} & { [
|
|
5795
|
+
} & { [K_2 in Exclude<keyof I["group_users"][number], keyof GroupUserList_GroupUser>]: never; })[] & { [K_3 in Exclude<keyof I["group_users"], keyof {
|
|
5699
5796
|
user?: {
|
|
5700
5797
|
id?: string | undefined;
|
|
5701
5798
|
username?: string | undefined;
|
|
@@ -5719,11 +5816,12 @@ export declare const GroupUserList: {
|
|
|
5719
5816
|
is_mobile?: boolean | undefined;
|
|
5720
5817
|
dob?: Date | undefined;
|
|
5721
5818
|
mezon_id?: string | undefined;
|
|
5819
|
+
list_nick_names?: string[] | undefined;
|
|
5722
5820
|
} | undefined;
|
|
5723
5821
|
state?: number | undefined;
|
|
5724
5822
|
}[]>]: never; }) | undefined;
|
|
5725
5823
|
cursor?: string | undefined;
|
|
5726
|
-
} & { [
|
|
5824
|
+
} & { [K_4 in Exclude<keyof I, keyof GroupUserList>]: never; }>(base?: I | undefined): GroupUserList;
|
|
5727
5825
|
fromPartial<I_1 extends {
|
|
5728
5826
|
group_users?: {
|
|
5729
5827
|
user?: {
|
|
@@ -5749,6 +5847,7 @@ export declare const GroupUserList: {
|
|
|
5749
5847
|
is_mobile?: boolean | undefined;
|
|
5750
5848
|
dob?: Date | undefined;
|
|
5751
5849
|
mezon_id?: string | undefined;
|
|
5850
|
+
list_nick_names?: string[] | undefined;
|
|
5752
5851
|
} | undefined;
|
|
5753
5852
|
state?: number | undefined;
|
|
5754
5853
|
}[] | undefined;
|
|
@@ -5778,6 +5877,7 @@ export declare const GroupUserList: {
|
|
|
5778
5877
|
is_mobile?: boolean | undefined;
|
|
5779
5878
|
dob?: Date | undefined;
|
|
5780
5879
|
mezon_id?: string | undefined;
|
|
5880
|
+
list_nick_names?: string[] | undefined;
|
|
5781
5881
|
} | undefined;
|
|
5782
5882
|
state?: number | undefined;
|
|
5783
5883
|
}[] & ({
|
|
@@ -5804,6 +5904,7 @@ export declare const GroupUserList: {
|
|
|
5804
5904
|
is_mobile?: boolean | undefined;
|
|
5805
5905
|
dob?: Date | undefined;
|
|
5806
5906
|
mezon_id?: string | undefined;
|
|
5907
|
+
list_nick_names?: string[] | undefined;
|
|
5807
5908
|
} | undefined;
|
|
5808
5909
|
state?: number | undefined;
|
|
5809
5910
|
} & {
|
|
@@ -5830,6 +5931,7 @@ export declare const GroupUserList: {
|
|
|
5830
5931
|
is_mobile?: boolean | undefined;
|
|
5831
5932
|
dob?: Date | undefined;
|
|
5832
5933
|
mezon_id?: string | undefined;
|
|
5934
|
+
list_nick_names?: string[] | undefined;
|
|
5833
5935
|
} & {
|
|
5834
5936
|
id?: string | undefined;
|
|
5835
5937
|
username?: string | undefined;
|
|
@@ -5853,9 +5955,10 @@ export declare const GroupUserList: {
|
|
|
5853
5955
|
is_mobile?: boolean | undefined;
|
|
5854
5956
|
dob?: Date | undefined;
|
|
5855
5957
|
mezon_id?: string | undefined;
|
|
5856
|
-
|
|
5958
|
+
list_nick_names?: (string[] & string[] & { [K_5 in Exclude<keyof I_1["group_users"][number]["user"]["list_nick_names"], keyof string[]>]: never; }) | undefined;
|
|
5959
|
+
} & { [K_6 in Exclude<keyof I_1["group_users"][number]["user"], keyof User>]: never; }) | undefined;
|
|
5857
5960
|
state?: number | undefined;
|
|
5858
|
-
} & { [
|
|
5961
|
+
} & { [K_7 in Exclude<keyof I_1["group_users"][number], keyof GroupUserList_GroupUser>]: never; })[] & { [K_8 in Exclude<keyof I_1["group_users"], keyof {
|
|
5859
5962
|
user?: {
|
|
5860
5963
|
id?: string | undefined;
|
|
5861
5964
|
username?: string | undefined;
|
|
@@ -5879,11 +5982,12 @@ export declare const GroupUserList: {
|
|
|
5879
5982
|
is_mobile?: boolean | undefined;
|
|
5880
5983
|
dob?: Date | undefined;
|
|
5881
5984
|
mezon_id?: string | undefined;
|
|
5985
|
+
list_nick_names?: string[] | undefined;
|
|
5882
5986
|
} | undefined;
|
|
5883
5987
|
state?: number | undefined;
|
|
5884
5988
|
}[]>]: never; }) | undefined;
|
|
5885
5989
|
cursor?: string | undefined;
|
|
5886
|
-
} & { [
|
|
5990
|
+
} & { [K_9 in Exclude<keyof I_1, keyof GroupUserList>]: never; }>(object: I_1): GroupUserList;
|
|
5887
5991
|
};
|
|
5888
5992
|
export declare const GroupUserList_GroupUser: {
|
|
5889
5993
|
encode(message: GroupUserList_GroupUser, writer?: _m0.Writer): _m0.Writer;
|
|
@@ -5914,6 +6018,7 @@ export declare const GroupUserList_GroupUser: {
|
|
|
5914
6018
|
is_mobile?: boolean | undefined;
|
|
5915
6019
|
dob?: Date | undefined;
|
|
5916
6020
|
mezon_id?: string | undefined;
|
|
6021
|
+
list_nick_names?: string[] | undefined;
|
|
5917
6022
|
} | undefined;
|
|
5918
6023
|
state?: number | undefined;
|
|
5919
6024
|
} & {
|
|
@@ -5940,6 +6045,7 @@ export declare const GroupUserList_GroupUser: {
|
|
|
5940
6045
|
is_mobile?: boolean | undefined;
|
|
5941
6046
|
dob?: Date | undefined;
|
|
5942
6047
|
mezon_id?: string | undefined;
|
|
6048
|
+
list_nick_names?: string[] | undefined;
|
|
5943
6049
|
} & {
|
|
5944
6050
|
id?: string | undefined;
|
|
5945
6051
|
username?: string | undefined;
|
|
@@ -5963,9 +6069,10 @@ export declare const GroupUserList_GroupUser: {
|
|
|
5963
6069
|
is_mobile?: boolean | undefined;
|
|
5964
6070
|
dob?: Date | undefined;
|
|
5965
6071
|
mezon_id?: string | undefined;
|
|
5966
|
-
|
|
6072
|
+
list_nick_names?: (string[] & string[] & { [K in Exclude<keyof I["user"]["list_nick_names"], keyof string[]>]: never; }) | undefined;
|
|
6073
|
+
} & { [K_1 in Exclude<keyof I["user"], keyof User>]: never; }) | undefined;
|
|
5967
6074
|
state?: number | undefined;
|
|
5968
|
-
} & { [
|
|
6075
|
+
} & { [K_2 in Exclude<keyof I, keyof GroupUserList_GroupUser>]: never; }>(base?: I | undefined): GroupUserList_GroupUser;
|
|
5969
6076
|
fromPartial<I_1 extends {
|
|
5970
6077
|
user?: {
|
|
5971
6078
|
id?: string | undefined;
|
|
@@ -5990,6 +6097,7 @@ export declare const GroupUserList_GroupUser: {
|
|
|
5990
6097
|
is_mobile?: boolean | undefined;
|
|
5991
6098
|
dob?: Date | undefined;
|
|
5992
6099
|
mezon_id?: string | undefined;
|
|
6100
|
+
list_nick_names?: string[] | undefined;
|
|
5993
6101
|
} | undefined;
|
|
5994
6102
|
state?: number | undefined;
|
|
5995
6103
|
} & {
|
|
@@ -6016,6 +6124,7 @@ export declare const GroupUserList_GroupUser: {
|
|
|
6016
6124
|
is_mobile?: boolean | undefined;
|
|
6017
6125
|
dob?: Date | undefined;
|
|
6018
6126
|
mezon_id?: string | undefined;
|
|
6127
|
+
list_nick_names?: string[] | undefined;
|
|
6019
6128
|
} & {
|
|
6020
6129
|
id?: string | undefined;
|
|
6021
6130
|
username?: string | undefined;
|
|
@@ -6039,9 +6148,10 @@ export declare const GroupUserList_GroupUser: {
|
|
|
6039
6148
|
is_mobile?: boolean | undefined;
|
|
6040
6149
|
dob?: Date | undefined;
|
|
6041
6150
|
mezon_id?: string | undefined;
|
|
6042
|
-
|
|
6151
|
+
list_nick_names?: (string[] & string[] & { [K_3 in Exclude<keyof I_1["user"]["list_nick_names"], keyof string[]>]: never; }) | undefined;
|
|
6152
|
+
} & { [K_4 in Exclude<keyof I_1["user"], keyof User>]: never; }) | undefined;
|
|
6043
6153
|
state?: number | undefined;
|
|
6044
|
-
} & { [
|
|
6154
|
+
} & { [K_5 in Exclude<keyof I_1, keyof GroupUserList_GroupUser>]: never; }>(object: I_1): GroupUserList_GroupUser;
|
|
6045
6155
|
};
|
|
6046
6156
|
export declare const ChannelUserList: {
|
|
6047
6157
|
encode(message: ChannelUserList, writer?: _m0.Writer): _m0.Writer;
|
|
@@ -6489,6 +6599,7 @@ export declare const ClanUserList: {
|
|
|
6489
6599
|
is_mobile?: boolean | undefined;
|
|
6490
6600
|
dob?: Date | undefined;
|
|
6491
6601
|
mezon_id?: string | undefined;
|
|
6602
|
+
list_nick_names?: string[] | undefined;
|
|
6492
6603
|
} | undefined;
|
|
6493
6604
|
role_id?: string[] | undefined;
|
|
6494
6605
|
clan_nick?: string | undefined;
|
|
@@ -6522,6 +6633,7 @@ export declare const ClanUserList: {
|
|
|
6522
6633
|
is_mobile?: boolean | undefined;
|
|
6523
6634
|
dob?: Date | undefined;
|
|
6524
6635
|
mezon_id?: string | undefined;
|
|
6636
|
+
list_nick_names?: string[] | undefined;
|
|
6525
6637
|
} | undefined;
|
|
6526
6638
|
role_id?: string[] | undefined;
|
|
6527
6639
|
clan_nick?: string | undefined;
|
|
@@ -6551,6 +6663,7 @@ export declare const ClanUserList: {
|
|
|
6551
6663
|
is_mobile?: boolean | undefined;
|
|
6552
6664
|
dob?: Date | undefined;
|
|
6553
6665
|
mezon_id?: string | undefined;
|
|
6666
|
+
list_nick_names?: string[] | undefined;
|
|
6554
6667
|
} | undefined;
|
|
6555
6668
|
role_id?: string[] | undefined;
|
|
6556
6669
|
clan_nick?: string | undefined;
|
|
@@ -6580,6 +6693,7 @@ export declare const ClanUserList: {
|
|
|
6580
6693
|
is_mobile?: boolean | undefined;
|
|
6581
6694
|
dob?: Date | undefined;
|
|
6582
6695
|
mezon_id?: string | undefined;
|
|
6696
|
+
list_nick_names?: string[] | undefined;
|
|
6583
6697
|
} & {
|
|
6584
6698
|
id?: string | undefined;
|
|
6585
6699
|
username?: string | undefined;
|
|
@@ -6603,12 +6717,13 @@ export declare const ClanUserList: {
|
|
|
6603
6717
|
is_mobile?: boolean | undefined;
|
|
6604
6718
|
dob?: Date | undefined;
|
|
6605
6719
|
mezon_id?: string | undefined;
|
|
6606
|
-
|
|
6607
|
-
|
|
6720
|
+
list_nick_names?: (string[] & string[] & { [K in Exclude<keyof I["clan_users"][number]["user"]["list_nick_names"], keyof string[]>]: never; }) | undefined;
|
|
6721
|
+
} & { [K_1 in Exclude<keyof I["clan_users"][number]["user"], keyof User>]: never; }) | undefined;
|
|
6722
|
+
role_id?: (string[] & string[] & { [K_2 in Exclude<keyof I["clan_users"][number]["role_id"], keyof string[]>]: never; }) | undefined;
|
|
6608
6723
|
clan_nick?: string | undefined;
|
|
6609
6724
|
clan_avatar?: string | undefined;
|
|
6610
6725
|
clan_id?: string | undefined;
|
|
6611
|
-
} & { [
|
|
6726
|
+
} & { [K_3 in Exclude<keyof I["clan_users"][number], keyof ClanUserList_ClanUser>]: never; })[] & { [K_4 in Exclude<keyof I["clan_users"], keyof {
|
|
6612
6727
|
user?: {
|
|
6613
6728
|
id?: string | undefined;
|
|
6614
6729
|
username?: string | undefined;
|
|
@@ -6632,6 +6747,7 @@ export declare const ClanUserList: {
|
|
|
6632
6747
|
is_mobile?: boolean | undefined;
|
|
6633
6748
|
dob?: Date | undefined;
|
|
6634
6749
|
mezon_id?: string | undefined;
|
|
6750
|
+
list_nick_names?: string[] | undefined;
|
|
6635
6751
|
} | undefined;
|
|
6636
6752
|
role_id?: string[] | undefined;
|
|
6637
6753
|
clan_nick?: string | undefined;
|
|
@@ -6640,7 +6756,7 @@ export declare const ClanUserList: {
|
|
|
6640
6756
|
}[]>]: never; }) | undefined;
|
|
6641
6757
|
cursor?: string | undefined;
|
|
6642
6758
|
clan_id?: string | undefined;
|
|
6643
|
-
} & { [
|
|
6759
|
+
} & { [K_5 in Exclude<keyof I, keyof ClanUserList>]: never; }>(base?: I | undefined): ClanUserList;
|
|
6644
6760
|
fromPartial<I_1 extends {
|
|
6645
6761
|
clan_users?: {
|
|
6646
6762
|
user?: {
|
|
@@ -6666,6 +6782,7 @@ export declare const ClanUserList: {
|
|
|
6666
6782
|
is_mobile?: boolean | undefined;
|
|
6667
6783
|
dob?: Date | undefined;
|
|
6668
6784
|
mezon_id?: string | undefined;
|
|
6785
|
+
list_nick_names?: string[] | undefined;
|
|
6669
6786
|
} | undefined;
|
|
6670
6787
|
role_id?: string[] | undefined;
|
|
6671
6788
|
clan_nick?: string | undefined;
|
|
@@ -6699,6 +6816,7 @@ export declare const ClanUserList: {
|
|
|
6699
6816
|
is_mobile?: boolean | undefined;
|
|
6700
6817
|
dob?: Date | undefined;
|
|
6701
6818
|
mezon_id?: string | undefined;
|
|
6819
|
+
list_nick_names?: string[] | undefined;
|
|
6702
6820
|
} | undefined;
|
|
6703
6821
|
role_id?: string[] | undefined;
|
|
6704
6822
|
clan_nick?: string | undefined;
|
|
@@ -6728,6 +6846,7 @@ export declare const ClanUserList: {
|
|
|
6728
6846
|
is_mobile?: boolean | undefined;
|
|
6729
6847
|
dob?: Date | undefined;
|
|
6730
6848
|
mezon_id?: string | undefined;
|
|
6849
|
+
list_nick_names?: string[] | undefined;
|
|
6731
6850
|
} | undefined;
|
|
6732
6851
|
role_id?: string[] | undefined;
|
|
6733
6852
|
clan_nick?: string | undefined;
|
|
@@ -6757,6 +6876,7 @@ export declare const ClanUserList: {
|
|
|
6757
6876
|
is_mobile?: boolean | undefined;
|
|
6758
6877
|
dob?: Date | undefined;
|
|
6759
6878
|
mezon_id?: string | undefined;
|
|
6879
|
+
list_nick_names?: string[] | undefined;
|
|
6760
6880
|
} & {
|
|
6761
6881
|
id?: string | undefined;
|
|
6762
6882
|
username?: string | undefined;
|
|
@@ -6780,12 +6900,13 @@ export declare const ClanUserList: {
|
|
|
6780
6900
|
is_mobile?: boolean | undefined;
|
|
6781
6901
|
dob?: Date | undefined;
|
|
6782
6902
|
mezon_id?: string | undefined;
|
|
6783
|
-
|
|
6784
|
-
|
|
6903
|
+
list_nick_names?: (string[] & string[] & { [K_6 in Exclude<keyof I_1["clan_users"][number]["user"]["list_nick_names"], keyof string[]>]: never; }) | undefined;
|
|
6904
|
+
} & { [K_7 in Exclude<keyof I_1["clan_users"][number]["user"], keyof User>]: never; }) | undefined;
|
|
6905
|
+
role_id?: (string[] & string[] & { [K_8 in Exclude<keyof I_1["clan_users"][number]["role_id"], keyof string[]>]: never; }) | undefined;
|
|
6785
6906
|
clan_nick?: string | undefined;
|
|
6786
6907
|
clan_avatar?: string | undefined;
|
|
6787
6908
|
clan_id?: string | undefined;
|
|
6788
|
-
} & { [
|
|
6909
|
+
} & { [K_9 in Exclude<keyof I_1["clan_users"][number], keyof ClanUserList_ClanUser>]: never; })[] & { [K_10 in Exclude<keyof I_1["clan_users"], keyof {
|
|
6789
6910
|
user?: {
|
|
6790
6911
|
id?: string | undefined;
|
|
6791
6912
|
username?: string | undefined;
|
|
@@ -6809,6 +6930,7 @@ export declare const ClanUserList: {
|
|
|
6809
6930
|
is_mobile?: boolean | undefined;
|
|
6810
6931
|
dob?: Date | undefined;
|
|
6811
6932
|
mezon_id?: string | undefined;
|
|
6933
|
+
list_nick_names?: string[] | undefined;
|
|
6812
6934
|
} | undefined;
|
|
6813
6935
|
role_id?: string[] | undefined;
|
|
6814
6936
|
clan_nick?: string | undefined;
|
|
@@ -6817,7 +6939,7 @@ export declare const ClanUserList: {
|
|
|
6817
6939
|
}[]>]: never; }) | undefined;
|
|
6818
6940
|
cursor?: string | undefined;
|
|
6819
6941
|
clan_id?: string | undefined;
|
|
6820
|
-
} & { [
|
|
6942
|
+
} & { [K_11 in Exclude<keyof I_1, keyof ClanUserList>]: never; }>(object: I_1): ClanUserList;
|
|
6821
6943
|
};
|
|
6822
6944
|
export declare const ClanUserList_ClanUser: {
|
|
6823
6945
|
encode(message: ClanUserList_ClanUser, writer?: _m0.Writer): _m0.Writer;
|
|
@@ -6848,6 +6970,7 @@ export declare const ClanUserList_ClanUser: {
|
|
|
6848
6970
|
is_mobile?: boolean | undefined;
|
|
6849
6971
|
dob?: Date | undefined;
|
|
6850
6972
|
mezon_id?: string | undefined;
|
|
6973
|
+
list_nick_names?: string[] | undefined;
|
|
6851
6974
|
} | undefined;
|
|
6852
6975
|
role_id?: string[] | undefined;
|
|
6853
6976
|
clan_nick?: string | undefined;
|
|
@@ -6877,6 +7000,7 @@ export declare const ClanUserList_ClanUser: {
|
|
|
6877
7000
|
is_mobile?: boolean | undefined;
|
|
6878
7001
|
dob?: Date | undefined;
|
|
6879
7002
|
mezon_id?: string | undefined;
|
|
7003
|
+
list_nick_names?: string[] | undefined;
|
|
6880
7004
|
} & {
|
|
6881
7005
|
id?: string | undefined;
|
|
6882
7006
|
username?: string | undefined;
|
|
@@ -6900,12 +7024,13 @@ export declare const ClanUserList_ClanUser: {
|
|
|
6900
7024
|
is_mobile?: boolean | undefined;
|
|
6901
7025
|
dob?: Date | undefined;
|
|
6902
7026
|
mezon_id?: string | undefined;
|
|
6903
|
-
|
|
6904
|
-
|
|
7027
|
+
list_nick_names?: (string[] & string[] & { [K in Exclude<keyof I["user"]["list_nick_names"], keyof string[]>]: never; }) | undefined;
|
|
7028
|
+
} & { [K_1 in Exclude<keyof I["user"], keyof User>]: never; }) | undefined;
|
|
7029
|
+
role_id?: (string[] & string[] & { [K_2 in Exclude<keyof I["role_id"], keyof string[]>]: never; }) | undefined;
|
|
6905
7030
|
clan_nick?: string | undefined;
|
|
6906
7031
|
clan_avatar?: string | undefined;
|
|
6907
7032
|
clan_id?: string | undefined;
|
|
6908
|
-
} & { [
|
|
7033
|
+
} & { [K_3 in Exclude<keyof I, keyof ClanUserList_ClanUser>]: never; }>(base?: I | undefined): ClanUserList_ClanUser;
|
|
6909
7034
|
fromPartial<I_1 extends {
|
|
6910
7035
|
user?: {
|
|
6911
7036
|
id?: string | undefined;
|
|
@@ -6930,6 +7055,7 @@ export declare const ClanUserList_ClanUser: {
|
|
|
6930
7055
|
is_mobile?: boolean | undefined;
|
|
6931
7056
|
dob?: Date | undefined;
|
|
6932
7057
|
mezon_id?: string | undefined;
|
|
7058
|
+
list_nick_names?: string[] | undefined;
|
|
6933
7059
|
} | undefined;
|
|
6934
7060
|
role_id?: string[] | undefined;
|
|
6935
7061
|
clan_nick?: string | undefined;
|
|
@@ -6959,6 +7085,7 @@ export declare const ClanUserList_ClanUser: {
|
|
|
6959
7085
|
is_mobile?: boolean | undefined;
|
|
6960
7086
|
dob?: Date | undefined;
|
|
6961
7087
|
mezon_id?: string | undefined;
|
|
7088
|
+
list_nick_names?: string[] | undefined;
|
|
6962
7089
|
} & {
|
|
6963
7090
|
id?: string | undefined;
|
|
6964
7091
|
username?: string | undefined;
|
|
@@ -6982,12 +7109,13 @@ export declare const ClanUserList_ClanUser: {
|
|
|
6982
7109
|
is_mobile?: boolean | undefined;
|
|
6983
7110
|
dob?: Date | undefined;
|
|
6984
7111
|
mezon_id?: string | undefined;
|
|
6985
|
-
|
|
6986
|
-
|
|
7112
|
+
list_nick_names?: (string[] & string[] & { [K_4 in Exclude<keyof I_1["user"]["list_nick_names"], keyof string[]>]: never; }) | undefined;
|
|
7113
|
+
} & { [K_5 in Exclude<keyof I_1["user"], keyof User>]: never; }) | undefined;
|
|
7114
|
+
role_id?: (string[] & string[] & { [K_6 in Exclude<keyof I_1["role_id"], keyof string[]>]: never; }) | undefined;
|
|
6987
7115
|
clan_nick?: string | undefined;
|
|
6988
7116
|
clan_avatar?: string | undefined;
|
|
6989
7117
|
clan_id?: string | undefined;
|
|
6990
|
-
} & { [
|
|
7118
|
+
} & { [K_7 in Exclude<keyof I_1, keyof ClanUserList_ClanUser>]: never; }>(object: I_1): ClanUserList_ClanUser;
|
|
6991
7119
|
};
|
|
6992
7120
|
export declare const RegistFcmDeviceTokenRequest: {
|
|
6993
7121
|
encode(message: RegistFcmDeviceTokenRequest, writer?: _m0.Writer): _m0.Writer;
|
|
@@ -6998,19 +7126,23 @@ export declare const RegistFcmDeviceTokenRequest: {
|
|
|
6998
7126
|
token?: string | undefined;
|
|
6999
7127
|
device_id?: string | undefined;
|
|
7000
7128
|
platform?: string | undefined;
|
|
7129
|
+
voip_token?: string | undefined;
|
|
7001
7130
|
} & {
|
|
7002
7131
|
token?: string | undefined;
|
|
7003
7132
|
device_id?: string | undefined;
|
|
7004
7133
|
platform?: string | undefined;
|
|
7134
|
+
voip_token?: string | undefined;
|
|
7005
7135
|
} & { [K in Exclude<keyof I, keyof RegistFcmDeviceTokenRequest>]: never; }>(base?: I | undefined): RegistFcmDeviceTokenRequest;
|
|
7006
7136
|
fromPartial<I_1 extends {
|
|
7007
7137
|
token?: string | undefined;
|
|
7008
7138
|
device_id?: string | undefined;
|
|
7009
7139
|
platform?: string | undefined;
|
|
7140
|
+
voip_token?: string | undefined;
|
|
7010
7141
|
} & {
|
|
7011
7142
|
token?: string | undefined;
|
|
7012
7143
|
device_id?: string | undefined;
|
|
7013
7144
|
platform?: string | undefined;
|
|
7145
|
+
voip_token?: string | undefined;
|
|
7014
7146
|
} & { [K_1 in Exclude<keyof I_1, keyof RegistFcmDeviceTokenRequest>]: never; }>(object: I_1): RegistFcmDeviceTokenRequest;
|
|
7015
7147
|
};
|
|
7016
7148
|
export declare const RegistFcmDeviceTokenResponse: {
|
|
@@ -8891,6 +9023,7 @@ export declare const User: {
|
|
|
8891
9023
|
is_mobile?: boolean | undefined;
|
|
8892
9024
|
dob?: Date | undefined;
|
|
8893
9025
|
mezon_id?: string | undefined;
|
|
9026
|
+
list_nick_names?: string[] | undefined;
|
|
8894
9027
|
} & {
|
|
8895
9028
|
id?: string | undefined;
|
|
8896
9029
|
username?: string | undefined;
|
|
@@ -8914,7 +9047,8 @@ export declare const User: {
|
|
|
8914
9047
|
is_mobile?: boolean | undefined;
|
|
8915
9048
|
dob?: Date | undefined;
|
|
8916
9049
|
mezon_id?: string | undefined;
|
|
8917
|
-
|
|
9050
|
+
list_nick_names?: (string[] & string[] & { [K in Exclude<keyof I["list_nick_names"], keyof string[]>]: never; }) | undefined;
|
|
9051
|
+
} & { [K_1 in Exclude<keyof I, keyof User>]: never; }>(base?: I | undefined): User;
|
|
8918
9052
|
fromPartial<I_1 extends {
|
|
8919
9053
|
id?: string | undefined;
|
|
8920
9054
|
username?: string | undefined;
|
|
@@ -8938,6 +9072,7 @@ export declare const User: {
|
|
|
8938
9072
|
is_mobile?: boolean | undefined;
|
|
8939
9073
|
dob?: Date | undefined;
|
|
8940
9074
|
mezon_id?: string | undefined;
|
|
9075
|
+
list_nick_names?: string[] | undefined;
|
|
8941
9076
|
} & {
|
|
8942
9077
|
id?: string | undefined;
|
|
8943
9078
|
username?: string | undefined;
|
|
@@ -8961,7 +9096,8 @@ export declare const User: {
|
|
|
8961
9096
|
is_mobile?: boolean | undefined;
|
|
8962
9097
|
dob?: Date | undefined;
|
|
8963
9098
|
mezon_id?: string | undefined;
|
|
8964
|
-
|
|
9099
|
+
list_nick_names?: (string[] & string[] & { [K_2 in Exclude<keyof I_1["list_nick_names"], keyof string[]>]: never; }) | undefined;
|
|
9100
|
+
} & { [K_3 in Exclude<keyof I_1, keyof User>]: never; }>(object: I_1): User;
|
|
8965
9101
|
};
|
|
8966
9102
|
export declare const UserGroupList: {
|
|
8967
9103
|
encode(message: UserGroupList, writer?: _m0.Writer): _m0.Writer;
|
|
@@ -9296,6 +9432,7 @@ export declare const Users: {
|
|
|
9296
9432
|
is_mobile?: boolean | undefined;
|
|
9297
9433
|
dob?: Date | undefined;
|
|
9298
9434
|
mezon_id?: string | undefined;
|
|
9435
|
+
list_nick_names?: string[] | undefined;
|
|
9299
9436
|
}[] | undefined;
|
|
9300
9437
|
} & {
|
|
9301
9438
|
users?: ({
|
|
@@ -9321,6 +9458,7 @@ export declare const Users: {
|
|
|
9321
9458
|
is_mobile?: boolean | undefined;
|
|
9322
9459
|
dob?: Date | undefined;
|
|
9323
9460
|
mezon_id?: string | undefined;
|
|
9461
|
+
list_nick_names?: string[] | undefined;
|
|
9324
9462
|
}[] & ({
|
|
9325
9463
|
id?: string | undefined;
|
|
9326
9464
|
username?: string | undefined;
|
|
@@ -9344,6 +9482,7 @@ export declare const Users: {
|
|
|
9344
9482
|
is_mobile?: boolean | undefined;
|
|
9345
9483
|
dob?: Date | undefined;
|
|
9346
9484
|
mezon_id?: string | undefined;
|
|
9485
|
+
list_nick_names?: string[] | undefined;
|
|
9347
9486
|
} & {
|
|
9348
9487
|
id?: string | undefined;
|
|
9349
9488
|
username?: string | undefined;
|
|
@@ -9367,7 +9506,8 @@ export declare const Users: {
|
|
|
9367
9506
|
is_mobile?: boolean | undefined;
|
|
9368
9507
|
dob?: Date | undefined;
|
|
9369
9508
|
mezon_id?: string | undefined;
|
|
9370
|
-
|
|
9509
|
+
list_nick_names?: (string[] & string[] & { [K in Exclude<keyof I["users"][number]["list_nick_names"], keyof string[]>]: never; }) | undefined;
|
|
9510
|
+
} & { [K_1 in Exclude<keyof I["users"][number], keyof User>]: never; })[] & { [K_2 in Exclude<keyof I["users"], keyof {
|
|
9371
9511
|
id?: string | undefined;
|
|
9372
9512
|
username?: string | undefined;
|
|
9373
9513
|
display_name?: string | undefined;
|
|
@@ -9390,8 +9530,9 @@ export declare const Users: {
|
|
|
9390
9530
|
is_mobile?: boolean | undefined;
|
|
9391
9531
|
dob?: Date | undefined;
|
|
9392
9532
|
mezon_id?: string | undefined;
|
|
9533
|
+
list_nick_names?: string[] | undefined;
|
|
9393
9534
|
}[]>]: never; }) | undefined;
|
|
9394
|
-
} & { [
|
|
9535
|
+
} & { [K_3 in Exclude<keyof I, "users">]: never; }>(base?: I | undefined): Users;
|
|
9395
9536
|
fromPartial<I_1 extends {
|
|
9396
9537
|
users?: {
|
|
9397
9538
|
id?: string | undefined;
|
|
@@ -9416,6 +9557,7 @@ export declare const Users: {
|
|
|
9416
9557
|
is_mobile?: boolean | undefined;
|
|
9417
9558
|
dob?: Date | undefined;
|
|
9418
9559
|
mezon_id?: string | undefined;
|
|
9560
|
+
list_nick_names?: string[] | undefined;
|
|
9419
9561
|
}[] | undefined;
|
|
9420
9562
|
} & {
|
|
9421
9563
|
users?: ({
|
|
@@ -9441,6 +9583,7 @@ export declare const Users: {
|
|
|
9441
9583
|
is_mobile?: boolean | undefined;
|
|
9442
9584
|
dob?: Date | undefined;
|
|
9443
9585
|
mezon_id?: string | undefined;
|
|
9586
|
+
list_nick_names?: string[] | undefined;
|
|
9444
9587
|
}[] & ({
|
|
9445
9588
|
id?: string | undefined;
|
|
9446
9589
|
username?: string | undefined;
|
|
@@ -9464,6 +9607,7 @@ export declare const Users: {
|
|
|
9464
9607
|
is_mobile?: boolean | undefined;
|
|
9465
9608
|
dob?: Date | undefined;
|
|
9466
9609
|
mezon_id?: string | undefined;
|
|
9610
|
+
list_nick_names?: string[] | undefined;
|
|
9467
9611
|
} & {
|
|
9468
9612
|
id?: string | undefined;
|
|
9469
9613
|
username?: string | undefined;
|
|
@@ -9487,7 +9631,8 @@ export declare const Users: {
|
|
|
9487
9631
|
is_mobile?: boolean | undefined;
|
|
9488
9632
|
dob?: Date | undefined;
|
|
9489
9633
|
mezon_id?: string | undefined;
|
|
9490
|
-
|
|
9634
|
+
list_nick_names?: (string[] & string[] & { [K_4 in Exclude<keyof I_1["users"][number]["list_nick_names"], keyof string[]>]: never; }) | undefined;
|
|
9635
|
+
} & { [K_5 in Exclude<keyof I_1["users"][number], keyof User>]: never; })[] & { [K_6 in Exclude<keyof I_1["users"], keyof {
|
|
9491
9636
|
id?: string | undefined;
|
|
9492
9637
|
username?: string | undefined;
|
|
9493
9638
|
display_name?: string | undefined;
|
|
@@ -9510,8 +9655,9 @@ export declare const Users: {
|
|
|
9510
9655
|
is_mobile?: boolean | undefined;
|
|
9511
9656
|
dob?: Date | undefined;
|
|
9512
9657
|
mezon_id?: string | undefined;
|
|
9658
|
+
list_nick_names?: string[] | undefined;
|
|
9513
9659
|
}[]>]: never; }) | undefined;
|
|
9514
|
-
} & { [
|
|
9660
|
+
} & { [K_7 in Exclude<keyof I_1, "users">]: never; }>(object: I_1): Users;
|
|
9515
9661
|
};
|
|
9516
9662
|
export declare const ClanDescProfile: {
|
|
9517
9663
|
encode(message: ClanDescProfile, writer?: _m0.Writer): _m0.Writer;
|
|
@@ -15729,6 +15875,7 @@ export declare const ClanEmoji: {
|
|
|
15729
15875
|
clan_id?: string | undefined;
|
|
15730
15876
|
logo?: string | undefined;
|
|
15731
15877
|
clan_name?: string | undefined;
|
|
15878
|
+
is_for_sale?: boolean | undefined;
|
|
15732
15879
|
} & {
|
|
15733
15880
|
id?: string | undefined;
|
|
15734
15881
|
src?: string | undefined;
|
|
@@ -15738,6 +15885,7 @@ export declare const ClanEmoji: {
|
|
|
15738
15885
|
clan_id?: string | undefined;
|
|
15739
15886
|
logo?: string | undefined;
|
|
15740
15887
|
clan_name?: string | undefined;
|
|
15888
|
+
is_for_sale?: boolean | undefined;
|
|
15741
15889
|
} & { [K in Exclude<keyof I, keyof ClanEmoji>]: never; }>(base?: I | undefined): ClanEmoji;
|
|
15742
15890
|
fromPartial<I_1 extends {
|
|
15743
15891
|
id?: string | undefined;
|
|
@@ -15748,6 +15896,7 @@ export declare const ClanEmoji: {
|
|
|
15748
15896
|
clan_id?: string | undefined;
|
|
15749
15897
|
logo?: string | undefined;
|
|
15750
15898
|
clan_name?: string | undefined;
|
|
15899
|
+
is_for_sale?: boolean | undefined;
|
|
15751
15900
|
} & {
|
|
15752
15901
|
id?: string | undefined;
|
|
15753
15902
|
src?: string | undefined;
|
|
@@ -15757,6 +15906,7 @@ export declare const ClanEmoji: {
|
|
|
15757
15906
|
clan_id?: string | undefined;
|
|
15758
15907
|
logo?: string | undefined;
|
|
15759
15908
|
clan_name?: string | undefined;
|
|
15909
|
+
is_for_sale?: boolean | undefined;
|
|
15760
15910
|
} & { [K_1 in Exclude<keyof I_1, keyof ClanEmoji>]: never; }>(object: I_1): ClanEmoji;
|
|
15761
15911
|
};
|
|
15762
15912
|
export declare const EmojiListedResponse: {
|
|
@@ -15774,6 +15924,7 @@ export declare const EmojiListedResponse: {
|
|
|
15774
15924
|
clan_id?: string | undefined;
|
|
15775
15925
|
logo?: string | undefined;
|
|
15776
15926
|
clan_name?: string | undefined;
|
|
15927
|
+
is_for_sale?: boolean | undefined;
|
|
15777
15928
|
}[] | undefined;
|
|
15778
15929
|
} & {
|
|
15779
15930
|
emoji_list?: ({
|
|
@@ -15785,6 +15936,7 @@ export declare const EmojiListedResponse: {
|
|
|
15785
15936
|
clan_id?: string | undefined;
|
|
15786
15937
|
logo?: string | undefined;
|
|
15787
15938
|
clan_name?: string | undefined;
|
|
15939
|
+
is_for_sale?: boolean | undefined;
|
|
15788
15940
|
}[] & ({
|
|
15789
15941
|
id?: string | undefined;
|
|
15790
15942
|
src?: string | undefined;
|
|
@@ -15794,6 +15946,7 @@ export declare const EmojiListedResponse: {
|
|
|
15794
15946
|
clan_id?: string | undefined;
|
|
15795
15947
|
logo?: string | undefined;
|
|
15796
15948
|
clan_name?: string | undefined;
|
|
15949
|
+
is_for_sale?: boolean | undefined;
|
|
15797
15950
|
} & {
|
|
15798
15951
|
id?: string | undefined;
|
|
15799
15952
|
src?: string | undefined;
|
|
@@ -15803,6 +15956,7 @@ export declare const EmojiListedResponse: {
|
|
|
15803
15956
|
clan_id?: string | undefined;
|
|
15804
15957
|
logo?: string | undefined;
|
|
15805
15958
|
clan_name?: string | undefined;
|
|
15959
|
+
is_for_sale?: boolean | undefined;
|
|
15806
15960
|
} & { [K in Exclude<keyof I["emoji_list"][number], keyof ClanEmoji>]: never; })[] & { [K_1 in Exclude<keyof I["emoji_list"], keyof {
|
|
15807
15961
|
id?: string | undefined;
|
|
15808
15962
|
src?: string | undefined;
|
|
@@ -15812,6 +15966,7 @@ export declare const EmojiListedResponse: {
|
|
|
15812
15966
|
clan_id?: string | undefined;
|
|
15813
15967
|
logo?: string | undefined;
|
|
15814
15968
|
clan_name?: string | undefined;
|
|
15969
|
+
is_for_sale?: boolean | undefined;
|
|
15815
15970
|
}[]>]: never; }) | undefined;
|
|
15816
15971
|
} & { [K_2 in Exclude<keyof I, "emoji_list">]: never; }>(base?: I | undefined): EmojiListedResponse;
|
|
15817
15972
|
fromPartial<I_1 extends {
|
|
@@ -15824,6 +15979,7 @@ export declare const EmojiListedResponse: {
|
|
|
15824
15979
|
clan_id?: string | undefined;
|
|
15825
15980
|
logo?: string | undefined;
|
|
15826
15981
|
clan_name?: string | undefined;
|
|
15982
|
+
is_for_sale?: boolean | undefined;
|
|
15827
15983
|
}[] | undefined;
|
|
15828
15984
|
} & {
|
|
15829
15985
|
emoji_list?: ({
|
|
@@ -15835,6 +15991,7 @@ export declare const EmojiListedResponse: {
|
|
|
15835
15991
|
clan_id?: string | undefined;
|
|
15836
15992
|
logo?: string | undefined;
|
|
15837
15993
|
clan_name?: string | undefined;
|
|
15994
|
+
is_for_sale?: boolean | undefined;
|
|
15838
15995
|
}[] & ({
|
|
15839
15996
|
id?: string | undefined;
|
|
15840
15997
|
src?: string | undefined;
|
|
@@ -15844,6 +16001,7 @@ export declare const EmojiListedResponse: {
|
|
|
15844
16001
|
clan_id?: string | undefined;
|
|
15845
16002
|
logo?: string | undefined;
|
|
15846
16003
|
clan_name?: string | undefined;
|
|
16004
|
+
is_for_sale?: boolean | undefined;
|
|
15847
16005
|
} & {
|
|
15848
16006
|
id?: string | undefined;
|
|
15849
16007
|
src?: string | undefined;
|
|
@@ -15853,6 +16011,7 @@ export declare const EmojiListedResponse: {
|
|
|
15853
16011
|
clan_id?: string | undefined;
|
|
15854
16012
|
logo?: string | undefined;
|
|
15855
16013
|
clan_name?: string | undefined;
|
|
16014
|
+
is_for_sale?: boolean | undefined;
|
|
15856
16015
|
} & { [K_3 in Exclude<keyof I_1["emoji_list"][number], keyof ClanEmoji>]: never; })[] & { [K_4 in Exclude<keyof I_1["emoji_list"], keyof {
|
|
15857
16016
|
id?: string | undefined;
|
|
15858
16017
|
src?: string | undefined;
|
|
@@ -15862,6 +16021,7 @@ export declare const EmojiListedResponse: {
|
|
|
15862
16021
|
clan_id?: string | undefined;
|
|
15863
16022
|
logo?: string | undefined;
|
|
15864
16023
|
clan_name?: string | undefined;
|
|
16024
|
+
is_for_sale?: boolean | undefined;
|
|
15865
16025
|
}[]>]: never; }) | undefined;
|
|
15866
16026
|
} & { [K_5 in Exclude<keyof I_1, "emoji_list">]: never; }>(object: I_1): EmojiListedResponse;
|
|
15867
16027
|
};
|
|
@@ -15881,6 +16041,8 @@ export declare const StickerListedResponse: {
|
|
|
15881
16041
|
clan_id?: string | undefined;
|
|
15882
16042
|
logo?: string | undefined;
|
|
15883
16043
|
clan_name?: string | undefined;
|
|
16044
|
+
media_type?: number | undefined;
|
|
16045
|
+
is_for_sale?: boolean | undefined;
|
|
15884
16046
|
}[] | undefined;
|
|
15885
16047
|
} & {
|
|
15886
16048
|
stickers?: ({
|
|
@@ -15893,6 +16055,8 @@ export declare const StickerListedResponse: {
|
|
|
15893
16055
|
clan_id?: string | undefined;
|
|
15894
16056
|
logo?: string | undefined;
|
|
15895
16057
|
clan_name?: string | undefined;
|
|
16058
|
+
media_type?: number | undefined;
|
|
16059
|
+
is_for_sale?: boolean | undefined;
|
|
15896
16060
|
}[] & ({
|
|
15897
16061
|
id?: string | undefined;
|
|
15898
16062
|
source?: string | undefined;
|
|
@@ -15903,6 +16067,8 @@ export declare const StickerListedResponse: {
|
|
|
15903
16067
|
clan_id?: string | undefined;
|
|
15904
16068
|
logo?: string | undefined;
|
|
15905
16069
|
clan_name?: string | undefined;
|
|
16070
|
+
media_type?: number | undefined;
|
|
16071
|
+
is_for_sale?: boolean | undefined;
|
|
15906
16072
|
} & {
|
|
15907
16073
|
id?: string | undefined;
|
|
15908
16074
|
source?: string | undefined;
|
|
@@ -15913,6 +16079,8 @@ export declare const StickerListedResponse: {
|
|
|
15913
16079
|
clan_id?: string | undefined;
|
|
15914
16080
|
logo?: string | undefined;
|
|
15915
16081
|
clan_name?: string | undefined;
|
|
16082
|
+
media_type?: number | undefined;
|
|
16083
|
+
is_for_sale?: boolean | undefined;
|
|
15916
16084
|
} & { [K in Exclude<keyof I["stickers"][number], keyof ClanSticker>]: never; })[] & { [K_1 in Exclude<keyof I["stickers"], keyof {
|
|
15917
16085
|
id?: string | undefined;
|
|
15918
16086
|
source?: string | undefined;
|
|
@@ -15923,6 +16091,8 @@ export declare const StickerListedResponse: {
|
|
|
15923
16091
|
clan_id?: string | undefined;
|
|
15924
16092
|
logo?: string | undefined;
|
|
15925
16093
|
clan_name?: string | undefined;
|
|
16094
|
+
media_type?: number | undefined;
|
|
16095
|
+
is_for_sale?: boolean | undefined;
|
|
15926
16096
|
}[]>]: never; }) | undefined;
|
|
15927
16097
|
} & { [K_2 in Exclude<keyof I, "stickers">]: never; }>(base?: I | undefined): StickerListedResponse;
|
|
15928
16098
|
fromPartial<I_1 extends {
|
|
@@ -15936,6 +16106,8 @@ export declare const StickerListedResponse: {
|
|
|
15936
16106
|
clan_id?: string | undefined;
|
|
15937
16107
|
logo?: string | undefined;
|
|
15938
16108
|
clan_name?: string | undefined;
|
|
16109
|
+
media_type?: number | undefined;
|
|
16110
|
+
is_for_sale?: boolean | undefined;
|
|
15939
16111
|
}[] | undefined;
|
|
15940
16112
|
} & {
|
|
15941
16113
|
stickers?: ({
|
|
@@ -15948,6 +16120,8 @@ export declare const StickerListedResponse: {
|
|
|
15948
16120
|
clan_id?: string | undefined;
|
|
15949
16121
|
logo?: string | undefined;
|
|
15950
16122
|
clan_name?: string | undefined;
|
|
16123
|
+
media_type?: number | undefined;
|
|
16124
|
+
is_for_sale?: boolean | undefined;
|
|
15951
16125
|
}[] & ({
|
|
15952
16126
|
id?: string | undefined;
|
|
15953
16127
|
source?: string | undefined;
|
|
@@ -15958,6 +16132,8 @@ export declare const StickerListedResponse: {
|
|
|
15958
16132
|
clan_id?: string | undefined;
|
|
15959
16133
|
logo?: string | undefined;
|
|
15960
16134
|
clan_name?: string | undefined;
|
|
16135
|
+
media_type?: number | undefined;
|
|
16136
|
+
is_for_sale?: boolean | undefined;
|
|
15961
16137
|
} & {
|
|
15962
16138
|
id?: string | undefined;
|
|
15963
16139
|
source?: string | undefined;
|
|
@@ -15968,6 +16144,8 @@ export declare const StickerListedResponse: {
|
|
|
15968
16144
|
clan_id?: string | undefined;
|
|
15969
16145
|
logo?: string | undefined;
|
|
15970
16146
|
clan_name?: string | undefined;
|
|
16147
|
+
media_type?: number | undefined;
|
|
16148
|
+
is_for_sale?: boolean | undefined;
|
|
15971
16149
|
} & { [K_3 in Exclude<keyof I_1["stickers"][number], keyof ClanSticker>]: never; })[] & { [K_4 in Exclude<keyof I_1["stickers"], keyof {
|
|
15972
16150
|
id?: string | undefined;
|
|
15973
16151
|
source?: string | undefined;
|
|
@@ -15978,6 +16156,8 @@ export declare const StickerListedResponse: {
|
|
|
15978
16156
|
clan_id?: string | undefined;
|
|
15979
16157
|
logo?: string | undefined;
|
|
15980
16158
|
clan_name?: string | undefined;
|
|
16159
|
+
media_type?: number | undefined;
|
|
16160
|
+
is_for_sale?: boolean | undefined;
|
|
15981
16161
|
}[]>]: never; }) | undefined;
|
|
15982
16162
|
} & { [K_5 in Exclude<keyof I_1, "stickers">]: never; }>(object: I_1): StickerListedResponse;
|
|
15983
16163
|
};
|
|
@@ -15996,6 +16176,8 @@ export declare const ClanSticker: {
|
|
|
15996
16176
|
clan_id?: string | undefined;
|
|
15997
16177
|
logo?: string | undefined;
|
|
15998
16178
|
clan_name?: string | undefined;
|
|
16179
|
+
media_type?: number | undefined;
|
|
16180
|
+
is_for_sale?: boolean | undefined;
|
|
15999
16181
|
} & {
|
|
16000
16182
|
id?: string | undefined;
|
|
16001
16183
|
source?: string | undefined;
|
|
@@ -16006,6 +16188,8 @@ export declare const ClanSticker: {
|
|
|
16006
16188
|
clan_id?: string | undefined;
|
|
16007
16189
|
logo?: string | undefined;
|
|
16008
16190
|
clan_name?: string | undefined;
|
|
16191
|
+
media_type?: number | undefined;
|
|
16192
|
+
is_for_sale?: boolean | undefined;
|
|
16009
16193
|
} & { [K in Exclude<keyof I, keyof ClanSticker>]: never; }>(base?: I | undefined): ClanSticker;
|
|
16010
16194
|
fromPartial<I_1 extends {
|
|
16011
16195
|
id?: string | undefined;
|
|
@@ -16017,6 +16201,8 @@ export declare const ClanSticker: {
|
|
|
16017
16201
|
clan_id?: string | undefined;
|
|
16018
16202
|
logo?: string | undefined;
|
|
16019
16203
|
clan_name?: string | undefined;
|
|
16204
|
+
media_type?: number | undefined;
|
|
16205
|
+
is_for_sale?: boolean | undefined;
|
|
16020
16206
|
} & {
|
|
16021
16207
|
id?: string | undefined;
|
|
16022
16208
|
source?: string | undefined;
|
|
@@ -16027,6 +16213,8 @@ export declare const ClanSticker: {
|
|
|
16027
16213
|
clan_id?: string | undefined;
|
|
16028
16214
|
logo?: string | undefined;
|
|
16029
16215
|
clan_name?: string | undefined;
|
|
16216
|
+
media_type?: number | undefined;
|
|
16217
|
+
is_for_sale?: boolean | undefined;
|
|
16030
16218
|
} & { [K_1 in Exclude<keyof I_1, keyof ClanSticker>]: never; }>(object: I_1): ClanSticker;
|
|
16031
16219
|
};
|
|
16032
16220
|
export declare const AllUsersAddChannelRequest: {
|
|
@@ -16084,12 +16272,14 @@ export declare const ClanEmojiCreateRequest: {
|
|
|
16084
16272
|
shortname?: string | undefined;
|
|
16085
16273
|
category?: string | undefined;
|
|
16086
16274
|
id?: string | undefined;
|
|
16275
|
+
is_for_sale?: boolean | undefined;
|
|
16087
16276
|
} & {
|
|
16088
16277
|
clan_id?: string | undefined;
|
|
16089
16278
|
source?: string | undefined;
|
|
16090
16279
|
shortname?: string | undefined;
|
|
16091
16280
|
category?: string | undefined;
|
|
16092
16281
|
id?: string | undefined;
|
|
16282
|
+
is_for_sale?: boolean | undefined;
|
|
16093
16283
|
} & { [K in Exclude<keyof I, keyof ClanEmojiCreateRequest>]: never; }>(base?: I | undefined): ClanEmojiCreateRequest;
|
|
16094
16284
|
fromPartial<I_1 extends {
|
|
16095
16285
|
clan_id?: string | undefined;
|
|
@@ -16097,12 +16287,14 @@ export declare const ClanEmojiCreateRequest: {
|
|
|
16097
16287
|
shortname?: string | undefined;
|
|
16098
16288
|
category?: string | undefined;
|
|
16099
16289
|
id?: string | undefined;
|
|
16290
|
+
is_for_sale?: boolean | undefined;
|
|
16100
16291
|
} & {
|
|
16101
16292
|
clan_id?: string | undefined;
|
|
16102
16293
|
source?: string | undefined;
|
|
16103
16294
|
shortname?: string | undefined;
|
|
16104
16295
|
category?: string | undefined;
|
|
16105
16296
|
id?: string | undefined;
|
|
16297
|
+
is_for_sale?: boolean | undefined;
|
|
16106
16298
|
} & { [K_1 in Exclude<keyof I_1, keyof ClanEmojiCreateRequest>]: never; }>(object: I_1): ClanEmojiCreateRequest;
|
|
16107
16299
|
};
|
|
16108
16300
|
export declare const ClanEmojiGetByClanIdRequest: {
|
|
@@ -16576,27 +16768,35 @@ export declare const ClanStickerAddRequest: {
|
|
|
16576
16768
|
source?: string | undefined;
|
|
16577
16769
|
shortname?: string | undefined;
|
|
16578
16770
|
category?: string | undefined;
|
|
16579
|
-
clan_id?:
|
|
16771
|
+
clan_id?: string | undefined;
|
|
16580
16772
|
id?: string | undefined;
|
|
16773
|
+
media_type?: number | undefined;
|
|
16774
|
+
is_for_sale?: boolean | undefined;
|
|
16581
16775
|
} & {
|
|
16582
16776
|
source?: string | undefined;
|
|
16583
16777
|
shortname?: string | undefined;
|
|
16584
16778
|
category?: string | undefined;
|
|
16585
|
-
clan_id?:
|
|
16779
|
+
clan_id?: string | undefined;
|
|
16586
16780
|
id?: string | undefined;
|
|
16781
|
+
media_type?: number | undefined;
|
|
16782
|
+
is_for_sale?: boolean | undefined;
|
|
16587
16783
|
} & { [K in Exclude<keyof I, keyof ClanStickerAddRequest>]: never; }>(base?: I | undefined): ClanStickerAddRequest;
|
|
16588
16784
|
fromPartial<I_1 extends {
|
|
16589
16785
|
source?: string | undefined;
|
|
16590
16786
|
shortname?: string | undefined;
|
|
16591
16787
|
category?: string | undefined;
|
|
16592
|
-
clan_id?:
|
|
16788
|
+
clan_id?: string | undefined;
|
|
16593
16789
|
id?: string | undefined;
|
|
16790
|
+
media_type?: number | undefined;
|
|
16791
|
+
is_for_sale?: boolean | undefined;
|
|
16594
16792
|
} & {
|
|
16595
16793
|
source?: string | undefined;
|
|
16596
16794
|
shortname?: string | undefined;
|
|
16597
16795
|
category?: string | undefined;
|
|
16598
|
-
clan_id?:
|
|
16796
|
+
clan_id?: string | undefined;
|
|
16599
16797
|
id?: string | undefined;
|
|
16798
|
+
media_type?: number | undefined;
|
|
16799
|
+
is_for_sale?: boolean | undefined;
|
|
16600
16800
|
} & { [K_1 in Exclude<keyof I_1, keyof ClanStickerAddRequest>]: never; }>(object: I_1): ClanStickerAddRequest;
|
|
16601
16801
|
};
|
|
16602
16802
|
export declare const ClanStickerListByClanIdRequest: {
|
|
@@ -16982,6 +17182,7 @@ export declare const UpdateAppRequest: {
|
|
|
16982
17182
|
token?: string | undefined;
|
|
16983
17183
|
about?: string | undefined;
|
|
16984
17184
|
app_url?: string | undefined;
|
|
17185
|
+
is_shadow?: string | undefined;
|
|
16985
17186
|
} & {
|
|
16986
17187
|
id?: string | undefined;
|
|
16987
17188
|
appname?: string | undefined;
|
|
@@ -16990,6 +17191,7 @@ export declare const UpdateAppRequest: {
|
|
|
16990
17191
|
token?: string | undefined;
|
|
16991
17192
|
about?: string | undefined;
|
|
16992
17193
|
app_url?: string | undefined;
|
|
17194
|
+
is_shadow?: string | undefined;
|
|
16993
17195
|
} & { [K in Exclude<keyof I, keyof UpdateAppRequest>]: never; }>(base?: I | undefined): UpdateAppRequest;
|
|
16994
17196
|
fromPartial<I_1 extends {
|
|
16995
17197
|
id?: string | undefined;
|
|
@@ -16999,6 +17201,7 @@ export declare const UpdateAppRequest: {
|
|
|
16999
17201
|
token?: string | undefined;
|
|
17000
17202
|
about?: string | undefined;
|
|
17001
17203
|
app_url?: string | undefined;
|
|
17204
|
+
is_shadow?: string | undefined;
|
|
17002
17205
|
} & {
|
|
17003
17206
|
id?: string | undefined;
|
|
17004
17207
|
appname?: string | undefined;
|
|
@@ -17007,6 +17210,7 @@ export declare const UpdateAppRequest: {
|
|
|
17007
17210
|
token?: string | undefined;
|
|
17008
17211
|
about?: string | undefined;
|
|
17009
17212
|
app_url?: string | undefined;
|
|
17213
|
+
is_shadow?: string | undefined;
|
|
17010
17214
|
} & { [K_1 in Exclude<keyof I_1, keyof UpdateAppRequest>]: never; }>(object: I_1): UpdateAppRequest;
|
|
17011
17215
|
};
|
|
17012
17216
|
export declare const AppId: {
|
|
@@ -17710,6 +17914,7 @@ export declare const AllUserClans: {
|
|
|
17710
17914
|
is_mobile?: boolean | undefined;
|
|
17711
17915
|
dob?: Date | undefined;
|
|
17712
17916
|
mezon_id?: string | undefined;
|
|
17917
|
+
list_nick_names?: string[] | undefined;
|
|
17713
17918
|
}[] | undefined;
|
|
17714
17919
|
} & {
|
|
17715
17920
|
users?: ({
|
|
@@ -17735,6 +17940,7 @@ export declare const AllUserClans: {
|
|
|
17735
17940
|
is_mobile?: boolean | undefined;
|
|
17736
17941
|
dob?: Date | undefined;
|
|
17737
17942
|
mezon_id?: string | undefined;
|
|
17943
|
+
list_nick_names?: string[] | undefined;
|
|
17738
17944
|
}[] & ({
|
|
17739
17945
|
id?: string | undefined;
|
|
17740
17946
|
username?: string | undefined;
|
|
@@ -17758,6 +17964,7 @@ export declare const AllUserClans: {
|
|
|
17758
17964
|
is_mobile?: boolean | undefined;
|
|
17759
17965
|
dob?: Date | undefined;
|
|
17760
17966
|
mezon_id?: string | undefined;
|
|
17967
|
+
list_nick_names?: string[] | undefined;
|
|
17761
17968
|
} & {
|
|
17762
17969
|
id?: string | undefined;
|
|
17763
17970
|
username?: string | undefined;
|
|
@@ -17781,7 +17988,8 @@ export declare const AllUserClans: {
|
|
|
17781
17988
|
is_mobile?: boolean | undefined;
|
|
17782
17989
|
dob?: Date | undefined;
|
|
17783
17990
|
mezon_id?: string | undefined;
|
|
17784
|
-
|
|
17991
|
+
list_nick_names?: (string[] & string[] & { [K in Exclude<keyof I["users"][number]["list_nick_names"], keyof string[]>]: never; }) | undefined;
|
|
17992
|
+
} & { [K_1 in Exclude<keyof I["users"][number], keyof User>]: never; })[] & { [K_2 in Exclude<keyof I["users"], keyof {
|
|
17785
17993
|
id?: string | undefined;
|
|
17786
17994
|
username?: string | undefined;
|
|
17787
17995
|
display_name?: string | undefined;
|
|
@@ -17804,8 +18012,9 @@ export declare const AllUserClans: {
|
|
|
17804
18012
|
is_mobile?: boolean | undefined;
|
|
17805
18013
|
dob?: Date | undefined;
|
|
17806
18014
|
mezon_id?: string | undefined;
|
|
18015
|
+
list_nick_names?: string[] | undefined;
|
|
17807
18016
|
}[]>]: never; }) | undefined;
|
|
17808
|
-
} & { [
|
|
18017
|
+
} & { [K_3 in Exclude<keyof I, "users">]: never; }>(base?: I | undefined): AllUserClans;
|
|
17809
18018
|
fromPartial<I_1 extends {
|
|
17810
18019
|
users?: {
|
|
17811
18020
|
id?: string | undefined;
|
|
@@ -17830,6 +18039,7 @@ export declare const AllUserClans: {
|
|
|
17830
18039
|
is_mobile?: boolean | undefined;
|
|
17831
18040
|
dob?: Date | undefined;
|
|
17832
18041
|
mezon_id?: string | undefined;
|
|
18042
|
+
list_nick_names?: string[] | undefined;
|
|
17833
18043
|
}[] | undefined;
|
|
17834
18044
|
} & {
|
|
17835
18045
|
users?: ({
|
|
@@ -17855,6 +18065,7 @@ export declare const AllUserClans: {
|
|
|
17855
18065
|
is_mobile?: boolean | undefined;
|
|
17856
18066
|
dob?: Date | undefined;
|
|
17857
18067
|
mezon_id?: string | undefined;
|
|
18068
|
+
list_nick_names?: string[] | undefined;
|
|
17858
18069
|
}[] & ({
|
|
17859
18070
|
id?: string | undefined;
|
|
17860
18071
|
username?: string | undefined;
|
|
@@ -17878,6 +18089,7 @@ export declare const AllUserClans: {
|
|
|
17878
18089
|
is_mobile?: boolean | undefined;
|
|
17879
18090
|
dob?: Date | undefined;
|
|
17880
18091
|
mezon_id?: string | undefined;
|
|
18092
|
+
list_nick_names?: string[] | undefined;
|
|
17881
18093
|
} & {
|
|
17882
18094
|
id?: string | undefined;
|
|
17883
18095
|
username?: string | undefined;
|
|
@@ -17901,7 +18113,8 @@ export declare const AllUserClans: {
|
|
|
17901
18113
|
is_mobile?: boolean | undefined;
|
|
17902
18114
|
dob?: Date | undefined;
|
|
17903
18115
|
mezon_id?: string | undefined;
|
|
17904
|
-
|
|
18116
|
+
list_nick_names?: (string[] & string[] & { [K_4 in Exclude<keyof I_1["users"][number]["list_nick_names"], keyof string[]>]: never; }) | undefined;
|
|
18117
|
+
} & { [K_5 in Exclude<keyof I_1["users"][number], keyof User>]: never; })[] & { [K_6 in Exclude<keyof I_1["users"], keyof {
|
|
17905
18118
|
id?: string | undefined;
|
|
17906
18119
|
username?: string | undefined;
|
|
17907
18120
|
display_name?: string | undefined;
|
|
@@ -17924,8 +18137,9 @@ export declare const AllUserClans: {
|
|
|
17924
18137
|
is_mobile?: boolean | undefined;
|
|
17925
18138
|
dob?: Date | undefined;
|
|
17926
18139
|
mezon_id?: string | undefined;
|
|
18140
|
+
list_nick_names?: string[] | undefined;
|
|
17927
18141
|
}[]>]: never; }) | undefined;
|
|
17928
|
-
} & { [
|
|
18142
|
+
} & { [K_7 in Exclude<keyof I_1, "users">]: never; }>(object: I_1): AllUserClans;
|
|
17929
18143
|
};
|
|
17930
18144
|
export declare const RoleListEventRequest: {
|
|
17931
18145
|
encode(message: RoleListEventRequest, writer?: _m0.Writer): _m0.Writer;
|
|
@@ -17934,24 +18148,24 @@ export declare const RoleListEventRequest: {
|
|
|
17934
18148
|
toJSON(message: RoleListEventRequest): unknown;
|
|
17935
18149
|
create<I extends {
|
|
17936
18150
|
clan_id?: string | undefined;
|
|
17937
|
-
limit?:
|
|
17938
|
-
state?:
|
|
18151
|
+
limit?: number | undefined;
|
|
18152
|
+
state?: number | undefined;
|
|
17939
18153
|
cursor?: string | undefined;
|
|
17940
18154
|
} & {
|
|
17941
18155
|
clan_id?: string | undefined;
|
|
17942
|
-
limit?:
|
|
17943
|
-
state?:
|
|
18156
|
+
limit?: number | undefined;
|
|
18157
|
+
state?: number | undefined;
|
|
17944
18158
|
cursor?: string | undefined;
|
|
17945
18159
|
} & { [K in Exclude<keyof I, keyof RoleListEventRequest>]: never; }>(base?: I | undefined): RoleListEventRequest;
|
|
17946
18160
|
fromPartial<I_1 extends {
|
|
17947
18161
|
clan_id?: string | undefined;
|
|
17948
|
-
limit?:
|
|
17949
|
-
state?:
|
|
18162
|
+
limit?: number | undefined;
|
|
18163
|
+
state?: number | undefined;
|
|
17950
18164
|
cursor?: string | undefined;
|
|
17951
18165
|
} & {
|
|
17952
18166
|
clan_id?: string | undefined;
|
|
17953
|
-
limit?:
|
|
17954
|
-
state?:
|
|
18167
|
+
limit?: number | undefined;
|
|
18168
|
+
state?: number | undefined;
|
|
17955
18169
|
cursor?: string | undefined;
|
|
17956
18170
|
} & { [K_1 in Exclude<keyof I_1, keyof RoleListEventRequest>]: never; }>(object: I_1): RoleListEventRequest;
|
|
17957
18171
|
};
|
|
@@ -17961,8 +18175,8 @@ export declare const RoleListEventResponse: {
|
|
|
17961
18175
|
fromJSON(object: any): RoleListEventResponse;
|
|
17962
18176
|
toJSON(message: RoleListEventResponse): unknown;
|
|
17963
18177
|
create<I extends {
|
|
17964
|
-
limit?:
|
|
17965
|
-
state?:
|
|
18178
|
+
limit?: number | undefined;
|
|
18179
|
+
state?: number | undefined;
|
|
17966
18180
|
cursor?: string | undefined;
|
|
17967
18181
|
clanId?: string | undefined;
|
|
17968
18182
|
roles?: {
|
|
@@ -18012,8 +18226,8 @@ export declare const RoleListEventResponse: {
|
|
|
18012
18226
|
cacheable_cursor?: string | undefined;
|
|
18013
18227
|
} | undefined;
|
|
18014
18228
|
} & {
|
|
18015
|
-
limit?:
|
|
18016
|
-
state?:
|
|
18229
|
+
limit?: number | undefined;
|
|
18230
|
+
state?: number | undefined;
|
|
18017
18231
|
cursor?: string | undefined;
|
|
18018
18232
|
clanId?: string | undefined;
|
|
18019
18233
|
roles?: ({
|
|
@@ -18299,8 +18513,8 @@ export declare const RoleListEventResponse: {
|
|
|
18299
18513
|
} & { [K_9 in Exclude<keyof I["roles"], keyof RoleList>]: never; }) | undefined;
|
|
18300
18514
|
} & { [K_10 in Exclude<keyof I, keyof RoleListEventResponse>]: never; }>(base?: I | undefined): RoleListEventResponse;
|
|
18301
18515
|
fromPartial<I_1 extends {
|
|
18302
|
-
limit?:
|
|
18303
|
-
state?:
|
|
18516
|
+
limit?: number | undefined;
|
|
18517
|
+
state?: number | undefined;
|
|
18304
18518
|
cursor?: string | undefined;
|
|
18305
18519
|
clanId?: string | undefined;
|
|
18306
18520
|
roles?: {
|
|
@@ -18350,8 +18564,8 @@ export declare const RoleListEventResponse: {
|
|
|
18350
18564
|
cacheable_cursor?: string | undefined;
|
|
18351
18565
|
} | undefined;
|
|
18352
18566
|
} & {
|
|
18353
|
-
limit?:
|
|
18354
|
-
state?:
|
|
18567
|
+
limit?: number | undefined;
|
|
18568
|
+
state?: number | undefined;
|
|
18355
18569
|
cursor?: string | undefined;
|
|
18356
18570
|
clanId?: string | undefined;
|
|
18357
18571
|
roles?: ({
|
|
@@ -20507,21 +20721,41 @@ export declare const TokenSentEvent: {
|
|
|
20507
20721
|
transaction_id?: string | undefined;
|
|
20508
20722
|
} & { [K_1 in Exclude<keyof I_1, keyof TokenSentEvent>]: never; }>(object: I_1): TokenSentEvent;
|
|
20509
20723
|
};
|
|
20510
|
-
export declare const
|
|
20511
|
-
encode(message:
|
|
20512
|
-
decode(input: _m0.Reader | Uint8Array, length?: number):
|
|
20513
|
-
fromJSON(object: any):
|
|
20514
|
-
toJSON(message:
|
|
20724
|
+
export declare const UnlockItemRequest: {
|
|
20725
|
+
encode(message: UnlockItemRequest, writer?: _m0.Writer): _m0.Writer;
|
|
20726
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): UnlockItemRequest;
|
|
20727
|
+
fromJSON(object: any): UnlockItemRequest;
|
|
20728
|
+
toJSON(message: UnlockItemRequest): unknown;
|
|
20515
20729
|
create<I extends {
|
|
20516
|
-
|
|
20730
|
+
item_id?: string | undefined;
|
|
20731
|
+
item_type?: number | undefined;
|
|
20517
20732
|
} & {
|
|
20518
|
-
|
|
20519
|
-
|
|
20733
|
+
item_id?: string | undefined;
|
|
20734
|
+
item_type?: number | undefined;
|
|
20735
|
+
} & { [K in Exclude<keyof I, keyof UnlockItemRequest>]: never; }>(base?: I | undefined): UnlockItemRequest;
|
|
20520
20736
|
fromPartial<I_1 extends {
|
|
20521
|
-
|
|
20737
|
+
item_id?: string | undefined;
|
|
20738
|
+
item_type?: number | undefined;
|
|
20522
20739
|
} & {
|
|
20523
|
-
|
|
20524
|
-
|
|
20740
|
+
item_id?: string | undefined;
|
|
20741
|
+
item_type?: number | undefined;
|
|
20742
|
+
} & { [K_1 in Exclude<keyof I_1, keyof UnlockItemRequest>]: never; }>(object: I_1): UnlockItemRequest;
|
|
20743
|
+
};
|
|
20744
|
+
export declare const UnlockedItemResponse: {
|
|
20745
|
+
encode(message: UnlockedItemResponse, writer?: _m0.Writer): _m0.Writer;
|
|
20746
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): UnlockedItemResponse;
|
|
20747
|
+
fromJSON(object: any): UnlockedItemResponse;
|
|
20748
|
+
toJSON(message: UnlockedItemResponse): unknown;
|
|
20749
|
+
create<I extends {
|
|
20750
|
+
source?: string | undefined;
|
|
20751
|
+
} & {
|
|
20752
|
+
source?: string | undefined;
|
|
20753
|
+
} & { [K in Exclude<keyof I, "source">]: never; }>(base?: I | undefined): UnlockedItemResponse;
|
|
20754
|
+
fromPartial<I_1 extends {
|
|
20755
|
+
source?: string | undefined;
|
|
20756
|
+
} & {
|
|
20757
|
+
source?: string | undefined;
|
|
20758
|
+
} & { [K_1 in Exclude<keyof I_1, "source">]: never; }>(object: I_1): UnlockedItemResponse;
|
|
20525
20759
|
};
|
|
20526
20760
|
export declare const ListOnboardingRequest: {
|
|
20527
20761
|
encode(message: ListOnboardingRequest, writer?: _m0.Writer): _m0.Writer;
|
|
@@ -22108,23 +22342,23 @@ export declare const WalletLedgerListReq: {
|
|
|
22108
22342
|
toJSON(message: WalletLedgerListReq): unknown;
|
|
22109
22343
|
create<I extends {
|
|
22110
22344
|
limit?: number | undefined;
|
|
22111
|
-
|
|
22345
|
+
filter?: number | undefined;
|
|
22112
22346
|
transaction_id?: string | undefined;
|
|
22113
22347
|
page?: number | undefined;
|
|
22114
22348
|
} & {
|
|
22115
22349
|
limit?: number | undefined;
|
|
22116
|
-
|
|
22350
|
+
filter?: number | undefined;
|
|
22117
22351
|
transaction_id?: string | undefined;
|
|
22118
22352
|
page?: number | undefined;
|
|
22119
22353
|
} & { [K in Exclude<keyof I, keyof WalletLedgerListReq>]: never; }>(base?: I | undefined): WalletLedgerListReq;
|
|
22120
22354
|
fromPartial<I_1 extends {
|
|
22121
22355
|
limit?: number | undefined;
|
|
22122
|
-
|
|
22356
|
+
filter?: number | undefined;
|
|
22123
22357
|
transaction_id?: string | undefined;
|
|
22124
22358
|
page?: number | undefined;
|
|
22125
22359
|
} & {
|
|
22126
22360
|
limit?: number | undefined;
|
|
22127
|
-
|
|
22361
|
+
filter?: number | undefined;
|
|
22128
22362
|
transaction_id?: string | undefined;
|
|
22129
22363
|
page?: number | undefined;
|
|
22130
22364
|
} & { [K_1 in Exclude<keyof I_1, keyof WalletLedgerListReq>]: never; }>(object: I_1): WalletLedgerListReq;
|
|
@@ -23163,46 +23397,6 @@ export declare const GenerateMeetTokenRequest: {
|
|
|
23163
23397
|
room_name?: string | undefined;
|
|
23164
23398
|
} & { [K_1 in Exclude<keyof I_1, keyof GenerateMeetTokenRequest>]: never; }>(object: I_1): GenerateMeetTokenRequest;
|
|
23165
23399
|
};
|
|
23166
|
-
export declare const GenerateMeetTokenExternalRequest: {
|
|
23167
|
-
encode(message: GenerateMeetTokenExternalRequest, writer?: _m0.Writer): _m0.Writer;
|
|
23168
|
-
decode(input: _m0.Reader | Uint8Array, length?: number): GenerateMeetTokenExternalRequest;
|
|
23169
|
-
fromJSON(object: any): GenerateMeetTokenExternalRequest;
|
|
23170
|
-
toJSON(message: GenerateMeetTokenExternalRequest): unknown;
|
|
23171
|
-
create<I extends {
|
|
23172
|
-
body?: {
|
|
23173
|
-
[x: string]: any;
|
|
23174
|
-
} | undefined;
|
|
23175
|
-
token?: string | undefined;
|
|
23176
|
-
display_name?: string | undefined;
|
|
23177
|
-
is_guest?: boolean | undefined;
|
|
23178
|
-
} & {
|
|
23179
|
-
body?: ({
|
|
23180
|
-
[x: string]: any;
|
|
23181
|
-
} & {
|
|
23182
|
-
[x: string]: any;
|
|
23183
|
-
} & { [K in Exclude<keyof I["body"], string | number>]: never; }) | undefined;
|
|
23184
|
-
token?: string | undefined;
|
|
23185
|
-
display_name?: string | undefined;
|
|
23186
|
-
is_guest?: boolean | undefined;
|
|
23187
|
-
} & { [K_1 in Exclude<keyof I, keyof GenerateMeetTokenExternalRequest>]: never; }>(base?: I | undefined): GenerateMeetTokenExternalRequest;
|
|
23188
|
-
fromPartial<I_1 extends {
|
|
23189
|
-
body?: {
|
|
23190
|
-
[x: string]: any;
|
|
23191
|
-
} | undefined;
|
|
23192
|
-
token?: string | undefined;
|
|
23193
|
-
display_name?: string | undefined;
|
|
23194
|
-
is_guest?: boolean | undefined;
|
|
23195
|
-
} & {
|
|
23196
|
-
body?: ({
|
|
23197
|
-
[x: string]: any;
|
|
23198
|
-
} & {
|
|
23199
|
-
[x: string]: any;
|
|
23200
|
-
} & { [K_2 in Exclude<keyof I_1["body"], string | number>]: never; }) | undefined;
|
|
23201
|
-
token?: string | undefined;
|
|
23202
|
-
display_name?: string | undefined;
|
|
23203
|
-
is_guest?: boolean | undefined;
|
|
23204
|
-
} & { [K_3 in Exclude<keyof I_1, keyof GenerateMeetTokenExternalRequest>]: never; }>(object: I_1): GenerateMeetTokenExternalRequest;
|
|
23205
|
-
};
|
|
23206
23400
|
export declare const GenerateMeetTokenResponse: {
|
|
23207
23401
|
encode(message: GenerateMeetTokenResponse, writer?: _m0.Writer): _m0.Writer;
|
|
23208
23402
|
decode(input: _m0.Reader | Uint8Array, length?: number): GenerateMeetTokenResponse;
|
|
@@ -23219,30 +23413,6 @@ export declare const GenerateMeetTokenResponse: {
|
|
|
23219
23413
|
token?: string | undefined;
|
|
23220
23414
|
} & { [K_1 in Exclude<keyof I_1, "token">]: never; }>(object: I_1): GenerateMeetTokenResponse;
|
|
23221
23415
|
};
|
|
23222
|
-
export declare const GenerateMeetTokenExternalResponse: {
|
|
23223
|
-
encode(message: GenerateMeetTokenExternalResponse, writer?: _m0.Writer): _m0.Writer;
|
|
23224
|
-
decode(input: _m0.Reader | Uint8Array, length?: number): GenerateMeetTokenExternalResponse;
|
|
23225
|
-
fromJSON(object: any): GenerateMeetTokenExternalResponse;
|
|
23226
|
-
toJSON(message: GenerateMeetTokenExternalResponse): unknown;
|
|
23227
|
-
create<I extends {
|
|
23228
|
-
token?: string | undefined;
|
|
23229
|
-
guest_user_id?: string | undefined;
|
|
23230
|
-
guest_access_token?: string | undefined;
|
|
23231
|
-
} & {
|
|
23232
|
-
token?: string | undefined;
|
|
23233
|
-
guest_user_id?: string | undefined;
|
|
23234
|
-
guest_access_token?: string | undefined;
|
|
23235
|
-
} & { [K in Exclude<keyof I, keyof GenerateMeetTokenExternalResponse>]: never; }>(base?: I | undefined): GenerateMeetTokenExternalResponse;
|
|
23236
|
-
fromPartial<I_1 extends {
|
|
23237
|
-
token?: string | undefined;
|
|
23238
|
-
guest_user_id?: string | undefined;
|
|
23239
|
-
guest_access_token?: string | undefined;
|
|
23240
|
-
} & {
|
|
23241
|
-
token?: string | undefined;
|
|
23242
|
-
guest_user_id?: string | undefined;
|
|
23243
|
-
guest_access_token?: string | undefined;
|
|
23244
|
-
} & { [K_1 in Exclude<keyof I_1, keyof GenerateMeetTokenExternalResponse>]: never; }>(object: I_1): GenerateMeetTokenExternalResponse;
|
|
23245
|
-
};
|
|
23246
23416
|
export declare const GenerateMezonMeetResponse: {
|
|
23247
23417
|
encode(message: GenerateMezonMeetResponse, writer?: _m0.Writer): _m0.Writer;
|
|
23248
23418
|
decode(input: _m0.Reader | Uint8Array, length?: number): GenerateMezonMeetResponse;
|
|
@@ -23501,7 +23671,7 @@ export declare const MezonOauthClientList: {
|
|
|
23501
23671
|
fromJSON(object: any): MezonOauthClientList;
|
|
23502
23672
|
toJSON(message: MezonOauthClientList): unknown;
|
|
23503
23673
|
create<I extends {
|
|
23504
|
-
|
|
23674
|
+
list_mezon_oauth_client?: {
|
|
23505
23675
|
access_token_strategy?: string | undefined;
|
|
23506
23676
|
allowed_cors_origins?: string[] | undefined;
|
|
23507
23677
|
audience?: string[] | undefined;
|
|
@@ -23551,7 +23721,7 @@ export declare const MezonOauthClientList: {
|
|
|
23551
23721
|
userinfo_signed_response_alg?: string | undefined;
|
|
23552
23722
|
}[] | undefined;
|
|
23553
23723
|
} & {
|
|
23554
|
-
|
|
23724
|
+
list_mezon_oauth_client?: ({
|
|
23555
23725
|
access_token_strategy?: string | undefined;
|
|
23556
23726
|
allowed_cors_origins?: string[] | undefined;
|
|
23557
23727
|
audience?: string[] | undefined;
|
|
@@ -23649,8 +23819,8 @@ export declare const MezonOauthClientList: {
|
|
|
23649
23819
|
userinfo_signed_response_alg?: string | undefined;
|
|
23650
23820
|
} & {
|
|
23651
23821
|
access_token_strategy?: string | undefined;
|
|
23652
|
-
allowed_cors_origins?: (string[] & string[] & { [K in Exclude<keyof I["
|
|
23653
|
-
audience?: (string[] & string[] & { [K_1 in Exclude<keyof I["
|
|
23822
|
+
allowed_cors_origins?: (string[] & string[] & { [K in Exclude<keyof I["list_mezon_oauth_client"][number]["allowed_cors_origins"], keyof string[]>]: never; }) | undefined;
|
|
23823
|
+
audience?: (string[] & string[] & { [K_1 in Exclude<keyof I["list_mezon_oauth_client"][number]["audience"], keyof string[]>]: never; }) | undefined;
|
|
23654
23824
|
authorization_code_grant_access_token_lifespan?: string | undefined;
|
|
23655
23825
|
authorization_code_grant_id_token_lifespan?: string | undefined;
|
|
23656
23826
|
authorization_code_grant_refresh_token_lifespan?: string | undefined;
|
|
@@ -23662,29 +23832,29 @@ export declare const MezonOauthClientList: {
|
|
|
23662
23832
|
client_secret?: string | undefined;
|
|
23663
23833
|
client_secret_expires_at?: number | undefined;
|
|
23664
23834
|
client_uri?: string | undefined;
|
|
23665
|
-
contacts?: (string[] & string[] & { [K_2 in Exclude<keyof I["
|
|
23835
|
+
contacts?: (string[] & string[] & { [K_2 in Exclude<keyof I["list_mezon_oauth_client"][number]["contacts"], keyof string[]>]: never; }) | undefined;
|
|
23666
23836
|
created_at?: Date | undefined;
|
|
23667
23837
|
frontchannel_logout_session_required?: boolean | undefined;
|
|
23668
23838
|
frontchannel_logout_uri?: string | undefined;
|
|
23669
|
-
grant_types?: (string[] & string[] & { [K_3 in Exclude<keyof I["
|
|
23839
|
+
grant_types?: (string[] & string[] & { [K_3 in Exclude<keyof I["list_mezon_oauth_client"][number]["grant_types"], keyof string[]>]: never; }) | undefined;
|
|
23670
23840
|
implicit_grant_access_token_lifespan?: string | undefined;
|
|
23671
23841
|
implicit_grant_id_token_lifespan?: string | undefined;
|
|
23672
|
-
jwks?: (string[] & string[] & { [K_4 in Exclude<keyof I["
|
|
23842
|
+
jwks?: (string[] & string[] & { [K_4 in Exclude<keyof I["list_mezon_oauth_client"][number]["jwks"], keyof string[]>]: never; }) | undefined;
|
|
23673
23843
|
jwks_uri?: string | undefined;
|
|
23674
23844
|
jwt_bearer_grant_access_token_lifespan?: string | undefined;
|
|
23675
23845
|
logo_uri?: string | undefined;
|
|
23676
23846
|
owner?: string | undefined;
|
|
23677
23847
|
policy_uri?: string | undefined;
|
|
23678
|
-
post_logout_redirect_uris?: (string[] & string[] & { [K_5 in Exclude<keyof I["
|
|
23679
|
-
redirect_uris?: (string[] & string[] & { [K_6 in Exclude<keyof I["
|
|
23848
|
+
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;
|
|
23849
|
+
redirect_uris?: (string[] & string[] & { [K_6 in Exclude<keyof I["list_mezon_oauth_client"][number]["redirect_uris"], keyof string[]>]: never; }) | undefined;
|
|
23680
23850
|
refresh_token_grant_access_token_lifespan?: string | undefined;
|
|
23681
23851
|
refresh_token_grant_id_token_lifespan?: string | undefined;
|
|
23682
23852
|
refresh_token_grant_refresh_token_lifespan?: string | undefined;
|
|
23683
23853
|
registration_access_token?: string | undefined;
|
|
23684
23854
|
registration_client_uri?: string | undefined;
|
|
23685
23855
|
request_object_signing_alg?: string | undefined;
|
|
23686
|
-
request_uris?: (string[] & string[] & { [K_7 in Exclude<keyof I["
|
|
23687
|
-
response_types?: (string[] & string[] & { [K_8 in Exclude<keyof I["
|
|
23856
|
+
request_uris?: (string[] & string[] & { [K_7 in Exclude<keyof I["list_mezon_oauth_client"][number]["request_uris"], keyof string[]>]: never; }) | undefined;
|
|
23857
|
+
response_types?: (string[] & string[] & { [K_8 in Exclude<keyof I["list_mezon_oauth_client"][number]["response_types"], keyof string[]>]: never; }) | undefined;
|
|
23688
23858
|
scope?: string | undefined;
|
|
23689
23859
|
sector_identifier_uri?: string | undefined;
|
|
23690
23860
|
skip_consent?: boolean | undefined;
|
|
@@ -23695,7 +23865,7 @@ export declare const MezonOauthClientList: {
|
|
|
23695
23865
|
tos_uri?: string | undefined;
|
|
23696
23866
|
updated_at?: Date | undefined;
|
|
23697
23867
|
userinfo_signed_response_alg?: string | undefined;
|
|
23698
|
-
} & { [K_9 in Exclude<keyof I["
|
|
23868
|
+
} & { [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 {
|
|
23699
23869
|
access_token_strategy?: string | undefined;
|
|
23700
23870
|
allowed_cors_origins?: string[] | undefined;
|
|
23701
23871
|
audience?: string[] | undefined;
|
|
@@ -23744,9 +23914,9 @@ export declare const MezonOauthClientList: {
|
|
|
23744
23914
|
updated_at?: Date | undefined;
|
|
23745
23915
|
userinfo_signed_response_alg?: string | undefined;
|
|
23746
23916
|
}[]>]: never; }) | undefined;
|
|
23747
|
-
} & { [K_11 in Exclude<keyof I, "
|
|
23917
|
+
} & { [K_11 in Exclude<keyof I, "list_mezon_oauth_client">]: never; }>(base?: I | undefined): MezonOauthClientList;
|
|
23748
23918
|
fromPartial<I_1 extends {
|
|
23749
|
-
|
|
23919
|
+
list_mezon_oauth_client?: {
|
|
23750
23920
|
access_token_strategy?: string | undefined;
|
|
23751
23921
|
allowed_cors_origins?: string[] | undefined;
|
|
23752
23922
|
audience?: string[] | undefined;
|
|
@@ -23796,7 +23966,7 @@ export declare const MezonOauthClientList: {
|
|
|
23796
23966
|
userinfo_signed_response_alg?: string | undefined;
|
|
23797
23967
|
}[] | undefined;
|
|
23798
23968
|
} & {
|
|
23799
|
-
|
|
23969
|
+
list_mezon_oauth_client?: ({
|
|
23800
23970
|
access_token_strategy?: string | undefined;
|
|
23801
23971
|
allowed_cors_origins?: string[] | undefined;
|
|
23802
23972
|
audience?: string[] | undefined;
|
|
@@ -23894,8 +24064,8 @@ export declare const MezonOauthClientList: {
|
|
|
23894
24064
|
userinfo_signed_response_alg?: string | undefined;
|
|
23895
24065
|
} & {
|
|
23896
24066
|
access_token_strategy?: string | undefined;
|
|
23897
|
-
allowed_cors_origins?: (string[] & string[] & { [K_12 in Exclude<keyof I_1["
|
|
23898
|
-
audience?: (string[] & string[] & { [K_13 in Exclude<keyof I_1["
|
|
24067
|
+
allowed_cors_origins?: (string[] & string[] & { [K_12 in Exclude<keyof I_1["list_mezon_oauth_client"][number]["allowed_cors_origins"], keyof string[]>]: never; }) | undefined;
|
|
24068
|
+
audience?: (string[] & string[] & { [K_13 in Exclude<keyof I_1["list_mezon_oauth_client"][number]["audience"], keyof string[]>]: never; }) | undefined;
|
|
23899
24069
|
authorization_code_grant_access_token_lifespan?: string | undefined;
|
|
23900
24070
|
authorization_code_grant_id_token_lifespan?: string | undefined;
|
|
23901
24071
|
authorization_code_grant_refresh_token_lifespan?: string | undefined;
|
|
@@ -23907,29 +24077,29 @@ export declare const MezonOauthClientList: {
|
|
|
23907
24077
|
client_secret?: string | undefined;
|
|
23908
24078
|
client_secret_expires_at?: number | undefined;
|
|
23909
24079
|
client_uri?: string | undefined;
|
|
23910
|
-
contacts?: (string[] & string[] & { [K_14 in Exclude<keyof I_1["
|
|
24080
|
+
contacts?: (string[] & string[] & { [K_14 in Exclude<keyof I_1["list_mezon_oauth_client"][number]["contacts"], keyof string[]>]: never; }) | undefined;
|
|
23911
24081
|
created_at?: Date | undefined;
|
|
23912
24082
|
frontchannel_logout_session_required?: boolean | undefined;
|
|
23913
24083
|
frontchannel_logout_uri?: string | undefined;
|
|
23914
|
-
grant_types?: (string[] & string[] & { [K_15 in Exclude<keyof I_1["
|
|
24084
|
+
grant_types?: (string[] & string[] & { [K_15 in Exclude<keyof I_1["list_mezon_oauth_client"][number]["grant_types"], keyof string[]>]: never; }) | undefined;
|
|
23915
24085
|
implicit_grant_access_token_lifespan?: string | undefined;
|
|
23916
24086
|
implicit_grant_id_token_lifespan?: string | undefined;
|
|
23917
|
-
jwks?: (string[] & string[] & { [K_16 in Exclude<keyof I_1["
|
|
24087
|
+
jwks?: (string[] & string[] & { [K_16 in Exclude<keyof I_1["list_mezon_oauth_client"][number]["jwks"], keyof string[]>]: never; }) | undefined;
|
|
23918
24088
|
jwks_uri?: string | undefined;
|
|
23919
24089
|
jwt_bearer_grant_access_token_lifespan?: string | undefined;
|
|
23920
24090
|
logo_uri?: string | undefined;
|
|
23921
24091
|
owner?: string | undefined;
|
|
23922
24092
|
policy_uri?: string | undefined;
|
|
23923
|
-
post_logout_redirect_uris?: (string[] & string[] & { [K_17 in Exclude<keyof I_1["
|
|
23924
|
-
redirect_uris?: (string[] & string[] & { [K_18 in Exclude<keyof I_1["
|
|
24093
|
+
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;
|
|
24094
|
+
redirect_uris?: (string[] & string[] & { [K_18 in Exclude<keyof I_1["list_mezon_oauth_client"][number]["redirect_uris"], keyof string[]>]: never; }) | undefined;
|
|
23925
24095
|
refresh_token_grant_access_token_lifespan?: string | undefined;
|
|
23926
24096
|
refresh_token_grant_id_token_lifespan?: string | undefined;
|
|
23927
24097
|
refresh_token_grant_refresh_token_lifespan?: string | undefined;
|
|
23928
24098
|
registration_access_token?: string | undefined;
|
|
23929
24099
|
registration_client_uri?: string | undefined;
|
|
23930
24100
|
request_object_signing_alg?: string | undefined;
|
|
23931
|
-
request_uris?: (string[] & string[] & { [K_19 in Exclude<keyof I_1["
|
|
23932
|
-
response_types?: (string[] & string[] & { [K_20 in Exclude<keyof I_1["
|
|
24101
|
+
request_uris?: (string[] & string[] & { [K_19 in Exclude<keyof I_1["list_mezon_oauth_client"][number]["request_uris"], keyof string[]>]: never; }) | undefined;
|
|
24102
|
+
response_types?: (string[] & string[] & { [K_20 in Exclude<keyof I_1["list_mezon_oauth_client"][number]["response_types"], keyof string[]>]: never; }) | undefined;
|
|
23933
24103
|
scope?: string | undefined;
|
|
23934
24104
|
sector_identifier_uri?: string | undefined;
|
|
23935
24105
|
skip_consent?: boolean | undefined;
|
|
@@ -23940,7 +24110,7 @@ export declare const MezonOauthClientList: {
|
|
|
23940
24110
|
tos_uri?: string | undefined;
|
|
23941
24111
|
updated_at?: Date | undefined;
|
|
23942
24112
|
userinfo_signed_response_alg?: string | undefined;
|
|
23943
|
-
} & { [K_21 in Exclude<keyof I_1["
|
|
24113
|
+
} & { [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 {
|
|
23944
24114
|
access_token_strategy?: string | undefined;
|
|
23945
24115
|
allowed_cors_origins?: string[] | undefined;
|
|
23946
24116
|
audience?: string[] | undefined;
|
|
@@ -23989,7 +24159,7 @@ export declare const MezonOauthClientList: {
|
|
|
23989
24159
|
updated_at?: Date | undefined;
|
|
23990
24160
|
userinfo_signed_response_alg?: string | undefined;
|
|
23991
24161
|
}[]>]: never; }) | undefined;
|
|
23992
|
-
} & { [K_23 in Exclude<keyof I_1, "
|
|
24162
|
+
} & { [K_23 in Exclude<keyof I_1, "list_mezon_oauth_client">]: never; }>(object: I_1): MezonOauthClientList;
|
|
23993
24163
|
};
|
|
23994
24164
|
export declare const GetMezonOauthClientRequest: {
|
|
23995
24165
|
encode(message: GetMezonOauthClientRequest, writer?: _m0.Writer): _m0.Writer;
|
|
@@ -24223,6 +24393,348 @@ export declare const AccountMezon_VarsEntry: {
|
|
|
24223
24393
|
value?: string | undefined;
|
|
24224
24394
|
} & { [K_1 in Exclude<keyof I_1, keyof AccountMezon_VarsEntry>]: never; }>(object: I_1): AccountMezon_VarsEntry;
|
|
24225
24395
|
};
|
|
24396
|
+
export declare const QuickMenuAccess: {
|
|
24397
|
+
encode(message: QuickMenuAccess, writer?: _m0.Writer): _m0.Writer;
|
|
24398
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): QuickMenuAccess;
|
|
24399
|
+
fromJSON(object: any): QuickMenuAccess;
|
|
24400
|
+
toJSON(message: QuickMenuAccess): unknown;
|
|
24401
|
+
create<I extends {
|
|
24402
|
+
id?: string | undefined;
|
|
24403
|
+
bot_id?: string | undefined;
|
|
24404
|
+
clan_id?: string | undefined;
|
|
24405
|
+
channel_id?: string | undefined;
|
|
24406
|
+
menu_name?: string | undefined;
|
|
24407
|
+
background?: string | undefined;
|
|
24408
|
+
action_msg?: string | undefined;
|
|
24409
|
+
menu_type?: number | undefined;
|
|
24410
|
+
} & {
|
|
24411
|
+
id?: string | undefined;
|
|
24412
|
+
bot_id?: string | undefined;
|
|
24413
|
+
clan_id?: string | undefined;
|
|
24414
|
+
channel_id?: string | undefined;
|
|
24415
|
+
menu_name?: string | undefined;
|
|
24416
|
+
background?: string | undefined;
|
|
24417
|
+
action_msg?: string | undefined;
|
|
24418
|
+
menu_type?: number | undefined;
|
|
24419
|
+
} & { [K in Exclude<keyof I, keyof QuickMenuAccess>]: never; }>(base?: I | undefined): QuickMenuAccess;
|
|
24420
|
+
fromPartial<I_1 extends {
|
|
24421
|
+
id?: string | undefined;
|
|
24422
|
+
bot_id?: string | undefined;
|
|
24423
|
+
clan_id?: string | undefined;
|
|
24424
|
+
channel_id?: string | undefined;
|
|
24425
|
+
menu_name?: string | undefined;
|
|
24426
|
+
background?: string | undefined;
|
|
24427
|
+
action_msg?: string | undefined;
|
|
24428
|
+
menu_type?: number | undefined;
|
|
24429
|
+
} & {
|
|
24430
|
+
id?: string | undefined;
|
|
24431
|
+
bot_id?: string | undefined;
|
|
24432
|
+
clan_id?: string | undefined;
|
|
24433
|
+
channel_id?: string | undefined;
|
|
24434
|
+
menu_name?: string | undefined;
|
|
24435
|
+
background?: string | undefined;
|
|
24436
|
+
action_msg?: string | undefined;
|
|
24437
|
+
menu_type?: number | undefined;
|
|
24438
|
+
} & { [K_1 in Exclude<keyof I_1, keyof QuickMenuAccess>]: never; }>(object: I_1): QuickMenuAccess;
|
|
24439
|
+
};
|
|
24440
|
+
export declare const ListQuickMenuAccessRequest: {
|
|
24441
|
+
encode(message: ListQuickMenuAccessRequest, writer?: _m0.Writer): _m0.Writer;
|
|
24442
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): ListQuickMenuAccessRequest;
|
|
24443
|
+
fromJSON(object: any): ListQuickMenuAccessRequest;
|
|
24444
|
+
toJSON(message: ListQuickMenuAccessRequest): unknown;
|
|
24445
|
+
create<I extends {
|
|
24446
|
+
bot_id?: string | undefined;
|
|
24447
|
+
channel_id?: string | undefined;
|
|
24448
|
+
menu_type?: number | undefined;
|
|
24449
|
+
} & {
|
|
24450
|
+
bot_id?: string | undefined;
|
|
24451
|
+
channel_id?: string | undefined;
|
|
24452
|
+
menu_type?: number | undefined;
|
|
24453
|
+
} & { [K in Exclude<keyof I, keyof ListQuickMenuAccessRequest>]: never; }>(base?: I | undefined): ListQuickMenuAccessRequest;
|
|
24454
|
+
fromPartial<I_1 extends {
|
|
24455
|
+
bot_id?: string | undefined;
|
|
24456
|
+
channel_id?: string | undefined;
|
|
24457
|
+
menu_type?: number | undefined;
|
|
24458
|
+
} & {
|
|
24459
|
+
bot_id?: string | undefined;
|
|
24460
|
+
channel_id?: string | undefined;
|
|
24461
|
+
menu_type?: number | undefined;
|
|
24462
|
+
} & { [K_1 in Exclude<keyof I_1, keyof ListQuickMenuAccessRequest>]: never; }>(object: I_1): ListQuickMenuAccessRequest;
|
|
24463
|
+
};
|
|
24464
|
+
export declare const QuickMenuAccessList: {
|
|
24465
|
+
encode(message: QuickMenuAccessList, writer?: _m0.Writer): _m0.Writer;
|
|
24466
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): QuickMenuAccessList;
|
|
24467
|
+
fromJSON(object: any): QuickMenuAccessList;
|
|
24468
|
+
toJSON(message: QuickMenuAccessList): unknown;
|
|
24469
|
+
create<I extends {
|
|
24470
|
+
list_menus?: {
|
|
24471
|
+
id?: string | undefined;
|
|
24472
|
+
bot_id?: string | undefined;
|
|
24473
|
+
clan_id?: string | undefined;
|
|
24474
|
+
channel_id?: string | undefined;
|
|
24475
|
+
menu_name?: string | undefined;
|
|
24476
|
+
background?: string | undefined;
|
|
24477
|
+
action_msg?: string | undefined;
|
|
24478
|
+
menu_type?: number | undefined;
|
|
24479
|
+
}[] | undefined;
|
|
24480
|
+
} & {
|
|
24481
|
+
list_menus?: ({
|
|
24482
|
+
id?: string | undefined;
|
|
24483
|
+
bot_id?: string | undefined;
|
|
24484
|
+
clan_id?: string | undefined;
|
|
24485
|
+
channel_id?: string | undefined;
|
|
24486
|
+
menu_name?: string | undefined;
|
|
24487
|
+
background?: string | undefined;
|
|
24488
|
+
action_msg?: string | undefined;
|
|
24489
|
+
menu_type?: number | undefined;
|
|
24490
|
+
}[] & ({
|
|
24491
|
+
id?: string | undefined;
|
|
24492
|
+
bot_id?: string | undefined;
|
|
24493
|
+
clan_id?: string | undefined;
|
|
24494
|
+
channel_id?: string | undefined;
|
|
24495
|
+
menu_name?: string | undefined;
|
|
24496
|
+
background?: string | undefined;
|
|
24497
|
+
action_msg?: string | undefined;
|
|
24498
|
+
menu_type?: number | undefined;
|
|
24499
|
+
} & {
|
|
24500
|
+
id?: string | undefined;
|
|
24501
|
+
bot_id?: string | undefined;
|
|
24502
|
+
clan_id?: string | undefined;
|
|
24503
|
+
channel_id?: string | undefined;
|
|
24504
|
+
menu_name?: string | undefined;
|
|
24505
|
+
background?: string | undefined;
|
|
24506
|
+
action_msg?: string | undefined;
|
|
24507
|
+
menu_type?: number | undefined;
|
|
24508
|
+
} & { [K in Exclude<keyof I["list_menus"][number], keyof QuickMenuAccess>]: never; })[] & { [K_1 in Exclude<keyof I["list_menus"], keyof {
|
|
24509
|
+
id?: string | undefined;
|
|
24510
|
+
bot_id?: string | undefined;
|
|
24511
|
+
clan_id?: string | undefined;
|
|
24512
|
+
channel_id?: string | undefined;
|
|
24513
|
+
menu_name?: string | undefined;
|
|
24514
|
+
background?: string | undefined;
|
|
24515
|
+
action_msg?: string | undefined;
|
|
24516
|
+
menu_type?: number | undefined;
|
|
24517
|
+
}[]>]: never; }) | undefined;
|
|
24518
|
+
} & { [K_2 in Exclude<keyof I, "list_menus">]: never; }>(base?: I | undefined): QuickMenuAccessList;
|
|
24519
|
+
fromPartial<I_1 extends {
|
|
24520
|
+
list_menus?: {
|
|
24521
|
+
id?: string | undefined;
|
|
24522
|
+
bot_id?: string | undefined;
|
|
24523
|
+
clan_id?: string | undefined;
|
|
24524
|
+
channel_id?: string | undefined;
|
|
24525
|
+
menu_name?: string | undefined;
|
|
24526
|
+
background?: string | undefined;
|
|
24527
|
+
action_msg?: string | undefined;
|
|
24528
|
+
menu_type?: number | undefined;
|
|
24529
|
+
}[] | undefined;
|
|
24530
|
+
} & {
|
|
24531
|
+
list_menus?: ({
|
|
24532
|
+
id?: string | undefined;
|
|
24533
|
+
bot_id?: string | undefined;
|
|
24534
|
+
clan_id?: string | undefined;
|
|
24535
|
+
channel_id?: string | undefined;
|
|
24536
|
+
menu_name?: string | undefined;
|
|
24537
|
+
background?: string | undefined;
|
|
24538
|
+
action_msg?: string | undefined;
|
|
24539
|
+
menu_type?: number | undefined;
|
|
24540
|
+
}[] & ({
|
|
24541
|
+
id?: string | undefined;
|
|
24542
|
+
bot_id?: string | undefined;
|
|
24543
|
+
clan_id?: string | undefined;
|
|
24544
|
+
channel_id?: string | undefined;
|
|
24545
|
+
menu_name?: string | undefined;
|
|
24546
|
+
background?: string | undefined;
|
|
24547
|
+
action_msg?: string | undefined;
|
|
24548
|
+
menu_type?: number | undefined;
|
|
24549
|
+
} & {
|
|
24550
|
+
id?: string | undefined;
|
|
24551
|
+
bot_id?: string | undefined;
|
|
24552
|
+
clan_id?: string | undefined;
|
|
24553
|
+
channel_id?: string | undefined;
|
|
24554
|
+
menu_name?: string | undefined;
|
|
24555
|
+
background?: string | undefined;
|
|
24556
|
+
action_msg?: string | undefined;
|
|
24557
|
+
menu_type?: number | undefined;
|
|
24558
|
+
} & { [K_3 in Exclude<keyof I_1["list_menus"][number], keyof QuickMenuAccess>]: never; })[] & { [K_4 in Exclude<keyof I_1["list_menus"], keyof {
|
|
24559
|
+
id?: string | undefined;
|
|
24560
|
+
bot_id?: string | undefined;
|
|
24561
|
+
clan_id?: string | undefined;
|
|
24562
|
+
channel_id?: string | undefined;
|
|
24563
|
+
menu_name?: string | undefined;
|
|
24564
|
+
background?: string | undefined;
|
|
24565
|
+
action_msg?: string | undefined;
|
|
24566
|
+
menu_type?: number | undefined;
|
|
24567
|
+
}[]>]: never; }) | undefined;
|
|
24568
|
+
} & { [K_5 in Exclude<keyof I_1, "list_menus">]: never; }>(object: I_1): QuickMenuAccessList;
|
|
24569
|
+
};
|
|
24570
|
+
export declare const ListForSaleItemsRequest: {
|
|
24571
|
+
encode(message: ListForSaleItemsRequest, writer?: _m0.Writer): _m0.Writer;
|
|
24572
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): ListForSaleItemsRequest;
|
|
24573
|
+
fromJSON(object: any): ListForSaleItemsRequest;
|
|
24574
|
+
toJSON(message: ListForSaleItemsRequest): unknown;
|
|
24575
|
+
create<I extends {
|
|
24576
|
+
page?: number | undefined;
|
|
24577
|
+
} & {
|
|
24578
|
+
page?: number | undefined;
|
|
24579
|
+
} & { [K in Exclude<keyof I, "page">]: never; }>(base?: I | undefined): ListForSaleItemsRequest;
|
|
24580
|
+
fromPartial<I_1 extends {
|
|
24581
|
+
page?: number | undefined;
|
|
24582
|
+
} & {
|
|
24583
|
+
page?: number | undefined;
|
|
24584
|
+
} & { [K_1 in Exclude<keyof I_1, "page">]: never; }>(object: I_1): ListForSaleItemsRequest;
|
|
24585
|
+
};
|
|
24586
|
+
export declare const ForSaleItem: {
|
|
24587
|
+
encode(message: ForSaleItem, writer?: _m0.Writer): _m0.Writer;
|
|
24588
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): ForSaleItem;
|
|
24589
|
+
fromJSON(object: any): ForSaleItem;
|
|
24590
|
+
toJSON(message: ForSaleItem): unknown;
|
|
24591
|
+
create<I extends {
|
|
24592
|
+
type?: number | undefined;
|
|
24593
|
+
preview_url?: string | undefined;
|
|
24594
|
+
} & {
|
|
24595
|
+
type?: number | undefined;
|
|
24596
|
+
preview_url?: string | undefined;
|
|
24597
|
+
} & { [K in Exclude<keyof I, keyof ForSaleItem>]: never; }>(base?: I | undefined): ForSaleItem;
|
|
24598
|
+
fromPartial<I_1 extends {
|
|
24599
|
+
type?: number | undefined;
|
|
24600
|
+
preview_url?: string | undefined;
|
|
24601
|
+
} & {
|
|
24602
|
+
type?: number | undefined;
|
|
24603
|
+
preview_url?: string | undefined;
|
|
24604
|
+
} & { [K_1 in Exclude<keyof I_1, keyof ForSaleItem>]: never; }>(object: I_1): ForSaleItem;
|
|
24605
|
+
};
|
|
24606
|
+
export declare const ForSaleItemList: {
|
|
24607
|
+
encode(message: ForSaleItemList, writer?: _m0.Writer): _m0.Writer;
|
|
24608
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): ForSaleItemList;
|
|
24609
|
+
fromJSON(object: any): ForSaleItemList;
|
|
24610
|
+
toJSON(message: ForSaleItemList): unknown;
|
|
24611
|
+
create<I extends {
|
|
24612
|
+
for_sale_items?: {
|
|
24613
|
+
type?: number | undefined;
|
|
24614
|
+
preview_url?: string | undefined;
|
|
24615
|
+
}[] | undefined;
|
|
24616
|
+
} & {
|
|
24617
|
+
for_sale_items?: ({
|
|
24618
|
+
type?: number | undefined;
|
|
24619
|
+
preview_url?: string | undefined;
|
|
24620
|
+
}[] & ({
|
|
24621
|
+
type?: number | undefined;
|
|
24622
|
+
preview_url?: string | undefined;
|
|
24623
|
+
} & {
|
|
24624
|
+
type?: number | undefined;
|
|
24625
|
+
preview_url?: string | undefined;
|
|
24626
|
+
} & { [K in Exclude<keyof I["for_sale_items"][number], keyof ForSaleItem>]: never; })[] & { [K_1 in Exclude<keyof I["for_sale_items"], keyof {
|
|
24627
|
+
type?: number | undefined;
|
|
24628
|
+
preview_url?: string | undefined;
|
|
24629
|
+
}[]>]: never; }) | undefined;
|
|
24630
|
+
} & { [K_2 in Exclude<keyof I, "for_sale_items">]: never; }>(base?: I | undefined): ForSaleItemList;
|
|
24631
|
+
fromPartial<I_1 extends {
|
|
24632
|
+
for_sale_items?: {
|
|
24633
|
+
type?: number | undefined;
|
|
24634
|
+
preview_url?: string | undefined;
|
|
24635
|
+
}[] | undefined;
|
|
24636
|
+
} & {
|
|
24637
|
+
for_sale_items?: ({
|
|
24638
|
+
type?: number | undefined;
|
|
24639
|
+
preview_url?: string | undefined;
|
|
24640
|
+
}[] & ({
|
|
24641
|
+
type?: number | undefined;
|
|
24642
|
+
preview_url?: string | undefined;
|
|
24643
|
+
} & {
|
|
24644
|
+
type?: number | undefined;
|
|
24645
|
+
preview_url?: string | undefined;
|
|
24646
|
+
} & { [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 {
|
|
24647
|
+
type?: number | undefined;
|
|
24648
|
+
preview_url?: string | undefined;
|
|
24649
|
+
}[]>]: never; }) | undefined;
|
|
24650
|
+
} & { [K_5 in Exclude<keyof I_1, "for_sale_items">]: never; }>(object: I_1): ForSaleItemList;
|
|
24651
|
+
};
|
|
24652
|
+
export declare const ListChannelMemberRequest: {
|
|
24653
|
+
encode(message: ListChannelMemberRequest, writer?: _m0.Writer): _m0.Writer;
|
|
24654
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): ListChannelMemberRequest;
|
|
24655
|
+
fromJSON(object: any): ListChannelMemberRequest;
|
|
24656
|
+
toJSON(message: ListChannelMemberRequest): unknown;
|
|
24657
|
+
create<I extends {
|
|
24658
|
+
channel_id?: string | undefined;
|
|
24659
|
+
clan_id?: string | undefined;
|
|
24660
|
+
} & {
|
|
24661
|
+
channel_id?: string | undefined;
|
|
24662
|
+
clan_id?: string | undefined;
|
|
24663
|
+
} & { [K in Exclude<keyof I, keyof ListChannelMemberRequest>]: never; }>(base?: I | undefined): ListChannelMemberRequest;
|
|
24664
|
+
fromPartial<I_1 extends {
|
|
24665
|
+
channel_id?: string | undefined;
|
|
24666
|
+
clan_id?: string | undefined;
|
|
24667
|
+
} & {
|
|
24668
|
+
channel_id?: string | undefined;
|
|
24669
|
+
clan_id?: string | undefined;
|
|
24670
|
+
} & { [K_1 in Exclude<keyof I_1, keyof ListChannelMemberRequest>]: never; }>(object: I_1): ListChannelMemberRequest;
|
|
24671
|
+
};
|
|
24672
|
+
export declare const ChannelMemberDetail: {
|
|
24673
|
+
encode(message: ChannelMemberDetail, writer?: _m0.Writer): _m0.Writer;
|
|
24674
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): ChannelMemberDetail;
|
|
24675
|
+
fromJSON(object: any): ChannelMemberDetail;
|
|
24676
|
+
toJSON(message: ChannelMemberDetail): unknown;
|
|
24677
|
+
create<I extends {
|
|
24678
|
+
member_id?: string | undefined;
|
|
24679
|
+
added_by?: string | undefined;
|
|
24680
|
+
} & {
|
|
24681
|
+
member_id?: string | undefined;
|
|
24682
|
+
added_by?: string | undefined;
|
|
24683
|
+
} & { [K in Exclude<keyof I, keyof ChannelMemberDetail>]: never; }>(base?: I | undefined): ChannelMemberDetail;
|
|
24684
|
+
fromPartial<I_1 extends {
|
|
24685
|
+
member_id?: string | undefined;
|
|
24686
|
+
added_by?: string | undefined;
|
|
24687
|
+
} & {
|
|
24688
|
+
member_id?: string | undefined;
|
|
24689
|
+
added_by?: string | undefined;
|
|
24690
|
+
} & { [K_1 in Exclude<keyof I_1, keyof ChannelMemberDetail>]: never; }>(object: I_1): ChannelMemberDetail;
|
|
24691
|
+
};
|
|
24692
|
+
export declare const ChannelMemberList: {
|
|
24693
|
+
encode(message: ChannelMemberList, writer?: _m0.Writer): _m0.Writer;
|
|
24694
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): ChannelMemberList;
|
|
24695
|
+
fromJSON(object: any): ChannelMemberList;
|
|
24696
|
+
toJSON(message: ChannelMemberList): unknown;
|
|
24697
|
+
create<I extends {
|
|
24698
|
+
channel_members?: {
|
|
24699
|
+
member_id?: string | undefined;
|
|
24700
|
+
added_by?: string | undefined;
|
|
24701
|
+
}[] | undefined;
|
|
24702
|
+
} & {
|
|
24703
|
+
channel_members?: ({
|
|
24704
|
+
member_id?: string | undefined;
|
|
24705
|
+
added_by?: string | undefined;
|
|
24706
|
+
}[] & ({
|
|
24707
|
+
member_id?: string | undefined;
|
|
24708
|
+
added_by?: string | undefined;
|
|
24709
|
+
} & {
|
|
24710
|
+
member_id?: string | undefined;
|
|
24711
|
+
added_by?: string | undefined;
|
|
24712
|
+
} & { [K in Exclude<keyof I["channel_members"][number], keyof ChannelMemberDetail>]: never; })[] & { [K_1 in Exclude<keyof I["channel_members"], keyof {
|
|
24713
|
+
member_id?: string | undefined;
|
|
24714
|
+
added_by?: string | undefined;
|
|
24715
|
+
}[]>]: never; }) | undefined;
|
|
24716
|
+
} & { [K_2 in Exclude<keyof I, "channel_members">]: never; }>(base?: I | undefined): ChannelMemberList;
|
|
24717
|
+
fromPartial<I_1 extends {
|
|
24718
|
+
channel_members?: {
|
|
24719
|
+
member_id?: string | undefined;
|
|
24720
|
+
added_by?: string | undefined;
|
|
24721
|
+
}[] | undefined;
|
|
24722
|
+
} & {
|
|
24723
|
+
channel_members?: ({
|
|
24724
|
+
member_id?: string | undefined;
|
|
24725
|
+
added_by?: string | undefined;
|
|
24726
|
+
}[] & ({
|
|
24727
|
+
member_id?: string | undefined;
|
|
24728
|
+
added_by?: string | undefined;
|
|
24729
|
+
} & {
|
|
24730
|
+
member_id?: string | undefined;
|
|
24731
|
+
added_by?: string | undefined;
|
|
24732
|
+
} & { [K_3 in Exclude<keyof I_1["channel_members"][number], keyof ChannelMemberDetail>]: never; })[] & { [K_4 in Exclude<keyof I_1["channel_members"], keyof {
|
|
24733
|
+
member_id?: string | undefined;
|
|
24734
|
+
added_by?: string | undefined;
|
|
24735
|
+
}[]>]: never; }) | undefined;
|
|
24736
|
+
} & { [K_5 in Exclude<keyof I_1, "channel_members">]: never; }>(object: I_1): ChannelMemberList;
|
|
24737
|
+
};
|
|
24226
24738
|
type Builtin = Date | Function | Uint8Array | string | number | boolean | undefined;
|
|
24227
24739
|
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 {} ? {
|
|
24228
24740
|
[K in keyof T]?: DeepPartial<T[K]>;
|