mezon-js-protobuf 1.4.67 → 1.4.69
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 +23 -11
- package/dist/mezon-js-protobuf/api/api.d.ts +16 -0
- package/dist/mezon-js-protobuf/rtapi/realtime.d.ts +186 -12
- package/dist/mezon-js-protobuf.cjs.js +85 -28
- package/dist/mezon-js-protobuf.esm.mjs +85 -28
- package/package.json +1 -1
- package/rtapi/realtime.ts +152 -21
package/api/api.ts
CHANGED
|
@@ -540,6 +540,8 @@ export interface ChannelMessage {
|
|
|
540
540
|
/** The category name */
|
|
541
541
|
category_name: string;
|
|
542
542
|
/** The clan nick name */
|
|
543
|
+
display_name: string;
|
|
544
|
+
/** The clan nick name */
|
|
543
545
|
clan_nick: string;
|
|
544
546
|
/** Emoji reaction */
|
|
545
547
|
reactions: string;
|
|
@@ -5363,6 +5365,7 @@ function createBaseChannelMessage(): ChannelMessage {
|
|
|
5363
5365
|
channel_label: "",
|
|
5364
5366
|
clan_logo: "",
|
|
5365
5367
|
category_name: "",
|
|
5368
|
+
display_name: "",
|
|
5366
5369
|
clan_nick: "",
|
|
5367
5370
|
reactions: "",
|
|
5368
5371
|
mentions: "",
|
|
@@ -5413,23 +5416,26 @@ export const ChannelMessage = {
|
|
|
5413
5416
|
if (message.category_name !== "") {
|
|
5414
5417
|
writer.uint32(106).string(message.category_name);
|
|
5415
5418
|
}
|
|
5419
|
+
if (message.display_name !== "") {
|
|
5420
|
+
writer.uint32(114).string(message.display_name);
|
|
5421
|
+
}
|
|
5416
5422
|
if (message.clan_nick !== "") {
|
|
5417
|
-
writer.uint32(
|
|
5423
|
+
writer.uint32(122).string(message.clan_nick);
|
|
5418
5424
|
}
|
|
5419
5425
|
if (message.reactions !== "") {
|
|
5420
|
-
writer.uint32(
|
|
5426
|
+
writer.uint32(130).string(message.reactions);
|
|
5421
5427
|
}
|
|
5422
5428
|
if (message.mentions !== "") {
|
|
5423
|
-
writer.uint32(
|
|
5429
|
+
writer.uint32(138).string(message.mentions);
|
|
5424
5430
|
}
|
|
5425
5431
|
if (message.attachments !== "") {
|
|
5426
|
-
writer.uint32(
|
|
5432
|
+
writer.uint32(146).string(message.attachments);
|
|
5427
5433
|
}
|
|
5428
5434
|
if (message.references !== "") {
|
|
5429
|
-
writer.uint32(
|
|
5435
|
+
writer.uint32(154).string(message.references);
|
|
5430
5436
|
}
|
|
5431
5437
|
if (message.referenced_message !== "") {
|
|
5432
|
-
writer.uint32(
|
|
5438
|
+
writer.uint32(162).string(message.referenced_message);
|
|
5433
5439
|
}
|
|
5434
5440
|
return writer;
|
|
5435
5441
|
},
|
|
@@ -5481,21 +5487,24 @@ export const ChannelMessage = {
|
|
|
5481
5487
|
message.category_name = reader.string();
|
|
5482
5488
|
break;
|
|
5483
5489
|
case 14:
|
|
5484
|
-
message.
|
|
5490
|
+
message.display_name = reader.string();
|
|
5485
5491
|
break;
|
|
5486
5492
|
case 15:
|
|
5487
|
-
message.
|
|
5493
|
+
message.clan_nick = reader.string();
|
|
5488
5494
|
break;
|
|
5489
5495
|
case 16:
|
|
5490
|
-
message.
|
|
5496
|
+
message.reactions = reader.string();
|
|
5491
5497
|
break;
|
|
5492
5498
|
case 17:
|
|
5493
|
-
message.
|
|
5499
|
+
message.mentions = reader.string();
|
|
5494
5500
|
break;
|
|
5495
5501
|
case 18:
|
|
5496
|
-
message.
|
|
5502
|
+
message.attachments = reader.string();
|
|
5497
5503
|
break;
|
|
5498
5504
|
case 19:
|
|
5505
|
+
message.references = reader.string();
|
|
5506
|
+
break;
|
|
5507
|
+
case 20:
|
|
5499
5508
|
message.referenced_message = reader.string();
|
|
5500
5509
|
break;
|
|
5501
5510
|
default:
|
|
@@ -5521,6 +5530,7 @@ export const ChannelMessage = {
|
|
|
5521
5530
|
channel_label: isSet(object.channel_label) ? String(object.channel_label) : "",
|
|
5522
5531
|
clan_logo: isSet(object.clan_logo) ? String(object.clan_logo) : "",
|
|
5523
5532
|
category_name: isSet(object.category_name) ? String(object.category_name) : "",
|
|
5533
|
+
display_name: isSet(object.display_name) ? String(object.display_name) : "",
|
|
5524
5534
|
clan_nick: isSet(object.clan_nick) ? String(object.clan_nick) : "",
|
|
5525
5535
|
reactions: isSet(object.reactions) ? String(object.reactions) : "",
|
|
5526
5536
|
mentions: isSet(object.mentions) ? String(object.mentions) : "",
|
|
@@ -5545,6 +5555,7 @@ export const ChannelMessage = {
|
|
|
5545
5555
|
message.channel_label !== undefined && (obj.channel_label = message.channel_label);
|
|
5546
5556
|
message.clan_logo !== undefined && (obj.clan_logo = message.clan_logo);
|
|
5547
5557
|
message.category_name !== undefined && (obj.category_name = message.category_name);
|
|
5558
|
+
message.display_name !== undefined && (obj.display_name = message.display_name);
|
|
5548
5559
|
message.clan_nick !== undefined && (obj.clan_nick = message.clan_nick);
|
|
5549
5560
|
message.reactions !== undefined && (obj.reactions = message.reactions);
|
|
5550
5561
|
message.mentions !== undefined && (obj.mentions = message.mentions);
|
|
@@ -5573,6 +5584,7 @@ export const ChannelMessage = {
|
|
|
5573
5584
|
message.channel_label = object.channel_label ?? "";
|
|
5574
5585
|
message.clan_logo = object.clan_logo ?? "";
|
|
5575
5586
|
message.category_name = object.category_name ?? "";
|
|
5587
|
+
message.display_name = object.display_name ?? "";
|
|
5576
5588
|
message.clan_nick = object.clan_nick ?? "";
|
|
5577
5589
|
message.reactions = object.reactions ?? "";
|
|
5578
5590
|
message.mentions = object.mentions ?? "";
|
|
@@ -364,6 +364,8 @@ export interface ChannelMessage {
|
|
|
364
364
|
/** The category name */
|
|
365
365
|
category_name: string;
|
|
366
366
|
/** The clan nick name */
|
|
367
|
+
display_name: string;
|
|
368
|
+
/** The clan nick name */
|
|
367
369
|
clan_nick: string;
|
|
368
370
|
/** Emoji reaction */
|
|
369
371
|
reactions: string;
|
|
@@ -3530,6 +3532,7 @@ export declare const ChannelMessage: {
|
|
|
3530
3532
|
channel_label?: string | undefined;
|
|
3531
3533
|
clan_logo?: string | undefined;
|
|
3532
3534
|
category_name?: string | undefined;
|
|
3535
|
+
display_name?: string | undefined;
|
|
3533
3536
|
clan_nick?: string | undefined;
|
|
3534
3537
|
reactions?: string | undefined;
|
|
3535
3538
|
mentions?: string | undefined;
|
|
@@ -3550,6 +3553,7 @@ export declare const ChannelMessage: {
|
|
|
3550
3553
|
channel_label?: string | undefined;
|
|
3551
3554
|
clan_logo?: string | undefined;
|
|
3552
3555
|
category_name?: string | undefined;
|
|
3556
|
+
display_name?: string | undefined;
|
|
3553
3557
|
clan_nick?: string | undefined;
|
|
3554
3558
|
reactions?: string | undefined;
|
|
3555
3559
|
mentions?: string | undefined;
|
|
@@ -3571,6 +3575,7 @@ export declare const ChannelMessage: {
|
|
|
3571
3575
|
channel_label?: string | undefined;
|
|
3572
3576
|
clan_logo?: string | undefined;
|
|
3573
3577
|
category_name?: string | undefined;
|
|
3578
|
+
display_name?: string | undefined;
|
|
3574
3579
|
clan_nick?: string | undefined;
|
|
3575
3580
|
reactions?: string | undefined;
|
|
3576
3581
|
mentions?: string | undefined;
|
|
@@ -3591,6 +3596,7 @@ export declare const ChannelMessage: {
|
|
|
3591
3596
|
channel_label?: string | undefined;
|
|
3592
3597
|
clan_logo?: string | undefined;
|
|
3593
3598
|
category_name?: string | undefined;
|
|
3599
|
+
display_name?: string | undefined;
|
|
3594
3600
|
clan_nick?: string | undefined;
|
|
3595
3601
|
reactions?: string | undefined;
|
|
3596
3602
|
mentions?: string | undefined;
|
|
@@ -3815,6 +3821,7 @@ export declare const ChannelMessageList: {
|
|
|
3815
3821
|
channel_label?: string | undefined;
|
|
3816
3822
|
clan_logo?: string | undefined;
|
|
3817
3823
|
category_name?: string | undefined;
|
|
3824
|
+
display_name?: string | undefined;
|
|
3818
3825
|
clan_nick?: string | undefined;
|
|
3819
3826
|
reactions?: string | undefined;
|
|
3820
3827
|
mentions?: string | undefined;
|
|
@@ -3847,6 +3854,7 @@ export declare const ChannelMessageList: {
|
|
|
3847
3854
|
channel_label?: string | undefined;
|
|
3848
3855
|
clan_logo?: string | undefined;
|
|
3849
3856
|
category_name?: string | undefined;
|
|
3857
|
+
display_name?: string | undefined;
|
|
3850
3858
|
clan_nick?: string | undefined;
|
|
3851
3859
|
reactions?: string | undefined;
|
|
3852
3860
|
mentions?: string | undefined;
|
|
@@ -3867,6 +3875,7 @@ export declare const ChannelMessageList: {
|
|
|
3867
3875
|
channel_label?: string | undefined;
|
|
3868
3876
|
clan_logo?: string | undefined;
|
|
3869
3877
|
category_name?: string | undefined;
|
|
3878
|
+
display_name?: string | undefined;
|
|
3870
3879
|
clan_nick?: string | undefined;
|
|
3871
3880
|
reactions?: string | undefined;
|
|
3872
3881
|
mentions?: string | undefined;
|
|
@@ -3887,6 +3896,7 @@ export declare const ChannelMessageList: {
|
|
|
3887
3896
|
channel_label?: string | undefined;
|
|
3888
3897
|
clan_logo?: string | undefined;
|
|
3889
3898
|
category_name?: string | undefined;
|
|
3899
|
+
display_name?: string | undefined;
|
|
3890
3900
|
clan_nick?: string | undefined;
|
|
3891
3901
|
reactions?: string | undefined;
|
|
3892
3902
|
mentions?: string | undefined;
|
|
@@ -3907,6 +3917,7 @@ export declare const ChannelMessageList: {
|
|
|
3907
3917
|
channel_label?: string | undefined;
|
|
3908
3918
|
clan_logo?: string | undefined;
|
|
3909
3919
|
category_name?: string | undefined;
|
|
3920
|
+
display_name?: string | undefined;
|
|
3910
3921
|
clan_nick?: string | undefined;
|
|
3911
3922
|
reactions?: string | undefined;
|
|
3912
3923
|
mentions?: string | undefined;
|
|
@@ -3949,6 +3960,7 @@ export declare const ChannelMessageList: {
|
|
|
3949
3960
|
channel_label?: string | undefined;
|
|
3950
3961
|
clan_logo?: string | undefined;
|
|
3951
3962
|
category_name?: string | undefined;
|
|
3963
|
+
display_name?: string | undefined;
|
|
3952
3964
|
clan_nick?: string | undefined;
|
|
3953
3965
|
reactions?: string | undefined;
|
|
3954
3966
|
mentions?: string | undefined;
|
|
@@ -3981,6 +3993,7 @@ export declare const ChannelMessageList: {
|
|
|
3981
3993
|
channel_label?: string | undefined;
|
|
3982
3994
|
clan_logo?: string | undefined;
|
|
3983
3995
|
category_name?: string | undefined;
|
|
3996
|
+
display_name?: string | undefined;
|
|
3984
3997
|
clan_nick?: string | undefined;
|
|
3985
3998
|
reactions?: string | undefined;
|
|
3986
3999
|
mentions?: string | undefined;
|
|
@@ -4001,6 +4014,7 @@ export declare const ChannelMessageList: {
|
|
|
4001
4014
|
channel_label?: string | undefined;
|
|
4002
4015
|
clan_logo?: string | undefined;
|
|
4003
4016
|
category_name?: string | undefined;
|
|
4017
|
+
display_name?: string | undefined;
|
|
4004
4018
|
clan_nick?: string | undefined;
|
|
4005
4019
|
reactions?: string | undefined;
|
|
4006
4020
|
mentions?: string | undefined;
|
|
@@ -4021,6 +4035,7 @@ export declare const ChannelMessageList: {
|
|
|
4021
4035
|
channel_label?: string | undefined;
|
|
4022
4036
|
clan_logo?: string | undefined;
|
|
4023
4037
|
category_name?: string | undefined;
|
|
4038
|
+
display_name?: string | undefined;
|
|
4024
4039
|
clan_nick?: string | undefined;
|
|
4025
4040
|
reactions?: string | undefined;
|
|
4026
4041
|
mentions?: string | undefined;
|
|
@@ -4041,6 +4056,7 @@ export declare const ChannelMessageList: {
|
|
|
4041
4056
|
channel_label?: string | undefined;
|
|
4042
4057
|
clan_logo?: string | undefined;
|
|
4043
4058
|
category_name?: string | undefined;
|
|
4059
|
+
display_name?: string | undefined;
|
|
4044
4060
|
clan_nick?: string | undefined;
|
|
4045
4061
|
reactions?: string | undefined;
|
|
4046
4062
|
mentions?: string | undefined;
|
|
@@ -171,6 +171,14 @@ export interface MessageRef {
|
|
|
171
171
|
message_ref_id: string;
|
|
172
172
|
/** original message sender */
|
|
173
173
|
message_sender_id: string;
|
|
174
|
+
/** original message sendre username */
|
|
175
|
+
message_sender_username: string;
|
|
176
|
+
/** original message sender avatar */
|
|
177
|
+
mesages_sender_avatar: string;
|
|
178
|
+
/** original sender clan nick name */
|
|
179
|
+
message_sender_clan_nick: string;
|
|
180
|
+
/** original sender display name */
|
|
181
|
+
message_sender_display_name: string;
|
|
174
182
|
/** content reference */
|
|
175
183
|
content: string;
|
|
176
184
|
/** has attachment */
|
|
@@ -597,10 +605,16 @@ export interface UserProfileRedis {
|
|
|
597
605
|
username: string;
|
|
598
606
|
/** Avatar to follow. */
|
|
599
607
|
avatar: string;
|
|
608
|
+
/** Display name */
|
|
609
|
+
display_name: string;
|
|
610
|
+
/** FCM token */
|
|
611
|
+
fcm_tokens: FCMTokens[];
|
|
612
|
+
}
|
|
613
|
+
export interface FCMTokens {
|
|
600
614
|
/** deviceID to follow. */
|
|
601
|
-
|
|
615
|
+
device_id: string;
|
|
602
616
|
/** tokenID to follow. */
|
|
603
|
-
|
|
617
|
+
token_id: string;
|
|
604
618
|
}
|
|
605
619
|
export declare const Envelope: {
|
|
606
620
|
encode(message: Envelope, writer?: _m0.Writer): _m0.Writer;
|
|
@@ -659,6 +673,7 @@ export declare const Envelope: {
|
|
|
659
673
|
channel_label?: string | undefined;
|
|
660
674
|
clan_logo?: string | undefined;
|
|
661
675
|
category_name?: string | undefined;
|
|
676
|
+
display_name?: string | undefined;
|
|
662
677
|
clan_nick?: string | undefined;
|
|
663
678
|
reactions?: string | undefined;
|
|
664
679
|
mentions?: string | undefined;
|
|
@@ -697,6 +712,10 @@ export declare const Envelope: {
|
|
|
697
712
|
message_id?: string | undefined;
|
|
698
713
|
message_ref_id?: string | undefined;
|
|
699
714
|
message_sender_id?: string | undefined;
|
|
715
|
+
message_sender_username?: string | undefined;
|
|
716
|
+
mesages_sender_avatar?: string | undefined;
|
|
717
|
+
message_sender_clan_nick?: string | undefined;
|
|
718
|
+
message_sender_display_name?: string | undefined;
|
|
700
719
|
content?: string | undefined;
|
|
701
720
|
has_attachment?: boolean | undefined;
|
|
702
721
|
ref_type?: number | undefined;
|
|
@@ -1053,6 +1072,7 @@ export declare const Envelope: {
|
|
|
1053
1072
|
channel_label?: string | undefined;
|
|
1054
1073
|
clan_logo?: string | undefined;
|
|
1055
1074
|
category_name?: string | undefined;
|
|
1075
|
+
display_name?: string | undefined;
|
|
1056
1076
|
clan_nick?: string | undefined;
|
|
1057
1077
|
reactions?: string | undefined;
|
|
1058
1078
|
mentions?: string | undefined;
|
|
@@ -1073,6 +1093,7 @@ export declare const Envelope: {
|
|
|
1073
1093
|
channel_label?: string | undefined;
|
|
1074
1094
|
clan_logo?: string | undefined;
|
|
1075
1095
|
category_name?: string | undefined;
|
|
1096
|
+
display_name?: string | undefined;
|
|
1076
1097
|
clan_nick?: string | undefined;
|
|
1077
1098
|
reactions?: string | undefined;
|
|
1078
1099
|
mentions?: string | undefined;
|
|
@@ -1121,6 +1142,10 @@ export declare const Envelope: {
|
|
|
1121
1142
|
message_id?: string | undefined;
|
|
1122
1143
|
message_ref_id?: string | undefined;
|
|
1123
1144
|
message_sender_id?: string | undefined;
|
|
1145
|
+
message_sender_username?: string | undefined;
|
|
1146
|
+
mesages_sender_avatar?: string | undefined;
|
|
1147
|
+
message_sender_clan_nick?: string | undefined;
|
|
1148
|
+
message_sender_display_name?: string | undefined;
|
|
1124
1149
|
content?: string | undefined;
|
|
1125
1150
|
has_attachment?: boolean | undefined;
|
|
1126
1151
|
ref_type?: number | undefined;
|
|
@@ -1178,6 +1203,10 @@ export declare const Envelope: {
|
|
|
1178
1203
|
message_id?: string | undefined;
|
|
1179
1204
|
message_ref_id?: string | undefined;
|
|
1180
1205
|
message_sender_id?: string | undefined;
|
|
1206
|
+
message_sender_username?: string | undefined;
|
|
1207
|
+
mesages_sender_avatar?: string | undefined;
|
|
1208
|
+
message_sender_clan_nick?: string | undefined;
|
|
1209
|
+
message_sender_display_name?: string | undefined;
|
|
1181
1210
|
content?: string | undefined;
|
|
1182
1211
|
has_attachment?: boolean | undefined;
|
|
1183
1212
|
ref_type?: number | undefined;
|
|
@@ -1185,6 +1214,10 @@ export declare const Envelope: {
|
|
|
1185
1214
|
message_id?: string | undefined;
|
|
1186
1215
|
message_ref_id?: string | undefined;
|
|
1187
1216
|
message_sender_id?: string | undefined;
|
|
1217
|
+
message_sender_username?: string | undefined;
|
|
1218
|
+
mesages_sender_avatar?: string | undefined;
|
|
1219
|
+
message_sender_clan_nick?: string | undefined;
|
|
1220
|
+
message_sender_display_name?: string | undefined;
|
|
1188
1221
|
content?: string | undefined;
|
|
1189
1222
|
has_attachment?: boolean | undefined;
|
|
1190
1223
|
ref_type?: number | undefined;
|
|
@@ -1192,6 +1225,10 @@ export declare const Envelope: {
|
|
|
1192
1225
|
message_id?: string | undefined;
|
|
1193
1226
|
message_ref_id?: string | undefined;
|
|
1194
1227
|
message_sender_id?: string | undefined;
|
|
1228
|
+
message_sender_username?: string | undefined;
|
|
1229
|
+
mesages_sender_avatar?: string | undefined;
|
|
1230
|
+
message_sender_clan_nick?: string | undefined;
|
|
1231
|
+
message_sender_display_name?: string | undefined;
|
|
1195
1232
|
content?: string | undefined;
|
|
1196
1233
|
has_attachment?: boolean | undefined;
|
|
1197
1234
|
ref_type?: number | undefined;
|
|
@@ -1199,6 +1236,10 @@ export declare const Envelope: {
|
|
|
1199
1236
|
message_id?: string | undefined;
|
|
1200
1237
|
message_ref_id?: string | undefined;
|
|
1201
1238
|
message_sender_id?: string | undefined;
|
|
1239
|
+
message_sender_username?: string | undefined;
|
|
1240
|
+
mesages_sender_avatar?: string | undefined;
|
|
1241
|
+
message_sender_clan_nick?: string | undefined;
|
|
1242
|
+
message_sender_display_name?: string | undefined;
|
|
1202
1243
|
content?: string | undefined;
|
|
1203
1244
|
has_attachment?: boolean | undefined;
|
|
1204
1245
|
ref_type?: number | undefined;
|
|
@@ -1904,6 +1945,7 @@ export declare const Envelope: {
|
|
|
1904
1945
|
channel_label?: string | undefined;
|
|
1905
1946
|
clan_logo?: string | undefined;
|
|
1906
1947
|
category_name?: string | undefined;
|
|
1948
|
+
display_name?: string | undefined;
|
|
1907
1949
|
clan_nick?: string | undefined;
|
|
1908
1950
|
reactions?: string | undefined;
|
|
1909
1951
|
mentions?: string | undefined;
|
|
@@ -1942,6 +1984,10 @@ export declare const Envelope: {
|
|
|
1942
1984
|
message_id?: string | undefined;
|
|
1943
1985
|
message_ref_id?: string | undefined;
|
|
1944
1986
|
message_sender_id?: string | undefined;
|
|
1987
|
+
message_sender_username?: string | undefined;
|
|
1988
|
+
mesages_sender_avatar?: string | undefined;
|
|
1989
|
+
message_sender_clan_nick?: string | undefined;
|
|
1990
|
+
message_sender_display_name?: string | undefined;
|
|
1945
1991
|
content?: string | undefined;
|
|
1946
1992
|
has_attachment?: boolean | undefined;
|
|
1947
1993
|
ref_type?: number | undefined;
|
|
@@ -2298,6 +2344,7 @@ export declare const Envelope: {
|
|
|
2298
2344
|
channel_label?: string | undefined;
|
|
2299
2345
|
clan_logo?: string | undefined;
|
|
2300
2346
|
category_name?: string | undefined;
|
|
2347
|
+
display_name?: string | undefined;
|
|
2301
2348
|
clan_nick?: string | undefined;
|
|
2302
2349
|
reactions?: string | undefined;
|
|
2303
2350
|
mentions?: string | undefined;
|
|
@@ -2318,6 +2365,7 @@ export declare const Envelope: {
|
|
|
2318
2365
|
channel_label?: string | undefined;
|
|
2319
2366
|
clan_logo?: string | undefined;
|
|
2320
2367
|
category_name?: string | undefined;
|
|
2368
|
+
display_name?: string | undefined;
|
|
2321
2369
|
clan_nick?: string | undefined;
|
|
2322
2370
|
reactions?: string | undefined;
|
|
2323
2371
|
mentions?: string | undefined;
|
|
@@ -2366,6 +2414,10 @@ export declare const Envelope: {
|
|
|
2366
2414
|
message_id?: string | undefined;
|
|
2367
2415
|
message_ref_id?: string | undefined;
|
|
2368
2416
|
message_sender_id?: string | undefined;
|
|
2417
|
+
message_sender_username?: string | undefined;
|
|
2418
|
+
mesages_sender_avatar?: string | undefined;
|
|
2419
|
+
message_sender_clan_nick?: string | undefined;
|
|
2420
|
+
message_sender_display_name?: string | undefined;
|
|
2369
2421
|
content?: string | undefined;
|
|
2370
2422
|
has_attachment?: boolean | undefined;
|
|
2371
2423
|
ref_type?: number | undefined;
|
|
@@ -2423,6 +2475,10 @@ export declare const Envelope: {
|
|
|
2423
2475
|
message_id?: string | undefined;
|
|
2424
2476
|
message_ref_id?: string | undefined;
|
|
2425
2477
|
message_sender_id?: string | undefined;
|
|
2478
|
+
message_sender_username?: string | undefined;
|
|
2479
|
+
mesages_sender_avatar?: string | undefined;
|
|
2480
|
+
message_sender_clan_nick?: string | undefined;
|
|
2481
|
+
message_sender_display_name?: string | undefined;
|
|
2426
2482
|
content?: string | undefined;
|
|
2427
2483
|
has_attachment?: boolean | undefined;
|
|
2428
2484
|
ref_type?: number | undefined;
|
|
@@ -2430,6 +2486,10 @@ export declare const Envelope: {
|
|
|
2430
2486
|
message_id?: string | undefined;
|
|
2431
2487
|
message_ref_id?: string | undefined;
|
|
2432
2488
|
message_sender_id?: string | undefined;
|
|
2489
|
+
message_sender_username?: string | undefined;
|
|
2490
|
+
mesages_sender_avatar?: string | undefined;
|
|
2491
|
+
message_sender_clan_nick?: string | undefined;
|
|
2492
|
+
message_sender_display_name?: string | undefined;
|
|
2433
2493
|
content?: string | undefined;
|
|
2434
2494
|
has_attachment?: boolean | undefined;
|
|
2435
2495
|
ref_type?: number | undefined;
|
|
@@ -2437,6 +2497,10 @@ export declare const Envelope: {
|
|
|
2437
2497
|
message_id?: string | undefined;
|
|
2438
2498
|
message_ref_id?: string | undefined;
|
|
2439
2499
|
message_sender_id?: string | undefined;
|
|
2500
|
+
message_sender_username?: string | undefined;
|
|
2501
|
+
mesages_sender_avatar?: string | undefined;
|
|
2502
|
+
message_sender_clan_nick?: string | undefined;
|
|
2503
|
+
message_sender_display_name?: string | undefined;
|
|
2440
2504
|
content?: string | undefined;
|
|
2441
2505
|
has_attachment?: boolean | undefined;
|
|
2442
2506
|
ref_type?: number | undefined;
|
|
@@ -2444,6 +2508,10 @@ export declare const Envelope: {
|
|
|
2444
2508
|
message_id?: string | undefined;
|
|
2445
2509
|
message_ref_id?: string | undefined;
|
|
2446
2510
|
message_sender_id?: string | undefined;
|
|
2511
|
+
message_sender_username?: string | undefined;
|
|
2512
|
+
mesages_sender_avatar?: string | undefined;
|
|
2513
|
+
message_sender_clan_nick?: string | undefined;
|
|
2514
|
+
message_sender_display_name?: string | undefined;
|
|
2447
2515
|
content?: string | undefined;
|
|
2448
2516
|
has_attachment?: boolean | undefined;
|
|
2449
2517
|
ref_type?: number | undefined;
|
|
@@ -3419,6 +3487,10 @@ export declare const MessageRef: {
|
|
|
3419
3487
|
message_id?: string | undefined;
|
|
3420
3488
|
message_ref_id?: string | undefined;
|
|
3421
3489
|
message_sender_id?: string | undefined;
|
|
3490
|
+
message_sender_username?: string | undefined;
|
|
3491
|
+
mesages_sender_avatar?: string | undefined;
|
|
3492
|
+
message_sender_clan_nick?: string | undefined;
|
|
3493
|
+
message_sender_display_name?: string | undefined;
|
|
3422
3494
|
content?: string | undefined;
|
|
3423
3495
|
has_attachment?: boolean | undefined;
|
|
3424
3496
|
ref_type?: number | undefined;
|
|
@@ -3426,6 +3498,10 @@ export declare const MessageRef: {
|
|
|
3426
3498
|
message_id?: string | undefined;
|
|
3427
3499
|
message_ref_id?: string | undefined;
|
|
3428
3500
|
message_sender_id?: string | undefined;
|
|
3501
|
+
message_sender_username?: string | undefined;
|
|
3502
|
+
mesages_sender_avatar?: string | undefined;
|
|
3503
|
+
message_sender_clan_nick?: string | undefined;
|
|
3504
|
+
message_sender_display_name?: string | undefined;
|
|
3429
3505
|
content?: string | undefined;
|
|
3430
3506
|
has_attachment?: boolean | undefined;
|
|
3431
3507
|
ref_type?: number | undefined;
|
|
@@ -3434,6 +3510,10 @@ export declare const MessageRef: {
|
|
|
3434
3510
|
message_id?: string | undefined;
|
|
3435
3511
|
message_ref_id?: string | undefined;
|
|
3436
3512
|
message_sender_id?: string | undefined;
|
|
3513
|
+
message_sender_username?: string | undefined;
|
|
3514
|
+
mesages_sender_avatar?: string | undefined;
|
|
3515
|
+
message_sender_clan_nick?: string | undefined;
|
|
3516
|
+
message_sender_display_name?: string | undefined;
|
|
3437
3517
|
content?: string | undefined;
|
|
3438
3518
|
has_attachment?: boolean | undefined;
|
|
3439
3519
|
ref_type?: number | undefined;
|
|
@@ -3441,6 +3521,10 @@ export declare const MessageRef: {
|
|
|
3441
3521
|
message_id?: string | undefined;
|
|
3442
3522
|
message_ref_id?: string | undefined;
|
|
3443
3523
|
message_sender_id?: string | undefined;
|
|
3524
|
+
message_sender_username?: string | undefined;
|
|
3525
|
+
mesages_sender_avatar?: string | undefined;
|
|
3526
|
+
message_sender_clan_nick?: string | undefined;
|
|
3527
|
+
message_sender_display_name?: string | undefined;
|
|
3444
3528
|
content?: string | undefined;
|
|
3445
3529
|
has_attachment?: boolean | undefined;
|
|
3446
3530
|
ref_type?: number | undefined;
|
|
@@ -3471,6 +3555,10 @@ export declare const ChannelMessageSend: {
|
|
|
3471
3555
|
message_id?: string | undefined;
|
|
3472
3556
|
message_ref_id?: string | undefined;
|
|
3473
3557
|
message_sender_id?: string | undefined;
|
|
3558
|
+
message_sender_username?: string | undefined;
|
|
3559
|
+
mesages_sender_avatar?: string | undefined;
|
|
3560
|
+
message_sender_clan_nick?: string | undefined;
|
|
3561
|
+
message_sender_display_name?: string | undefined;
|
|
3474
3562
|
content?: string | undefined;
|
|
3475
3563
|
has_attachment?: boolean | undefined;
|
|
3476
3564
|
ref_type?: number | undefined;
|
|
@@ -3528,6 +3616,10 @@ export declare const ChannelMessageSend: {
|
|
|
3528
3616
|
message_id?: string | undefined;
|
|
3529
3617
|
message_ref_id?: string | undefined;
|
|
3530
3618
|
message_sender_id?: string | undefined;
|
|
3619
|
+
message_sender_username?: string | undefined;
|
|
3620
|
+
mesages_sender_avatar?: string | undefined;
|
|
3621
|
+
message_sender_clan_nick?: string | undefined;
|
|
3622
|
+
message_sender_display_name?: string | undefined;
|
|
3531
3623
|
content?: string | undefined;
|
|
3532
3624
|
has_attachment?: boolean | undefined;
|
|
3533
3625
|
ref_type?: number | undefined;
|
|
@@ -3535,6 +3627,10 @@ export declare const ChannelMessageSend: {
|
|
|
3535
3627
|
message_id?: string | undefined;
|
|
3536
3628
|
message_ref_id?: string | undefined;
|
|
3537
3629
|
message_sender_id?: string | undefined;
|
|
3630
|
+
message_sender_username?: string | undefined;
|
|
3631
|
+
mesages_sender_avatar?: string | undefined;
|
|
3632
|
+
message_sender_clan_nick?: string | undefined;
|
|
3633
|
+
message_sender_display_name?: string | undefined;
|
|
3538
3634
|
content?: string | undefined;
|
|
3539
3635
|
has_attachment?: boolean | undefined;
|
|
3540
3636
|
ref_type?: number | undefined;
|
|
@@ -3542,6 +3638,10 @@ export declare const ChannelMessageSend: {
|
|
|
3542
3638
|
message_id?: string | undefined;
|
|
3543
3639
|
message_ref_id?: string | undefined;
|
|
3544
3640
|
message_sender_id?: string | undefined;
|
|
3641
|
+
message_sender_username?: string | undefined;
|
|
3642
|
+
mesages_sender_avatar?: string | undefined;
|
|
3643
|
+
message_sender_clan_nick?: string | undefined;
|
|
3644
|
+
message_sender_display_name?: string | undefined;
|
|
3545
3645
|
content?: string | undefined;
|
|
3546
3646
|
has_attachment?: boolean | undefined;
|
|
3547
3647
|
ref_type?: number | undefined;
|
|
@@ -3549,6 +3649,10 @@ export declare const ChannelMessageSend: {
|
|
|
3549
3649
|
message_id?: string | undefined;
|
|
3550
3650
|
message_ref_id?: string | undefined;
|
|
3551
3651
|
message_sender_id?: string | undefined;
|
|
3652
|
+
message_sender_username?: string | undefined;
|
|
3653
|
+
mesages_sender_avatar?: string | undefined;
|
|
3654
|
+
message_sender_clan_nick?: string | undefined;
|
|
3655
|
+
message_sender_display_name?: string | undefined;
|
|
3552
3656
|
content?: string | undefined;
|
|
3553
3657
|
has_attachment?: boolean | undefined;
|
|
3554
3658
|
ref_type?: number | undefined;
|
|
@@ -3577,6 +3681,10 @@ export declare const ChannelMessageSend: {
|
|
|
3577
3681
|
message_id?: string | undefined;
|
|
3578
3682
|
message_ref_id?: string | undefined;
|
|
3579
3683
|
message_sender_id?: string | undefined;
|
|
3684
|
+
message_sender_username?: string | undefined;
|
|
3685
|
+
mesages_sender_avatar?: string | undefined;
|
|
3686
|
+
message_sender_clan_nick?: string | undefined;
|
|
3687
|
+
message_sender_display_name?: string | undefined;
|
|
3580
3688
|
content?: string | undefined;
|
|
3581
3689
|
has_attachment?: boolean | undefined;
|
|
3582
3690
|
ref_type?: number | undefined;
|
|
@@ -3634,6 +3742,10 @@ export declare const ChannelMessageSend: {
|
|
|
3634
3742
|
message_id?: string | undefined;
|
|
3635
3743
|
message_ref_id?: string | undefined;
|
|
3636
3744
|
message_sender_id?: string | undefined;
|
|
3745
|
+
message_sender_username?: string | undefined;
|
|
3746
|
+
mesages_sender_avatar?: string | undefined;
|
|
3747
|
+
message_sender_clan_nick?: string | undefined;
|
|
3748
|
+
message_sender_display_name?: string | undefined;
|
|
3637
3749
|
content?: string | undefined;
|
|
3638
3750
|
has_attachment?: boolean | undefined;
|
|
3639
3751
|
ref_type?: number | undefined;
|
|
@@ -3641,6 +3753,10 @@ export declare const ChannelMessageSend: {
|
|
|
3641
3753
|
message_id?: string | undefined;
|
|
3642
3754
|
message_ref_id?: string | undefined;
|
|
3643
3755
|
message_sender_id?: string | undefined;
|
|
3756
|
+
message_sender_username?: string | undefined;
|
|
3757
|
+
mesages_sender_avatar?: string | undefined;
|
|
3758
|
+
message_sender_clan_nick?: string | undefined;
|
|
3759
|
+
message_sender_display_name?: string | undefined;
|
|
3644
3760
|
content?: string | undefined;
|
|
3645
3761
|
has_attachment?: boolean | undefined;
|
|
3646
3762
|
ref_type?: number | undefined;
|
|
@@ -3648,6 +3764,10 @@ export declare const ChannelMessageSend: {
|
|
|
3648
3764
|
message_id?: string | undefined;
|
|
3649
3765
|
message_ref_id?: string | undefined;
|
|
3650
3766
|
message_sender_id?: string | undefined;
|
|
3767
|
+
message_sender_username?: string | undefined;
|
|
3768
|
+
mesages_sender_avatar?: string | undefined;
|
|
3769
|
+
message_sender_clan_nick?: string | undefined;
|
|
3770
|
+
message_sender_display_name?: string | undefined;
|
|
3651
3771
|
content?: string | undefined;
|
|
3652
3772
|
has_attachment?: boolean | undefined;
|
|
3653
3773
|
ref_type?: number | undefined;
|
|
@@ -3655,6 +3775,10 @@ export declare const ChannelMessageSend: {
|
|
|
3655
3775
|
message_id?: string | undefined;
|
|
3656
3776
|
message_ref_id?: string | undefined;
|
|
3657
3777
|
message_sender_id?: string | undefined;
|
|
3778
|
+
message_sender_username?: string | undefined;
|
|
3779
|
+
mesages_sender_avatar?: string | undefined;
|
|
3780
|
+
message_sender_clan_nick?: string | undefined;
|
|
3781
|
+
message_sender_display_name?: string | undefined;
|
|
3658
3782
|
content?: string | undefined;
|
|
3659
3783
|
has_attachment?: boolean | undefined;
|
|
3660
3784
|
ref_type?: number | undefined;
|
|
@@ -5297,28 +5421,78 @@ export declare const UserProfileRedis: {
|
|
|
5297
5421
|
user_id?: string | undefined;
|
|
5298
5422
|
username?: string | undefined;
|
|
5299
5423
|
avatar?: string | undefined;
|
|
5300
|
-
|
|
5301
|
-
|
|
5424
|
+
display_name?: string | undefined;
|
|
5425
|
+
fcm_tokens?: {
|
|
5426
|
+
device_id?: string | undefined;
|
|
5427
|
+
token_id?: string | undefined;
|
|
5428
|
+
}[] | undefined;
|
|
5302
5429
|
} & {
|
|
5303
5430
|
user_id?: string | undefined;
|
|
5304
5431
|
username?: string | undefined;
|
|
5305
5432
|
avatar?: string | undefined;
|
|
5306
|
-
|
|
5307
|
-
|
|
5308
|
-
|
|
5433
|
+
display_name?: string | undefined;
|
|
5434
|
+
fcm_tokens?: ({
|
|
5435
|
+
device_id?: string | undefined;
|
|
5436
|
+
token_id?: string | undefined;
|
|
5437
|
+
}[] & ({
|
|
5438
|
+
device_id?: string | undefined;
|
|
5439
|
+
token_id?: string | undefined;
|
|
5440
|
+
} & {
|
|
5441
|
+
device_id?: string | undefined;
|
|
5442
|
+
token_id?: string | undefined;
|
|
5443
|
+
} & { [K in Exclude<keyof I["fcm_tokens"][number], keyof FCMTokens>]: never; })[] & { [K_1 in Exclude<keyof I["fcm_tokens"], keyof {
|
|
5444
|
+
device_id?: string | undefined;
|
|
5445
|
+
token_id?: string | undefined;
|
|
5446
|
+
}[]>]: never; }) | undefined;
|
|
5447
|
+
} & { [K_2 in Exclude<keyof I, keyof UserProfileRedis>]: never; }>(base?: I | undefined): UserProfileRedis;
|
|
5309
5448
|
fromPartial<I_1 extends {
|
|
5310
5449
|
user_id?: string | undefined;
|
|
5311
5450
|
username?: string | undefined;
|
|
5312
5451
|
avatar?: string | undefined;
|
|
5313
|
-
|
|
5314
|
-
|
|
5452
|
+
display_name?: string | undefined;
|
|
5453
|
+
fcm_tokens?: {
|
|
5454
|
+
device_id?: string | undefined;
|
|
5455
|
+
token_id?: string | undefined;
|
|
5456
|
+
}[] | undefined;
|
|
5315
5457
|
} & {
|
|
5316
5458
|
user_id?: string | undefined;
|
|
5317
5459
|
username?: string | undefined;
|
|
5318
5460
|
avatar?: string | undefined;
|
|
5319
|
-
|
|
5320
|
-
|
|
5321
|
-
|
|
5461
|
+
display_name?: string | undefined;
|
|
5462
|
+
fcm_tokens?: ({
|
|
5463
|
+
device_id?: string | undefined;
|
|
5464
|
+
token_id?: string | undefined;
|
|
5465
|
+
}[] & ({
|
|
5466
|
+
device_id?: string | undefined;
|
|
5467
|
+
token_id?: string | undefined;
|
|
5468
|
+
} & {
|
|
5469
|
+
device_id?: string | undefined;
|
|
5470
|
+
token_id?: string | undefined;
|
|
5471
|
+
} & { [K_3 in Exclude<keyof I_1["fcm_tokens"][number], keyof FCMTokens>]: never; })[] & { [K_4 in Exclude<keyof I_1["fcm_tokens"], keyof {
|
|
5472
|
+
device_id?: string | undefined;
|
|
5473
|
+
token_id?: string | undefined;
|
|
5474
|
+
}[]>]: never; }) | undefined;
|
|
5475
|
+
} & { [K_5 in Exclude<keyof I_1, keyof UserProfileRedis>]: never; }>(object: I_1): UserProfileRedis;
|
|
5476
|
+
};
|
|
5477
|
+
export declare const FCMTokens: {
|
|
5478
|
+
encode(message: FCMTokens, writer?: _m0.Writer): _m0.Writer;
|
|
5479
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): FCMTokens;
|
|
5480
|
+
fromJSON(object: any): FCMTokens;
|
|
5481
|
+
toJSON(message: FCMTokens): unknown;
|
|
5482
|
+
create<I extends {
|
|
5483
|
+
device_id?: string | undefined;
|
|
5484
|
+
token_id?: string | undefined;
|
|
5485
|
+
} & {
|
|
5486
|
+
device_id?: string | undefined;
|
|
5487
|
+
token_id?: string | undefined;
|
|
5488
|
+
} & { [K in Exclude<keyof I, keyof FCMTokens>]: never; }>(base?: I | undefined): FCMTokens;
|
|
5489
|
+
fromPartial<I_1 extends {
|
|
5490
|
+
device_id?: string | undefined;
|
|
5491
|
+
token_id?: string | undefined;
|
|
5492
|
+
} & {
|
|
5493
|
+
device_id?: string | undefined;
|
|
5494
|
+
token_id?: string | undefined;
|
|
5495
|
+
} & { [K_1 in Exclude<keyof I_1, keyof FCMTokens>]: never; }>(object: I_1): FCMTokens;
|
|
5322
5496
|
};
|
|
5323
5497
|
type Builtin = Date | Function | Uint8Array | string | number | boolean | undefined;
|
|
5324
5498
|
export type DeepPartial<T> = T extends Builtin ? T : T extends Array<infer U> ? Array<DeepPartial<U>> : T extends ReadonlyArray<infer U> ? ReadonlyArray<DeepPartial<U>> : T extends {} ? {
|