mezon-sdk 2.8.44 → 2.8.46
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 +578 -9
- package/dist/cjs/api/api.js +3778 -38
- package/dist/cjs/api/api.js.map +1 -1
- package/dist/cjs/interfaces/client.d.ts +3 -3
- package/dist/cjs/interfaces/client.js.map +1 -1
- package/dist/cjs/mezon-client/client/MezonClientCore.d.ts +1 -2
- package/dist/cjs/mezon-client/client/MezonClientCore.js +1 -4
- package/dist/cjs/mezon-client/client/MezonClientCore.js.map +1 -1
- package/dist/cjs/rtapi/realtime.d.ts +69 -17
- package/dist/cjs/rtapi/realtime.js +512 -119
- package/dist/cjs/rtapi/realtime.js.map +1 -1
- package/dist/cjs/socket.d.ts +1 -1
- package/dist/cjs/socket.js +100 -24
- package/dist/cjs/socket.js.map +1 -1
- package/dist/esm/api/api.d.ts +578 -9
- package/dist/esm/api/api.js +3711 -28
- package/dist/esm/api/api.js.map +1 -1
- package/dist/esm/interfaces/client.d.ts +3 -3
- package/dist/esm/interfaces/client.js.map +1 -1
- package/dist/esm/mezon-client/client/MezonClientCore.d.ts +1 -2
- package/dist/esm/mezon-client/client/MezonClientCore.js +1 -4
- package/dist/esm/mezon-client/client/MezonClientCore.js.map +1 -1
- package/dist/esm/rtapi/realtime.d.ts +69 -17
- package/dist/esm/rtapi/realtime.js +504 -115
- package/dist/esm/rtapi/realtime.js.map +1 -1
- package/dist/esm/socket.d.ts +1 -1
- package/dist/esm/socket.js +101 -25
- package/dist/esm/socket.js.map +1 -1
- package/dist/tsconfig.esm.tsbuildinfo +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +2 -2
package/dist/cjs/api/api.d.ts
CHANGED
|
@@ -43,6 +43,14 @@ export declare enum Operator {
|
|
|
43
43
|
}
|
|
44
44
|
export declare function operatorFromJSON(object: any): Operator;
|
|
45
45
|
export declare function operatorToJSON(object: Operator): string;
|
|
46
|
+
/** Poll type: SINGLE = one choice, MULTIPLE = multiple choices. */
|
|
47
|
+
export declare enum PollType {
|
|
48
|
+
SINGLE = 0,
|
|
49
|
+
MULTIPLE = 1,
|
|
50
|
+
UNRECOGNIZED = -1
|
|
51
|
+
}
|
|
52
|
+
export declare function pollTypeFromJSON(object: any): PollType;
|
|
53
|
+
export declare function pollTypeToJSON(object: PollType): string;
|
|
46
54
|
/** A user with additional account details. Always the current user. */
|
|
47
55
|
export interface Account {
|
|
48
56
|
/** The user object. */
|
|
@@ -630,6 +638,19 @@ export interface ListClanUsersRequest {
|
|
|
630
638
|
/** The clan ID to list from. */
|
|
631
639
|
clan_id: string;
|
|
632
640
|
}
|
|
641
|
+
/** List clan members' custom status strings (user_status) by clan. */
|
|
642
|
+
export interface ListClanUsersStatusRequest {
|
|
643
|
+
/** The clan ID to list from. */
|
|
644
|
+
clan_id: string;
|
|
645
|
+
}
|
|
646
|
+
export interface ClanUserStatusEntry {
|
|
647
|
+
user_id: string;
|
|
648
|
+
user_status: string;
|
|
649
|
+
}
|
|
650
|
+
/** User id and custom status text for members of a clan. */
|
|
651
|
+
export interface ClanUserStatusList {
|
|
652
|
+
clan_user_statuses: ClanUserStatusEntry[];
|
|
653
|
+
}
|
|
633
654
|
/** Get a list of unexpired notifications. */
|
|
634
655
|
export interface ListNotificationsRequest {
|
|
635
656
|
/** The number of notifications to get. Between 1 and 100. */
|
|
@@ -747,6 +768,8 @@ export interface Session {
|
|
|
747
768
|
id_token: string;
|
|
748
769
|
/** ws_url */
|
|
749
770
|
ws_url: string;
|
|
771
|
+
/** session id */
|
|
772
|
+
session_id: string;
|
|
750
773
|
}
|
|
751
774
|
/** Update username */
|
|
752
775
|
export interface UpdateUsernameRequest {
|
|
@@ -1240,6 +1263,8 @@ export interface ListChannelDescsRequest {
|
|
|
1240
1263
|
channel_type: number;
|
|
1241
1264
|
/** is mobile */
|
|
1242
1265
|
is_mobile: boolean;
|
|
1266
|
+
/** page */
|
|
1267
|
+
page: number;
|
|
1243
1268
|
}
|
|
1244
1269
|
/** List channel description detail */
|
|
1245
1270
|
export interface ListChannelDetailRequest {
|
|
@@ -1375,6 +1400,20 @@ export interface LeaveThreadRequest {
|
|
|
1375
1400
|
/** The channel ID to leave. */
|
|
1376
1401
|
channel_id: string;
|
|
1377
1402
|
}
|
|
1403
|
+
/** Archive channel/thread inactive (archived). */
|
|
1404
|
+
export interface ArchiveChannelRequest {
|
|
1405
|
+
clan_id: string;
|
|
1406
|
+
/** Channel (thread) ID to inactive. */
|
|
1407
|
+
channel_id: string;
|
|
1408
|
+
}
|
|
1409
|
+
export interface ListArchivedChannelDescsRequest {
|
|
1410
|
+
/** The clan of this list archived channels */
|
|
1411
|
+
clan_id: string;
|
|
1412
|
+
}
|
|
1413
|
+
export interface ListArchivedChannelDescsResponse {
|
|
1414
|
+
/** A list of channel. */
|
|
1415
|
+
channeldesc: ChannelDescription[];
|
|
1416
|
+
}
|
|
1378
1417
|
/** Role record */
|
|
1379
1418
|
export interface Role {
|
|
1380
1419
|
/** Role id */
|
|
@@ -1781,6 +1820,22 @@ export interface UploadAttachment {
|
|
|
1781
1820
|
/** The url */
|
|
1782
1821
|
url: string;
|
|
1783
1822
|
}
|
|
1823
|
+
export interface MultipartUploadAttachment {
|
|
1824
|
+
/** The name of file that need to upload */
|
|
1825
|
+
filename: string;
|
|
1826
|
+
/** The url */
|
|
1827
|
+
urls: string[];
|
|
1828
|
+
/** the upload id */
|
|
1829
|
+
upload_id: string;
|
|
1830
|
+
}
|
|
1831
|
+
export interface MultipartUploadAttachmentPart {
|
|
1832
|
+
part_number: number;
|
|
1833
|
+
e_tag: string;
|
|
1834
|
+
}
|
|
1835
|
+
export interface MultipartUploadAttachmentFinishRequest {
|
|
1836
|
+
upload_id: string;
|
|
1837
|
+
parts: MultipartUploadAttachmentPart[];
|
|
1838
|
+
}
|
|
1784
1839
|
export interface SearchMessageRequest {
|
|
1785
1840
|
filters: FilterParam[];
|
|
1786
1841
|
/** Offset value */
|
|
@@ -2002,6 +2057,14 @@ export interface CheckDuplicateClanNameRequest {
|
|
|
2002
2057
|
export interface CheckDuplicateClanNameResponse {
|
|
2003
2058
|
is_duplicate: boolean;
|
|
2004
2059
|
}
|
|
2060
|
+
export interface CheckDuplicateNameRequest {
|
|
2061
|
+
name: string;
|
|
2062
|
+
type: number;
|
|
2063
|
+
condition_id: string;
|
|
2064
|
+
}
|
|
2065
|
+
export interface CheckDuplicateNameResponse {
|
|
2066
|
+
is_duplicate: boolean;
|
|
2067
|
+
}
|
|
2005
2068
|
export interface ClanStickerAddRequest {
|
|
2006
2069
|
source: string;
|
|
2007
2070
|
shortname: string;
|
|
@@ -3117,11 +3180,22 @@ export interface MessageRefList {
|
|
|
3117
3180
|
export interface MessageReactionList {
|
|
3118
3181
|
reactions: MessageReaction[];
|
|
3119
3182
|
}
|
|
3120
|
-
export interface
|
|
3183
|
+
export interface ListChannelBadgeCountRequest {
|
|
3121
3184
|
clan_id: string;
|
|
3185
|
+
limit: number;
|
|
3186
|
+
page: number;
|
|
3187
|
+
}
|
|
3188
|
+
export interface ListChannelBadgeCountResponse {
|
|
3189
|
+
channeldesc: ChannelDescription[];
|
|
3190
|
+
total_count: number;
|
|
3191
|
+
}
|
|
3192
|
+
export interface ClanBadgeCount {
|
|
3193
|
+
clan_id: string;
|
|
3194
|
+
badge: number;
|
|
3195
|
+
has_unread: boolean;
|
|
3122
3196
|
}
|
|
3123
3197
|
export interface ListClanBadgeCountResponse {
|
|
3124
|
-
|
|
3198
|
+
list_badge: ClanBadgeCount[];
|
|
3125
3199
|
}
|
|
3126
3200
|
export interface ClanDiscover {
|
|
3127
3201
|
clan_id: string;
|
|
@@ -3163,6 +3237,8 @@ export interface ParticipantInfo {
|
|
|
3163
3237
|
sid: string;
|
|
3164
3238
|
identity: string;
|
|
3165
3239
|
state: ParticipantInfo_State;
|
|
3240
|
+
is_publisher: boolean;
|
|
3241
|
+
kind: ParticipantInfo_Kind;
|
|
3166
3242
|
}
|
|
3167
3243
|
export declare enum ParticipantInfo_State {
|
|
3168
3244
|
/** JOINING - websocket' connected, but not offered yet */
|
|
@@ -3207,6 +3283,179 @@ export declare enum ParticipantInfo_KindDetail {
|
|
|
3207
3283
|
}
|
|
3208
3284
|
export declare function participantInfo_KindDetailFromJSON(object: any): ParticipantInfo_KindDetail;
|
|
3209
3285
|
export declare function participantInfo_KindDetailToJSON(object: ParticipantInfo_KindDetail): string;
|
|
3286
|
+
/** Channel Timeline Attachment */
|
|
3287
|
+
export interface ChannelTimelineAttachment {
|
|
3288
|
+
id: string;
|
|
3289
|
+
file_name: string;
|
|
3290
|
+
file_url: string;
|
|
3291
|
+
file_type: string;
|
|
3292
|
+
file_size: string;
|
|
3293
|
+
width: number;
|
|
3294
|
+
height: number;
|
|
3295
|
+
thumbnail: string;
|
|
3296
|
+
duration: number;
|
|
3297
|
+
message_id: string;
|
|
3298
|
+
}
|
|
3299
|
+
/** Channel Timeline Attachment List */
|
|
3300
|
+
export interface ListChannelTimelineAttachment {
|
|
3301
|
+
attachments: ChannelTimelineAttachment[];
|
|
3302
|
+
}
|
|
3303
|
+
/** Channel Timeline */
|
|
3304
|
+
export interface ChannelTimeline {
|
|
3305
|
+
id: string;
|
|
3306
|
+
clan_id: string;
|
|
3307
|
+
channel_id: string;
|
|
3308
|
+
start_time_seconds: number;
|
|
3309
|
+
title: string;
|
|
3310
|
+
description: string;
|
|
3311
|
+
end_time_seconds: number;
|
|
3312
|
+
location: string;
|
|
3313
|
+
status: number;
|
|
3314
|
+
creator_id: string;
|
|
3315
|
+
create_time_seconds: number;
|
|
3316
|
+
update_time_seconds: number;
|
|
3317
|
+
type: number;
|
|
3318
|
+
attachments: Uint8Array;
|
|
3319
|
+
preview_imgs: Uint8Array;
|
|
3320
|
+
}
|
|
3321
|
+
/** List Channel Timeline Request */
|
|
3322
|
+
export interface ListChannelTimelineRequest {
|
|
3323
|
+
clan_id: string;
|
|
3324
|
+
channel_id: string;
|
|
3325
|
+
year: number;
|
|
3326
|
+
start_time: number;
|
|
3327
|
+
end_time: number;
|
|
3328
|
+
limit: number;
|
|
3329
|
+
}
|
|
3330
|
+
/** List Channel Timeline Response */
|
|
3331
|
+
export interface ListChannelTimelineResponse {
|
|
3332
|
+
events: ChannelTimeline[];
|
|
3333
|
+
}
|
|
3334
|
+
/** Create Channel Timeline Request */
|
|
3335
|
+
export interface CreateChannelTimelineRequest {
|
|
3336
|
+
clan_id: string;
|
|
3337
|
+
channel_id: string;
|
|
3338
|
+
start_time_seconds: number;
|
|
3339
|
+
title: string;
|
|
3340
|
+
description: string;
|
|
3341
|
+
end_time_seconds: number;
|
|
3342
|
+
location: string;
|
|
3343
|
+
type: number;
|
|
3344
|
+
attachments: ChannelTimelineAttachment[];
|
|
3345
|
+
}
|
|
3346
|
+
export interface CreateChannelTimelineResponse {
|
|
3347
|
+
event: ChannelTimeline | undefined;
|
|
3348
|
+
}
|
|
3349
|
+
/** Update Channel Timeline Request */
|
|
3350
|
+
export interface UpdateChannelTimelineRequest {
|
|
3351
|
+
clan_id: string;
|
|
3352
|
+
channel_id: string;
|
|
3353
|
+
id: string;
|
|
3354
|
+
start_time_seconds: number;
|
|
3355
|
+
title: string;
|
|
3356
|
+
description: string;
|
|
3357
|
+
location: string;
|
|
3358
|
+
type: number;
|
|
3359
|
+
attachments: ChannelTimelineAttachment[];
|
|
3360
|
+
}
|
|
3361
|
+
export interface UpdateChannelTimelineResponse {
|
|
3362
|
+
event: ChannelTimeline | undefined;
|
|
3363
|
+
}
|
|
3364
|
+
export interface ChannelTimelineDetailRequest {
|
|
3365
|
+
clan_id: string;
|
|
3366
|
+
channel_id: string;
|
|
3367
|
+
id: string;
|
|
3368
|
+
start_time_seconds: number;
|
|
3369
|
+
}
|
|
3370
|
+
export interface ChannelTimelineDetailResponse {
|
|
3371
|
+
event: ChannelTimeline | undefined;
|
|
3372
|
+
}
|
|
3373
|
+
export interface ListMutedChannelRequest {
|
|
3374
|
+
clan_id: string;
|
|
3375
|
+
}
|
|
3376
|
+
export interface MutedChannelList {
|
|
3377
|
+
muted_list: string[];
|
|
3378
|
+
}
|
|
3379
|
+
export interface NotificationBatchRequest {
|
|
3380
|
+
notifications: {
|
|
3381
|
+
[key: string]: NotificationList;
|
|
3382
|
+
};
|
|
3383
|
+
}
|
|
3384
|
+
export interface NotificationBatchRequest_NotificationsEntry {
|
|
3385
|
+
key: string;
|
|
3386
|
+
value: NotificationList | undefined;
|
|
3387
|
+
}
|
|
3388
|
+
export interface CreatePollRequest {
|
|
3389
|
+
channel_id: string;
|
|
3390
|
+
clan_id: string;
|
|
3391
|
+
question: string;
|
|
3392
|
+
answers: string[];
|
|
3393
|
+
expire_hours: number;
|
|
3394
|
+
type: PollType;
|
|
3395
|
+
}
|
|
3396
|
+
export interface CreatePollResponse {
|
|
3397
|
+
poll_id: string;
|
|
3398
|
+
message_id: string;
|
|
3399
|
+
question: string;
|
|
3400
|
+
answers: PollAnswer[];
|
|
3401
|
+
answer_counts: number[];
|
|
3402
|
+
exp: string;
|
|
3403
|
+
is_closed: boolean;
|
|
3404
|
+
creator_id: string;
|
|
3405
|
+
type: PollType;
|
|
3406
|
+
total_votes: number;
|
|
3407
|
+
}
|
|
3408
|
+
export interface VotePollRequest {
|
|
3409
|
+
poll_id: string;
|
|
3410
|
+
message_id: string;
|
|
3411
|
+
channel_id: string;
|
|
3412
|
+
answer_indices: number[];
|
|
3413
|
+
}
|
|
3414
|
+
export interface VotePollResponse {
|
|
3415
|
+
my_answer_indices: number[];
|
|
3416
|
+
}
|
|
3417
|
+
export interface ClosePollRequest {
|
|
3418
|
+
poll_id: string;
|
|
3419
|
+
message_id: string;
|
|
3420
|
+
channel_id: string;
|
|
3421
|
+
}
|
|
3422
|
+
export interface GetPollRequest {
|
|
3423
|
+
poll_id: string;
|
|
3424
|
+
message_id: string;
|
|
3425
|
+
channel_id: string;
|
|
3426
|
+
}
|
|
3427
|
+
export interface PollAnswer {
|
|
3428
|
+
index: number;
|
|
3429
|
+
label: string;
|
|
3430
|
+
}
|
|
3431
|
+
export interface PollVoterDetail {
|
|
3432
|
+
answer_index: number;
|
|
3433
|
+
user_ids: string[];
|
|
3434
|
+
}
|
|
3435
|
+
export interface GetPollResponse {
|
|
3436
|
+
poll_id: string;
|
|
3437
|
+
message_id: string;
|
|
3438
|
+
question: string;
|
|
3439
|
+
answers: PollAnswer[];
|
|
3440
|
+
answer_counts: number[];
|
|
3441
|
+
exp: string;
|
|
3442
|
+
is_closed: boolean;
|
|
3443
|
+
creator_id: string;
|
|
3444
|
+
type: PollType;
|
|
3445
|
+
total_votes: number;
|
|
3446
|
+
voter_details: PollVoterDetail[];
|
|
3447
|
+
}
|
|
3448
|
+
export interface ListUserOnlineRequest {
|
|
3449
|
+
clan_id: string;
|
|
3450
|
+
limit: number;
|
|
3451
|
+
page: number;
|
|
3452
|
+
}
|
|
3453
|
+
export interface ListUserOnlineResponse {
|
|
3454
|
+
users: User[];
|
|
3455
|
+
total_count: number;
|
|
3456
|
+
}
|
|
3457
|
+
export interface NoParams {
|
|
3458
|
+
}
|
|
3210
3459
|
export declare const Account: {
|
|
3211
3460
|
encode(message: Account, writer?: _m0.Writer): _m0.Writer;
|
|
3212
3461
|
decode(input: _m0.Reader | Uint8Array, length?: number): Account;
|
|
@@ -3583,6 +3832,30 @@ export declare const ListClanUsersRequest: {
|
|
|
3583
3832
|
create<I extends Exact<DeepPartial<ListClanUsersRequest>, I>>(base?: I): ListClanUsersRequest;
|
|
3584
3833
|
fromPartial<I extends Exact<DeepPartial<ListClanUsersRequest>, I>>(object: I): ListClanUsersRequest;
|
|
3585
3834
|
};
|
|
3835
|
+
export declare const ListClanUsersStatusRequest: {
|
|
3836
|
+
encode(message: ListClanUsersStatusRequest, writer?: _m0.Writer): _m0.Writer;
|
|
3837
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): ListClanUsersStatusRequest;
|
|
3838
|
+
fromJSON(object: any): ListClanUsersStatusRequest;
|
|
3839
|
+
toJSON(message: ListClanUsersStatusRequest): unknown;
|
|
3840
|
+
create<I extends Exact<DeepPartial<ListClanUsersStatusRequest>, I>>(base?: I): ListClanUsersStatusRequest;
|
|
3841
|
+
fromPartial<I extends Exact<DeepPartial<ListClanUsersStatusRequest>, I>>(object: I): ListClanUsersStatusRequest;
|
|
3842
|
+
};
|
|
3843
|
+
export declare const ClanUserStatusEntry: {
|
|
3844
|
+
encode(message: ClanUserStatusEntry, writer?: _m0.Writer): _m0.Writer;
|
|
3845
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): ClanUserStatusEntry;
|
|
3846
|
+
fromJSON(object: any): ClanUserStatusEntry;
|
|
3847
|
+
toJSON(message: ClanUserStatusEntry): unknown;
|
|
3848
|
+
create<I extends Exact<DeepPartial<ClanUserStatusEntry>, I>>(base?: I): ClanUserStatusEntry;
|
|
3849
|
+
fromPartial<I extends Exact<DeepPartial<ClanUserStatusEntry>, I>>(object: I): ClanUserStatusEntry;
|
|
3850
|
+
};
|
|
3851
|
+
export declare const ClanUserStatusList: {
|
|
3852
|
+
encode(message: ClanUserStatusList, writer?: _m0.Writer): _m0.Writer;
|
|
3853
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): ClanUserStatusList;
|
|
3854
|
+
fromJSON(object: any): ClanUserStatusList;
|
|
3855
|
+
toJSON(message: ClanUserStatusList): unknown;
|
|
3856
|
+
create<I extends Exact<DeepPartial<ClanUserStatusList>, I>>(base?: I): ClanUserStatusList;
|
|
3857
|
+
fromPartial<I extends Exact<DeepPartial<ClanUserStatusList>, I>>(object: I): ClanUserStatusList;
|
|
3858
|
+
};
|
|
3586
3859
|
export declare const ListNotificationsRequest: {
|
|
3587
3860
|
encode(message: ListNotificationsRequest, writer?: _m0.Writer): _m0.Writer;
|
|
3588
3861
|
decode(input: _m0.Reader | Uint8Array, length?: number): ListNotificationsRequest;
|
|
@@ -4111,6 +4384,30 @@ export declare const LeaveThreadRequest: {
|
|
|
4111
4384
|
create<I extends Exact<DeepPartial<LeaveThreadRequest>, I>>(base?: I): LeaveThreadRequest;
|
|
4112
4385
|
fromPartial<I extends Exact<DeepPartial<LeaveThreadRequest>, I>>(object: I): LeaveThreadRequest;
|
|
4113
4386
|
};
|
|
4387
|
+
export declare const ArchiveChannelRequest: {
|
|
4388
|
+
encode(message: ArchiveChannelRequest, writer?: _m0.Writer): _m0.Writer;
|
|
4389
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): ArchiveChannelRequest;
|
|
4390
|
+
fromJSON(object: any): ArchiveChannelRequest;
|
|
4391
|
+
toJSON(message: ArchiveChannelRequest): unknown;
|
|
4392
|
+
create<I extends Exact<DeepPartial<ArchiveChannelRequest>, I>>(base?: I): ArchiveChannelRequest;
|
|
4393
|
+
fromPartial<I extends Exact<DeepPartial<ArchiveChannelRequest>, I>>(object: I): ArchiveChannelRequest;
|
|
4394
|
+
};
|
|
4395
|
+
export declare const ListArchivedChannelDescsRequest: {
|
|
4396
|
+
encode(message: ListArchivedChannelDescsRequest, writer?: _m0.Writer): _m0.Writer;
|
|
4397
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): ListArchivedChannelDescsRequest;
|
|
4398
|
+
fromJSON(object: any): ListArchivedChannelDescsRequest;
|
|
4399
|
+
toJSON(message: ListArchivedChannelDescsRequest): unknown;
|
|
4400
|
+
create<I extends Exact<DeepPartial<ListArchivedChannelDescsRequest>, I>>(base?: I): ListArchivedChannelDescsRequest;
|
|
4401
|
+
fromPartial<I extends Exact<DeepPartial<ListArchivedChannelDescsRequest>, I>>(object: I): ListArchivedChannelDescsRequest;
|
|
4402
|
+
};
|
|
4403
|
+
export declare const ListArchivedChannelDescsResponse: {
|
|
4404
|
+
encode(message: ListArchivedChannelDescsResponse, writer?: _m0.Writer): _m0.Writer;
|
|
4405
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): ListArchivedChannelDescsResponse;
|
|
4406
|
+
fromJSON(object: any): ListArchivedChannelDescsResponse;
|
|
4407
|
+
toJSON(message: ListArchivedChannelDescsResponse): unknown;
|
|
4408
|
+
create<I extends Exact<DeepPartial<ListArchivedChannelDescsResponse>, I>>(base?: I): ListArchivedChannelDescsResponse;
|
|
4409
|
+
fromPartial<I extends Exact<DeepPartial<ListArchivedChannelDescsResponse>, I>>(object: I): ListArchivedChannelDescsResponse;
|
|
4410
|
+
};
|
|
4114
4411
|
export declare const Role: {
|
|
4115
4412
|
encode(message: Role, writer?: _m0.Writer): _m0.Writer;
|
|
4116
4413
|
decode(input: _m0.Reader | Uint8Array, length?: number): Role;
|
|
@@ -4439,6 +4736,30 @@ export declare const UploadAttachment: {
|
|
|
4439
4736
|
create<I extends Exact<DeepPartial<UploadAttachment>, I>>(base?: I): UploadAttachment;
|
|
4440
4737
|
fromPartial<I extends Exact<DeepPartial<UploadAttachment>, I>>(object: I): UploadAttachment;
|
|
4441
4738
|
};
|
|
4739
|
+
export declare const MultipartUploadAttachment: {
|
|
4740
|
+
encode(message: MultipartUploadAttachment, writer?: _m0.Writer): _m0.Writer;
|
|
4741
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): MultipartUploadAttachment;
|
|
4742
|
+
fromJSON(object: any): MultipartUploadAttachment;
|
|
4743
|
+
toJSON(message: MultipartUploadAttachment): unknown;
|
|
4744
|
+
create<I extends Exact<DeepPartial<MultipartUploadAttachment>, I>>(base?: I): MultipartUploadAttachment;
|
|
4745
|
+
fromPartial<I extends Exact<DeepPartial<MultipartUploadAttachment>, I>>(object: I): MultipartUploadAttachment;
|
|
4746
|
+
};
|
|
4747
|
+
export declare const MultipartUploadAttachmentPart: {
|
|
4748
|
+
encode(message: MultipartUploadAttachmentPart, writer?: _m0.Writer): _m0.Writer;
|
|
4749
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): MultipartUploadAttachmentPart;
|
|
4750
|
+
fromJSON(object: any): MultipartUploadAttachmentPart;
|
|
4751
|
+
toJSON(message: MultipartUploadAttachmentPart): unknown;
|
|
4752
|
+
create<I extends Exact<DeepPartial<MultipartUploadAttachmentPart>, I>>(base?: I): MultipartUploadAttachmentPart;
|
|
4753
|
+
fromPartial<I extends Exact<DeepPartial<MultipartUploadAttachmentPart>, I>>(object: I): MultipartUploadAttachmentPart;
|
|
4754
|
+
};
|
|
4755
|
+
export declare const MultipartUploadAttachmentFinishRequest: {
|
|
4756
|
+
encode(message: MultipartUploadAttachmentFinishRequest, writer?: _m0.Writer): _m0.Writer;
|
|
4757
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): MultipartUploadAttachmentFinishRequest;
|
|
4758
|
+
fromJSON(object: any): MultipartUploadAttachmentFinishRequest;
|
|
4759
|
+
toJSON(message: MultipartUploadAttachmentFinishRequest): unknown;
|
|
4760
|
+
create<I extends Exact<DeepPartial<MultipartUploadAttachmentFinishRequest>, I>>(base?: I): MultipartUploadAttachmentFinishRequest;
|
|
4761
|
+
fromPartial<I extends Exact<DeepPartial<MultipartUploadAttachmentFinishRequest>, I>>(object: I): MultipartUploadAttachmentFinishRequest;
|
|
4762
|
+
};
|
|
4442
4763
|
export declare const SearchMessageRequest: {
|
|
4443
4764
|
encode(message: SearchMessageRequest, writer?: _m0.Writer): _m0.Writer;
|
|
4444
4765
|
decode(input: _m0.Reader | Uint8Array, length?: number): SearchMessageRequest;
|
|
@@ -4655,6 +4976,22 @@ export declare const CheckDuplicateClanNameResponse: {
|
|
|
4655
4976
|
create<I extends Exact<DeepPartial<CheckDuplicateClanNameResponse>, I>>(base?: I): CheckDuplicateClanNameResponse;
|
|
4656
4977
|
fromPartial<I extends Exact<DeepPartial<CheckDuplicateClanNameResponse>, I>>(object: I): CheckDuplicateClanNameResponse;
|
|
4657
4978
|
};
|
|
4979
|
+
export declare const CheckDuplicateNameRequest: {
|
|
4980
|
+
encode(message: CheckDuplicateNameRequest, writer?: _m0.Writer): _m0.Writer;
|
|
4981
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): CheckDuplicateNameRequest;
|
|
4982
|
+
fromJSON(object: any): CheckDuplicateNameRequest;
|
|
4983
|
+
toJSON(message: CheckDuplicateNameRequest): unknown;
|
|
4984
|
+
create<I extends Exact<DeepPartial<CheckDuplicateNameRequest>, I>>(base?: I): CheckDuplicateNameRequest;
|
|
4985
|
+
fromPartial<I extends Exact<DeepPartial<CheckDuplicateNameRequest>, I>>(object: I): CheckDuplicateNameRequest;
|
|
4986
|
+
};
|
|
4987
|
+
export declare const CheckDuplicateNameResponse: {
|
|
4988
|
+
encode(message: CheckDuplicateNameResponse, writer?: _m0.Writer): _m0.Writer;
|
|
4989
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): CheckDuplicateNameResponse;
|
|
4990
|
+
fromJSON(object: any): CheckDuplicateNameResponse;
|
|
4991
|
+
toJSON(message: CheckDuplicateNameResponse): unknown;
|
|
4992
|
+
create<I extends Exact<DeepPartial<CheckDuplicateNameResponse>, I>>(base?: I): CheckDuplicateNameResponse;
|
|
4993
|
+
fromPartial<I extends Exact<DeepPartial<CheckDuplicateNameResponse>, I>>(object: I): CheckDuplicateNameResponse;
|
|
4994
|
+
};
|
|
4658
4995
|
export declare const ClanStickerAddRequest: {
|
|
4659
4996
|
encode(message: ClanStickerAddRequest, writer?: _m0.Writer): _m0.Writer;
|
|
4660
4997
|
decode(input: _m0.Reader | Uint8Array, length?: number): ClanStickerAddRequest;
|
|
@@ -5767,13 +6104,29 @@ export declare const MessageReactionList: {
|
|
|
5767
6104
|
create<I extends Exact<DeepPartial<MessageReactionList>, I>>(base?: I): MessageReactionList;
|
|
5768
6105
|
fromPartial<I extends Exact<DeepPartial<MessageReactionList>, I>>(object: I): MessageReactionList;
|
|
5769
6106
|
};
|
|
5770
|
-
export declare const
|
|
5771
|
-
encode(message:
|
|
5772
|
-
decode(input: _m0.Reader | Uint8Array, length?: number):
|
|
5773
|
-
fromJSON(object: any):
|
|
5774
|
-
toJSON(message:
|
|
5775
|
-
create<I extends Exact<DeepPartial<
|
|
5776
|
-
fromPartial<I extends Exact<DeepPartial<
|
|
6107
|
+
export declare const ListChannelBadgeCountRequest: {
|
|
6108
|
+
encode(message: ListChannelBadgeCountRequest, writer?: _m0.Writer): _m0.Writer;
|
|
6109
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): ListChannelBadgeCountRequest;
|
|
6110
|
+
fromJSON(object: any): ListChannelBadgeCountRequest;
|
|
6111
|
+
toJSON(message: ListChannelBadgeCountRequest): unknown;
|
|
6112
|
+
create<I extends Exact<DeepPartial<ListChannelBadgeCountRequest>, I>>(base?: I): ListChannelBadgeCountRequest;
|
|
6113
|
+
fromPartial<I extends Exact<DeepPartial<ListChannelBadgeCountRequest>, I>>(object: I): ListChannelBadgeCountRequest;
|
|
6114
|
+
};
|
|
6115
|
+
export declare const ListChannelBadgeCountResponse: {
|
|
6116
|
+
encode(message: ListChannelBadgeCountResponse, writer?: _m0.Writer): _m0.Writer;
|
|
6117
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): ListChannelBadgeCountResponse;
|
|
6118
|
+
fromJSON(object: any): ListChannelBadgeCountResponse;
|
|
6119
|
+
toJSON(message: ListChannelBadgeCountResponse): unknown;
|
|
6120
|
+
create<I extends Exact<DeepPartial<ListChannelBadgeCountResponse>, I>>(base?: I): ListChannelBadgeCountResponse;
|
|
6121
|
+
fromPartial<I extends Exact<DeepPartial<ListChannelBadgeCountResponse>, I>>(object: I): ListChannelBadgeCountResponse;
|
|
6122
|
+
};
|
|
6123
|
+
export declare const ClanBadgeCount: {
|
|
6124
|
+
encode(message: ClanBadgeCount, writer?: _m0.Writer): _m0.Writer;
|
|
6125
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): ClanBadgeCount;
|
|
6126
|
+
fromJSON(object: any): ClanBadgeCount;
|
|
6127
|
+
toJSON(message: ClanBadgeCount): unknown;
|
|
6128
|
+
create<I extends Exact<DeepPartial<ClanBadgeCount>, I>>(base?: I): ClanBadgeCount;
|
|
6129
|
+
fromPartial<I extends Exact<DeepPartial<ClanBadgeCount>, I>>(object: I): ClanBadgeCount;
|
|
5777
6130
|
};
|
|
5778
6131
|
export declare const ListClanBadgeCountResponse: {
|
|
5779
6132
|
encode(message: ListClanBadgeCountResponse, writer?: _m0.Writer): _m0.Writer;
|
|
@@ -5831,6 +6184,222 @@ export declare const ParticipantInfo: {
|
|
|
5831
6184
|
create<I extends Exact<DeepPartial<ParticipantInfo>, I>>(base?: I): ParticipantInfo;
|
|
5832
6185
|
fromPartial<I extends Exact<DeepPartial<ParticipantInfo>, I>>(object: I): ParticipantInfo;
|
|
5833
6186
|
};
|
|
6187
|
+
export declare const ChannelTimelineAttachment: {
|
|
6188
|
+
encode(message: ChannelTimelineAttachment, writer?: _m0.Writer): _m0.Writer;
|
|
6189
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): ChannelTimelineAttachment;
|
|
6190
|
+
fromJSON(object: any): ChannelTimelineAttachment;
|
|
6191
|
+
toJSON(message: ChannelTimelineAttachment): unknown;
|
|
6192
|
+
create<I extends Exact<DeepPartial<ChannelTimelineAttachment>, I>>(base?: I): ChannelTimelineAttachment;
|
|
6193
|
+
fromPartial<I extends Exact<DeepPartial<ChannelTimelineAttachment>, I>>(object: I): ChannelTimelineAttachment;
|
|
6194
|
+
};
|
|
6195
|
+
export declare const ListChannelTimelineAttachment: {
|
|
6196
|
+
encode(message: ListChannelTimelineAttachment, writer?: _m0.Writer): _m0.Writer;
|
|
6197
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): ListChannelTimelineAttachment;
|
|
6198
|
+
fromJSON(object: any): ListChannelTimelineAttachment;
|
|
6199
|
+
toJSON(message: ListChannelTimelineAttachment): unknown;
|
|
6200
|
+
create<I extends Exact<DeepPartial<ListChannelTimelineAttachment>, I>>(base?: I): ListChannelTimelineAttachment;
|
|
6201
|
+
fromPartial<I extends Exact<DeepPartial<ListChannelTimelineAttachment>, I>>(object: I): ListChannelTimelineAttachment;
|
|
6202
|
+
};
|
|
6203
|
+
export declare const ChannelTimeline: {
|
|
6204
|
+
encode(message: ChannelTimeline, writer?: _m0.Writer): _m0.Writer;
|
|
6205
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): ChannelTimeline;
|
|
6206
|
+
fromJSON(object: any): ChannelTimeline;
|
|
6207
|
+
toJSON(message: ChannelTimeline): unknown;
|
|
6208
|
+
create<I extends Exact<DeepPartial<ChannelTimeline>, I>>(base?: I): ChannelTimeline;
|
|
6209
|
+
fromPartial<I extends Exact<DeepPartial<ChannelTimeline>, I>>(object: I): ChannelTimeline;
|
|
6210
|
+
};
|
|
6211
|
+
export declare const ListChannelTimelineRequest: {
|
|
6212
|
+
encode(message: ListChannelTimelineRequest, writer?: _m0.Writer): _m0.Writer;
|
|
6213
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): ListChannelTimelineRequest;
|
|
6214
|
+
fromJSON(object: any): ListChannelTimelineRequest;
|
|
6215
|
+
toJSON(message: ListChannelTimelineRequest): unknown;
|
|
6216
|
+
create<I extends Exact<DeepPartial<ListChannelTimelineRequest>, I>>(base?: I): ListChannelTimelineRequest;
|
|
6217
|
+
fromPartial<I extends Exact<DeepPartial<ListChannelTimelineRequest>, I>>(object: I): ListChannelTimelineRequest;
|
|
6218
|
+
};
|
|
6219
|
+
export declare const ListChannelTimelineResponse: {
|
|
6220
|
+
encode(message: ListChannelTimelineResponse, writer?: _m0.Writer): _m0.Writer;
|
|
6221
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): ListChannelTimelineResponse;
|
|
6222
|
+
fromJSON(object: any): ListChannelTimelineResponse;
|
|
6223
|
+
toJSON(message: ListChannelTimelineResponse): unknown;
|
|
6224
|
+
create<I extends Exact<DeepPartial<ListChannelTimelineResponse>, I>>(base?: I): ListChannelTimelineResponse;
|
|
6225
|
+
fromPartial<I extends Exact<DeepPartial<ListChannelTimelineResponse>, I>>(object: I): ListChannelTimelineResponse;
|
|
6226
|
+
};
|
|
6227
|
+
export declare const CreateChannelTimelineRequest: {
|
|
6228
|
+
encode(message: CreateChannelTimelineRequest, writer?: _m0.Writer): _m0.Writer;
|
|
6229
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): CreateChannelTimelineRequest;
|
|
6230
|
+
fromJSON(object: any): CreateChannelTimelineRequest;
|
|
6231
|
+
toJSON(message: CreateChannelTimelineRequest): unknown;
|
|
6232
|
+
create<I extends Exact<DeepPartial<CreateChannelTimelineRequest>, I>>(base?: I): CreateChannelTimelineRequest;
|
|
6233
|
+
fromPartial<I extends Exact<DeepPartial<CreateChannelTimelineRequest>, I>>(object: I): CreateChannelTimelineRequest;
|
|
6234
|
+
};
|
|
6235
|
+
export declare const CreateChannelTimelineResponse: {
|
|
6236
|
+
encode(message: CreateChannelTimelineResponse, writer?: _m0.Writer): _m0.Writer;
|
|
6237
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): CreateChannelTimelineResponse;
|
|
6238
|
+
fromJSON(object: any): CreateChannelTimelineResponse;
|
|
6239
|
+
toJSON(message: CreateChannelTimelineResponse): unknown;
|
|
6240
|
+
create<I extends Exact<DeepPartial<CreateChannelTimelineResponse>, I>>(base?: I): CreateChannelTimelineResponse;
|
|
6241
|
+
fromPartial<I extends Exact<DeepPartial<CreateChannelTimelineResponse>, I>>(object: I): CreateChannelTimelineResponse;
|
|
6242
|
+
};
|
|
6243
|
+
export declare const UpdateChannelTimelineRequest: {
|
|
6244
|
+
encode(message: UpdateChannelTimelineRequest, writer?: _m0.Writer): _m0.Writer;
|
|
6245
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): UpdateChannelTimelineRequest;
|
|
6246
|
+
fromJSON(object: any): UpdateChannelTimelineRequest;
|
|
6247
|
+
toJSON(message: UpdateChannelTimelineRequest): unknown;
|
|
6248
|
+
create<I extends Exact<DeepPartial<UpdateChannelTimelineRequest>, I>>(base?: I): UpdateChannelTimelineRequest;
|
|
6249
|
+
fromPartial<I extends Exact<DeepPartial<UpdateChannelTimelineRequest>, I>>(object: I): UpdateChannelTimelineRequest;
|
|
6250
|
+
};
|
|
6251
|
+
export declare const UpdateChannelTimelineResponse: {
|
|
6252
|
+
encode(message: UpdateChannelTimelineResponse, writer?: _m0.Writer): _m0.Writer;
|
|
6253
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): UpdateChannelTimelineResponse;
|
|
6254
|
+
fromJSON(object: any): UpdateChannelTimelineResponse;
|
|
6255
|
+
toJSON(message: UpdateChannelTimelineResponse): unknown;
|
|
6256
|
+
create<I extends Exact<DeepPartial<UpdateChannelTimelineResponse>, I>>(base?: I): UpdateChannelTimelineResponse;
|
|
6257
|
+
fromPartial<I extends Exact<DeepPartial<UpdateChannelTimelineResponse>, I>>(object: I): UpdateChannelTimelineResponse;
|
|
6258
|
+
};
|
|
6259
|
+
export declare const ChannelTimelineDetailRequest: {
|
|
6260
|
+
encode(message: ChannelTimelineDetailRequest, writer?: _m0.Writer): _m0.Writer;
|
|
6261
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): ChannelTimelineDetailRequest;
|
|
6262
|
+
fromJSON(object: any): ChannelTimelineDetailRequest;
|
|
6263
|
+
toJSON(message: ChannelTimelineDetailRequest): unknown;
|
|
6264
|
+
create<I extends Exact<DeepPartial<ChannelTimelineDetailRequest>, I>>(base?: I): ChannelTimelineDetailRequest;
|
|
6265
|
+
fromPartial<I extends Exact<DeepPartial<ChannelTimelineDetailRequest>, I>>(object: I): ChannelTimelineDetailRequest;
|
|
6266
|
+
};
|
|
6267
|
+
export declare const ChannelTimelineDetailResponse: {
|
|
6268
|
+
encode(message: ChannelTimelineDetailResponse, writer?: _m0.Writer): _m0.Writer;
|
|
6269
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): ChannelTimelineDetailResponse;
|
|
6270
|
+
fromJSON(object: any): ChannelTimelineDetailResponse;
|
|
6271
|
+
toJSON(message: ChannelTimelineDetailResponse): unknown;
|
|
6272
|
+
create<I extends Exact<DeepPartial<ChannelTimelineDetailResponse>, I>>(base?: I): ChannelTimelineDetailResponse;
|
|
6273
|
+
fromPartial<I extends Exact<DeepPartial<ChannelTimelineDetailResponse>, I>>(object: I): ChannelTimelineDetailResponse;
|
|
6274
|
+
};
|
|
6275
|
+
export declare const ListMutedChannelRequest: {
|
|
6276
|
+
encode(message: ListMutedChannelRequest, writer?: _m0.Writer): _m0.Writer;
|
|
6277
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): ListMutedChannelRequest;
|
|
6278
|
+
fromJSON(object: any): ListMutedChannelRequest;
|
|
6279
|
+
toJSON(message: ListMutedChannelRequest): unknown;
|
|
6280
|
+
create<I extends Exact<DeepPartial<ListMutedChannelRequest>, I>>(base?: I): ListMutedChannelRequest;
|
|
6281
|
+
fromPartial<I extends Exact<DeepPartial<ListMutedChannelRequest>, I>>(object: I): ListMutedChannelRequest;
|
|
6282
|
+
};
|
|
6283
|
+
export declare const MutedChannelList: {
|
|
6284
|
+
encode(message: MutedChannelList, writer?: _m0.Writer): _m0.Writer;
|
|
6285
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): MutedChannelList;
|
|
6286
|
+
fromJSON(object: any): MutedChannelList;
|
|
6287
|
+
toJSON(message: MutedChannelList): unknown;
|
|
6288
|
+
create<I extends Exact<DeepPartial<MutedChannelList>, I>>(base?: I): MutedChannelList;
|
|
6289
|
+
fromPartial<I extends Exact<DeepPartial<MutedChannelList>, I>>(object: I): MutedChannelList;
|
|
6290
|
+
};
|
|
6291
|
+
export declare const NotificationBatchRequest: {
|
|
6292
|
+
encode(message: NotificationBatchRequest, writer?: _m0.Writer): _m0.Writer;
|
|
6293
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): NotificationBatchRequest;
|
|
6294
|
+
fromJSON(object: any): NotificationBatchRequest;
|
|
6295
|
+
toJSON(message: NotificationBatchRequest): unknown;
|
|
6296
|
+
create<I extends Exact<DeepPartial<NotificationBatchRequest>, I>>(base?: I): NotificationBatchRequest;
|
|
6297
|
+
fromPartial<I extends Exact<DeepPartial<NotificationBatchRequest>, I>>(object: I): NotificationBatchRequest;
|
|
6298
|
+
};
|
|
6299
|
+
export declare const NotificationBatchRequest_NotificationsEntry: {
|
|
6300
|
+
encode(message: NotificationBatchRequest_NotificationsEntry, writer?: _m0.Writer): _m0.Writer;
|
|
6301
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): NotificationBatchRequest_NotificationsEntry;
|
|
6302
|
+
fromJSON(object: any): NotificationBatchRequest_NotificationsEntry;
|
|
6303
|
+
toJSON(message: NotificationBatchRequest_NotificationsEntry): unknown;
|
|
6304
|
+
create<I extends Exact<DeepPartial<NotificationBatchRequest_NotificationsEntry>, I>>(base?: I): NotificationBatchRequest_NotificationsEntry;
|
|
6305
|
+
fromPartial<I extends Exact<DeepPartial<NotificationBatchRequest_NotificationsEntry>, I>>(object: I): NotificationBatchRequest_NotificationsEntry;
|
|
6306
|
+
};
|
|
6307
|
+
export declare const CreatePollRequest: {
|
|
6308
|
+
encode(message: CreatePollRequest, writer?: _m0.Writer): _m0.Writer;
|
|
6309
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): CreatePollRequest;
|
|
6310
|
+
fromJSON(object: any): CreatePollRequest;
|
|
6311
|
+
toJSON(message: CreatePollRequest): unknown;
|
|
6312
|
+
create<I extends Exact<DeepPartial<CreatePollRequest>, I>>(base?: I): CreatePollRequest;
|
|
6313
|
+
fromPartial<I extends Exact<DeepPartial<CreatePollRequest>, I>>(object: I): CreatePollRequest;
|
|
6314
|
+
};
|
|
6315
|
+
export declare const CreatePollResponse: {
|
|
6316
|
+
encode(message: CreatePollResponse, writer?: _m0.Writer): _m0.Writer;
|
|
6317
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): CreatePollResponse;
|
|
6318
|
+
fromJSON(object: any): CreatePollResponse;
|
|
6319
|
+
toJSON(message: CreatePollResponse): unknown;
|
|
6320
|
+
create<I extends Exact<DeepPartial<CreatePollResponse>, I>>(base?: I): CreatePollResponse;
|
|
6321
|
+
fromPartial<I extends Exact<DeepPartial<CreatePollResponse>, I>>(object: I): CreatePollResponse;
|
|
6322
|
+
};
|
|
6323
|
+
export declare const VotePollRequest: {
|
|
6324
|
+
encode(message: VotePollRequest, writer?: _m0.Writer): _m0.Writer;
|
|
6325
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): VotePollRequest;
|
|
6326
|
+
fromJSON(object: any): VotePollRequest;
|
|
6327
|
+
toJSON(message: VotePollRequest): unknown;
|
|
6328
|
+
create<I extends Exact<DeepPartial<VotePollRequest>, I>>(base?: I): VotePollRequest;
|
|
6329
|
+
fromPartial<I extends Exact<DeepPartial<VotePollRequest>, I>>(object: I): VotePollRequest;
|
|
6330
|
+
};
|
|
6331
|
+
export declare const VotePollResponse: {
|
|
6332
|
+
encode(message: VotePollResponse, writer?: _m0.Writer): _m0.Writer;
|
|
6333
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): VotePollResponse;
|
|
6334
|
+
fromJSON(object: any): VotePollResponse;
|
|
6335
|
+
toJSON(message: VotePollResponse): unknown;
|
|
6336
|
+
create<I extends Exact<DeepPartial<VotePollResponse>, I>>(base?: I): VotePollResponse;
|
|
6337
|
+
fromPartial<I extends Exact<DeepPartial<VotePollResponse>, I>>(object: I): VotePollResponse;
|
|
6338
|
+
};
|
|
6339
|
+
export declare const ClosePollRequest: {
|
|
6340
|
+
encode(message: ClosePollRequest, writer?: _m0.Writer): _m0.Writer;
|
|
6341
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): ClosePollRequest;
|
|
6342
|
+
fromJSON(object: any): ClosePollRequest;
|
|
6343
|
+
toJSON(message: ClosePollRequest): unknown;
|
|
6344
|
+
create<I extends Exact<DeepPartial<ClosePollRequest>, I>>(base?: I): ClosePollRequest;
|
|
6345
|
+
fromPartial<I extends Exact<DeepPartial<ClosePollRequest>, I>>(object: I): ClosePollRequest;
|
|
6346
|
+
};
|
|
6347
|
+
export declare const GetPollRequest: {
|
|
6348
|
+
encode(message: GetPollRequest, writer?: _m0.Writer): _m0.Writer;
|
|
6349
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): GetPollRequest;
|
|
6350
|
+
fromJSON(object: any): GetPollRequest;
|
|
6351
|
+
toJSON(message: GetPollRequest): unknown;
|
|
6352
|
+
create<I extends Exact<DeepPartial<GetPollRequest>, I>>(base?: I): GetPollRequest;
|
|
6353
|
+
fromPartial<I extends Exact<DeepPartial<GetPollRequest>, I>>(object: I): GetPollRequest;
|
|
6354
|
+
};
|
|
6355
|
+
export declare const PollAnswer: {
|
|
6356
|
+
encode(message: PollAnswer, writer?: _m0.Writer): _m0.Writer;
|
|
6357
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): PollAnswer;
|
|
6358
|
+
fromJSON(object: any): PollAnswer;
|
|
6359
|
+
toJSON(message: PollAnswer): unknown;
|
|
6360
|
+
create<I extends Exact<DeepPartial<PollAnswer>, I>>(base?: I): PollAnswer;
|
|
6361
|
+
fromPartial<I extends Exact<DeepPartial<PollAnswer>, I>>(object: I): PollAnswer;
|
|
6362
|
+
};
|
|
6363
|
+
export declare const PollVoterDetail: {
|
|
6364
|
+
encode(message: PollVoterDetail, writer?: _m0.Writer): _m0.Writer;
|
|
6365
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): PollVoterDetail;
|
|
6366
|
+
fromJSON(object: any): PollVoterDetail;
|
|
6367
|
+
toJSON(message: PollVoterDetail): unknown;
|
|
6368
|
+
create<I extends Exact<DeepPartial<PollVoterDetail>, I>>(base?: I): PollVoterDetail;
|
|
6369
|
+
fromPartial<I extends Exact<DeepPartial<PollVoterDetail>, I>>(object: I): PollVoterDetail;
|
|
6370
|
+
};
|
|
6371
|
+
export declare const GetPollResponse: {
|
|
6372
|
+
encode(message: GetPollResponse, writer?: _m0.Writer): _m0.Writer;
|
|
6373
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): GetPollResponse;
|
|
6374
|
+
fromJSON(object: any): GetPollResponse;
|
|
6375
|
+
toJSON(message: GetPollResponse): unknown;
|
|
6376
|
+
create<I extends Exact<DeepPartial<GetPollResponse>, I>>(base?: I): GetPollResponse;
|
|
6377
|
+
fromPartial<I extends Exact<DeepPartial<GetPollResponse>, I>>(object: I): GetPollResponse;
|
|
6378
|
+
};
|
|
6379
|
+
export declare const ListUserOnlineRequest: {
|
|
6380
|
+
encode(message: ListUserOnlineRequest, writer?: _m0.Writer): _m0.Writer;
|
|
6381
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): ListUserOnlineRequest;
|
|
6382
|
+
fromJSON(object: any): ListUserOnlineRequest;
|
|
6383
|
+
toJSON(message: ListUserOnlineRequest): unknown;
|
|
6384
|
+
create<I extends Exact<DeepPartial<ListUserOnlineRequest>, I>>(base?: I): ListUserOnlineRequest;
|
|
6385
|
+
fromPartial<I extends Exact<DeepPartial<ListUserOnlineRequest>, I>>(object: I): ListUserOnlineRequest;
|
|
6386
|
+
};
|
|
6387
|
+
export declare const ListUserOnlineResponse: {
|
|
6388
|
+
encode(message: ListUserOnlineResponse, writer?: _m0.Writer): _m0.Writer;
|
|
6389
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): ListUserOnlineResponse;
|
|
6390
|
+
fromJSON(object: any): ListUserOnlineResponse;
|
|
6391
|
+
toJSON(message: ListUserOnlineResponse): unknown;
|
|
6392
|
+
create<I extends Exact<DeepPartial<ListUserOnlineResponse>, I>>(base?: I): ListUserOnlineResponse;
|
|
6393
|
+
fromPartial<I extends Exact<DeepPartial<ListUserOnlineResponse>, I>>(object: I): ListUserOnlineResponse;
|
|
6394
|
+
};
|
|
6395
|
+
export declare const NoParams: {
|
|
6396
|
+
encode(_: NoParams, writer?: _m0.Writer): _m0.Writer;
|
|
6397
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): NoParams;
|
|
6398
|
+
fromJSON(_: any): NoParams;
|
|
6399
|
+
toJSON(_: NoParams): unknown;
|
|
6400
|
+
create<I extends Exact<DeepPartial<NoParams>, I>>(base?: I): NoParams;
|
|
6401
|
+
fromPartial<I extends Exact<DeepPartial<NoParams>, I>>(_: I): NoParams;
|
|
6402
|
+
};
|
|
5834
6403
|
type Builtin = Date | Function | Uint8Array | string | number | boolean | undefined;
|
|
5835
6404
|
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 {} ? {
|
|
5836
6405
|
[K in keyof T]?: DeepPartial<T[K]>;
|