mezon-sdk 2.7.80 → 2.7.82
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/api/api.d.ts +591 -96
- package/dist/cjs/api/api.js +833 -77
- package/dist/cjs/api/api.js.map +1 -1
- package/dist/cjs/client.js +3 -3
- package/dist/cjs/client.js.map +1 -1
- package/dist/cjs/interfaces/client.d.ts +1 -1
- package/dist/cjs/interfaces/socket.d.ts +4 -4
- package/dist/cjs/mezon-client/channel_manager.d.ts +2 -0
- package/dist/cjs/mezon-client/channel_manager.js +2 -1
- package/dist/cjs/mezon-client/channel_manager.js.map +1 -1
- package/dist/cjs/mezon-client/message_manager.d.ts +3 -1
- package/dist/cjs/mezon-client/message_manager.js +4 -3
- package/dist/cjs/mezon-client/message_manager.js.map +1 -1
- package/dist/cjs/mezon-client/mezon_client.d.ts +7 -8
- package/dist/cjs/mezon-client/mezon_client.js +11 -44
- package/dist/cjs/mezon-client/mezon_client.js.map +1 -1
- package/dist/cjs/mezon-client/socket_manager.d.ts +12 -1
- package/dist/cjs/mezon-client/socket_manager.js +48 -7
- package/dist/cjs/mezon-client/socket_manager.js.map +1 -1
- package/dist/cjs/rtapi/realtime.d.ts +1704 -377
- package/dist/cjs/rtapi/realtime.js +897 -124
- package/dist/cjs/rtapi/realtime.js.map +1 -1
- package/dist/esm/api/api.d.ts +591 -96
- package/dist/esm/api/api.js +805 -58
- package/dist/esm/api/api.js.map +1 -1
- package/dist/esm/client.js +3 -3
- package/dist/esm/client.js.map +1 -1
- package/dist/esm/interfaces/client.d.ts +1 -1
- package/dist/esm/interfaces/socket.d.ts +4 -4
- package/dist/esm/mezon-client/channel_manager.d.ts +2 -0
- package/dist/esm/mezon-client/channel_manager.js +2 -1
- package/dist/esm/mezon-client/channel_manager.js.map +1 -1
- package/dist/esm/mezon-client/message_manager.d.ts +3 -1
- package/dist/esm/mezon-client/message_manager.js +4 -3
- package/dist/esm/mezon-client/message_manager.js.map +1 -1
- package/dist/esm/mezon-client/mezon_client.d.ts +7 -8
- package/dist/esm/mezon-client/mezon_client.js +11 -45
- package/dist/esm/mezon-client/mezon_client.js.map +1 -1
- package/dist/esm/mezon-client/socket_manager.d.ts +12 -1
- package/dist/esm/mezon-client/socket_manager.js +51 -7
- package/dist/esm/mezon-client/socket_manager.js.map +1 -1
- package/dist/esm/rtapi/realtime.d.ts +1704 -377
- package/dist/esm/rtapi/realtime.js +884 -115
- package/dist/esm/rtapi/realtime.js.map +1 -1
- package/dist/tsconfig.esm.tsbuildinfo +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +1 -1
package/dist/cjs/api/api.d.ts
CHANGED
|
@@ -230,6 +230,8 @@ export interface SessionRefreshRequest {
|
|
|
230
230
|
vars: {
|
|
231
231
|
[key: string]: string;
|
|
232
232
|
};
|
|
233
|
+
/** Whether to enable "Remember Me" for extended session duration. */
|
|
234
|
+
is_remember: boolean | undefined;
|
|
233
235
|
}
|
|
234
236
|
export interface SessionRefreshRequest_VarsEntry {
|
|
235
237
|
key: string;
|
|
@@ -245,6 +247,8 @@ export interface SessionLogoutRequest {
|
|
|
245
247
|
device_id: string;
|
|
246
248
|
/** FCM token from firebase */
|
|
247
249
|
fcm_token: string;
|
|
250
|
+
/** platform */
|
|
251
|
+
platform: string;
|
|
248
252
|
}
|
|
249
253
|
/** Authenticate against the server with Apple Sign In. */
|
|
250
254
|
export interface AuthenticateAppleRequest {
|
|
@@ -302,10 +306,20 @@ export interface AuthenticateGameCenterRequest {
|
|
|
302
306
|
/** Set the username on the account at register. Must be unique. */
|
|
303
307
|
username: string;
|
|
304
308
|
}
|
|
305
|
-
/**
|
|
306
|
-
export interface
|
|
307
|
-
/** The
|
|
308
|
-
|
|
309
|
+
/** MezonAuthenticatedRequest */
|
|
310
|
+
export interface MezonAuthenticatedRequest {
|
|
311
|
+
/** The email */
|
|
312
|
+
email: string;
|
|
313
|
+
secret: string;
|
|
314
|
+
}
|
|
315
|
+
/** MezonAuthenticatedResponse */
|
|
316
|
+
export interface MezonAuthenticatedResponse {
|
|
317
|
+
/** The status */
|
|
318
|
+
authenticated: boolean;
|
|
319
|
+
userId: string;
|
|
320
|
+
username: string;
|
|
321
|
+
display_name: string;
|
|
322
|
+
avatar: string;
|
|
309
323
|
}
|
|
310
324
|
/** Authenticate against the server with Google. */
|
|
311
325
|
export interface AuthenticateGoogleRequest {
|
|
@@ -324,6 +338,8 @@ export interface AuthenticateMezonRequest {
|
|
|
324
338
|
create: boolean | undefined;
|
|
325
339
|
/** Set the username on the account at register. Must be unique. */
|
|
326
340
|
username: string;
|
|
341
|
+
/** Whether to enable "Remember Me" for extended session duration. */
|
|
342
|
+
is_remember: boolean | undefined;
|
|
327
343
|
}
|
|
328
344
|
/** Authenticate against the server with Steam. */
|
|
329
345
|
export interface AuthenticateSteamRequest {
|
|
@@ -483,6 +499,8 @@ export interface MessageReaction {
|
|
|
483
499
|
is_public: boolean;
|
|
484
500
|
/** topic id */
|
|
485
501
|
topic_id: string;
|
|
502
|
+
/** emoji_recent_id */
|
|
503
|
+
emoji_recent_id: string;
|
|
486
504
|
}
|
|
487
505
|
/** Message attachment */
|
|
488
506
|
export interface MessageAttachment {
|
|
@@ -498,6 +516,8 @@ export interface MessageAttachment {
|
|
|
498
516
|
width: number;
|
|
499
517
|
/** Attachment width */
|
|
500
518
|
height: number;
|
|
519
|
+
/** thumbnail */
|
|
520
|
+
thumbnail: string;
|
|
501
521
|
}
|
|
502
522
|
/** Message reference */
|
|
503
523
|
export interface MessageRef {
|
|
@@ -569,6 +589,8 @@ export interface DeleteGroupRequest {
|
|
|
569
589
|
export interface DeleteNotificationsRequest {
|
|
570
590
|
/** The id of notifications. */
|
|
571
591
|
ids: string[];
|
|
592
|
+
/** The category of notifications. */
|
|
593
|
+
category: number;
|
|
572
594
|
}
|
|
573
595
|
/** Represents an event to be passed through the server to registered event handlers. */
|
|
574
596
|
export interface Event {
|
|
@@ -928,8 +950,8 @@ export interface ListNotificationsRequest {
|
|
|
928
950
|
clan_id: string;
|
|
929
951
|
/** The current notification Id. */
|
|
930
952
|
notification_id: string;
|
|
931
|
-
/** The
|
|
932
|
-
|
|
953
|
+
/** The category (1: mentions, 2: mesages, 3: for you). */
|
|
954
|
+
category: number;
|
|
933
955
|
/** True if listing should be older notifications to newer, false if reverse. */
|
|
934
956
|
direction: number | undefined;
|
|
935
957
|
}
|
|
@@ -970,6 +992,24 @@ export interface Notification {
|
|
|
970
992
|
avatar_url: string;
|
|
971
993
|
/** */
|
|
972
994
|
channel: ChannelDescription | undefined;
|
|
995
|
+
/** */
|
|
996
|
+
topic_id: string;
|
|
997
|
+
/** category. */
|
|
998
|
+
category: number;
|
|
999
|
+
}
|
|
1000
|
+
/** */
|
|
1001
|
+
export interface EmojiRecent {
|
|
1002
|
+
/** ID of the emoji. */
|
|
1003
|
+
emoji_recents_id: string;
|
|
1004
|
+
/** */
|
|
1005
|
+
emoji_id: string;
|
|
1006
|
+
/** The UNIX time (for gRPC clients) or ISO string (for REST clients) when the emoji was created. */
|
|
1007
|
+
update_time: Date | undefined;
|
|
1008
|
+
}
|
|
1009
|
+
/** A collection of zero or more notifications. */
|
|
1010
|
+
export interface EmojiRecentList {
|
|
1011
|
+
/** Collection of emojiRecents. */
|
|
1012
|
+
emoji_recents: EmojiRecent[];
|
|
973
1013
|
}
|
|
974
1014
|
/** A collection of zero or more notifications. */
|
|
975
1015
|
export interface NotificationList {
|
|
@@ -1011,6 +1051,8 @@ export interface Session {
|
|
|
1011
1051
|
refresh_token: string;
|
|
1012
1052
|
/** User id */
|
|
1013
1053
|
user_id: string;
|
|
1054
|
+
/** Whether to enable "Remember Me" for extended session duration. */
|
|
1055
|
+
is_remember: boolean;
|
|
1014
1056
|
}
|
|
1015
1057
|
/** Update a user's account details. */
|
|
1016
1058
|
export interface UpdateAccountRequest {
|
|
@@ -1094,14 +1136,16 @@ export interface User {
|
|
|
1094
1136
|
update_time: Date | undefined;
|
|
1095
1137
|
/** The Apple Sign In ID in the user's account. */
|
|
1096
1138
|
apple_id: string;
|
|
1097
|
-
/**
|
|
1139
|
+
/** About me */
|
|
1098
1140
|
about_me: string;
|
|
1099
|
-
/**
|
|
1141
|
+
/** Join time */
|
|
1100
1142
|
join_time: Date | undefined;
|
|
1101
|
-
/**
|
|
1143
|
+
/** Platform */
|
|
1102
1144
|
is_mobile: boolean;
|
|
1103
|
-
/**
|
|
1145
|
+
/** dob */
|
|
1104
1146
|
dob: Date | undefined;
|
|
1147
|
+
/** Mezone id */
|
|
1148
|
+
mezon_id: string;
|
|
1105
1149
|
}
|
|
1106
1150
|
/** A list of groups belonging to a user, along with the user's role in each group. */
|
|
1107
1151
|
export interface UserGroupList {
|
|
@@ -1187,6 +1231,10 @@ export interface ClanDesc {
|
|
|
1187
1231
|
badge_count: number;
|
|
1188
1232
|
/** Is onboarding. */
|
|
1189
1233
|
is_onboarding: boolean;
|
|
1234
|
+
/** Welcome channel id. */
|
|
1235
|
+
welcome_channel_id: string;
|
|
1236
|
+
/** Onboarding_banner. */
|
|
1237
|
+
onboarding_banner: string;
|
|
1190
1238
|
}
|
|
1191
1239
|
/** Clan information */
|
|
1192
1240
|
export interface CreateClanDescRequest {
|
|
@@ -1210,6 +1258,10 @@ export interface UpdateClanDescRequest {
|
|
|
1210
1258
|
status: number;
|
|
1211
1259
|
/** Is onboarding. */
|
|
1212
1260
|
is_onboarding: boolean | undefined;
|
|
1261
|
+
/** Welcome channel id. */
|
|
1262
|
+
welcome_channel_id: string;
|
|
1263
|
+
/** Onboarding_banner. */
|
|
1264
|
+
onboarding_banner: string;
|
|
1213
1265
|
}
|
|
1214
1266
|
/** Delete a clan the user has access to. */
|
|
1215
1267
|
export interface DeleteClanDescRequest {
|
|
@@ -1375,8 +1427,8 @@ export interface ChannelMessageHeader {
|
|
|
1375
1427
|
export interface ChannelDescription {
|
|
1376
1428
|
/** The clan of this channel */
|
|
1377
1429
|
clan_id: string;
|
|
1378
|
-
/** The
|
|
1379
|
-
|
|
1430
|
+
/** The parent channel this message belongs to. */
|
|
1431
|
+
parent_id: string;
|
|
1380
1432
|
/** The channel this message belongs to. */
|
|
1381
1433
|
channel_id: string;
|
|
1382
1434
|
/** The category of channel */
|
|
@@ -1487,8 +1539,8 @@ export interface AddRoleChannelDescRequest {
|
|
|
1487
1539
|
export interface CreateChannelDescRequest {
|
|
1488
1540
|
/** The clan of this channel */
|
|
1489
1541
|
clan_id: string;
|
|
1490
|
-
/** The
|
|
1491
|
-
|
|
1542
|
+
/** The parent channel this message belongs to. */
|
|
1543
|
+
parent_id: string;
|
|
1492
1544
|
/** The channel this message belongs to. */
|
|
1493
1545
|
channel_id: string;
|
|
1494
1546
|
/** The category of channel */
|
|
@@ -1748,7 +1800,7 @@ export interface HashtagDm {
|
|
|
1748
1800
|
/** */
|
|
1749
1801
|
channel_private: number;
|
|
1750
1802
|
/** */
|
|
1751
|
-
|
|
1803
|
+
parent_id: string;
|
|
1752
1804
|
}
|
|
1753
1805
|
export interface NotificationChannelCategorySettingList {
|
|
1754
1806
|
notification_channel_category_settings_list: NotificationChannelCategorySetting[];
|
|
@@ -2639,6 +2691,8 @@ export interface EditChannelCanvasRequest {
|
|
|
2639
2691
|
content: string;
|
|
2640
2692
|
/** is default */
|
|
2641
2693
|
is_default: boolean;
|
|
2694
|
+
/** status */
|
|
2695
|
+
status: number;
|
|
2642
2696
|
}
|
|
2643
2697
|
export interface EditChannelCanvasResponse {
|
|
2644
2698
|
/** id */
|
|
@@ -2772,6 +2826,8 @@ export interface LoginRequest {
|
|
|
2772
2826
|
export interface ConfirmLoginRequest {
|
|
2773
2827
|
/** loginId */
|
|
2774
2828
|
login_id: string;
|
|
2829
|
+
/** Whether to enable "Remember Me" for extended session duration. */
|
|
2830
|
+
is_remember: boolean | undefined;
|
|
2775
2831
|
}
|
|
2776
2832
|
export interface SendTokenRequest {
|
|
2777
2833
|
/** receiver */
|
|
@@ -3198,6 +3254,21 @@ export interface MezonOauthClient {
|
|
|
3198
3254
|
export interface MezonOauthClientList {
|
|
3199
3255
|
listMezonOauthClient: MezonOauthClient[];
|
|
3200
3256
|
}
|
|
3257
|
+
export interface GetMezonOauthClientRequest {
|
|
3258
|
+
client_id: string;
|
|
3259
|
+
client_name: string;
|
|
3260
|
+
}
|
|
3261
|
+
export interface SearchThreadRequest {
|
|
3262
|
+
clan_id: string;
|
|
3263
|
+
channel_id: string;
|
|
3264
|
+
label: string;
|
|
3265
|
+
}
|
|
3266
|
+
export interface GenerateHashChannelAppsRequest {
|
|
3267
|
+
app_id: string;
|
|
3268
|
+
}
|
|
3269
|
+
export interface GenerateHashChannelAppsResponse {
|
|
3270
|
+
web_app_data: string;
|
|
3271
|
+
}
|
|
3201
3272
|
export declare const Account: {
|
|
3202
3273
|
encode(message: Account, writer?: _m0.Writer): _m0.Writer;
|
|
3203
3274
|
decode(input: _m0.Reader | Uint8Array, length?: number): Account;
|
|
@@ -3226,6 +3297,7 @@ export declare const Account: {
|
|
|
3226
3297
|
join_time?: Date | undefined;
|
|
3227
3298
|
is_mobile?: boolean | undefined;
|
|
3228
3299
|
dob?: Date | undefined;
|
|
3300
|
+
mezon_id?: string | undefined;
|
|
3229
3301
|
} | undefined;
|
|
3230
3302
|
wallet?: string | undefined;
|
|
3231
3303
|
email?: string | undefined;
|
|
@@ -3264,6 +3336,7 @@ export declare const Account: {
|
|
|
3264
3336
|
join_time?: Date | undefined;
|
|
3265
3337
|
is_mobile?: boolean | undefined;
|
|
3266
3338
|
dob?: Date | undefined;
|
|
3339
|
+
mezon_id?: string | undefined;
|
|
3267
3340
|
} & {
|
|
3268
3341
|
id?: string | undefined;
|
|
3269
3342
|
username?: string | undefined;
|
|
@@ -3286,6 +3359,7 @@ export declare const Account: {
|
|
|
3286
3359
|
join_time?: Date | undefined;
|
|
3287
3360
|
is_mobile?: boolean | undefined;
|
|
3288
3361
|
dob?: Date | undefined;
|
|
3362
|
+
mezon_id?: string | undefined;
|
|
3289
3363
|
} & { [K in Exclude<keyof I["user"], keyof User>]: never; }) | undefined;
|
|
3290
3364
|
wallet?: string | undefined;
|
|
3291
3365
|
email?: string | undefined;
|
|
@@ -3342,6 +3416,7 @@ export declare const Account: {
|
|
|
3342
3416
|
join_time?: Date | undefined;
|
|
3343
3417
|
is_mobile?: boolean | undefined;
|
|
3344
3418
|
dob?: Date | undefined;
|
|
3419
|
+
mezon_id?: string | undefined;
|
|
3345
3420
|
} | undefined;
|
|
3346
3421
|
wallet?: string | undefined;
|
|
3347
3422
|
email?: string | undefined;
|
|
@@ -3380,6 +3455,7 @@ export declare const Account: {
|
|
|
3380
3455
|
join_time?: Date | undefined;
|
|
3381
3456
|
is_mobile?: boolean | undefined;
|
|
3382
3457
|
dob?: Date | undefined;
|
|
3458
|
+
mezon_id?: string | undefined;
|
|
3383
3459
|
} & {
|
|
3384
3460
|
id?: string | undefined;
|
|
3385
3461
|
username?: string | undefined;
|
|
@@ -3402,6 +3478,7 @@ export declare const Account: {
|
|
|
3402
3478
|
join_time?: Date | undefined;
|
|
3403
3479
|
is_mobile?: boolean | undefined;
|
|
3404
3480
|
dob?: Date | undefined;
|
|
3481
|
+
mezon_id?: string | undefined;
|
|
3405
3482
|
} & { [K_5 in Exclude<keyof I_1["user"], keyof User>]: never; }) | undefined;
|
|
3406
3483
|
wallet?: string | undefined;
|
|
3407
3484
|
email?: string | undefined;
|
|
@@ -4030,6 +4107,7 @@ export declare const SessionRefreshRequest: {
|
|
|
4030
4107
|
vars?: {
|
|
4031
4108
|
[x: string]: string | undefined;
|
|
4032
4109
|
} | undefined;
|
|
4110
|
+
is_remember?: boolean | undefined;
|
|
4033
4111
|
} & {
|
|
4034
4112
|
token?: string | undefined;
|
|
4035
4113
|
vars?: ({
|
|
@@ -4037,12 +4115,14 @@ export declare const SessionRefreshRequest: {
|
|
|
4037
4115
|
} & {
|
|
4038
4116
|
[x: string]: string | undefined;
|
|
4039
4117
|
} & { [K in Exclude<keyof I["vars"], string | number>]: never; }) | undefined;
|
|
4118
|
+
is_remember?: boolean | undefined;
|
|
4040
4119
|
} & { [K_1 in Exclude<keyof I, keyof SessionRefreshRequest>]: never; }>(base?: I | undefined): SessionRefreshRequest;
|
|
4041
4120
|
fromPartial<I_1 extends {
|
|
4042
4121
|
token?: string | undefined;
|
|
4043
4122
|
vars?: {
|
|
4044
4123
|
[x: string]: string | undefined;
|
|
4045
4124
|
} | undefined;
|
|
4125
|
+
is_remember?: boolean | undefined;
|
|
4046
4126
|
} & {
|
|
4047
4127
|
token?: string | undefined;
|
|
4048
4128
|
vars?: ({
|
|
@@ -4050,6 +4130,7 @@ export declare const SessionRefreshRequest: {
|
|
|
4050
4130
|
} & {
|
|
4051
4131
|
[x: string]: string | undefined;
|
|
4052
4132
|
} & { [K_2 in Exclude<keyof I_1["vars"], string | number>]: never; }) | undefined;
|
|
4133
|
+
is_remember?: boolean | undefined;
|
|
4053
4134
|
} & { [K_3 in Exclude<keyof I_1, keyof SessionRefreshRequest>]: never; }>(object: I_1): SessionRefreshRequest;
|
|
4054
4135
|
};
|
|
4055
4136
|
export declare const SessionRefreshRequest_VarsEntry: {
|
|
@@ -4082,22 +4163,26 @@ export declare const SessionLogoutRequest: {
|
|
|
4082
4163
|
refresh_token?: string | undefined;
|
|
4083
4164
|
device_id?: string | undefined;
|
|
4084
4165
|
fcm_token?: string | undefined;
|
|
4166
|
+
platform?: string | undefined;
|
|
4085
4167
|
} & {
|
|
4086
4168
|
token?: string | undefined;
|
|
4087
4169
|
refresh_token?: string | undefined;
|
|
4088
4170
|
device_id?: string | undefined;
|
|
4089
4171
|
fcm_token?: string | undefined;
|
|
4172
|
+
platform?: string | undefined;
|
|
4090
4173
|
} & { [K in Exclude<keyof I, keyof SessionLogoutRequest>]: never; }>(base?: I | undefined): SessionLogoutRequest;
|
|
4091
4174
|
fromPartial<I_1 extends {
|
|
4092
4175
|
token?: string | undefined;
|
|
4093
4176
|
refresh_token?: string | undefined;
|
|
4094
4177
|
device_id?: string | undefined;
|
|
4095
4178
|
fcm_token?: string | undefined;
|
|
4179
|
+
platform?: string | undefined;
|
|
4096
4180
|
} & {
|
|
4097
4181
|
token?: string | undefined;
|
|
4098
4182
|
refresh_token?: string | undefined;
|
|
4099
4183
|
device_id?: string | undefined;
|
|
4100
4184
|
fcm_token?: string | undefined;
|
|
4185
|
+
platform?: string | undefined;
|
|
4101
4186
|
} & { [K_1 in Exclude<keyof I_1, keyof SessionLogoutRequest>]: never; }>(object: I_1): SessionLogoutRequest;
|
|
4102
4187
|
};
|
|
4103
4188
|
export declare const AuthenticateAppleRequest: {
|
|
@@ -4488,21 +4573,57 @@ export declare const AuthenticateGameCenterRequest: {
|
|
|
4488
4573
|
username?: string | undefined;
|
|
4489
4574
|
} & { [K_5 in Exclude<keyof I_1, keyof AuthenticateGameCenterRequest>]: never; }>(object: I_1): AuthenticateGameCenterRequest;
|
|
4490
4575
|
};
|
|
4491
|
-
export declare const
|
|
4492
|
-
encode(message:
|
|
4493
|
-
decode(input: _m0.Reader | Uint8Array, length?: number):
|
|
4494
|
-
fromJSON(object: any):
|
|
4495
|
-
toJSON(message:
|
|
4576
|
+
export declare const MezonAuthenticatedRequest: {
|
|
4577
|
+
encode(message: MezonAuthenticatedRequest, writer?: _m0.Writer): _m0.Writer;
|
|
4578
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): MezonAuthenticatedRequest;
|
|
4579
|
+
fromJSON(object: any): MezonAuthenticatedRequest;
|
|
4580
|
+
toJSON(message: MezonAuthenticatedRequest): unknown;
|
|
4496
4581
|
create<I extends {
|
|
4497
|
-
|
|
4582
|
+
email?: string | undefined;
|
|
4583
|
+
secret?: string | undefined;
|
|
4498
4584
|
} & {
|
|
4499
|
-
|
|
4500
|
-
|
|
4585
|
+
email?: string | undefined;
|
|
4586
|
+
secret?: string | undefined;
|
|
4587
|
+
} & { [K in Exclude<keyof I, keyof MezonAuthenticatedRequest>]: never; }>(base?: I | undefined): MezonAuthenticatedRequest;
|
|
4501
4588
|
fromPartial<I_1 extends {
|
|
4502
|
-
|
|
4589
|
+
email?: string | undefined;
|
|
4590
|
+
secret?: string | undefined;
|
|
4503
4591
|
} & {
|
|
4504
|
-
|
|
4505
|
-
|
|
4592
|
+
email?: string | undefined;
|
|
4593
|
+
secret?: string | undefined;
|
|
4594
|
+
} & { [K_1 in Exclude<keyof I_1, keyof MezonAuthenticatedRequest>]: never; }>(object: I_1): MezonAuthenticatedRequest;
|
|
4595
|
+
};
|
|
4596
|
+
export declare const MezonAuthenticatedResponse: {
|
|
4597
|
+
encode(message: MezonAuthenticatedResponse, writer?: _m0.Writer): _m0.Writer;
|
|
4598
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): MezonAuthenticatedResponse;
|
|
4599
|
+
fromJSON(object: any): MezonAuthenticatedResponse;
|
|
4600
|
+
toJSON(message: MezonAuthenticatedResponse): unknown;
|
|
4601
|
+
create<I extends {
|
|
4602
|
+
authenticated?: boolean | undefined;
|
|
4603
|
+
userId?: string | undefined;
|
|
4604
|
+
username?: string | undefined;
|
|
4605
|
+
display_name?: string | undefined;
|
|
4606
|
+
avatar?: string | undefined;
|
|
4607
|
+
} & {
|
|
4608
|
+
authenticated?: boolean | undefined;
|
|
4609
|
+
userId?: string | undefined;
|
|
4610
|
+
username?: string | undefined;
|
|
4611
|
+
display_name?: string | undefined;
|
|
4612
|
+
avatar?: string | undefined;
|
|
4613
|
+
} & { [K in Exclude<keyof I, keyof MezonAuthenticatedResponse>]: never; }>(base?: I | undefined): MezonAuthenticatedResponse;
|
|
4614
|
+
fromPartial<I_1 extends {
|
|
4615
|
+
authenticated?: boolean | undefined;
|
|
4616
|
+
userId?: string | undefined;
|
|
4617
|
+
username?: string | undefined;
|
|
4618
|
+
display_name?: string | undefined;
|
|
4619
|
+
avatar?: string | undefined;
|
|
4620
|
+
} & {
|
|
4621
|
+
authenticated?: boolean | undefined;
|
|
4622
|
+
userId?: string | undefined;
|
|
4623
|
+
username?: string | undefined;
|
|
4624
|
+
display_name?: string | undefined;
|
|
4625
|
+
avatar?: string | undefined;
|
|
4626
|
+
} & { [K_1 in Exclude<keyof I_1, keyof MezonAuthenticatedResponse>]: never; }>(object: I_1): MezonAuthenticatedResponse;
|
|
4506
4627
|
};
|
|
4507
4628
|
export declare const AuthenticateGoogleRequest: {
|
|
4508
4629
|
encode(message: AuthenticateGoogleRequest, writer?: _m0.Writer): _m0.Writer;
|
|
@@ -4576,6 +4697,7 @@ export declare const AuthenticateMezonRequest: {
|
|
|
4576
4697
|
} | undefined;
|
|
4577
4698
|
create?: boolean | undefined;
|
|
4578
4699
|
username?: string | undefined;
|
|
4700
|
+
is_remember?: boolean | undefined;
|
|
4579
4701
|
} & {
|
|
4580
4702
|
account?: ({
|
|
4581
4703
|
token?: string | undefined;
|
|
@@ -4592,6 +4714,7 @@ export declare const AuthenticateMezonRequest: {
|
|
|
4592
4714
|
} & { [K_1 in Exclude<keyof I["account"], keyof AccountMezon>]: never; }) | undefined;
|
|
4593
4715
|
create?: boolean | undefined;
|
|
4594
4716
|
username?: string | undefined;
|
|
4717
|
+
is_remember?: boolean | undefined;
|
|
4595
4718
|
} & { [K_2 in Exclude<keyof I, keyof AuthenticateMezonRequest>]: never; }>(base?: I | undefined): AuthenticateMezonRequest;
|
|
4596
4719
|
fromPartial<I_1 extends {
|
|
4597
4720
|
account?: {
|
|
@@ -4602,6 +4725,7 @@ export declare const AuthenticateMezonRequest: {
|
|
|
4602
4725
|
} | undefined;
|
|
4603
4726
|
create?: boolean | undefined;
|
|
4604
4727
|
username?: string | undefined;
|
|
4728
|
+
is_remember?: boolean | undefined;
|
|
4605
4729
|
} & {
|
|
4606
4730
|
account?: ({
|
|
4607
4731
|
token?: string | undefined;
|
|
@@ -4618,6 +4742,7 @@ export declare const AuthenticateMezonRequest: {
|
|
|
4618
4742
|
} & { [K_4 in Exclude<keyof I_1["account"], keyof AccountMezon>]: never; }) | undefined;
|
|
4619
4743
|
create?: boolean | undefined;
|
|
4620
4744
|
username?: string | undefined;
|
|
4745
|
+
is_remember?: boolean | undefined;
|
|
4621
4746
|
} & { [K_5 in Exclude<keyof I_1, keyof AuthenticateMezonRequest>]: never; }>(object: I_1): AuthenticateMezonRequest;
|
|
4622
4747
|
};
|
|
4623
4748
|
export declare const AuthenticateSteamRequest: {
|
|
@@ -4904,7 +5029,7 @@ export declare const NotificationInfo: {
|
|
|
4904
5029
|
clan_logo?: string | undefined;
|
|
4905
5030
|
channel?: {
|
|
4906
5031
|
clan_id?: string | undefined;
|
|
4907
|
-
|
|
5032
|
+
parent_id?: string | undefined;
|
|
4908
5033
|
channel_id?: string | undefined;
|
|
4909
5034
|
category_id?: string | undefined;
|
|
4910
5035
|
category_name?: string | undefined;
|
|
@@ -4968,7 +5093,7 @@ export declare const NotificationInfo: {
|
|
|
4968
5093
|
clan_logo?: string | undefined;
|
|
4969
5094
|
channel?: ({
|
|
4970
5095
|
clan_id?: string | undefined;
|
|
4971
|
-
|
|
5096
|
+
parent_id?: string | undefined;
|
|
4972
5097
|
channel_id?: string | undefined;
|
|
4973
5098
|
category_id?: string | undefined;
|
|
4974
5099
|
category_name?: string | undefined;
|
|
@@ -5020,7 +5145,7 @@ export declare const NotificationInfo: {
|
|
|
5020
5145
|
display_names?: string[] | undefined;
|
|
5021
5146
|
} & {
|
|
5022
5147
|
clan_id?: string | undefined;
|
|
5023
|
-
|
|
5148
|
+
parent_id?: string | undefined;
|
|
5024
5149
|
channel_id?: string | undefined;
|
|
5025
5150
|
category_id?: string | undefined;
|
|
5026
5151
|
category_name?: string | undefined;
|
|
@@ -5105,7 +5230,7 @@ export declare const NotificationInfo: {
|
|
|
5105
5230
|
clan_logo?: string | undefined;
|
|
5106
5231
|
channel?: {
|
|
5107
5232
|
clan_id?: string | undefined;
|
|
5108
|
-
|
|
5233
|
+
parent_id?: string | undefined;
|
|
5109
5234
|
channel_id?: string | undefined;
|
|
5110
5235
|
category_id?: string | undefined;
|
|
5111
5236
|
category_name?: string | undefined;
|
|
@@ -5169,7 +5294,7 @@ export declare const NotificationInfo: {
|
|
|
5169
5294
|
clan_logo?: string | undefined;
|
|
5170
5295
|
channel?: ({
|
|
5171
5296
|
clan_id?: string | undefined;
|
|
5172
|
-
|
|
5297
|
+
parent_id?: string | undefined;
|
|
5173
5298
|
channel_id?: string | undefined;
|
|
5174
5299
|
category_id?: string | undefined;
|
|
5175
5300
|
category_name?: string | undefined;
|
|
@@ -5221,7 +5346,7 @@ export declare const NotificationInfo: {
|
|
|
5221
5346
|
display_names?: string[] | undefined;
|
|
5222
5347
|
} & {
|
|
5223
5348
|
clan_id?: string | undefined;
|
|
5224
|
-
|
|
5349
|
+
parent_id?: string | undefined;
|
|
5225
5350
|
channel_id?: string | undefined;
|
|
5226
5351
|
category_id?: string | undefined;
|
|
5227
5352
|
category_name?: string | undefined;
|
|
@@ -5315,6 +5440,7 @@ export declare const MessageReaction: {
|
|
|
5315
5440
|
message_sender_id?: string | undefined;
|
|
5316
5441
|
is_public?: boolean | undefined;
|
|
5317
5442
|
topic_id?: string | undefined;
|
|
5443
|
+
emoji_recent_id?: string | undefined;
|
|
5318
5444
|
} & {
|
|
5319
5445
|
id?: string | undefined;
|
|
5320
5446
|
emoji_id?: string | undefined;
|
|
@@ -5331,6 +5457,7 @@ export declare const MessageReaction: {
|
|
|
5331
5457
|
message_sender_id?: string | undefined;
|
|
5332
5458
|
is_public?: boolean | undefined;
|
|
5333
5459
|
topic_id?: string | undefined;
|
|
5460
|
+
emoji_recent_id?: string | undefined;
|
|
5334
5461
|
} & { [K in Exclude<keyof I, keyof MessageReaction>]: never; }>(base?: I | undefined): MessageReaction;
|
|
5335
5462
|
fromPartial<I_1 extends {
|
|
5336
5463
|
id?: string | undefined;
|
|
@@ -5348,6 +5475,7 @@ export declare const MessageReaction: {
|
|
|
5348
5475
|
message_sender_id?: string | undefined;
|
|
5349
5476
|
is_public?: boolean | undefined;
|
|
5350
5477
|
topic_id?: string | undefined;
|
|
5478
|
+
emoji_recent_id?: string | undefined;
|
|
5351
5479
|
} & {
|
|
5352
5480
|
id?: string | undefined;
|
|
5353
5481
|
emoji_id?: string | undefined;
|
|
@@ -5364,6 +5492,7 @@ export declare const MessageReaction: {
|
|
|
5364
5492
|
message_sender_id?: string | undefined;
|
|
5365
5493
|
is_public?: boolean | undefined;
|
|
5366
5494
|
topic_id?: string | undefined;
|
|
5495
|
+
emoji_recent_id?: string | undefined;
|
|
5367
5496
|
} & { [K_1 in Exclude<keyof I_1, keyof MessageReaction>]: never; }>(object: I_1): MessageReaction;
|
|
5368
5497
|
};
|
|
5369
5498
|
export declare const MessageAttachment: {
|
|
@@ -5378,6 +5507,7 @@ export declare const MessageAttachment: {
|
|
|
5378
5507
|
filetype?: string | undefined;
|
|
5379
5508
|
width?: number | undefined;
|
|
5380
5509
|
height?: number | undefined;
|
|
5510
|
+
thumbnail?: string | undefined;
|
|
5381
5511
|
} & {
|
|
5382
5512
|
filename?: string | undefined;
|
|
5383
5513
|
size?: number | undefined;
|
|
@@ -5385,6 +5515,7 @@ export declare const MessageAttachment: {
|
|
|
5385
5515
|
filetype?: string | undefined;
|
|
5386
5516
|
width?: number | undefined;
|
|
5387
5517
|
height?: number | undefined;
|
|
5518
|
+
thumbnail?: string | undefined;
|
|
5388
5519
|
} & { [K in Exclude<keyof I, keyof MessageAttachment>]: never; }>(base?: I | undefined): MessageAttachment;
|
|
5389
5520
|
fromPartial<I_1 extends {
|
|
5390
5521
|
filename?: string | undefined;
|
|
@@ -5393,6 +5524,7 @@ export declare const MessageAttachment: {
|
|
|
5393
5524
|
filetype?: string | undefined;
|
|
5394
5525
|
width?: number | undefined;
|
|
5395
5526
|
height?: number | undefined;
|
|
5527
|
+
thumbnail?: string | undefined;
|
|
5396
5528
|
} & {
|
|
5397
5529
|
filename?: string | undefined;
|
|
5398
5530
|
size?: number | undefined;
|
|
@@ -5400,6 +5532,7 @@ export declare const MessageAttachment: {
|
|
|
5400
5532
|
filetype?: string | undefined;
|
|
5401
5533
|
width?: number | undefined;
|
|
5402
5534
|
height?: number | undefined;
|
|
5535
|
+
thumbnail?: string | undefined;
|
|
5403
5536
|
} & { [K_1 in Exclude<keyof I_1, keyof MessageAttachment>]: never; }>(object: I_1): MessageAttachment;
|
|
5404
5537
|
};
|
|
5405
5538
|
export declare const MessageRef: {
|
|
@@ -5977,14 +6110,18 @@ export declare const DeleteNotificationsRequest: {
|
|
|
5977
6110
|
toJSON(message: DeleteNotificationsRequest): unknown;
|
|
5978
6111
|
create<I extends {
|
|
5979
6112
|
ids?: string[] | undefined;
|
|
6113
|
+
category?: number | undefined;
|
|
5980
6114
|
} & {
|
|
5981
6115
|
ids?: (string[] & string[] & { [K in Exclude<keyof I["ids"], keyof string[]>]: never; }) | undefined;
|
|
5982
|
-
|
|
6116
|
+
category?: number | undefined;
|
|
6117
|
+
} & { [K_1 in Exclude<keyof I, keyof DeleteNotificationsRequest>]: never; }>(base?: I | undefined): DeleteNotificationsRequest;
|
|
5983
6118
|
fromPartial<I_1 extends {
|
|
5984
6119
|
ids?: string[] | undefined;
|
|
6120
|
+
category?: number | undefined;
|
|
5985
6121
|
} & {
|
|
5986
6122
|
ids?: (string[] & string[] & { [K_2 in Exclude<keyof I_1["ids"], keyof string[]>]: never; }) | undefined;
|
|
5987
|
-
|
|
6123
|
+
category?: number | undefined;
|
|
6124
|
+
} & { [K_3 in Exclude<keyof I_1, keyof DeleteNotificationsRequest>]: never; }>(object: I_1): DeleteNotificationsRequest;
|
|
5988
6125
|
};
|
|
5989
6126
|
export declare const Event: {
|
|
5990
6127
|
encode(message: Event, writer?: _m0.Writer): _m0.Writer;
|
|
@@ -6074,6 +6211,7 @@ export declare const Friend: {
|
|
|
6074
6211
|
join_time?: Date | undefined;
|
|
6075
6212
|
is_mobile?: boolean | undefined;
|
|
6076
6213
|
dob?: Date | undefined;
|
|
6214
|
+
mezon_id?: string | undefined;
|
|
6077
6215
|
} | undefined;
|
|
6078
6216
|
state?: number | undefined;
|
|
6079
6217
|
update_time?: Date | undefined;
|
|
@@ -6100,6 +6238,7 @@ export declare const Friend: {
|
|
|
6100
6238
|
join_time?: Date | undefined;
|
|
6101
6239
|
is_mobile?: boolean | undefined;
|
|
6102
6240
|
dob?: Date | undefined;
|
|
6241
|
+
mezon_id?: string | undefined;
|
|
6103
6242
|
} & {
|
|
6104
6243
|
id?: string | undefined;
|
|
6105
6244
|
username?: string | undefined;
|
|
@@ -6122,6 +6261,7 @@ export declare const Friend: {
|
|
|
6122
6261
|
join_time?: Date | undefined;
|
|
6123
6262
|
is_mobile?: boolean | undefined;
|
|
6124
6263
|
dob?: Date | undefined;
|
|
6264
|
+
mezon_id?: string | undefined;
|
|
6125
6265
|
} & { [K in Exclude<keyof I["user"], keyof User>]: never; }) | undefined;
|
|
6126
6266
|
state?: number | undefined;
|
|
6127
6267
|
update_time?: Date | undefined;
|
|
@@ -6149,6 +6289,7 @@ export declare const Friend: {
|
|
|
6149
6289
|
join_time?: Date | undefined;
|
|
6150
6290
|
is_mobile?: boolean | undefined;
|
|
6151
6291
|
dob?: Date | undefined;
|
|
6292
|
+
mezon_id?: string | undefined;
|
|
6152
6293
|
} | undefined;
|
|
6153
6294
|
state?: number | undefined;
|
|
6154
6295
|
update_time?: Date | undefined;
|
|
@@ -6175,6 +6316,7 @@ export declare const Friend: {
|
|
|
6175
6316
|
join_time?: Date | undefined;
|
|
6176
6317
|
is_mobile?: boolean | undefined;
|
|
6177
6318
|
dob?: Date | undefined;
|
|
6319
|
+
mezon_id?: string | undefined;
|
|
6178
6320
|
} & {
|
|
6179
6321
|
id?: string | undefined;
|
|
6180
6322
|
username?: string | undefined;
|
|
@@ -6197,6 +6339,7 @@ export declare const Friend: {
|
|
|
6197
6339
|
join_time?: Date | undefined;
|
|
6198
6340
|
is_mobile?: boolean | undefined;
|
|
6199
6341
|
dob?: Date | undefined;
|
|
6342
|
+
mezon_id?: string | undefined;
|
|
6200
6343
|
} & { [K_2 in Exclude<keyof I_1["user"], keyof User>]: never; }) | undefined;
|
|
6201
6344
|
state?: number | undefined;
|
|
6202
6345
|
update_time?: Date | undefined;
|
|
@@ -6231,6 +6374,7 @@ export declare const FriendList: {
|
|
|
6231
6374
|
join_time?: Date | undefined;
|
|
6232
6375
|
is_mobile?: boolean | undefined;
|
|
6233
6376
|
dob?: Date | undefined;
|
|
6377
|
+
mezon_id?: string | undefined;
|
|
6234
6378
|
} | undefined;
|
|
6235
6379
|
state?: number | undefined;
|
|
6236
6380
|
update_time?: Date | undefined;
|
|
@@ -6260,6 +6404,7 @@ export declare const FriendList: {
|
|
|
6260
6404
|
join_time?: Date | undefined;
|
|
6261
6405
|
is_mobile?: boolean | undefined;
|
|
6262
6406
|
dob?: Date | undefined;
|
|
6407
|
+
mezon_id?: string | undefined;
|
|
6263
6408
|
} | undefined;
|
|
6264
6409
|
state?: number | undefined;
|
|
6265
6410
|
update_time?: Date | undefined;
|
|
@@ -6286,6 +6431,7 @@ export declare const FriendList: {
|
|
|
6286
6431
|
join_time?: Date | undefined;
|
|
6287
6432
|
is_mobile?: boolean | undefined;
|
|
6288
6433
|
dob?: Date | undefined;
|
|
6434
|
+
mezon_id?: string | undefined;
|
|
6289
6435
|
} | undefined;
|
|
6290
6436
|
state?: number | undefined;
|
|
6291
6437
|
update_time?: Date | undefined;
|
|
@@ -6312,6 +6458,7 @@ export declare const FriendList: {
|
|
|
6312
6458
|
join_time?: Date | undefined;
|
|
6313
6459
|
is_mobile?: boolean | undefined;
|
|
6314
6460
|
dob?: Date | undefined;
|
|
6461
|
+
mezon_id?: string | undefined;
|
|
6315
6462
|
} & {
|
|
6316
6463
|
id?: string | undefined;
|
|
6317
6464
|
username?: string | undefined;
|
|
@@ -6334,6 +6481,7 @@ export declare const FriendList: {
|
|
|
6334
6481
|
join_time?: Date | undefined;
|
|
6335
6482
|
is_mobile?: boolean | undefined;
|
|
6336
6483
|
dob?: Date | undefined;
|
|
6484
|
+
mezon_id?: string | undefined;
|
|
6337
6485
|
} & { [K in Exclude<keyof I["friends"][number]["user"], keyof User>]: never; }) | undefined;
|
|
6338
6486
|
state?: number | undefined;
|
|
6339
6487
|
update_time?: Date | undefined;
|
|
@@ -6360,6 +6508,7 @@ export declare const FriendList: {
|
|
|
6360
6508
|
join_time?: Date | undefined;
|
|
6361
6509
|
is_mobile?: boolean | undefined;
|
|
6362
6510
|
dob?: Date | undefined;
|
|
6511
|
+
mezon_id?: string | undefined;
|
|
6363
6512
|
} | undefined;
|
|
6364
6513
|
state?: number | undefined;
|
|
6365
6514
|
update_time?: Date | undefined;
|
|
@@ -6390,6 +6539,7 @@ export declare const FriendList: {
|
|
|
6390
6539
|
join_time?: Date | undefined;
|
|
6391
6540
|
is_mobile?: boolean | undefined;
|
|
6392
6541
|
dob?: Date | undefined;
|
|
6542
|
+
mezon_id?: string | undefined;
|
|
6393
6543
|
} | undefined;
|
|
6394
6544
|
state?: number | undefined;
|
|
6395
6545
|
update_time?: Date | undefined;
|
|
@@ -6419,6 +6569,7 @@ export declare const FriendList: {
|
|
|
6419
6569
|
join_time?: Date | undefined;
|
|
6420
6570
|
is_mobile?: boolean | undefined;
|
|
6421
6571
|
dob?: Date | undefined;
|
|
6572
|
+
mezon_id?: string | undefined;
|
|
6422
6573
|
} | undefined;
|
|
6423
6574
|
state?: number | undefined;
|
|
6424
6575
|
update_time?: Date | undefined;
|
|
@@ -6445,6 +6596,7 @@ export declare const FriendList: {
|
|
|
6445
6596
|
join_time?: Date | undefined;
|
|
6446
6597
|
is_mobile?: boolean | undefined;
|
|
6447
6598
|
dob?: Date | undefined;
|
|
6599
|
+
mezon_id?: string | undefined;
|
|
6448
6600
|
} | undefined;
|
|
6449
6601
|
state?: number | undefined;
|
|
6450
6602
|
update_time?: Date | undefined;
|
|
@@ -6471,6 +6623,7 @@ export declare const FriendList: {
|
|
|
6471
6623
|
join_time?: Date | undefined;
|
|
6472
6624
|
is_mobile?: boolean | undefined;
|
|
6473
6625
|
dob?: Date | undefined;
|
|
6626
|
+
mezon_id?: string | undefined;
|
|
6474
6627
|
} & {
|
|
6475
6628
|
id?: string | undefined;
|
|
6476
6629
|
username?: string | undefined;
|
|
@@ -6493,6 +6646,7 @@ export declare const FriendList: {
|
|
|
6493
6646
|
join_time?: Date | undefined;
|
|
6494
6647
|
is_mobile?: boolean | undefined;
|
|
6495
6648
|
dob?: Date | undefined;
|
|
6649
|
+
mezon_id?: string | undefined;
|
|
6496
6650
|
} & { [K_4 in Exclude<keyof I_1["friends"][number]["user"], keyof User>]: never; }) | undefined;
|
|
6497
6651
|
state?: number | undefined;
|
|
6498
6652
|
update_time?: Date | undefined;
|
|
@@ -6519,6 +6673,7 @@ export declare const FriendList: {
|
|
|
6519
6673
|
join_time?: Date | undefined;
|
|
6520
6674
|
is_mobile?: boolean | undefined;
|
|
6521
6675
|
dob?: Date | undefined;
|
|
6676
|
+
mezon_id?: string | undefined;
|
|
6522
6677
|
} | undefined;
|
|
6523
6678
|
state?: number | undefined;
|
|
6524
6679
|
update_time?: Date | undefined;
|
|
@@ -6809,6 +6964,7 @@ export declare const GroupUserList: {
|
|
|
6809
6964
|
join_time?: Date | undefined;
|
|
6810
6965
|
is_mobile?: boolean | undefined;
|
|
6811
6966
|
dob?: Date | undefined;
|
|
6967
|
+
mezon_id?: string | undefined;
|
|
6812
6968
|
} | undefined;
|
|
6813
6969
|
state?: number | undefined;
|
|
6814
6970
|
}[] | undefined;
|
|
@@ -6837,6 +6993,7 @@ export declare const GroupUserList: {
|
|
|
6837
6993
|
join_time?: Date | undefined;
|
|
6838
6994
|
is_mobile?: boolean | undefined;
|
|
6839
6995
|
dob?: Date | undefined;
|
|
6996
|
+
mezon_id?: string | undefined;
|
|
6840
6997
|
} | undefined;
|
|
6841
6998
|
state?: number | undefined;
|
|
6842
6999
|
}[] & ({
|
|
@@ -6862,6 +7019,7 @@ export declare const GroupUserList: {
|
|
|
6862
7019
|
join_time?: Date | undefined;
|
|
6863
7020
|
is_mobile?: boolean | undefined;
|
|
6864
7021
|
dob?: Date | undefined;
|
|
7022
|
+
mezon_id?: string | undefined;
|
|
6865
7023
|
} | undefined;
|
|
6866
7024
|
state?: number | undefined;
|
|
6867
7025
|
} & {
|
|
@@ -6887,6 +7045,7 @@ export declare const GroupUserList: {
|
|
|
6887
7045
|
join_time?: Date | undefined;
|
|
6888
7046
|
is_mobile?: boolean | undefined;
|
|
6889
7047
|
dob?: Date | undefined;
|
|
7048
|
+
mezon_id?: string | undefined;
|
|
6890
7049
|
} & {
|
|
6891
7050
|
id?: string | undefined;
|
|
6892
7051
|
username?: string | undefined;
|
|
@@ -6909,6 +7068,7 @@ export declare const GroupUserList: {
|
|
|
6909
7068
|
join_time?: Date | undefined;
|
|
6910
7069
|
is_mobile?: boolean | undefined;
|
|
6911
7070
|
dob?: Date | undefined;
|
|
7071
|
+
mezon_id?: string | undefined;
|
|
6912
7072
|
} & { [K in Exclude<keyof I["group_users"][number]["user"], keyof User>]: never; }) | undefined;
|
|
6913
7073
|
state?: number | undefined;
|
|
6914
7074
|
} & { [K_1 in Exclude<keyof I["group_users"][number], keyof GroupUserList_GroupUser>]: never; })[] & { [K_2 in Exclude<keyof I["group_users"], keyof {
|
|
@@ -6934,6 +7094,7 @@ export declare const GroupUserList: {
|
|
|
6934
7094
|
join_time?: Date | undefined;
|
|
6935
7095
|
is_mobile?: boolean | undefined;
|
|
6936
7096
|
dob?: Date | undefined;
|
|
7097
|
+
mezon_id?: string | undefined;
|
|
6937
7098
|
} | undefined;
|
|
6938
7099
|
state?: number | undefined;
|
|
6939
7100
|
}[]>]: never; }) | undefined;
|
|
@@ -6963,6 +7124,7 @@ export declare const GroupUserList: {
|
|
|
6963
7124
|
join_time?: Date | undefined;
|
|
6964
7125
|
is_mobile?: boolean | undefined;
|
|
6965
7126
|
dob?: Date | undefined;
|
|
7127
|
+
mezon_id?: string | undefined;
|
|
6966
7128
|
} | undefined;
|
|
6967
7129
|
state?: number | undefined;
|
|
6968
7130
|
}[] | undefined;
|
|
@@ -6991,6 +7153,7 @@ export declare const GroupUserList: {
|
|
|
6991
7153
|
join_time?: Date | undefined;
|
|
6992
7154
|
is_mobile?: boolean | undefined;
|
|
6993
7155
|
dob?: Date | undefined;
|
|
7156
|
+
mezon_id?: string | undefined;
|
|
6994
7157
|
} | undefined;
|
|
6995
7158
|
state?: number | undefined;
|
|
6996
7159
|
}[] & ({
|
|
@@ -7016,6 +7179,7 @@ export declare const GroupUserList: {
|
|
|
7016
7179
|
join_time?: Date | undefined;
|
|
7017
7180
|
is_mobile?: boolean | undefined;
|
|
7018
7181
|
dob?: Date | undefined;
|
|
7182
|
+
mezon_id?: string | undefined;
|
|
7019
7183
|
} | undefined;
|
|
7020
7184
|
state?: number | undefined;
|
|
7021
7185
|
} & {
|
|
@@ -7041,6 +7205,7 @@ export declare const GroupUserList: {
|
|
|
7041
7205
|
join_time?: Date | undefined;
|
|
7042
7206
|
is_mobile?: boolean | undefined;
|
|
7043
7207
|
dob?: Date | undefined;
|
|
7208
|
+
mezon_id?: string | undefined;
|
|
7044
7209
|
} & {
|
|
7045
7210
|
id?: string | undefined;
|
|
7046
7211
|
username?: string | undefined;
|
|
@@ -7063,6 +7228,7 @@ export declare const GroupUserList: {
|
|
|
7063
7228
|
join_time?: Date | undefined;
|
|
7064
7229
|
is_mobile?: boolean | undefined;
|
|
7065
7230
|
dob?: Date | undefined;
|
|
7231
|
+
mezon_id?: string | undefined;
|
|
7066
7232
|
} & { [K_4 in Exclude<keyof I_1["group_users"][number]["user"], keyof User>]: never; }) | undefined;
|
|
7067
7233
|
state?: number | undefined;
|
|
7068
7234
|
} & { [K_5 in Exclude<keyof I_1["group_users"][number], keyof GroupUserList_GroupUser>]: never; })[] & { [K_6 in Exclude<keyof I_1["group_users"], keyof {
|
|
@@ -7088,6 +7254,7 @@ export declare const GroupUserList: {
|
|
|
7088
7254
|
join_time?: Date | undefined;
|
|
7089
7255
|
is_mobile?: boolean | undefined;
|
|
7090
7256
|
dob?: Date | undefined;
|
|
7257
|
+
mezon_id?: string | undefined;
|
|
7091
7258
|
} | undefined;
|
|
7092
7259
|
state?: number | undefined;
|
|
7093
7260
|
}[]>]: never; }) | undefined;
|
|
@@ -7122,6 +7289,7 @@ export declare const GroupUserList_GroupUser: {
|
|
|
7122
7289
|
join_time?: Date | undefined;
|
|
7123
7290
|
is_mobile?: boolean | undefined;
|
|
7124
7291
|
dob?: Date | undefined;
|
|
7292
|
+
mezon_id?: string | undefined;
|
|
7125
7293
|
} | undefined;
|
|
7126
7294
|
state?: number | undefined;
|
|
7127
7295
|
} & {
|
|
@@ -7147,6 +7315,7 @@ export declare const GroupUserList_GroupUser: {
|
|
|
7147
7315
|
join_time?: Date | undefined;
|
|
7148
7316
|
is_mobile?: boolean | undefined;
|
|
7149
7317
|
dob?: Date | undefined;
|
|
7318
|
+
mezon_id?: string | undefined;
|
|
7150
7319
|
} & {
|
|
7151
7320
|
id?: string | undefined;
|
|
7152
7321
|
username?: string | undefined;
|
|
@@ -7169,6 +7338,7 @@ export declare const GroupUserList_GroupUser: {
|
|
|
7169
7338
|
join_time?: Date | undefined;
|
|
7170
7339
|
is_mobile?: boolean | undefined;
|
|
7171
7340
|
dob?: Date | undefined;
|
|
7341
|
+
mezon_id?: string | undefined;
|
|
7172
7342
|
} & { [K in Exclude<keyof I["user"], keyof User>]: never; }) | undefined;
|
|
7173
7343
|
state?: number | undefined;
|
|
7174
7344
|
} & { [K_1 in Exclude<keyof I, keyof GroupUserList_GroupUser>]: never; }>(base?: I | undefined): GroupUserList_GroupUser;
|
|
@@ -7195,6 +7365,7 @@ export declare const GroupUserList_GroupUser: {
|
|
|
7195
7365
|
join_time?: Date | undefined;
|
|
7196
7366
|
is_mobile?: boolean | undefined;
|
|
7197
7367
|
dob?: Date | undefined;
|
|
7368
|
+
mezon_id?: string | undefined;
|
|
7198
7369
|
} | undefined;
|
|
7199
7370
|
state?: number | undefined;
|
|
7200
7371
|
} & {
|
|
@@ -7220,6 +7391,7 @@ export declare const GroupUserList_GroupUser: {
|
|
|
7220
7391
|
join_time?: Date | undefined;
|
|
7221
7392
|
is_mobile?: boolean | undefined;
|
|
7222
7393
|
dob?: Date | undefined;
|
|
7394
|
+
mezon_id?: string | undefined;
|
|
7223
7395
|
} & {
|
|
7224
7396
|
id?: string | undefined;
|
|
7225
7397
|
username?: string | undefined;
|
|
@@ -7242,6 +7414,7 @@ export declare const GroupUserList_GroupUser: {
|
|
|
7242
7414
|
join_time?: Date | undefined;
|
|
7243
7415
|
is_mobile?: boolean | undefined;
|
|
7244
7416
|
dob?: Date | undefined;
|
|
7417
|
+
mezon_id?: string | undefined;
|
|
7245
7418
|
} & { [K_2 in Exclude<keyof I_1["user"], keyof User>]: never; }) | undefined;
|
|
7246
7419
|
state?: number | undefined;
|
|
7247
7420
|
} & { [K_3 in Exclude<keyof I_1, keyof GroupUserList_GroupUser>]: never; }>(object: I_1): GroupUserList_GroupUser;
|
|
@@ -7691,6 +7864,7 @@ export declare const ClanUserList: {
|
|
|
7691
7864
|
join_time?: Date | undefined;
|
|
7692
7865
|
is_mobile?: boolean | undefined;
|
|
7693
7866
|
dob?: Date | undefined;
|
|
7867
|
+
mezon_id?: string | undefined;
|
|
7694
7868
|
} | undefined;
|
|
7695
7869
|
role_id?: string[] | undefined;
|
|
7696
7870
|
clan_nick?: string | undefined;
|
|
@@ -7723,6 +7897,7 @@ export declare const ClanUserList: {
|
|
|
7723
7897
|
join_time?: Date | undefined;
|
|
7724
7898
|
is_mobile?: boolean | undefined;
|
|
7725
7899
|
dob?: Date | undefined;
|
|
7900
|
+
mezon_id?: string | undefined;
|
|
7726
7901
|
} | undefined;
|
|
7727
7902
|
role_id?: string[] | undefined;
|
|
7728
7903
|
clan_nick?: string | undefined;
|
|
@@ -7751,6 +7926,7 @@ export declare const ClanUserList: {
|
|
|
7751
7926
|
join_time?: Date | undefined;
|
|
7752
7927
|
is_mobile?: boolean | undefined;
|
|
7753
7928
|
dob?: Date | undefined;
|
|
7929
|
+
mezon_id?: string | undefined;
|
|
7754
7930
|
} | undefined;
|
|
7755
7931
|
role_id?: string[] | undefined;
|
|
7756
7932
|
clan_nick?: string | undefined;
|
|
@@ -7779,6 +7955,7 @@ export declare const ClanUserList: {
|
|
|
7779
7955
|
join_time?: Date | undefined;
|
|
7780
7956
|
is_mobile?: boolean | undefined;
|
|
7781
7957
|
dob?: Date | undefined;
|
|
7958
|
+
mezon_id?: string | undefined;
|
|
7782
7959
|
} & {
|
|
7783
7960
|
id?: string | undefined;
|
|
7784
7961
|
username?: string | undefined;
|
|
@@ -7801,6 +7978,7 @@ export declare const ClanUserList: {
|
|
|
7801
7978
|
join_time?: Date | undefined;
|
|
7802
7979
|
is_mobile?: boolean | undefined;
|
|
7803
7980
|
dob?: Date | undefined;
|
|
7981
|
+
mezon_id?: string | undefined;
|
|
7804
7982
|
} & { [K in Exclude<keyof I["clan_users"][number]["user"], keyof User>]: never; }) | undefined;
|
|
7805
7983
|
role_id?: (string[] & string[] & { [K_1 in Exclude<keyof I["clan_users"][number]["role_id"], keyof string[]>]: never; }) | undefined;
|
|
7806
7984
|
clan_nick?: string | undefined;
|
|
@@ -7829,6 +8007,7 @@ export declare const ClanUserList: {
|
|
|
7829
8007
|
join_time?: Date | undefined;
|
|
7830
8008
|
is_mobile?: boolean | undefined;
|
|
7831
8009
|
dob?: Date | undefined;
|
|
8010
|
+
mezon_id?: string | undefined;
|
|
7832
8011
|
} | undefined;
|
|
7833
8012
|
role_id?: string[] | undefined;
|
|
7834
8013
|
clan_nick?: string | undefined;
|
|
@@ -7862,6 +8041,7 @@ export declare const ClanUserList: {
|
|
|
7862
8041
|
join_time?: Date | undefined;
|
|
7863
8042
|
is_mobile?: boolean | undefined;
|
|
7864
8043
|
dob?: Date | undefined;
|
|
8044
|
+
mezon_id?: string | undefined;
|
|
7865
8045
|
} | undefined;
|
|
7866
8046
|
role_id?: string[] | undefined;
|
|
7867
8047
|
clan_nick?: string | undefined;
|
|
@@ -7894,6 +8074,7 @@ export declare const ClanUserList: {
|
|
|
7894
8074
|
join_time?: Date | undefined;
|
|
7895
8075
|
is_mobile?: boolean | undefined;
|
|
7896
8076
|
dob?: Date | undefined;
|
|
8077
|
+
mezon_id?: string | undefined;
|
|
7897
8078
|
} | undefined;
|
|
7898
8079
|
role_id?: string[] | undefined;
|
|
7899
8080
|
clan_nick?: string | undefined;
|
|
@@ -7922,6 +8103,7 @@ export declare const ClanUserList: {
|
|
|
7922
8103
|
join_time?: Date | undefined;
|
|
7923
8104
|
is_mobile?: boolean | undefined;
|
|
7924
8105
|
dob?: Date | undefined;
|
|
8106
|
+
mezon_id?: string | undefined;
|
|
7925
8107
|
} | undefined;
|
|
7926
8108
|
role_id?: string[] | undefined;
|
|
7927
8109
|
clan_nick?: string | undefined;
|
|
@@ -7950,6 +8132,7 @@ export declare const ClanUserList: {
|
|
|
7950
8132
|
join_time?: Date | undefined;
|
|
7951
8133
|
is_mobile?: boolean | undefined;
|
|
7952
8134
|
dob?: Date | undefined;
|
|
8135
|
+
mezon_id?: string | undefined;
|
|
7953
8136
|
} & {
|
|
7954
8137
|
id?: string | undefined;
|
|
7955
8138
|
username?: string | undefined;
|
|
@@ -7972,6 +8155,7 @@ export declare const ClanUserList: {
|
|
|
7972
8155
|
join_time?: Date | undefined;
|
|
7973
8156
|
is_mobile?: boolean | undefined;
|
|
7974
8157
|
dob?: Date | undefined;
|
|
8158
|
+
mezon_id?: string | undefined;
|
|
7975
8159
|
} & { [K_5 in Exclude<keyof I_1["clan_users"][number]["user"], keyof User>]: never; }) | undefined;
|
|
7976
8160
|
role_id?: (string[] & string[] & { [K_6 in Exclude<keyof I_1["clan_users"][number]["role_id"], keyof string[]>]: never; }) | undefined;
|
|
7977
8161
|
clan_nick?: string | undefined;
|
|
@@ -8000,6 +8184,7 @@ export declare const ClanUserList: {
|
|
|
8000
8184
|
join_time?: Date | undefined;
|
|
8001
8185
|
is_mobile?: boolean | undefined;
|
|
8002
8186
|
dob?: Date | undefined;
|
|
8187
|
+
mezon_id?: string | undefined;
|
|
8003
8188
|
} | undefined;
|
|
8004
8189
|
role_id?: string[] | undefined;
|
|
8005
8190
|
clan_nick?: string | undefined;
|
|
@@ -8038,6 +8223,7 @@ export declare const ClanUserList_ClanUser: {
|
|
|
8038
8223
|
join_time?: Date | undefined;
|
|
8039
8224
|
is_mobile?: boolean | undefined;
|
|
8040
8225
|
dob?: Date | undefined;
|
|
8226
|
+
mezon_id?: string | undefined;
|
|
8041
8227
|
} | undefined;
|
|
8042
8228
|
role_id?: string[] | undefined;
|
|
8043
8229
|
clan_nick?: string | undefined;
|
|
@@ -8066,6 +8252,7 @@ export declare const ClanUserList_ClanUser: {
|
|
|
8066
8252
|
join_time?: Date | undefined;
|
|
8067
8253
|
is_mobile?: boolean | undefined;
|
|
8068
8254
|
dob?: Date | undefined;
|
|
8255
|
+
mezon_id?: string | undefined;
|
|
8069
8256
|
} & {
|
|
8070
8257
|
id?: string | undefined;
|
|
8071
8258
|
username?: string | undefined;
|
|
@@ -8088,6 +8275,7 @@ export declare const ClanUserList_ClanUser: {
|
|
|
8088
8275
|
join_time?: Date | undefined;
|
|
8089
8276
|
is_mobile?: boolean | undefined;
|
|
8090
8277
|
dob?: Date | undefined;
|
|
8278
|
+
mezon_id?: string | undefined;
|
|
8091
8279
|
} & { [K in Exclude<keyof I["user"], keyof User>]: never; }) | undefined;
|
|
8092
8280
|
role_id?: (string[] & string[] & { [K_1 in Exclude<keyof I["role_id"], keyof string[]>]: never; }) | undefined;
|
|
8093
8281
|
clan_nick?: string | undefined;
|
|
@@ -8117,6 +8305,7 @@ export declare const ClanUserList_ClanUser: {
|
|
|
8117
8305
|
join_time?: Date | undefined;
|
|
8118
8306
|
is_mobile?: boolean | undefined;
|
|
8119
8307
|
dob?: Date | undefined;
|
|
8308
|
+
mezon_id?: string | undefined;
|
|
8120
8309
|
} | undefined;
|
|
8121
8310
|
role_id?: string[] | undefined;
|
|
8122
8311
|
clan_nick?: string | undefined;
|
|
@@ -8145,6 +8334,7 @@ export declare const ClanUserList_ClanUser: {
|
|
|
8145
8334
|
join_time?: Date | undefined;
|
|
8146
8335
|
is_mobile?: boolean | undefined;
|
|
8147
8336
|
dob?: Date | undefined;
|
|
8337
|
+
mezon_id?: string | undefined;
|
|
8148
8338
|
} & {
|
|
8149
8339
|
id?: string | undefined;
|
|
8150
8340
|
username?: string | undefined;
|
|
@@ -8167,6 +8357,7 @@ export declare const ClanUserList_ClanUser: {
|
|
|
8167
8357
|
join_time?: Date | undefined;
|
|
8168
8358
|
is_mobile?: boolean | undefined;
|
|
8169
8359
|
dob?: Date | undefined;
|
|
8360
|
+
mezon_id?: string | undefined;
|
|
8170
8361
|
} & { [K_3 in Exclude<keyof I_1["user"], keyof User>]: never; }) | undefined;
|
|
8171
8362
|
role_id?: (string[] & string[] & { [K_4 in Exclude<keyof I_1["role_id"], keyof string[]>]: never; }) | undefined;
|
|
8172
8363
|
clan_nick?: string | undefined;
|
|
@@ -8667,26 +8858,26 @@ export declare const ListNotificationsRequest: {
|
|
|
8667
8858
|
limit?: number | undefined;
|
|
8668
8859
|
clan_id?: string | undefined;
|
|
8669
8860
|
notification_id?: string | undefined;
|
|
8670
|
-
|
|
8861
|
+
category?: number | undefined;
|
|
8671
8862
|
direction?: number | undefined;
|
|
8672
8863
|
} & {
|
|
8673
8864
|
limit?: number | undefined;
|
|
8674
8865
|
clan_id?: string | undefined;
|
|
8675
8866
|
notification_id?: string | undefined;
|
|
8676
|
-
|
|
8867
|
+
category?: number | undefined;
|
|
8677
8868
|
direction?: number | undefined;
|
|
8678
8869
|
} & { [K in Exclude<keyof I, keyof ListNotificationsRequest>]: never; }>(base?: I | undefined): ListNotificationsRequest;
|
|
8679
8870
|
fromPartial<I_1 extends {
|
|
8680
8871
|
limit?: number | undefined;
|
|
8681
8872
|
clan_id?: string | undefined;
|
|
8682
8873
|
notification_id?: string | undefined;
|
|
8683
|
-
|
|
8874
|
+
category?: number | undefined;
|
|
8684
8875
|
direction?: number | undefined;
|
|
8685
8876
|
} & {
|
|
8686
8877
|
limit?: number | undefined;
|
|
8687
8878
|
clan_id?: string | undefined;
|
|
8688
8879
|
notification_id?: string | undefined;
|
|
8689
|
-
|
|
8880
|
+
category?: number | undefined;
|
|
8690
8881
|
direction?: number | undefined;
|
|
8691
8882
|
} & { [K_1 in Exclude<keyof I_1, keyof ListNotificationsRequest>]: never; }>(object: I_1): ListNotificationsRequest;
|
|
8692
8883
|
};
|
|
@@ -8737,7 +8928,7 @@ export declare const Notification: {
|
|
|
8737
8928
|
avatar_url?: string | undefined;
|
|
8738
8929
|
channel?: {
|
|
8739
8930
|
clan_id?: string | undefined;
|
|
8740
|
-
|
|
8931
|
+
parent_id?: string | undefined;
|
|
8741
8932
|
channel_id?: string | undefined;
|
|
8742
8933
|
category_id?: string | undefined;
|
|
8743
8934
|
category_name?: string | undefined;
|
|
@@ -8788,6 +8979,8 @@ export declare const Notification: {
|
|
|
8788
8979
|
e2ee?: number | undefined;
|
|
8789
8980
|
display_names?: string[] | undefined;
|
|
8790
8981
|
} | undefined;
|
|
8982
|
+
topic_id?: string | undefined;
|
|
8983
|
+
category?: number | undefined;
|
|
8791
8984
|
} & {
|
|
8792
8985
|
id?: string | undefined;
|
|
8793
8986
|
subject?: string | undefined;
|
|
@@ -8802,7 +8995,7 @@ export declare const Notification: {
|
|
|
8802
8995
|
avatar_url?: string | undefined;
|
|
8803
8996
|
channel?: ({
|
|
8804
8997
|
clan_id?: string | undefined;
|
|
8805
|
-
|
|
8998
|
+
parent_id?: string | undefined;
|
|
8806
8999
|
channel_id?: string | undefined;
|
|
8807
9000
|
category_id?: string | undefined;
|
|
8808
9001
|
category_name?: string | undefined;
|
|
@@ -8854,7 +9047,7 @@ export declare const Notification: {
|
|
|
8854
9047
|
display_names?: string[] | undefined;
|
|
8855
9048
|
} & {
|
|
8856
9049
|
clan_id?: string | undefined;
|
|
8857
|
-
|
|
9050
|
+
parent_id?: string | undefined;
|
|
8858
9051
|
channel_id?: string | undefined;
|
|
8859
9052
|
category_id?: string | undefined;
|
|
8860
9053
|
category_name?: string | undefined;
|
|
@@ -8925,6 +9118,8 @@ export declare const Notification: {
|
|
|
8925
9118
|
e2ee?: number | undefined;
|
|
8926
9119
|
display_names?: (string[] & string[] & { [K_10 in Exclude<keyof I["channel"]["display_names"], keyof string[]>]: never; }) | undefined;
|
|
8927
9120
|
} & { [K_11 in Exclude<keyof I["channel"], keyof ChannelDescription>]: never; }) | undefined;
|
|
9121
|
+
topic_id?: string | undefined;
|
|
9122
|
+
category?: number | undefined;
|
|
8928
9123
|
} & { [K_12 in Exclude<keyof I, keyof Notification>]: never; }>(base?: I | undefined): Notification;
|
|
8929
9124
|
fromPartial<I_1 extends {
|
|
8930
9125
|
id?: string | undefined;
|
|
@@ -8940,7 +9135,7 @@ export declare const Notification: {
|
|
|
8940
9135
|
avatar_url?: string | undefined;
|
|
8941
9136
|
channel?: {
|
|
8942
9137
|
clan_id?: string | undefined;
|
|
8943
|
-
|
|
9138
|
+
parent_id?: string | undefined;
|
|
8944
9139
|
channel_id?: string | undefined;
|
|
8945
9140
|
category_id?: string | undefined;
|
|
8946
9141
|
category_name?: string | undefined;
|
|
@@ -8991,6 +9186,8 @@ export declare const Notification: {
|
|
|
8991
9186
|
e2ee?: number | undefined;
|
|
8992
9187
|
display_names?: string[] | undefined;
|
|
8993
9188
|
} | undefined;
|
|
9189
|
+
topic_id?: string | undefined;
|
|
9190
|
+
category?: number | undefined;
|
|
8994
9191
|
} & {
|
|
8995
9192
|
id?: string | undefined;
|
|
8996
9193
|
subject?: string | undefined;
|
|
@@ -9005,7 +9202,7 @@ export declare const Notification: {
|
|
|
9005
9202
|
avatar_url?: string | undefined;
|
|
9006
9203
|
channel?: ({
|
|
9007
9204
|
clan_id?: string | undefined;
|
|
9008
|
-
|
|
9205
|
+
parent_id?: string | undefined;
|
|
9009
9206
|
channel_id?: string | undefined;
|
|
9010
9207
|
category_id?: string | undefined;
|
|
9011
9208
|
category_name?: string | undefined;
|
|
@@ -9057,7 +9254,7 @@ export declare const Notification: {
|
|
|
9057
9254
|
display_names?: string[] | undefined;
|
|
9058
9255
|
} & {
|
|
9059
9256
|
clan_id?: string | undefined;
|
|
9060
|
-
|
|
9257
|
+
parent_id?: string | undefined;
|
|
9061
9258
|
channel_id?: string | undefined;
|
|
9062
9259
|
category_id?: string | undefined;
|
|
9063
9260
|
category_name?: string | undefined;
|
|
@@ -9128,8 +9325,90 @@ export declare const Notification: {
|
|
|
9128
9325
|
e2ee?: number | undefined;
|
|
9129
9326
|
display_names?: (string[] & string[] & { [K_23 in Exclude<keyof I_1["channel"]["display_names"], keyof string[]>]: never; }) | undefined;
|
|
9130
9327
|
} & { [K_24 in Exclude<keyof I_1["channel"], keyof ChannelDescription>]: never; }) | undefined;
|
|
9328
|
+
topic_id?: string | undefined;
|
|
9329
|
+
category?: number | undefined;
|
|
9131
9330
|
} & { [K_25 in Exclude<keyof I_1, keyof Notification>]: never; }>(object: I_1): Notification;
|
|
9132
9331
|
};
|
|
9332
|
+
export declare const EmojiRecent: {
|
|
9333
|
+
encode(message: EmojiRecent, writer?: _m0.Writer): _m0.Writer;
|
|
9334
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): EmojiRecent;
|
|
9335
|
+
fromJSON(object: any): EmojiRecent;
|
|
9336
|
+
toJSON(message: EmojiRecent): unknown;
|
|
9337
|
+
create<I extends {
|
|
9338
|
+
emoji_recents_id?: string | undefined;
|
|
9339
|
+
emoji_id?: string | undefined;
|
|
9340
|
+
update_time?: Date | undefined;
|
|
9341
|
+
} & {
|
|
9342
|
+
emoji_recents_id?: string | undefined;
|
|
9343
|
+
emoji_id?: string | undefined;
|
|
9344
|
+
update_time?: Date | undefined;
|
|
9345
|
+
} & { [K in Exclude<keyof I, keyof EmojiRecent>]: never; }>(base?: I | undefined): EmojiRecent;
|
|
9346
|
+
fromPartial<I_1 extends {
|
|
9347
|
+
emoji_recents_id?: string | undefined;
|
|
9348
|
+
emoji_id?: string | undefined;
|
|
9349
|
+
update_time?: Date | undefined;
|
|
9350
|
+
} & {
|
|
9351
|
+
emoji_recents_id?: string | undefined;
|
|
9352
|
+
emoji_id?: string | undefined;
|
|
9353
|
+
update_time?: Date | undefined;
|
|
9354
|
+
} & { [K_1 in Exclude<keyof I_1, keyof EmojiRecent>]: never; }>(object: I_1): EmojiRecent;
|
|
9355
|
+
};
|
|
9356
|
+
export declare const EmojiRecentList: {
|
|
9357
|
+
encode(message: EmojiRecentList, writer?: _m0.Writer): _m0.Writer;
|
|
9358
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): EmojiRecentList;
|
|
9359
|
+
fromJSON(object: any): EmojiRecentList;
|
|
9360
|
+
toJSON(message: EmojiRecentList): unknown;
|
|
9361
|
+
create<I extends {
|
|
9362
|
+
emoji_recents?: {
|
|
9363
|
+
emoji_recents_id?: string | undefined;
|
|
9364
|
+
emoji_id?: string | undefined;
|
|
9365
|
+
update_time?: Date | undefined;
|
|
9366
|
+
}[] | undefined;
|
|
9367
|
+
} & {
|
|
9368
|
+
emoji_recents?: ({
|
|
9369
|
+
emoji_recents_id?: string | undefined;
|
|
9370
|
+
emoji_id?: string | undefined;
|
|
9371
|
+
update_time?: Date | undefined;
|
|
9372
|
+
}[] & ({
|
|
9373
|
+
emoji_recents_id?: string | undefined;
|
|
9374
|
+
emoji_id?: string | undefined;
|
|
9375
|
+
update_time?: Date | undefined;
|
|
9376
|
+
} & {
|
|
9377
|
+
emoji_recents_id?: string | undefined;
|
|
9378
|
+
emoji_id?: string | undefined;
|
|
9379
|
+
update_time?: Date | undefined;
|
|
9380
|
+
} & { [K in Exclude<keyof I["emoji_recents"][number], keyof EmojiRecent>]: never; })[] & { [K_1 in Exclude<keyof I["emoji_recents"], keyof {
|
|
9381
|
+
emoji_recents_id?: string | undefined;
|
|
9382
|
+
emoji_id?: string | undefined;
|
|
9383
|
+
update_time?: Date | undefined;
|
|
9384
|
+
}[]>]: never; }) | undefined;
|
|
9385
|
+
} & { [K_2 in Exclude<keyof I, "emoji_recents">]: never; }>(base?: I | undefined): EmojiRecentList;
|
|
9386
|
+
fromPartial<I_1 extends {
|
|
9387
|
+
emoji_recents?: {
|
|
9388
|
+
emoji_recents_id?: string | undefined;
|
|
9389
|
+
emoji_id?: string | undefined;
|
|
9390
|
+
update_time?: Date | undefined;
|
|
9391
|
+
}[] | undefined;
|
|
9392
|
+
} & {
|
|
9393
|
+
emoji_recents?: ({
|
|
9394
|
+
emoji_recents_id?: string | undefined;
|
|
9395
|
+
emoji_id?: string | undefined;
|
|
9396
|
+
update_time?: Date | undefined;
|
|
9397
|
+
}[] & ({
|
|
9398
|
+
emoji_recents_id?: string | undefined;
|
|
9399
|
+
emoji_id?: string | undefined;
|
|
9400
|
+
update_time?: Date | undefined;
|
|
9401
|
+
} & {
|
|
9402
|
+
emoji_recents_id?: string | undefined;
|
|
9403
|
+
emoji_id?: string | undefined;
|
|
9404
|
+
update_time?: Date | undefined;
|
|
9405
|
+
} & { [K_3 in Exclude<keyof I_1["emoji_recents"][number], keyof EmojiRecent>]: never; })[] & { [K_4 in Exclude<keyof I_1["emoji_recents"], keyof {
|
|
9406
|
+
emoji_recents_id?: string | undefined;
|
|
9407
|
+
emoji_id?: string | undefined;
|
|
9408
|
+
update_time?: Date | undefined;
|
|
9409
|
+
}[]>]: never; }) | undefined;
|
|
9410
|
+
} & { [K_5 in Exclude<keyof I_1, "emoji_recents">]: never; }>(object: I_1): EmojiRecentList;
|
|
9411
|
+
};
|
|
9133
9412
|
export declare const NotificationList: {
|
|
9134
9413
|
encode(message: NotificationList, writer?: _m0.Writer): _m0.Writer;
|
|
9135
9414
|
decode(input: _m0.Reader | Uint8Array, length?: number): NotificationList;
|
|
@@ -9150,7 +9429,7 @@ export declare const NotificationList: {
|
|
|
9150
9429
|
avatar_url?: string | undefined;
|
|
9151
9430
|
channel?: {
|
|
9152
9431
|
clan_id?: string | undefined;
|
|
9153
|
-
|
|
9432
|
+
parent_id?: string | undefined;
|
|
9154
9433
|
channel_id?: string | undefined;
|
|
9155
9434
|
category_id?: string | undefined;
|
|
9156
9435
|
category_name?: string | undefined;
|
|
@@ -9201,6 +9480,8 @@ export declare const NotificationList: {
|
|
|
9201
9480
|
e2ee?: number | undefined;
|
|
9202
9481
|
display_names?: string[] | undefined;
|
|
9203
9482
|
} | undefined;
|
|
9483
|
+
topic_id?: string | undefined;
|
|
9484
|
+
category?: number | undefined;
|
|
9204
9485
|
}[] | undefined;
|
|
9205
9486
|
cacheable_cursor?: string | undefined;
|
|
9206
9487
|
} & {
|
|
@@ -9218,7 +9499,7 @@ export declare const NotificationList: {
|
|
|
9218
9499
|
avatar_url?: string | undefined;
|
|
9219
9500
|
channel?: {
|
|
9220
9501
|
clan_id?: string | undefined;
|
|
9221
|
-
|
|
9502
|
+
parent_id?: string | undefined;
|
|
9222
9503
|
channel_id?: string | undefined;
|
|
9223
9504
|
category_id?: string | undefined;
|
|
9224
9505
|
category_name?: string | undefined;
|
|
@@ -9269,6 +9550,8 @@ export declare const NotificationList: {
|
|
|
9269
9550
|
e2ee?: number | undefined;
|
|
9270
9551
|
display_names?: string[] | undefined;
|
|
9271
9552
|
} | undefined;
|
|
9553
|
+
topic_id?: string | undefined;
|
|
9554
|
+
category?: number | undefined;
|
|
9272
9555
|
}[] & ({
|
|
9273
9556
|
id?: string | undefined;
|
|
9274
9557
|
subject?: string | undefined;
|
|
@@ -9283,7 +9566,7 @@ export declare const NotificationList: {
|
|
|
9283
9566
|
avatar_url?: string | undefined;
|
|
9284
9567
|
channel?: {
|
|
9285
9568
|
clan_id?: string | undefined;
|
|
9286
|
-
|
|
9569
|
+
parent_id?: string | undefined;
|
|
9287
9570
|
channel_id?: string | undefined;
|
|
9288
9571
|
category_id?: string | undefined;
|
|
9289
9572
|
category_name?: string | undefined;
|
|
@@ -9334,6 +9617,8 @@ export declare const NotificationList: {
|
|
|
9334
9617
|
e2ee?: number | undefined;
|
|
9335
9618
|
display_names?: string[] | undefined;
|
|
9336
9619
|
} | undefined;
|
|
9620
|
+
topic_id?: string | undefined;
|
|
9621
|
+
category?: number | undefined;
|
|
9337
9622
|
} & {
|
|
9338
9623
|
id?: string | undefined;
|
|
9339
9624
|
subject?: string | undefined;
|
|
@@ -9348,7 +9633,7 @@ export declare const NotificationList: {
|
|
|
9348
9633
|
avatar_url?: string | undefined;
|
|
9349
9634
|
channel?: ({
|
|
9350
9635
|
clan_id?: string | undefined;
|
|
9351
|
-
|
|
9636
|
+
parent_id?: string | undefined;
|
|
9352
9637
|
channel_id?: string | undefined;
|
|
9353
9638
|
category_id?: string | undefined;
|
|
9354
9639
|
category_name?: string | undefined;
|
|
@@ -9400,7 +9685,7 @@ export declare const NotificationList: {
|
|
|
9400
9685
|
display_names?: string[] | undefined;
|
|
9401
9686
|
} & {
|
|
9402
9687
|
clan_id?: string | undefined;
|
|
9403
|
-
|
|
9688
|
+
parent_id?: string | undefined;
|
|
9404
9689
|
channel_id?: string | undefined;
|
|
9405
9690
|
category_id?: string | undefined;
|
|
9406
9691
|
category_name?: string | undefined;
|
|
@@ -9471,6 +9756,8 @@ export declare const NotificationList: {
|
|
|
9471
9756
|
e2ee?: number | undefined;
|
|
9472
9757
|
display_names?: (string[] & string[] & { [K_10 in Exclude<keyof I["notifications"][number]["channel"]["display_names"], keyof string[]>]: never; }) | undefined;
|
|
9473
9758
|
} & { [K_11 in Exclude<keyof I["notifications"][number]["channel"], keyof ChannelDescription>]: never; }) | undefined;
|
|
9759
|
+
topic_id?: string | undefined;
|
|
9760
|
+
category?: number | undefined;
|
|
9474
9761
|
} & { [K_12 in Exclude<keyof I["notifications"][number], keyof Notification>]: never; })[] & { [K_13 in Exclude<keyof I["notifications"], keyof {
|
|
9475
9762
|
id?: string | undefined;
|
|
9476
9763
|
subject?: string | undefined;
|
|
@@ -9485,7 +9772,7 @@ export declare const NotificationList: {
|
|
|
9485
9772
|
avatar_url?: string | undefined;
|
|
9486
9773
|
channel?: {
|
|
9487
9774
|
clan_id?: string | undefined;
|
|
9488
|
-
|
|
9775
|
+
parent_id?: string | undefined;
|
|
9489
9776
|
channel_id?: string | undefined;
|
|
9490
9777
|
category_id?: string | undefined;
|
|
9491
9778
|
category_name?: string | undefined;
|
|
@@ -9536,6 +9823,8 @@ export declare const NotificationList: {
|
|
|
9536
9823
|
e2ee?: number | undefined;
|
|
9537
9824
|
display_names?: string[] | undefined;
|
|
9538
9825
|
} | undefined;
|
|
9826
|
+
topic_id?: string | undefined;
|
|
9827
|
+
category?: number | undefined;
|
|
9539
9828
|
}[]>]: never; }) | undefined;
|
|
9540
9829
|
cacheable_cursor?: string | undefined;
|
|
9541
9830
|
} & { [K_14 in Exclude<keyof I, keyof NotificationList>]: never; }>(base?: I | undefined): NotificationList;
|
|
@@ -9554,7 +9843,7 @@ export declare const NotificationList: {
|
|
|
9554
9843
|
avatar_url?: string | undefined;
|
|
9555
9844
|
channel?: {
|
|
9556
9845
|
clan_id?: string | undefined;
|
|
9557
|
-
|
|
9846
|
+
parent_id?: string | undefined;
|
|
9558
9847
|
channel_id?: string | undefined;
|
|
9559
9848
|
category_id?: string | undefined;
|
|
9560
9849
|
category_name?: string | undefined;
|
|
@@ -9605,6 +9894,8 @@ export declare const NotificationList: {
|
|
|
9605
9894
|
e2ee?: number | undefined;
|
|
9606
9895
|
display_names?: string[] | undefined;
|
|
9607
9896
|
} | undefined;
|
|
9897
|
+
topic_id?: string | undefined;
|
|
9898
|
+
category?: number | undefined;
|
|
9608
9899
|
}[] | undefined;
|
|
9609
9900
|
cacheable_cursor?: string | undefined;
|
|
9610
9901
|
} & {
|
|
@@ -9622,7 +9913,7 @@ export declare const NotificationList: {
|
|
|
9622
9913
|
avatar_url?: string | undefined;
|
|
9623
9914
|
channel?: {
|
|
9624
9915
|
clan_id?: string | undefined;
|
|
9625
|
-
|
|
9916
|
+
parent_id?: string | undefined;
|
|
9626
9917
|
channel_id?: string | undefined;
|
|
9627
9918
|
category_id?: string | undefined;
|
|
9628
9919
|
category_name?: string | undefined;
|
|
@@ -9673,6 +9964,8 @@ export declare const NotificationList: {
|
|
|
9673
9964
|
e2ee?: number | undefined;
|
|
9674
9965
|
display_names?: string[] | undefined;
|
|
9675
9966
|
} | undefined;
|
|
9967
|
+
topic_id?: string | undefined;
|
|
9968
|
+
category?: number | undefined;
|
|
9676
9969
|
}[] & ({
|
|
9677
9970
|
id?: string | undefined;
|
|
9678
9971
|
subject?: string | undefined;
|
|
@@ -9687,7 +9980,7 @@ export declare const NotificationList: {
|
|
|
9687
9980
|
avatar_url?: string | undefined;
|
|
9688
9981
|
channel?: {
|
|
9689
9982
|
clan_id?: string | undefined;
|
|
9690
|
-
|
|
9983
|
+
parent_id?: string | undefined;
|
|
9691
9984
|
channel_id?: string | undefined;
|
|
9692
9985
|
category_id?: string | undefined;
|
|
9693
9986
|
category_name?: string | undefined;
|
|
@@ -9738,6 +10031,8 @@ export declare const NotificationList: {
|
|
|
9738
10031
|
e2ee?: number | undefined;
|
|
9739
10032
|
display_names?: string[] | undefined;
|
|
9740
10033
|
} | undefined;
|
|
10034
|
+
topic_id?: string | undefined;
|
|
10035
|
+
category?: number | undefined;
|
|
9741
10036
|
} & {
|
|
9742
10037
|
id?: string | undefined;
|
|
9743
10038
|
subject?: string | undefined;
|
|
@@ -9752,7 +10047,7 @@ export declare const NotificationList: {
|
|
|
9752
10047
|
avatar_url?: string | undefined;
|
|
9753
10048
|
channel?: ({
|
|
9754
10049
|
clan_id?: string | undefined;
|
|
9755
|
-
|
|
10050
|
+
parent_id?: string | undefined;
|
|
9756
10051
|
channel_id?: string | undefined;
|
|
9757
10052
|
category_id?: string | undefined;
|
|
9758
10053
|
category_name?: string | undefined;
|
|
@@ -9804,7 +10099,7 @@ export declare const NotificationList: {
|
|
|
9804
10099
|
display_names?: string[] | undefined;
|
|
9805
10100
|
} & {
|
|
9806
10101
|
clan_id?: string | undefined;
|
|
9807
|
-
|
|
10102
|
+
parent_id?: string | undefined;
|
|
9808
10103
|
channel_id?: string | undefined;
|
|
9809
10104
|
category_id?: string | undefined;
|
|
9810
10105
|
category_name?: string | undefined;
|
|
@@ -9875,6 +10170,8 @@ export declare const NotificationList: {
|
|
|
9875
10170
|
e2ee?: number | undefined;
|
|
9876
10171
|
display_names?: (string[] & string[] & { [K_25 in Exclude<keyof I_1["notifications"][number]["channel"]["display_names"], keyof string[]>]: never; }) | undefined;
|
|
9877
10172
|
} & { [K_26 in Exclude<keyof I_1["notifications"][number]["channel"], keyof ChannelDescription>]: never; }) | undefined;
|
|
10173
|
+
topic_id?: string | undefined;
|
|
10174
|
+
category?: number | undefined;
|
|
9878
10175
|
} & { [K_27 in Exclude<keyof I_1["notifications"][number], keyof Notification>]: never; })[] & { [K_28 in Exclude<keyof I_1["notifications"], keyof {
|
|
9879
10176
|
id?: string | undefined;
|
|
9880
10177
|
subject?: string | undefined;
|
|
@@ -9889,7 +10186,7 @@ export declare const NotificationList: {
|
|
|
9889
10186
|
avatar_url?: string | undefined;
|
|
9890
10187
|
channel?: {
|
|
9891
10188
|
clan_id?: string | undefined;
|
|
9892
|
-
|
|
10189
|
+
parent_id?: string | undefined;
|
|
9893
10190
|
channel_id?: string | undefined;
|
|
9894
10191
|
category_id?: string | undefined;
|
|
9895
10192
|
category_name?: string | undefined;
|
|
@@ -9940,6 +10237,8 @@ export declare const NotificationList: {
|
|
|
9940
10237
|
e2ee?: number | undefined;
|
|
9941
10238
|
display_names?: string[] | undefined;
|
|
9942
10239
|
} | undefined;
|
|
10240
|
+
topic_id?: string | undefined;
|
|
10241
|
+
category?: number | undefined;
|
|
9943
10242
|
}[]>]: never; }) | undefined;
|
|
9944
10243
|
cacheable_cursor?: string | undefined;
|
|
9945
10244
|
} & { [K_29 in Exclude<keyof I_1, keyof NotificationList>]: never; }>(object: I_1): NotificationList;
|
|
@@ -10018,22 +10317,26 @@ export declare const Session: {
|
|
|
10018
10317
|
token?: string | undefined;
|
|
10019
10318
|
refresh_token?: string | undefined;
|
|
10020
10319
|
user_id?: string | undefined;
|
|
10320
|
+
is_remember?: boolean | undefined;
|
|
10021
10321
|
} & {
|
|
10022
10322
|
created?: boolean | undefined;
|
|
10023
10323
|
token?: string | undefined;
|
|
10024
10324
|
refresh_token?: string | undefined;
|
|
10025
10325
|
user_id?: string | undefined;
|
|
10326
|
+
is_remember?: boolean | undefined;
|
|
10026
10327
|
} & { [K in Exclude<keyof I, keyof Session>]: never; }>(base?: I | undefined): Session;
|
|
10027
10328
|
fromPartial<I_1 extends {
|
|
10028
10329
|
created?: boolean | undefined;
|
|
10029
10330
|
token?: string | undefined;
|
|
10030
10331
|
refresh_token?: string | undefined;
|
|
10031
10332
|
user_id?: string | undefined;
|
|
10333
|
+
is_remember?: boolean | undefined;
|
|
10032
10334
|
} & {
|
|
10033
10335
|
created?: boolean | undefined;
|
|
10034
10336
|
token?: string | undefined;
|
|
10035
10337
|
refresh_token?: string | undefined;
|
|
10036
10338
|
user_id?: string | undefined;
|
|
10339
|
+
is_remember?: boolean | undefined;
|
|
10037
10340
|
} & { [K_1 in Exclude<keyof I_1, keyof Session>]: never; }>(object: I_1): Session;
|
|
10038
10341
|
};
|
|
10039
10342
|
export declare const UpdateAccountRequest: {
|
|
@@ -10179,6 +10482,7 @@ export declare const User: {
|
|
|
10179
10482
|
join_time?: Date | undefined;
|
|
10180
10483
|
is_mobile?: boolean | undefined;
|
|
10181
10484
|
dob?: Date | undefined;
|
|
10485
|
+
mezon_id?: string | undefined;
|
|
10182
10486
|
} & {
|
|
10183
10487
|
id?: string | undefined;
|
|
10184
10488
|
username?: string | undefined;
|
|
@@ -10201,6 +10505,7 @@ export declare const User: {
|
|
|
10201
10505
|
join_time?: Date | undefined;
|
|
10202
10506
|
is_mobile?: boolean | undefined;
|
|
10203
10507
|
dob?: Date | undefined;
|
|
10508
|
+
mezon_id?: string | undefined;
|
|
10204
10509
|
} & { [K in Exclude<keyof I, keyof User>]: never; }>(base?: I | undefined): User;
|
|
10205
10510
|
fromPartial<I_1 extends {
|
|
10206
10511
|
id?: string | undefined;
|
|
@@ -10224,6 +10529,7 @@ export declare const User: {
|
|
|
10224
10529
|
join_time?: Date | undefined;
|
|
10225
10530
|
is_mobile?: boolean | undefined;
|
|
10226
10531
|
dob?: Date | undefined;
|
|
10532
|
+
mezon_id?: string | undefined;
|
|
10227
10533
|
} & {
|
|
10228
10534
|
id?: string | undefined;
|
|
10229
10535
|
username?: string | undefined;
|
|
@@ -10246,6 +10552,7 @@ export declare const User: {
|
|
|
10246
10552
|
join_time?: Date | undefined;
|
|
10247
10553
|
is_mobile?: boolean | undefined;
|
|
10248
10554
|
dob?: Date | undefined;
|
|
10555
|
+
mezon_id?: string | undefined;
|
|
10249
10556
|
} & { [K_1 in Exclude<keyof I_1, keyof User>]: never; }>(object: I_1): User;
|
|
10250
10557
|
};
|
|
10251
10558
|
export declare const UserGroupList: {
|
|
@@ -10580,6 +10887,7 @@ export declare const Users: {
|
|
|
10580
10887
|
join_time?: Date | undefined;
|
|
10581
10888
|
is_mobile?: boolean | undefined;
|
|
10582
10889
|
dob?: Date | undefined;
|
|
10890
|
+
mezon_id?: string | undefined;
|
|
10583
10891
|
}[] | undefined;
|
|
10584
10892
|
} & {
|
|
10585
10893
|
users?: ({
|
|
@@ -10604,6 +10912,7 @@ export declare const Users: {
|
|
|
10604
10912
|
join_time?: Date | undefined;
|
|
10605
10913
|
is_mobile?: boolean | undefined;
|
|
10606
10914
|
dob?: Date | undefined;
|
|
10915
|
+
mezon_id?: string | undefined;
|
|
10607
10916
|
}[] & ({
|
|
10608
10917
|
id?: string | undefined;
|
|
10609
10918
|
username?: string | undefined;
|
|
@@ -10626,6 +10935,7 @@ export declare const Users: {
|
|
|
10626
10935
|
join_time?: Date | undefined;
|
|
10627
10936
|
is_mobile?: boolean | undefined;
|
|
10628
10937
|
dob?: Date | undefined;
|
|
10938
|
+
mezon_id?: string | undefined;
|
|
10629
10939
|
} & {
|
|
10630
10940
|
id?: string | undefined;
|
|
10631
10941
|
username?: string | undefined;
|
|
@@ -10648,6 +10958,7 @@ export declare const Users: {
|
|
|
10648
10958
|
join_time?: Date | undefined;
|
|
10649
10959
|
is_mobile?: boolean | undefined;
|
|
10650
10960
|
dob?: Date | undefined;
|
|
10961
|
+
mezon_id?: string | undefined;
|
|
10651
10962
|
} & { [K in Exclude<keyof I["users"][number], keyof User>]: never; })[] & { [K_1 in Exclude<keyof I["users"], keyof {
|
|
10652
10963
|
id?: string | undefined;
|
|
10653
10964
|
username?: string | undefined;
|
|
@@ -10670,6 +10981,7 @@ export declare const Users: {
|
|
|
10670
10981
|
join_time?: Date | undefined;
|
|
10671
10982
|
is_mobile?: boolean | undefined;
|
|
10672
10983
|
dob?: Date | undefined;
|
|
10984
|
+
mezon_id?: string | undefined;
|
|
10673
10985
|
}[]>]: never; }) | undefined;
|
|
10674
10986
|
} & { [K_2 in Exclude<keyof I, "users">]: never; }>(base?: I | undefined): Users;
|
|
10675
10987
|
fromPartial<I_1 extends {
|
|
@@ -10695,6 +11007,7 @@ export declare const Users: {
|
|
|
10695
11007
|
join_time?: Date | undefined;
|
|
10696
11008
|
is_mobile?: boolean | undefined;
|
|
10697
11009
|
dob?: Date | undefined;
|
|
11010
|
+
mezon_id?: string | undefined;
|
|
10698
11011
|
}[] | undefined;
|
|
10699
11012
|
} & {
|
|
10700
11013
|
users?: ({
|
|
@@ -10719,6 +11032,7 @@ export declare const Users: {
|
|
|
10719
11032
|
join_time?: Date | undefined;
|
|
10720
11033
|
is_mobile?: boolean | undefined;
|
|
10721
11034
|
dob?: Date | undefined;
|
|
11035
|
+
mezon_id?: string | undefined;
|
|
10722
11036
|
}[] & ({
|
|
10723
11037
|
id?: string | undefined;
|
|
10724
11038
|
username?: string | undefined;
|
|
@@ -10741,6 +11055,7 @@ export declare const Users: {
|
|
|
10741
11055
|
join_time?: Date | undefined;
|
|
10742
11056
|
is_mobile?: boolean | undefined;
|
|
10743
11057
|
dob?: Date | undefined;
|
|
11058
|
+
mezon_id?: string | undefined;
|
|
10744
11059
|
} & {
|
|
10745
11060
|
id?: string | undefined;
|
|
10746
11061
|
username?: string | undefined;
|
|
@@ -10763,6 +11078,7 @@ export declare const Users: {
|
|
|
10763
11078
|
join_time?: Date | undefined;
|
|
10764
11079
|
is_mobile?: boolean | undefined;
|
|
10765
11080
|
dob?: Date | undefined;
|
|
11081
|
+
mezon_id?: string | undefined;
|
|
10766
11082
|
} & { [K_3 in Exclude<keyof I_1["users"][number], keyof User>]: never; })[] & { [K_4 in Exclude<keyof I_1["users"], keyof {
|
|
10767
11083
|
id?: string | undefined;
|
|
10768
11084
|
username?: string | undefined;
|
|
@@ -10785,6 +11101,7 @@ export declare const Users: {
|
|
|
10785
11101
|
join_time?: Date | undefined;
|
|
10786
11102
|
is_mobile?: boolean | undefined;
|
|
10787
11103
|
dob?: Date | undefined;
|
|
11104
|
+
mezon_id?: string | undefined;
|
|
10788
11105
|
}[]>]: never; }) | undefined;
|
|
10789
11106
|
} & { [K_5 in Exclude<keyof I_1, "users">]: never; }>(object: I_1): Users;
|
|
10790
11107
|
};
|
|
@@ -10886,6 +11203,8 @@ export declare const ClanDesc: {
|
|
|
10886
11203
|
status?: number | undefined;
|
|
10887
11204
|
badge_count?: number | undefined;
|
|
10888
11205
|
is_onboarding?: boolean | undefined;
|
|
11206
|
+
welcome_channel_id?: string | undefined;
|
|
11207
|
+
onboarding_banner?: string | undefined;
|
|
10889
11208
|
} & {
|
|
10890
11209
|
creator_id?: string | undefined;
|
|
10891
11210
|
clan_name?: string | undefined;
|
|
@@ -10895,6 +11214,8 @@ export declare const ClanDesc: {
|
|
|
10895
11214
|
status?: number | undefined;
|
|
10896
11215
|
badge_count?: number | undefined;
|
|
10897
11216
|
is_onboarding?: boolean | undefined;
|
|
11217
|
+
welcome_channel_id?: string | undefined;
|
|
11218
|
+
onboarding_banner?: string | undefined;
|
|
10898
11219
|
} & { [K in Exclude<keyof I, keyof ClanDesc>]: never; }>(base?: I | undefined): ClanDesc;
|
|
10899
11220
|
fromPartial<I_1 extends {
|
|
10900
11221
|
creator_id?: string | undefined;
|
|
@@ -10905,6 +11226,8 @@ export declare const ClanDesc: {
|
|
|
10905
11226
|
status?: number | undefined;
|
|
10906
11227
|
badge_count?: number | undefined;
|
|
10907
11228
|
is_onboarding?: boolean | undefined;
|
|
11229
|
+
welcome_channel_id?: string | undefined;
|
|
11230
|
+
onboarding_banner?: string | undefined;
|
|
10908
11231
|
} & {
|
|
10909
11232
|
creator_id?: string | undefined;
|
|
10910
11233
|
clan_name?: string | undefined;
|
|
@@ -10914,6 +11237,8 @@ export declare const ClanDesc: {
|
|
|
10914
11237
|
status?: number | undefined;
|
|
10915
11238
|
badge_count?: number | undefined;
|
|
10916
11239
|
is_onboarding?: boolean | undefined;
|
|
11240
|
+
welcome_channel_id?: string | undefined;
|
|
11241
|
+
onboarding_banner?: string | undefined;
|
|
10917
11242
|
} & { [K_1 in Exclude<keyof I_1, keyof ClanDesc>]: never; }>(object: I_1): ClanDesc;
|
|
10918
11243
|
};
|
|
10919
11244
|
export declare const CreateClanDescRequest: {
|
|
@@ -10952,6 +11277,8 @@ export declare const UpdateClanDescRequest: {
|
|
|
10952
11277
|
banner?: string | undefined;
|
|
10953
11278
|
status?: number | undefined;
|
|
10954
11279
|
is_onboarding?: boolean | undefined;
|
|
11280
|
+
welcome_channel_id?: string | undefined;
|
|
11281
|
+
onboarding_banner?: string | undefined;
|
|
10955
11282
|
} & {
|
|
10956
11283
|
clan_id?: string | undefined;
|
|
10957
11284
|
clan_name?: string | undefined;
|
|
@@ -10959,6 +11286,8 @@ export declare const UpdateClanDescRequest: {
|
|
|
10959
11286
|
banner?: string | undefined;
|
|
10960
11287
|
status?: number | undefined;
|
|
10961
11288
|
is_onboarding?: boolean | undefined;
|
|
11289
|
+
welcome_channel_id?: string | undefined;
|
|
11290
|
+
onboarding_banner?: string | undefined;
|
|
10962
11291
|
} & { [K in Exclude<keyof I, keyof UpdateClanDescRequest>]: never; }>(base?: I | undefined): UpdateClanDescRequest;
|
|
10963
11292
|
fromPartial<I_1 extends {
|
|
10964
11293
|
clan_id?: string | undefined;
|
|
@@ -10967,6 +11296,8 @@ export declare const UpdateClanDescRequest: {
|
|
|
10967
11296
|
banner?: string | undefined;
|
|
10968
11297
|
status?: number | undefined;
|
|
10969
11298
|
is_onboarding?: boolean | undefined;
|
|
11299
|
+
welcome_channel_id?: string | undefined;
|
|
11300
|
+
onboarding_banner?: string | undefined;
|
|
10970
11301
|
} & {
|
|
10971
11302
|
clan_id?: string | undefined;
|
|
10972
11303
|
clan_name?: string | undefined;
|
|
@@ -10974,6 +11305,8 @@ export declare const UpdateClanDescRequest: {
|
|
|
10974
11305
|
banner?: string | undefined;
|
|
10975
11306
|
status?: number | undefined;
|
|
10976
11307
|
is_onboarding?: boolean | undefined;
|
|
11308
|
+
welcome_channel_id?: string | undefined;
|
|
11309
|
+
onboarding_banner?: string | undefined;
|
|
10977
11310
|
} & { [K_1 in Exclude<keyof I_1, keyof UpdateClanDescRequest>]: never; }>(object: I_1): UpdateClanDescRequest;
|
|
10978
11311
|
};
|
|
10979
11312
|
export declare const DeleteClanDescRequest: {
|
|
@@ -11031,6 +11364,8 @@ export declare const ClanDescList: {
|
|
|
11031
11364
|
status?: number | undefined;
|
|
11032
11365
|
badge_count?: number | undefined;
|
|
11033
11366
|
is_onboarding?: boolean | undefined;
|
|
11367
|
+
welcome_channel_id?: string | undefined;
|
|
11368
|
+
onboarding_banner?: string | undefined;
|
|
11034
11369
|
}[] | undefined;
|
|
11035
11370
|
} & {
|
|
11036
11371
|
clandesc?: ({
|
|
@@ -11042,6 +11377,8 @@ export declare const ClanDescList: {
|
|
|
11042
11377
|
status?: number | undefined;
|
|
11043
11378
|
badge_count?: number | undefined;
|
|
11044
11379
|
is_onboarding?: boolean | undefined;
|
|
11380
|
+
welcome_channel_id?: string | undefined;
|
|
11381
|
+
onboarding_banner?: string | undefined;
|
|
11045
11382
|
}[] & ({
|
|
11046
11383
|
creator_id?: string | undefined;
|
|
11047
11384
|
clan_name?: string | undefined;
|
|
@@ -11051,6 +11388,8 @@ export declare const ClanDescList: {
|
|
|
11051
11388
|
status?: number | undefined;
|
|
11052
11389
|
badge_count?: number | undefined;
|
|
11053
11390
|
is_onboarding?: boolean | undefined;
|
|
11391
|
+
welcome_channel_id?: string | undefined;
|
|
11392
|
+
onboarding_banner?: string | undefined;
|
|
11054
11393
|
} & {
|
|
11055
11394
|
creator_id?: string | undefined;
|
|
11056
11395
|
clan_name?: string | undefined;
|
|
@@ -11060,6 +11399,8 @@ export declare const ClanDescList: {
|
|
|
11060
11399
|
status?: number | undefined;
|
|
11061
11400
|
badge_count?: number | undefined;
|
|
11062
11401
|
is_onboarding?: boolean | undefined;
|
|
11402
|
+
welcome_channel_id?: string | undefined;
|
|
11403
|
+
onboarding_banner?: string | undefined;
|
|
11063
11404
|
} & { [K in Exclude<keyof I["clandesc"][number], keyof ClanDesc>]: never; })[] & { [K_1 in Exclude<keyof I["clandesc"], keyof {
|
|
11064
11405
|
creator_id?: string | undefined;
|
|
11065
11406
|
clan_name?: string | undefined;
|
|
@@ -11069,6 +11410,8 @@ export declare const ClanDescList: {
|
|
|
11069
11410
|
status?: number | undefined;
|
|
11070
11411
|
badge_count?: number | undefined;
|
|
11071
11412
|
is_onboarding?: boolean | undefined;
|
|
11413
|
+
welcome_channel_id?: string | undefined;
|
|
11414
|
+
onboarding_banner?: string | undefined;
|
|
11072
11415
|
}[]>]: never; }) | undefined;
|
|
11073
11416
|
} & { [K_2 in Exclude<keyof I, "clandesc">]: never; }>(base?: I | undefined): ClanDescList;
|
|
11074
11417
|
fromPartial<I_1 extends {
|
|
@@ -11081,6 +11424,8 @@ export declare const ClanDescList: {
|
|
|
11081
11424
|
status?: number | undefined;
|
|
11082
11425
|
badge_count?: number | undefined;
|
|
11083
11426
|
is_onboarding?: boolean | undefined;
|
|
11427
|
+
welcome_channel_id?: string | undefined;
|
|
11428
|
+
onboarding_banner?: string | undefined;
|
|
11084
11429
|
}[] | undefined;
|
|
11085
11430
|
} & {
|
|
11086
11431
|
clandesc?: ({
|
|
@@ -11092,6 +11437,8 @@ export declare const ClanDescList: {
|
|
|
11092
11437
|
status?: number | undefined;
|
|
11093
11438
|
badge_count?: number | undefined;
|
|
11094
11439
|
is_onboarding?: boolean | undefined;
|
|
11440
|
+
welcome_channel_id?: string | undefined;
|
|
11441
|
+
onboarding_banner?: string | undefined;
|
|
11095
11442
|
}[] & ({
|
|
11096
11443
|
creator_id?: string | undefined;
|
|
11097
11444
|
clan_name?: string | undefined;
|
|
@@ -11101,6 +11448,8 @@ export declare const ClanDescList: {
|
|
|
11101
11448
|
status?: number | undefined;
|
|
11102
11449
|
badge_count?: number | undefined;
|
|
11103
11450
|
is_onboarding?: boolean | undefined;
|
|
11451
|
+
welcome_channel_id?: string | undefined;
|
|
11452
|
+
onboarding_banner?: string | undefined;
|
|
11104
11453
|
} & {
|
|
11105
11454
|
creator_id?: string | undefined;
|
|
11106
11455
|
clan_name?: string | undefined;
|
|
@@ -11110,6 +11459,8 @@ export declare const ClanDescList: {
|
|
|
11110
11459
|
status?: number | undefined;
|
|
11111
11460
|
badge_count?: number | undefined;
|
|
11112
11461
|
is_onboarding?: boolean | undefined;
|
|
11462
|
+
welcome_channel_id?: string | undefined;
|
|
11463
|
+
onboarding_banner?: string | undefined;
|
|
11113
11464
|
} & { [K_3 in Exclude<keyof I_1["clandesc"][number], keyof ClanDesc>]: never; })[] & { [K_4 in Exclude<keyof I_1["clandesc"], keyof {
|
|
11114
11465
|
creator_id?: string | undefined;
|
|
11115
11466
|
clan_name?: string | undefined;
|
|
@@ -11119,6 +11470,8 @@ export declare const ClanDescList: {
|
|
|
11119
11470
|
status?: number | undefined;
|
|
11120
11471
|
badge_count?: number | undefined;
|
|
11121
11472
|
is_onboarding?: boolean | undefined;
|
|
11473
|
+
welcome_channel_id?: string | undefined;
|
|
11474
|
+
onboarding_banner?: string | undefined;
|
|
11122
11475
|
}[]>]: never; }) | undefined;
|
|
11123
11476
|
} & { [K_5 in Exclude<keyof I_1, "clandesc">]: never; }>(object: I_1): ClanDescList;
|
|
11124
11477
|
};
|
|
@@ -11176,7 +11529,7 @@ export declare const InviteUserRes: {
|
|
|
11176
11529
|
expiry_time?: Date | undefined;
|
|
11177
11530
|
channel_desc?: {
|
|
11178
11531
|
clan_id?: string | undefined;
|
|
11179
|
-
|
|
11532
|
+
parent_id?: string | undefined;
|
|
11180
11533
|
channel_id?: string | undefined;
|
|
11181
11534
|
category_id?: string | undefined;
|
|
11182
11535
|
category_name?: string | undefined;
|
|
@@ -11236,7 +11589,7 @@ export declare const InviteUserRes: {
|
|
|
11236
11589
|
expiry_time?: Date | undefined;
|
|
11237
11590
|
channel_desc?: ({
|
|
11238
11591
|
clan_id?: string | undefined;
|
|
11239
|
-
|
|
11592
|
+
parent_id?: string | undefined;
|
|
11240
11593
|
channel_id?: string | undefined;
|
|
11241
11594
|
category_id?: string | undefined;
|
|
11242
11595
|
category_name?: string | undefined;
|
|
@@ -11288,7 +11641,7 @@ export declare const InviteUserRes: {
|
|
|
11288
11641
|
display_names?: string[] | undefined;
|
|
11289
11642
|
} & {
|
|
11290
11643
|
clan_id?: string | undefined;
|
|
11291
|
-
|
|
11644
|
+
parent_id?: string | undefined;
|
|
11292
11645
|
channel_id?: string | undefined;
|
|
11293
11646
|
category_id?: string | undefined;
|
|
11294
11647
|
category_name?: string | undefined;
|
|
@@ -11369,7 +11722,7 @@ export declare const InviteUserRes: {
|
|
|
11369
11722
|
expiry_time?: Date | undefined;
|
|
11370
11723
|
channel_desc?: {
|
|
11371
11724
|
clan_id?: string | undefined;
|
|
11372
|
-
|
|
11725
|
+
parent_id?: string | undefined;
|
|
11373
11726
|
channel_id?: string | undefined;
|
|
11374
11727
|
category_id?: string | undefined;
|
|
11375
11728
|
category_name?: string | undefined;
|
|
@@ -11429,7 +11782,7 @@ export declare const InviteUserRes: {
|
|
|
11429
11782
|
expiry_time?: Date | undefined;
|
|
11430
11783
|
channel_desc?: ({
|
|
11431
11784
|
clan_id?: string | undefined;
|
|
11432
|
-
|
|
11785
|
+
parent_id?: string | undefined;
|
|
11433
11786
|
channel_id?: string | undefined;
|
|
11434
11787
|
category_id?: string | undefined;
|
|
11435
11788
|
category_name?: string | undefined;
|
|
@@ -11481,7 +11834,7 @@ export declare const InviteUserRes: {
|
|
|
11481
11834
|
display_names?: string[] | undefined;
|
|
11482
11835
|
} & {
|
|
11483
11836
|
clan_id?: string | undefined;
|
|
11484
|
-
|
|
11837
|
+
parent_id?: string | undefined;
|
|
11485
11838
|
channel_id?: string | undefined;
|
|
11486
11839
|
category_id?: string | undefined;
|
|
11487
11840
|
category_name?: string | undefined;
|
|
@@ -11983,7 +12336,7 @@ export declare const ChannelDescription: {
|
|
|
11983
12336
|
toJSON(message: ChannelDescription): unknown;
|
|
11984
12337
|
create<I extends {
|
|
11985
12338
|
clan_id?: string | undefined;
|
|
11986
|
-
|
|
12339
|
+
parent_id?: string | undefined;
|
|
11987
12340
|
channel_id?: string | undefined;
|
|
11988
12341
|
category_id?: string | undefined;
|
|
11989
12342
|
category_name?: string | undefined;
|
|
@@ -12035,7 +12388,7 @@ export declare const ChannelDescription: {
|
|
|
12035
12388
|
display_names?: string[] | undefined;
|
|
12036
12389
|
} & {
|
|
12037
12390
|
clan_id?: string | undefined;
|
|
12038
|
-
|
|
12391
|
+
parent_id?: string | undefined;
|
|
12039
12392
|
channel_id?: string | undefined;
|
|
12040
12393
|
category_id?: string | undefined;
|
|
12041
12394
|
category_name?: string | undefined;
|
|
@@ -12108,7 +12461,7 @@ export declare const ChannelDescription: {
|
|
|
12108
12461
|
} & { [K_11 in Exclude<keyof I, keyof ChannelDescription>]: never; }>(base?: I | undefined): ChannelDescription;
|
|
12109
12462
|
fromPartial<I_1 extends {
|
|
12110
12463
|
clan_id?: string | undefined;
|
|
12111
|
-
|
|
12464
|
+
parent_id?: string | undefined;
|
|
12112
12465
|
channel_id?: string | undefined;
|
|
12113
12466
|
category_id?: string | undefined;
|
|
12114
12467
|
category_name?: string | undefined;
|
|
@@ -12160,7 +12513,7 @@ export declare const ChannelDescription: {
|
|
|
12160
12513
|
display_names?: string[] | undefined;
|
|
12161
12514
|
} & {
|
|
12162
12515
|
clan_id?: string | undefined;
|
|
12163
|
-
|
|
12516
|
+
parent_id?: string | undefined;
|
|
12164
12517
|
channel_id?: string | undefined;
|
|
12165
12518
|
category_id?: string | undefined;
|
|
12166
12519
|
category_name?: string | undefined;
|
|
@@ -12240,7 +12593,7 @@ export declare const ChannelDescList: {
|
|
|
12240
12593
|
create<I extends {
|
|
12241
12594
|
channeldesc?: {
|
|
12242
12595
|
clan_id?: string | undefined;
|
|
12243
|
-
|
|
12596
|
+
parent_id?: string | undefined;
|
|
12244
12597
|
channel_id?: string | undefined;
|
|
12245
12598
|
category_id?: string | undefined;
|
|
12246
12599
|
category_name?: string | undefined;
|
|
@@ -12298,7 +12651,7 @@ export declare const ChannelDescList: {
|
|
|
12298
12651
|
} & {
|
|
12299
12652
|
channeldesc?: ({
|
|
12300
12653
|
clan_id?: string | undefined;
|
|
12301
|
-
|
|
12654
|
+
parent_id?: string | undefined;
|
|
12302
12655
|
channel_id?: string | undefined;
|
|
12303
12656
|
category_id?: string | undefined;
|
|
12304
12657
|
category_name?: string | undefined;
|
|
@@ -12350,7 +12703,7 @@ export declare const ChannelDescList: {
|
|
|
12350
12703
|
display_names?: string[] | undefined;
|
|
12351
12704
|
}[] & ({
|
|
12352
12705
|
clan_id?: string | undefined;
|
|
12353
|
-
|
|
12706
|
+
parent_id?: string | undefined;
|
|
12354
12707
|
channel_id?: string | undefined;
|
|
12355
12708
|
category_id?: string | undefined;
|
|
12356
12709
|
category_name?: string | undefined;
|
|
@@ -12402,7 +12755,7 @@ export declare const ChannelDescList: {
|
|
|
12402
12755
|
display_names?: string[] | undefined;
|
|
12403
12756
|
} & {
|
|
12404
12757
|
clan_id?: string | undefined;
|
|
12405
|
-
|
|
12758
|
+
parent_id?: string | undefined;
|
|
12406
12759
|
channel_id?: string | undefined;
|
|
12407
12760
|
category_id?: string | undefined;
|
|
12408
12761
|
category_name?: string | undefined;
|
|
@@ -12474,7 +12827,7 @@ export declare const ChannelDescList: {
|
|
|
12474
12827
|
display_names?: (string[] & string[] & { [K_10 in Exclude<keyof I["channeldesc"][number]["display_names"], keyof string[]>]: never; }) | undefined;
|
|
12475
12828
|
} & { [K_11 in Exclude<keyof I["channeldesc"][number], keyof ChannelDescription>]: never; })[] & { [K_12 in Exclude<keyof I["channeldesc"], keyof {
|
|
12476
12829
|
clan_id?: string | undefined;
|
|
12477
|
-
|
|
12830
|
+
parent_id?: string | undefined;
|
|
12478
12831
|
channel_id?: string | undefined;
|
|
12479
12832
|
category_id?: string | undefined;
|
|
12480
12833
|
category_name?: string | undefined;
|
|
@@ -12533,7 +12886,7 @@ export declare const ChannelDescList: {
|
|
|
12533
12886
|
fromPartial<I_1 extends {
|
|
12534
12887
|
channeldesc?: {
|
|
12535
12888
|
clan_id?: string | undefined;
|
|
12536
|
-
|
|
12889
|
+
parent_id?: string | undefined;
|
|
12537
12890
|
channel_id?: string | undefined;
|
|
12538
12891
|
category_id?: string | undefined;
|
|
12539
12892
|
category_name?: string | undefined;
|
|
@@ -12591,7 +12944,7 @@ export declare const ChannelDescList: {
|
|
|
12591
12944
|
} & {
|
|
12592
12945
|
channeldesc?: ({
|
|
12593
12946
|
clan_id?: string | undefined;
|
|
12594
|
-
|
|
12947
|
+
parent_id?: string | undefined;
|
|
12595
12948
|
channel_id?: string | undefined;
|
|
12596
12949
|
category_id?: string | undefined;
|
|
12597
12950
|
category_name?: string | undefined;
|
|
@@ -12643,7 +12996,7 @@ export declare const ChannelDescList: {
|
|
|
12643
12996
|
display_names?: string[] | undefined;
|
|
12644
12997
|
}[] & ({
|
|
12645
12998
|
clan_id?: string | undefined;
|
|
12646
|
-
|
|
12999
|
+
parent_id?: string | undefined;
|
|
12647
13000
|
channel_id?: string | undefined;
|
|
12648
13001
|
category_id?: string | undefined;
|
|
12649
13002
|
category_name?: string | undefined;
|
|
@@ -12695,7 +13048,7 @@ export declare const ChannelDescList: {
|
|
|
12695
13048
|
display_names?: string[] | undefined;
|
|
12696
13049
|
} & {
|
|
12697
13050
|
clan_id?: string | undefined;
|
|
12698
|
-
|
|
13051
|
+
parent_id?: string | undefined;
|
|
12699
13052
|
channel_id?: string | undefined;
|
|
12700
13053
|
category_id?: string | undefined;
|
|
12701
13054
|
category_name?: string | undefined;
|
|
@@ -12767,7 +13120,7 @@ export declare const ChannelDescList: {
|
|
|
12767
13120
|
display_names?: (string[] & string[] & { [K_24 in Exclude<keyof I_1["channeldesc"][number]["display_names"], keyof string[]>]: never; }) | undefined;
|
|
12768
13121
|
} & { [K_25 in Exclude<keyof I_1["channeldesc"][number], keyof ChannelDescription>]: never; })[] & { [K_26 in Exclude<keyof I_1["channeldesc"], keyof {
|
|
12769
13122
|
clan_id?: string | undefined;
|
|
12770
|
-
|
|
13123
|
+
parent_id?: string | undefined;
|
|
12771
13124
|
channel_id?: string | undefined;
|
|
12772
13125
|
category_id?: string | undefined;
|
|
12773
13126
|
category_name?: string | undefined;
|
|
@@ -12919,7 +13272,7 @@ export declare const CreateChannelDescRequest: {
|
|
|
12919
13272
|
toJSON(message: CreateChannelDescRequest): unknown;
|
|
12920
13273
|
create<I extends {
|
|
12921
13274
|
clan_id?: string | undefined;
|
|
12922
|
-
|
|
13275
|
+
parent_id?: string | undefined;
|
|
12923
13276
|
channel_id?: string | undefined;
|
|
12924
13277
|
category_id?: string | undefined;
|
|
12925
13278
|
type?: number | undefined;
|
|
@@ -12929,7 +13282,7 @@ export declare const CreateChannelDescRequest: {
|
|
|
12929
13282
|
app_url?: string | undefined;
|
|
12930
13283
|
} & {
|
|
12931
13284
|
clan_id?: string | undefined;
|
|
12932
|
-
|
|
13285
|
+
parent_id?: string | undefined;
|
|
12933
13286
|
channel_id?: string | undefined;
|
|
12934
13287
|
category_id?: string | undefined;
|
|
12935
13288
|
type?: number | undefined;
|
|
@@ -12940,7 +13293,7 @@ export declare const CreateChannelDescRequest: {
|
|
|
12940
13293
|
} & { [K_1 in Exclude<keyof I, keyof CreateChannelDescRequest>]: never; }>(base?: I | undefined): CreateChannelDescRequest;
|
|
12941
13294
|
fromPartial<I_1 extends {
|
|
12942
13295
|
clan_id?: string | undefined;
|
|
12943
|
-
|
|
13296
|
+
parent_id?: string | undefined;
|
|
12944
13297
|
channel_id?: string | undefined;
|
|
12945
13298
|
category_id?: string | undefined;
|
|
12946
13299
|
type?: number | undefined;
|
|
@@ -12950,7 +13303,7 @@ export declare const CreateChannelDescRequest: {
|
|
|
12950
13303
|
app_url?: string | undefined;
|
|
12951
13304
|
} & {
|
|
12952
13305
|
clan_id?: string | undefined;
|
|
12953
|
-
|
|
13306
|
+
parent_id?: string | undefined;
|
|
12954
13307
|
channel_id?: string | undefined;
|
|
12955
13308
|
category_id?: string | undefined;
|
|
12956
13309
|
type?: number | undefined;
|
|
@@ -14024,7 +14377,7 @@ export declare const HashtagDmList: {
|
|
|
14024
14377
|
meeting_code?: string | undefined;
|
|
14025
14378
|
type?: number | undefined;
|
|
14026
14379
|
channel_private?: number | undefined;
|
|
14027
|
-
|
|
14380
|
+
parent_id?: string | undefined;
|
|
14028
14381
|
}[] | undefined;
|
|
14029
14382
|
} & {
|
|
14030
14383
|
hashtag_dm?: ({
|
|
@@ -14035,7 +14388,7 @@ export declare const HashtagDmList: {
|
|
|
14035
14388
|
meeting_code?: string | undefined;
|
|
14036
14389
|
type?: number | undefined;
|
|
14037
14390
|
channel_private?: number | undefined;
|
|
14038
|
-
|
|
14391
|
+
parent_id?: string | undefined;
|
|
14039
14392
|
}[] & ({
|
|
14040
14393
|
channel_id?: string | undefined;
|
|
14041
14394
|
channel_label?: string | undefined;
|
|
@@ -14044,7 +14397,7 @@ export declare const HashtagDmList: {
|
|
|
14044
14397
|
meeting_code?: string | undefined;
|
|
14045
14398
|
type?: number | undefined;
|
|
14046
14399
|
channel_private?: number | undefined;
|
|
14047
|
-
|
|
14400
|
+
parent_id?: string | undefined;
|
|
14048
14401
|
} & {
|
|
14049
14402
|
channel_id?: string | undefined;
|
|
14050
14403
|
channel_label?: string | undefined;
|
|
@@ -14053,7 +14406,7 @@ export declare const HashtagDmList: {
|
|
|
14053
14406
|
meeting_code?: string | undefined;
|
|
14054
14407
|
type?: number | undefined;
|
|
14055
14408
|
channel_private?: number | undefined;
|
|
14056
|
-
|
|
14409
|
+
parent_id?: string | undefined;
|
|
14057
14410
|
} & { [K in Exclude<keyof I["hashtag_dm"][number], keyof HashtagDm>]: never; })[] & { [K_1 in Exclude<keyof I["hashtag_dm"], keyof {
|
|
14058
14411
|
channel_id?: string | undefined;
|
|
14059
14412
|
channel_label?: string | undefined;
|
|
@@ -14062,7 +14415,7 @@ export declare const HashtagDmList: {
|
|
|
14062
14415
|
meeting_code?: string | undefined;
|
|
14063
14416
|
type?: number | undefined;
|
|
14064
14417
|
channel_private?: number | undefined;
|
|
14065
|
-
|
|
14418
|
+
parent_id?: string | undefined;
|
|
14066
14419
|
}[]>]: never; }) | undefined;
|
|
14067
14420
|
} & { [K_2 in Exclude<keyof I, "hashtag_dm">]: never; }>(base?: I | undefined): HashtagDmList;
|
|
14068
14421
|
fromPartial<I_1 extends {
|
|
@@ -14074,7 +14427,7 @@ export declare const HashtagDmList: {
|
|
|
14074
14427
|
meeting_code?: string | undefined;
|
|
14075
14428
|
type?: number | undefined;
|
|
14076
14429
|
channel_private?: number | undefined;
|
|
14077
|
-
|
|
14430
|
+
parent_id?: string | undefined;
|
|
14078
14431
|
}[] | undefined;
|
|
14079
14432
|
} & {
|
|
14080
14433
|
hashtag_dm?: ({
|
|
@@ -14085,7 +14438,7 @@ export declare const HashtagDmList: {
|
|
|
14085
14438
|
meeting_code?: string | undefined;
|
|
14086
14439
|
type?: number | undefined;
|
|
14087
14440
|
channel_private?: number | undefined;
|
|
14088
|
-
|
|
14441
|
+
parent_id?: string | undefined;
|
|
14089
14442
|
}[] & ({
|
|
14090
14443
|
channel_id?: string | undefined;
|
|
14091
14444
|
channel_label?: string | undefined;
|
|
@@ -14094,7 +14447,7 @@ export declare const HashtagDmList: {
|
|
|
14094
14447
|
meeting_code?: string | undefined;
|
|
14095
14448
|
type?: number | undefined;
|
|
14096
14449
|
channel_private?: number | undefined;
|
|
14097
|
-
|
|
14450
|
+
parent_id?: string | undefined;
|
|
14098
14451
|
} & {
|
|
14099
14452
|
channel_id?: string | undefined;
|
|
14100
14453
|
channel_label?: string | undefined;
|
|
@@ -14103,7 +14456,7 @@ export declare const HashtagDmList: {
|
|
|
14103
14456
|
meeting_code?: string | undefined;
|
|
14104
14457
|
type?: number | undefined;
|
|
14105
14458
|
channel_private?: number | undefined;
|
|
14106
|
-
|
|
14459
|
+
parent_id?: string | undefined;
|
|
14107
14460
|
} & { [K_3 in Exclude<keyof I_1["hashtag_dm"][number], keyof HashtagDm>]: never; })[] & { [K_4 in Exclude<keyof I_1["hashtag_dm"], keyof {
|
|
14108
14461
|
channel_id?: string | undefined;
|
|
14109
14462
|
channel_label?: string | undefined;
|
|
@@ -14112,7 +14465,7 @@ export declare const HashtagDmList: {
|
|
|
14112
14465
|
meeting_code?: string | undefined;
|
|
14113
14466
|
type?: number | undefined;
|
|
14114
14467
|
channel_private?: number | undefined;
|
|
14115
|
-
|
|
14468
|
+
parent_id?: string | undefined;
|
|
14116
14469
|
}[]>]: never; }) | undefined;
|
|
14117
14470
|
} & { [K_5 in Exclude<keyof I_1, "hashtag_dm">]: never; }>(object: I_1): HashtagDmList;
|
|
14118
14471
|
};
|
|
@@ -14129,7 +14482,7 @@ export declare const HashtagDm: {
|
|
|
14129
14482
|
meeting_code?: string | undefined;
|
|
14130
14483
|
type?: number | undefined;
|
|
14131
14484
|
channel_private?: number | undefined;
|
|
14132
|
-
|
|
14485
|
+
parent_id?: string | undefined;
|
|
14133
14486
|
} & {
|
|
14134
14487
|
channel_id?: string | undefined;
|
|
14135
14488
|
channel_label?: string | undefined;
|
|
@@ -14138,7 +14491,7 @@ export declare const HashtagDm: {
|
|
|
14138
14491
|
meeting_code?: string | undefined;
|
|
14139
14492
|
type?: number | undefined;
|
|
14140
14493
|
channel_private?: number | undefined;
|
|
14141
|
-
|
|
14494
|
+
parent_id?: string | undefined;
|
|
14142
14495
|
} & { [K in Exclude<keyof I, keyof HashtagDm>]: never; }>(base?: I | undefined): HashtagDm;
|
|
14143
14496
|
fromPartial<I_1 extends {
|
|
14144
14497
|
channel_id?: string | undefined;
|
|
@@ -14148,7 +14501,7 @@ export declare const HashtagDm: {
|
|
|
14148
14501
|
meeting_code?: string | undefined;
|
|
14149
14502
|
type?: number | undefined;
|
|
14150
14503
|
channel_private?: number | undefined;
|
|
14151
|
-
|
|
14504
|
+
parent_id?: string | undefined;
|
|
14152
14505
|
} & {
|
|
14153
14506
|
channel_id?: string | undefined;
|
|
14154
14507
|
channel_label?: string | undefined;
|
|
@@ -14157,7 +14510,7 @@ export declare const HashtagDm: {
|
|
|
14157
14510
|
meeting_code?: string | undefined;
|
|
14158
14511
|
type?: number | undefined;
|
|
14159
14512
|
channel_private?: number | undefined;
|
|
14160
|
-
|
|
14513
|
+
parent_id?: string | undefined;
|
|
14161
14514
|
} & { [K_1 in Exclude<keyof I_1, keyof HashtagDm>]: never; }>(object: I_1): HashtagDm;
|
|
14162
14515
|
};
|
|
14163
14516
|
export declare const NotificationChannelCategorySettingList: {
|
|
@@ -16098,6 +16451,7 @@ export declare const SearchMessageDocument: {
|
|
|
16098
16451
|
filetype?: string | undefined;
|
|
16099
16452
|
width?: number | undefined;
|
|
16100
16453
|
height?: number | undefined;
|
|
16454
|
+
thumbnail?: string | undefined;
|
|
16101
16455
|
}[] | undefined;
|
|
16102
16456
|
references?: string | undefined;
|
|
16103
16457
|
create_time?: string | undefined;
|
|
@@ -16123,6 +16477,7 @@ export declare const SearchMessageDocument: {
|
|
|
16123
16477
|
filetype?: string | undefined;
|
|
16124
16478
|
width?: number | undefined;
|
|
16125
16479
|
height?: number | undefined;
|
|
16480
|
+
thumbnail?: string | undefined;
|
|
16126
16481
|
}[] & ({
|
|
16127
16482
|
filename?: string | undefined;
|
|
16128
16483
|
size?: number | undefined;
|
|
@@ -16130,6 +16485,7 @@ export declare const SearchMessageDocument: {
|
|
|
16130
16485
|
filetype?: string | undefined;
|
|
16131
16486
|
width?: number | undefined;
|
|
16132
16487
|
height?: number | undefined;
|
|
16488
|
+
thumbnail?: string | undefined;
|
|
16133
16489
|
} & {
|
|
16134
16490
|
filename?: string | undefined;
|
|
16135
16491
|
size?: number | undefined;
|
|
@@ -16137,6 +16493,7 @@ export declare const SearchMessageDocument: {
|
|
|
16137
16493
|
filetype?: string | undefined;
|
|
16138
16494
|
width?: number | undefined;
|
|
16139
16495
|
height?: number | undefined;
|
|
16496
|
+
thumbnail?: string | undefined;
|
|
16140
16497
|
} & { [K in Exclude<keyof I["attachments"][number], keyof MessageAttachment>]: never; })[] & { [K_1 in Exclude<keyof I["attachments"], keyof {
|
|
16141
16498
|
filename?: string | undefined;
|
|
16142
16499
|
size?: number | undefined;
|
|
@@ -16144,6 +16501,7 @@ export declare const SearchMessageDocument: {
|
|
|
16144
16501
|
filetype?: string | undefined;
|
|
16145
16502
|
width?: number | undefined;
|
|
16146
16503
|
height?: number | undefined;
|
|
16504
|
+
thumbnail?: string | undefined;
|
|
16147
16505
|
}[]>]: never; }) | undefined;
|
|
16148
16506
|
references?: string | undefined;
|
|
16149
16507
|
create_time?: string | undefined;
|
|
@@ -16170,6 +16528,7 @@ export declare const SearchMessageDocument: {
|
|
|
16170
16528
|
filetype?: string | undefined;
|
|
16171
16529
|
width?: number | undefined;
|
|
16172
16530
|
height?: number | undefined;
|
|
16531
|
+
thumbnail?: string | undefined;
|
|
16173
16532
|
}[] | undefined;
|
|
16174
16533
|
references?: string | undefined;
|
|
16175
16534
|
create_time?: string | undefined;
|
|
@@ -16195,6 +16554,7 @@ export declare const SearchMessageDocument: {
|
|
|
16195
16554
|
filetype?: string | undefined;
|
|
16196
16555
|
width?: number | undefined;
|
|
16197
16556
|
height?: number | undefined;
|
|
16557
|
+
thumbnail?: string | undefined;
|
|
16198
16558
|
}[] & ({
|
|
16199
16559
|
filename?: string | undefined;
|
|
16200
16560
|
size?: number | undefined;
|
|
@@ -16202,6 +16562,7 @@ export declare const SearchMessageDocument: {
|
|
|
16202
16562
|
filetype?: string | undefined;
|
|
16203
16563
|
width?: number | undefined;
|
|
16204
16564
|
height?: number | undefined;
|
|
16565
|
+
thumbnail?: string | undefined;
|
|
16205
16566
|
} & {
|
|
16206
16567
|
filename?: string | undefined;
|
|
16207
16568
|
size?: number | undefined;
|
|
@@ -16209,6 +16570,7 @@ export declare const SearchMessageDocument: {
|
|
|
16209
16570
|
filetype?: string | undefined;
|
|
16210
16571
|
width?: number | undefined;
|
|
16211
16572
|
height?: number | undefined;
|
|
16573
|
+
thumbnail?: string | undefined;
|
|
16212
16574
|
} & { [K_3 in Exclude<keyof I_1["attachments"][number], keyof MessageAttachment>]: never; })[] & { [K_4 in Exclude<keyof I_1["attachments"], keyof {
|
|
16213
16575
|
filename?: string | undefined;
|
|
16214
16576
|
size?: number | undefined;
|
|
@@ -16216,6 +16578,7 @@ export declare const SearchMessageDocument: {
|
|
|
16216
16578
|
filetype?: string | undefined;
|
|
16217
16579
|
width?: number | undefined;
|
|
16218
16580
|
height?: number | undefined;
|
|
16581
|
+
thumbnail?: string | undefined;
|
|
16219
16582
|
}[]>]: never; }) | undefined;
|
|
16220
16583
|
references?: string | undefined;
|
|
16221
16584
|
create_time?: string | undefined;
|
|
@@ -16249,6 +16612,7 @@ export declare const SearchMessageResponse: {
|
|
|
16249
16612
|
filetype?: string | undefined;
|
|
16250
16613
|
width?: number | undefined;
|
|
16251
16614
|
height?: number | undefined;
|
|
16615
|
+
thumbnail?: string | undefined;
|
|
16252
16616
|
}[] | undefined;
|
|
16253
16617
|
references?: string | undefined;
|
|
16254
16618
|
create_time?: string | undefined;
|
|
@@ -16277,6 +16641,7 @@ export declare const SearchMessageResponse: {
|
|
|
16277
16641
|
filetype?: string | undefined;
|
|
16278
16642
|
width?: number | undefined;
|
|
16279
16643
|
height?: number | undefined;
|
|
16644
|
+
thumbnail?: string | undefined;
|
|
16280
16645
|
}[] | undefined;
|
|
16281
16646
|
references?: string | undefined;
|
|
16282
16647
|
create_time?: string | undefined;
|
|
@@ -16302,6 +16667,7 @@ export declare const SearchMessageResponse: {
|
|
|
16302
16667
|
filetype?: string | undefined;
|
|
16303
16668
|
width?: number | undefined;
|
|
16304
16669
|
height?: number | undefined;
|
|
16670
|
+
thumbnail?: string | undefined;
|
|
16305
16671
|
}[] | undefined;
|
|
16306
16672
|
references?: string | undefined;
|
|
16307
16673
|
create_time?: string | undefined;
|
|
@@ -16327,6 +16693,7 @@ export declare const SearchMessageResponse: {
|
|
|
16327
16693
|
filetype?: string | undefined;
|
|
16328
16694
|
width?: number | undefined;
|
|
16329
16695
|
height?: number | undefined;
|
|
16696
|
+
thumbnail?: string | undefined;
|
|
16330
16697
|
}[] & ({
|
|
16331
16698
|
filename?: string | undefined;
|
|
16332
16699
|
size?: number | undefined;
|
|
@@ -16334,6 +16701,7 @@ export declare const SearchMessageResponse: {
|
|
|
16334
16701
|
filetype?: string | undefined;
|
|
16335
16702
|
width?: number | undefined;
|
|
16336
16703
|
height?: number | undefined;
|
|
16704
|
+
thumbnail?: string | undefined;
|
|
16337
16705
|
} & {
|
|
16338
16706
|
filename?: string | undefined;
|
|
16339
16707
|
size?: number | undefined;
|
|
@@ -16341,6 +16709,7 @@ export declare const SearchMessageResponse: {
|
|
|
16341
16709
|
filetype?: string | undefined;
|
|
16342
16710
|
width?: number | undefined;
|
|
16343
16711
|
height?: number | undefined;
|
|
16712
|
+
thumbnail?: string | undefined;
|
|
16344
16713
|
} & { [K in Exclude<keyof I["messages"][number]["attachments"][number], keyof MessageAttachment>]: never; })[] & { [K_1 in Exclude<keyof I["messages"][number]["attachments"], keyof {
|
|
16345
16714
|
filename?: string | undefined;
|
|
16346
16715
|
size?: number | undefined;
|
|
@@ -16348,6 +16717,7 @@ export declare const SearchMessageResponse: {
|
|
|
16348
16717
|
filetype?: string | undefined;
|
|
16349
16718
|
width?: number | undefined;
|
|
16350
16719
|
height?: number | undefined;
|
|
16720
|
+
thumbnail?: string | undefined;
|
|
16351
16721
|
}[]>]: never; }) | undefined;
|
|
16352
16722
|
references?: string | undefined;
|
|
16353
16723
|
create_time?: string | undefined;
|
|
@@ -16373,6 +16743,7 @@ export declare const SearchMessageResponse: {
|
|
|
16373
16743
|
filetype?: string | undefined;
|
|
16374
16744
|
width?: number | undefined;
|
|
16375
16745
|
height?: number | undefined;
|
|
16746
|
+
thumbnail?: string | undefined;
|
|
16376
16747
|
}[] | undefined;
|
|
16377
16748
|
references?: string | undefined;
|
|
16378
16749
|
create_time?: string | undefined;
|
|
@@ -16402,6 +16773,7 @@ export declare const SearchMessageResponse: {
|
|
|
16402
16773
|
filetype?: string | undefined;
|
|
16403
16774
|
width?: number | undefined;
|
|
16404
16775
|
height?: number | undefined;
|
|
16776
|
+
thumbnail?: string | undefined;
|
|
16405
16777
|
}[] | undefined;
|
|
16406
16778
|
references?: string | undefined;
|
|
16407
16779
|
create_time?: string | undefined;
|
|
@@ -16430,6 +16802,7 @@ export declare const SearchMessageResponse: {
|
|
|
16430
16802
|
filetype?: string | undefined;
|
|
16431
16803
|
width?: number | undefined;
|
|
16432
16804
|
height?: number | undefined;
|
|
16805
|
+
thumbnail?: string | undefined;
|
|
16433
16806
|
}[] | undefined;
|
|
16434
16807
|
references?: string | undefined;
|
|
16435
16808
|
create_time?: string | undefined;
|
|
@@ -16455,6 +16828,7 @@ export declare const SearchMessageResponse: {
|
|
|
16455
16828
|
filetype?: string | undefined;
|
|
16456
16829
|
width?: number | undefined;
|
|
16457
16830
|
height?: number | undefined;
|
|
16831
|
+
thumbnail?: string | undefined;
|
|
16458
16832
|
}[] | undefined;
|
|
16459
16833
|
references?: string | undefined;
|
|
16460
16834
|
create_time?: string | undefined;
|
|
@@ -16480,6 +16854,7 @@ export declare const SearchMessageResponse: {
|
|
|
16480
16854
|
filetype?: string | undefined;
|
|
16481
16855
|
width?: number | undefined;
|
|
16482
16856
|
height?: number | undefined;
|
|
16857
|
+
thumbnail?: string | undefined;
|
|
16483
16858
|
}[] & ({
|
|
16484
16859
|
filename?: string | undefined;
|
|
16485
16860
|
size?: number | undefined;
|
|
@@ -16487,6 +16862,7 @@ export declare const SearchMessageResponse: {
|
|
|
16487
16862
|
filetype?: string | undefined;
|
|
16488
16863
|
width?: number | undefined;
|
|
16489
16864
|
height?: number | undefined;
|
|
16865
|
+
thumbnail?: string | undefined;
|
|
16490
16866
|
} & {
|
|
16491
16867
|
filename?: string | undefined;
|
|
16492
16868
|
size?: number | undefined;
|
|
@@ -16494,6 +16870,7 @@ export declare const SearchMessageResponse: {
|
|
|
16494
16870
|
filetype?: string | undefined;
|
|
16495
16871
|
width?: number | undefined;
|
|
16496
16872
|
height?: number | undefined;
|
|
16873
|
+
thumbnail?: string | undefined;
|
|
16497
16874
|
} & { [K_5 in Exclude<keyof I_1["messages"][number]["attachments"][number], keyof MessageAttachment>]: never; })[] & { [K_6 in Exclude<keyof I_1["messages"][number]["attachments"], keyof {
|
|
16498
16875
|
filename?: string | undefined;
|
|
16499
16876
|
size?: number | undefined;
|
|
@@ -16501,6 +16878,7 @@ export declare const SearchMessageResponse: {
|
|
|
16501
16878
|
filetype?: string | undefined;
|
|
16502
16879
|
width?: number | undefined;
|
|
16503
16880
|
height?: number | undefined;
|
|
16881
|
+
thumbnail?: string | undefined;
|
|
16504
16882
|
}[]>]: never; }) | undefined;
|
|
16505
16883
|
references?: string | undefined;
|
|
16506
16884
|
create_time?: string | undefined;
|
|
@@ -16526,6 +16904,7 @@ export declare const SearchMessageResponse: {
|
|
|
16526
16904
|
filetype?: string | undefined;
|
|
16527
16905
|
width?: number | undefined;
|
|
16528
16906
|
height?: number | undefined;
|
|
16907
|
+
thumbnail?: string | undefined;
|
|
16529
16908
|
}[] | undefined;
|
|
16530
16909
|
references?: string | undefined;
|
|
16531
16910
|
create_time?: string | undefined;
|
|
@@ -18698,6 +19077,7 @@ export declare const AllUserClans: {
|
|
|
18698
19077
|
join_time?: Date | undefined;
|
|
18699
19078
|
is_mobile?: boolean | undefined;
|
|
18700
19079
|
dob?: Date | undefined;
|
|
19080
|
+
mezon_id?: string | undefined;
|
|
18701
19081
|
}[] | undefined;
|
|
18702
19082
|
} & {
|
|
18703
19083
|
users?: ({
|
|
@@ -18722,6 +19102,7 @@ export declare const AllUserClans: {
|
|
|
18722
19102
|
join_time?: Date | undefined;
|
|
18723
19103
|
is_mobile?: boolean | undefined;
|
|
18724
19104
|
dob?: Date | undefined;
|
|
19105
|
+
mezon_id?: string | undefined;
|
|
18725
19106
|
}[] & ({
|
|
18726
19107
|
id?: string | undefined;
|
|
18727
19108
|
username?: string | undefined;
|
|
@@ -18744,6 +19125,7 @@ export declare const AllUserClans: {
|
|
|
18744
19125
|
join_time?: Date | undefined;
|
|
18745
19126
|
is_mobile?: boolean | undefined;
|
|
18746
19127
|
dob?: Date | undefined;
|
|
19128
|
+
mezon_id?: string | undefined;
|
|
18747
19129
|
} & {
|
|
18748
19130
|
id?: string | undefined;
|
|
18749
19131
|
username?: string | undefined;
|
|
@@ -18766,6 +19148,7 @@ export declare const AllUserClans: {
|
|
|
18766
19148
|
join_time?: Date | undefined;
|
|
18767
19149
|
is_mobile?: boolean | undefined;
|
|
18768
19150
|
dob?: Date | undefined;
|
|
19151
|
+
mezon_id?: string | undefined;
|
|
18769
19152
|
} & { [K in Exclude<keyof I["users"][number], keyof User>]: never; })[] & { [K_1 in Exclude<keyof I["users"], keyof {
|
|
18770
19153
|
id?: string | undefined;
|
|
18771
19154
|
username?: string | undefined;
|
|
@@ -18788,6 +19171,7 @@ export declare const AllUserClans: {
|
|
|
18788
19171
|
join_time?: Date | undefined;
|
|
18789
19172
|
is_mobile?: boolean | undefined;
|
|
18790
19173
|
dob?: Date | undefined;
|
|
19174
|
+
mezon_id?: string | undefined;
|
|
18791
19175
|
}[]>]: never; }) | undefined;
|
|
18792
19176
|
} & { [K_2 in Exclude<keyof I, "users">]: never; }>(base?: I | undefined): AllUserClans;
|
|
18793
19177
|
fromPartial<I_1 extends {
|
|
@@ -18813,6 +19197,7 @@ export declare const AllUserClans: {
|
|
|
18813
19197
|
join_time?: Date | undefined;
|
|
18814
19198
|
is_mobile?: boolean | undefined;
|
|
18815
19199
|
dob?: Date | undefined;
|
|
19200
|
+
mezon_id?: string | undefined;
|
|
18816
19201
|
}[] | undefined;
|
|
18817
19202
|
} & {
|
|
18818
19203
|
users?: ({
|
|
@@ -18837,6 +19222,7 @@ export declare const AllUserClans: {
|
|
|
18837
19222
|
join_time?: Date | undefined;
|
|
18838
19223
|
is_mobile?: boolean | undefined;
|
|
18839
19224
|
dob?: Date | undefined;
|
|
19225
|
+
mezon_id?: string | undefined;
|
|
18840
19226
|
}[] & ({
|
|
18841
19227
|
id?: string | undefined;
|
|
18842
19228
|
username?: string | undefined;
|
|
@@ -18859,6 +19245,7 @@ export declare const AllUserClans: {
|
|
|
18859
19245
|
join_time?: Date | undefined;
|
|
18860
19246
|
is_mobile?: boolean | undefined;
|
|
18861
19247
|
dob?: Date | undefined;
|
|
19248
|
+
mezon_id?: string | undefined;
|
|
18862
19249
|
} & {
|
|
18863
19250
|
id?: string | undefined;
|
|
18864
19251
|
username?: string | undefined;
|
|
@@ -18881,6 +19268,7 @@ export declare const AllUserClans: {
|
|
|
18881
19268
|
join_time?: Date | undefined;
|
|
18882
19269
|
is_mobile?: boolean | undefined;
|
|
18883
19270
|
dob?: Date | undefined;
|
|
19271
|
+
mezon_id?: string | undefined;
|
|
18884
19272
|
} & { [K_3 in Exclude<keyof I_1["users"][number], keyof User>]: never; })[] & { [K_4 in Exclude<keyof I_1["users"], keyof {
|
|
18885
19273
|
id?: string | undefined;
|
|
18886
19274
|
username?: string | undefined;
|
|
@@ -18903,6 +19291,7 @@ export declare const AllUserClans: {
|
|
|
18903
19291
|
join_time?: Date | undefined;
|
|
18904
19292
|
is_mobile?: boolean | undefined;
|
|
18905
19293
|
dob?: Date | undefined;
|
|
19294
|
+
mezon_id?: string | undefined;
|
|
18906
19295
|
}[]>]: never; }) | undefined;
|
|
18907
19296
|
} & { [K_5 in Exclude<keyof I_1, "users">]: never; }>(object: I_1): AllUserClans;
|
|
18908
19297
|
};
|
|
@@ -20350,6 +20739,7 @@ export declare const EditChannelCanvasRequest: {
|
|
|
20350
20739
|
title?: string | undefined;
|
|
20351
20740
|
content?: string | undefined;
|
|
20352
20741
|
is_default?: boolean | undefined;
|
|
20742
|
+
status?: number | undefined;
|
|
20353
20743
|
} & {
|
|
20354
20744
|
id?: string | undefined;
|
|
20355
20745
|
channel_id?: string | undefined;
|
|
@@ -20357,6 +20747,7 @@ export declare const EditChannelCanvasRequest: {
|
|
|
20357
20747
|
title?: string | undefined;
|
|
20358
20748
|
content?: string | undefined;
|
|
20359
20749
|
is_default?: boolean | undefined;
|
|
20750
|
+
status?: number | undefined;
|
|
20360
20751
|
} & { [K in Exclude<keyof I, keyof EditChannelCanvasRequest>]: never; }>(base?: I | undefined): EditChannelCanvasRequest;
|
|
20361
20752
|
fromPartial<I_1 extends {
|
|
20362
20753
|
id?: string | undefined;
|
|
@@ -20365,6 +20756,7 @@ export declare const EditChannelCanvasRequest: {
|
|
|
20365
20756
|
title?: string | undefined;
|
|
20366
20757
|
content?: string | undefined;
|
|
20367
20758
|
is_default?: boolean | undefined;
|
|
20759
|
+
status?: number | undefined;
|
|
20368
20760
|
} & {
|
|
20369
20761
|
id?: string | undefined;
|
|
20370
20762
|
channel_id?: string | undefined;
|
|
@@ -20372,6 +20764,7 @@ export declare const EditChannelCanvasRequest: {
|
|
|
20372
20764
|
title?: string | undefined;
|
|
20373
20765
|
content?: string | undefined;
|
|
20374
20766
|
is_default?: boolean | undefined;
|
|
20767
|
+
status?: number | undefined;
|
|
20375
20768
|
} & { [K_1 in Exclude<keyof I_1, keyof EditChannelCanvasRequest>]: never; }>(object: I_1): EditChannelCanvasRequest;
|
|
20376
20769
|
};
|
|
20377
20770
|
export declare const EditChannelCanvasResponse: {
|
|
@@ -20977,14 +21370,18 @@ export declare const ConfirmLoginRequest: {
|
|
|
20977
21370
|
toJSON(message: ConfirmLoginRequest): unknown;
|
|
20978
21371
|
create<I extends {
|
|
20979
21372
|
login_id?: string | undefined;
|
|
21373
|
+
is_remember?: boolean | undefined;
|
|
20980
21374
|
} & {
|
|
20981
21375
|
login_id?: string | undefined;
|
|
20982
|
-
|
|
21376
|
+
is_remember?: boolean | undefined;
|
|
21377
|
+
} & { [K in Exclude<keyof I, keyof ConfirmLoginRequest>]: never; }>(base?: I | undefined): ConfirmLoginRequest;
|
|
20983
21378
|
fromPartial<I_1 extends {
|
|
20984
21379
|
login_id?: string | undefined;
|
|
21380
|
+
is_remember?: boolean | undefined;
|
|
20985
21381
|
} & {
|
|
20986
21382
|
login_id?: string | undefined;
|
|
20987
|
-
|
|
21383
|
+
is_remember?: boolean | undefined;
|
|
21384
|
+
} & { [K_1 in Exclude<keyof I_1, keyof ConfirmLoginRequest>]: never; }>(object: I_1): ConfirmLoginRequest;
|
|
20988
21385
|
};
|
|
20989
21386
|
export declare const SendTokenRequest: {
|
|
20990
21387
|
encode(message: SendTokenRequest, writer?: _m0.Writer): _m0.Writer;
|
|
@@ -22562,6 +22959,7 @@ export declare const ClanWebhookHandlerBody: {
|
|
|
22562
22959
|
filetype?: string | undefined;
|
|
22563
22960
|
width?: number | undefined;
|
|
22564
22961
|
height?: number | undefined;
|
|
22962
|
+
thumbnail?: string | undefined;
|
|
22565
22963
|
}[] | undefined;
|
|
22566
22964
|
} & {
|
|
22567
22965
|
content?: string | undefined;
|
|
@@ -22572,6 +22970,7 @@ export declare const ClanWebhookHandlerBody: {
|
|
|
22572
22970
|
filetype?: string | undefined;
|
|
22573
22971
|
width?: number | undefined;
|
|
22574
22972
|
height?: number | undefined;
|
|
22973
|
+
thumbnail?: string | undefined;
|
|
22575
22974
|
}[] & ({
|
|
22576
22975
|
filename?: string | undefined;
|
|
22577
22976
|
size?: number | undefined;
|
|
@@ -22579,6 +22978,7 @@ export declare const ClanWebhookHandlerBody: {
|
|
|
22579
22978
|
filetype?: string | undefined;
|
|
22580
22979
|
width?: number | undefined;
|
|
22581
22980
|
height?: number | undefined;
|
|
22981
|
+
thumbnail?: string | undefined;
|
|
22582
22982
|
} & {
|
|
22583
22983
|
filename?: string | undefined;
|
|
22584
22984
|
size?: number | undefined;
|
|
@@ -22586,6 +22986,7 @@ export declare const ClanWebhookHandlerBody: {
|
|
|
22586
22986
|
filetype?: string | undefined;
|
|
22587
22987
|
width?: number | undefined;
|
|
22588
22988
|
height?: number | undefined;
|
|
22989
|
+
thumbnail?: string | undefined;
|
|
22589
22990
|
} & { [K in Exclude<keyof I["attachments"][number], keyof MessageAttachment>]: never; })[] & { [K_1 in Exclude<keyof I["attachments"], keyof {
|
|
22590
22991
|
filename?: string | undefined;
|
|
22591
22992
|
size?: number | undefined;
|
|
@@ -22593,6 +22994,7 @@ export declare const ClanWebhookHandlerBody: {
|
|
|
22593
22994
|
filetype?: string | undefined;
|
|
22594
22995
|
width?: number | undefined;
|
|
22595
22996
|
height?: number | undefined;
|
|
22997
|
+
thumbnail?: string | undefined;
|
|
22596
22998
|
}[]>]: never; }) | undefined;
|
|
22597
22999
|
} & { [K_2 in Exclude<keyof I, keyof ClanWebhookHandlerBody>]: never; }>(base?: I | undefined): ClanWebhookHandlerBody;
|
|
22598
23000
|
fromPartial<I_1 extends {
|
|
@@ -22604,6 +23006,7 @@ export declare const ClanWebhookHandlerBody: {
|
|
|
22604
23006
|
filetype?: string | undefined;
|
|
22605
23007
|
width?: number | undefined;
|
|
22606
23008
|
height?: number | undefined;
|
|
23009
|
+
thumbnail?: string | undefined;
|
|
22607
23010
|
}[] | undefined;
|
|
22608
23011
|
} & {
|
|
22609
23012
|
content?: string | undefined;
|
|
@@ -22614,6 +23017,7 @@ export declare const ClanWebhookHandlerBody: {
|
|
|
22614
23017
|
filetype?: string | undefined;
|
|
22615
23018
|
width?: number | undefined;
|
|
22616
23019
|
height?: number | undefined;
|
|
23020
|
+
thumbnail?: string | undefined;
|
|
22617
23021
|
}[] & ({
|
|
22618
23022
|
filename?: string | undefined;
|
|
22619
23023
|
size?: number | undefined;
|
|
@@ -22621,6 +23025,7 @@ export declare const ClanWebhookHandlerBody: {
|
|
|
22621
23025
|
filetype?: string | undefined;
|
|
22622
23026
|
width?: number | undefined;
|
|
22623
23027
|
height?: number | undefined;
|
|
23028
|
+
thumbnail?: string | undefined;
|
|
22624
23029
|
} & {
|
|
22625
23030
|
filename?: string | undefined;
|
|
22626
23031
|
size?: number | undefined;
|
|
@@ -22628,6 +23033,7 @@ export declare const ClanWebhookHandlerBody: {
|
|
|
22628
23033
|
filetype?: string | undefined;
|
|
22629
23034
|
width?: number | undefined;
|
|
22630
23035
|
height?: number | undefined;
|
|
23036
|
+
thumbnail?: string | undefined;
|
|
22631
23037
|
} & { [K_3 in Exclude<keyof I_1["attachments"][number], keyof MessageAttachment>]: never; })[] & { [K_4 in Exclude<keyof I_1["attachments"], keyof {
|
|
22632
23038
|
filename?: string | undefined;
|
|
22633
23039
|
size?: number | undefined;
|
|
@@ -22635,6 +23041,7 @@ export declare const ClanWebhookHandlerBody: {
|
|
|
22635
23041
|
filetype?: string | undefined;
|
|
22636
23042
|
width?: number | undefined;
|
|
22637
23043
|
height?: number | undefined;
|
|
23044
|
+
thumbnail?: string | undefined;
|
|
22638
23045
|
}[]>]: never; }) | undefined;
|
|
22639
23046
|
} & { [K_5 in Exclude<keyof I_1, keyof ClanWebhookHandlerBody>]: never; }>(object: I_1): ClanWebhookHandlerBody;
|
|
22640
23047
|
};
|
|
@@ -22653,6 +23060,7 @@ export declare const ClanWebhookHandlerRequest: {
|
|
|
22653
23060
|
filetype?: string | undefined;
|
|
22654
23061
|
width?: number | undefined;
|
|
22655
23062
|
height?: number | undefined;
|
|
23063
|
+
thumbnail?: string | undefined;
|
|
22656
23064
|
}[] | undefined;
|
|
22657
23065
|
} | undefined;
|
|
22658
23066
|
token?: string | undefined;
|
|
@@ -22667,6 +23075,7 @@ export declare const ClanWebhookHandlerRequest: {
|
|
|
22667
23075
|
filetype?: string | undefined;
|
|
22668
23076
|
width?: number | undefined;
|
|
22669
23077
|
height?: number | undefined;
|
|
23078
|
+
thumbnail?: string | undefined;
|
|
22670
23079
|
}[] | undefined;
|
|
22671
23080
|
} & {
|
|
22672
23081
|
content?: string | undefined;
|
|
@@ -22677,6 +23086,7 @@ export declare const ClanWebhookHandlerRequest: {
|
|
|
22677
23086
|
filetype?: string | undefined;
|
|
22678
23087
|
width?: number | undefined;
|
|
22679
23088
|
height?: number | undefined;
|
|
23089
|
+
thumbnail?: string | undefined;
|
|
22680
23090
|
}[] & ({
|
|
22681
23091
|
filename?: string | undefined;
|
|
22682
23092
|
size?: number | undefined;
|
|
@@ -22684,6 +23094,7 @@ export declare const ClanWebhookHandlerRequest: {
|
|
|
22684
23094
|
filetype?: string | undefined;
|
|
22685
23095
|
width?: number | undefined;
|
|
22686
23096
|
height?: number | undefined;
|
|
23097
|
+
thumbnail?: string | undefined;
|
|
22687
23098
|
} & {
|
|
22688
23099
|
filename?: string | undefined;
|
|
22689
23100
|
size?: number | undefined;
|
|
@@ -22691,6 +23102,7 @@ export declare const ClanWebhookHandlerRequest: {
|
|
|
22691
23102
|
filetype?: string | undefined;
|
|
22692
23103
|
width?: number | undefined;
|
|
22693
23104
|
height?: number | undefined;
|
|
23105
|
+
thumbnail?: string | undefined;
|
|
22694
23106
|
} & { [K in Exclude<keyof I["body"]["attachments"][number], keyof MessageAttachment>]: never; })[] & { [K_1 in Exclude<keyof I["body"]["attachments"], keyof {
|
|
22695
23107
|
filename?: string | undefined;
|
|
22696
23108
|
size?: number | undefined;
|
|
@@ -22698,6 +23110,7 @@ export declare const ClanWebhookHandlerRequest: {
|
|
|
22698
23110
|
filetype?: string | undefined;
|
|
22699
23111
|
width?: number | undefined;
|
|
22700
23112
|
height?: number | undefined;
|
|
23113
|
+
thumbnail?: string | undefined;
|
|
22701
23114
|
}[]>]: never; }) | undefined;
|
|
22702
23115
|
} & { [K_2 in Exclude<keyof I["body"], keyof ClanWebhookHandlerBody>]: never; }) | undefined;
|
|
22703
23116
|
token?: string | undefined;
|
|
@@ -22713,6 +23126,7 @@ export declare const ClanWebhookHandlerRequest: {
|
|
|
22713
23126
|
filetype?: string | undefined;
|
|
22714
23127
|
width?: number | undefined;
|
|
22715
23128
|
height?: number | undefined;
|
|
23129
|
+
thumbnail?: string | undefined;
|
|
22716
23130
|
}[] | undefined;
|
|
22717
23131
|
} | undefined;
|
|
22718
23132
|
token?: string | undefined;
|
|
@@ -22727,6 +23141,7 @@ export declare const ClanWebhookHandlerRequest: {
|
|
|
22727
23141
|
filetype?: string | undefined;
|
|
22728
23142
|
width?: number | undefined;
|
|
22729
23143
|
height?: number | undefined;
|
|
23144
|
+
thumbnail?: string | undefined;
|
|
22730
23145
|
}[] | undefined;
|
|
22731
23146
|
} & {
|
|
22732
23147
|
content?: string | undefined;
|
|
@@ -22737,6 +23152,7 @@ export declare const ClanWebhookHandlerRequest: {
|
|
|
22737
23152
|
filetype?: string | undefined;
|
|
22738
23153
|
width?: number | undefined;
|
|
22739
23154
|
height?: number | undefined;
|
|
23155
|
+
thumbnail?: string | undefined;
|
|
22740
23156
|
}[] & ({
|
|
22741
23157
|
filename?: string | undefined;
|
|
22742
23158
|
size?: number | undefined;
|
|
@@ -22744,6 +23160,7 @@ export declare const ClanWebhookHandlerRequest: {
|
|
|
22744
23160
|
filetype?: string | undefined;
|
|
22745
23161
|
width?: number | undefined;
|
|
22746
23162
|
height?: number | undefined;
|
|
23163
|
+
thumbnail?: string | undefined;
|
|
22747
23164
|
} & {
|
|
22748
23165
|
filename?: string | undefined;
|
|
22749
23166
|
size?: number | undefined;
|
|
@@ -22751,6 +23168,7 @@ export declare const ClanWebhookHandlerRequest: {
|
|
|
22751
23168
|
filetype?: string | undefined;
|
|
22752
23169
|
width?: number | undefined;
|
|
22753
23170
|
height?: number | undefined;
|
|
23171
|
+
thumbnail?: string | undefined;
|
|
22754
23172
|
} & { [K_4 in Exclude<keyof I_1["body"]["attachments"][number], keyof MessageAttachment>]: never; })[] & { [K_5 in Exclude<keyof I_1["body"]["attachments"], keyof {
|
|
22755
23173
|
filename?: string | undefined;
|
|
22756
23174
|
size?: number | undefined;
|
|
@@ -22758,6 +23176,7 @@ export declare const ClanWebhookHandlerRequest: {
|
|
|
22758
23176
|
filetype?: string | undefined;
|
|
22759
23177
|
width?: number | undefined;
|
|
22760
23178
|
height?: number | undefined;
|
|
23179
|
+
thumbnail?: string | undefined;
|
|
22761
23180
|
}[]>]: never; }) | undefined;
|
|
22762
23181
|
} & { [K_6 in Exclude<keyof I_1["body"], keyof ClanWebhookHandlerBody>]: never; }) | undefined;
|
|
22763
23182
|
token?: string | undefined;
|
|
@@ -24884,6 +25303,82 @@ export declare const MezonOauthClientList: {
|
|
|
24884
25303
|
}[]>]: never; }) | undefined;
|
|
24885
25304
|
} & { [K_23 in Exclude<keyof I_1, "listMezonOauthClient">]: never; }>(object: I_1): MezonOauthClientList;
|
|
24886
25305
|
};
|
|
25306
|
+
export declare const GetMezonOauthClientRequest: {
|
|
25307
|
+
encode(message: GetMezonOauthClientRequest, writer?: _m0.Writer): _m0.Writer;
|
|
25308
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): GetMezonOauthClientRequest;
|
|
25309
|
+
fromJSON(object: any): GetMezonOauthClientRequest;
|
|
25310
|
+
toJSON(message: GetMezonOauthClientRequest): unknown;
|
|
25311
|
+
create<I extends {
|
|
25312
|
+
client_id?: string | undefined;
|
|
25313
|
+
client_name?: string | undefined;
|
|
25314
|
+
} & {
|
|
25315
|
+
client_id?: string | undefined;
|
|
25316
|
+
client_name?: string | undefined;
|
|
25317
|
+
} & { [K in Exclude<keyof I, keyof GetMezonOauthClientRequest>]: never; }>(base?: I | undefined): GetMezonOauthClientRequest;
|
|
25318
|
+
fromPartial<I_1 extends {
|
|
25319
|
+
client_id?: string | undefined;
|
|
25320
|
+
client_name?: string | undefined;
|
|
25321
|
+
} & {
|
|
25322
|
+
client_id?: string | undefined;
|
|
25323
|
+
client_name?: string | undefined;
|
|
25324
|
+
} & { [K_1 in Exclude<keyof I_1, keyof GetMezonOauthClientRequest>]: never; }>(object: I_1): GetMezonOauthClientRequest;
|
|
25325
|
+
};
|
|
25326
|
+
export declare const SearchThreadRequest: {
|
|
25327
|
+
encode(message: SearchThreadRequest, writer?: _m0.Writer): _m0.Writer;
|
|
25328
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): SearchThreadRequest;
|
|
25329
|
+
fromJSON(object: any): SearchThreadRequest;
|
|
25330
|
+
toJSON(message: SearchThreadRequest): unknown;
|
|
25331
|
+
create<I extends {
|
|
25332
|
+
clan_id?: string | undefined;
|
|
25333
|
+
channel_id?: string | undefined;
|
|
25334
|
+
label?: string | undefined;
|
|
25335
|
+
} & {
|
|
25336
|
+
clan_id?: string | undefined;
|
|
25337
|
+
channel_id?: string | undefined;
|
|
25338
|
+
label?: string | undefined;
|
|
25339
|
+
} & { [K in Exclude<keyof I, keyof SearchThreadRequest>]: never; }>(base?: I | undefined): SearchThreadRequest;
|
|
25340
|
+
fromPartial<I_1 extends {
|
|
25341
|
+
clan_id?: string | undefined;
|
|
25342
|
+
channel_id?: string | undefined;
|
|
25343
|
+
label?: string | undefined;
|
|
25344
|
+
} & {
|
|
25345
|
+
clan_id?: string | undefined;
|
|
25346
|
+
channel_id?: string | undefined;
|
|
25347
|
+
label?: string | undefined;
|
|
25348
|
+
} & { [K_1 in Exclude<keyof I_1, keyof SearchThreadRequest>]: never; }>(object: I_1): SearchThreadRequest;
|
|
25349
|
+
};
|
|
25350
|
+
export declare const GenerateHashChannelAppsRequest: {
|
|
25351
|
+
encode(message: GenerateHashChannelAppsRequest, writer?: _m0.Writer): _m0.Writer;
|
|
25352
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): GenerateHashChannelAppsRequest;
|
|
25353
|
+
fromJSON(object: any): GenerateHashChannelAppsRequest;
|
|
25354
|
+
toJSON(message: GenerateHashChannelAppsRequest): unknown;
|
|
25355
|
+
create<I extends {
|
|
25356
|
+
app_id?: string | undefined;
|
|
25357
|
+
} & {
|
|
25358
|
+
app_id?: string | undefined;
|
|
25359
|
+
} & { [K in Exclude<keyof I, "app_id">]: never; }>(base?: I | undefined): GenerateHashChannelAppsRequest;
|
|
25360
|
+
fromPartial<I_1 extends {
|
|
25361
|
+
app_id?: string | undefined;
|
|
25362
|
+
} & {
|
|
25363
|
+
app_id?: string | undefined;
|
|
25364
|
+
} & { [K_1 in Exclude<keyof I_1, "app_id">]: never; }>(object: I_1): GenerateHashChannelAppsRequest;
|
|
25365
|
+
};
|
|
25366
|
+
export declare const GenerateHashChannelAppsResponse: {
|
|
25367
|
+
encode(message: GenerateHashChannelAppsResponse, writer?: _m0.Writer): _m0.Writer;
|
|
25368
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): GenerateHashChannelAppsResponse;
|
|
25369
|
+
fromJSON(object: any): GenerateHashChannelAppsResponse;
|
|
25370
|
+
toJSON(message: GenerateHashChannelAppsResponse): unknown;
|
|
25371
|
+
create<I extends {
|
|
25372
|
+
web_app_data?: string | undefined;
|
|
25373
|
+
} & {
|
|
25374
|
+
web_app_data?: string | undefined;
|
|
25375
|
+
} & { [K in Exclude<keyof I, "web_app_data">]: never; }>(base?: I | undefined): GenerateHashChannelAppsResponse;
|
|
25376
|
+
fromPartial<I_1 extends {
|
|
25377
|
+
web_app_data?: string | undefined;
|
|
25378
|
+
} & {
|
|
25379
|
+
web_app_data?: string | undefined;
|
|
25380
|
+
} & { [K_1 in Exclude<keyof I_1, "web_app_data">]: never; }>(object: I_1): GenerateHashChannelAppsResponse;
|
|
25381
|
+
};
|
|
24887
25382
|
type Builtin = Date | Function | Uint8Array | string | number | boolean | undefined;
|
|
24888
25383
|
export type DeepPartial<T> = T extends Builtin ? T : T extends globalThis.Array<infer U> ? globalThis.Array<DeepPartial<U>> : T extends ReadonlyArray<infer U> ? ReadonlyArray<DeepPartial<U>> : T extends {} ? {
|
|
24889
25384
|
[K in keyof T]?: DeepPartial<T[K]>;
|