mezon-js-protobuf 1.8.32 → 1.8.34
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 -272
- package/dist/mezon-js-protobuf/api/api.d.ts +182 -475
- 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 {
|
|
@@ -409,15 +411,6 @@ export interface FriendList {
|
|
|
409
411
|
cursor: string;
|
|
410
412
|
}
|
|
411
413
|
/** Fetch a batch of zero or more users from the server. */
|
|
412
|
-
export interface GetUsersRequest {
|
|
413
|
-
/** The account id of a user. */
|
|
414
|
-
ids: string[];
|
|
415
|
-
/** The account username of a user. */
|
|
416
|
-
usernames: string[];
|
|
417
|
-
/** The Facebook ID of a user. */
|
|
418
|
-
facebook_ids: string[];
|
|
419
|
-
}
|
|
420
|
-
/** Fetch a batch of zero or more users from the server. */
|
|
421
414
|
export interface UpdateUsersRequest {
|
|
422
415
|
/** The account username of a user. */
|
|
423
416
|
display_name: string;
|
|
@@ -823,6 +816,8 @@ export interface UpdateAccountRequest {
|
|
|
823
816
|
splash_screen: string;
|
|
824
817
|
/** e2ee encrypt private key */
|
|
825
818
|
encrypt_private_key: string;
|
|
819
|
+
/** The email of the user's account. */
|
|
820
|
+
email: string | undefined;
|
|
826
821
|
}
|
|
827
822
|
/** Update fields in a given group. */
|
|
828
823
|
export interface UpdateGroupRequest {
|
|
@@ -863,24 +858,16 @@ export interface User {
|
|
|
863
858
|
timezone: string;
|
|
864
859
|
/** Additional information stored as a JSON object. */
|
|
865
860
|
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
861
|
/** Indicates whether the user is currently online. */
|
|
875
862
|
online: boolean;
|
|
863
|
+
/** The phone number */
|
|
864
|
+
phone_number: string;
|
|
876
865
|
/** Number of related edges to this user. */
|
|
877
866
|
edge_count: number;
|
|
878
867
|
/** The UNIX time (for gRPC clients) or ISO string (for REST clients) when the user was created. */
|
|
879
868
|
create_time: Date | undefined;
|
|
880
869
|
/** The UNIX time (for gRPC clients) or ISO string (for REST clients) when the user was last updated. */
|
|
881
870
|
update_time: Date | undefined;
|
|
882
|
-
/** The Apple Sign In ID in the user's account. */
|
|
883
|
-
apple_id: string;
|
|
884
871
|
/** About me */
|
|
885
872
|
about_me: string;
|
|
886
873
|
/** Join time */
|
|
@@ -1350,11 +1337,15 @@ export interface CreateChannelDescRequest {
|
|
|
1350
1337
|
}
|
|
1351
1338
|
/** Delete a channel the user has access to. */
|
|
1352
1339
|
export interface DeleteChannelDescRequest {
|
|
1340
|
+
/** The clan id */
|
|
1341
|
+
clan_id: string;
|
|
1353
1342
|
/** The id of a channel. */
|
|
1354
1343
|
channel_id: string;
|
|
1355
1344
|
}
|
|
1356
1345
|
/** Update fields in a given channel. */
|
|
1357
1346
|
export interface UpdateChannelDescRequest {
|
|
1347
|
+
/** The clan ID */
|
|
1348
|
+
clan_id: string;
|
|
1358
1349
|
/** The ID of the channel to update. */
|
|
1359
1350
|
channel_id: string;
|
|
1360
1351
|
/** The channel lable */
|
|
@@ -1372,6 +1363,8 @@ export interface UpdateChannelDescRequest {
|
|
|
1372
1363
|
}
|
|
1373
1364
|
/** Update fields in a given channel. */
|
|
1374
1365
|
export interface ChangeChannelPrivateRequest {
|
|
1366
|
+
/** The clan ID */
|
|
1367
|
+
clan_id: string;
|
|
1375
1368
|
/** The ID of the channel to update. */
|
|
1376
1369
|
channel_id: string;
|
|
1377
1370
|
/** The channel private */
|
|
@@ -1404,6 +1397,7 @@ export interface RemoveClanUsersRequest {
|
|
|
1404
1397
|
}
|
|
1405
1398
|
/** Leave a channel. */
|
|
1406
1399
|
export interface LeaveThreadRequest {
|
|
1400
|
+
clan_id: string;
|
|
1407
1401
|
/** The channel ID to leave. */
|
|
1408
1402
|
channel_id: string;
|
|
1409
1403
|
}
|
|
@@ -1916,6 +1910,8 @@ export interface RegistrationEmailRequest {
|
|
|
1916
1910
|
email: string;
|
|
1917
1911
|
/** A password for the user account. */
|
|
1918
1912
|
password: string;
|
|
1913
|
+
/** A old password for the user account. */
|
|
1914
|
+
old_password: string;
|
|
1919
1915
|
/** Set the username on the account at register. Must be unique. */
|
|
1920
1916
|
username: string;
|
|
1921
1917
|
/** Display name */
|
|
@@ -2571,6 +2567,7 @@ export interface AddFavoriteChannelRequest {
|
|
|
2571
2567
|
clan_id: string;
|
|
2572
2568
|
}
|
|
2573
2569
|
export interface RemoveFavoriteChannelRequest {
|
|
2570
|
+
clan_id: string;
|
|
2574
2571
|
channel_id: string;
|
|
2575
2572
|
}
|
|
2576
2573
|
export interface AddFavoriteChannelResponse {
|
|
@@ -3093,6 +3090,8 @@ export interface AccountEmail {
|
|
|
3093
3090
|
email: string;
|
|
3094
3091
|
/** A password for the user account. */
|
|
3095
3092
|
password: string;
|
|
3093
|
+
/** Prev email */
|
|
3094
|
+
prev_email: string;
|
|
3096
3095
|
/** Extra information that will be bundled in the session token. */
|
|
3097
3096
|
vars: {
|
|
3098
3097
|
[key: string]: string;
|
|
@@ -3104,8 +3103,8 @@ export interface AccountEmail_VarsEntry {
|
|
|
3104
3103
|
}
|
|
3105
3104
|
/** Send a Mezon token to the server. Used with authenticate/link/unlink. */
|
|
3106
3105
|
export interface AccountMezon {
|
|
3107
|
-
/** The
|
|
3108
|
-
|
|
3106
|
+
/** The phone number. */
|
|
3107
|
+
phone_number: string;
|
|
3109
3108
|
/** Extra information that will be bundled in the session token. */
|
|
3110
3109
|
vars: {
|
|
3111
3110
|
[key: string]: string;
|
|
@@ -3115,6 +3114,14 @@ export interface AccountMezon_VarsEntry {
|
|
|
3115
3114
|
key: string;
|
|
3116
3115
|
value: string;
|
|
3117
3116
|
}
|
|
3117
|
+
export interface LinkAccountConfirmRequest {
|
|
3118
|
+
/** The request id */
|
|
3119
|
+
req_id: string;
|
|
3120
|
+
/** Status */
|
|
3121
|
+
status: number;
|
|
3122
|
+
/** The confirm code */
|
|
3123
|
+
otp_code: string;
|
|
3124
|
+
}
|
|
3118
3125
|
export interface QuickMenuAccess {
|
|
3119
3126
|
id: string;
|
|
3120
3127
|
bot_id: string;
|
|
@@ -3169,15 +3176,11 @@ export declare const Account: {
|
|
|
3169
3176
|
location?: string | undefined;
|
|
3170
3177
|
timezone?: string | undefined;
|
|
3171
3178
|
metadata?: string | undefined;
|
|
3172
|
-
facebook_id?: string | undefined;
|
|
3173
|
-
google_id?: string | undefined;
|
|
3174
|
-
gamecenter_id?: string | undefined;
|
|
3175
|
-
steam_id?: string | undefined;
|
|
3176
3179
|
online?: boolean | undefined;
|
|
3180
|
+
phone_number?: string | undefined;
|
|
3177
3181
|
edge_count?: number | undefined;
|
|
3178
3182
|
create_time?: Date | undefined;
|
|
3179
3183
|
update_time?: Date | undefined;
|
|
3180
|
-
apple_id?: string | undefined;
|
|
3181
3184
|
about_me?: string | undefined;
|
|
3182
3185
|
join_time?: Date | undefined;
|
|
3183
3186
|
is_mobile?: boolean | undefined;
|
|
@@ -3193,6 +3196,7 @@ export declare const Account: {
|
|
|
3193
3196
|
logo?: string | undefined;
|
|
3194
3197
|
splash_screen?: string | undefined;
|
|
3195
3198
|
encrypt_private_key?: string | undefined;
|
|
3199
|
+
password_setted?: boolean | undefined;
|
|
3196
3200
|
} & {
|
|
3197
3201
|
user?: ({
|
|
3198
3202
|
id?: string | undefined;
|
|
@@ -3203,15 +3207,11 @@ export declare const Account: {
|
|
|
3203
3207
|
location?: string | undefined;
|
|
3204
3208
|
timezone?: string | undefined;
|
|
3205
3209
|
metadata?: string | undefined;
|
|
3206
|
-
facebook_id?: string | undefined;
|
|
3207
|
-
google_id?: string | undefined;
|
|
3208
|
-
gamecenter_id?: string | undefined;
|
|
3209
|
-
steam_id?: string | undefined;
|
|
3210
3210
|
online?: boolean | undefined;
|
|
3211
|
+
phone_number?: string | undefined;
|
|
3211
3212
|
edge_count?: number | undefined;
|
|
3212
3213
|
create_time?: Date | undefined;
|
|
3213
3214
|
update_time?: Date | undefined;
|
|
3214
|
-
apple_id?: string | undefined;
|
|
3215
3215
|
about_me?: string | undefined;
|
|
3216
3216
|
join_time?: Date | undefined;
|
|
3217
3217
|
is_mobile?: boolean | undefined;
|
|
@@ -3227,15 +3227,11 @@ export declare const Account: {
|
|
|
3227
3227
|
location?: string | undefined;
|
|
3228
3228
|
timezone?: string | undefined;
|
|
3229
3229
|
metadata?: string | undefined;
|
|
3230
|
-
facebook_id?: string | undefined;
|
|
3231
|
-
google_id?: string | undefined;
|
|
3232
|
-
gamecenter_id?: string | undefined;
|
|
3233
|
-
steam_id?: string | undefined;
|
|
3234
3230
|
online?: boolean | undefined;
|
|
3231
|
+
phone_number?: string | undefined;
|
|
3235
3232
|
edge_count?: number | undefined;
|
|
3236
3233
|
create_time?: Date | undefined;
|
|
3237
3234
|
update_time?: Date | undefined;
|
|
3238
|
-
apple_id?: string | undefined;
|
|
3239
3235
|
about_me?: string | undefined;
|
|
3240
3236
|
join_time?: Date | undefined;
|
|
3241
3237
|
is_mobile?: boolean | undefined;
|
|
@@ -3251,6 +3247,7 @@ export declare const Account: {
|
|
|
3251
3247
|
logo?: string | undefined;
|
|
3252
3248
|
splash_screen?: string | undefined;
|
|
3253
3249
|
encrypt_private_key?: string | undefined;
|
|
3250
|
+
password_setted?: boolean | undefined;
|
|
3254
3251
|
} & { [K_2 in Exclude<keyof I, keyof Account>]: never; }>(base?: I | undefined): Account;
|
|
3255
3252
|
fromPartial<I_1 extends {
|
|
3256
3253
|
user?: {
|
|
@@ -3262,15 +3259,11 @@ export declare const Account: {
|
|
|
3262
3259
|
location?: string | undefined;
|
|
3263
3260
|
timezone?: string | undefined;
|
|
3264
3261
|
metadata?: string | undefined;
|
|
3265
|
-
facebook_id?: string | undefined;
|
|
3266
|
-
google_id?: string | undefined;
|
|
3267
|
-
gamecenter_id?: string | undefined;
|
|
3268
|
-
steam_id?: string | undefined;
|
|
3269
3262
|
online?: boolean | undefined;
|
|
3263
|
+
phone_number?: string | undefined;
|
|
3270
3264
|
edge_count?: number | undefined;
|
|
3271
3265
|
create_time?: Date | undefined;
|
|
3272
3266
|
update_time?: Date | undefined;
|
|
3273
|
-
apple_id?: string | undefined;
|
|
3274
3267
|
about_me?: string | undefined;
|
|
3275
3268
|
join_time?: Date | undefined;
|
|
3276
3269
|
is_mobile?: boolean | undefined;
|
|
@@ -3286,6 +3279,7 @@ export declare const Account: {
|
|
|
3286
3279
|
logo?: string | undefined;
|
|
3287
3280
|
splash_screen?: string | undefined;
|
|
3288
3281
|
encrypt_private_key?: string | undefined;
|
|
3282
|
+
password_setted?: boolean | undefined;
|
|
3289
3283
|
} & {
|
|
3290
3284
|
user?: ({
|
|
3291
3285
|
id?: string | undefined;
|
|
@@ -3296,15 +3290,11 @@ export declare const Account: {
|
|
|
3296
3290
|
location?: string | undefined;
|
|
3297
3291
|
timezone?: string | undefined;
|
|
3298
3292
|
metadata?: string | undefined;
|
|
3299
|
-
facebook_id?: string | undefined;
|
|
3300
|
-
google_id?: string | undefined;
|
|
3301
|
-
gamecenter_id?: string | undefined;
|
|
3302
|
-
steam_id?: string | undefined;
|
|
3303
3293
|
online?: boolean | undefined;
|
|
3294
|
+
phone_number?: string | undefined;
|
|
3304
3295
|
edge_count?: number | undefined;
|
|
3305
3296
|
create_time?: Date | undefined;
|
|
3306
3297
|
update_time?: Date | undefined;
|
|
3307
|
-
apple_id?: string | undefined;
|
|
3308
3298
|
about_me?: string | undefined;
|
|
3309
3299
|
join_time?: Date | undefined;
|
|
3310
3300
|
is_mobile?: boolean | undefined;
|
|
@@ -3320,15 +3310,11 @@ export declare const Account: {
|
|
|
3320
3310
|
location?: string | undefined;
|
|
3321
3311
|
timezone?: string | undefined;
|
|
3322
3312
|
metadata?: string | undefined;
|
|
3323
|
-
facebook_id?: string | undefined;
|
|
3324
|
-
google_id?: string | undefined;
|
|
3325
|
-
gamecenter_id?: string | undefined;
|
|
3326
|
-
steam_id?: string | undefined;
|
|
3327
3313
|
online?: boolean | undefined;
|
|
3314
|
+
phone_number?: string | undefined;
|
|
3328
3315
|
edge_count?: number | undefined;
|
|
3329
3316
|
create_time?: Date | undefined;
|
|
3330
3317
|
update_time?: Date | undefined;
|
|
3331
|
-
apple_id?: string | undefined;
|
|
3332
3318
|
about_me?: string | undefined;
|
|
3333
3319
|
join_time?: Date | undefined;
|
|
3334
3320
|
is_mobile?: boolean | undefined;
|
|
@@ -3344,6 +3330,7 @@ export declare const Account: {
|
|
|
3344
3330
|
logo?: string | undefined;
|
|
3345
3331
|
splash_screen?: string | undefined;
|
|
3346
3332
|
encrypt_private_key?: string | undefined;
|
|
3333
|
+
password_setted?: boolean | undefined;
|
|
3347
3334
|
} & { [K_5 in Exclude<keyof I_1, keyof Account>]: never; }>(object: I_1): Account;
|
|
3348
3335
|
};
|
|
3349
3336
|
export declare const AccountRefresh: {
|
|
@@ -4917,15 +4904,11 @@ export declare const Friend: {
|
|
|
4917
4904
|
location?: string | undefined;
|
|
4918
4905
|
timezone?: string | undefined;
|
|
4919
4906
|
metadata?: string | undefined;
|
|
4920
|
-
facebook_id?: string | undefined;
|
|
4921
|
-
google_id?: string | undefined;
|
|
4922
|
-
gamecenter_id?: string | undefined;
|
|
4923
|
-
steam_id?: string | undefined;
|
|
4924
4907
|
online?: boolean | undefined;
|
|
4908
|
+
phone_number?: string | undefined;
|
|
4925
4909
|
edge_count?: number | undefined;
|
|
4926
4910
|
create_time?: Date | undefined;
|
|
4927
4911
|
update_time?: Date | undefined;
|
|
4928
|
-
apple_id?: string | undefined;
|
|
4929
4912
|
about_me?: string | undefined;
|
|
4930
4913
|
join_time?: Date | undefined;
|
|
4931
4914
|
is_mobile?: boolean | undefined;
|
|
@@ -4946,15 +4929,11 @@ export declare const Friend: {
|
|
|
4946
4929
|
location?: string | undefined;
|
|
4947
4930
|
timezone?: string | undefined;
|
|
4948
4931
|
metadata?: string | undefined;
|
|
4949
|
-
facebook_id?: string | undefined;
|
|
4950
|
-
google_id?: string | undefined;
|
|
4951
|
-
gamecenter_id?: string | undefined;
|
|
4952
|
-
steam_id?: string | undefined;
|
|
4953
4932
|
online?: boolean | undefined;
|
|
4933
|
+
phone_number?: string | undefined;
|
|
4954
4934
|
edge_count?: number | undefined;
|
|
4955
4935
|
create_time?: Date | undefined;
|
|
4956
4936
|
update_time?: Date | undefined;
|
|
4957
|
-
apple_id?: string | undefined;
|
|
4958
4937
|
about_me?: string | undefined;
|
|
4959
4938
|
join_time?: Date | undefined;
|
|
4960
4939
|
is_mobile?: boolean | undefined;
|
|
@@ -4970,15 +4949,11 @@ export declare const Friend: {
|
|
|
4970
4949
|
location?: string | undefined;
|
|
4971
4950
|
timezone?: string | undefined;
|
|
4972
4951
|
metadata?: string | undefined;
|
|
4973
|
-
facebook_id?: string | undefined;
|
|
4974
|
-
google_id?: string | undefined;
|
|
4975
|
-
gamecenter_id?: string | undefined;
|
|
4976
|
-
steam_id?: string | undefined;
|
|
4977
4952
|
online?: boolean | undefined;
|
|
4953
|
+
phone_number?: string | undefined;
|
|
4978
4954
|
edge_count?: number | undefined;
|
|
4979
4955
|
create_time?: Date | undefined;
|
|
4980
4956
|
update_time?: Date | undefined;
|
|
4981
|
-
apple_id?: string | undefined;
|
|
4982
4957
|
about_me?: string | undefined;
|
|
4983
4958
|
join_time?: Date | undefined;
|
|
4984
4959
|
is_mobile?: boolean | undefined;
|
|
@@ -5000,15 +4975,11 @@ export declare const Friend: {
|
|
|
5000
4975
|
location?: string | undefined;
|
|
5001
4976
|
timezone?: string | undefined;
|
|
5002
4977
|
metadata?: string | undefined;
|
|
5003
|
-
facebook_id?: string | undefined;
|
|
5004
|
-
google_id?: string | undefined;
|
|
5005
|
-
gamecenter_id?: string | undefined;
|
|
5006
|
-
steam_id?: string | undefined;
|
|
5007
4978
|
online?: boolean | undefined;
|
|
4979
|
+
phone_number?: string | undefined;
|
|
5008
4980
|
edge_count?: number | undefined;
|
|
5009
4981
|
create_time?: Date | undefined;
|
|
5010
4982
|
update_time?: Date | undefined;
|
|
5011
|
-
apple_id?: string | undefined;
|
|
5012
4983
|
about_me?: string | undefined;
|
|
5013
4984
|
join_time?: Date | undefined;
|
|
5014
4985
|
is_mobile?: boolean | undefined;
|
|
@@ -5029,15 +5000,11 @@ export declare const Friend: {
|
|
|
5029
5000
|
location?: string | undefined;
|
|
5030
5001
|
timezone?: string | undefined;
|
|
5031
5002
|
metadata?: string | undefined;
|
|
5032
|
-
facebook_id?: string | undefined;
|
|
5033
|
-
google_id?: string | undefined;
|
|
5034
|
-
gamecenter_id?: string | undefined;
|
|
5035
|
-
steam_id?: string | undefined;
|
|
5036
5003
|
online?: boolean | undefined;
|
|
5004
|
+
phone_number?: string | undefined;
|
|
5037
5005
|
edge_count?: number | undefined;
|
|
5038
5006
|
create_time?: Date | undefined;
|
|
5039
5007
|
update_time?: Date | undefined;
|
|
5040
|
-
apple_id?: string | undefined;
|
|
5041
5008
|
about_me?: string | undefined;
|
|
5042
5009
|
join_time?: Date | undefined;
|
|
5043
5010
|
is_mobile?: boolean | undefined;
|
|
@@ -5053,15 +5020,11 @@ export declare const Friend: {
|
|
|
5053
5020
|
location?: string | undefined;
|
|
5054
5021
|
timezone?: string | undefined;
|
|
5055
5022
|
metadata?: string | undefined;
|
|
5056
|
-
facebook_id?: string | undefined;
|
|
5057
|
-
google_id?: string | undefined;
|
|
5058
|
-
gamecenter_id?: string | undefined;
|
|
5059
|
-
steam_id?: string | undefined;
|
|
5060
5023
|
online?: boolean | undefined;
|
|
5024
|
+
phone_number?: string | undefined;
|
|
5061
5025
|
edge_count?: number | undefined;
|
|
5062
5026
|
create_time?: Date | undefined;
|
|
5063
5027
|
update_time?: Date | undefined;
|
|
5064
|
-
apple_id?: string | undefined;
|
|
5065
5028
|
about_me?: string | undefined;
|
|
5066
5029
|
join_time?: Date | undefined;
|
|
5067
5030
|
is_mobile?: boolean | undefined;
|
|
@@ -5090,15 +5053,11 @@ export declare const FriendList: {
|
|
|
5090
5053
|
location?: string | undefined;
|
|
5091
5054
|
timezone?: string | undefined;
|
|
5092
5055
|
metadata?: string | undefined;
|
|
5093
|
-
facebook_id?: string | undefined;
|
|
5094
|
-
google_id?: string | undefined;
|
|
5095
|
-
gamecenter_id?: string | undefined;
|
|
5096
|
-
steam_id?: string | undefined;
|
|
5097
5056
|
online?: boolean | undefined;
|
|
5057
|
+
phone_number?: string | undefined;
|
|
5098
5058
|
edge_count?: number | undefined;
|
|
5099
5059
|
create_time?: Date | undefined;
|
|
5100
5060
|
update_time?: Date | undefined;
|
|
5101
|
-
apple_id?: string | undefined;
|
|
5102
5061
|
about_me?: string | undefined;
|
|
5103
5062
|
join_time?: Date | undefined;
|
|
5104
5063
|
is_mobile?: boolean | undefined;
|
|
@@ -5122,15 +5081,11 @@ export declare const FriendList: {
|
|
|
5122
5081
|
location?: string | undefined;
|
|
5123
5082
|
timezone?: string | undefined;
|
|
5124
5083
|
metadata?: string | undefined;
|
|
5125
|
-
facebook_id?: string | undefined;
|
|
5126
|
-
google_id?: string | undefined;
|
|
5127
|
-
gamecenter_id?: string | undefined;
|
|
5128
|
-
steam_id?: string | undefined;
|
|
5129
5084
|
online?: boolean | undefined;
|
|
5085
|
+
phone_number?: string | undefined;
|
|
5130
5086
|
edge_count?: number | undefined;
|
|
5131
5087
|
create_time?: Date | undefined;
|
|
5132
5088
|
update_time?: Date | undefined;
|
|
5133
|
-
apple_id?: string | undefined;
|
|
5134
5089
|
about_me?: string | undefined;
|
|
5135
5090
|
join_time?: Date | undefined;
|
|
5136
5091
|
is_mobile?: boolean | undefined;
|
|
@@ -5151,15 +5106,11 @@ export declare const FriendList: {
|
|
|
5151
5106
|
location?: string | undefined;
|
|
5152
5107
|
timezone?: string | undefined;
|
|
5153
5108
|
metadata?: string | undefined;
|
|
5154
|
-
facebook_id?: string | undefined;
|
|
5155
|
-
google_id?: string | undefined;
|
|
5156
|
-
gamecenter_id?: string | undefined;
|
|
5157
|
-
steam_id?: string | undefined;
|
|
5158
5109
|
online?: boolean | undefined;
|
|
5110
|
+
phone_number?: string | undefined;
|
|
5159
5111
|
edge_count?: number | undefined;
|
|
5160
5112
|
create_time?: Date | undefined;
|
|
5161
5113
|
update_time?: Date | undefined;
|
|
5162
|
-
apple_id?: string | undefined;
|
|
5163
5114
|
about_me?: string | undefined;
|
|
5164
5115
|
join_time?: Date | undefined;
|
|
5165
5116
|
is_mobile?: boolean | undefined;
|
|
@@ -5180,15 +5131,11 @@ export declare const FriendList: {
|
|
|
5180
5131
|
location?: string | undefined;
|
|
5181
5132
|
timezone?: string | undefined;
|
|
5182
5133
|
metadata?: string | undefined;
|
|
5183
|
-
facebook_id?: string | undefined;
|
|
5184
|
-
google_id?: string | undefined;
|
|
5185
|
-
gamecenter_id?: string | undefined;
|
|
5186
|
-
steam_id?: string | undefined;
|
|
5187
5134
|
online?: boolean | undefined;
|
|
5135
|
+
phone_number?: string | undefined;
|
|
5188
5136
|
edge_count?: number | undefined;
|
|
5189
5137
|
create_time?: Date | undefined;
|
|
5190
5138
|
update_time?: Date | undefined;
|
|
5191
|
-
apple_id?: string | undefined;
|
|
5192
5139
|
about_me?: string | undefined;
|
|
5193
5140
|
join_time?: Date | undefined;
|
|
5194
5141
|
is_mobile?: boolean | undefined;
|
|
@@ -5204,15 +5151,11 @@ export declare const FriendList: {
|
|
|
5204
5151
|
location?: string | undefined;
|
|
5205
5152
|
timezone?: string | undefined;
|
|
5206
5153
|
metadata?: string | undefined;
|
|
5207
|
-
facebook_id?: string | undefined;
|
|
5208
|
-
google_id?: string | undefined;
|
|
5209
|
-
gamecenter_id?: string | undefined;
|
|
5210
|
-
steam_id?: string | undefined;
|
|
5211
5154
|
online?: boolean | undefined;
|
|
5155
|
+
phone_number?: string | undefined;
|
|
5212
5156
|
edge_count?: number | undefined;
|
|
5213
5157
|
create_time?: Date | undefined;
|
|
5214
5158
|
update_time?: Date | undefined;
|
|
5215
|
-
apple_id?: string | undefined;
|
|
5216
5159
|
about_me?: string | undefined;
|
|
5217
5160
|
join_time?: Date | undefined;
|
|
5218
5161
|
is_mobile?: boolean | undefined;
|
|
@@ -5233,15 +5176,11 @@ export declare const FriendList: {
|
|
|
5233
5176
|
location?: string | undefined;
|
|
5234
5177
|
timezone?: string | undefined;
|
|
5235
5178
|
metadata?: string | undefined;
|
|
5236
|
-
facebook_id?: string | undefined;
|
|
5237
|
-
google_id?: string | undefined;
|
|
5238
|
-
gamecenter_id?: string | undefined;
|
|
5239
|
-
steam_id?: string | undefined;
|
|
5240
5179
|
online?: boolean | undefined;
|
|
5180
|
+
phone_number?: string | undefined;
|
|
5241
5181
|
edge_count?: number | undefined;
|
|
5242
5182
|
create_time?: Date | undefined;
|
|
5243
5183
|
update_time?: Date | undefined;
|
|
5244
|
-
apple_id?: string | undefined;
|
|
5245
5184
|
about_me?: string | undefined;
|
|
5246
5185
|
join_time?: Date | undefined;
|
|
5247
5186
|
is_mobile?: boolean | undefined;
|
|
@@ -5266,15 +5205,11 @@ export declare const FriendList: {
|
|
|
5266
5205
|
location?: string | undefined;
|
|
5267
5206
|
timezone?: string | undefined;
|
|
5268
5207
|
metadata?: string | undefined;
|
|
5269
|
-
facebook_id?: string | undefined;
|
|
5270
|
-
google_id?: string | undefined;
|
|
5271
|
-
gamecenter_id?: string | undefined;
|
|
5272
|
-
steam_id?: string | undefined;
|
|
5273
5208
|
online?: boolean | undefined;
|
|
5209
|
+
phone_number?: string | undefined;
|
|
5274
5210
|
edge_count?: number | undefined;
|
|
5275
5211
|
create_time?: Date | undefined;
|
|
5276
5212
|
update_time?: Date | undefined;
|
|
5277
|
-
apple_id?: string | undefined;
|
|
5278
5213
|
about_me?: string | undefined;
|
|
5279
5214
|
join_time?: Date | undefined;
|
|
5280
5215
|
is_mobile?: boolean | undefined;
|
|
@@ -5298,15 +5233,11 @@ export declare const FriendList: {
|
|
|
5298
5233
|
location?: string | undefined;
|
|
5299
5234
|
timezone?: string | undefined;
|
|
5300
5235
|
metadata?: string | undefined;
|
|
5301
|
-
facebook_id?: string | undefined;
|
|
5302
|
-
google_id?: string | undefined;
|
|
5303
|
-
gamecenter_id?: string | undefined;
|
|
5304
|
-
steam_id?: string | undefined;
|
|
5305
5236
|
online?: boolean | undefined;
|
|
5237
|
+
phone_number?: string | undefined;
|
|
5306
5238
|
edge_count?: number | undefined;
|
|
5307
5239
|
create_time?: Date | undefined;
|
|
5308
5240
|
update_time?: Date | undefined;
|
|
5309
|
-
apple_id?: string | undefined;
|
|
5310
5241
|
about_me?: string | undefined;
|
|
5311
5242
|
join_time?: Date | undefined;
|
|
5312
5243
|
is_mobile?: boolean | undefined;
|
|
@@ -5327,15 +5258,11 @@ export declare const FriendList: {
|
|
|
5327
5258
|
location?: string | undefined;
|
|
5328
5259
|
timezone?: string | undefined;
|
|
5329
5260
|
metadata?: string | undefined;
|
|
5330
|
-
facebook_id?: string | undefined;
|
|
5331
|
-
google_id?: string | undefined;
|
|
5332
|
-
gamecenter_id?: string | undefined;
|
|
5333
|
-
steam_id?: string | undefined;
|
|
5334
5261
|
online?: boolean | undefined;
|
|
5262
|
+
phone_number?: string | undefined;
|
|
5335
5263
|
edge_count?: number | undefined;
|
|
5336
5264
|
create_time?: Date | undefined;
|
|
5337
5265
|
update_time?: Date | undefined;
|
|
5338
|
-
apple_id?: string | undefined;
|
|
5339
5266
|
about_me?: string | undefined;
|
|
5340
5267
|
join_time?: Date | undefined;
|
|
5341
5268
|
is_mobile?: boolean | undefined;
|
|
@@ -5356,15 +5283,11 @@ export declare const FriendList: {
|
|
|
5356
5283
|
location?: string | undefined;
|
|
5357
5284
|
timezone?: string | undefined;
|
|
5358
5285
|
metadata?: string | undefined;
|
|
5359
|
-
facebook_id?: string | undefined;
|
|
5360
|
-
google_id?: string | undefined;
|
|
5361
|
-
gamecenter_id?: string | undefined;
|
|
5362
|
-
steam_id?: string | undefined;
|
|
5363
5286
|
online?: boolean | undefined;
|
|
5287
|
+
phone_number?: string | undefined;
|
|
5364
5288
|
edge_count?: number | undefined;
|
|
5365
5289
|
create_time?: Date | undefined;
|
|
5366
5290
|
update_time?: Date | undefined;
|
|
5367
|
-
apple_id?: string | undefined;
|
|
5368
5291
|
about_me?: string | undefined;
|
|
5369
5292
|
join_time?: Date | undefined;
|
|
5370
5293
|
is_mobile?: boolean | undefined;
|
|
@@ -5380,15 +5303,11 @@ export declare const FriendList: {
|
|
|
5380
5303
|
location?: string | undefined;
|
|
5381
5304
|
timezone?: string | undefined;
|
|
5382
5305
|
metadata?: string | undefined;
|
|
5383
|
-
facebook_id?: string | undefined;
|
|
5384
|
-
google_id?: string | undefined;
|
|
5385
|
-
gamecenter_id?: string | undefined;
|
|
5386
|
-
steam_id?: string | undefined;
|
|
5387
5306
|
online?: boolean | undefined;
|
|
5307
|
+
phone_number?: string | undefined;
|
|
5388
5308
|
edge_count?: number | undefined;
|
|
5389
5309
|
create_time?: Date | undefined;
|
|
5390
5310
|
update_time?: Date | undefined;
|
|
5391
|
-
apple_id?: string | undefined;
|
|
5392
5311
|
about_me?: string | undefined;
|
|
5393
5312
|
join_time?: Date | undefined;
|
|
5394
5313
|
is_mobile?: boolean | undefined;
|
|
@@ -5409,15 +5328,11 @@ export declare const FriendList: {
|
|
|
5409
5328
|
location?: string | undefined;
|
|
5410
5329
|
timezone?: string | undefined;
|
|
5411
5330
|
metadata?: string | undefined;
|
|
5412
|
-
facebook_id?: string | undefined;
|
|
5413
|
-
google_id?: string | undefined;
|
|
5414
|
-
gamecenter_id?: string | undefined;
|
|
5415
|
-
steam_id?: string | undefined;
|
|
5416
5331
|
online?: boolean | undefined;
|
|
5332
|
+
phone_number?: string | undefined;
|
|
5417
5333
|
edge_count?: number | undefined;
|
|
5418
5334
|
create_time?: Date | undefined;
|
|
5419
5335
|
update_time?: Date | undefined;
|
|
5420
|
-
apple_id?: string | undefined;
|
|
5421
5336
|
about_me?: string | undefined;
|
|
5422
5337
|
join_time?: Date | undefined;
|
|
5423
5338
|
is_mobile?: boolean | undefined;
|
|
@@ -5432,30 +5347,6 @@ export declare const FriendList: {
|
|
|
5432
5347
|
cursor?: string | undefined;
|
|
5433
5348
|
} & { [K_9 in Exclude<keyof I_1, keyof FriendList>]: never; }>(object: I_1): FriendList;
|
|
5434
5349
|
};
|
|
5435
|
-
export declare const GetUsersRequest: {
|
|
5436
|
-
encode(message: GetUsersRequest, writer?: _m0.Writer): _m0.Writer;
|
|
5437
|
-
decode(input: _m0.Reader | Uint8Array, length?: number): GetUsersRequest;
|
|
5438
|
-
fromJSON(object: any): GetUsersRequest;
|
|
5439
|
-
toJSON(message: GetUsersRequest): unknown;
|
|
5440
|
-
create<I extends {
|
|
5441
|
-
ids?: string[] | undefined;
|
|
5442
|
-
usernames?: string[] | undefined;
|
|
5443
|
-
facebook_ids?: string[] | undefined;
|
|
5444
|
-
} & {
|
|
5445
|
-
ids?: (string[] & string[] & { [K in Exclude<keyof I["ids"], keyof string[]>]: never; }) | undefined;
|
|
5446
|
-
usernames?: (string[] & string[] & { [K_1 in Exclude<keyof I["usernames"], keyof string[]>]: never; }) | undefined;
|
|
5447
|
-
facebook_ids?: (string[] & string[] & { [K_2 in Exclude<keyof I["facebook_ids"], keyof string[]>]: never; }) | undefined;
|
|
5448
|
-
} & { [K_3 in Exclude<keyof I, keyof GetUsersRequest>]: never; }>(base?: I | undefined): GetUsersRequest;
|
|
5449
|
-
fromPartial<I_1 extends {
|
|
5450
|
-
ids?: string[] | undefined;
|
|
5451
|
-
usernames?: string[] | undefined;
|
|
5452
|
-
facebook_ids?: string[] | undefined;
|
|
5453
|
-
} & {
|
|
5454
|
-
ids?: (string[] & string[] & { [K_4 in Exclude<keyof I_1["ids"], keyof string[]>]: never; }) | undefined;
|
|
5455
|
-
usernames?: (string[] & string[] & { [K_5 in Exclude<keyof I_1["usernames"], keyof string[]>]: never; }) | undefined;
|
|
5456
|
-
facebook_ids?: (string[] & string[] & { [K_6 in Exclude<keyof I_1["facebook_ids"], keyof string[]>]: never; }) | undefined;
|
|
5457
|
-
} & { [K_7 in Exclude<keyof I_1, keyof GetUsersRequest>]: never; }>(object: I_1): GetUsersRequest;
|
|
5458
|
-
};
|
|
5459
5350
|
export declare const UpdateUsersRequest: {
|
|
5460
5351
|
encode(message: UpdateUsersRequest, writer?: _m0.Writer): _m0.Writer;
|
|
5461
5352
|
decode(input: _m0.Reader | Uint8Array, length?: number): UpdateUsersRequest;
|
|
@@ -5702,15 +5593,11 @@ export declare const GroupUserList: {
|
|
|
5702
5593
|
location?: string | undefined;
|
|
5703
5594
|
timezone?: string | undefined;
|
|
5704
5595
|
metadata?: string | undefined;
|
|
5705
|
-
facebook_id?: string | undefined;
|
|
5706
|
-
google_id?: string | undefined;
|
|
5707
|
-
gamecenter_id?: string | undefined;
|
|
5708
|
-
steam_id?: string | undefined;
|
|
5709
5596
|
online?: boolean | undefined;
|
|
5597
|
+
phone_number?: string | undefined;
|
|
5710
5598
|
edge_count?: number | undefined;
|
|
5711
5599
|
create_time?: Date | undefined;
|
|
5712
5600
|
update_time?: Date | undefined;
|
|
5713
|
-
apple_id?: string | undefined;
|
|
5714
5601
|
about_me?: string | undefined;
|
|
5715
5602
|
join_time?: Date | undefined;
|
|
5716
5603
|
is_mobile?: boolean | undefined;
|
|
@@ -5732,15 +5619,11 @@ export declare const GroupUserList: {
|
|
|
5732
5619
|
location?: string | undefined;
|
|
5733
5620
|
timezone?: string | undefined;
|
|
5734
5621
|
metadata?: string | undefined;
|
|
5735
|
-
facebook_id?: string | undefined;
|
|
5736
|
-
google_id?: string | undefined;
|
|
5737
|
-
gamecenter_id?: string | undefined;
|
|
5738
|
-
steam_id?: string | undefined;
|
|
5739
5622
|
online?: boolean | undefined;
|
|
5623
|
+
phone_number?: string | undefined;
|
|
5740
5624
|
edge_count?: number | undefined;
|
|
5741
5625
|
create_time?: Date | undefined;
|
|
5742
5626
|
update_time?: Date | undefined;
|
|
5743
|
-
apple_id?: string | undefined;
|
|
5744
5627
|
about_me?: string | undefined;
|
|
5745
5628
|
join_time?: Date | undefined;
|
|
5746
5629
|
is_mobile?: boolean | undefined;
|
|
@@ -5759,15 +5642,11 @@ export declare const GroupUserList: {
|
|
|
5759
5642
|
location?: string | undefined;
|
|
5760
5643
|
timezone?: string | undefined;
|
|
5761
5644
|
metadata?: string | undefined;
|
|
5762
|
-
facebook_id?: string | undefined;
|
|
5763
|
-
google_id?: string | undefined;
|
|
5764
|
-
gamecenter_id?: string | undefined;
|
|
5765
|
-
steam_id?: string | undefined;
|
|
5766
5645
|
online?: boolean | undefined;
|
|
5646
|
+
phone_number?: string | undefined;
|
|
5767
5647
|
edge_count?: number | undefined;
|
|
5768
5648
|
create_time?: Date | undefined;
|
|
5769
5649
|
update_time?: Date | undefined;
|
|
5770
|
-
apple_id?: string | undefined;
|
|
5771
5650
|
about_me?: string | undefined;
|
|
5772
5651
|
join_time?: Date | undefined;
|
|
5773
5652
|
is_mobile?: boolean | undefined;
|
|
@@ -5786,15 +5665,11 @@ export declare const GroupUserList: {
|
|
|
5786
5665
|
location?: string | undefined;
|
|
5787
5666
|
timezone?: string | undefined;
|
|
5788
5667
|
metadata?: string | undefined;
|
|
5789
|
-
facebook_id?: string | undefined;
|
|
5790
|
-
google_id?: string | undefined;
|
|
5791
|
-
gamecenter_id?: string | undefined;
|
|
5792
|
-
steam_id?: string | undefined;
|
|
5793
5668
|
online?: boolean | undefined;
|
|
5669
|
+
phone_number?: string | undefined;
|
|
5794
5670
|
edge_count?: number | undefined;
|
|
5795
5671
|
create_time?: Date | undefined;
|
|
5796
5672
|
update_time?: Date | undefined;
|
|
5797
|
-
apple_id?: string | undefined;
|
|
5798
5673
|
about_me?: string | undefined;
|
|
5799
5674
|
join_time?: Date | undefined;
|
|
5800
5675
|
is_mobile?: boolean | undefined;
|
|
@@ -5810,15 +5685,11 @@ export declare const GroupUserList: {
|
|
|
5810
5685
|
location?: string | undefined;
|
|
5811
5686
|
timezone?: string | undefined;
|
|
5812
5687
|
metadata?: string | undefined;
|
|
5813
|
-
facebook_id?: string | undefined;
|
|
5814
|
-
google_id?: string | undefined;
|
|
5815
|
-
gamecenter_id?: string | undefined;
|
|
5816
|
-
steam_id?: string | undefined;
|
|
5817
5688
|
online?: boolean | undefined;
|
|
5689
|
+
phone_number?: string | undefined;
|
|
5818
5690
|
edge_count?: number | undefined;
|
|
5819
5691
|
create_time?: Date | undefined;
|
|
5820
5692
|
update_time?: Date | undefined;
|
|
5821
|
-
apple_id?: string | undefined;
|
|
5822
5693
|
about_me?: string | undefined;
|
|
5823
5694
|
join_time?: Date | undefined;
|
|
5824
5695
|
is_mobile?: boolean | undefined;
|
|
@@ -5837,15 +5708,11 @@ export declare const GroupUserList: {
|
|
|
5837
5708
|
location?: string | undefined;
|
|
5838
5709
|
timezone?: string | undefined;
|
|
5839
5710
|
metadata?: string | undefined;
|
|
5840
|
-
facebook_id?: string | undefined;
|
|
5841
|
-
google_id?: string | undefined;
|
|
5842
|
-
gamecenter_id?: string | undefined;
|
|
5843
|
-
steam_id?: string | undefined;
|
|
5844
5711
|
online?: boolean | undefined;
|
|
5712
|
+
phone_number?: string | undefined;
|
|
5845
5713
|
edge_count?: number | undefined;
|
|
5846
5714
|
create_time?: Date | undefined;
|
|
5847
5715
|
update_time?: Date | undefined;
|
|
5848
|
-
apple_id?: string | undefined;
|
|
5849
5716
|
about_me?: string | undefined;
|
|
5850
5717
|
join_time?: Date | undefined;
|
|
5851
5718
|
is_mobile?: boolean | undefined;
|
|
@@ -5868,15 +5735,11 @@ export declare const GroupUserList: {
|
|
|
5868
5735
|
location?: string | undefined;
|
|
5869
5736
|
timezone?: string | undefined;
|
|
5870
5737
|
metadata?: string | undefined;
|
|
5871
|
-
facebook_id?: string | undefined;
|
|
5872
|
-
google_id?: string | undefined;
|
|
5873
|
-
gamecenter_id?: string | undefined;
|
|
5874
|
-
steam_id?: string | undefined;
|
|
5875
5738
|
online?: boolean | undefined;
|
|
5739
|
+
phone_number?: string | undefined;
|
|
5876
5740
|
edge_count?: number | undefined;
|
|
5877
5741
|
create_time?: Date | undefined;
|
|
5878
5742
|
update_time?: Date | undefined;
|
|
5879
|
-
apple_id?: string | undefined;
|
|
5880
5743
|
about_me?: string | undefined;
|
|
5881
5744
|
join_time?: Date | undefined;
|
|
5882
5745
|
is_mobile?: boolean | undefined;
|
|
@@ -5898,15 +5761,11 @@ export declare const GroupUserList: {
|
|
|
5898
5761
|
location?: string | undefined;
|
|
5899
5762
|
timezone?: string | undefined;
|
|
5900
5763
|
metadata?: string | undefined;
|
|
5901
|
-
facebook_id?: string | undefined;
|
|
5902
|
-
google_id?: string | undefined;
|
|
5903
|
-
gamecenter_id?: string | undefined;
|
|
5904
|
-
steam_id?: string | undefined;
|
|
5905
5764
|
online?: boolean | undefined;
|
|
5765
|
+
phone_number?: string | undefined;
|
|
5906
5766
|
edge_count?: number | undefined;
|
|
5907
5767
|
create_time?: Date | undefined;
|
|
5908
5768
|
update_time?: Date | undefined;
|
|
5909
|
-
apple_id?: string | undefined;
|
|
5910
5769
|
about_me?: string | undefined;
|
|
5911
5770
|
join_time?: Date | undefined;
|
|
5912
5771
|
is_mobile?: boolean | undefined;
|
|
@@ -5925,15 +5784,11 @@ export declare const GroupUserList: {
|
|
|
5925
5784
|
location?: string | undefined;
|
|
5926
5785
|
timezone?: string | undefined;
|
|
5927
5786
|
metadata?: string | undefined;
|
|
5928
|
-
facebook_id?: string | undefined;
|
|
5929
|
-
google_id?: string | undefined;
|
|
5930
|
-
gamecenter_id?: string | undefined;
|
|
5931
|
-
steam_id?: string | undefined;
|
|
5932
5787
|
online?: boolean | undefined;
|
|
5788
|
+
phone_number?: string | undefined;
|
|
5933
5789
|
edge_count?: number | undefined;
|
|
5934
5790
|
create_time?: Date | undefined;
|
|
5935
5791
|
update_time?: Date | undefined;
|
|
5936
|
-
apple_id?: string | undefined;
|
|
5937
5792
|
about_me?: string | undefined;
|
|
5938
5793
|
join_time?: Date | undefined;
|
|
5939
5794
|
is_mobile?: boolean | undefined;
|
|
@@ -5952,15 +5807,11 @@ export declare const GroupUserList: {
|
|
|
5952
5807
|
location?: string | undefined;
|
|
5953
5808
|
timezone?: string | undefined;
|
|
5954
5809
|
metadata?: string | undefined;
|
|
5955
|
-
facebook_id?: string | undefined;
|
|
5956
|
-
google_id?: string | undefined;
|
|
5957
|
-
gamecenter_id?: string | undefined;
|
|
5958
|
-
steam_id?: string | undefined;
|
|
5959
5810
|
online?: boolean | undefined;
|
|
5811
|
+
phone_number?: string | undefined;
|
|
5960
5812
|
edge_count?: number | undefined;
|
|
5961
5813
|
create_time?: Date | undefined;
|
|
5962
5814
|
update_time?: Date | undefined;
|
|
5963
|
-
apple_id?: string | undefined;
|
|
5964
5815
|
about_me?: string | undefined;
|
|
5965
5816
|
join_time?: Date | undefined;
|
|
5966
5817
|
is_mobile?: boolean | undefined;
|
|
@@ -5976,15 +5827,11 @@ export declare const GroupUserList: {
|
|
|
5976
5827
|
location?: string | undefined;
|
|
5977
5828
|
timezone?: string | undefined;
|
|
5978
5829
|
metadata?: string | undefined;
|
|
5979
|
-
facebook_id?: string | undefined;
|
|
5980
|
-
google_id?: string | undefined;
|
|
5981
|
-
gamecenter_id?: string | undefined;
|
|
5982
|
-
steam_id?: string | undefined;
|
|
5983
5830
|
online?: boolean | undefined;
|
|
5831
|
+
phone_number?: string | undefined;
|
|
5984
5832
|
edge_count?: number | undefined;
|
|
5985
5833
|
create_time?: Date | undefined;
|
|
5986
5834
|
update_time?: Date | undefined;
|
|
5987
|
-
apple_id?: string | undefined;
|
|
5988
5835
|
about_me?: string | undefined;
|
|
5989
5836
|
join_time?: Date | undefined;
|
|
5990
5837
|
is_mobile?: boolean | undefined;
|
|
@@ -6003,15 +5850,11 @@ export declare const GroupUserList: {
|
|
|
6003
5850
|
location?: string | undefined;
|
|
6004
5851
|
timezone?: string | undefined;
|
|
6005
5852
|
metadata?: string | undefined;
|
|
6006
|
-
facebook_id?: string | undefined;
|
|
6007
|
-
google_id?: string | undefined;
|
|
6008
|
-
gamecenter_id?: string | undefined;
|
|
6009
|
-
steam_id?: string | undefined;
|
|
6010
5853
|
online?: boolean | undefined;
|
|
5854
|
+
phone_number?: string | undefined;
|
|
6011
5855
|
edge_count?: number | undefined;
|
|
6012
5856
|
create_time?: Date | undefined;
|
|
6013
5857
|
update_time?: Date | undefined;
|
|
6014
|
-
apple_id?: string | undefined;
|
|
6015
5858
|
about_me?: string | undefined;
|
|
6016
5859
|
join_time?: Date | undefined;
|
|
6017
5860
|
is_mobile?: boolean | undefined;
|
|
@@ -6039,15 +5882,11 @@ export declare const GroupUserList_GroupUser: {
|
|
|
6039
5882
|
location?: string | undefined;
|
|
6040
5883
|
timezone?: string | undefined;
|
|
6041
5884
|
metadata?: string | undefined;
|
|
6042
|
-
facebook_id?: string | undefined;
|
|
6043
|
-
google_id?: string | undefined;
|
|
6044
|
-
gamecenter_id?: string | undefined;
|
|
6045
|
-
steam_id?: string | undefined;
|
|
6046
5885
|
online?: boolean | undefined;
|
|
5886
|
+
phone_number?: string | undefined;
|
|
6047
5887
|
edge_count?: number | undefined;
|
|
6048
5888
|
create_time?: Date | undefined;
|
|
6049
5889
|
update_time?: Date | undefined;
|
|
6050
|
-
apple_id?: string | undefined;
|
|
6051
5890
|
about_me?: string | undefined;
|
|
6052
5891
|
join_time?: Date | undefined;
|
|
6053
5892
|
is_mobile?: boolean | undefined;
|
|
@@ -6066,15 +5905,11 @@ export declare const GroupUserList_GroupUser: {
|
|
|
6066
5905
|
location?: string | undefined;
|
|
6067
5906
|
timezone?: string | undefined;
|
|
6068
5907
|
metadata?: string | undefined;
|
|
6069
|
-
facebook_id?: string | undefined;
|
|
6070
|
-
google_id?: string | undefined;
|
|
6071
|
-
gamecenter_id?: string | undefined;
|
|
6072
|
-
steam_id?: string | undefined;
|
|
6073
5908
|
online?: boolean | undefined;
|
|
5909
|
+
phone_number?: string | undefined;
|
|
6074
5910
|
edge_count?: number | undefined;
|
|
6075
5911
|
create_time?: Date | undefined;
|
|
6076
5912
|
update_time?: Date | undefined;
|
|
6077
|
-
apple_id?: string | undefined;
|
|
6078
5913
|
about_me?: string | undefined;
|
|
6079
5914
|
join_time?: Date | undefined;
|
|
6080
5915
|
is_mobile?: boolean | undefined;
|
|
@@ -6090,15 +5925,11 @@ export declare const GroupUserList_GroupUser: {
|
|
|
6090
5925
|
location?: string | undefined;
|
|
6091
5926
|
timezone?: string | undefined;
|
|
6092
5927
|
metadata?: string | undefined;
|
|
6093
|
-
facebook_id?: string | undefined;
|
|
6094
|
-
google_id?: string | undefined;
|
|
6095
|
-
gamecenter_id?: string | undefined;
|
|
6096
|
-
steam_id?: string | undefined;
|
|
6097
5928
|
online?: boolean | undefined;
|
|
5929
|
+
phone_number?: string | undefined;
|
|
6098
5930
|
edge_count?: number | undefined;
|
|
6099
5931
|
create_time?: Date | undefined;
|
|
6100
5932
|
update_time?: Date | undefined;
|
|
6101
|
-
apple_id?: string | undefined;
|
|
6102
5933
|
about_me?: string | undefined;
|
|
6103
5934
|
join_time?: Date | undefined;
|
|
6104
5935
|
is_mobile?: boolean | undefined;
|
|
@@ -6118,15 +5949,11 @@ export declare const GroupUserList_GroupUser: {
|
|
|
6118
5949
|
location?: string | undefined;
|
|
6119
5950
|
timezone?: string | undefined;
|
|
6120
5951
|
metadata?: string | undefined;
|
|
6121
|
-
facebook_id?: string | undefined;
|
|
6122
|
-
google_id?: string | undefined;
|
|
6123
|
-
gamecenter_id?: string | undefined;
|
|
6124
|
-
steam_id?: string | undefined;
|
|
6125
5952
|
online?: boolean | undefined;
|
|
5953
|
+
phone_number?: string | undefined;
|
|
6126
5954
|
edge_count?: number | undefined;
|
|
6127
5955
|
create_time?: Date | undefined;
|
|
6128
5956
|
update_time?: Date | undefined;
|
|
6129
|
-
apple_id?: string | undefined;
|
|
6130
5957
|
about_me?: string | undefined;
|
|
6131
5958
|
join_time?: Date | undefined;
|
|
6132
5959
|
is_mobile?: boolean | undefined;
|
|
@@ -6145,15 +5972,11 @@ export declare const GroupUserList_GroupUser: {
|
|
|
6145
5972
|
location?: string | undefined;
|
|
6146
5973
|
timezone?: string | undefined;
|
|
6147
5974
|
metadata?: string | undefined;
|
|
6148
|
-
facebook_id?: string | undefined;
|
|
6149
|
-
google_id?: string | undefined;
|
|
6150
|
-
gamecenter_id?: string | undefined;
|
|
6151
|
-
steam_id?: string | undefined;
|
|
6152
5975
|
online?: boolean | undefined;
|
|
5976
|
+
phone_number?: string | undefined;
|
|
6153
5977
|
edge_count?: number | undefined;
|
|
6154
5978
|
create_time?: Date | undefined;
|
|
6155
5979
|
update_time?: Date | undefined;
|
|
6156
|
-
apple_id?: string | undefined;
|
|
6157
5980
|
about_me?: string | undefined;
|
|
6158
5981
|
join_time?: Date | undefined;
|
|
6159
5982
|
is_mobile?: boolean | undefined;
|
|
@@ -6169,15 +5992,11 @@ export declare const GroupUserList_GroupUser: {
|
|
|
6169
5992
|
location?: string | undefined;
|
|
6170
5993
|
timezone?: string | undefined;
|
|
6171
5994
|
metadata?: string | undefined;
|
|
6172
|
-
facebook_id?: string | undefined;
|
|
6173
|
-
google_id?: string | undefined;
|
|
6174
|
-
gamecenter_id?: string | undefined;
|
|
6175
|
-
steam_id?: string | undefined;
|
|
6176
5995
|
online?: boolean | undefined;
|
|
5996
|
+
phone_number?: string | undefined;
|
|
6177
5997
|
edge_count?: number | undefined;
|
|
6178
5998
|
create_time?: Date | undefined;
|
|
6179
5999
|
update_time?: Date | undefined;
|
|
6180
|
-
apple_id?: string | undefined;
|
|
6181
6000
|
about_me?: string | undefined;
|
|
6182
6001
|
join_time?: Date | undefined;
|
|
6183
6002
|
is_mobile?: boolean | undefined;
|
|
@@ -6634,15 +6453,11 @@ export declare const ClanUserList: {
|
|
|
6634
6453
|
location?: string | undefined;
|
|
6635
6454
|
timezone?: string | undefined;
|
|
6636
6455
|
metadata?: string | undefined;
|
|
6637
|
-
facebook_id?: string | undefined;
|
|
6638
|
-
google_id?: string | undefined;
|
|
6639
|
-
gamecenter_id?: string | undefined;
|
|
6640
|
-
steam_id?: string | undefined;
|
|
6641
6456
|
online?: boolean | undefined;
|
|
6457
|
+
phone_number?: string | undefined;
|
|
6642
6458
|
edge_count?: number | undefined;
|
|
6643
6459
|
create_time?: Date | undefined;
|
|
6644
6460
|
update_time?: Date | undefined;
|
|
6645
|
-
apple_id?: string | undefined;
|
|
6646
6461
|
about_me?: string | undefined;
|
|
6647
6462
|
join_time?: Date | undefined;
|
|
6648
6463
|
is_mobile?: boolean | undefined;
|
|
@@ -6668,15 +6483,11 @@ export declare const ClanUserList: {
|
|
|
6668
6483
|
location?: string | undefined;
|
|
6669
6484
|
timezone?: string | undefined;
|
|
6670
6485
|
metadata?: string | undefined;
|
|
6671
|
-
facebook_id?: string | undefined;
|
|
6672
|
-
google_id?: string | undefined;
|
|
6673
|
-
gamecenter_id?: string | undefined;
|
|
6674
|
-
steam_id?: string | undefined;
|
|
6675
6486
|
online?: boolean | undefined;
|
|
6487
|
+
phone_number?: string | undefined;
|
|
6676
6488
|
edge_count?: number | undefined;
|
|
6677
6489
|
create_time?: Date | undefined;
|
|
6678
6490
|
update_time?: Date | undefined;
|
|
6679
|
-
apple_id?: string | undefined;
|
|
6680
6491
|
about_me?: string | undefined;
|
|
6681
6492
|
join_time?: Date | undefined;
|
|
6682
6493
|
is_mobile?: boolean | undefined;
|
|
@@ -6698,15 +6509,11 @@ export declare const ClanUserList: {
|
|
|
6698
6509
|
location?: string | undefined;
|
|
6699
6510
|
timezone?: string | undefined;
|
|
6700
6511
|
metadata?: string | undefined;
|
|
6701
|
-
facebook_id?: string | undefined;
|
|
6702
|
-
google_id?: string | undefined;
|
|
6703
|
-
gamecenter_id?: string | undefined;
|
|
6704
|
-
steam_id?: string | undefined;
|
|
6705
6512
|
online?: boolean | undefined;
|
|
6513
|
+
phone_number?: string | undefined;
|
|
6706
6514
|
edge_count?: number | undefined;
|
|
6707
6515
|
create_time?: Date | undefined;
|
|
6708
6516
|
update_time?: Date | undefined;
|
|
6709
|
-
apple_id?: string | undefined;
|
|
6710
6517
|
about_me?: string | undefined;
|
|
6711
6518
|
join_time?: Date | undefined;
|
|
6712
6519
|
is_mobile?: boolean | undefined;
|
|
@@ -6728,15 +6535,11 @@ export declare const ClanUserList: {
|
|
|
6728
6535
|
location?: string | undefined;
|
|
6729
6536
|
timezone?: string | undefined;
|
|
6730
6537
|
metadata?: string | undefined;
|
|
6731
|
-
facebook_id?: string | undefined;
|
|
6732
|
-
google_id?: string | undefined;
|
|
6733
|
-
gamecenter_id?: string | undefined;
|
|
6734
|
-
steam_id?: string | undefined;
|
|
6735
6538
|
online?: boolean | undefined;
|
|
6539
|
+
phone_number?: string | undefined;
|
|
6736
6540
|
edge_count?: number | undefined;
|
|
6737
6541
|
create_time?: Date | undefined;
|
|
6738
6542
|
update_time?: Date | undefined;
|
|
6739
|
-
apple_id?: string | undefined;
|
|
6740
6543
|
about_me?: string | undefined;
|
|
6741
6544
|
join_time?: Date | undefined;
|
|
6742
6545
|
is_mobile?: boolean | undefined;
|
|
@@ -6752,15 +6555,11 @@ export declare const ClanUserList: {
|
|
|
6752
6555
|
location?: string | undefined;
|
|
6753
6556
|
timezone?: string | undefined;
|
|
6754
6557
|
metadata?: string | undefined;
|
|
6755
|
-
facebook_id?: string | undefined;
|
|
6756
|
-
google_id?: string | undefined;
|
|
6757
|
-
gamecenter_id?: string | undefined;
|
|
6758
|
-
steam_id?: string | undefined;
|
|
6759
6558
|
online?: boolean | undefined;
|
|
6559
|
+
phone_number?: string | undefined;
|
|
6760
6560
|
edge_count?: number | undefined;
|
|
6761
6561
|
create_time?: Date | undefined;
|
|
6762
6562
|
update_time?: Date | undefined;
|
|
6763
|
-
apple_id?: string | undefined;
|
|
6764
6563
|
about_me?: string | undefined;
|
|
6765
6564
|
join_time?: Date | undefined;
|
|
6766
6565
|
is_mobile?: boolean | undefined;
|
|
@@ -6782,15 +6581,11 @@ export declare const ClanUserList: {
|
|
|
6782
6581
|
location?: string | undefined;
|
|
6783
6582
|
timezone?: string | undefined;
|
|
6784
6583
|
metadata?: string | undefined;
|
|
6785
|
-
facebook_id?: string | undefined;
|
|
6786
|
-
google_id?: string | undefined;
|
|
6787
|
-
gamecenter_id?: string | undefined;
|
|
6788
|
-
steam_id?: string | undefined;
|
|
6789
6584
|
online?: boolean | undefined;
|
|
6585
|
+
phone_number?: string | undefined;
|
|
6790
6586
|
edge_count?: number | undefined;
|
|
6791
6587
|
create_time?: Date | undefined;
|
|
6792
6588
|
update_time?: Date | undefined;
|
|
6793
|
-
apple_id?: string | undefined;
|
|
6794
6589
|
about_me?: string | undefined;
|
|
6795
6590
|
join_time?: Date | undefined;
|
|
6796
6591
|
is_mobile?: boolean | undefined;
|
|
@@ -6817,15 +6612,11 @@ export declare const ClanUserList: {
|
|
|
6817
6612
|
location?: string | undefined;
|
|
6818
6613
|
timezone?: string | undefined;
|
|
6819
6614
|
metadata?: string | undefined;
|
|
6820
|
-
facebook_id?: string | undefined;
|
|
6821
|
-
google_id?: string | undefined;
|
|
6822
|
-
gamecenter_id?: string | undefined;
|
|
6823
|
-
steam_id?: string | undefined;
|
|
6824
6615
|
online?: boolean | undefined;
|
|
6616
|
+
phone_number?: string | undefined;
|
|
6825
6617
|
edge_count?: number | undefined;
|
|
6826
6618
|
create_time?: Date | undefined;
|
|
6827
6619
|
update_time?: Date | undefined;
|
|
6828
|
-
apple_id?: string | undefined;
|
|
6829
6620
|
about_me?: string | undefined;
|
|
6830
6621
|
join_time?: Date | undefined;
|
|
6831
6622
|
is_mobile?: boolean | undefined;
|
|
@@ -6851,15 +6642,11 @@ export declare const ClanUserList: {
|
|
|
6851
6642
|
location?: string | undefined;
|
|
6852
6643
|
timezone?: string | undefined;
|
|
6853
6644
|
metadata?: string | undefined;
|
|
6854
|
-
facebook_id?: string | undefined;
|
|
6855
|
-
google_id?: string | undefined;
|
|
6856
|
-
gamecenter_id?: string | undefined;
|
|
6857
|
-
steam_id?: string | undefined;
|
|
6858
6645
|
online?: boolean | undefined;
|
|
6646
|
+
phone_number?: string | undefined;
|
|
6859
6647
|
edge_count?: number | undefined;
|
|
6860
6648
|
create_time?: Date | undefined;
|
|
6861
6649
|
update_time?: Date | undefined;
|
|
6862
|
-
apple_id?: string | undefined;
|
|
6863
6650
|
about_me?: string | undefined;
|
|
6864
6651
|
join_time?: Date | undefined;
|
|
6865
6652
|
is_mobile?: boolean | undefined;
|
|
@@ -6881,15 +6668,11 @@ export declare const ClanUserList: {
|
|
|
6881
6668
|
location?: string | undefined;
|
|
6882
6669
|
timezone?: string | undefined;
|
|
6883
6670
|
metadata?: string | undefined;
|
|
6884
|
-
facebook_id?: string | undefined;
|
|
6885
|
-
google_id?: string | undefined;
|
|
6886
|
-
gamecenter_id?: string | undefined;
|
|
6887
|
-
steam_id?: string | undefined;
|
|
6888
6671
|
online?: boolean | undefined;
|
|
6672
|
+
phone_number?: string | undefined;
|
|
6889
6673
|
edge_count?: number | undefined;
|
|
6890
6674
|
create_time?: Date | undefined;
|
|
6891
6675
|
update_time?: Date | undefined;
|
|
6892
|
-
apple_id?: string | undefined;
|
|
6893
6676
|
about_me?: string | undefined;
|
|
6894
6677
|
join_time?: Date | undefined;
|
|
6895
6678
|
is_mobile?: boolean | undefined;
|
|
@@ -6911,15 +6694,11 @@ export declare const ClanUserList: {
|
|
|
6911
6694
|
location?: string | undefined;
|
|
6912
6695
|
timezone?: string | undefined;
|
|
6913
6696
|
metadata?: string | undefined;
|
|
6914
|
-
facebook_id?: string | undefined;
|
|
6915
|
-
google_id?: string | undefined;
|
|
6916
|
-
gamecenter_id?: string | undefined;
|
|
6917
|
-
steam_id?: string | undefined;
|
|
6918
6697
|
online?: boolean | undefined;
|
|
6698
|
+
phone_number?: string | undefined;
|
|
6919
6699
|
edge_count?: number | undefined;
|
|
6920
6700
|
create_time?: Date | undefined;
|
|
6921
6701
|
update_time?: Date | undefined;
|
|
6922
|
-
apple_id?: string | undefined;
|
|
6923
6702
|
about_me?: string | undefined;
|
|
6924
6703
|
join_time?: Date | undefined;
|
|
6925
6704
|
is_mobile?: boolean | undefined;
|
|
@@ -6935,15 +6714,11 @@ export declare const ClanUserList: {
|
|
|
6935
6714
|
location?: string | undefined;
|
|
6936
6715
|
timezone?: string | undefined;
|
|
6937
6716
|
metadata?: string | undefined;
|
|
6938
|
-
facebook_id?: string | undefined;
|
|
6939
|
-
google_id?: string | undefined;
|
|
6940
|
-
gamecenter_id?: string | undefined;
|
|
6941
|
-
steam_id?: string | undefined;
|
|
6942
6717
|
online?: boolean | undefined;
|
|
6718
|
+
phone_number?: string | undefined;
|
|
6943
6719
|
edge_count?: number | undefined;
|
|
6944
6720
|
create_time?: Date | undefined;
|
|
6945
6721
|
update_time?: Date | undefined;
|
|
6946
|
-
apple_id?: string | undefined;
|
|
6947
6722
|
about_me?: string | undefined;
|
|
6948
6723
|
join_time?: Date | undefined;
|
|
6949
6724
|
is_mobile?: boolean | undefined;
|
|
@@ -6965,15 +6740,11 @@ export declare const ClanUserList: {
|
|
|
6965
6740
|
location?: string | undefined;
|
|
6966
6741
|
timezone?: string | undefined;
|
|
6967
6742
|
metadata?: string | undefined;
|
|
6968
|
-
facebook_id?: string | undefined;
|
|
6969
|
-
google_id?: string | undefined;
|
|
6970
|
-
gamecenter_id?: string | undefined;
|
|
6971
|
-
steam_id?: string | undefined;
|
|
6972
6743
|
online?: boolean | undefined;
|
|
6744
|
+
phone_number?: string | undefined;
|
|
6973
6745
|
edge_count?: number | undefined;
|
|
6974
6746
|
create_time?: Date | undefined;
|
|
6975
6747
|
update_time?: Date | undefined;
|
|
6976
|
-
apple_id?: string | undefined;
|
|
6977
6748
|
about_me?: string | undefined;
|
|
6978
6749
|
join_time?: Date | undefined;
|
|
6979
6750
|
is_mobile?: boolean | undefined;
|
|
@@ -7005,15 +6776,11 @@ export declare const ClanUserList_ClanUser: {
|
|
|
7005
6776
|
location?: string | undefined;
|
|
7006
6777
|
timezone?: string | undefined;
|
|
7007
6778
|
metadata?: string | undefined;
|
|
7008
|
-
facebook_id?: string | undefined;
|
|
7009
|
-
google_id?: string | undefined;
|
|
7010
|
-
gamecenter_id?: string | undefined;
|
|
7011
|
-
steam_id?: string | undefined;
|
|
7012
6779
|
online?: boolean | undefined;
|
|
6780
|
+
phone_number?: string | undefined;
|
|
7013
6781
|
edge_count?: number | undefined;
|
|
7014
6782
|
create_time?: Date | undefined;
|
|
7015
6783
|
update_time?: Date | undefined;
|
|
7016
|
-
apple_id?: string | undefined;
|
|
7017
6784
|
about_me?: string | undefined;
|
|
7018
6785
|
join_time?: Date | undefined;
|
|
7019
6786
|
is_mobile?: boolean | undefined;
|
|
@@ -7035,15 +6802,11 @@ export declare const ClanUserList_ClanUser: {
|
|
|
7035
6802
|
location?: string | undefined;
|
|
7036
6803
|
timezone?: string | undefined;
|
|
7037
6804
|
metadata?: string | undefined;
|
|
7038
|
-
facebook_id?: string | undefined;
|
|
7039
|
-
google_id?: string | undefined;
|
|
7040
|
-
gamecenter_id?: string | undefined;
|
|
7041
|
-
steam_id?: string | undefined;
|
|
7042
6805
|
online?: boolean | undefined;
|
|
6806
|
+
phone_number?: string | undefined;
|
|
7043
6807
|
edge_count?: number | undefined;
|
|
7044
6808
|
create_time?: Date | undefined;
|
|
7045
6809
|
update_time?: Date | undefined;
|
|
7046
|
-
apple_id?: string | undefined;
|
|
7047
6810
|
about_me?: string | undefined;
|
|
7048
6811
|
join_time?: Date | undefined;
|
|
7049
6812
|
is_mobile?: boolean | undefined;
|
|
@@ -7059,15 +6822,11 @@ export declare const ClanUserList_ClanUser: {
|
|
|
7059
6822
|
location?: string | undefined;
|
|
7060
6823
|
timezone?: string | undefined;
|
|
7061
6824
|
metadata?: string | undefined;
|
|
7062
|
-
facebook_id?: string | undefined;
|
|
7063
|
-
google_id?: string | undefined;
|
|
7064
|
-
gamecenter_id?: string | undefined;
|
|
7065
|
-
steam_id?: string | undefined;
|
|
7066
6825
|
online?: boolean | undefined;
|
|
6826
|
+
phone_number?: string | undefined;
|
|
7067
6827
|
edge_count?: number | undefined;
|
|
7068
6828
|
create_time?: Date | undefined;
|
|
7069
6829
|
update_time?: Date | undefined;
|
|
7070
|
-
apple_id?: string | undefined;
|
|
7071
6830
|
about_me?: string | undefined;
|
|
7072
6831
|
join_time?: Date | undefined;
|
|
7073
6832
|
is_mobile?: boolean | undefined;
|
|
@@ -7090,15 +6849,11 @@ export declare const ClanUserList_ClanUser: {
|
|
|
7090
6849
|
location?: string | undefined;
|
|
7091
6850
|
timezone?: string | undefined;
|
|
7092
6851
|
metadata?: string | undefined;
|
|
7093
|
-
facebook_id?: string | undefined;
|
|
7094
|
-
google_id?: string | undefined;
|
|
7095
|
-
gamecenter_id?: string | undefined;
|
|
7096
|
-
steam_id?: string | undefined;
|
|
7097
6852
|
online?: boolean | undefined;
|
|
6853
|
+
phone_number?: string | undefined;
|
|
7098
6854
|
edge_count?: number | undefined;
|
|
7099
6855
|
create_time?: Date | undefined;
|
|
7100
6856
|
update_time?: Date | undefined;
|
|
7101
|
-
apple_id?: string | undefined;
|
|
7102
6857
|
about_me?: string | undefined;
|
|
7103
6858
|
join_time?: Date | undefined;
|
|
7104
6859
|
is_mobile?: boolean | undefined;
|
|
@@ -7120,15 +6875,11 @@ export declare const ClanUserList_ClanUser: {
|
|
|
7120
6875
|
location?: string | undefined;
|
|
7121
6876
|
timezone?: string | undefined;
|
|
7122
6877
|
metadata?: string | undefined;
|
|
7123
|
-
facebook_id?: string | undefined;
|
|
7124
|
-
google_id?: string | undefined;
|
|
7125
|
-
gamecenter_id?: string | undefined;
|
|
7126
|
-
steam_id?: string | undefined;
|
|
7127
6878
|
online?: boolean | undefined;
|
|
6879
|
+
phone_number?: string | undefined;
|
|
7128
6880
|
edge_count?: number | undefined;
|
|
7129
6881
|
create_time?: Date | undefined;
|
|
7130
6882
|
update_time?: Date | undefined;
|
|
7131
|
-
apple_id?: string | undefined;
|
|
7132
6883
|
about_me?: string | undefined;
|
|
7133
6884
|
join_time?: Date | undefined;
|
|
7134
6885
|
is_mobile?: boolean | undefined;
|
|
@@ -7144,15 +6895,11 @@ export declare const ClanUserList_ClanUser: {
|
|
|
7144
6895
|
location?: string | undefined;
|
|
7145
6896
|
timezone?: string | undefined;
|
|
7146
6897
|
metadata?: string | undefined;
|
|
7147
|
-
facebook_id?: string | undefined;
|
|
7148
|
-
google_id?: string | undefined;
|
|
7149
|
-
gamecenter_id?: string | undefined;
|
|
7150
|
-
steam_id?: string | undefined;
|
|
7151
6898
|
online?: boolean | undefined;
|
|
6899
|
+
phone_number?: string | undefined;
|
|
7152
6900
|
edge_count?: number | undefined;
|
|
7153
6901
|
create_time?: Date | undefined;
|
|
7154
6902
|
update_time?: Date | undefined;
|
|
7155
|
-
apple_id?: string | undefined;
|
|
7156
6903
|
about_me?: string | undefined;
|
|
7157
6904
|
join_time?: Date | undefined;
|
|
7158
6905
|
is_mobile?: boolean | undefined;
|
|
@@ -8945,6 +8692,7 @@ export declare const UpdateAccountRequest: {
|
|
|
8945
8692
|
logo?: string | undefined;
|
|
8946
8693
|
splash_screen?: string | undefined;
|
|
8947
8694
|
encrypt_private_key?: string | undefined;
|
|
8695
|
+
email?: string | undefined;
|
|
8948
8696
|
} & {
|
|
8949
8697
|
username?: string | undefined;
|
|
8950
8698
|
display_name?: string | undefined;
|
|
@@ -8957,6 +8705,7 @@ export declare const UpdateAccountRequest: {
|
|
|
8957
8705
|
logo?: string | undefined;
|
|
8958
8706
|
splash_screen?: string | undefined;
|
|
8959
8707
|
encrypt_private_key?: string | undefined;
|
|
8708
|
+
email?: string | undefined;
|
|
8960
8709
|
} & { [K in Exclude<keyof I, keyof UpdateAccountRequest>]: never; }>(base?: I | undefined): UpdateAccountRequest;
|
|
8961
8710
|
fromPartial<I_1 extends {
|
|
8962
8711
|
username?: string | undefined;
|
|
@@ -8970,6 +8719,7 @@ export declare const UpdateAccountRequest: {
|
|
|
8970
8719
|
logo?: string | undefined;
|
|
8971
8720
|
splash_screen?: string | undefined;
|
|
8972
8721
|
encrypt_private_key?: string | undefined;
|
|
8722
|
+
email?: string | undefined;
|
|
8973
8723
|
} & {
|
|
8974
8724
|
username?: string | undefined;
|
|
8975
8725
|
display_name?: string | undefined;
|
|
@@ -8982,6 +8732,7 @@ export declare const UpdateAccountRequest: {
|
|
|
8982
8732
|
logo?: string | undefined;
|
|
8983
8733
|
splash_screen?: string | undefined;
|
|
8984
8734
|
encrypt_private_key?: string | undefined;
|
|
8735
|
+
email?: string | undefined;
|
|
8985
8736
|
} & { [K_1 in Exclude<keyof I_1, keyof UpdateAccountRequest>]: never; }>(object: I_1): UpdateAccountRequest;
|
|
8986
8737
|
};
|
|
8987
8738
|
export declare const UpdateGroupRequest: {
|
|
@@ -9058,15 +8809,11 @@ export declare const User: {
|
|
|
9058
8809
|
location?: string | undefined;
|
|
9059
8810
|
timezone?: string | undefined;
|
|
9060
8811
|
metadata?: string | undefined;
|
|
9061
|
-
facebook_id?: string | undefined;
|
|
9062
|
-
google_id?: string | undefined;
|
|
9063
|
-
gamecenter_id?: string | undefined;
|
|
9064
|
-
steam_id?: string | undefined;
|
|
9065
8812
|
online?: boolean | undefined;
|
|
8813
|
+
phone_number?: string | undefined;
|
|
9066
8814
|
edge_count?: number | undefined;
|
|
9067
8815
|
create_time?: Date | undefined;
|
|
9068
8816
|
update_time?: Date | undefined;
|
|
9069
|
-
apple_id?: string | undefined;
|
|
9070
8817
|
about_me?: string | undefined;
|
|
9071
8818
|
join_time?: Date | undefined;
|
|
9072
8819
|
is_mobile?: boolean | undefined;
|
|
@@ -9082,15 +8829,11 @@ export declare const User: {
|
|
|
9082
8829
|
location?: string | undefined;
|
|
9083
8830
|
timezone?: string | undefined;
|
|
9084
8831
|
metadata?: string | undefined;
|
|
9085
|
-
facebook_id?: string | undefined;
|
|
9086
|
-
google_id?: string | undefined;
|
|
9087
|
-
gamecenter_id?: string | undefined;
|
|
9088
|
-
steam_id?: string | undefined;
|
|
9089
8832
|
online?: boolean | undefined;
|
|
8833
|
+
phone_number?: string | undefined;
|
|
9090
8834
|
edge_count?: number | undefined;
|
|
9091
8835
|
create_time?: Date | undefined;
|
|
9092
8836
|
update_time?: Date | undefined;
|
|
9093
|
-
apple_id?: string | undefined;
|
|
9094
8837
|
about_me?: string | undefined;
|
|
9095
8838
|
join_time?: Date | undefined;
|
|
9096
8839
|
is_mobile?: boolean | undefined;
|
|
@@ -9107,15 +8850,11 @@ export declare const User: {
|
|
|
9107
8850
|
location?: string | undefined;
|
|
9108
8851
|
timezone?: string | undefined;
|
|
9109
8852
|
metadata?: string | undefined;
|
|
9110
|
-
facebook_id?: string | undefined;
|
|
9111
|
-
google_id?: string | undefined;
|
|
9112
|
-
gamecenter_id?: string | undefined;
|
|
9113
|
-
steam_id?: string | undefined;
|
|
9114
8853
|
online?: boolean | undefined;
|
|
8854
|
+
phone_number?: string | undefined;
|
|
9115
8855
|
edge_count?: number | undefined;
|
|
9116
8856
|
create_time?: Date | undefined;
|
|
9117
8857
|
update_time?: Date | undefined;
|
|
9118
|
-
apple_id?: string | undefined;
|
|
9119
8858
|
about_me?: string | undefined;
|
|
9120
8859
|
join_time?: Date | undefined;
|
|
9121
8860
|
is_mobile?: boolean | undefined;
|
|
@@ -9131,15 +8870,11 @@ export declare const User: {
|
|
|
9131
8870
|
location?: string | undefined;
|
|
9132
8871
|
timezone?: string | undefined;
|
|
9133
8872
|
metadata?: string | undefined;
|
|
9134
|
-
facebook_id?: string | undefined;
|
|
9135
|
-
google_id?: string | undefined;
|
|
9136
|
-
gamecenter_id?: string | undefined;
|
|
9137
|
-
steam_id?: string | undefined;
|
|
9138
8873
|
online?: boolean | undefined;
|
|
8874
|
+
phone_number?: string | undefined;
|
|
9139
8875
|
edge_count?: number | undefined;
|
|
9140
8876
|
create_time?: Date | undefined;
|
|
9141
8877
|
update_time?: Date | undefined;
|
|
9142
|
-
apple_id?: string | undefined;
|
|
9143
8878
|
about_me?: string | undefined;
|
|
9144
8879
|
join_time?: Date | undefined;
|
|
9145
8880
|
is_mobile?: boolean | undefined;
|
|
@@ -9467,15 +9202,11 @@ export declare const Users: {
|
|
|
9467
9202
|
location?: string | undefined;
|
|
9468
9203
|
timezone?: string | undefined;
|
|
9469
9204
|
metadata?: string | undefined;
|
|
9470
|
-
facebook_id?: string | undefined;
|
|
9471
|
-
google_id?: string | undefined;
|
|
9472
|
-
gamecenter_id?: string | undefined;
|
|
9473
|
-
steam_id?: string | undefined;
|
|
9474
9205
|
online?: boolean | undefined;
|
|
9206
|
+
phone_number?: string | undefined;
|
|
9475
9207
|
edge_count?: number | undefined;
|
|
9476
9208
|
create_time?: Date | undefined;
|
|
9477
9209
|
update_time?: Date | undefined;
|
|
9478
|
-
apple_id?: string | undefined;
|
|
9479
9210
|
about_me?: string | undefined;
|
|
9480
9211
|
join_time?: Date | undefined;
|
|
9481
9212
|
is_mobile?: boolean | undefined;
|
|
@@ -9493,15 +9224,11 @@ export declare const Users: {
|
|
|
9493
9224
|
location?: string | undefined;
|
|
9494
9225
|
timezone?: string | undefined;
|
|
9495
9226
|
metadata?: string | undefined;
|
|
9496
|
-
facebook_id?: string | undefined;
|
|
9497
|
-
google_id?: string | undefined;
|
|
9498
|
-
gamecenter_id?: string | undefined;
|
|
9499
|
-
steam_id?: string | undefined;
|
|
9500
9227
|
online?: boolean | undefined;
|
|
9228
|
+
phone_number?: string | undefined;
|
|
9501
9229
|
edge_count?: number | undefined;
|
|
9502
9230
|
create_time?: Date | undefined;
|
|
9503
9231
|
update_time?: Date | undefined;
|
|
9504
|
-
apple_id?: string | undefined;
|
|
9505
9232
|
about_me?: string | undefined;
|
|
9506
9233
|
join_time?: Date | undefined;
|
|
9507
9234
|
is_mobile?: boolean | undefined;
|
|
@@ -9517,15 +9244,11 @@ export declare const Users: {
|
|
|
9517
9244
|
location?: string | undefined;
|
|
9518
9245
|
timezone?: string | undefined;
|
|
9519
9246
|
metadata?: string | undefined;
|
|
9520
|
-
facebook_id?: string | undefined;
|
|
9521
|
-
google_id?: string | undefined;
|
|
9522
|
-
gamecenter_id?: string | undefined;
|
|
9523
|
-
steam_id?: string | undefined;
|
|
9524
9247
|
online?: boolean | undefined;
|
|
9248
|
+
phone_number?: string | undefined;
|
|
9525
9249
|
edge_count?: number | undefined;
|
|
9526
9250
|
create_time?: Date | undefined;
|
|
9527
9251
|
update_time?: Date | undefined;
|
|
9528
|
-
apple_id?: string | undefined;
|
|
9529
9252
|
about_me?: string | undefined;
|
|
9530
9253
|
join_time?: Date | undefined;
|
|
9531
9254
|
is_mobile?: boolean | undefined;
|
|
@@ -9541,15 +9264,11 @@ export declare const Users: {
|
|
|
9541
9264
|
location?: string | undefined;
|
|
9542
9265
|
timezone?: string | undefined;
|
|
9543
9266
|
metadata?: string | undefined;
|
|
9544
|
-
facebook_id?: string | undefined;
|
|
9545
|
-
google_id?: string | undefined;
|
|
9546
|
-
gamecenter_id?: string | undefined;
|
|
9547
|
-
steam_id?: string | undefined;
|
|
9548
9267
|
online?: boolean | undefined;
|
|
9268
|
+
phone_number?: string | undefined;
|
|
9549
9269
|
edge_count?: number | undefined;
|
|
9550
9270
|
create_time?: Date | undefined;
|
|
9551
9271
|
update_time?: Date | undefined;
|
|
9552
|
-
apple_id?: string | undefined;
|
|
9553
9272
|
about_me?: string | undefined;
|
|
9554
9273
|
join_time?: Date | undefined;
|
|
9555
9274
|
is_mobile?: boolean | undefined;
|
|
@@ -9565,15 +9284,11 @@ export declare const Users: {
|
|
|
9565
9284
|
location?: string | undefined;
|
|
9566
9285
|
timezone?: string | undefined;
|
|
9567
9286
|
metadata?: string | undefined;
|
|
9568
|
-
facebook_id?: string | undefined;
|
|
9569
|
-
google_id?: string | undefined;
|
|
9570
|
-
gamecenter_id?: string | undefined;
|
|
9571
|
-
steam_id?: string | undefined;
|
|
9572
9287
|
online?: boolean | undefined;
|
|
9288
|
+
phone_number?: string | undefined;
|
|
9573
9289
|
edge_count?: number | undefined;
|
|
9574
9290
|
create_time?: Date | undefined;
|
|
9575
9291
|
update_time?: Date | undefined;
|
|
9576
|
-
apple_id?: string | undefined;
|
|
9577
9292
|
about_me?: string | undefined;
|
|
9578
9293
|
join_time?: Date | undefined;
|
|
9579
9294
|
is_mobile?: boolean | undefined;
|
|
@@ -9592,15 +9307,11 @@ export declare const Users: {
|
|
|
9592
9307
|
location?: string | undefined;
|
|
9593
9308
|
timezone?: string | undefined;
|
|
9594
9309
|
metadata?: string | undefined;
|
|
9595
|
-
facebook_id?: string | undefined;
|
|
9596
|
-
google_id?: string | undefined;
|
|
9597
|
-
gamecenter_id?: string | undefined;
|
|
9598
|
-
steam_id?: string | undefined;
|
|
9599
9310
|
online?: boolean | undefined;
|
|
9311
|
+
phone_number?: string | undefined;
|
|
9600
9312
|
edge_count?: number | undefined;
|
|
9601
9313
|
create_time?: Date | undefined;
|
|
9602
9314
|
update_time?: Date | undefined;
|
|
9603
|
-
apple_id?: string | undefined;
|
|
9604
9315
|
about_me?: string | undefined;
|
|
9605
9316
|
join_time?: Date | undefined;
|
|
9606
9317
|
is_mobile?: boolean | undefined;
|
|
@@ -9618,15 +9329,11 @@ export declare const Users: {
|
|
|
9618
9329
|
location?: string | undefined;
|
|
9619
9330
|
timezone?: string | undefined;
|
|
9620
9331
|
metadata?: string | undefined;
|
|
9621
|
-
facebook_id?: string | undefined;
|
|
9622
|
-
google_id?: string | undefined;
|
|
9623
|
-
gamecenter_id?: string | undefined;
|
|
9624
|
-
steam_id?: string | undefined;
|
|
9625
9332
|
online?: boolean | undefined;
|
|
9333
|
+
phone_number?: string | undefined;
|
|
9626
9334
|
edge_count?: number | undefined;
|
|
9627
9335
|
create_time?: Date | undefined;
|
|
9628
9336
|
update_time?: Date | undefined;
|
|
9629
|
-
apple_id?: string | undefined;
|
|
9630
9337
|
about_me?: string | undefined;
|
|
9631
9338
|
join_time?: Date | undefined;
|
|
9632
9339
|
is_mobile?: boolean | undefined;
|
|
@@ -9642,15 +9349,11 @@ export declare const Users: {
|
|
|
9642
9349
|
location?: string | undefined;
|
|
9643
9350
|
timezone?: string | undefined;
|
|
9644
9351
|
metadata?: string | undefined;
|
|
9645
|
-
facebook_id?: string | undefined;
|
|
9646
|
-
google_id?: string | undefined;
|
|
9647
|
-
gamecenter_id?: string | undefined;
|
|
9648
|
-
steam_id?: string | undefined;
|
|
9649
9352
|
online?: boolean | undefined;
|
|
9353
|
+
phone_number?: string | undefined;
|
|
9650
9354
|
edge_count?: number | undefined;
|
|
9651
9355
|
create_time?: Date | undefined;
|
|
9652
9356
|
update_time?: Date | undefined;
|
|
9653
|
-
apple_id?: string | undefined;
|
|
9654
9357
|
about_me?: string | undefined;
|
|
9655
9358
|
join_time?: Date | undefined;
|
|
9656
9359
|
is_mobile?: boolean | undefined;
|
|
@@ -9666,15 +9369,11 @@ export declare const Users: {
|
|
|
9666
9369
|
location?: string | undefined;
|
|
9667
9370
|
timezone?: string | undefined;
|
|
9668
9371
|
metadata?: string | undefined;
|
|
9669
|
-
facebook_id?: string | undefined;
|
|
9670
|
-
google_id?: string | undefined;
|
|
9671
|
-
gamecenter_id?: string | undefined;
|
|
9672
|
-
steam_id?: string | undefined;
|
|
9673
9372
|
online?: boolean | undefined;
|
|
9373
|
+
phone_number?: string | undefined;
|
|
9674
9374
|
edge_count?: number | undefined;
|
|
9675
9375
|
create_time?: Date | undefined;
|
|
9676
9376
|
update_time?: Date | undefined;
|
|
9677
|
-
apple_id?: string | undefined;
|
|
9678
9377
|
about_me?: string | undefined;
|
|
9679
9378
|
join_time?: Date | undefined;
|
|
9680
9379
|
is_mobile?: boolean | undefined;
|
|
@@ -9690,15 +9389,11 @@ export declare const Users: {
|
|
|
9690
9389
|
location?: string | undefined;
|
|
9691
9390
|
timezone?: string | undefined;
|
|
9692
9391
|
metadata?: string | undefined;
|
|
9693
|
-
facebook_id?: string | undefined;
|
|
9694
|
-
google_id?: string | undefined;
|
|
9695
|
-
gamecenter_id?: string | undefined;
|
|
9696
|
-
steam_id?: string | undefined;
|
|
9697
9392
|
online?: boolean | undefined;
|
|
9393
|
+
phone_number?: string | undefined;
|
|
9698
9394
|
edge_count?: number | undefined;
|
|
9699
9395
|
create_time?: Date | undefined;
|
|
9700
9396
|
update_time?: Date | undefined;
|
|
9701
|
-
apple_id?: string | undefined;
|
|
9702
9397
|
about_me?: string | undefined;
|
|
9703
9398
|
join_time?: Date | undefined;
|
|
9704
9399
|
is_mobile?: boolean | undefined;
|
|
@@ -12186,15 +11881,19 @@ export declare const DeleteChannelDescRequest: {
|
|
|
12186
11881
|
fromJSON(object: any): DeleteChannelDescRequest;
|
|
12187
11882
|
toJSON(message: DeleteChannelDescRequest): unknown;
|
|
12188
11883
|
create<I extends {
|
|
11884
|
+
clan_id?: string | undefined;
|
|
12189
11885
|
channel_id?: string | undefined;
|
|
12190
11886
|
} & {
|
|
11887
|
+
clan_id?: string | undefined;
|
|
12191
11888
|
channel_id?: string | undefined;
|
|
12192
|
-
} & { [K in Exclude<keyof I,
|
|
11889
|
+
} & { [K in Exclude<keyof I, keyof DeleteChannelDescRequest>]: never; }>(base?: I | undefined): DeleteChannelDescRequest;
|
|
12193
11890
|
fromPartial<I_1 extends {
|
|
11891
|
+
clan_id?: string | undefined;
|
|
12194
11892
|
channel_id?: string | undefined;
|
|
12195
11893
|
} & {
|
|
11894
|
+
clan_id?: string | undefined;
|
|
12196
11895
|
channel_id?: string | undefined;
|
|
12197
|
-
} & { [K_1 in Exclude<keyof I_1,
|
|
11896
|
+
} & { [K_1 in Exclude<keyof I_1, keyof DeleteChannelDescRequest>]: never; }>(object: I_1): DeleteChannelDescRequest;
|
|
12198
11897
|
};
|
|
12199
11898
|
export declare const UpdateChannelDescRequest: {
|
|
12200
11899
|
encode(message: UpdateChannelDescRequest, writer?: _m0.Writer): _m0.Writer;
|
|
@@ -12202,6 +11901,7 @@ export declare const UpdateChannelDescRequest: {
|
|
|
12202
11901
|
fromJSON(object: any): UpdateChannelDescRequest;
|
|
12203
11902
|
toJSON(message: UpdateChannelDescRequest): unknown;
|
|
12204
11903
|
create<I extends {
|
|
11904
|
+
clan_id?: string | undefined;
|
|
12205
11905
|
channel_id?: string | undefined;
|
|
12206
11906
|
channel_label?: string | undefined;
|
|
12207
11907
|
category_id?: string | undefined;
|
|
@@ -12210,6 +11910,7 @@ export declare const UpdateChannelDescRequest: {
|
|
|
12210
11910
|
age_restricted?: number | undefined;
|
|
12211
11911
|
e2ee?: number | undefined;
|
|
12212
11912
|
} & {
|
|
11913
|
+
clan_id?: string | undefined;
|
|
12213
11914
|
channel_id?: string | undefined;
|
|
12214
11915
|
channel_label?: string | undefined;
|
|
12215
11916
|
category_id?: string | undefined;
|
|
@@ -12219,6 +11920,7 @@ export declare const UpdateChannelDescRequest: {
|
|
|
12219
11920
|
e2ee?: number | undefined;
|
|
12220
11921
|
} & { [K in Exclude<keyof I, keyof UpdateChannelDescRequest>]: never; }>(base?: I | undefined): UpdateChannelDescRequest;
|
|
12221
11922
|
fromPartial<I_1 extends {
|
|
11923
|
+
clan_id?: string | undefined;
|
|
12222
11924
|
channel_id?: string | undefined;
|
|
12223
11925
|
channel_label?: string | undefined;
|
|
12224
11926
|
category_id?: string | undefined;
|
|
@@ -12227,6 +11929,7 @@ export declare const UpdateChannelDescRequest: {
|
|
|
12227
11929
|
age_restricted?: number | undefined;
|
|
12228
11930
|
e2ee?: number | undefined;
|
|
12229
11931
|
} & {
|
|
11932
|
+
clan_id?: string | undefined;
|
|
12230
11933
|
channel_id?: string | undefined;
|
|
12231
11934
|
channel_label?: string | undefined;
|
|
12232
11935
|
category_id?: string | undefined;
|
|
@@ -12242,22 +11945,26 @@ export declare const ChangeChannelPrivateRequest: {
|
|
|
12242
11945
|
fromJSON(object: any): ChangeChannelPrivateRequest;
|
|
12243
11946
|
toJSON(message: ChangeChannelPrivateRequest): unknown;
|
|
12244
11947
|
create<I extends {
|
|
11948
|
+
clan_id?: string | undefined;
|
|
12245
11949
|
channel_id?: string | undefined;
|
|
12246
11950
|
channel_private?: number | undefined;
|
|
12247
11951
|
user_ids?: string[] | undefined;
|
|
12248
11952
|
role_ids?: string[] | undefined;
|
|
12249
11953
|
} & {
|
|
11954
|
+
clan_id?: string | undefined;
|
|
12250
11955
|
channel_id?: string | undefined;
|
|
12251
11956
|
channel_private?: number | undefined;
|
|
12252
11957
|
user_ids?: (string[] & string[] & { [K in Exclude<keyof I["user_ids"], keyof string[]>]: never; }) | undefined;
|
|
12253
11958
|
role_ids?: (string[] & string[] & { [K_1 in Exclude<keyof I["role_ids"], keyof string[]>]: never; }) | undefined;
|
|
12254
11959
|
} & { [K_2 in Exclude<keyof I, keyof ChangeChannelPrivateRequest>]: never; }>(base?: I | undefined): ChangeChannelPrivateRequest;
|
|
12255
11960
|
fromPartial<I_1 extends {
|
|
11961
|
+
clan_id?: string | undefined;
|
|
12256
11962
|
channel_id?: string | undefined;
|
|
12257
11963
|
channel_private?: number | undefined;
|
|
12258
11964
|
user_ids?: string[] | undefined;
|
|
12259
11965
|
role_ids?: string[] | undefined;
|
|
12260
11966
|
} & {
|
|
11967
|
+
clan_id?: string | undefined;
|
|
12261
11968
|
channel_id?: string | undefined;
|
|
12262
11969
|
channel_private?: number | undefined;
|
|
12263
11970
|
user_ids?: (string[] & string[] & { [K_3 in Exclude<keyof I_1["user_ids"], keyof string[]>]: never; }) | undefined;
|
|
@@ -12330,15 +12037,19 @@ export declare const LeaveThreadRequest: {
|
|
|
12330
12037
|
fromJSON(object: any): LeaveThreadRequest;
|
|
12331
12038
|
toJSON(message: LeaveThreadRequest): unknown;
|
|
12332
12039
|
create<I extends {
|
|
12040
|
+
clan_id?: string | undefined;
|
|
12333
12041
|
channel_id?: string | undefined;
|
|
12334
12042
|
} & {
|
|
12043
|
+
clan_id?: string | undefined;
|
|
12335
12044
|
channel_id?: string | undefined;
|
|
12336
|
-
} & { [K in Exclude<keyof I,
|
|
12045
|
+
} & { [K in Exclude<keyof I, keyof LeaveThreadRequest>]: never; }>(base?: I | undefined): LeaveThreadRequest;
|
|
12337
12046
|
fromPartial<I_1 extends {
|
|
12047
|
+
clan_id?: string | undefined;
|
|
12338
12048
|
channel_id?: string | undefined;
|
|
12339
12049
|
} & {
|
|
12050
|
+
clan_id?: string | undefined;
|
|
12340
12051
|
channel_id?: string | undefined;
|
|
12341
|
-
} & { [K_1 in Exclude<keyof I_1,
|
|
12052
|
+
} & { [K_1 in Exclude<keyof I_1, keyof LeaveThreadRequest>]: never; }>(object: I_1): LeaveThreadRequest;
|
|
12342
12053
|
};
|
|
12343
12054
|
export declare const Role: {
|
|
12344
12055
|
encode(message: Role, writer?: _m0.Writer): _m0.Writer;
|
|
@@ -15948,6 +15659,7 @@ export declare const RegistrationEmailRequest: {
|
|
|
15948
15659
|
create<I extends {
|
|
15949
15660
|
email?: string | undefined;
|
|
15950
15661
|
password?: string | undefined;
|
|
15662
|
+
old_password?: string | undefined;
|
|
15951
15663
|
username?: string | undefined;
|
|
15952
15664
|
display_name?: string | undefined;
|
|
15953
15665
|
avatar_url?: string | undefined;
|
|
@@ -15958,6 +15670,7 @@ export declare const RegistrationEmailRequest: {
|
|
|
15958
15670
|
} & {
|
|
15959
15671
|
email?: string | undefined;
|
|
15960
15672
|
password?: string | undefined;
|
|
15673
|
+
old_password?: string | undefined;
|
|
15961
15674
|
username?: string | undefined;
|
|
15962
15675
|
display_name?: string | undefined;
|
|
15963
15676
|
avatar_url?: string | undefined;
|
|
@@ -15971,6 +15684,7 @@ export declare const RegistrationEmailRequest: {
|
|
|
15971
15684
|
fromPartial<I_1 extends {
|
|
15972
15685
|
email?: string | undefined;
|
|
15973
15686
|
password?: string | undefined;
|
|
15687
|
+
old_password?: string | undefined;
|
|
15974
15688
|
username?: string | undefined;
|
|
15975
15689
|
display_name?: string | undefined;
|
|
15976
15690
|
avatar_url?: string | undefined;
|
|
@@ -15981,6 +15695,7 @@ export declare const RegistrationEmailRequest: {
|
|
|
15981
15695
|
} & {
|
|
15982
15696
|
email?: string | undefined;
|
|
15983
15697
|
password?: string | undefined;
|
|
15698
|
+
old_password?: string | undefined;
|
|
15984
15699
|
username?: string | undefined;
|
|
15985
15700
|
display_name?: string | undefined;
|
|
15986
15701
|
avatar_url?: string | undefined;
|
|
@@ -18065,15 +17780,11 @@ export declare const AllUserClans: {
|
|
|
18065
17780
|
location?: string | undefined;
|
|
18066
17781
|
timezone?: string | undefined;
|
|
18067
17782
|
metadata?: string | undefined;
|
|
18068
|
-
facebook_id?: string | undefined;
|
|
18069
|
-
google_id?: string | undefined;
|
|
18070
|
-
gamecenter_id?: string | undefined;
|
|
18071
|
-
steam_id?: string | undefined;
|
|
18072
17783
|
online?: boolean | undefined;
|
|
17784
|
+
phone_number?: string | undefined;
|
|
18073
17785
|
edge_count?: number | undefined;
|
|
18074
17786
|
create_time?: Date | undefined;
|
|
18075
17787
|
update_time?: Date | undefined;
|
|
18076
|
-
apple_id?: string | undefined;
|
|
18077
17788
|
about_me?: string | undefined;
|
|
18078
17789
|
join_time?: Date | undefined;
|
|
18079
17790
|
is_mobile?: boolean | undefined;
|
|
@@ -18091,15 +17802,11 @@ export declare const AllUserClans: {
|
|
|
18091
17802
|
location?: string | undefined;
|
|
18092
17803
|
timezone?: string | undefined;
|
|
18093
17804
|
metadata?: string | undefined;
|
|
18094
|
-
facebook_id?: string | undefined;
|
|
18095
|
-
google_id?: string | undefined;
|
|
18096
|
-
gamecenter_id?: string | undefined;
|
|
18097
|
-
steam_id?: string | undefined;
|
|
18098
17805
|
online?: boolean | undefined;
|
|
17806
|
+
phone_number?: string | undefined;
|
|
18099
17807
|
edge_count?: number | undefined;
|
|
18100
17808
|
create_time?: Date | undefined;
|
|
18101
17809
|
update_time?: Date | undefined;
|
|
18102
|
-
apple_id?: string | undefined;
|
|
18103
17810
|
about_me?: string | undefined;
|
|
18104
17811
|
join_time?: Date | undefined;
|
|
18105
17812
|
is_mobile?: boolean | undefined;
|
|
@@ -18115,15 +17822,11 @@ export declare const AllUserClans: {
|
|
|
18115
17822
|
location?: string | undefined;
|
|
18116
17823
|
timezone?: string | undefined;
|
|
18117
17824
|
metadata?: string | undefined;
|
|
18118
|
-
facebook_id?: string | undefined;
|
|
18119
|
-
google_id?: string | undefined;
|
|
18120
|
-
gamecenter_id?: string | undefined;
|
|
18121
|
-
steam_id?: string | undefined;
|
|
18122
17825
|
online?: boolean | undefined;
|
|
17826
|
+
phone_number?: string | undefined;
|
|
18123
17827
|
edge_count?: number | undefined;
|
|
18124
17828
|
create_time?: Date | undefined;
|
|
18125
17829
|
update_time?: Date | undefined;
|
|
18126
|
-
apple_id?: string | undefined;
|
|
18127
17830
|
about_me?: string | undefined;
|
|
18128
17831
|
join_time?: Date | undefined;
|
|
18129
17832
|
is_mobile?: boolean | undefined;
|
|
@@ -18139,15 +17842,11 @@ export declare const AllUserClans: {
|
|
|
18139
17842
|
location?: string | undefined;
|
|
18140
17843
|
timezone?: string | undefined;
|
|
18141
17844
|
metadata?: string | undefined;
|
|
18142
|
-
facebook_id?: string | undefined;
|
|
18143
|
-
google_id?: string | undefined;
|
|
18144
|
-
gamecenter_id?: string | undefined;
|
|
18145
|
-
steam_id?: string | undefined;
|
|
18146
17845
|
online?: boolean | undefined;
|
|
17846
|
+
phone_number?: string | undefined;
|
|
18147
17847
|
edge_count?: number | undefined;
|
|
18148
17848
|
create_time?: Date | undefined;
|
|
18149
17849
|
update_time?: Date | undefined;
|
|
18150
|
-
apple_id?: string | undefined;
|
|
18151
17850
|
about_me?: string | undefined;
|
|
18152
17851
|
join_time?: Date | undefined;
|
|
18153
17852
|
is_mobile?: boolean | undefined;
|
|
@@ -18163,15 +17862,11 @@ export declare const AllUserClans: {
|
|
|
18163
17862
|
location?: string | undefined;
|
|
18164
17863
|
timezone?: string | undefined;
|
|
18165
17864
|
metadata?: string | undefined;
|
|
18166
|
-
facebook_id?: string | undefined;
|
|
18167
|
-
google_id?: string | undefined;
|
|
18168
|
-
gamecenter_id?: string | undefined;
|
|
18169
|
-
steam_id?: string | undefined;
|
|
18170
17865
|
online?: boolean | undefined;
|
|
17866
|
+
phone_number?: string | undefined;
|
|
18171
17867
|
edge_count?: number | undefined;
|
|
18172
17868
|
create_time?: Date | undefined;
|
|
18173
17869
|
update_time?: Date | undefined;
|
|
18174
|
-
apple_id?: string | undefined;
|
|
18175
17870
|
about_me?: string | undefined;
|
|
18176
17871
|
join_time?: Date | undefined;
|
|
18177
17872
|
is_mobile?: boolean | undefined;
|
|
@@ -18190,15 +17885,11 @@ export declare const AllUserClans: {
|
|
|
18190
17885
|
location?: string | undefined;
|
|
18191
17886
|
timezone?: string | undefined;
|
|
18192
17887
|
metadata?: string | undefined;
|
|
18193
|
-
facebook_id?: string | undefined;
|
|
18194
|
-
google_id?: string | undefined;
|
|
18195
|
-
gamecenter_id?: string | undefined;
|
|
18196
|
-
steam_id?: string | undefined;
|
|
18197
17888
|
online?: boolean | undefined;
|
|
17889
|
+
phone_number?: string | undefined;
|
|
18198
17890
|
edge_count?: number | undefined;
|
|
18199
17891
|
create_time?: Date | undefined;
|
|
18200
17892
|
update_time?: Date | undefined;
|
|
18201
|
-
apple_id?: string | undefined;
|
|
18202
17893
|
about_me?: string | undefined;
|
|
18203
17894
|
join_time?: Date | undefined;
|
|
18204
17895
|
is_mobile?: boolean | undefined;
|
|
@@ -18216,15 +17907,11 @@ export declare const AllUserClans: {
|
|
|
18216
17907
|
location?: string | undefined;
|
|
18217
17908
|
timezone?: string | undefined;
|
|
18218
17909
|
metadata?: string | undefined;
|
|
18219
|
-
facebook_id?: string | undefined;
|
|
18220
|
-
google_id?: string | undefined;
|
|
18221
|
-
gamecenter_id?: string | undefined;
|
|
18222
|
-
steam_id?: string | undefined;
|
|
18223
17910
|
online?: boolean | undefined;
|
|
17911
|
+
phone_number?: string | undefined;
|
|
18224
17912
|
edge_count?: number | undefined;
|
|
18225
17913
|
create_time?: Date | undefined;
|
|
18226
17914
|
update_time?: Date | undefined;
|
|
18227
|
-
apple_id?: string | undefined;
|
|
18228
17915
|
about_me?: string | undefined;
|
|
18229
17916
|
join_time?: Date | undefined;
|
|
18230
17917
|
is_mobile?: boolean | undefined;
|
|
@@ -18240,15 +17927,11 @@ export declare const AllUserClans: {
|
|
|
18240
17927
|
location?: string | undefined;
|
|
18241
17928
|
timezone?: string | undefined;
|
|
18242
17929
|
metadata?: string | undefined;
|
|
18243
|
-
facebook_id?: string | undefined;
|
|
18244
|
-
google_id?: string | undefined;
|
|
18245
|
-
gamecenter_id?: string | undefined;
|
|
18246
|
-
steam_id?: string | undefined;
|
|
18247
17930
|
online?: boolean | undefined;
|
|
17931
|
+
phone_number?: string | undefined;
|
|
18248
17932
|
edge_count?: number | undefined;
|
|
18249
17933
|
create_time?: Date | undefined;
|
|
18250
17934
|
update_time?: Date | undefined;
|
|
18251
|
-
apple_id?: string | undefined;
|
|
18252
17935
|
about_me?: string | undefined;
|
|
18253
17936
|
join_time?: Date | undefined;
|
|
18254
17937
|
is_mobile?: boolean | undefined;
|
|
@@ -18264,15 +17947,11 @@ export declare const AllUserClans: {
|
|
|
18264
17947
|
location?: string | undefined;
|
|
18265
17948
|
timezone?: string | undefined;
|
|
18266
17949
|
metadata?: string | undefined;
|
|
18267
|
-
facebook_id?: string | undefined;
|
|
18268
|
-
google_id?: string | undefined;
|
|
18269
|
-
gamecenter_id?: string | undefined;
|
|
18270
|
-
steam_id?: string | undefined;
|
|
18271
17950
|
online?: boolean | undefined;
|
|
17951
|
+
phone_number?: string | undefined;
|
|
18272
17952
|
edge_count?: number | undefined;
|
|
18273
17953
|
create_time?: Date | undefined;
|
|
18274
17954
|
update_time?: Date | undefined;
|
|
18275
|
-
apple_id?: string | undefined;
|
|
18276
17955
|
about_me?: string | undefined;
|
|
18277
17956
|
join_time?: Date | undefined;
|
|
18278
17957
|
is_mobile?: boolean | undefined;
|
|
@@ -18288,15 +17967,11 @@ export declare const AllUserClans: {
|
|
|
18288
17967
|
location?: string | undefined;
|
|
18289
17968
|
timezone?: string | undefined;
|
|
18290
17969
|
metadata?: string | undefined;
|
|
18291
|
-
facebook_id?: string | undefined;
|
|
18292
|
-
google_id?: string | undefined;
|
|
18293
|
-
gamecenter_id?: string | undefined;
|
|
18294
|
-
steam_id?: string | undefined;
|
|
18295
17970
|
online?: boolean | undefined;
|
|
17971
|
+
phone_number?: string | undefined;
|
|
18296
17972
|
edge_count?: number | undefined;
|
|
18297
17973
|
create_time?: Date | undefined;
|
|
18298
17974
|
update_time?: Date | undefined;
|
|
18299
|
-
apple_id?: string | undefined;
|
|
18300
17975
|
about_me?: string | undefined;
|
|
18301
17976
|
join_time?: Date | undefined;
|
|
18302
17977
|
is_mobile?: boolean | undefined;
|
|
@@ -20082,15 +19757,19 @@ export declare const RemoveFavoriteChannelRequest: {
|
|
|
20082
19757
|
fromJSON(object: any): RemoveFavoriteChannelRequest;
|
|
20083
19758
|
toJSON(message: RemoveFavoriteChannelRequest): unknown;
|
|
20084
19759
|
create<I extends {
|
|
19760
|
+
clan_id?: string | undefined;
|
|
20085
19761
|
channel_id?: string | undefined;
|
|
20086
19762
|
} & {
|
|
19763
|
+
clan_id?: string | undefined;
|
|
20087
19764
|
channel_id?: string | undefined;
|
|
20088
|
-
} & { [K in Exclude<keyof I,
|
|
19765
|
+
} & { [K in Exclude<keyof I, keyof RemoveFavoriteChannelRequest>]: never; }>(base?: I | undefined): RemoveFavoriteChannelRequest;
|
|
20089
19766
|
fromPartial<I_1 extends {
|
|
19767
|
+
clan_id?: string | undefined;
|
|
20090
19768
|
channel_id?: string | undefined;
|
|
20091
19769
|
} & {
|
|
19770
|
+
clan_id?: string | undefined;
|
|
20092
19771
|
channel_id?: string | undefined;
|
|
20093
|
-
} & { [K_1 in Exclude<keyof I_1,
|
|
19772
|
+
} & { [K_1 in Exclude<keyof I_1, keyof RemoveFavoriteChannelRequest>]: never; }>(object: I_1): RemoveFavoriteChannelRequest;
|
|
20094
19773
|
};
|
|
20095
19774
|
export declare const AddFavoriteChannelResponse: {
|
|
20096
19775
|
encode(message: AddFavoriteChannelResponse, writer?: _m0.Writer): _m0.Writer;
|
|
@@ -24486,12 +24165,14 @@ export declare const AccountEmail: {
|
|
|
24486
24165
|
create<I extends {
|
|
24487
24166
|
email?: string | undefined;
|
|
24488
24167
|
password?: string | undefined;
|
|
24168
|
+
prev_email?: string | undefined;
|
|
24489
24169
|
vars?: {
|
|
24490
24170
|
[x: string]: string | undefined;
|
|
24491
24171
|
} | undefined;
|
|
24492
24172
|
} & {
|
|
24493
24173
|
email?: string | undefined;
|
|
24494
24174
|
password?: string | undefined;
|
|
24175
|
+
prev_email?: string | undefined;
|
|
24495
24176
|
vars?: ({
|
|
24496
24177
|
[x: string]: string | undefined;
|
|
24497
24178
|
} & {
|
|
@@ -24501,12 +24182,14 @@ export declare const AccountEmail: {
|
|
|
24501
24182
|
fromPartial<I_1 extends {
|
|
24502
24183
|
email?: string | undefined;
|
|
24503
24184
|
password?: string | undefined;
|
|
24185
|
+
prev_email?: string | undefined;
|
|
24504
24186
|
vars?: {
|
|
24505
24187
|
[x: string]: string | undefined;
|
|
24506
24188
|
} | undefined;
|
|
24507
24189
|
} & {
|
|
24508
24190
|
email?: string | undefined;
|
|
24509
24191
|
password?: string | undefined;
|
|
24192
|
+
prev_email?: string | undefined;
|
|
24510
24193
|
vars?: ({
|
|
24511
24194
|
[x: string]: string | undefined;
|
|
24512
24195
|
} & {
|
|
@@ -24540,12 +24223,12 @@ export declare const AccountMezon: {
|
|
|
24540
24223
|
fromJSON(object: any): AccountMezon;
|
|
24541
24224
|
toJSON(message: AccountMezon): unknown;
|
|
24542
24225
|
create<I extends {
|
|
24543
|
-
|
|
24226
|
+
phone_number?: string | undefined;
|
|
24544
24227
|
vars?: {
|
|
24545
24228
|
[x: string]: string | undefined;
|
|
24546
24229
|
} | undefined;
|
|
24547
24230
|
} & {
|
|
24548
|
-
|
|
24231
|
+
phone_number?: string | undefined;
|
|
24549
24232
|
vars?: ({
|
|
24550
24233
|
[x: string]: string | undefined;
|
|
24551
24234
|
} & {
|
|
@@ -24553,12 +24236,12 @@ export declare const AccountMezon: {
|
|
|
24553
24236
|
} & { [K in Exclude<keyof I["vars"], string | number>]: never; }) | undefined;
|
|
24554
24237
|
} & { [K_1 in Exclude<keyof I, keyof AccountMezon>]: never; }>(base?: I | undefined): AccountMezon;
|
|
24555
24238
|
fromPartial<I_1 extends {
|
|
24556
|
-
|
|
24239
|
+
phone_number?: string | undefined;
|
|
24557
24240
|
vars?: {
|
|
24558
24241
|
[x: string]: string | undefined;
|
|
24559
24242
|
} | undefined;
|
|
24560
24243
|
} & {
|
|
24561
|
-
|
|
24244
|
+
phone_number?: string | undefined;
|
|
24562
24245
|
vars?: ({
|
|
24563
24246
|
[x: string]: string | undefined;
|
|
24564
24247
|
} & {
|
|
@@ -24586,6 +24269,30 @@ export declare const AccountMezon_VarsEntry: {
|
|
|
24586
24269
|
value?: string | undefined;
|
|
24587
24270
|
} & { [K_1 in Exclude<keyof I_1, keyof AccountMezon_VarsEntry>]: never; }>(object: I_1): AccountMezon_VarsEntry;
|
|
24588
24271
|
};
|
|
24272
|
+
export declare const LinkAccountConfirmRequest: {
|
|
24273
|
+
encode(message: LinkAccountConfirmRequest, writer?: _m0.Writer): _m0.Writer;
|
|
24274
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): LinkAccountConfirmRequest;
|
|
24275
|
+
fromJSON(object: any): LinkAccountConfirmRequest;
|
|
24276
|
+
toJSON(message: LinkAccountConfirmRequest): unknown;
|
|
24277
|
+
create<I extends {
|
|
24278
|
+
req_id?: string | undefined;
|
|
24279
|
+
status?: number | undefined;
|
|
24280
|
+
otp_code?: string | undefined;
|
|
24281
|
+
} & {
|
|
24282
|
+
req_id?: string | undefined;
|
|
24283
|
+
status?: number | undefined;
|
|
24284
|
+
otp_code?: string | undefined;
|
|
24285
|
+
} & { [K in Exclude<keyof I, keyof LinkAccountConfirmRequest>]: never; }>(base?: I | undefined): LinkAccountConfirmRequest;
|
|
24286
|
+
fromPartial<I_1 extends {
|
|
24287
|
+
req_id?: string | undefined;
|
|
24288
|
+
status?: number | undefined;
|
|
24289
|
+
otp_code?: string | undefined;
|
|
24290
|
+
} & {
|
|
24291
|
+
req_id?: string | undefined;
|
|
24292
|
+
status?: number | undefined;
|
|
24293
|
+
otp_code?: string | undefined;
|
|
24294
|
+
} & { [K_1 in Exclude<keyof I_1, keyof LinkAccountConfirmRequest>]: never; }>(object: I_1): LinkAccountConfirmRequest;
|
|
24295
|
+
};
|
|
24589
24296
|
export declare const QuickMenuAccess: {
|
|
24590
24297
|
encode(message: QuickMenuAccess, writer?: _m0.Writer): _m0.Writer;
|
|
24591
24298
|
decode(input: _m0.Reader | Uint8Array, length?: number): QuickMenuAccess;
|