mezon-js-protobuf 1.8.32 → 1.8.33
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/api/api.ts +364 -169
- package/dist/mezon-js-protobuf/api/api.d.ts +182 -442
- package/dist/mezon-js-protobuf/rtapi/realtime.d.ts +60 -300
- package/dist/mezon-js-protobuf.cjs.js +45 -105
- package/dist/mezon-js-protobuf.esm.mjs +45 -105
- package/package.json +1 -1
|
@@ -63,6 +63,8 @@ export interface Account {
|
|
|
63
63
|
splash_screen: string;
|
|
64
64
|
/** E2ee encrypt private key */
|
|
65
65
|
encrypt_private_key: string;
|
|
66
|
+
/** password is setted */
|
|
67
|
+
password_setted: boolean;
|
|
66
68
|
}
|
|
67
69
|
/** Obtain a new authentication token using a refresh token. */
|
|
68
70
|
export interface AccountRefresh {
|
|
@@ -823,6 +825,8 @@ export interface UpdateAccountRequest {
|
|
|
823
825
|
splash_screen: string;
|
|
824
826
|
/** e2ee encrypt private key */
|
|
825
827
|
encrypt_private_key: string;
|
|
828
|
+
/** The email of the user's account. */
|
|
829
|
+
email: string | undefined;
|
|
826
830
|
}
|
|
827
831
|
/** Update fields in a given group. */
|
|
828
832
|
export interface UpdateGroupRequest {
|
|
@@ -863,24 +867,16 @@ export interface User {
|
|
|
863
867
|
timezone: string;
|
|
864
868
|
/** Additional information stored as a JSON object. */
|
|
865
869
|
metadata: string;
|
|
866
|
-
/** The Facebook id in the user's account. */
|
|
867
|
-
facebook_id: string;
|
|
868
|
-
/** The Google id in the user's account. */
|
|
869
|
-
google_id: string;
|
|
870
|
-
/** The Apple Game Center in of the user's account. */
|
|
871
|
-
gamecenter_id: string;
|
|
872
|
-
/** The Steam id in the user's account. */
|
|
873
|
-
steam_id: string;
|
|
874
870
|
/** Indicates whether the user is currently online. */
|
|
875
871
|
online: boolean;
|
|
872
|
+
/** The phone number */
|
|
873
|
+
phone_number: string;
|
|
876
874
|
/** Number of related edges to this user. */
|
|
877
875
|
edge_count: number;
|
|
878
876
|
/** The UNIX time (for gRPC clients) or ISO string (for REST clients) when the user was created. */
|
|
879
877
|
create_time: Date | undefined;
|
|
880
878
|
/** The UNIX time (for gRPC clients) or ISO string (for REST clients) when the user was last updated. */
|
|
881
879
|
update_time: Date | undefined;
|
|
882
|
-
/** The Apple Sign In ID in the user's account. */
|
|
883
|
-
apple_id: string;
|
|
884
880
|
/** About me */
|
|
885
881
|
about_me: string;
|
|
886
882
|
/** Join time */
|
|
@@ -1350,11 +1346,15 @@ export interface CreateChannelDescRequest {
|
|
|
1350
1346
|
}
|
|
1351
1347
|
/** Delete a channel the user has access to. */
|
|
1352
1348
|
export interface DeleteChannelDescRequest {
|
|
1349
|
+
/** The clan id */
|
|
1350
|
+
clan_id: string;
|
|
1353
1351
|
/** The id of a channel. */
|
|
1354
1352
|
channel_id: string;
|
|
1355
1353
|
}
|
|
1356
1354
|
/** Update fields in a given channel. */
|
|
1357
1355
|
export interface UpdateChannelDescRequest {
|
|
1356
|
+
/** The clan ID */
|
|
1357
|
+
clan_id: string;
|
|
1358
1358
|
/** The ID of the channel to update. */
|
|
1359
1359
|
channel_id: string;
|
|
1360
1360
|
/** The channel lable */
|
|
@@ -1372,6 +1372,8 @@ export interface UpdateChannelDescRequest {
|
|
|
1372
1372
|
}
|
|
1373
1373
|
/** Update fields in a given channel. */
|
|
1374
1374
|
export interface ChangeChannelPrivateRequest {
|
|
1375
|
+
/** The clan ID */
|
|
1376
|
+
clan_id: string;
|
|
1375
1377
|
/** The ID of the channel to update. */
|
|
1376
1378
|
channel_id: string;
|
|
1377
1379
|
/** The channel private */
|
|
@@ -1404,6 +1406,7 @@ export interface RemoveClanUsersRequest {
|
|
|
1404
1406
|
}
|
|
1405
1407
|
/** Leave a channel. */
|
|
1406
1408
|
export interface LeaveThreadRequest {
|
|
1409
|
+
clan_id: string;
|
|
1407
1410
|
/** The channel ID to leave. */
|
|
1408
1411
|
channel_id: string;
|
|
1409
1412
|
}
|
|
@@ -1916,6 +1919,8 @@ export interface RegistrationEmailRequest {
|
|
|
1916
1919
|
email: string;
|
|
1917
1920
|
/** A password for the user account. */
|
|
1918
1921
|
password: string;
|
|
1922
|
+
/** A old password for the user account. */
|
|
1923
|
+
old_password: string;
|
|
1919
1924
|
/** Set the username on the account at register. Must be unique. */
|
|
1920
1925
|
username: string;
|
|
1921
1926
|
/** Display name */
|
|
@@ -2571,6 +2576,7 @@ export interface AddFavoriteChannelRequest {
|
|
|
2571
2576
|
clan_id: string;
|
|
2572
2577
|
}
|
|
2573
2578
|
export interface RemoveFavoriteChannelRequest {
|
|
2579
|
+
clan_id: string;
|
|
2574
2580
|
channel_id: string;
|
|
2575
2581
|
}
|
|
2576
2582
|
export interface AddFavoriteChannelResponse {
|
|
@@ -3093,6 +3099,8 @@ export interface AccountEmail {
|
|
|
3093
3099
|
email: string;
|
|
3094
3100
|
/** A password for the user account. */
|
|
3095
3101
|
password: string;
|
|
3102
|
+
/** Prev email */
|
|
3103
|
+
prev_email: string;
|
|
3096
3104
|
/** Extra information that will be bundled in the session token. */
|
|
3097
3105
|
vars: {
|
|
3098
3106
|
[key: string]: string;
|
|
@@ -3104,8 +3112,8 @@ export interface AccountEmail_VarsEntry {
|
|
|
3104
3112
|
}
|
|
3105
3113
|
/** Send a Mezon token to the server. Used with authenticate/link/unlink. */
|
|
3106
3114
|
export interface AccountMezon {
|
|
3107
|
-
/** The
|
|
3108
|
-
|
|
3115
|
+
/** The phone number. */
|
|
3116
|
+
phone_number: string;
|
|
3109
3117
|
/** Extra information that will be bundled in the session token. */
|
|
3110
3118
|
vars: {
|
|
3111
3119
|
[key: string]: string;
|
|
@@ -3115,6 +3123,14 @@ export interface AccountMezon_VarsEntry {
|
|
|
3115
3123
|
key: string;
|
|
3116
3124
|
value: string;
|
|
3117
3125
|
}
|
|
3126
|
+
export interface LinkAccountConfirmRequest {
|
|
3127
|
+
/** The request id */
|
|
3128
|
+
req_id: string;
|
|
3129
|
+
/** Status */
|
|
3130
|
+
status: number;
|
|
3131
|
+
/** The confirm code */
|
|
3132
|
+
otp_code: string;
|
|
3133
|
+
}
|
|
3118
3134
|
export interface QuickMenuAccess {
|
|
3119
3135
|
id: string;
|
|
3120
3136
|
bot_id: string;
|
|
@@ -3169,15 +3185,11 @@ export declare const Account: {
|
|
|
3169
3185
|
location?: string | undefined;
|
|
3170
3186
|
timezone?: string | undefined;
|
|
3171
3187
|
metadata?: string | undefined;
|
|
3172
|
-
facebook_id?: string | undefined;
|
|
3173
|
-
google_id?: string | undefined;
|
|
3174
|
-
gamecenter_id?: string | undefined;
|
|
3175
|
-
steam_id?: string | undefined;
|
|
3176
3188
|
online?: boolean | undefined;
|
|
3189
|
+
phone_number?: string | undefined;
|
|
3177
3190
|
edge_count?: number | undefined;
|
|
3178
3191
|
create_time?: Date | undefined;
|
|
3179
3192
|
update_time?: Date | undefined;
|
|
3180
|
-
apple_id?: string | undefined;
|
|
3181
3193
|
about_me?: string | undefined;
|
|
3182
3194
|
join_time?: Date | undefined;
|
|
3183
3195
|
is_mobile?: boolean | undefined;
|
|
@@ -3193,6 +3205,7 @@ export declare const Account: {
|
|
|
3193
3205
|
logo?: string | undefined;
|
|
3194
3206
|
splash_screen?: string | undefined;
|
|
3195
3207
|
encrypt_private_key?: string | undefined;
|
|
3208
|
+
password_setted?: boolean | undefined;
|
|
3196
3209
|
} & {
|
|
3197
3210
|
user?: ({
|
|
3198
3211
|
id?: string | undefined;
|
|
@@ -3203,15 +3216,11 @@ export declare const Account: {
|
|
|
3203
3216
|
location?: string | undefined;
|
|
3204
3217
|
timezone?: string | undefined;
|
|
3205
3218
|
metadata?: string | undefined;
|
|
3206
|
-
facebook_id?: string | undefined;
|
|
3207
|
-
google_id?: string | undefined;
|
|
3208
|
-
gamecenter_id?: string | undefined;
|
|
3209
|
-
steam_id?: string | undefined;
|
|
3210
3219
|
online?: boolean | undefined;
|
|
3220
|
+
phone_number?: string | undefined;
|
|
3211
3221
|
edge_count?: number | undefined;
|
|
3212
3222
|
create_time?: Date | undefined;
|
|
3213
3223
|
update_time?: Date | undefined;
|
|
3214
|
-
apple_id?: string | undefined;
|
|
3215
3224
|
about_me?: string | undefined;
|
|
3216
3225
|
join_time?: Date | undefined;
|
|
3217
3226
|
is_mobile?: boolean | undefined;
|
|
@@ -3227,15 +3236,11 @@ export declare const Account: {
|
|
|
3227
3236
|
location?: string | undefined;
|
|
3228
3237
|
timezone?: string | undefined;
|
|
3229
3238
|
metadata?: string | undefined;
|
|
3230
|
-
facebook_id?: string | undefined;
|
|
3231
|
-
google_id?: string | undefined;
|
|
3232
|
-
gamecenter_id?: string | undefined;
|
|
3233
|
-
steam_id?: string | undefined;
|
|
3234
3239
|
online?: boolean | undefined;
|
|
3240
|
+
phone_number?: string | undefined;
|
|
3235
3241
|
edge_count?: number | undefined;
|
|
3236
3242
|
create_time?: Date | undefined;
|
|
3237
3243
|
update_time?: Date | undefined;
|
|
3238
|
-
apple_id?: string | undefined;
|
|
3239
3244
|
about_me?: string | undefined;
|
|
3240
3245
|
join_time?: Date | undefined;
|
|
3241
3246
|
is_mobile?: boolean | undefined;
|
|
@@ -3251,6 +3256,7 @@ export declare const Account: {
|
|
|
3251
3256
|
logo?: string | undefined;
|
|
3252
3257
|
splash_screen?: string | undefined;
|
|
3253
3258
|
encrypt_private_key?: string | undefined;
|
|
3259
|
+
password_setted?: boolean | undefined;
|
|
3254
3260
|
} & { [K_2 in Exclude<keyof I, keyof Account>]: never; }>(base?: I | undefined): Account;
|
|
3255
3261
|
fromPartial<I_1 extends {
|
|
3256
3262
|
user?: {
|
|
@@ -3262,15 +3268,11 @@ export declare const Account: {
|
|
|
3262
3268
|
location?: string | undefined;
|
|
3263
3269
|
timezone?: string | undefined;
|
|
3264
3270
|
metadata?: string | undefined;
|
|
3265
|
-
facebook_id?: string | undefined;
|
|
3266
|
-
google_id?: string | undefined;
|
|
3267
|
-
gamecenter_id?: string | undefined;
|
|
3268
|
-
steam_id?: string | undefined;
|
|
3269
3271
|
online?: boolean | undefined;
|
|
3272
|
+
phone_number?: string | undefined;
|
|
3270
3273
|
edge_count?: number | undefined;
|
|
3271
3274
|
create_time?: Date | undefined;
|
|
3272
3275
|
update_time?: Date | undefined;
|
|
3273
|
-
apple_id?: string | undefined;
|
|
3274
3276
|
about_me?: string | undefined;
|
|
3275
3277
|
join_time?: Date | undefined;
|
|
3276
3278
|
is_mobile?: boolean | undefined;
|
|
@@ -3286,6 +3288,7 @@ export declare const Account: {
|
|
|
3286
3288
|
logo?: string | undefined;
|
|
3287
3289
|
splash_screen?: string | undefined;
|
|
3288
3290
|
encrypt_private_key?: string | undefined;
|
|
3291
|
+
password_setted?: boolean | undefined;
|
|
3289
3292
|
} & {
|
|
3290
3293
|
user?: ({
|
|
3291
3294
|
id?: string | undefined;
|
|
@@ -3296,15 +3299,11 @@ export declare const Account: {
|
|
|
3296
3299
|
location?: string | undefined;
|
|
3297
3300
|
timezone?: string | undefined;
|
|
3298
3301
|
metadata?: string | undefined;
|
|
3299
|
-
facebook_id?: string | undefined;
|
|
3300
|
-
google_id?: string | undefined;
|
|
3301
|
-
gamecenter_id?: string | undefined;
|
|
3302
|
-
steam_id?: string | undefined;
|
|
3303
3302
|
online?: boolean | undefined;
|
|
3303
|
+
phone_number?: string | undefined;
|
|
3304
3304
|
edge_count?: number | undefined;
|
|
3305
3305
|
create_time?: Date | undefined;
|
|
3306
3306
|
update_time?: Date | undefined;
|
|
3307
|
-
apple_id?: string | undefined;
|
|
3308
3307
|
about_me?: string | undefined;
|
|
3309
3308
|
join_time?: Date | undefined;
|
|
3310
3309
|
is_mobile?: boolean | undefined;
|
|
@@ -3320,15 +3319,11 @@ export declare const Account: {
|
|
|
3320
3319
|
location?: string | undefined;
|
|
3321
3320
|
timezone?: string | undefined;
|
|
3322
3321
|
metadata?: string | undefined;
|
|
3323
|
-
facebook_id?: string | undefined;
|
|
3324
|
-
google_id?: string | undefined;
|
|
3325
|
-
gamecenter_id?: string | undefined;
|
|
3326
|
-
steam_id?: string | undefined;
|
|
3327
3322
|
online?: boolean | undefined;
|
|
3323
|
+
phone_number?: string | undefined;
|
|
3328
3324
|
edge_count?: number | undefined;
|
|
3329
3325
|
create_time?: Date | undefined;
|
|
3330
3326
|
update_time?: Date | undefined;
|
|
3331
|
-
apple_id?: string | undefined;
|
|
3332
3327
|
about_me?: string | undefined;
|
|
3333
3328
|
join_time?: Date | undefined;
|
|
3334
3329
|
is_mobile?: boolean | undefined;
|
|
@@ -3344,6 +3339,7 @@ export declare const Account: {
|
|
|
3344
3339
|
logo?: string | undefined;
|
|
3345
3340
|
splash_screen?: string | undefined;
|
|
3346
3341
|
encrypt_private_key?: string | undefined;
|
|
3342
|
+
password_setted?: boolean | undefined;
|
|
3347
3343
|
} & { [K_5 in Exclude<keyof I_1, keyof Account>]: never; }>(object: I_1): Account;
|
|
3348
3344
|
};
|
|
3349
3345
|
export declare const AccountRefresh: {
|
|
@@ -4917,15 +4913,11 @@ export declare const Friend: {
|
|
|
4917
4913
|
location?: string | undefined;
|
|
4918
4914
|
timezone?: string | undefined;
|
|
4919
4915
|
metadata?: string | undefined;
|
|
4920
|
-
facebook_id?: string | undefined;
|
|
4921
|
-
google_id?: string | undefined;
|
|
4922
|
-
gamecenter_id?: string | undefined;
|
|
4923
|
-
steam_id?: string | undefined;
|
|
4924
4916
|
online?: boolean | undefined;
|
|
4917
|
+
phone_number?: string | undefined;
|
|
4925
4918
|
edge_count?: number | undefined;
|
|
4926
4919
|
create_time?: Date | undefined;
|
|
4927
4920
|
update_time?: Date | undefined;
|
|
4928
|
-
apple_id?: string | undefined;
|
|
4929
4921
|
about_me?: string | undefined;
|
|
4930
4922
|
join_time?: Date | undefined;
|
|
4931
4923
|
is_mobile?: boolean | undefined;
|
|
@@ -4946,15 +4938,11 @@ export declare const Friend: {
|
|
|
4946
4938
|
location?: string | undefined;
|
|
4947
4939
|
timezone?: string | undefined;
|
|
4948
4940
|
metadata?: string | undefined;
|
|
4949
|
-
facebook_id?: string | undefined;
|
|
4950
|
-
google_id?: string | undefined;
|
|
4951
|
-
gamecenter_id?: string | undefined;
|
|
4952
|
-
steam_id?: string | undefined;
|
|
4953
4941
|
online?: boolean | undefined;
|
|
4942
|
+
phone_number?: string | undefined;
|
|
4954
4943
|
edge_count?: number | undefined;
|
|
4955
4944
|
create_time?: Date | undefined;
|
|
4956
4945
|
update_time?: Date | undefined;
|
|
4957
|
-
apple_id?: string | undefined;
|
|
4958
4946
|
about_me?: string | undefined;
|
|
4959
4947
|
join_time?: Date | undefined;
|
|
4960
4948
|
is_mobile?: boolean | undefined;
|
|
@@ -4970,15 +4958,11 @@ export declare const Friend: {
|
|
|
4970
4958
|
location?: string | undefined;
|
|
4971
4959
|
timezone?: string | undefined;
|
|
4972
4960
|
metadata?: string | undefined;
|
|
4973
|
-
facebook_id?: string | undefined;
|
|
4974
|
-
google_id?: string | undefined;
|
|
4975
|
-
gamecenter_id?: string | undefined;
|
|
4976
|
-
steam_id?: string | undefined;
|
|
4977
4961
|
online?: boolean | undefined;
|
|
4962
|
+
phone_number?: string | undefined;
|
|
4978
4963
|
edge_count?: number | undefined;
|
|
4979
4964
|
create_time?: Date | undefined;
|
|
4980
4965
|
update_time?: Date | undefined;
|
|
4981
|
-
apple_id?: string | undefined;
|
|
4982
4966
|
about_me?: string | undefined;
|
|
4983
4967
|
join_time?: Date | undefined;
|
|
4984
4968
|
is_mobile?: boolean | undefined;
|
|
@@ -5000,15 +4984,11 @@ export declare const Friend: {
|
|
|
5000
4984
|
location?: string | undefined;
|
|
5001
4985
|
timezone?: string | undefined;
|
|
5002
4986
|
metadata?: string | undefined;
|
|
5003
|
-
facebook_id?: string | undefined;
|
|
5004
|
-
google_id?: string | undefined;
|
|
5005
|
-
gamecenter_id?: string | undefined;
|
|
5006
|
-
steam_id?: string | undefined;
|
|
5007
4987
|
online?: boolean | undefined;
|
|
4988
|
+
phone_number?: string | undefined;
|
|
5008
4989
|
edge_count?: number | undefined;
|
|
5009
4990
|
create_time?: Date | undefined;
|
|
5010
4991
|
update_time?: Date | undefined;
|
|
5011
|
-
apple_id?: string | undefined;
|
|
5012
4992
|
about_me?: string | undefined;
|
|
5013
4993
|
join_time?: Date | undefined;
|
|
5014
4994
|
is_mobile?: boolean | undefined;
|
|
@@ -5029,15 +5009,11 @@ export declare const Friend: {
|
|
|
5029
5009
|
location?: string | undefined;
|
|
5030
5010
|
timezone?: string | undefined;
|
|
5031
5011
|
metadata?: string | undefined;
|
|
5032
|
-
facebook_id?: string | undefined;
|
|
5033
|
-
google_id?: string | undefined;
|
|
5034
|
-
gamecenter_id?: string | undefined;
|
|
5035
|
-
steam_id?: string | undefined;
|
|
5036
5012
|
online?: boolean | undefined;
|
|
5013
|
+
phone_number?: string | undefined;
|
|
5037
5014
|
edge_count?: number | undefined;
|
|
5038
5015
|
create_time?: Date | undefined;
|
|
5039
5016
|
update_time?: Date | undefined;
|
|
5040
|
-
apple_id?: string | undefined;
|
|
5041
5017
|
about_me?: string | undefined;
|
|
5042
5018
|
join_time?: Date | undefined;
|
|
5043
5019
|
is_mobile?: boolean | undefined;
|
|
@@ -5053,15 +5029,11 @@ export declare const Friend: {
|
|
|
5053
5029
|
location?: string | undefined;
|
|
5054
5030
|
timezone?: string | undefined;
|
|
5055
5031
|
metadata?: string | undefined;
|
|
5056
|
-
facebook_id?: string | undefined;
|
|
5057
|
-
google_id?: string | undefined;
|
|
5058
|
-
gamecenter_id?: string | undefined;
|
|
5059
|
-
steam_id?: string | undefined;
|
|
5060
5032
|
online?: boolean | undefined;
|
|
5033
|
+
phone_number?: string | undefined;
|
|
5061
5034
|
edge_count?: number | undefined;
|
|
5062
5035
|
create_time?: Date | undefined;
|
|
5063
5036
|
update_time?: Date | undefined;
|
|
5064
|
-
apple_id?: string | undefined;
|
|
5065
5037
|
about_me?: string | undefined;
|
|
5066
5038
|
join_time?: Date | undefined;
|
|
5067
5039
|
is_mobile?: boolean | undefined;
|
|
@@ -5090,15 +5062,11 @@ export declare const FriendList: {
|
|
|
5090
5062
|
location?: string | undefined;
|
|
5091
5063
|
timezone?: string | undefined;
|
|
5092
5064
|
metadata?: string | undefined;
|
|
5093
|
-
facebook_id?: string | undefined;
|
|
5094
|
-
google_id?: string | undefined;
|
|
5095
|
-
gamecenter_id?: string | undefined;
|
|
5096
|
-
steam_id?: string | undefined;
|
|
5097
5065
|
online?: boolean | undefined;
|
|
5066
|
+
phone_number?: string | undefined;
|
|
5098
5067
|
edge_count?: number | undefined;
|
|
5099
5068
|
create_time?: Date | undefined;
|
|
5100
5069
|
update_time?: Date | undefined;
|
|
5101
|
-
apple_id?: string | undefined;
|
|
5102
5070
|
about_me?: string | undefined;
|
|
5103
5071
|
join_time?: Date | undefined;
|
|
5104
5072
|
is_mobile?: boolean | undefined;
|
|
@@ -5122,15 +5090,11 @@ export declare const FriendList: {
|
|
|
5122
5090
|
location?: string | undefined;
|
|
5123
5091
|
timezone?: string | undefined;
|
|
5124
5092
|
metadata?: string | undefined;
|
|
5125
|
-
facebook_id?: string | undefined;
|
|
5126
|
-
google_id?: string | undefined;
|
|
5127
|
-
gamecenter_id?: string | undefined;
|
|
5128
|
-
steam_id?: string | undefined;
|
|
5129
5093
|
online?: boolean | undefined;
|
|
5094
|
+
phone_number?: string | undefined;
|
|
5130
5095
|
edge_count?: number | undefined;
|
|
5131
5096
|
create_time?: Date | undefined;
|
|
5132
5097
|
update_time?: Date | undefined;
|
|
5133
|
-
apple_id?: string | undefined;
|
|
5134
5098
|
about_me?: string | undefined;
|
|
5135
5099
|
join_time?: Date | undefined;
|
|
5136
5100
|
is_mobile?: boolean | undefined;
|
|
@@ -5151,15 +5115,11 @@ export declare const FriendList: {
|
|
|
5151
5115
|
location?: string | undefined;
|
|
5152
5116
|
timezone?: string | undefined;
|
|
5153
5117
|
metadata?: string | undefined;
|
|
5154
|
-
facebook_id?: string | undefined;
|
|
5155
|
-
google_id?: string | undefined;
|
|
5156
|
-
gamecenter_id?: string | undefined;
|
|
5157
|
-
steam_id?: string | undefined;
|
|
5158
5118
|
online?: boolean | undefined;
|
|
5119
|
+
phone_number?: string | undefined;
|
|
5159
5120
|
edge_count?: number | undefined;
|
|
5160
5121
|
create_time?: Date | undefined;
|
|
5161
5122
|
update_time?: Date | undefined;
|
|
5162
|
-
apple_id?: string | undefined;
|
|
5163
5123
|
about_me?: string | undefined;
|
|
5164
5124
|
join_time?: Date | undefined;
|
|
5165
5125
|
is_mobile?: boolean | undefined;
|
|
@@ -5180,15 +5140,11 @@ export declare const FriendList: {
|
|
|
5180
5140
|
location?: string | undefined;
|
|
5181
5141
|
timezone?: string | undefined;
|
|
5182
5142
|
metadata?: string | undefined;
|
|
5183
|
-
facebook_id?: string | undefined;
|
|
5184
|
-
google_id?: string | undefined;
|
|
5185
|
-
gamecenter_id?: string | undefined;
|
|
5186
|
-
steam_id?: string | undefined;
|
|
5187
5143
|
online?: boolean | undefined;
|
|
5144
|
+
phone_number?: string | undefined;
|
|
5188
5145
|
edge_count?: number | undefined;
|
|
5189
5146
|
create_time?: Date | undefined;
|
|
5190
5147
|
update_time?: Date | undefined;
|
|
5191
|
-
apple_id?: string | undefined;
|
|
5192
5148
|
about_me?: string | undefined;
|
|
5193
5149
|
join_time?: Date | undefined;
|
|
5194
5150
|
is_mobile?: boolean | undefined;
|
|
@@ -5204,15 +5160,11 @@ export declare const FriendList: {
|
|
|
5204
5160
|
location?: string | undefined;
|
|
5205
5161
|
timezone?: string | undefined;
|
|
5206
5162
|
metadata?: string | undefined;
|
|
5207
|
-
facebook_id?: string | undefined;
|
|
5208
|
-
google_id?: string | undefined;
|
|
5209
|
-
gamecenter_id?: string | undefined;
|
|
5210
|
-
steam_id?: string | undefined;
|
|
5211
5163
|
online?: boolean | undefined;
|
|
5164
|
+
phone_number?: string | undefined;
|
|
5212
5165
|
edge_count?: number | undefined;
|
|
5213
5166
|
create_time?: Date | undefined;
|
|
5214
5167
|
update_time?: Date | undefined;
|
|
5215
|
-
apple_id?: string | undefined;
|
|
5216
5168
|
about_me?: string | undefined;
|
|
5217
5169
|
join_time?: Date | undefined;
|
|
5218
5170
|
is_mobile?: boolean | undefined;
|
|
@@ -5233,15 +5185,11 @@ export declare const FriendList: {
|
|
|
5233
5185
|
location?: string | undefined;
|
|
5234
5186
|
timezone?: string | undefined;
|
|
5235
5187
|
metadata?: string | undefined;
|
|
5236
|
-
facebook_id?: string | undefined;
|
|
5237
|
-
google_id?: string | undefined;
|
|
5238
|
-
gamecenter_id?: string | undefined;
|
|
5239
|
-
steam_id?: string | undefined;
|
|
5240
5188
|
online?: boolean | undefined;
|
|
5189
|
+
phone_number?: string | undefined;
|
|
5241
5190
|
edge_count?: number | undefined;
|
|
5242
5191
|
create_time?: Date | undefined;
|
|
5243
5192
|
update_time?: Date | undefined;
|
|
5244
|
-
apple_id?: string | undefined;
|
|
5245
5193
|
about_me?: string | undefined;
|
|
5246
5194
|
join_time?: Date | undefined;
|
|
5247
5195
|
is_mobile?: boolean | undefined;
|
|
@@ -5266,15 +5214,11 @@ export declare const FriendList: {
|
|
|
5266
5214
|
location?: string | undefined;
|
|
5267
5215
|
timezone?: string | undefined;
|
|
5268
5216
|
metadata?: string | undefined;
|
|
5269
|
-
facebook_id?: string | undefined;
|
|
5270
|
-
google_id?: string | undefined;
|
|
5271
|
-
gamecenter_id?: string | undefined;
|
|
5272
|
-
steam_id?: string | undefined;
|
|
5273
5217
|
online?: boolean | undefined;
|
|
5218
|
+
phone_number?: string | undefined;
|
|
5274
5219
|
edge_count?: number | undefined;
|
|
5275
5220
|
create_time?: Date | undefined;
|
|
5276
5221
|
update_time?: Date | undefined;
|
|
5277
|
-
apple_id?: string | undefined;
|
|
5278
5222
|
about_me?: string | undefined;
|
|
5279
5223
|
join_time?: Date | undefined;
|
|
5280
5224
|
is_mobile?: boolean | undefined;
|
|
@@ -5298,15 +5242,11 @@ export declare const FriendList: {
|
|
|
5298
5242
|
location?: string | undefined;
|
|
5299
5243
|
timezone?: string | undefined;
|
|
5300
5244
|
metadata?: string | undefined;
|
|
5301
|
-
facebook_id?: string | undefined;
|
|
5302
|
-
google_id?: string | undefined;
|
|
5303
|
-
gamecenter_id?: string | undefined;
|
|
5304
|
-
steam_id?: string | undefined;
|
|
5305
5245
|
online?: boolean | undefined;
|
|
5246
|
+
phone_number?: string | undefined;
|
|
5306
5247
|
edge_count?: number | undefined;
|
|
5307
5248
|
create_time?: Date | undefined;
|
|
5308
5249
|
update_time?: Date | undefined;
|
|
5309
|
-
apple_id?: string | undefined;
|
|
5310
5250
|
about_me?: string | undefined;
|
|
5311
5251
|
join_time?: Date | undefined;
|
|
5312
5252
|
is_mobile?: boolean | undefined;
|
|
@@ -5327,15 +5267,11 @@ export declare const FriendList: {
|
|
|
5327
5267
|
location?: string | undefined;
|
|
5328
5268
|
timezone?: string | undefined;
|
|
5329
5269
|
metadata?: string | undefined;
|
|
5330
|
-
facebook_id?: string | undefined;
|
|
5331
|
-
google_id?: string | undefined;
|
|
5332
|
-
gamecenter_id?: string | undefined;
|
|
5333
|
-
steam_id?: string | undefined;
|
|
5334
5270
|
online?: boolean | undefined;
|
|
5271
|
+
phone_number?: string | undefined;
|
|
5335
5272
|
edge_count?: number | undefined;
|
|
5336
5273
|
create_time?: Date | undefined;
|
|
5337
5274
|
update_time?: Date | undefined;
|
|
5338
|
-
apple_id?: string | undefined;
|
|
5339
5275
|
about_me?: string | undefined;
|
|
5340
5276
|
join_time?: Date | undefined;
|
|
5341
5277
|
is_mobile?: boolean | undefined;
|
|
@@ -5356,15 +5292,11 @@ export declare const FriendList: {
|
|
|
5356
5292
|
location?: string | undefined;
|
|
5357
5293
|
timezone?: string | undefined;
|
|
5358
5294
|
metadata?: string | undefined;
|
|
5359
|
-
facebook_id?: string | undefined;
|
|
5360
|
-
google_id?: string | undefined;
|
|
5361
|
-
gamecenter_id?: string | undefined;
|
|
5362
|
-
steam_id?: string | undefined;
|
|
5363
5295
|
online?: boolean | undefined;
|
|
5296
|
+
phone_number?: string | undefined;
|
|
5364
5297
|
edge_count?: number | undefined;
|
|
5365
5298
|
create_time?: Date | undefined;
|
|
5366
5299
|
update_time?: Date | undefined;
|
|
5367
|
-
apple_id?: string | undefined;
|
|
5368
5300
|
about_me?: string | undefined;
|
|
5369
5301
|
join_time?: Date | undefined;
|
|
5370
5302
|
is_mobile?: boolean | undefined;
|
|
@@ -5380,15 +5312,11 @@ export declare const FriendList: {
|
|
|
5380
5312
|
location?: string | undefined;
|
|
5381
5313
|
timezone?: string | undefined;
|
|
5382
5314
|
metadata?: string | undefined;
|
|
5383
|
-
facebook_id?: string | undefined;
|
|
5384
|
-
google_id?: string | undefined;
|
|
5385
|
-
gamecenter_id?: string | undefined;
|
|
5386
|
-
steam_id?: string | undefined;
|
|
5387
5315
|
online?: boolean | undefined;
|
|
5316
|
+
phone_number?: string | undefined;
|
|
5388
5317
|
edge_count?: number | undefined;
|
|
5389
5318
|
create_time?: Date | undefined;
|
|
5390
5319
|
update_time?: Date | undefined;
|
|
5391
|
-
apple_id?: string | undefined;
|
|
5392
5320
|
about_me?: string | undefined;
|
|
5393
5321
|
join_time?: Date | undefined;
|
|
5394
5322
|
is_mobile?: boolean | undefined;
|
|
@@ -5409,15 +5337,11 @@ export declare const FriendList: {
|
|
|
5409
5337
|
location?: string | undefined;
|
|
5410
5338
|
timezone?: string | undefined;
|
|
5411
5339
|
metadata?: string | undefined;
|
|
5412
|
-
facebook_id?: string | undefined;
|
|
5413
|
-
google_id?: string | undefined;
|
|
5414
|
-
gamecenter_id?: string | undefined;
|
|
5415
|
-
steam_id?: string | undefined;
|
|
5416
5340
|
online?: boolean | undefined;
|
|
5341
|
+
phone_number?: string | undefined;
|
|
5417
5342
|
edge_count?: number | undefined;
|
|
5418
5343
|
create_time?: Date | undefined;
|
|
5419
5344
|
update_time?: Date | undefined;
|
|
5420
|
-
apple_id?: string | undefined;
|
|
5421
5345
|
about_me?: string | undefined;
|
|
5422
5346
|
join_time?: Date | undefined;
|
|
5423
5347
|
is_mobile?: boolean | undefined;
|
|
@@ -5702,15 +5626,11 @@ export declare const GroupUserList: {
|
|
|
5702
5626
|
location?: string | undefined;
|
|
5703
5627
|
timezone?: string | undefined;
|
|
5704
5628
|
metadata?: string | undefined;
|
|
5705
|
-
facebook_id?: string | undefined;
|
|
5706
|
-
google_id?: string | undefined;
|
|
5707
|
-
gamecenter_id?: string | undefined;
|
|
5708
|
-
steam_id?: string | undefined;
|
|
5709
5629
|
online?: boolean | undefined;
|
|
5630
|
+
phone_number?: string | undefined;
|
|
5710
5631
|
edge_count?: number | undefined;
|
|
5711
5632
|
create_time?: Date | undefined;
|
|
5712
5633
|
update_time?: Date | undefined;
|
|
5713
|
-
apple_id?: string | undefined;
|
|
5714
5634
|
about_me?: string | undefined;
|
|
5715
5635
|
join_time?: Date | undefined;
|
|
5716
5636
|
is_mobile?: boolean | undefined;
|
|
@@ -5732,15 +5652,11 @@ export declare const GroupUserList: {
|
|
|
5732
5652
|
location?: string | undefined;
|
|
5733
5653
|
timezone?: string | undefined;
|
|
5734
5654
|
metadata?: string | undefined;
|
|
5735
|
-
facebook_id?: string | undefined;
|
|
5736
|
-
google_id?: string | undefined;
|
|
5737
|
-
gamecenter_id?: string | undefined;
|
|
5738
|
-
steam_id?: string | undefined;
|
|
5739
5655
|
online?: boolean | undefined;
|
|
5656
|
+
phone_number?: string | undefined;
|
|
5740
5657
|
edge_count?: number | undefined;
|
|
5741
5658
|
create_time?: Date | undefined;
|
|
5742
5659
|
update_time?: Date | undefined;
|
|
5743
|
-
apple_id?: string | undefined;
|
|
5744
5660
|
about_me?: string | undefined;
|
|
5745
5661
|
join_time?: Date | undefined;
|
|
5746
5662
|
is_mobile?: boolean | undefined;
|
|
@@ -5759,15 +5675,11 @@ export declare const GroupUserList: {
|
|
|
5759
5675
|
location?: string | undefined;
|
|
5760
5676
|
timezone?: string | undefined;
|
|
5761
5677
|
metadata?: string | undefined;
|
|
5762
|
-
facebook_id?: string | undefined;
|
|
5763
|
-
google_id?: string | undefined;
|
|
5764
|
-
gamecenter_id?: string | undefined;
|
|
5765
|
-
steam_id?: string | undefined;
|
|
5766
5678
|
online?: boolean | undefined;
|
|
5679
|
+
phone_number?: string | undefined;
|
|
5767
5680
|
edge_count?: number | undefined;
|
|
5768
5681
|
create_time?: Date | undefined;
|
|
5769
5682
|
update_time?: Date | undefined;
|
|
5770
|
-
apple_id?: string | undefined;
|
|
5771
5683
|
about_me?: string | undefined;
|
|
5772
5684
|
join_time?: Date | undefined;
|
|
5773
5685
|
is_mobile?: boolean | undefined;
|
|
@@ -5786,15 +5698,11 @@ export declare const GroupUserList: {
|
|
|
5786
5698
|
location?: string | undefined;
|
|
5787
5699
|
timezone?: string | undefined;
|
|
5788
5700
|
metadata?: string | undefined;
|
|
5789
|
-
facebook_id?: string | undefined;
|
|
5790
|
-
google_id?: string | undefined;
|
|
5791
|
-
gamecenter_id?: string | undefined;
|
|
5792
|
-
steam_id?: string | undefined;
|
|
5793
5701
|
online?: boolean | undefined;
|
|
5702
|
+
phone_number?: string | undefined;
|
|
5794
5703
|
edge_count?: number | undefined;
|
|
5795
5704
|
create_time?: Date | undefined;
|
|
5796
5705
|
update_time?: Date | undefined;
|
|
5797
|
-
apple_id?: string | undefined;
|
|
5798
5706
|
about_me?: string | undefined;
|
|
5799
5707
|
join_time?: Date | undefined;
|
|
5800
5708
|
is_mobile?: boolean | undefined;
|
|
@@ -5810,15 +5718,11 @@ export declare const GroupUserList: {
|
|
|
5810
5718
|
location?: string | undefined;
|
|
5811
5719
|
timezone?: string | undefined;
|
|
5812
5720
|
metadata?: string | undefined;
|
|
5813
|
-
facebook_id?: string | undefined;
|
|
5814
|
-
google_id?: string | undefined;
|
|
5815
|
-
gamecenter_id?: string | undefined;
|
|
5816
|
-
steam_id?: string | undefined;
|
|
5817
5721
|
online?: boolean | undefined;
|
|
5722
|
+
phone_number?: string | undefined;
|
|
5818
5723
|
edge_count?: number | undefined;
|
|
5819
5724
|
create_time?: Date | undefined;
|
|
5820
5725
|
update_time?: Date | undefined;
|
|
5821
|
-
apple_id?: string | undefined;
|
|
5822
5726
|
about_me?: string | undefined;
|
|
5823
5727
|
join_time?: Date | undefined;
|
|
5824
5728
|
is_mobile?: boolean | undefined;
|
|
@@ -5837,15 +5741,11 @@ export declare const GroupUserList: {
|
|
|
5837
5741
|
location?: string | undefined;
|
|
5838
5742
|
timezone?: string | undefined;
|
|
5839
5743
|
metadata?: string | undefined;
|
|
5840
|
-
facebook_id?: string | undefined;
|
|
5841
|
-
google_id?: string | undefined;
|
|
5842
|
-
gamecenter_id?: string | undefined;
|
|
5843
|
-
steam_id?: string | undefined;
|
|
5844
5744
|
online?: boolean | undefined;
|
|
5745
|
+
phone_number?: string | undefined;
|
|
5845
5746
|
edge_count?: number | undefined;
|
|
5846
5747
|
create_time?: Date | undefined;
|
|
5847
5748
|
update_time?: Date | undefined;
|
|
5848
|
-
apple_id?: string | undefined;
|
|
5849
5749
|
about_me?: string | undefined;
|
|
5850
5750
|
join_time?: Date | undefined;
|
|
5851
5751
|
is_mobile?: boolean | undefined;
|
|
@@ -5868,15 +5768,11 @@ export declare const GroupUserList: {
|
|
|
5868
5768
|
location?: string | undefined;
|
|
5869
5769
|
timezone?: string | undefined;
|
|
5870
5770
|
metadata?: string | undefined;
|
|
5871
|
-
facebook_id?: string | undefined;
|
|
5872
|
-
google_id?: string | undefined;
|
|
5873
|
-
gamecenter_id?: string | undefined;
|
|
5874
|
-
steam_id?: string | undefined;
|
|
5875
5771
|
online?: boolean | undefined;
|
|
5772
|
+
phone_number?: string | undefined;
|
|
5876
5773
|
edge_count?: number | undefined;
|
|
5877
5774
|
create_time?: Date | undefined;
|
|
5878
5775
|
update_time?: Date | undefined;
|
|
5879
|
-
apple_id?: string | undefined;
|
|
5880
5776
|
about_me?: string | undefined;
|
|
5881
5777
|
join_time?: Date | undefined;
|
|
5882
5778
|
is_mobile?: boolean | undefined;
|
|
@@ -5898,15 +5794,11 @@ export declare const GroupUserList: {
|
|
|
5898
5794
|
location?: string | undefined;
|
|
5899
5795
|
timezone?: string | undefined;
|
|
5900
5796
|
metadata?: string | undefined;
|
|
5901
|
-
facebook_id?: string | undefined;
|
|
5902
|
-
google_id?: string | undefined;
|
|
5903
|
-
gamecenter_id?: string | undefined;
|
|
5904
|
-
steam_id?: string | undefined;
|
|
5905
5797
|
online?: boolean | undefined;
|
|
5798
|
+
phone_number?: string | undefined;
|
|
5906
5799
|
edge_count?: number | undefined;
|
|
5907
5800
|
create_time?: Date | undefined;
|
|
5908
5801
|
update_time?: Date | undefined;
|
|
5909
|
-
apple_id?: string | undefined;
|
|
5910
5802
|
about_me?: string | undefined;
|
|
5911
5803
|
join_time?: Date | undefined;
|
|
5912
5804
|
is_mobile?: boolean | undefined;
|
|
@@ -5925,15 +5817,11 @@ export declare const GroupUserList: {
|
|
|
5925
5817
|
location?: string | undefined;
|
|
5926
5818
|
timezone?: string | undefined;
|
|
5927
5819
|
metadata?: string | undefined;
|
|
5928
|
-
facebook_id?: string | undefined;
|
|
5929
|
-
google_id?: string | undefined;
|
|
5930
|
-
gamecenter_id?: string | undefined;
|
|
5931
|
-
steam_id?: string | undefined;
|
|
5932
5820
|
online?: boolean | undefined;
|
|
5821
|
+
phone_number?: string | undefined;
|
|
5933
5822
|
edge_count?: number | undefined;
|
|
5934
5823
|
create_time?: Date | undefined;
|
|
5935
5824
|
update_time?: Date | undefined;
|
|
5936
|
-
apple_id?: string | undefined;
|
|
5937
5825
|
about_me?: string | undefined;
|
|
5938
5826
|
join_time?: Date | undefined;
|
|
5939
5827
|
is_mobile?: boolean | undefined;
|
|
@@ -5952,15 +5840,11 @@ export declare const GroupUserList: {
|
|
|
5952
5840
|
location?: string | undefined;
|
|
5953
5841
|
timezone?: string | undefined;
|
|
5954
5842
|
metadata?: string | undefined;
|
|
5955
|
-
facebook_id?: string | undefined;
|
|
5956
|
-
google_id?: string | undefined;
|
|
5957
|
-
gamecenter_id?: string | undefined;
|
|
5958
|
-
steam_id?: string | undefined;
|
|
5959
5843
|
online?: boolean | undefined;
|
|
5844
|
+
phone_number?: string | undefined;
|
|
5960
5845
|
edge_count?: number | undefined;
|
|
5961
5846
|
create_time?: Date | undefined;
|
|
5962
5847
|
update_time?: Date | undefined;
|
|
5963
|
-
apple_id?: string | undefined;
|
|
5964
5848
|
about_me?: string | undefined;
|
|
5965
5849
|
join_time?: Date | undefined;
|
|
5966
5850
|
is_mobile?: boolean | undefined;
|
|
@@ -5976,15 +5860,11 @@ export declare const GroupUserList: {
|
|
|
5976
5860
|
location?: string | undefined;
|
|
5977
5861
|
timezone?: string | undefined;
|
|
5978
5862
|
metadata?: string | undefined;
|
|
5979
|
-
facebook_id?: string | undefined;
|
|
5980
|
-
google_id?: string | undefined;
|
|
5981
|
-
gamecenter_id?: string | undefined;
|
|
5982
|
-
steam_id?: string | undefined;
|
|
5983
5863
|
online?: boolean | undefined;
|
|
5864
|
+
phone_number?: string | undefined;
|
|
5984
5865
|
edge_count?: number | undefined;
|
|
5985
5866
|
create_time?: Date | undefined;
|
|
5986
5867
|
update_time?: Date | undefined;
|
|
5987
|
-
apple_id?: string | undefined;
|
|
5988
5868
|
about_me?: string | undefined;
|
|
5989
5869
|
join_time?: Date | undefined;
|
|
5990
5870
|
is_mobile?: boolean | undefined;
|
|
@@ -6003,15 +5883,11 @@ export declare const GroupUserList: {
|
|
|
6003
5883
|
location?: string | undefined;
|
|
6004
5884
|
timezone?: string | undefined;
|
|
6005
5885
|
metadata?: string | undefined;
|
|
6006
|
-
facebook_id?: string | undefined;
|
|
6007
|
-
google_id?: string | undefined;
|
|
6008
|
-
gamecenter_id?: string | undefined;
|
|
6009
|
-
steam_id?: string | undefined;
|
|
6010
5886
|
online?: boolean | undefined;
|
|
5887
|
+
phone_number?: string | undefined;
|
|
6011
5888
|
edge_count?: number | undefined;
|
|
6012
5889
|
create_time?: Date | undefined;
|
|
6013
5890
|
update_time?: Date | undefined;
|
|
6014
|
-
apple_id?: string | undefined;
|
|
6015
5891
|
about_me?: string | undefined;
|
|
6016
5892
|
join_time?: Date | undefined;
|
|
6017
5893
|
is_mobile?: boolean | undefined;
|
|
@@ -6039,15 +5915,11 @@ export declare const GroupUserList_GroupUser: {
|
|
|
6039
5915
|
location?: string | undefined;
|
|
6040
5916
|
timezone?: string | undefined;
|
|
6041
5917
|
metadata?: string | undefined;
|
|
6042
|
-
facebook_id?: string | undefined;
|
|
6043
|
-
google_id?: string | undefined;
|
|
6044
|
-
gamecenter_id?: string | undefined;
|
|
6045
|
-
steam_id?: string | undefined;
|
|
6046
5918
|
online?: boolean | undefined;
|
|
5919
|
+
phone_number?: string | undefined;
|
|
6047
5920
|
edge_count?: number | undefined;
|
|
6048
5921
|
create_time?: Date | undefined;
|
|
6049
5922
|
update_time?: Date | undefined;
|
|
6050
|
-
apple_id?: string | undefined;
|
|
6051
5923
|
about_me?: string | undefined;
|
|
6052
5924
|
join_time?: Date | undefined;
|
|
6053
5925
|
is_mobile?: boolean | undefined;
|
|
@@ -6066,15 +5938,11 @@ export declare const GroupUserList_GroupUser: {
|
|
|
6066
5938
|
location?: string | undefined;
|
|
6067
5939
|
timezone?: string | undefined;
|
|
6068
5940
|
metadata?: string | undefined;
|
|
6069
|
-
facebook_id?: string | undefined;
|
|
6070
|
-
google_id?: string | undefined;
|
|
6071
|
-
gamecenter_id?: string | undefined;
|
|
6072
|
-
steam_id?: string | undefined;
|
|
6073
5941
|
online?: boolean | undefined;
|
|
5942
|
+
phone_number?: string | undefined;
|
|
6074
5943
|
edge_count?: number | undefined;
|
|
6075
5944
|
create_time?: Date | undefined;
|
|
6076
5945
|
update_time?: Date | undefined;
|
|
6077
|
-
apple_id?: string | undefined;
|
|
6078
5946
|
about_me?: string | undefined;
|
|
6079
5947
|
join_time?: Date | undefined;
|
|
6080
5948
|
is_mobile?: boolean | undefined;
|
|
@@ -6090,15 +5958,11 @@ export declare const GroupUserList_GroupUser: {
|
|
|
6090
5958
|
location?: string | undefined;
|
|
6091
5959
|
timezone?: string | undefined;
|
|
6092
5960
|
metadata?: string | undefined;
|
|
6093
|
-
facebook_id?: string | undefined;
|
|
6094
|
-
google_id?: string | undefined;
|
|
6095
|
-
gamecenter_id?: string | undefined;
|
|
6096
|
-
steam_id?: string | undefined;
|
|
6097
5961
|
online?: boolean | undefined;
|
|
5962
|
+
phone_number?: string | undefined;
|
|
6098
5963
|
edge_count?: number | undefined;
|
|
6099
5964
|
create_time?: Date | undefined;
|
|
6100
5965
|
update_time?: Date | undefined;
|
|
6101
|
-
apple_id?: string | undefined;
|
|
6102
5966
|
about_me?: string | undefined;
|
|
6103
5967
|
join_time?: Date | undefined;
|
|
6104
5968
|
is_mobile?: boolean | undefined;
|
|
@@ -6118,15 +5982,11 @@ export declare const GroupUserList_GroupUser: {
|
|
|
6118
5982
|
location?: string | undefined;
|
|
6119
5983
|
timezone?: string | undefined;
|
|
6120
5984
|
metadata?: string | undefined;
|
|
6121
|
-
facebook_id?: string | undefined;
|
|
6122
|
-
google_id?: string | undefined;
|
|
6123
|
-
gamecenter_id?: string | undefined;
|
|
6124
|
-
steam_id?: string | undefined;
|
|
6125
5985
|
online?: boolean | undefined;
|
|
5986
|
+
phone_number?: string | undefined;
|
|
6126
5987
|
edge_count?: number | undefined;
|
|
6127
5988
|
create_time?: Date | undefined;
|
|
6128
5989
|
update_time?: Date | undefined;
|
|
6129
|
-
apple_id?: string | undefined;
|
|
6130
5990
|
about_me?: string | undefined;
|
|
6131
5991
|
join_time?: Date | undefined;
|
|
6132
5992
|
is_mobile?: boolean | undefined;
|
|
@@ -6145,15 +6005,11 @@ export declare const GroupUserList_GroupUser: {
|
|
|
6145
6005
|
location?: string | undefined;
|
|
6146
6006
|
timezone?: string | undefined;
|
|
6147
6007
|
metadata?: string | undefined;
|
|
6148
|
-
facebook_id?: string | undefined;
|
|
6149
|
-
google_id?: string | undefined;
|
|
6150
|
-
gamecenter_id?: string | undefined;
|
|
6151
|
-
steam_id?: string | undefined;
|
|
6152
6008
|
online?: boolean | undefined;
|
|
6009
|
+
phone_number?: string | undefined;
|
|
6153
6010
|
edge_count?: number | undefined;
|
|
6154
6011
|
create_time?: Date | undefined;
|
|
6155
6012
|
update_time?: Date | undefined;
|
|
6156
|
-
apple_id?: string | undefined;
|
|
6157
6013
|
about_me?: string | undefined;
|
|
6158
6014
|
join_time?: Date | undefined;
|
|
6159
6015
|
is_mobile?: boolean | undefined;
|
|
@@ -6169,15 +6025,11 @@ export declare const GroupUserList_GroupUser: {
|
|
|
6169
6025
|
location?: string | undefined;
|
|
6170
6026
|
timezone?: string | undefined;
|
|
6171
6027
|
metadata?: string | undefined;
|
|
6172
|
-
facebook_id?: string | undefined;
|
|
6173
|
-
google_id?: string | undefined;
|
|
6174
|
-
gamecenter_id?: string | undefined;
|
|
6175
|
-
steam_id?: string | undefined;
|
|
6176
6028
|
online?: boolean | undefined;
|
|
6029
|
+
phone_number?: string | undefined;
|
|
6177
6030
|
edge_count?: number | undefined;
|
|
6178
6031
|
create_time?: Date | undefined;
|
|
6179
6032
|
update_time?: Date | undefined;
|
|
6180
|
-
apple_id?: string | undefined;
|
|
6181
6033
|
about_me?: string | undefined;
|
|
6182
6034
|
join_time?: Date | undefined;
|
|
6183
6035
|
is_mobile?: boolean | undefined;
|
|
@@ -6634,15 +6486,11 @@ export declare const ClanUserList: {
|
|
|
6634
6486
|
location?: string | undefined;
|
|
6635
6487
|
timezone?: string | undefined;
|
|
6636
6488
|
metadata?: string | undefined;
|
|
6637
|
-
facebook_id?: string | undefined;
|
|
6638
|
-
google_id?: string | undefined;
|
|
6639
|
-
gamecenter_id?: string | undefined;
|
|
6640
|
-
steam_id?: string | undefined;
|
|
6641
6489
|
online?: boolean | undefined;
|
|
6490
|
+
phone_number?: string | undefined;
|
|
6642
6491
|
edge_count?: number | undefined;
|
|
6643
6492
|
create_time?: Date | undefined;
|
|
6644
6493
|
update_time?: Date | undefined;
|
|
6645
|
-
apple_id?: string | undefined;
|
|
6646
6494
|
about_me?: string | undefined;
|
|
6647
6495
|
join_time?: Date | undefined;
|
|
6648
6496
|
is_mobile?: boolean | undefined;
|
|
@@ -6668,15 +6516,11 @@ export declare const ClanUserList: {
|
|
|
6668
6516
|
location?: string | undefined;
|
|
6669
6517
|
timezone?: string | undefined;
|
|
6670
6518
|
metadata?: string | undefined;
|
|
6671
|
-
facebook_id?: string | undefined;
|
|
6672
|
-
google_id?: string | undefined;
|
|
6673
|
-
gamecenter_id?: string | undefined;
|
|
6674
|
-
steam_id?: string | undefined;
|
|
6675
6519
|
online?: boolean | undefined;
|
|
6520
|
+
phone_number?: string | undefined;
|
|
6676
6521
|
edge_count?: number | undefined;
|
|
6677
6522
|
create_time?: Date | undefined;
|
|
6678
6523
|
update_time?: Date | undefined;
|
|
6679
|
-
apple_id?: string | undefined;
|
|
6680
6524
|
about_me?: string | undefined;
|
|
6681
6525
|
join_time?: Date | undefined;
|
|
6682
6526
|
is_mobile?: boolean | undefined;
|
|
@@ -6698,15 +6542,11 @@ export declare const ClanUserList: {
|
|
|
6698
6542
|
location?: string | undefined;
|
|
6699
6543
|
timezone?: string | undefined;
|
|
6700
6544
|
metadata?: string | undefined;
|
|
6701
|
-
facebook_id?: string | undefined;
|
|
6702
|
-
google_id?: string | undefined;
|
|
6703
|
-
gamecenter_id?: string | undefined;
|
|
6704
|
-
steam_id?: string | undefined;
|
|
6705
6545
|
online?: boolean | undefined;
|
|
6546
|
+
phone_number?: string | undefined;
|
|
6706
6547
|
edge_count?: number | undefined;
|
|
6707
6548
|
create_time?: Date | undefined;
|
|
6708
6549
|
update_time?: Date | undefined;
|
|
6709
|
-
apple_id?: string | undefined;
|
|
6710
6550
|
about_me?: string | undefined;
|
|
6711
6551
|
join_time?: Date | undefined;
|
|
6712
6552
|
is_mobile?: boolean | undefined;
|
|
@@ -6728,15 +6568,11 @@ export declare const ClanUserList: {
|
|
|
6728
6568
|
location?: string | undefined;
|
|
6729
6569
|
timezone?: string | undefined;
|
|
6730
6570
|
metadata?: string | undefined;
|
|
6731
|
-
facebook_id?: string | undefined;
|
|
6732
|
-
google_id?: string | undefined;
|
|
6733
|
-
gamecenter_id?: string | undefined;
|
|
6734
|
-
steam_id?: string | undefined;
|
|
6735
6571
|
online?: boolean | undefined;
|
|
6572
|
+
phone_number?: string | undefined;
|
|
6736
6573
|
edge_count?: number | undefined;
|
|
6737
6574
|
create_time?: Date | undefined;
|
|
6738
6575
|
update_time?: Date | undefined;
|
|
6739
|
-
apple_id?: string | undefined;
|
|
6740
6576
|
about_me?: string | undefined;
|
|
6741
6577
|
join_time?: Date | undefined;
|
|
6742
6578
|
is_mobile?: boolean | undefined;
|
|
@@ -6752,15 +6588,11 @@ export declare const ClanUserList: {
|
|
|
6752
6588
|
location?: string | undefined;
|
|
6753
6589
|
timezone?: string | undefined;
|
|
6754
6590
|
metadata?: string | undefined;
|
|
6755
|
-
facebook_id?: string | undefined;
|
|
6756
|
-
google_id?: string | undefined;
|
|
6757
|
-
gamecenter_id?: string | undefined;
|
|
6758
|
-
steam_id?: string | undefined;
|
|
6759
6591
|
online?: boolean | undefined;
|
|
6592
|
+
phone_number?: string | undefined;
|
|
6760
6593
|
edge_count?: number | undefined;
|
|
6761
6594
|
create_time?: Date | undefined;
|
|
6762
6595
|
update_time?: Date | undefined;
|
|
6763
|
-
apple_id?: string | undefined;
|
|
6764
6596
|
about_me?: string | undefined;
|
|
6765
6597
|
join_time?: Date | undefined;
|
|
6766
6598
|
is_mobile?: boolean | undefined;
|
|
@@ -6782,15 +6614,11 @@ export declare const ClanUserList: {
|
|
|
6782
6614
|
location?: string | undefined;
|
|
6783
6615
|
timezone?: string | undefined;
|
|
6784
6616
|
metadata?: string | undefined;
|
|
6785
|
-
facebook_id?: string | undefined;
|
|
6786
|
-
google_id?: string | undefined;
|
|
6787
|
-
gamecenter_id?: string | undefined;
|
|
6788
|
-
steam_id?: string | undefined;
|
|
6789
6617
|
online?: boolean | undefined;
|
|
6618
|
+
phone_number?: string | undefined;
|
|
6790
6619
|
edge_count?: number | undefined;
|
|
6791
6620
|
create_time?: Date | undefined;
|
|
6792
6621
|
update_time?: Date | undefined;
|
|
6793
|
-
apple_id?: string | undefined;
|
|
6794
6622
|
about_me?: string | undefined;
|
|
6795
6623
|
join_time?: Date | undefined;
|
|
6796
6624
|
is_mobile?: boolean | undefined;
|
|
@@ -6817,15 +6645,11 @@ export declare const ClanUserList: {
|
|
|
6817
6645
|
location?: string | undefined;
|
|
6818
6646
|
timezone?: string | undefined;
|
|
6819
6647
|
metadata?: string | undefined;
|
|
6820
|
-
facebook_id?: string | undefined;
|
|
6821
|
-
google_id?: string | undefined;
|
|
6822
|
-
gamecenter_id?: string | undefined;
|
|
6823
|
-
steam_id?: string | undefined;
|
|
6824
6648
|
online?: boolean | undefined;
|
|
6649
|
+
phone_number?: string | undefined;
|
|
6825
6650
|
edge_count?: number | undefined;
|
|
6826
6651
|
create_time?: Date | undefined;
|
|
6827
6652
|
update_time?: Date | undefined;
|
|
6828
|
-
apple_id?: string | undefined;
|
|
6829
6653
|
about_me?: string | undefined;
|
|
6830
6654
|
join_time?: Date | undefined;
|
|
6831
6655
|
is_mobile?: boolean | undefined;
|
|
@@ -6851,15 +6675,11 @@ export declare const ClanUserList: {
|
|
|
6851
6675
|
location?: string | undefined;
|
|
6852
6676
|
timezone?: string | undefined;
|
|
6853
6677
|
metadata?: string | undefined;
|
|
6854
|
-
facebook_id?: string | undefined;
|
|
6855
|
-
google_id?: string | undefined;
|
|
6856
|
-
gamecenter_id?: string | undefined;
|
|
6857
|
-
steam_id?: string | undefined;
|
|
6858
6678
|
online?: boolean | undefined;
|
|
6679
|
+
phone_number?: string | undefined;
|
|
6859
6680
|
edge_count?: number | undefined;
|
|
6860
6681
|
create_time?: Date | undefined;
|
|
6861
6682
|
update_time?: Date | undefined;
|
|
6862
|
-
apple_id?: string | undefined;
|
|
6863
6683
|
about_me?: string | undefined;
|
|
6864
6684
|
join_time?: Date | undefined;
|
|
6865
6685
|
is_mobile?: boolean | undefined;
|
|
@@ -6881,15 +6701,11 @@ export declare const ClanUserList: {
|
|
|
6881
6701
|
location?: string | undefined;
|
|
6882
6702
|
timezone?: string | undefined;
|
|
6883
6703
|
metadata?: string | undefined;
|
|
6884
|
-
facebook_id?: string | undefined;
|
|
6885
|
-
google_id?: string | undefined;
|
|
6886
|
-
gamecenter_id?: string | undefined;
|
|
6887
|
-
steam_id?: string | undefined;
|
|
6888
6704
|
online?: boolean | undefined;
|
|
6705
|
+
phone_number?: string | undefined;
|
|
6889
6706
|
edge_count?: number | undefined;
|
|
6890
6707
|
create_time?: Date | undefined;
|
|
6891
6708
|
update_time?: Date | undefined;
|
|
6892
|
-
apple_id?: string | undefined;
|
|
6893
6709
|
about_me?: string | undefined;
|
|
6894
6710
|
join_time?: Date | undefined;
|
|
6895
6711
|
is_mobile?: boolean | undefined;
|
|
@@ -6911,15 +6727,11 @@ export declare const ClanUserList: {
|
|
|
6911
6727
|
location?: string | undefined;
|
|
6912
6728
|
timezone?: string | undefined;
|
|
6913
6729
|
metadata?: string | undefined;
|
|
6914
|
-
facebook_id?: string | undefined;
|
|
6915
|
-
google_id?: string | undefined;
|
|
6916
|
-
gamecenter_id?: string | undefined;
|
|
6917
|
-
steam_id?: string | undefined;
|
|
6918
6730
|
online?: boolean | undefined;
|
|
6731
|
+
phone_number?: string | undefined;
|
|
6919
6732
|
edge_count?: number | undefined;
|
|
6920
6733
|
create_time?: Date | undefined;
|
|
6921
6734
|
update_time?: Date | undefined;
|
|
6922
|
-
apple_id?: string | undefined;
|
|
6923
6735
|
about_me?: string | undefined;
|
|
6924
6736
|
join_time?: Date | undefined;
|
|
6925
6737
|
is_mobile?: boolean | undefined;
|
|
@@ -6935,15 +6747,11 @@ export declare const ClanUserList: {
|
|
|
6935
6747
|
location?: string | undefined;
|
|
6936
6748
|
timezone?: string | undefined;
|
|
6937
6749
|
metadata?: string | undefined;
|
|
6938
|
-
facebook_id?: string | undefined;
|
|
6939
|
-
google_id?: string | undefined;
|
|
6940
|
-
gamecenter_id?: string | undefined;
|
|
6941
|
-
steam_id?: string | undefined;
|
|
6942
6750
|
online?: boolean | undefined;
|
|
6751
|
+
phone_number?: string | undefined;
|
|
6943
6752
|
edge_count?: number | undefined;
|
|
6944
6753
|
create_time?: Date | undefined;
|
|
6945
6754
|
update_time?: Date | undefined;
|
|
6946
|
-
apple_id?: string | undefined;
|
|
6947
6755
|
about_me?: string | undefined;
|
|
6948
6756
|
join_time?: Date | undefined;
|
|
6949
6757
|
is_mobile?: boolean | undefined;
|
|
@@ -6965,15 +6773,11 @@ export declare const ClanUserList: {
|
|
|
6965
6773
|
location?: string | undefined;
|
|
6966
6774
|
timezone?: string | undefined;
|
|
6967
6775
|
metadata?: string | undefined;
|
|
6968
|
-
facebook_id?: string | undefined;
|
|
6969
|
-
google_id?: string | undefined;
|
|
6970
|
-
gamecenter_id?: string | undefined;
|
|
6971
|
-
steam_id?: string | undefined;
|
|
6972
6776
|
online?: boolean | undefined;
|
|
6777
|
+
phone_number?: string | undefined;
|
|
6973
6778
|
edge_count?: number | undefined;
|
|
6974
6779
|
create_time?: Date | undefined;
|
|
6975
6780
|
update_time?: Date | undefined;
|
|
6976
|
-
apple_id?: string | undefined;
|
|
6977
6781
|
about_me?: string | undefined;
|
|
6978
6782
|
join_time?: Date | undefined;
|
|
6979
6783
|
is_mobile?: boolean | undefined;
|
|
@@ -7005,15 +6809,11 @@ export declare const ClanUserList_ClanUser: {
|
|
|
7005
6809
|
location?: string | undefined;
|
|
7006
6810
|
timezone?: string | undefined;
|
|
7007
6811
|
metadata?: string | undefined;
|
|
7008
|
-
facebook_id?: string | undefined;
|
|
7009
|
-
google_id?: string | undefined;
|
|
7010
|
-
gamecenter_id?: string | undefined;
|
|
7011
|
-
steam_id?: string | undefined;
|
|
7012
6812
|
online?: boolean | undefined;
|
|
6813
|
+
phone_number?: string | undefined;
|
|
7013
6814
|
edge_count?: number | undefined;
|
|
7014
6815
|
create_time?: Date | undefined;
|
|
7015
6816
|
update_time?: Date | undefined;
|
|
7016
|
-
apple_id?: string | undefined;
|
|
7017
6817
|
about_me?: string | undefined;
|
|
7018
6818
|
join_time?: Date | undefined;
|
|
7019
6819
|
is_mobile?: boolean | undefined;
|
|
@@ -7035,15 +6835,11 @@ export declare const ClanUserList_ClanUser: {
|
|
|
7035
6835
|
location?: string | undefined;
|
|
7036
6836
|
timezone?: string | undefined;
|
|
7037
6837
|
metadata?: string | undefined;
|
|
7038
|
-
facebook_id?: string | undefined;
|
|
7039
|
-
google_id?: string | undefined;
|
|
7040
|
-
gamecenter_id?: string | undefined;
|
|
7041
|
-
steam_id?: string | undefined;
|
|
7042
6838
|
online?: boolean | undefined;
|
|
6839
|
+
phone_number?: string | undefined;
|
|
7043
6840
|
edge_count?: number | undefined;
|
|
7044
6841
|
create_time?: Date | undefined;
|
|
7045
6842
|
update_time?: Date | undefined;
|
|
7046
|
-
apple_id?: string | undefined;
|
|
7047
6843
|
about_me?: string | undefined;
|
|
7048
6844
|
join_time?: Date | undefined;
|
|
7049
6845
|
is_mobile?: boolean | undefined;
|
|
@@ -7059,15 +6855,11 @@ export declare const ClanUserList_ClanUser: {
|
|
|
7059
6855
|
location?: string | undefined;
|
|
7060
6856
|
timezone?: string | undefined;
|
|
7061
6857
|
metadata?: string | undefined;
|
|
7062
|
-
facebook_id?: string | undefined;
|
|
7063
|
-
google_id?: string | undefined;
|
|
7064
|
-
gamecenter_id?: string | undefined;
|
|
7065
|
-
steam_id?: string | undefined;
|
|
7066
6858
|
online?: boolean | undefined;
|
|
6859
|
+
phone_number?: string | undefined;
|
|
7067
6860
|
edge_count?: number | undefined;
|
|
7068
6861
|
create_time?: Date | undefined;
|
|
7069
6862
|
update_time?: Date | undefined;
|
|
7070
|
-
apple_id?: string | undefined;
|
|
7071
6863
|
about_me?: string | undefined;
|
|
7072
6864
|
join_time?: Date | undefined;
|
|
7073
6865
|
is_mobile?: boolean | undefined;
|
|
@@ -7090,15 +6882,11 @@ export declare const ClanUserList_ClanUser: {
|
|
|
7090
6882
|
location?: string | undefined;
|
|
7091
6883
|
timezone?: string | undefined;
|
|
7092
6884
|
metadata?: string | undefined;
|
|
7093
|
-
facebook_id?: string | undefined;
|
|
7094
|
-
google_id?: string | undefined;
|
|
7095
|
-
gamecenter_id?: string | undefined;
|
|
7096
|
-
steam_id?: string | undefined;
|
|
7097
6885
|
online?: boolean | undefined;
|
|
6886
|
+
phone_number?: string | undefined;
|
|
7098
6887
|
edge_count?: number | undefined;
|
|
7099
6888
|
create_time?: Date | undefined;
|
|
7100
6889
|
update_time?: Date | undefined;
|
|
7101
|
-
apple_id?: string | undefined;
|
|
7102
6890
|
about_me?: string | undefined;
|
|
7103
6891
|
join_time?: Date | undefined;
|
|
7104
6892
|
is_mobile?: boolean | undefined;
|
|
@@ -7120,15 +6908,11 @@ export declare const ClanUserList_ClanUser: {
|
|
|
7120
6908
|
location?: string | undefined;
|
|
7121
6909
|
timezone?: string | undefined;
|
|
7122
6910
|
metadata?: string | undefined;
|
|
7123
|
-
facebook_id?: string | undefined;
|
|
7124
|
-
google_id?: string | undefined;
|
|
7125
|
-
gamecenter_id?: string | undefined;
|
|
7126
|
-
steam_id?: string | undefined;
|
|
7127
6911
|
online?: boolean | undefined;
|
|
6912
|
+
phone_number?: string | undefined;
|
|
7128
6913
|
edge_count?: number | undefined;
|
|
7129
6914
|
create_time?: Date | undefined;
|
|
7130
6915
|
update_time?: Date | undefined;
|
|
7131
|
-
apple_id?: string | undefined;
|
|
7132
6916
|
about_me?: string | undefined;
|
|
7133
6917
|
join_time?: Date | undefined;
|
|
7134
6918
|
is_mobile?: boolean | undefined;
|
|
@@ -7144,15 +6928,11 @@ export declare const ClanUserList_ClanUser: {
|
|
|
7144
6928
|
location?: string | undefined;
|
|
7145
6929
|
timezone?: string | undefined;
|
|
7146
6930
|
metadata?: string | undefined;
|
|
7147
|
-
facebook_id?: string | undefined;
|
|
7148
|
-
google_id?: string | undefined;
|
|
7149
|
-
gamecenter_id?: string | undefined;
|
|
7150
|
-
steam_id?: string | undefined;
|
|
7151
6931
|
online?: boolean | undefined;
|
|
6932
|
+
phone_number?: string | undefined;
|
|
7152
6933
|
edge_count?: number | undefined;
|
|
7153
6934
|
create_time?: Date | undefined;
|
|
7154
6935
|
update_time?: Date | undefined;
|
|
7155
|
-
apple_id?: string | undefined;
|
|
7156
6936
|
about_me?: string | undefined;
|
|
7157
6937
|
join_time?: Date | undefined;
|
|
7158
6938
|
is_mobile?: boolean | undefined;
|
|
@@ -8945,6 +8725,7 @@ export declare const UpdateAccountRequest: {
|
|
|
8945
8725
|
logo?: string | undefined;
|
|
8946
8726
|
splash_screen?: string | undefined;
|
|
8947
8727
|
encrypt_private_key?: string | undefined;
|
|
8728
|
+
email?: string | undefined;
|
|
8948
8729
|
} & {
|
|
8949
8730
|
username?: string | undefined;
|
|
8950
8731
|
display_name?: string | undefined;
|
|
@@ -8957,6 +8738,7 @@ export declare const UpdateAccountRequest: {
|
|
|
8957
8738
|
logo?: string | undefined;
|
|
8958
8739
|
splash_screen?: string | undefined;
|
|
8959
8740
|
encrypt_private_key?: string | undefined;
|
|
8741
|
+
email?: string | undefined;
|
|
8960
8742
|
} & { [K in Exclude<keyof I, keyof UpdateAccountRequest>]: never; }>(base?: I | undefined): UpdateAccountRequest;
|
|
8961
8743
|
fromPartial<I_1 extends {
|
|
8962
8744
|
username?: string | undefined;
|
|
@@ -8970,6 +8752,7 @@ export declare const UpdateAccountRequest: {
|
|
|
8970
8752
|
logo?: string | undefined;
|
|
8971
8753
|
splash_screen?: string | undefined;
|
|
8972
8754
|
encrypt_private_key?: string | undefined;
|
|
8755
|
+
email?: string | undefined;
|
|
8973
8756
|
} & {
|
|
8974
8757
|
username?: string | undefined;
|
|
8975
8758
|
display_name?: string | undefined;
|
|
@@ -8982,6 +8765,7 @@ export declare const UpdateAccountRequest: {
|
|
|
8982
8765
|
logo?: string | undefined;
|
|
8983
8766
|
splash_screen?: string | undefined;
|
|
8984
8767
|
encrypt_private_key?: string | undefined;
|
|
8768
|
+
email?: string | undefined;
|
|
8985
8769
|
} & { [K_1 in Exclude<keyof I_1, keyof UpdateAccountRequest>]: never; }>(object: I_1): UpdateAccountRequest;
|
|
8986
8770
|
};
|
|
8987
8771
|
export declare const UpdateGroupRequest: {
|
|
@@ -9058,15 +8842,11 @@ export declare const User: {
|
|
|
9058
8842
|
location?: string | undefined;
|
|
9059
8843
|
timezone?: string | undefined;
|
|
9060
8844
|
metadata?: string | undefined;
|
|
9061
|
-
facebook_id?: string | undefined;
|
|
9062
|
-
google_id?: string | undefined;
|
|
9063
|
-
gamecenter_id?: string | undefined;
|
|
9064
|
-
steam_id?: string | undefined;
|
|
9065
8845
|
online?: boolean | undefined;
|
|
8846
|
+
phone_number?: string | undefined;
|
|
9066
8847
|
edge_count?: number | undefined;
|
|
9067
8848
|
create_time?: Date | undefined;
|
|
9068
8849
|
update_time?: Date | undefined;
|
|
9069
|
-
apple_id?: string | undefined;
|
|
9070
8850
|
about_me?: string | undefined;
|
|
9071
8851
|
join_time?: Date | undefined;
|
|
9072
8852
|
is_mobile?: boolean | undefined;
|
|
@@ -9082,15 +8862,11 @@ export declare const User: {
|
|
|
9082
8862
|
location?: string | undefined;
|
|
9083
8863
|
timezone?: string | undefined;
|
|
9084
8864
|
metadata?: string | undefined;
|
|
9085
|
-
facebook_id?: string | undefined;
|
|
9086
|
-
google_id?: string | undefined;
|
|
9087
|
-
gamecenter_id?: string | undefined;
|
|
9088
|
-
steam_id?: string | undefined;
|
|
9089
8865
|
online?: boolean | undefined;
|
|
8866
|
+
phone_number?: string | undefined;
|
|
9090
8867
|
edge_count?: number | undefined;
|
|
9091
8868
|
create_time?: Date | undefined;
|
|
9092
8869
|
update_time?: Date | undefined;
|
|
9093
|
-
apple_id?: string | undefined;
|
|
9094
8870
|
about_me?: string | undefined;
|
|
9095
8871
|
join_time?: Date | undefined;
|
|
9096
8872
|
is_mobile?: boolean | undefined;
|
|
@@ -9107,15 +8883,11 @@ export declare const User: {
|
|
|
9107
8883
|
location?: string | undefined;
|
|
9108
8884
|
timezone?: string | undefined;
|
|
9109
8885
|
metadata?: string | undefined;
|
|
9110
|
-
facebook_id?: string | undefined;
|
|
9111
|
-
google_id?: string | undefined;
|
|
9112
|
-
gamecenter_id?: string | undefined;
|
|
9113
|
-
steam_id?: string | undefined;
|
|
9114
8886
|
online?: boolean | undefined;
|
|
8887
|
+
phone_number?: string | undefined;
|
|
9115
8888
|
edge_count?: number | undefined;
|
|
9116
8889
|
create_time?: Date | undefined;
|
|
9117
8890
|
update_time?: Date | undefined;
|
|
9118
|
-
apple_id?: string | undefined;
|
|
9119
8891
|
about_me?: string | undefined;
|
|
9120
8892
|
join_time?: Date | undefined;
|
|
9121
8893
|
is_mobile?: boolean | undefined;
|
|
@@ -9131,15 +8903,11 @@ export declare const User: {
|
|
|
9131
8903
|
location?: string | undefined;
|
|
9132
8904
|
timezone?: string | undefined;
|
|
9133
8905
|
metadata?: string | undefined;
|
|
9134
|
-
facebook_id?: string | undefined;
|
|
9135
|
-
google_id?: string | undefined;
|
|
9136
|
-
gamecenter_id?: string | undefined;
|
|
9137
|
-
steam_id?: string | undefined;
|
|
9138
8906
|
online?: boolean | undefined;
|
|
8907
|
+
phone_number?: string | undefined;
|
|
9139
8908
|
edge_count?: number | undefined;
|
|
9140
8909
|
create_time?: Date | undefined;
|
|
9141
8910
|
update_time?: Date | undefined;
|
|
9142
|
-
apple_id?: string | undefined;
|
|
9143
8911
|
about_me?: string | undefined;
|
|
9144
8912
|
join_time?: Date | undefined;
|
|
9145
8913
|
is_mobile?: boolean | undefined;
|
|
@@ -9467,15 +9235,11 @@ export declare const Users: {
|
|
|
9467
9235
|
location?: string | undefined;
|
|
9468
9236
|
timezone?: string | undefined;
|
|
9469
9237
|
metadata?: string | undefined;
|
|
9470
|
-
facebook_id?: string | undefined;
|
|
9471
|
-
google_id?: string | undefined;
|
|
9472
|
-
gamecenter_id?: string | undefined;
|
|
9473
|
-
steam_id?: string | undefined;
|
|
9474
9238
|
online?: boolean | undefined;
|
|
9239
|
+
phone_number?: string | undefined;
|
|
9475
9240
|
edge_count?: number | undefined;
|
|
9476
9241
|
create_time?: Date | undefined;
|
|
9477
9242
|
update_time?: Date | undefined;
|
|
9478
|
-
apple_id?: string | undefined;
|
|
9479
9243
|
about_me?: string | undefined;
|
|
9480
9244
|
join_time?: Date | undefined;
|
|
9481
9245
|
is_mobile?: boolean | undefined;
|
|
@@ -9493,15 +9257,11 @@ export declare const Users: {
|
|
|
9493
9257
|
location?: string | undefined;
|
|
9494
9258
|
timezone?: string | undefined;
|
|
9495
9259
|
metadata?: string | undefined;
|
|
9496
|
-
facebook_id?: string | undefined;
|
|
9497
|
-
google_id?: string | undefined;
|
|
9498
|
-
gamecenter_id?: string | undefined;
|
|
9499
|
-
steam_id?: string | undefined;
|
|
9500
9260
|
online?: boolean | undefined;
|
|
9261
|
+
phone_number?: string | undefined;
|
|
9501
9262
|
edge_count?: number | undefined;
|
|
9502
9263
|
create_time?: Date | undefined;
|
|
9503
9264
|
update_time?: Date | undefined;
|
|
9504
|
-
apple_id?: string | undefined;
|
|
9505
9265
|
about_me?: string | undefined;
|
|
9506
9266
|
join_time?: Date | undefined;
|
|
9507
9267
|
is_mobile?: boolean | undefined;
|
|
@@ -9517,15 +9277,11 @@ export declare const Users: {
|
|
|
9517
9277
|
location?: string | undefined;
|
|
9518
9278
|
timezone?: string | undefined;
|
|
9519
9279
|
metadata?: string | undefined;
|
|
9520
|
-
facebook_id?: string | undefined;
|
|
9521
|
-
google_id?: string | undefined;
|
|
9522
|
-
gamecenter_id?: string | undefined;
|
|
9523
|
-
steam_id?: string | undefined;
|
|
9524
9280
|
online?: boolean | undefined;
|
|
9281
|
+
phone_number?: string | undefined;
|
|
9525
9282
|
edge_count?: number | undefined;
|
|
9526
9283
|
create_time?: Date | undefined;
|
|
9527
9284
|
update_time?: Date | undefined;
|
|
9528
|
-
apple_id?: string | undefined;
|
|
9529
9285
|
about_me?: string | undefined;
|
|
9530
9286
|
join_time?: Date | undefined;
|
|
9531
9287
|
is_mobile?: boolean | undefined;
|
|
@@ -9541,15 +9297,11 @@ export declare const Users: {
|
|
|
9541
9297
|
location?: string | undefined;
|
|
9542
9298
|
timezone?: string | undefined;
|
|
9543
9299
|
metadata?: string | undefined;
|
|
9544
|
-
facebook_id?: string | undefined;
|
|
9545
|
-
google_id?: string | undefined;
|
|
9546
|
-
gamecenter_id?: string | undefined;
|
|
9547
|
-
steam_id?: string | undefined;
|
|
9548
9300
|
online?: boolean | undefined;
|
|
9301
|
+
phone_number?: string | undefined;
|
|
9549
9302
|
edge_count?: number | undefined;
|
|
9550
9303
|
create_time?: Date | undefined;
|
|
9551
9304
|
update_time?: Date | undefined;
|
|
9552
|
-
apple_id?: string | undefined;
|
|
9553
9305
|
about_me?: string | undefined;
|
|
9554
9306
|
join_time?: Date | undefined;
|
|
9555
9307
|
is_mobile?: boolean | undefined;
|
|
@@ -9565,15 +9317,11 @@ export declare const Users: {
|
|
|
9565
9317
|
location?: string | undefined;
|
|
9566
9318
|
timezone?: string | undefined;
|
|
9567
9319
|
metadata?: string | undefined;
|
|
9568
|
-
facebook_id?: string | undefined;
|
|
9569
|
-
google_id?: string | undefined;
|
|
9570
|
-
gamecenter_id?: string | undefined;
|
|
9571
|
-
steam_id?: string | undefined;
|
|
9572
9320
|
online?: boolean | undefined;
|
|
9321
|
+
phone_number?: string | undefined;
|
|
9573
9322
|
edge_count?: number | undefined;
|
|
9574
9323
|
create_time?: Date | undefined;
|
|
9575
9324
|
update_time?: Date | undefined;
|
|
9576
|
-
apple_id?: string | undefined;
|
|
9577
9325
|
about_me?: string | undefined;
|
|
9578
9326
|
join_time?: Date | undefined;
|
|
9579
9327
|
is_mobile?: boolean | undefined;
|
|
@@ -9592,15 +9340,11 @@ export declare const Users: {
|
|
|
9592
9340
|
location?: string | undefined;
|
|
9593
9341
|
timezone?: string | undefined;
|
|
9594
9342
|
metadata?: string | undefined;
|
|
9595
|
-
facebook_id?: string | undefined;
|
|
9596
|
-
google_id?: string | undefined;
|
|
9597
|
-
gamecenter_id?: string | undefined;
|
|
9598
|
-
steam_id?: string | undefined;
|
|
9599
9343
|
online?: boolean | undefined;
|
|
9344
|
+
phone_number?: string | undefined;
|
|
9600
9345
|
edge_count?: number | undefined;
|
|
9601
9346
|
create_time?: Date | undefined;
|
|
9602
9347
|
update_time?: Date | undefined;
|
|
9603
|
-
apple_id?: string | undefined;
|
|
9604
9348
|
about_me?: string | undefined;
|
|
9605
9349
|
join_time?: Date | undefined;
|
|
9606
9350
|
is_mobile?: boolean | undefined;
|
|
@@ -9618,15 +9362,11 @@ export declare const Users: {
|
|
|
9618
9362
|
location?: string | undefined;
|
|
9619
9363
|
timezone?: string | undefined;
|
|
9620
9364
|
metadata?: string | undefined;
|
|
9621
|
-
facebook_id?: string | undefined;
|
|
9622
|
-
google_id?: string | undefined;
|
|
9623
|
-
gamecenter_id?: string | undefined;
|
|
9624
|
-
steam_id?: string | undefined;
|
|
9625
9365
|
online?: boolean | undefined;
|
|
9366
|
+
phone_number?: string | undefined;
|
|
9626
9367
|
edge_count?: number | undefined;
|
|
9627
9368
|
create_time?: Date | undefined;
|
|
9628
9369
|
update_time?: Date | undefined;
|
|
9629
|
-
apple_id?: string | undefined;
|
|
9630
9370
|
about_me?: string | undefined;
|
|
9631
9371
|
join_time?: Date | undefined;
|
|
9632
9372
|
is_mobile?: boolean | undefined;
|
|
@@ -9642,15 +9382,11 @@ export declare const Users: {
|
|
|
9642
9382
|
location?: string | undefined;
|
|
9643
9383
|
timezone?: string | undefined;
|
|
9644
9384
|
metadata?: string | undefined;
|
|
9645
|
-
facebook_id?: string | undefined;
|
|
9646
|
-
google_id?: string | undefined;
|
|
9647
|
-
gamecenter_id?: string | undefined;
|
|
9648
|
-
steam_id?: string | undefined;
|
|
9649
9385
|
online?: boolean | undefined;
|
|
9386
|
+
phone_number?: string | undefined;
|
|
9650
9387
|
edge_count?: number | undefined;
|
|
9651
9388
|
create_time?: Date | undefined;
|
|
9652
9389
|
update_time?: Date | undefined;
|
|
9653
|
-
apple_id?: string | undefined;
|
|
9654
9390
|
about_me?: string | undefined;
|
|
9655
9391
|
join_time?: Date | undefined;
|
|
9656
9392
|
is_mobile?: boolean | undefined;
|
|
@@ -9666,15 +9402,11 @@ export declare const Users: {
|
|
|
9666
9402
|
location?: string | undefined;
|
|
9667
9403
|
timezone?: string | undefined;
|
|
9668
9404
|
metadata?: string | undefined;
|
|
9669
|
-
facebook_id?: string | undefined;
|
|
9670
|
-
google_id?: string | undefined;
|
|
9671
|
-
gamecenter_id?: string | undefined;
|
|
9672
|
-
steam_id?: string | undefined;
|
|
9673
9405
|
online?: boolean | undefined;
|
|
9406
|
+
phone_number?: string | undefined;
|
|
9674
9407
|
edge_count?: number | undefined;
|
|
9675
9408
|
create_time?: Date | undefined;
|
|
9676
9409
|
update_time?: Date | undefined;
|
|
9677
|
-
apple_id?: string | undefined;
|
|
9678
9410
|
about_me?: string | undefined;
|
|
9679
9411
|
join_time?: Date | undefined;
|
|
9680
9412
|
is_mobile?: boolean | undefined;
|
|
@@ -9690,15 +9422,11 @@ export declare const Users: {
|
|
|
9690
9422
|
location?: string | undefined;
|
|
9691
9423
|
timezone?: string | undefined;
|
|
9692
9424
|
metadata?: string | undefined;
|
|
9693
|
-
facebook_id?: string | undefined;
|
|
9694
|
-
google_id?: string | undefined;
|
|
9695
|
-
gamecenter_id?: string | undefined;
|
|
9696
|
-
steam_id?: string | undefined;
|
|
9697
9425
|
online?: boolean | undefined;
|
|
9426
|
+
phone_number?: string | undefined;
|
|
9698
9427
|
edge_count?: number | undefined;
|
|
9699
9428
|
create_time?: Date | undefined;
|
|
9700
9429
|
update_time?: Date | undefined;
|
|
9701
|
-
apple_id?: string | undefined;
|
|
9702
9430
|
about_me?: string | undefined;
|
|
9703
9431
|
join_time?: Date | undefined;
|
|
9704
9432
|
is_mobile?: boolean | undefined;
|
|
@@ -12186,15 +11914,19 @@ export declare const DeleteChannelDescRequest: {
|
|
|
12186
11914
|
fromJSON(object: any): DeleteChannelDescRequest;
|
|
12187
11915
|
toJSON(message: DeleteChannelDescRequest): unknown;
|
|
12188
11916
|
create<I extends {
|
|
11917
|
+
clan_id?: string | undefined;
|
|
12189
11918
|
channel_id?: string | undefined;
|
|
12190
11919
|
} & {
|
|
11920
|
+
clan_id?: string | undefined;
|
|
12191
11921
|
channel_id?: string | undefined;
|
|
12192
|
-
} & { [K in Exclude<keyof I,
|
|
11922
|
+
} & { [K in Exclude<keyof I, keyof DeleteChannelDescRequest>]: never; }>(base?: I | undefined): DeleteChannelDescRequest;
|
|
12193
11923
|
fromPartial<I_1 extends {
|
|
11924
|
+
clan_id?: string | undefined;
|
|
12194
11925
|
channel_id?: string | undefined;
|
|
12195
11926
|
} & {
|
|
11927
|
+
clan_id?: string | undefined;
|
|
12196
11928
|
channel_id?: string | undefined;
|
|
12197
|
-
} & { [K_1 in Exclude<keyof I_1,
|
|
11929
|
+
} & { [K_1 in Exclude<keyof I_1, keyof DeleteChannelDescRequest>]: never; }>(object: I_1): DeleteChannelDescRequest;
|
|
12198
11930
|
};
|
|
12199
11931
|
export declare const UpdateChannelDescRequest: {
|
|
12200
11932
|
encode(message: UpdateChannelDescRequest, writer?: _m0.Writer): _m0.Writer;
|
|
@@ -12202,6 +11934,7 @@ export declare const UpdateChannelDescRequest: {
|
|
|
12202
11934
|
fromJSON(object: any): UpdateChannelDescRequest;
|
|
12203
11935
|
toJSON(message: UpdateChannelDescRequest): unknown;
|
|
12204
11936
|
create<I extends {
|
|
11937
|
+
clan_id?: string | undefined;
|
|
12205
11938
|
channel_id?: string | undefined;
|
|
12206
11939
|
channel_label?: string | undefined;
|
|
12207
11940
|
category_id?: string | undefined;
|
|
@@ -12210,6 +11943,7 @@ export declare const UpdateChannelDescRequest: {
|
|
|
12210
11943
|
age_restricted?: number | undefined;
|
|
12211
11944
|
e2ee?: number | undefined;
|
|
12212
11945
|
} & {
|
|
11946
|
+
clan_id?: string | undefined;
|
|
12213
11947
|
channel_id?: string | undefined;
|
|
12214
11948
|
channel_label?: string | undefined;
|
|
12215
11949
|
category_id?: string | undefined;
|
|
@@ -12219,6 +11953,7 @@ export declare const UpdateChannelDescRequest: {
|
|
|
12219
11953
|
e2ee?: number | undefined;
|
|
12220
11954
|
} & { [K in Exclude<keyof I, keyof UpdateChannelDescRequest>]: never; }>(base?: I | undefined): UpdateChannelDescRequest;
|
|
12221
11955
|
fromPartial<I_1 extends {
|
|
11956
|
+
clan_id?: string | undefined;
|
|
12222
11957
|
channel_id?: string | undefined;
|
|
12223
11958
|
channel_label?: string | undefined;
|
|
12224
11959
|
category_id?: string | undefined;
|
|
@@ -12227,6 +11962,7 @@ export declare const UpdateChannelDescRequest: {
|
|
|
12227
11962
|
age_restricted?: number | undefined;
|
|
12228
11963
|
e2ee?: number | undefined;
|
|
12229
11964
|
} & {
|
|
11965
|
+
clan_id?: string | undefined;
|
|
12230
11966
|
channel_id?: string | undefined;
|
|
12231
11967
|
channel_label?: string | undefined;
|
|
12232
11968
|
category_id?: string | undefined;
|
|
@@ -12242,22 +11978,26 @@ export declare const ChangeChannelPrivateRequest: {
|
|
|
12242
11978
|
fromJSON(object: any): ChangeChannelPrivateRequest;
|
|
12243
11979
|
toJSON(message: ChangeChannelPrivateRequest): unknown;
|
|
12244
11980
|
create<I extends {
|
|
11981
|
+
clan_id?: string | undefined;
|
|
12245
11982
|
channel_id?: string | undefined;
|
|
12246
11983
|
channel_private?: number | undefined;
|
|
12247
11984
|
user_ids?: string[] | undefined;
|
|
12248
11985
|
role_ids?: string[] | undefined;
|
|
12249
11986
|
} & {
|
|
11987
|
+
clan_id?: string | undefined;
|
|
12250
11988
|
channel_id?: string | undefined;
|
|
12251
11989
|
channel_private?: number | undefined;
|
|
12252
11990
|
user_ids?: (string[] & string[] & { [K in Exclude<keyof I["user_ids"], keyof string[]>]: never; }) | undefined;
|
|
12253
11991
|
role_ids?: (string[] & string[] & { [K_1 in Exclude<keyof I["role_ids"], keyof string[]>]: never; }) | undefined;
|
|
12254
11992
|
} & { [K_2 in Exclude<keyof I, keyof ChangeChannelPrivateRequest>]: never; }>(base?: I | undefined): ChangeChannelPrivateRequest;
|
|
12255
11993
|
fromPartial<I_1 extends {
|
|
11994
|
+
clan_id?: string | undefined;
|
|
12256
11995
|
channel_id?: string | undefined;
|
|
12257
11996
|
channel_private?: number | undefined;
|
|
12258
11997
|
user_ids?: string[] | undefined;
|
|
12259
11998
|
role_ids?: string[] | undefined;
|
|
12260
11999
|
} & {
|
|
12000
|
+
clan_id?: string | undefined;
|
|
12261
12001
|
channel_id?: string | undefined;
|
|
12262
12002
|
channel_private?: number | undefined;
|
|
12263
12003
|
user_ids?: (string[] & string[] & { [K_3 in Exclude<keyof I_1["user_ids"], keyof string[]>]: never; }) | undefined;
|
|
@@ -12330,15 +12070,19 @@ export declare const LeaveThreadRequest: {
|
|
|
12330
12070
|
fromJSON(object: any): LeaveThreadRequest;
|
|
12331
12071
|
toJSON(message: LeaveThreadRequest): unknown;
|
|
12332
12072
|
create<I extends {
|
|
12073
|
+
clan_id?: string | undefined;
|
|
12333
12074
|
channel_id?: string | undefined;
|
|
12334
12075
|
} & {
|
|
12076
|
+
clan_id?: string | undefined;
|
|
12335
12077
|
channel_id?: string | undefined;
|
|
12336
|
-
} & { [K in Exclude<keyof I,
|
|
12078
|
+
} & { [K in Exclude<keyof I, keyof LeaveThreadRequest>]: never; }>(base?: I | undefined): LeaveThreadRequest;
|
|
12337
12079
|
fromPartial<I_1 extends {
|
|
12080
|
+
clan_id?: string | undefined;
|
|
12338
12081
|
channel_id?: string | undefined;
|
|
12339
12082
|
} & {
|
|
12083
|
+
clan_id?: string | undefined;
|
|
12340
12084
|
channel_id?: string | undefined;
|
|
12341
|
-
} & { [K_1 in Exclude<keyof I_1,
|
|
12085
|
+
} & { [K_1 in Exclude<keyof I_1, keyof LeaveThreadRequest>]: never; }>(object: I_1): LeaveThreadRequest;
|
|
12342
12086
|
};
|
|
12343
12087
|
export declare const Role: {
|
|
12344
12088
|
encode(message: Role, writer?: _m0.Writer): _m0.Writer;
|
|
@@ -15948,6 +15692,7 @@ export declare const RegistrationEmailRequest: {
|
|
|
15948
15692
|
create<I extends {
|
|
15949
15693
|
email?: string | undefined;
|
|
15950
15694
|
password?: string | undefined;
|
|
15695
|
+
old_password?: string | undefined;
|
|
15951
15696
|
username?: string | undefined;
|
|
15952
15697
|
display_name?: string | undefined;
|
|
15953
15698
|
avatar_url?: string | undefined;
|
|
@@ -15958,6 +15703,7 @@ export declare const RegistrationEmailRequest: {
|
|
|
15958
15703
|
} & {
|
|
15959
15704
|
email?: string | undefined;
|
|
15960
15705
|
password?: string | undefined;
|
|
15706
|
+
old_password?: string | undefined;
|
|
15961
15707
|
username?: string | undefined;
|
|
15962
15708
|
display_name?: string | undefined;
|
|
15963
15709
|
avatar_url?: string | undefined;
|
|
@@ -15971,6 +15717,7 @@ export declare const RegistrationEmailRequest: {
|
|
|
15971
15717
|
fromPartial<I_1 extends {
|
|
15972
15718
|
email?: string | undefined;
|
|
15973
15719
|
password?: string | undefined;
|
|
15720
|
+
old_password?: string | undefined;
|
|
15974
15721
|
username?: string | undefined;
|
|
15975
15722
|
display_name?: string | undefined;
|
|
15976
15723
|
avatar_url?: string | undefined;
|
|
@@ -15981,6 +15728,7 @@ export declare const RegistrationEmailRequest: {
|
|
|
15981
15728
|
} & {
|
|
15982
15729
|
email?: string | undefined;
|
|
15983
15730
|
password?: string | undefined;
|
|
15731
|
+
old_password?: string | undefined;
|
|
15984
15732
|
username?: string | undefined;
|
|
15985
15733
|
display_name?: string | undefined;
|
|
15986
15734
|
avatar_url?: string | undefined;
|
|
@@ -18065,15 +17813,11 @@ export declare const AllUserClans: {
|
|
|
18065
17813
|
location?: string | undefined;
|
|
18066
17814
|
timezone?: string | undefined;
|
|
18067
17815
|
metadata?: string | undefined;
|
|
18068
|
-
facebook_id?: string | undefined;
|
|
18069
|
-
google_id?: string | undefined;
|
|
18070
|
-
gamecenter_id?: string | undefined;
|
|
18071
|
-
steam_id?: string | undefined;
|
|
18072
17816
|
online?: boolean | undefined;
|
|
17817
|
+
phone_number?: string | undefined;
|
|
18073
17818
|
edge_count?: number | undefined;
|
|
18074
17819
|
create_time?: Date | undefined;
|
|
18075
17820
|
update_time?: Date | undefined;
|
|
18076
|
-
apple_id?: string | undefined;
|
|
18077
17821
|
about_me?: string | undefined;
|
|
18078
17822
|
join_time?: Date | undefined;
|
|
18079
17823
|
is_mobile?: boolean | undefined;
|
|
@@ -18091,15 +17835,11 @@ export declare const AllUserClans: {
|
|
|
18091
17835
|
location?: string | undefined;
|
|
18092
17836
|
timezone?: string | undefined;
|
|
18093
17837
|
metadata?: string | undefined;
|
|
18094
|
-
facebook_id?: string | undefined;
|
|
18095
|
-
google_id?: string | undefined;
|
|
18096
|
-
gamecenter_id?: string | undefined;
|
|
18097
|
-
steam_id?: string | undefined;
|
|
18098
17838
|
online?: boolean | undefined;
|
|
17839
|
+
phone_number?: string | undefined;
|
|
18099
17840
|
edge_count?: number | undefined;
|
|
18100
17841
|
create_time?: Date | undefined;
|
|
18101
17842
|
update_time?: Date | undefined;
|
|
18102
|
-
apple_id?: string | undefined;
|
|
18103
17843
|
about_me?: string | undefined;
|
|
18104
17844
|
join_time?: Date | undefined;
|
|
18105
17845
|
is_mobile?: boolean | undefined;
|
|
@@ -18115,15 +17855,11 @@ export declare const AllUserClans: {
|
|
|
18115
17855
|
location?: string | undefined;
|
|
18116
17856
|
timezone?: string | undefined;
|
|
18117
17857
|
metadata?: string | undefined;
|
|
18118
|
-
facebook_id?: string | undefined;
|
|
18119
|
-
google_id?: string | undefined;
|
|
18120
|
-
gamecenter_id?: string | undefined;
|
|
18121
|
-
steam_id?: string | undefined;
|
|
18122
17858
|
online?: boolean | undefined;
|
|
17859
|
+
phone_number?: string | undefined;
|
|
18123
17860
|
edge_count?: number | undefined;
|
|
18124
17861
|
create_time?: Date | undefined;
|
|
18125
17862
|
update_time?: Date | undefined;
|
|
18126
|
-
apple_id?: string | undefined;
|
|
18127
17863
|
about_me?: string | undefined;
|
|
18128
17864
|
join_time?: Date | undefined;
|
|
18129
17865
|
is_mobile?: boolean | undefined;
|
|
@@ -18139,15 +17875,11 @@ export declare const AllUserClans: {
|
|
|
18139
17875
|
location?: string | undefined;
|
|
18140
17876
|
timezone?: string | undefined;
|
|
18141
17877
|
metadata?: string | undefined;
|
|
18142
|
-
facebook_id?: string | undefined;
|
|
18143
|
-
google_id?: string | undefined;
|
|
18144
|
-
gamecenter_id?: string | undefined;
|
|
18145
|
-
steam_id?: string | undefined;
|
|
18146
17878
|
online?: boolean | undefined;
|
|
17879
|
+
phone_number?: string | undefined;
|
|
18147
17880
|
edge_count?: number | undefined;
|
|
18148
17881
|
create_time?: Date | undefined;
|
|
18149
17882
|
update_time?: Date | undefined;
|
|
18150
|
-
apple_id?: string | undefined;
|
|
18151
17883
|
about_me?: string | undefined;
|
|
18152
17884
|
join_time?: Date | undefined;
|
|
18153
17885
|
is_mobile?: boolean | undefined;
|
|
@@ -18163,15 +17895,11 @@ export declare const AllUserClans: {
|
|
|
18163
17895
|
location?: string | undefined;
|
|
18164
17896
|
timezone?: string | undefined;
|
|
18165
17897
|
metadata?: string | undefined;
|
|
18166
|
-
facebook_id?: string | undefined;
|
|
18167
|
-
google_id?: string | undefined;
|
|
18168
|
-
gamecenter_id?: string | undefined;
|
|
18169
|
-
steam_id?: string | undefined;
|
|
18170
17898
|
online?: boolean | undefined;
|
|
17899
|
+
phone_number?: string | undefined;
|
|
18171
17900
|
edge_count?: number | undefined;
|
|
18172
17901
|
create_time?: Date | undefined;
|
|
18173
17902
|
update_time?: Date | undefined;
|
|
18174
|
-
apple_id?: string | undefined;
|
|
18175
17903
|
about_me?: string | undefined;
|
|
18176
17904
|
join_time?: Date | undefined;
|
|
18177
17905
|
is_mobile?: boolean | undefined;
|
|
@@ -18190,15 +17918,11 @@ export declare const AllUserClans: {
|
|
|
18190
17918
|
location?: string | undefined;
|
|
18191
17919
|
timezone?: string | undefined;
|
|
18192
17920
|
metadata?: string | undefined;
|
|
18193
|
-
facebook_id?: string | undefined;
|
|
18194
|
-
google_id?: string | undefined;
|
|
18195
|
-
gamecenter_id?: string | undefined;
|
|
18196
|
-
steam_id?: string | undefined;
|
|
18197
17921
|
online?: boolean | undefined;
|
|
17922
|
+
phone_number?: string | undefined;
|
|
18198
17923
|
edge_count?: number | undefined;
|
|
18199
17924
|
create_time?: Date | undefined;
|
|
18200
17925
|
update_time?: Date | undefined;
|
|
18201
|
-
apple_id?: string | undefined;
|
|
18202
17926
|
about_me?: string | undefined;
|
|
18203
17927
|
join_time?: Date | undefined;
|
|
18204
17928
|
is_mobile?: boolean | undefined;
|
|
@@ -18216,15 +17940,11 @@ export declare const AllUserClans: {
|
|
|
18216
17940
|
location?: string | undefined;
|
|
18217
17941
|
timezone?: string | undefined;
|
|
18218
17942
|
metadata?: string | undefined;
|
|
18219
|
-
facebook_id?: string | undefined;
|
|
18220
|
-
google_id?: string | undefined;
|
|
18221
|
-
gamecenter_id?: string | undefined;
|
|
18222
|
-
steam_id?: string | undefined;
|
|
18223
17943
|
online?: boolean | undefined;
|
|
17944
|
+
phone_number?: string | undefined;
|
|
18224
17945
|
edge_count?: number | undefined;
|
|
18225
17946
|
create_time?: Date | undefined;
|
|
18226
17947
|
update_time?: Date | undefined;
|
|
18227
|
-
apple_id?: string | undefined;
|
|
18228
17948
|
about_me?: string | undefined;
|
|
18229
17949
|
join_time?: Date | undefined;
|
|
18230
17950
|
is_mobile?: boolean | undefined;
|
|
@@ -18240,15 +17960,11 @@ export declare const AllUserClans: {
|
|
|
18240
17960
|
location?: string | undefined;
|
|
18241
17961
|
timezone?: string | undefined;
|
|
18242
17962
|
metadata?: string | undefined;
|
|
18243
|
-
facebook_id?: string | undefined;
|
|
18244
|
-
google_id?: string | undefined;
|
|
18245
|
-
gamecenter_id?: string | undefined;
|
|
18246
|
-
steam_id?: string | undefined;
|
|
18247
17963
|
online?: boolean | undefined;
|
|
17964
|
+
phone_number?: string | undefined;
|
|
18248
17965
|
edge_count?: number | undefined;
|
|
18249
17966
|
create_time?: Date | undefined;
|
|
18250
17967
|
update_time?: Date | undefined;
|
|
18251
|
-
apple_id?: string | undefined;
|
|
18252
17968
|
about_me?: string | undefined;
|
|
18253
17969
|
join_time?: Date | undefined;
|
|
18254
17970
|
is_mobile?: boolean | undefined;
|
|
@@ -18264,15 +17980,11 @@ export declare const AllUserClans: {
|
|
|
18264
17980
|
location?: string | undefined;
|
|
18265
17981
|
timezone?: string | undefined;
|
|
18266
17982
|
metadata?: string | undefined;
|
|
18267
|
-
facebook_id?: string | undefined;
|
|
18268
|
-
google_id?: string | undefined;
|
|
18269
|
-
gamecenter_id?: string | undefined;
|
|
18270
|
-
steam_id?: string | undefined;
|
|
18271
17983
|
online?: boolean | undefined;
|
|
17984
|
+
phone_number?: string | undefined;
|
|
18272
17985
|
edge_count?: number | undefined;
|
|
18273
17986
|
create_time?: Date | undefined;
|
|
18274
17987
|
update_time?: Date | undefined;
|
|
18275
|
-
apple_id?: string | undefined;
|
|
18276
17988
|
about_me?: string | undefined;
|
|
18277
17989
|
join_time?: Date | undefined;
|
|
18278
17990
|
is_mobile?: boolean | undefined;
|
|
@@ -18288,15 +18000,11 @@ export declare const AllUserClans: {
|
|
|
18288
18000
|
location?: string | undefined;
|
|
18289
18001
|
timezone?: string | undefined;
|
|
18290
18002
|
metadata?: string | undefined;
|
|
18291
|
-
facebook_id?: string | undefined;
|
|
18292
|
-
google_id?: string | undefined;
|
|
18293
|
-
gamecenter_id?: string | undefined;
|
|
18294
|
-
steam_id?: string | undefined;
|
|
18295
18003
|
online?: boolean | undefined;
|
|
18004
|
+
phone_number?: string | undefined;
|
|
18296
18005
|
edge_count?: number | undefined;
|
|
18297
18006
|
create_time?: Date | undefined;
|
|
18298
18007
|
update_time?: Date | undefined;
|
|
18299
|
-
apple_id?: string | undefined;
|
|
18300
18008
|
about_me?: string | undefined;
|
|
18301
18009
|
join_time?: Date | undefined;
|
|
18302
18010
|
is_mobile?: boolean | undefined;
|
|
@@ -20082,15 +19790,19 @@ export declare const RemoveFavoriteChannelRequest: {
|
|
|
20082
19790
|
fromJSON(object: any): RemoveFavoriteChannelRequest;
|
|
20083
19791
|
toJSON(message: RemoveFavoriteChannelRequest): unknown;
|
|
20084
19792
|
create<I extends {
|
|
19793
|
+
clan_id?: string | undefined;
|
|
20085
19794
|
channel_id?: string | undefined;
|
|
20086
19795
|
} & {
|
|
19796
|
+
clan_id?: string | undefined;
|
|
20087
19797
|
channel_id?: string | undefined;
|
|
20088
|
-
} & { [K in Exclude<keyof I,
|
|
19798
|
+
} & { [K in Exclude<keyof I, keyof RemoveFavoriteChannelRequest>]: never; }>(base?: I | undefined): RemoveFavoriteChannelRequest;
|
|
20089
19799
|
fromPartial<I_1 extends {
|
|
19800
|
+
clan_id?: string | undefined;
|
|
20090
19801
|
channel_id?: string | undefined;
|
|
20091
19802
|
} & {
|
|
19803
|
+
clan_id?: string | undefined;
|
|
20092
19804
|
channel_id?: string | undefined;
|
|
20093
|
-
} & { [K_1 in Exclude<keyof I_1,
|
|
19805
|
+
} & { [K_1 in Exclude<keyof I_1, keyof RemoveFavoriteChannelRequest>]: never; }>(object: I_1): RemoveFavoriteChannelRequest;
|
|
20094
19806
|
};
|
|
20095
19807
|
export declare const AddFavoriteChannelResponse: {
|
|
20096
19808
|
encode(message: AddFavoriteChannelResponse, writer?: _m0.Writer): _m0.Writer;
|
|
@@ -24486,12 +24198,14 @@ export declare const AccountEmail: {
|
|
|
24486
24198
|
create<I extends {
|
|
24487
24199
|
email?: string | undefined;
|
|
24488
24200
|
password?: string | undefined;
|
|
24201
|
+
prev_email?: string | undefined;
|
|
24489
24202
|
vars?: {
|
|
24490
24203
|
[x: string]: string | undefined;
|
|
24491
24204
|
} | undefined;
|
|
24492
24205
|
} & {
|
|
24493
24206
|
email?: string | undefined;
|
|
24494
24207
|
password?: string | undefined;
|
|
24208
|
+
prev_email?: string | undefined;
|
|
24495
24209
|
vars?: ({
|
|
24496
24210
|
[x: string]: string | undefined;
|
|
24497
24211
|
} & {
|
|
@@ -24501,12 +24215,14 @@ export declare const AccountEmail: {
|
|
|
24501
24215
|
fromPartial<I_1 extends {
|
|
24502
24216
|
email?: string | undefined;
|
|
24503
24217
|
password?: string | undefined;
|
|
24218
|
+
prev_email?: string | undefined;
|
|
24504
24219
|
vars?: {
|
|
24505
24220
|
[x: string]: string | undefined;
|
|
24506
24221
|
} | undefined;
|
|
24507
24222
|
} & {
|
|
24508
24223
|
email?: string | undefined;
|
|
24509
24224
|
password?: string | undefined;
|
|
24225
|
+
prev_email?: string | undefined;
|
|
24510
24226
|
vars?: ({
|
|
24511
24227
|
[x: string]: string | undefined;
|
|
24512
24228
|
} & {
|
|
@@ -24540,12 +24256,12 @@ export declare const AccountMezon: {
|
|
|
24540
24256
|
fromJSON(object: any): AccountMezon;
|
|
24541
24257
|
toJSON(message: AccountMezon): unknown;
|
|
24542
24258
|
create<I extends {
|
|
24543
|
-
|
|
24259
|
+
phone_number?: string | undefined;
|
|
24544
24260
|
vars?: {
|
|
24545
24261
|
[x: string]: string | undefined;
|
|
24546
24262
|
} | undefined;
|
|
24547
24263
|
} & {
|
|
24548
|
-
|
|
24264
|
+
phone_number?: string | undefined;
|
|
24549
24265
|
vars?: ({
|
|
24550
24266
|
[x: string]: string | undefined;
|
|
24551
24267
|
} & {
|
|
@@ -24553,12 +24269,12 @@ export declare const AccountMezon: {
|
|
|
24553
24269
|
} & { [K in Exclude<keyof I["vars"], string | number>]: never; }) | undefined;
|
|
24554
24270
|
} & { [K_1 in Exclude<keyof I, keyof AccountMezon>]: never; }>(base?: I | undefined): AccountMezon;
|
|
24555
24271
|
fromPartial<I_1 extends {
|
|
24556
|
-
|
|
24272
|
+
phone_number?: string | undefined;
|
|
24557
24273
|
vars?: {
|
|
24558
24274
|
[x: string]: string | undefined;
|
|
24559
24275
|
} | undefined;
|
|
24560
24276
|
} & {
|
|
24561
|
-
|
|
24277
|
+
phone_number?: string | undefined;
|
|
24562
24278
|
vars?: ({
|
|
24563
24279
|
[x: string]: string | undefined;
|
|
24564
24280
|
} & {
|
|
@@ -24586,6 +24302,30 @@ export declare const AccountMezon_VarsEntry: {
|
|
|
24586
24302
|
value?: string | undefined;
|
|
24587
24303
|
} & { [K_1 in Exclude<keyof I_1, keyof AccountMezon_VarsEntry>]: never; }>(object: I_1): AccountMezon_VarsEntry;
|
|
24588
24304
|
};
|
|
24305
|
+
export declare const LinkAccountConfirmRequest: {
|
|
24306
|
+
encode(message: LinkAccountConfirmRequest, writer?: _m0.Writer): _m0.Writer;
|
|
24307
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): LinkAccountConfirmRequest;
|
|
24308
|
+
fromJSON(object: any): LinkAccountConfirmRequest;
|
|
24309
|
+
toJSON(message: LinkAccountConfirmRequest): unknown;
|
|
24310
|
+
create<I extends {
|
|
24311
|
+
req_id?: string | undefined;
|
|
24312
|
+
status?: number | undefined;
|
|
24313
|
+
otp_code?: string | undefined;
|
|
24314
|
+
} & {
|
|
24315
|
+
req_id?: string | undefined;
|
|
24316
|
+
status?: number | undefined;
|
|
24317
|
+
otp_code?: string | undefined;
|
|
24318
|
+
} & { [K in Exclude<keyof I, keyof LinkAccountConfirmRequest>]: never; }>(base?: I | undefined): LinkAccountConfirmRequest;
|
|
24319
|
+
fromPartial<I_1 extends {
|
|
24320
|
+
req_id?: string | undefined;
|
|
24321
|
+
status?: number | undefined;
|
|
24322
|
+
otp_code?: string | undefined;
|
|
24323
|
+
} & {
|
|
24324
|
+
req_id?: string | undefined;
|
|
24325
|
+
status?: number | undefined;
|
|
24326
|
+
otp_code?: string | undefined;
|
|
24327
|
+
} & { [K_1 in Exclude<keyof I_1, keyof LinkAccountConfirmRequest>]: never; }>(object: I_1): LinkAccountConfirmRequest;
|
|
24328
|
+
};
|
|
24589
24329
|
export declare const QuickMenuAccess: {
|
|
24590
24330
|
encode(message: QuickMenuAccess, writer?: _m0.Writer): _m0.Writer;
|
|
24591
24331
|
decode(input: _m0.Reader | Uint8Array, length?: number): QuickMenuAccess;
|