mezon-js-protobuf 1.6.89 → 1.6.90
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 +31 -2
- package/dist/mezon-js-protobuf/api/api.d.ts +354 -2
- package/dist/mezon-js-protobuf/rtapi/realtime.d.ts +167 -129
- package/dist/mezon-js-protobuf.cjs.js +68 -2
- package/dist/mezon-js-protobuf.esm.mjs +68 -2
- package/package.json +1 -1
- package/rtapi/realtime.ts +85 -1
package/api/api.ts
CHANGED
|
@@ -1710,7 +1710,11 @@ export interface InviteUserRes {
|
|
|
1710
1710
|
/** check user exist */
|
|
1711
1711
|
user_joined: boolean;
|
|
1712
1712
|
/** expiry_time */
|
|
1713
|
-
expiry_time:
|
|
1713
|
+
expiry_time:
|
|
1714
|
+
| Date
|
|
1715
|
+
| undefined;
|
|
1716
|
+
/** */
|
|
1717
|
+
channel_desc: ChannelDescription | undefined;
|
|
1714
1718
|
}
|
|
1715
1719
|
|
|
1716
1720
|
/** Add link invite users to. */
|
|
@@ -15436,7 +15440,15 @@ export const InviteUserRequest = {
|
|
|
15436
15440
|
};
|
|
15437
15441
|
|
|
15438
15442
|
function createBaseInviteUserRes(): InviteUserRes {
|
|
15439
|
-
return {
|
|
15443
|
+
return {
|
|
15444
|
+
clan_id: "",
|
|
15445
|
+
channel_id: "",
|
|
15446
|
+
clan_name: "",
|
|
15447
|
+
channel_label: "",
|
|
15448
|
+
user_joined: false,
|
|
15449
|
+
expiry_time: undefined,
|
|
15450
|
+
channel_desc: undefined,
|
|
15451
|
+
};
|
|
15440
15452
|
}
|
|
15441
15453
|
|
|
15442
15454
|
export const InviteUserRes = {
|
|
@@ -15459,6 +15471,9 @@ export const InviteUserRes = {
|
|
|
15459
15471
|
if (message.expiry_time !== undefined) {
|
|
15460
15472
|
Timestamp.encode(toTimestamp(message.expiry_time), writer.uint32(50).fork()).ldelim();
|
|
15461
15473
|
}
|
|
15474
|
+
if (message.channel_desc !== undefined) {
|
|
15475
|
+
ChannelDescription.encode(message.channel_desc, writer.uint32(58).fork()).ldelim();
|
|
15476
|
+
}
|
|
15462
15477
|
return writer;
|
|
15463
15478
|
},
|
|
15464
15479
|
|
|
@@ -15511,6 +15526,13 @@ export const InviteUserRes = {
|
|
|
15511
15526
|
|
|
15512
15527
|
message.expiry_time = fromTimestamp(Timestamp.decode(reader, reader.uint32()));
|
|
15513
15528
|
continue;
|
|
15529
|
+
case 7:
|
|
15530
|
+
if (tag !== 58) {
|
|
15531
|
+
break;
|
|
15532
|
+
}
|
|
15533
|
+
|
|
15534
|
+
message.channel_desc = ChannelDescription.decode(reader, reader.uint32());
|
|
15535
|
+
continue;
|
|
15514
15536
|
}
|
|
15515
15537
|
if ((tag & 7) === 4 || tag === 0) {
|
|
15516
15538
|
break;
|
|
@@ -15528,6 +15550,7 @@ export const InviteUserRes = {
|
|
|
15528
15550
|
channel_label: isSet(object.channel_label) ? globalThis.String(object.channel_label) : "",
|
|
15529
15551
|
user_joined: isSet(object.user_joined) ? globalThis.Boolean(object.user_joined) : false,
|
|
15530
15552
|
expiry_time: isSet(object.expiry_time) ? fromJsonTimestamp(object.expiry_time) : undefined,
|
|
15553
|
+
channel_desc: isSet(object.channel_desc) ? ChannelDescription.fromJSON(object.channel_desc) : undefined,
|
|
15531
15554
|
};
|
|
15532
15555
|
},
|
|
15533
15556
|
|
|
@@ -15551,6 +15574,9 @@ export const InviteUserRes = {
|
|
|
15551
15574
|
if (message.expiry_time !== undefined) {
|
|
15552
15575
|
obj.expiry_time = message.expiry_time.toISOString();
|
|
15553
15576
|
}
|
|
15577
|
+
if (message.channel_desc !== undefined) {
|
|
15578
|
+
obj.channel_desc = ChannelDescription.toJSON(message.channel_desc);
|
|
15579
|
+
}
|
|
15554
15580
|
return obj;
|
|
15555
15581
|
},
|
|
15556
15582
|
|
|
@@ -15565,6 +15591,9 @@ export const InviteUserRes = {
|
|
|
15565
15591
|
message.channel_label = object.channel_label ?? "";
|
|
15566
15592
|
message.user_joined = object.user_joined ?? false;
|
|
15567
15593
|
message.expiry_time = object.expiry_time ?? undefined;
|
|
15594
|
+
message.channel_desc = (object.channel_desc !== undefined && object.channel_desc !== null)
|
|
15595
|
+
? ChannelDescription.fromPartial(object.channel_desc)
|
|
15596
|
+
: undefined;
|
|
15568
15597
|
return message;
|
|
15569
15598
|
},
|
|
15570
15599
|
};
|
|
@@ -1254,6 +1254,8 @@ export interface InviteUserRes {
|
|
|
1254
1254
|
user_joined: boolean;
|
|
1255
1255
|
/** expiry_time */
|
|
1256
1256
|
expiry_time: Date | undefined;
|
|
1257
|
+
/** */
|
|
1258
|
+
channel_desc: ChannelDescription | undefined;
|
|
1257
1259
|
}
|
|
1258
1260
|
/** Add link invite users to. */
|
|
1259
1261
|
export interface JoinClanChannelRequest {
|
|
@@ -9703,6 +9705,58 @@ export declare const InviteUserRes: {
|
|
|
9703
9705
|
channel_label?: string | undefined;
|
|
9704
9706
|
user_joined?: boolean | undefined;
|
|
9705
9707
|
expiry_time?: Date | undefined;
|
|
9708
|
+
channel_desc?: {
|
|
9709
|
+
clan_id?: string | undefined;
|
|
9710
|
+
parrent_id?: string | undefined;
|
|
9711
|
+
channel_id?: string | undefined;
|
|
9712
|
+
category_id?: string | undefined;
|
|
9713
|
+
category_name?: string | undefined;
|
|
9714
|
+
type?: number | undefined;
|
|
9715
|
+
creator_id?: string | undefined;
|
|
9716
|
+
channel_label?: string | undefined;
|
|
9717
|
+
channel_private?: number | undefined;
|
|
9718
|
+
channel_avatar?: string[] | undefined;
|
|
9719
|
+
user_id?: string[] | undefined;
|
|
9720
|
+
last_sent_message?: {
|
|
9721
|
+
id?: string | undefined;
|
|
9722
|
+
timestamp_seconds?: number | undefined;
|
|
9723
|
+
sender_id?: string | undefined;
|
|
9724
|
+
content?: string | undefined;
|
|
9725
|
+
attachment?: string | undefined;
|
|
9726
|
+
referece?: string | undefined;
|
|
9727
|
+
mention?: string | undefined;
|
|
9728
|
+
reaction?: string | undefined;
|
|
9729
|
+
repliers?: string[] | undefined;
|
|
9730
|
+
} | undefined;
|
|
9731
|
+
last_seen_message?: {
|
|
9732
|
+
id?: string | undefined;
|
|
9733
|
+
timestamp_seconds?: number | undefined;
|
|
9734
|
+
sender_id?: string | undefined;
|
|
9735
|
+
content?: string | undefined;
|
|
9736
|
+
attachment?: string | undefined;
|
|
9737
|
+
referece?: string | undefined;
|
|
9738
|
+
mention?: string | undefined;
|
|
9739
|
+
reaction?: string | undefined;
|
|
9740
|
+
repliers?: string[] | undefined;
|
|
9741
|
+
} | undefined;
|
|
9742
|
+
is_online?: boolean[] | undefined;
|
|
9743
|
+
meeting_code?: string | undefined;
|
|
9744
|
+
count_mess_unread?: number | undefined;
|
|
9745
|
+
active?: number | undefined;
|
|
9746
|
+
last_pin_message?: string | undefined;
|
|
9747
|
+
usernames?: string | undefined;
|
|
9748
|
+
creator_name?: string | undefined;
|
|
9749
|
+
create_time_seconds?: number | undefined;
|
|
9750
|
+
update_time_seconds?: number | undefined;
|
|
9751
|
+
metadata?: string[] | undefined;
|
|
9752
|
+
about_me?: string[] | undefined;
|
|
9753
|
+
clan_name?: string | undefined;
|
|
9754
|
+
app_url?: string | undefined;
|
|
9755
|
+
is_mute?: boolean | undefined;
|
|
9756
|
+
age_restricted?: number | undefined;
|
|
9757
|
+
topic?: string | undefined;
|
|
9758
|
+
e2ee?: number | undefined;
|
|
9759
|
+
} | undefined;
|
|
9706
9760
|
} & {
|
|
9707
9761
|
clan_id?: string | undefined;
|
|
9708
9762
|
channel_id?: string | undefined;
|
|
@@ -9710,7 +9764,130 @@ export declare const InviteUserRes: {
|
|
|
9710
9764
|
channel_label?: string | undefined;
|
|
9711
9765
|
user_joined?: boolean | undefined;
|
|
9712
9766
|
expiry_time?: Date | undefined;
|
|
9713
|
-
|
|
9767
|
+
channel_desc?: ({
|
|
9768
|
+
clan_id?: string | undefined;
|
|
9769
|
+
parrent_id?: string | undefined;
|
|
9770
|
+
channel_id?: string | undefined;
|
|
9771
|
+
category_id?: string | undefined;
|
|
9772
|
+
category_name?: string | undefined;
|
|
9773
|
+
type?: number | undefined;
|
|
9774
|
+
creator_id?: string | undefined;
|
|
9775
|
+
channel_label?: string | undefined;
|
|
9776
|
+
channel_private?: number | undefined;
|
|
9777
|
+
channel_avatar?: string[] | undefined;
|
|
9778
|
+
user_id?: string[] | undefined;
|
|
9779
|
+
last_sent_message?: {
|
|
9780
|
+
id?: string | undefined;
|
|
9781
|
+
timestamp_seconds?: number | undefined;
|
|
9782
|
+
sender_id?: string | undefined;
|
|
9783
|
+
content?: string | undefined;
|
|
9784
|
+
attachment?: string | undefined;
|
|
9785
|
+
referece?: string | undefined;
|
|
9786
|
+
mention?: string | undefined;
|
|
9787
|
+
reaction?: string | undefined;
|
|
9788
|
+
repliers?: string[] | undefined;
|
|
9789
|
+
} | undefined;
|
|
9790
|
+
last_seen_message?: {
|
|
9791
|
+
id?: string | undefined;
|
|
9792
|
+
timestamp_seconds?: number | undefined;
|
|
9793
|
+
sender_id?: string | undefined;
|
|
9794
|
+
content?: string | undefined;
|
|
9795
|
+
attachment?: string | undefined;
|
|
9796
|
+
referece?: string | undefined;
|
|
9797
|
+
mention?: string | undefined;
|
|
9798
|
+
reaction?: string | undefined;
|
|
9799
|
+
repliers?: string[] | undefined;
|
|
9800
|
+
} | undefined;
|
|
9801
|
+
is_online?: boolean[] | undefined;
|
|
9802
|
+
meeting_code?: string | undefined;
|
|
9803
|
+
count_mess_unread?: number | undefined;
|
|
9804
|
+
active?: number | undefined;
|
|
9805
|
+
last_pin_message?: string | undefined;
|
|
9806
|
+
usernames?: string | undefined;
|
|
9807
|
+
creator_name?: string | undefined;
|
|
9808
|
+
create_time_seconds?: number | undefined;
|
|
9809
|
+
update_time_seconds?: number | undefined;
|
|
9810
|
+
metadata?: string[] | undefined;
|
|
9811
|
+
about_me?: string[] | undefined;
|
|
9812
|
+
clan_name?: string | undefined;
|
|
9813
|
+
app_url?: string | undefined;
|
|
9814
|
+
is_mute?: boolean | undefined;
|
|
9815
|
+
age_restricted?: number | undefined;
|
|
9816
|
+
topic?: string | undefined;
|
|
9817
|
+
e2ee?: number | undefined;
|
|
9818
|
+
} & {
|
|
9819
|
+
clan_id?: string | undefined;
|
|
9820
|
+
parrent_id?: string | undefined;
|
|
9821
|
+
channel_id?: string | undefined;
|
|
9822
|
+
category_id?: string | undefined;
|
|
9823
|
+
category_name?: string | undefined;
|
|
9824
|
+
type?: number | undefined;
|
|
9825
|
+
creator_id?: string | undefined;
|
|
9826
|
+
channel_label?: string | undefined;
|
|
9827
|
+
channel_private?: number | undefined;
|
|
9828
|
+
channel_avatar?: (string[] & string[] & { [K in Exclude<keyof I["channel_desc"]["channel_avatar"], keyof string[]>]: never; }) | undefined;
|
|
9829
|
+
user_id?: (string[] & string[] & { [K_1 in Exclude<keyof I["channel_desc"]["user_id"], keyof string[]>]: never; }) | undefined;
|
|
9830
|
+
last_sent_message?: ({
|
|
9831
|
+
id?: string | undefined;
|
|
9832
|
+
timestamp_seconds?: number | undefined;
|
|
9833
|
+
sender_id?: string | undefined;
|
|
9834
|
+
content?: string | undefined;
|
|
9835
|
+
attachment?: string | undefined;
|
|
9836
|
+
referece?: string | undefined;
|
|
9837
|
+
mention?: string | undefined;
|
|
9838
|
+
reaction?: string | undefined;
|
|
9839
|
+
repliers?: string[] | undefined;
|
|
9840
|
+
} & {
|
|
9841
|
+
id?: string | undefined;
|
|
9842
|
+
timestamp_seconds?: number | undefined;
|
|
9843
|
+
sender_id?: string | undefined;
|
|
9844
|
+
content?: string | undefined;
|
|
9845
|
+
attachment?: string | undefined;
|
|
9846
|
+
referece?: string | undefined;
|
|
9847
|
+
mention?: string | undefined;
|
|
9848
|
+
reaction?: string | undefined;
|
|
9849
|
+
repliers?: (string[] & string[] & { [K_2 in Exclude<keyof I["channel_desc"]["last_sent_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
9850
|
+
} & { [K_3 in Exclude<keyof I["channel_desc"]["last_sent_message"], keyof ChannelMessageHeader>]: never; }) | undefined;
|
|
9851
|
+
last_seen_message?: ({
|
|
9852
|
+
id?: string | undefined;
|
|
9853
|
+
timestamp_seconds?: number | undefined;
|
|
9854
|
+
sender_id?: string | undefined;
|
|
9855
|
+
content?: string | undefined;
|
|
9856
|
+
attachment?: string | undefined;
|
|
9857
|
+
referece?: string | undefined;
|
|
9858
|
+
mention?: string | undefined;
|
|
9859
|
+
reaction?: string | undefined;
|
|
9860
|
+
repliers?: string[] | undefined;
|
|
9861
|
+
} & {
|
|
9862
|
+
id?: string | undefined;
|
|
9863
|
+
timestamp_seconds?: number | undefined;
|
|
9864
|
+
sender_id?: string | undefined;
|
|
9865
|
+
content?: string | undefined;
|
|
9866
|
+
attachment?: string | undefined;
|
|
9867
|
+
referece?: string | undefined;
|
|
9868
|
+
mention?: string | undefined;
|
|
9869
|
+
reaction?: string | undefined;
|
|
9870
|
+
repliers?: (string[] & string[] & { [K_4 in Exclude<keyof I["channel_desc"]["last_seen_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
9871
|
+
} & { [K_5 in Exclude<keyof I["channel_desc"]["last_seen_message"], keyof ChannelMessageHeader>]: never; }) | undefined;
|
|
9872
|
+
is_online?: (boolean[] & boolean[] & { [K_6 in Exclude<keyof I["channel_desc"]["is_online"], keyof boolean[]>]: never; }) | undefined;
|
|
9873
|
+
meeting_code?: string | undefined;
|
|
9874
|
+
count_mess_unread?: number | undefined;
|
|
9875
|
+
active?: number | undefined;
|
|
9876
|
+
last_pin_message?: string | undefined;
|
|
9877
|
+
usernames?: string | undefined;
|
|
9878
|
+
creator_name?: string | undefined;
|
|
9879
|
+
create_time_seconds?: number | undefined;
|
|
9880
|
+
update_time_seconds?: number | undefined;
|
|
9881
|
+
metadata?: (string[] & string[] & { [K_7 in Exclude<keyof I["channel_desc"]["metadata"], keyof string[]>]: never; }) | undefined;
|
|
9882
|
+
about_me?: (string[] & string[] & { [K_8 in Exclude<keyof I["channel_desc"]["about_me"], keyof string[]>]: never; }) | undefined;
|
|
9883
|
+
clan_name?: string | undefined;
|
|
9884
|
+
app_url?: string | undefined;
|
|
9885
|
+
is_mute?: boolean | undefined;
|
|
9886
|
+
age_restricted?: number | undefined;
|
|
9887
|
+
topic?: string | undefined;
|
|
9888
|
+
e2ee?: number | undefined;
|
|
9889
|
+
} & { [K_9 in Exclude<keyof I["channel_desc"], keyof ChannelDescription>]: never; }) | undefined;
|
|
9890
|
+
} & { [K_10 in Exclude<keyof I, keyof InviteUserRes>]: never; }>(base?: I | undefined): InviteUserRes;
|
|
9714
9891
|
fromPartial<I_1 extends {
|
|
9715
9892
|
clan_id?: string | undefined;
|
|
9716
9893
|
channel_id?: string | undefined;
|
|
@@ -9718,6 +9895,58 @@ export declare const InviteUserRes: {
|
|
|
9718
9895
|
channel_label?: string | undefined;
|
|
9719
9896
|
user_joined?: boolean | undefined;
|
|
9720
9897
|
expiry_time?: Date | undefined;
|
|
9898
|
+
channel_desc?: {
|
|
9899
|
+
clan_id?: string | undefined;
|
|
9900
|
+
parrent_id?: string | undefined;
|
|
9901
|
+
channel_id?: string | undefined;
|
|
9902
|
+
category_id?: string | undefined;
|
|
9903
|
+
category_name?: string | undefined;
|
|
9904
|
+
type?: number | undefined;
|
|
9905
|
+
creator_id?: string | undefined;
|
|
9906
|
+
channel_label?: string | undefined;
|
|
9907
|
+
channel_private?: number | undefined;
|
|
9908
|
+
channel_avatar?: string[] | undefined;
|
|
9909
|
+
user_id?: string[] | undefined;
|
|
9910
|
+
last_sent_message?: {
|
|
9911
|
+
id?: string | undefined;
|
|
9912
|
+
timestamp_seconds?: number | undefined;
|
|
9913
|
+
sender_id?: string | undefined;
|
|
9914
|
+
content?: string | undefined;
|
|
9915
|
+
attachment?: string | undefined;
|
|
9916
|
+
referece?: string | undefined;
|
|
9917
|
+
mention?: string | undefined;
|
|
9918
|
+
reaction?: string | undefined;
|
|
9919
|
+
repliers?: string[] | undefined;
|
|
9920
|
+
} | undefined;
|
|
9921
|
+
last_seen_message?: {
|
|
9922
|
+
id?: string | undefined;
|
|
9923
|
+
timestamp_seconds?: number | undefined;
|
|
9924
|
+
sender_id?: string | undefined;
|
|
9925
|
+
content?: string | undefined;
|
|
9926
|
+
attachment?: string | undefined;
|
|
9927
|
+
referece?: string | undefined;
|
|
9928
|
+
mention?: string | undefined;
|
|
9929
|
+
reaction?: string | undefined;
|
|
9930
|
+
repliers?: string[] | undefined;
|
|
9931
|
+
} | undefined;
|
|
9932
|
+
is_online?: boolean[] | undefined;
|
|
9933
|
+
meeting_code?: string | undefined;
|
|
9934
|
+
count_mess_unread?: number | undefined;
|
|
9935
|
+
active?: number | undefined;
|
|
9936
|
+
last_pin_message?: string | undefined;
|
|
9937
|
+
usernames?: string | undefined;
|
|
9938
|
+
creator_name?: string | undefined;
|
|
9939
|
+
create_time_seconds?: number | undefined;
|
|
9940
|
+
update_time_seconds?: number | undefined;
|
|
9941
|
+
metadata?: string[] | undefined;
|
|
9942
|
+
about_me?: string[] | undefined;
|
|
9943
|
+
clan_name?: string | undefined;
|
|
9944
|
+
app_url?: string | undefined;
|
|
9945
|
+
is_mute?: boolean | undefined;
|
|
9946
|
+
age_restricted?: number | undefined;
|
|
9947
|
+
topic?: string | undefined;
|
|
9948
|
+
e2ee?: number | undefined;
|
|
9949
|
+
} | undefined;
|
|
9721
9950
|
} & {
|
|
9722
9951
|
clan_id?: string | undefined;
|
|
9723
9952
|
channel_id?: string | undefined;
|
|
@@ -9725,7 +9954,130 @@ export declare const InviteUserRes: {
|
|
|
9725
9954
|
channel_label?: string | undefined;
|
|
9726
9955
|
user_joined?: boolean | undefined;
|
|
9727
9956
|
expiry_time?: Date | undefined;
|
|
9728
|
-
|
|
9957
|
+
channel_desc?: ({
|
|
9958
|
+
clan_id?: string | undefined;
|
|
9959
|
+
parrent_id?: string | undefined;
|
|
9960
|
+
channel_id?: string | undefined;
|
|
9961
|
+
category_id?: string | undefined;
|
|
9962
|
+
category_name?: string | undefined;
|
|
9963
|
+
type?: number | undefined;
|
|
9964
|
+
creator_id?: string | undefined;
|
|
9965
|
+
channel_label?: string | undefined;
|
|
9966
|
+
channel_private?: number | undefined;
|
|
9967
|
+
channel_avatar?: string[] | undefined;
|
|
9968
|
+
user_id?: string[] | undefined;
|
|
9969
|
+
last_sent_message?: {
|
|
9970
|
+
id?: string | undefined;
|
|
9971
|
+
timestamp_seconds?: number | undefined;
|
|
9972
|
+
sender_id?: string | undefined;
|
|
9973
|
+
content?: string | undefined;
|
|
9974
|
+
attachment?: string | undefined;
|
|
9975
|
+
referece?: string | undefined;
|
|
9976
|
+
mention?: string | undefined;
|
|
9977
|
+
reaction?: string | undefined;
|
|
9978
|
+
repliers?: string[] | undefined;
|
|
9979
|
+
} | undefined;
|
|
9980
|
+
last_seen_message?: {
|
|
9981
|
+
id?: string | undefined;
|
|
9982
|
+
timestamp_seconds?: number | undefined;
|
|
9983
|
+
sender_id?: string | undefined;
|
|
9984
|
+
content?: string | undefined;
|
|
9985
|
+
attachment?: string | undefined;
|
|
9986
|
+
referece?: string | undefined;
|
|
9987
|
+
mention?: string | undefined;
|
|
9988
|
+
reaction?: string | undefined;
|
|
9989
|
+
repliers?: string[] | undefined;
|
|
9990
|
+
} | undefined;
|
|
9991
|
+
is_online?: boolean[] | undefined;
|
|
9992
|
+
meeting_code?: string | undefined;
|
|
9993
|
+
count_mess_unread?: number | undefined;
|
|
9994
|
+
active?: number | undefined;
|
|
9995
|
+
last_pin_message?: string | undefined;
|
|
9996
|
+
usernames?: string | undefined;
|
|
9997
|
+
creator_name?: string | undefined;
|
|
9998
|
+
create_time_seconds?: number | undefined;
|
|
9999
|
+
update_time_seconds?: number | undefined;
|
|
10000
|
+
metadata?: string[] | undefined;
|
|
10001
|
+
about_me?: string[] | undefined;
|
|
10002
|
+
clan_name?: string | undefined;
|
|
10003
|
+
app_url?: string | undefined;
|
|
10004
|
+
is_mute?: boolean | undefined;
|
|
10005
|
+
age_restricted?: number | undefined;
|
|
10006
|
+
topic?: string | undefined;
|
|
10007
|
+
e2ee?: number | undefined;
|
|
10008
|
+
} & {
|
|
10009
|
+
clan_id?: string | undefined;
|
|
10010
|
+
parrent_id?: string | undefined;
|
|
10011
|
+
channel_id?: string | undefined;
|
|
10012
|
+
category_id?: string | undefined;
|
|
10013
|
+
category_name?: string | undefined;
|
|
10014
|
+
type?: number | undefined;
|
|
10015
|
+
creator_id?: string | undefined;
|
|
10016
|
+
channel_label?: string | undefined;
|
|
10017
|
+
channel_private?: number | undefined;
|
|
10018
|
+
channel_avatar?: (string[] & string[] & { [K_11 in Exclude<keyof I_1["channel_desc"]["channel_avatar"], keyof string[]>]: never; }) | undefined;
|
|
10019
|
+
user_id?: (string[] & string[] & { [K_12 in Exclude<keyof I_1["channel_desc"]["user_id"], keyof string[]>]: never; }) | undefined;
|
|
10020
|
+
last_sent_message?: ({
|
|
10021
|
+
id?: string | undefined;
|
|
10022
|
+
timestamp_seconds?: number | undefined;
|
|
10023
|
+
sender_id?: string | undefined;
|
|
10024
|
+
content?: string | undefined;
|
|
10025
|
+
attachment?: string | undefined;
|
|
10026
|
+
referece?: string | undefined;
|
|
10027
|
+
mention?: string | undefined;
|
|
10028
|
+
reaction?: string | undefined;
|
|
10029
|
+
repliers?: string[] | undefined;
|
|
10030
|
+
} & {
|
|
10031
|
+
id?: string | undefined;
|
|
10032
|
+
timestamp_seconds?: number | undefined;
|
|
10033
|
+
sender_id?: string | undefined;
|
|
10034
|
+
content?: string | undefined;
|
|
10035
|
+
attachment?: string | undefined;
|
|
10036
|
+
referece?: string | undefined;
|
|
10037
|
+
mention?: string | undefined;
|
|
10038
|
+
reaction?: string | undefined;
|
|
10039
|
+
repliers?: (string[] & string[] & { [K_13 in Exclude<keyof I_1["channel_desc"]["last_sent_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
10040
|
+
} & { [K_14 in Exclude<keyof I_1["channel_desc"]["last_sent_message"], keyof ChannelMessageHeader>]: never; }) | undefined;
|
|
10041
|
+
last_seen_message?: ({
|
|
10042
|
+
id?: string | undefined;
|
|
10043
|
+
timestamp_seconds?: number | undefined;
|
|
10044
|
+
sender_id?: string | undefined;
|
|
10045
|
+
content?: string | undefined;
|
|
10046
|
+
attachment?: string | undefined;
|
|
10047
|
+
referece?: string | undefined;
|
|
10048
|
+
mention?: string | undefined;
|
|
10049
|
+
reaction?: string | undefined;
|
|
10050
|
+
repliers?: string[] | undefined;
|
|
10051
|
+
} & {
|
|
10052
|
+
id?: string | undefined;
|
|
10053
|
+
timestamp_seconds?: number | undefined;
|
|
10054
|
+
sender_id?: string | undefined;
|
|
10055
|
+
content?: string | undefined;
|
|
10056
|
+
attachment?: string | undefined;
|
|
10057
|
+
referece?: string | undefined;
|
|
10058
|
+
mention?: string | undefined;
|
|
10059
|
+
reaction?: string | undefined;
|
|
10060
|
+
repliers?: (string[] & string[] & { [K_15 in Exclude<keyof I_1["channel_desc"]["last_seen_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
10061
|
+
} & { [K_16 in Exclude<keyof I_1["channel_desc"]["last_seen_message"], keyof ChannelMessageHeader>]: never; }) | undefined;
|
|
10062
|
+
is_online?: (boolean[] & boolean[] & { [K_17 in Exclude<keyof I_1["channel_desc"]["is_online"], keyof boolean[]>]: never; }) | undefined;
|
|
10063
|
+
meeting_code?: string | undefined;
|
|
10064
|
+
count_mess_unread?: number | undefined;
|
|
10065
|
+
active?: number | undefined;
|
|
10066
|
+
last_pin_message?: string | undefined;
|
|
10067
|
+
usernames?: string | undefined;
|
|
10068
|
+
creator_name?: string | undefined;
|
|
10069
|
+
create_time_seconds?: number | undefined;
|
|
10070
|
+
update_time_seconds?: number | undefined;
|
|
10071
|
+
metadata?: (string[] & string[] & { [K_18 in Exclude<keyof I_1["channel_desc"]["metadata"], keyof string[]>]: never; }) | undefined;
|
|
10072
|
+
about_me?: (string[] & string[] & { [K_19 in Exclude<keyof I_1["channel_desc"]["about_me"], keyof string[]>]: never; }) | undefined;
|
|
10073
|
+
clan_name?: string | undefined;
|
|
10074
|
+
app_url?: string | undefined;
|
|
10075
|
+
is_mute?: boolean | undefined;
|
|
10076
|
+
age_restricted?: number | undefined;
|
|
10077
|
+
topic?: string | undefined;
|
|
10078
|
+
e2ee?: number | undefined;
|
|
10079
|
+
} & { [K_20 in Exclude<keyof I_1["channel_desc"], keyof ChannelDescription>]: never; }) | undefined;
|
|
10080
|
+
} & { [K_21 in Exclude<keyof I_1, keyof InviteUserRes>]: never; }>(object: I_1): InviteUserRes;
|
|
9729
10081
|
};
|
|
9730
10082
|
export declare const JoinClanChannelRequest: {
|
|
9731
10083
|
encode(message: JoinClanChannelRequest, writer?: _m0.Writer): _m0.Writer;
|