mezon-js-protobuf 1.6.88 → 1.6.89
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/api/api.ts +18 -98
- package/dist/mezon-js-protobuf/api/api.d.ts +6 -579
- package/package.json +1 -1
package/api/api.ts
CHANGED
|
@@ -1922,6 +1922,8 @@ export interface ChannelDescList {
|
|
|
1922
1922
|
prev_cursor: string;
|
|
1923
1923
|
/** Cacheable cursor to list newer channel description. Durable and designed to be stored, unlike next/prev cursors. */
|
|
1924
1924
|
cacheable_cursor: string;
|
|
1925
|
+
/** Page thread */
|
|
1926
|
+
page: number;
|
|
1925
1927
|
}
|
|
1926
1928
|
|
|
1927
1929
|
export interface ListThreadRequest {
|
|
@@ -3864,12 +3866,6 @@ export interface DeleteSdTopicRequest {
|
|
|
3864
3866
|
clan_id: string;
|
|
3865
3867
|
}
|
|
3866
3868
|
|
|
3867
|
-
export interface ListThreadDecs {
|
|
3868
|
-
list_thread: ChannelDescription[];
|
|
3869
|
-
page: number;
|
|
3870
|
-
limit: number;
|
|
3871
|
-
}
|
|
3872
|
-
|
|
3873
3869
|
function createBaseAccount(): Account {
|
|
3874
3870
|
return {
|
|
3875
3871
|
user: undefined,
|
|
@@ -17375,7 +17371,7 @@ export const ChannelDescription = {
|
|
|
17375
17371
|
};
|
|
17376
17372
|
|
|
17377
17373
|
function createBaseChannelDescList(): ChannelDescList {
|
|
17378
|
-
return { channeldesc: [], next_cursor: "", prev_cursor: "", cacheable_cursor: "" };
|
|
17374
|
+
return { channeldesc: [], next_cursor: "", prev_cursor: "", cacheable_cursor: "", page: 0 };
|
|
17379
17375
|
}
|
|
17380
17376
|
|
|
17381
17377
|
export const ChannelDescList = {
|
|
@@ -17392,6 +17388,9 @@ export const ChannelDescList = {
|
|
|
17392
17388
|
if (message.cacheable_cursor !== "") {
|
|
17393
17389
|
writer.uint32(34).string(message.cacheable_cursor);
|
|
17394
17390
|
}
|
|
17391
|
+
if (message.page !== 0) {
|
|
17392
|
+
writer.uint32(40).int32(message.page);
|
|
17393
|
+
}
|
|
17395
17394
|
return writer;
|
|
17396
17395
|
},
|
|
17397
17396
|
|
|
@@ -17430,6 +17429,13 @@ export const ChannelDescList = {
|
|
|
17430
17429
|
|
|
17431
17430
|
message.cacheable_cursor = reader.string();
|
|
17432
17431
|
continue;
|
|
17432
|
+
case 5:
|
|
17433
|
+
if (tag !== 40) {
|
|
17434
|
+
break;
|
|
17435
|
+
}
|
|
17436
|
+
|
|
17437
|
+
message.page = reader.int32();
|
|
17438
|
+
continue;
|
|
17433
17439
|
}
|
|
17434
17440
|
if ((tag & 7) === 4 || tag === 0) {
|
|
17435
17441
|
break;
|
|
@@ -17447,6 +17453,7 @@ export const ChannelDescList = {
|
|
|
17447
17453
|
next_cursor: isSet(object.next_cursor) ? globalThis.String(object.next_cursor) : "",
|
|
17448
17454
|
prev_cursor: isSet(object.prev_cursor) ? globalThis.String(object.prev_cursor) : "",
|
|
17449
17455
|
cacheable_cursor: isSet(object.cacheable_cursor) ? globalThis.String(object.cacheable_cursor) : "",
|
|
17456
|
+
page: isSet(object.page) ? globalThis.Number(object.page) : 0,
|
|
17450
17457
|
};
|
|
17451
17458
|
},
|
|
17452
17459
|
|
|
@@ -17464,6 +17471,9 @@ export const ChannelDescList = {
|
|
|
17464
17471
|
if (message.cacheable_cursor !== "") {
|
|
17465
17472
|
obj.cacheable_cursor = message.cacheable_cursor;
|
|
17466
17473
|
}
|
|
17474
|
+
if (message.page !== 0) {
|
|
17475
|
+
obj.page = Math.round(message.page);
|
|
17476
|
+
}
|
|
17467
17477
|
return obj;
|
|
17468
17478
|
},
|
|
17469
17479
|
|
|
@@ -17476,6 +17486,7 @@ export const ChannelDescList = {
|
|
|
17476
17486
|
message.next_cursor = object.next_cursor ?? "";
|
|
17477
17487
|
message.prev_cursor = object.prev_cursor ?? "";
|
|
17478
17488
|
message.cacheable_cursor = object.cacheable_cursor ?? "";
|
|
17489
|
+
message.page = object.page ?? 0;
|
|
17479
17490
|
return message;
|
|
17480
17491
|
},
|
|
17481
17492
|
};
|
|
@@ -37564,97 +37575,6 @@ export const DeleteSdTopicRequest = {
|
|
|
37564
37575
|
},
|
|
37565
37576
|
};
|
|
37566
37577
|
|
|
37567
|
-
function createBaseListThreadDecs(): ListThreadDecs {
|
|
37568
|
-
return { list_thread: [], page: 0, limit: 0 };
|
|
37569
|
-
}
|
|
37570
|
-
|
|
37571
|
-
export const ListThreadDecs = {
|
|
37572
|
-
encode(message: ListThreadDecs, writer: _m0.Writer = _m0.Writer.create()): _m0.Writer {
|
|
37573
|
-
for (const v of message.list_thread) {
|
|
37574
|
-
ChannelDescription.encode(v!, writer.uint32(10).fork()).ldelim();
|
|
37575
|
-
}
|
|
37576
|
-
if (message.page !== 0) {
|
|
37577
|
-
writer.uint32(16).int32(message.page);
|
|
37578
|
-
}
|
|
37579
|
-
if (message.limit !== 0) {
|
|
37580
|
-
writer.uint32(24).int32(message.limit);
|
|
37581
|
-
}
|
|
37582
|
-
return writer;
|
|
37583
|
-
},
|
|
37584
|
-
|
|
37585
|
-
decode(input: _m0.Reader | Uint8Array, length?: number): ListThreadDecs {
|
|
37586
|
-
const reader = input instanceof _m0.Reader ? input : _m0.Reader.create(input);
|
|
37587
|
-
let end = length === undefined ? reader.len : reader.pos + length;
|
|
37588
|
-
const message = createBaseListThreadDecs();
|
|
37589
|
-
while (reader.pos < end) {
|
|
37590
|
-
const tag = reader.uint32();
|
|
37591
|
-
switch (tag >>> 3) {
|
|
37592
|
-
case 1:
|
|
37593
|
-
if (tag !== 10) {
|
|
37594
|
-
break;
|
|
37595
|
-
}
|
|
37596
|
-
|
|
37597
|
-
message.list_thread.push(ChannelDescription.decode(reader, reader.uint32()));
|
|
37598
|
-
continue;
|
|
37599
|
-
case 2:
|
|
37600
|
-
if (tag !== 16) {
|
|
37601
|
-
break;
|
|
37602
|
-
}
|
|
37603
|
-
|
|
37604
|
-
message.page = reader.int32();
|
|
37605
|
-
continue;
|
|
37606
|
-
case 3:
|
|
37607
|
-
if (tag !== 24) {
|
|
37608
|
-
break;
|
|
37609
|
-
}
|
|
37610
|
-
|
|
37611
|
-
message.limit = reader.int32();
|
|
37612
|
-
continue;
|
|
37613
|
-
}
|
|
37614
|
-
if ((tag & 7) === 4 || tag === 0) {
|
|
37615
|
-
break;
|
|
37616
|
-
}
|
|
37617
|
-
reader.skipType(tag & 7);
|
|
37618
|
-
}
|
|
37619
|
-
return message;
|
|
37620
|
-
},
|
|
37621
|
-
|
|
37622
|
-
fromJSON(object: any): ListThreadDecs {
|
|
37623
|
-
return {
|
|
37624
|
-
list_thread: globalThis.Array.isArray(object?.list_thread)
|
|
37625
|
-
? object.list_thread.map((e: any) => ChannelDescription.fromJSON(e))
|
|
37626
|
-
: [],
|
|
37627
|
-
page: isSet(object.page) ? globalThis.Number(object.page) : 0,
|
|
37628
|
-
limit: isSet(object.limit) ? globalThis.Number(object.limit) : 0,
|
|
37629
|
-
};
|
|
37630
|
-
},
|
|
37631
|
-
|
|
37632
|
-
toJSON(message: ListThreadDecs): unknown {
|
|
37633
|
-
const obj: any = {};
|
|
37634
|
-
if (message.list_thread?.length) {
|
|
37635
|
-
obj.list_thread = message.list_thread.map((e) => ChannelDescription.toJSON(e));
|
|
37636
|
-
}
|
|
37637
|
-
if (message.page !== 0) {
|
|
37638
|
-
obj.page = Math.round(message.page);
|
|
37639
|
-
}
|
|
37640
|
-
if (message.limit !== 0) {
|
|
37641
|
-
obj.limit = Math.round(message.limit);
|
|
37642
|
-
}
|
|
37643
|
-
return obj;
|
|
37644
|
-
},
|
|
37645
|
-
|
|
37646
|
-
create<I extends Exact<DeepPartial<ListThreadDecs>, I>>(base?: I): ListThreadDecs {
|
|
37647
|
-
return ListThreadDecs.fromPartial(base ?? ({} as any));
|
|
37648
|
-
},
|
|
37649
|
-
fromPartial<I extends Exact<DeepPartial<ListThreadDecs>, I>>(object: I): ListThreadDecs {
|
|
37650
|
-
const message = createBaseListThreadDecs();
|
|
37651
|
-
message.list_thread = object.list_thread?.map((e) => ChannelDescription.fromPartial(e)) || [];
|
|
37652
|
-
message.page = object.page ?? 0;
|
|
37653
|
-
message.limit = object.limit ?? 0;
|
|
37654
|
-
return message;
|
|
37655
|
-
},
|
|
37656
|
-
};
|
|
37657
|
-
|
|
37658
37578
|
function bytesFromBase64(b64: string): Uint8Array {
|
|
37659
37579
|
if ((globalThis as any).Buffer) {
|
|
37660
37580
|
return Uint8Array.from(globalThis.Buffer.from(b64, "base64"));
|
|
@@ -1438,6 +1438,8 @@ export interface ChannelDescList {
|
|
|
1438
1438
|
prev_cursor: string;
|
|
1439
1439
|
/** Cacheable cursor to list newer channel description. Durable and designed to be stored, unlike next/prev cursors. */
|
|
1440
1440
|
cacheable_cursor: string;
|
|
1441
|
+
/** Page thread */
|
|
1442
|
+
page: number;
|
|
1441
1443
|
}
|
|
1442
1444
|
export interface ListThreadRequest {
|
|
1443
1445
|
/** Max number of records to return. Between 1 and 100. */
|
|
@@ -3111,11 +3113,6 @@ export interface DeleteSdTopicRequest {
|
|
|
3111
3113
|
id: string;
|
|
3112
3114
|
clan_id: string;
|
|
3113
3115
|
}
|
|
3114
|
-
export interface ListThreadDecs {
|
|
3115
|
-
list_thread: ChannelDescription[];
|
|
3116
|
-
page: number;
|
|
3117
|
-
limit: number;
|
|
3118
|
-
}
|
|
3119
3116
|
export declare const Account: {
|
|
3120
3117
|
encode(message: Account, writer?: _m0.Writer): _m0.Writer;
|
|
3121
3118
|
decode(input: _m0.Reader | Uint8Array, length?: number): Account;
|
|
@@ -10465,6 +10462,7 @@ export declare const ChannelDescList: {
|
|
|
10465
10462
|
next_cursor?: string | undefined;
|
|
10466
10463
|
prev_cursor?: string | undefined;
|
|
10467
10464
|
cacheable_cursor?: string | undefined;
|
|
10465
|
+
page?: number | undefined;
|
|
10468
10466
|
} & {
|
|
10469
10467
|
channeldesc?: ({
|
|
10470
10468
|
clan_id?: string | undefined;
|
|
@@ -10694,6 +10692,7 @@ export declare const ChannelDescList: {
|
|
|
10694
10692
|
next_cursor?: string | undefined;
|
|
10695
10693
|
prev_cursor?: string | undefined;
|
|
10696
10694
|
cacheable_cursor?: string | undefined;
|
|
10695
|
+
page?: number | undefined;
|
|
10697
10696
|
} & { [K_11 in Exclude<keyof I, keyof ChannelDescList>]: never; }>(base?: I | undefined): ChannelDescList;
|
|
10698
10697
|
fromPartial<I_1 extends {
|
|
10699
10698
|
channeldesc?: {
|
|
@@ -10751,6 +10750,7 @@ export declare const ChannelDescList: {
|
|
|
10751
10750
|
next_cursor?: string | undefined;
|
|
10752
10751
|
prev_cursor?: string | undefined;
|
|
10753
10752
|
cacheable_cursor?: string | undefined;
|
|
10753
|
+
page?: number | undefined;
|
|
10754
10754
|
} & {
|
|
10755
10755
|
channeldesc?: ({
|
|
10756
10756
|
clan_id?: string | undefined;
|
|
@@ -10980,6 +10980,7 @@ export declare const ChannelDescList: {
|
|
|
10980
10980
|
next_cursor?: string | undefined;
|
|
10981
10981
|
prev_cursor?: string | undefined;
|
|
10982
10982
|
cacheable_cursor?: string | undefined;
|
|
10983
|
+
page?: number | undefined;
|
|
10983
10984
|
} & { [K_23 in Exclude<keyof I_1, keyof ChannelDescList>]: never; }>(object: I_1): ChannelDescList;
|
|
10984
10985
|
};
|
|
10985
10986
|
export declare const ListThreadRequest: {
|
|
@@ -22266,580 +22267,6 @@ export declare const DeleteSdTopicRequest: {
|
|
|
22266
22267
|
clan_id?: string | undefined;
|
|
22267
22268
|
} & { [K_1 in Exclude<keyof I_1, keyof DeleteSdTopicRequest>]: never; }>(object: I_1): DeleteSdTopicRequest;
|
|
22268
22269
|
};
|
|
22269
|
-
export declare const ListThreadDecs: {
|
|
22270
|
-
encode(message: ListThreadDecs, writer?: _m0.Writer): _m0.Writer;
|
|
22271
|
-
decode(input: _m0.Reader | Uint8Array, length?: number): ListThreadDecs;
|
|
22272
|
-
fromJSON(object: any): ListThreadDecs;
|
|
22273
|
-
toJSON(message: ListThreadDecs): unknown;
|
|
22274
|
-
create<I extends {
|
|
22275
|
-
list_thread?: {
|
|
22276
|
-
clan_id?: string | undefined;
|
|
22277
|
-
parrent_id?: string | undefined;
|
|
22278
|
-
channel_id?: string | undefined;
|
|
22279
|
-
category_id?: string | undefined;
|
|
22280
|
-
category_name?: string | undefined;
|
|
22281
|
-
type?: number | undefined;
|
|
22282
|
-
creator_id?: string | undefined;
|
|
22283
|
-
channel_label?: string | undefined;
|
|
22284
|
-
channel_private?: number | undefined;
|
|
22285
|
-
channel_avatar?: string[] | undefined;
|
|
22286
|
-
user_id?: string[] | undefined;
|
|
22287
|
-
last_sent_message?: {
|
|
22288
|
-
id?: string | undefined;
|
|
22289
|
-
timestamp_seconds?: number | undefined;
|
|
22290
|
-
sender_id?: string | undefined;
|
|
22291
|
-
content?: string | undefined;
|
|
22292
|
-
attachment?: string | undefined;
|
|
22293
|
-
referece?: string | undefined;
|
|
22294
|
-
mention?: string | undefined;
|
|
22295
|
-
reaction?: string | undefined;
|
|
22296
|
-
repliers?: string[] | undefined;
|
|
22297
|
-
} | undefined;
|
|
22298
|
-
last_seen_message?: {
|
|
22299
|
-
id?: string | undefined;
|
|
22300
|
-
timestamp_seconds?: number | undefined;
|
|
22301
|
-
sender_id?: string | undefined;
|
|
22302
|
-
content?: string | undefined;
|
|
22303
|
-
attachment?: string | undefined;
|
|
22304
|
-
referece?: string | undefined;
|
|
22305
|
-
mention?: string | undefined;
|
|
22306
|
-
reaction?: string | undefined;
|
|
22307
|
-
repliers?: string[] | undefined;
|
|
22308
|
-
} | undefined;
|
|
22309
|
-
is_online?: boolean[] | undefined;
|
|
22310
|
-
meeting_code?: string | undefined;
|
|
22311
|
-
count_mess_unread?: number | undefined;
|
|
22312
|
-
active?: number | undefined;
|
|
22313
|
-
last_pin_message?: string | undefined;
|
|
22314
|
-
usernames?: string | undefined;
|
|
22315
|
-
creator_name?: string | undefined;
|
|
22316
|
-
create_time_seconds?: number | undefined;
|
|
22317
|
-
update_time_seconds?: number | undefined;
|
|
22318
|
-
metadata?: string[] | undefined;
|
|
22319
|
-
about_me?: string[] | undefined;
|
|
22320
|
-
clan_name?: string | undefined;
|
|
22321
|
-
app_url?: string | undefined;
|
|
22322
|
-
is_mute?: boolean | undefined;
|
|
22323
|
-
age_restricted?: number | undefined;
|
|
22324
|
-
topic?: string | undefined;
|
|
22325
|
-
e2ee?: number | undefined;
|
|
22326
|
-
}[] | undefined;
|
|
22327
|
-
page?: number | undefined;
|
|
22328
|
-
limit?: number | undefined;
|
|
22329
|
-
} & {
|
|
22330
|
-
list_thread?: ({
|
|
22331
|
-
clan_id?: string | undefined;
|
|
22332
|
-
parrent_id?: string | undefined;
|
|
22333
|
-
channel_id?: string | undefined;
|
|
22334
|
-
category_id?: string | undefined;
|
|
22335
|
-
category_name?: string | undefined;
|
|
22336
|
-
type?: number | undefined;
|
|
22337
|
-
creator_id?: string | undefined;
|
|
22338
|
-
channel_label?: string | undefined;
|
|
22339
|
-
channel_private?: number | undefined;
|
|
22340
|
-
channel_avatar?: string[] | undefined;
|
|
22341
|
-
user_id?: string[] | undefined;
|
|
22342
|
-
last_sent_message?: {
|
|
22343
|
-
id?: string | undefined;
|
|
22344
|
-
timestamp_seconds?: number | undefined;
|
|
22345
|
-
sender_id?: string | undefined;
|
|
22346
|
-
content?: string | undefined;
|
|
22347
|
-
attachment?: string | undefined;
|
|
22348
|
-
referece?: string | undefined;
|
|
22349
|
-
mention?: string | undefined;
|
|
22350
|
-
reaction?: string | undefined;
|
|
22351
|
-
repliers?: string[] | undefined;
|
|
22352
|
-
} | undefined;
|
|
22353
|
-
last_seen_message?: {
|
|
22354
|
-
id?: string | undefined;
|
|
22355
|
-
timestamp_seconds?: number | undefined;
|
|
22356
|
-
sender_id?: string | undefined;
|
|
22357
|
-
content?: string | undefined;
|
|
22358
|
-
attachment?: string | undefined;
|
|
22359
|
-
referece?: string | undefined;
|
|
22360
|
-
mention?: string | undefined;
|
|
22361
|
-
reaction?: string | undefined;
|
|
22362
|
-
repliers?: string[] | undefined;
|
|
22363
|
-
} | undefined;
|
|
22364
|
-
is_online?: boolean[] | undefined;
|
|
22365
|
-
meeting_code?: string | undefined;
|
|
22366
|
-
count_mess_unread?: number | undefined;
|
|
22367
|
-
active?: number | undefined;
|
|
22368
|
-
last_pin_message?: string | undefined;
|
|
22369
|
-
usernames?: string | undefined;
|
|
22370
|
-
creator_name?: string | undefined;
|
|
22371
|
-
create_time_seconds?: number | undefined;
|
|
22372
|
-
update_time_seconds?: number | undefined;
|
|
22373
|
-
metadata?: string[] | undefined;
|
|
22374
|
-
about_me?: string[] | undefined;
|
|
22375
|
-
clan_name?: string | undefined;
|
|
22376
|
-
app_url?: string | undefined;
|
|
22377
|
-
is_mute?: boolean | undefined;
|
|
22378
|
-
age_restricted?: number | undefined;
|
|
22379
|
-
topic?: string | undefined;
|
|
22380
|
-
e2ee?: number | undefined;
|
|
22381
|
-
}[] & ({
|
|
22382
|
-
clan_id?: string | undefined;
|
|
22383
|
-
parrent_id?: string | undefined;
|
|
22384
|
-
channel_id?: string | undefined;
|
|
22385
|
-
category_id?: string | undefined;
|
|
22386
|
-
category_name?: string | undefined;
|
|
22387
|
-
type?: number | undefined;
|
|
22388
|
-
creator_id?: string | undefined;
|
|
22389
|
-
channel_label?: string | undefined;
|
|
22390
|
-
channel_private?: number | undefined;
|
|
22391
|
-
channel_avatar?: string[] | undefined;
|
|
22392
|
-
user_id?: string[] | undefined;
|
|
22393
|
-
last_sent_message?: {
|
|
22394
|
-
id?: string | undefined;
|
|
22395
|
-
timestamp_seconds?: number | undefined;
|
|
22396
|
-
sender_id?: string | undefined;
|
|
22397
|
-
content?: string | undefined;
|
|
22398
|
-
attachment?: string | undefined;
|
|
22399
|
-
referece?: string | undefined;
|
|
22400
|
-
mention?: string | undefined;
|
|
22401
|
-
reaction?: string | undefined;
|
|
22402
|
-
repliers?: string[] | undefined;
|
|
22403
|
-
} | undefined;
|
|
22404
|
-
last_seen_message?: {
|
|
22405
|
-
id?: string | undefined;
|
|
22406
|
-
timestamp_seconds?: number | undefined;
|
|
22407
|
-
sender_id?: string | undefined;
|
|
22408
|
-
content?: string | undefined;
|
|
22409
|
-
attachment?: string | undefined;
|
|
22410
|
-
referece?: string | undefined;
|
|
22411
|
-
mention?: string | undefined;
|
|
22412
|
-
reaction?: string | undefined;
|
|
22413
|
-
repliers?: string[] | undefined;
|
|
22414
|
-
} | undefined;
|
|
22415
|
-
is_online?: boolean[] | undefined;
|
|
22416
|
-
meeting_code?: string | undefined;
|
|
22417
|
-
count_mess_unread?: number | undefined;
|
|
22418
|
-
active?: number | undefined;
|
|
22419
|
-
last_pin_message?: string | undefined;
|
|
22420
|
-
usernames?: string | undefined;
|
|
22421
|
-
creator_name?: string | undefined;
|
|
22422
|
-
create_time_seconds?: number | undefined;
|
|
22423
|
-
update_time_seconds?: number | undefined;
|
|
22424
|
-
metadata?: string[] | undefined;
|
|
22425
|
-
about_me?: string[] | undefined;
|
|
22426
|
-
clan_name?: string | undefined;
|
|
22427
|
-
app_url?: string | undefined;
|
|
22428
|
-
is_mute?: boolean | undefined;
|
|
22429
|
-
age_restricted?: number | undefined;
|
|
22430
|
-
topic?: string | undefined;
|
|
22431
|
-
e2ee?: number | undefined;
|
|
22432
|
-
} & {
|
|
22433
|
-
clan_id?: string | undefined;
|
|
22434
|
-
parrent_id?: string | undefined;
|
|
22435
|
-
channel_id?: string | undefined;
|
|
22436
|
-
category_id?: string | undefined;
|
|
22437
|
-
category_name?: string | undefined;
|
|
22438
|
-
type?: number | undefined;
|
|
22439
|
-
creator_id?: string | undefined;
|
|
22440
|
-
channel_label?: string | undefined;
|
|
22441
|
-
channel_private?: number | undefined;
|
|
22442
|
-
channel_avatar?: (string[] & string[] & { [K in Exclude<keyof I["list_thread"][number]["channel_avatar"], keyof string[]>]: never; }) | undefined;
|
|
22443
|
-
user_id?: (string[] & string[] & { [K_1 in Exclude<keyof I["list_thread"][number]["user_id"], keyof string[]>]: never; }) | undefined;
|
|
22444
|
-
last_sent_message?: ({
|
|
22445
|
-
id?: string | undefined;
|
|
22446
|
-
timestamp_seconds?: number | undefined;
|
|
22447
|
-
sender_id?: string | undefined;
|
|
22448
|
-
content?: string | undefined;
|
|
22449
|
-
attachment?: string | undefined;
|
|
22450
|
-
referece?: string | undefined;
|
|
22451
|
-
mention?: string | undefined;
|
|
22452
|
-
reaction?: string | undefined;
|
|
22453
|
-
repliers?: string[] | undefined;
|
|
22454
|
-
} & {
|
|
22455
|
-
id?: string | undefined;
|
|
22456
|
-
timestamp_seconds?: number | undefined;
|
|
22457
|
-
sender_id?: string | undefined;
|
|
22458
|
-
content?: string | undefined;
|
|
22459
|
-
attachment?: string | undefined;
|
|
22460
|
-
referece?: string | undefined;
|
|
22461
|
-
mention?: string | undefined;
|
|
22462
|
-
reaction?: string | undefined;
|
|
22463
|
-
repliers?: (string[] & string[] & { [K_2 in Exclude<keyof I["list_thread"][number]["last_sent_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
22464
|
-
} & { [K_3 in Exclude<keyof I["list_thread"][number]["last_sent_message"], keyof ChannelMessageHeader>]: never; }) | undefined;
|
|
22465
|
-
last_seen_message?: ({
|
|
22466
|
-
id?: string | undefined;
|
|
22467
|
-
timestamp_seconds?: number | undefined;
|
|
22468
|
-
sender_id?: string | undefined;
|
|
22469
|
-
content?: string | undefined;
|
|
22470
|
-
attachment?: string | undefined;
|
|
22471
|
-
referece?: string | undefined;
|
|
22472
|
-
mention?: string | undefined;
|
|
22473
|
-
reaction?: string | undefined;
|
|
22474
|
-
repliers?: string[] | undefined;
|
|
22475
|
-
} & {
|
|
22476
|
-
id?: string | undefined;
|
|
22477
|
-
timestamp_seconds?: number | undefined;
|
|
22478
|
-
sender_id?: string | undefined;
|
|
22479
|
-
content?: string | undefined;
|
|
22480
|
-
attachment?: string | undefined;
|
|
22481
|
-
referece?: string | undefined;
|
|
22482
|
-
mention?: string | undefined;
|
|
22483
|
-
reaction?: string | undefined;
|
|
22484
|
-
repliers?: (string[] & string[] & { [K_4 in Exclude<keyof I["list_thread"][number]["last_seen_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
22485
|
-
} & { [K_5 in Exclude<keyof I["list_thread"][number]["last_seen_message"], keyof ChannelMessageHeader>]: never; }) | undefined;
|
|
22486
|
-
is_online?: (boolean[] & boolean[] & { [K_6 in Exclude<keyof I["list_thread"][number]["is_online"], keyof boolean[]>]: never; }) | undefined;
|
|
22487
|
-
meeting_code?: string | undefined;
|
|
22488
|
-
count_mess_unread?: number | undefined;
|
|
22489
|
-
active?: number | undefined;
|
|
22490
|
-
last_pin_message?: string | undefined;
|
|
22491
|
-
usernames?: string | undefined;
|
|
22492
|
-
creator_name?: string | undefined;
|
|
22493
|
-
create_time_seconds?: number | undefined;
|
|
22494
|
-
update_time_seconds?: number | undefined;
|
|
22495
|
-
metadata?: (string[] & string[] & { [K_7 in Exclude<keyof I["list_thread"][number]["metadata"], keyof string[]>]: never; }) | undefined;
|
|
22496
|
-
about_me?: (string[] & string[] & { [K_8 in Exclude<keyof I["list_thread"][number]["about_me"], keyof string[]>]: never; }) | undefined;
|
|
22497
|
-
clan_name?: string | undefined;
|
|
22498
|
-
app_url?: string | undefined;
|
|
22499
|
-
is_mute?: boolean | undefined;
|
|
22500
|
-
age_restricted?: number | undefined;
|
|
22501
|
-
topic?: string | undefined;
|
|
22502
|
-
e2ee?: number | undefined;
|
|
22503
|
-
} & { [K_9 in Exclude<keyof I["list_thread"][number], keyof ChannelDescription>]: never; })[] & { [K_10 in Exclude<keyof I["list_thread"], keyof {
|
|
22504
|
-
clan_id?: string | undefined;
|
|
22505
|
-
parrent_id?: string | undefined;
|
|
22506
|
-
channel_id?: string | undefined;
|
|
22507
|
-
category_id?: string | undefined;
|
|
22508
|
-
category_name?: string | undefined;
|
|
22509
|
-
type?: number | undefined;
|
|
22510
|
-
creator_id?: string | undefined;
|
|
22511
|
-
channel_label?: string | undefined;
|
|
22512
|
-
channel_private?: number | undefined;
|
|
22513
|
-
channel_avatar?: string[] | undefined;
|
|
22514
|
-
user_id?: string[] | undefined;
|
|
22515
|
-
last_sent_message?: {
|
|
22516
|
-
id?: string | undefined;
|
|
22517
|
-
timestamp_seconds?: number | undefined;
|
|
22518
|
-
sender_id?: string | undefined;
|
|
22519
|
-
content?: string | undefined;
|
|
22520
|
-
attachment?: string | undefined;
|
|
22521
|
-
referece?: string | undefined;
|
|
22522
|
-
mention?: string | undefined;
|
|
22523
|
-
reaction?: string | undefined;
|
|
22524
|
-
repliers?: string[] | undefined;
|
|
22525
|
-
} | undefined;
|
|
22526
|
-
last_seen_message?: {
|
|
22527
|
-
id?: string | undefined;
|
|
22528
|
-
timestamp_seconds?: number | undefined;
|
|
22529
|
-
sender_id?: string | undefined;
|
|
22530
|
-
content?: string | undefined;
|
|
22531
|
-
attachment?: string | undefined;
|
|
22532
|
-
referece?: string | undefined;
|
|
22533
|
-
mention?: string | undefined;
|
|
22534
|
-
reaction?: string | undefined;
|
|
22535
|
-
repliers?: string[] | undefined;
|
|
22536
|
-
} | undefined;
|
|
22537
|
-
is_online?: boolean[] | undefined;
|
|
22538
|
-
meeting_code?: string | undefined;
|
|
22539
|
-
count_mess_unread?: number | undefined;
|
|
22540
|
-
active?: number | undefined;
|
|
22541
|
-
last_pin_message?: string | undefined;
|
|
22542
|
-
usernames?: string | undefined;
|
|
22543
|
-
creator_name?: string | undefined;
|
|
22544
|
-
create_time_seconds?: number | undefined;
|
|
22545
|
-
update_time_seconds?: number | undefined;
|
|
22546
|
-
metadata?: string[] | undefined;
|
|
22547
|
-
about_me?: string[] | undefined;
|
|
22548
|
-
clan_name?: string | undefined;
|
|
22549
|
-
app_url?: string | undefined;
|
|
22550
|
-
is_mute?: boolean | undefined;
|
|
22551
|
-
age_restricted?: number | undefined;
|
|
22552
|
-
topic?: string | undefined;
|
|
22553
|
-
e2ee?: number | undefined;
|
|
22554
|
-
}[]>]: never; }) | undefined;
|
|
22555
|
-
page?: number | undefined;
|
|
22556
|
-
limit?: number | undefined;
|
|
22557
|
-
} & { [K_11 in Exclude<keyof I, keyof ListThreadDecs>]: never; }>(base?: I | undefined): ListThreadDecs;
|
|
22558
|
-
fromPartial<I_1 extends {
|
|
22559
|
-
list_thread?: {
|
|
22560
|
-
clan_id?: string | undefined;
|
|
22561
|
-
parrent_id?: string | undefined;
|
|
22562
|
-
channel_id?: string | undefined;
|
|
22563
|
-
category_id?: string | undefined;
|
|
22564
|
-
category_name?: string | undefined;
|
|
22565
|
-
type?: number | undefined;
|
|
22566
|
-
creator_id?: string | undefined;
|
|
22567
|
-
channel_label?: string | undefined;
|
|
22568
|
-
channel_private?: number | undefined;
|
|
22569
|
-
channel_avatar?: string[] | undefined;
|
|
22570
|
-
user_id?: string[] | undefined;
|
|
22571
|
-
last_sent_message?: {
|
|
22572
|
-
id?: string | undefined;
|
|
22573
|
-
timestamp_seconds?: number | undefined;
|
|
22574
|
-
sender_id?: string | undefined;
|
|
22575
|
-
content?: string | undefined;
|
|
22576
|
-
attachment?: string | undefined;
|
|
22577
|
-
referece?: string | undefined;
|
|
22578
|
-
mention?: string | undefined;
|
|
22579
|
-
reaction?: string | undefined;
|
|
22580
|
-
repliers?: string[] | undefined;
|
|
22581
|
-
} | undefined;
|
|
22582
|
-
last_seen_message?: {
|
|
22583
|
-
id?: string | undefined;
|
|
22584
|
-
timestamp_seconds?: number | undefined;
|
|
22585
|
-
sender_id?: string | undefined;
|
|
22586
|
-
content?: string | undefined;
|
|
22587
|
-
attachment?: string | undefined;
|
|
22588
|
-
referece?: string | undefined;
|
|
22589
|
-
mention?: string | undefined;
|
|
22590
|
-
reaction?: string | undefined;
|
|
22591
|
-
repliers?: string[] | undefined;
|
|
22592
|
-
} | undefined;
|
|
22593
|
-
is_online?: boolean[] | undefined;
|
|
22594
|
-
meeting_code?: string | undefined;
|
|
22595
|
-
count_mess_unread?: number | undefined;
|
|
22596
|
-
active?: number | undefined;
|
|
22597
|
-
last_pin_message?: string | undefined;
|
|
22598
|
-
usernames?: string | undefined;
|
|
22599
|
-
creator_name?: string | undefined;
|
|
22600
|
-
create_time_seconds?: number | undefined;
|
|
22601
|
-
update_time_seconds?: number | undefined;
|
|
22602
|
-
metadata?: string[] | undefined;
|
|
22603
|
-
about_me?: string[] | undefined;
|
|
22604
|
-
clan_name?: string | undefined;
|
|
22605
|
-
app_url?: string | undefined;
|
|
22606
|
-
is_mute?: boolean | undefined;
|
|
22607
|
-
age_restricted?: number | undefined;
|
|
22608
|
-
topic?: string | undefined;
|
|
22609
|
-
e2ee?: number | undefined;
|
|
22610
|
-
}[] | undefined;
|
|
22611
|
-
page?: number | undefined;
|
|
22612
|
-
limit?: number | undefined;
|
|
22613
|
-
} & {
|
|
22614
|
-
list_thread?: ({
|
|
22615
|
-
clan_id?: string | undefined;
|
|
22616
|
-
parrent_id?: string | undefined;
|
|
22617
|
-
channel_id?: string | undefined;
|
|
22618
|
-
category_id?: string | undefined;
|
|
22619
|
-
category_name?: string | undefined;
|
|
22620
|
-
type?: number | undefined;
|
|
22621
|
-
creator_id?: string | undefined;
|
|
22622
|
-
channel_label?: string | undefined;
|
|
22623
|
-
channel_private?: number | undefined;
|
|
22624
|
-
channel_avatar?: string[] | undefined;
|
|
22625
|
-
user_id?: string[] | undefined;
|
|
22626
|
-
last_sent_message?: {
|
|
22627
|
-
id?: string | undefined;
|
|
22628
|
-
timestamp_seconds?: number | undefined;
|
|
22629
|
-
sender_id?: string | undefined;
|
|
22630
|
-
content?: string | undefined;
|
|
22631
|
-
attachment?: string | undefined;
|
|
22632
|
-
referece?: string | undefined;
|
|
22633
|
-
mention?: string | undefined;
|
|
22634
|
-
reaction?: string | undefined;
|
|
22635
|
-
repliers?: string[] | undefined;
|
|
22636
|
-
} | undefined;
|
|
22637
|
-
last_seen_message?: {
|
|
22638
|
-
id?: string | undefined;
|
|
22639
|
-
timestamp_seconds?: number | undefined;
|
|
22640
|
-
sender_id?: string | undefined;
|
|
22641
|
-
content?: string | undefined;
|
|
22642
|
-
attachment?: string | undefined;
|
|
22643
|
-
referece?: string | undefined;
|
|
22644
|
-
mention?: string | undefined;
|
|
22645
|
-
reaction?: string | undefined;
|
|
22646
|
-
repliers?: string[] | undefined;
|
|
22647
|
-
} | undefined;
|
|
22648
|
-
is_online?: boolean[] | undefined;
|
|
22649
|
-
meeting_code?: string | undefined;
|
|
22650
|
-
count_mess_unread?: number | undefined;
|
|
22651
|
-
active?: number | undefined;
|
|
22652
|
-
last_pin_message?: string | undefined;
|
|
22653
|
-
usernames?: string | undefined;
|
|
22654
|
-
creator_name?: string | undefined;
|
|
22655
|
-
create_time_seconds?: number | undefined;
|
|
22656
|
-
update_time_seconds?: number | undefined;
|
|
22657
|
-
metadata?: string[] | undefined;
|
|
22658
|
-
about_me?: string[] | undefined;
|
|
22659
|
-
clan_name?: string | undefined;
|
|
22660
|
-
app_url?: string | undefined;
|
|
22661
|
-
is_mute?: boolean | undefined;
|
|
22662
|
-
age_restricted?: number | undefined;
|
|
22663
|
-
topic?: string | undefined;
|
|
22664
|
-
e2ee?: number | undefined;
|
|
22665
|
-
}[] & ({
|
|
22666
|
-
clan_id?: string | undefined;
|
|
22667
|
-
parrent_id?: string | undefined;
|
|
22668
|
-
channel_id?: string | undefined;
|
|
22669
|
-
category_id?: string | undefined;
|
|
22670
|
-
category_name?: string | undefined;
|
|
22671
|
-
type?: number | undefined;
|
|
22672
|
-
creator_id?: string | undefined;
|
|
22673
|
-
channel_label?: string | undefined;
|
|
22674
|
-
channel_private?: number | undefined;
|
|
22675
|
-
channel_avatar?: string[] | undefined;
|
|
22676
|
-
user_id?: string[] | undefined;
|
|
22677
|
-
last_sent_message?: {
|
|
22678
|
-
id?: string | undefined;
|
|
22679
|
-
timestamp_seconds?: number | undefined;
|
|
22680
|
-
sender_id?: string | undefined;
|
|
22681
|
-
content?: string | undefined;
|
|
22682
|
-
attachment?: string | undefined;
|
|
22683
|
-
referece?: string | undefined;
|
|
22684
|
-
mention?: string | undefined;
|
|
22685
|
-
reaction?: string | undefined;
|
|
22686
|
-
repliers?: string[] | undefined;
|
|
22687
|
-
} | undefined;
|
|
22688
|
-
last_seen_message?: {
|
|
22689
|
-
id?: string | undefined;
|
|
22690
|
-
timestamp_seconds?: number | undefined;
|
|
22691
|
-
sender_id?: string | undefined;
|
|
22692
|
-
content?: string | undefined;
|
|
22693
|
-
attachment?: string | undefined;
|
|
22694
|
-
referece?: string | undefined;
|
|
22695
|
-
mention?: string | undefined;
|
|
22696
|
-
reaction?: string | undefined;
|
|
22697
|
-
repliers?: string[] | undefined;
|
|
22698
|
-
} | undefined;
|
|
22699
|
-
is_online?: boolean[] | undefined;
|
|
22700
|
-
meeting_code?: string | undefined;
|
|
22701
|
-
count_mess_unread?: number | undefined;
|
|
22702
|
-
active?: number | undefined;
|
|
22703
|
-
last_pin_message?: string | undefined;
|
|
22704
|
-
usernames?: string | undefined;
|
|
22705
|
-
creator_name?: string | undefined;
|
|
22706
|
-
create_time_seconds?: number | undefined;
|
|
22707
|
-
update_time_seconds?: number | undefined;
|
|
22708
|
-
metadata?: string[] | undefined;
|
|
22709
|
-
about_me?: string[] | undefined;
|
|
22710
|
-
clan_name?: string | undefined;
|
|
22711
|
-
app_url?: string | undefined;
|
|
22712
|
-
is_mute?: boolean | undefined;
|
|
22713
|
-
age_restricted?: number | undefined;
|
|
22714
|
-
topic?: string | undefined;
|
|
22715
|
-
e2ee?: number | undefined;
|
|
22716
|
-
} & {
|
|
22717
|
-
clan_id?: string | undefined;
|
|
22718
|
-
parrent_id?: string | undefined;
|
|
22719
|
-
channel_id?: string | undefined;
|
|
22720
|
-
category_id?: string | undefined;
|
|
22721
|
-
category_name?: string | undefined;
|
|
22722
|
-
type?: number | undefined;
|
|
22723
|
-
creator_id?: string | undefined;
|
|
22724
|
-
channel_label?: string | undefined;
|
|
22725
|
-
channel_private?: number | undefined;
|
|
22726
|
-
channel_avatar?: (string[] & string[] & { [K_12 in Exclude<keyof I_1["list_thread"][number]["channel_avatar"], keyof string[]>]: never; }) | undefined;
|
|
22727
|
-
user_id?: (string[] & string[] & { [K_13 in Exclude<keyof I_1["list_thread"][number]["user_id"], keyof string[]>]: never; }) | undefined;
|
|
22728
|
-
last_sent_message?: ({
|
|
22729
|
-
id?: string | undefined;
|
|
22730
|
-
timestamp_seconds?: number | undefined;
|
|
22731
|
-
sender_id?: string | undefined;
|
|
22732
|
-
content?: string | undefined;
|
|
22733
|
-
attachment?: string | undefined;
|
|
22734
|
-
referece?: string | undefined;
|
|
22735
|
-
mention?: string | undefined;
|
|
22736
|
-
reaction?: string | undefined;
|
|
22737
|
-
repliers?: string[] | undefined;
|
|
22738
|
-
} & {
|
|
22739
|
-
id?: string | undefined;
|
|
22740
|
-
timestamp_seconds?: number | undefined;
|
|
22741
|
-
sender_id?: string | undefined;
|
|
22742
|
-
content?: string | undefined;
|
|
22743
|
-
attachment?: string | undefined;
|
|
22744
|
-
referece?: string | undefined;
|
|
22745
|
-
mention?: string | undefined;
|
|
22746
|
-
reaction?: string | undefined;
|
|
22747
|
-
repliers?: (string[] & string[] & { [K_14 in Exclude<keyof I_1["list_thread"][number]["last_sent_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
22748
|
-
} & { [K_15 in Exclude<keyof I_1["list_thread"][number]["last_sent_message"], keyof ChannelMessageHeader>]: never; }) | undefined;
|
|
22749
|
-
last_seen_message?: ({
|
|
22750
|
-
id?: string | undefined;
|
|
22751
|
-
timestamp_seconds?: number | undefined;
|
|
22752
|
-
sender_id?: string | undefined;
|
|
22753
|
-
content?: string | undefined;
|
|
22754
|
-
attachment?: string | undefined;
|
|
22755
|
-
referece?: string | undefined;
|
|
22756
|
-
mention?: string | undefined;
|
|
22757
|
-
reaction?: string | undefined;
|
|
22758
|
-
repliers?: string[] | undefined;
|
|
22759
|
-
} & {
|
|
22760
|
-
id?: string | undefined;
|
|
22761
|
-
timestamp_seconds?: number | undefined;
|
|
22762
|
-
sender_id?: string | undefined;
|
|
22763
|
-
content?: string | undefined;
|
|
22764
|
-
attachment?: string | undefined;
|
|
22765
|
-
referece?: string | undefined;
|
|
22766
|
-
mention?: string | undefined;
|
|
22767
|
-
reaction?: string | undefined;
|
|
22768
|
-
repliers?: (string[] & string[] & { [K_16 in Exclude<keyof I_1["list_thread"][number]["last_seen_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
22769
|
-
} & { [K_17 in Exclude<keyof I_1["list_thread"][number]["last_seen_message"], keyof ChannelMessageHeader>]: never; }) | undefined;
|
|
22770
|
-
is_online?: (boolean[] & boolean[] & { [K_18 in Exclude<keyof I_1["list_thread"][number]["is_online"], keyof boolean[]>]: never; }) | undefined;
|
|
22771
|
-
meeting_code?: string | undefined;
|
|
22772
|
-
count_mess_unread?: number | undefined;
|
|
22773
|
-
active?: number | undefined;
|
|
22774
|
-
last_pin_message?: string | undefined;
|
|
22775
|
-
usernames?: string | undefined;
|
|
22776
|
-
creator_name?: string | undefined;
|
|
22777
|
-
create_time_seconds?: number | undefined;
|
|
22778
|
-
update_time_seconds?: number | undefined;
|
|
22779
|
-
metadata?: (string[] & string[] & { [K_19 in Exclude<keyof I_1["list_thread"][number]["metadata"], keyof string[]>]: never; }) | undefined;
|
|
22780
|
-
about_me?: (string[] & string[] & { [K_20 in Exclude<keyof I_1["list_thread"][number]["about_me"], keyof string[]>]: never; }) | undefined;
|
|
22781
|
-
clan_name?: string | undefined;
|
|
22782
|
-
app_url?: string | undefined;
|
|
22783
|
-
is_mute?: boolean | undefined;
|
|
22784
|
-
age_restricted?: number | undefined;
|
|
22785
|
-
topic?: string | undefined;
|
|
22786
|
-
e2ee?: number | undefined;
|
|
22787
|
-
} & { [K_21 in Exclude<keyof I_1["list_thread"][number], keyof ChannelDescription>]: never; })[] & { [K_22 in Exclude<keyof I_1["list_thread"], keyof {
|
|
22788
|
-
clan_id?: string | undefined;
|
|
22789
|
-
parrent_id?: string | undefined;
|
|
22790
|
-
channel_id?: string | undefined;
|
|
22791
|
-
category_id?: string | undefined;
|
|
22792
|
-
category_name?: string | undefined;
|
|
22793
|
-
type?: number | undefined;
|
|
22794
|
-
creator_id?: string | undefined;
|
|
22795
|
-
channel_label?: string | undefined;
|
|
22796
|
-
channel_private?: number | undefined;
|
|
22797
|
-
channel_avatar?: string[] | undefined;
|
|
22798
|
-
user_id?: string[] | undefined;
|
|
22799
|
-
last_sent_message?: {
|
|
22800
|
-
id?: string | undefined;
|
|
22801
|
-
timestamp_seconds?: number | undefined;
|
|
22802
|
-
sender_id?: string | undefined;
|
|
22803
|
-
content?: string | undefined;
|
|
22804
|
-
attachment?: string | undefined;
|
|
22805
|
-
referece?: string | undefined;
|
|
22806
|
-
mention?: string | undefined;
|
|
22807
|
-
reaction?: string | undefined;
|
|
22808
|
-
repliers?: string[] | undefined;
|
|
22809
|
-
} | undefined;
|
|
22810
|
-
last_seen_message?: {
|
|
22811
|
-
id?: string | undefined;
|
|
22812
|
-
timestamp_seconds?: number | undefined;
|
|
22813
|
-
sender_id?: string | undefined;
|
|
22814
|
-
content?: string | undefined;
|
|
22815
|
-
attachment?: string | undefined;
|
|
22816
|
-
referece?: string | undefined;
|
|
22817
|
-
mention?: string | undefined;
|
|
22818
|
-
reaction?: string | undefined;
|
|
22819
|
-
repliers?: string[] | undefined;
|
|
22820
|
-
} | undefined;
|
|
22821
|
-
is_online?: boolean[] | undefined;
|
|
22822
|
-
meeting_code?: string | undefined;
|
|
22823
|
-
count_mess_unread?: number | undefined;
|
|
22824
|
-
active?: number | undefined;
|
|
22825
|
-
last_pin_message?: string | undefined;
|
|
22826
|
-
usernames?: string | undefined;
|
|
22827
|
-
creator_name?: string | undefined;
|
|
22828
|
-
create_time_seconds?: number | undefined;
|
|
22829
|
-
update_time_seconds?: number | undefined;
|
|
22830
|
-
metadata?: string[] | undefined;
|
|
22831
|
-
about_me?: string[] | undefined;
|
|
22832
|
-
clan_name?: string | undefined;
|
|
22833
|
-
app_url?: string | undefined;
|
|
22834
|
-
is_mute?: boolean | undefined;
|
|
22835
|
-
age_restricted?: number | undefined;
|
|
22836
|
-
topic?: string | undefined;
|
|
22837
|
-
e2ee?: number | undefined;
|
|
22838
|
-
}[]>]: never; }) | undefined;
|
|
22839
|
-
page?: number | undefined;
|
|
22840
|
-
limit?: number | undefined;
|
|
22841
|
-
} & { [K_23 in Exclude<keyof I_1, keyof ListThreadDecs>]: never; }>(object: I_1): ListThreadDecs;
|
|
22842
|
-
};
|
|
22843
22270
|
type Builtin = Date | Function | Uint8Array | string | number | boolean | undefined;
|
|
22844
22271
|
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 {} ? {
|
|
22845
22272
|
[K in keyof T]?: DeepPartial<T[K]>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "mezon-js-protobuf",
|
|
3
|
-
"version": "1.6.
|
|
3
|
+
"version": "1.6.89",
|
|
4
4
|
"description": "Websocket adapter adding protocol buffer support to the Mezon Javascript client.",
|
|
5
5
|
"main": "dist/mezon-js-protobuf.cjs.js",
|
|
6
6
|
"module": "dist/mezon-js-protobuf.esm.mjs",
|