mezon-js-protobuf 1.8.37 → 1.8.39
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 +64 -28
- package/dist/mezon-js-protobuf/api/api.d.ts +75 -1
- package/dist/mezon-js-protobuf/rtapi/realtime.d.ts +128 -0
- package/dist/mezon-js-protobuf.cjs.js +126 -81
- package/dist/mezon-js-protobuf.esm.mjs +126 -81
- package/package.json +1 -1
- package/rtapi/realtime.ts +63 -27
|
@@ -634,6 +634,8 @@ export interface MessageTypingEvent {
|
|
|
634
634
|
sender_username: string;
|
|
635
635
|
/** sender display name */
|
|
636
636
|
sender_display_name: string;
|
|
637
|
+
/** topic id */
|
|
638
|
+
topic_id: string;
|
|
637
639
|
}
|
|
638
640
|
/** Voice Joined event */
|
|
639
641
|
export interface VoiceLeavedEvent {
|
|
@@ -1042,6 +1044,8 @@ export interface UserProfileRedis {
|
|
|
1042
1044
|
about_me: string;
|
|
1043
1045
|
/** user status */
|
|
1044
1046
|
user_status: string;
|
|
1047
|
+
/** status online, offline, invisible, idle, do not disturb */
|
|
1048
|
+
status: string;
|
|
1045
1049
|
/** create time */
|
|
1046
1050
|
create_time_second: number;
|
|
1047
1051
|
/** FCM token */
|
|
@@ -1646,6 +1650,7 @@ export declare const Envelope: {
|
|
|
1646
1650
|
is_public?: boolean | undefined;
|
|
1647
1651
|
sender_username?: string | undefined;
|
|
1648
1652
|
sender_display_name?: string | undefined;
|
|
1653
|
+
topic_id?: string | undefined;
|
|
1649
1654
|
} | undefined;
|
|
1650
1655
|
last_seen_message_event?: {
|
|
1651
1656
|
clan_id?: string | undefined;
|
|
@@ -1824,6 +1829,7 @@ export declare const Envelope: {
|
|
|
1824
1829
|
display_name?: string | undefined;
|
|
1825
1830
|
about_me?: string | undefined;
|
|
1826
1831
|
user_status?: string | undefined;
|
|
1832
|
+
status?: string | undefined;
|
|
1827
1833
|
create_time_second?: number | undefined;
|
|
1828
1834
|
fcm_tokens?: {
|
|
1829
1835
|
device_id?: string | undefined;
|
|
@@ -1849,6 +1855,7 @@ export declare const Envelope: {
|
|
|
1849
1855
|
display_name?: string | undefined;
|
|
1850
1856
|
about_me?: string | undefined;
|
|
1851
1857
|
user_status?: string | undefined;
|
|
1858
|
+
status?: string | undefined;
|
|
1852
1859
|
create_time_second?: number | undefined;
|
|
1853
1860
|
fcm_tokens?: {
|
|
1854
1861
|
device_id?: string | undefined;
|
|
@@ -1923,6 +1930,7 @@ export declare const Envelope: {
|
|
|
1923
1930
|
display_name?: string | undefined;
|
|
1924
1931
|
about_me?: string | undefined;
|
|
1925
1932
|
user_status?: string | undefined;
|
|
1933
|
+
status?: string | undefined;
|
|
1926
1934
|
create_time_second?: number | undefined;
|
|
1927
1935
|
fcm_tokens?: {
|
|
1928
1936
|
device_id?: string | undefined;
|
|
@@ -3073,6 +3081,7 @@ export declare const Envelope: {
|
|
|
3073
3081
|
location?: string | undefined;
|
|
3074
3082
|
timezone?: string | undefined;
|
|
3075
3083
|
user_status?: string | undefined;
|
|
3084
|
+
status?: string | undefined;
|
|
3076
3085
|
online?: boolean | undefined;
|
|
3077
3086
|
phone_number?: string | undefined;
|
|
3078
3087
|
edge_count?: number | undefined;
|
|
@@ -3129,6 +3138,7 @@ export declare const Envelope: {
|
|
|
3129
3138
|
location?: string | undefined;
|
|
3130
3139
|
timezone?: string | undefined;
|
|
3131
3140
|
user_status?: string | undefined;
|
|
3141
|
+
status?: string | undefined;
|
|
3132
3142
|
online?: boolean | undefined;
|
|
3133
3143
|
phone_number?: string | undefined;
|
|
3134
3144
|
edge_count?: number | undefined;
|
|
@@ -4600,6 +4610,7 @@ export declare const Envelope: {
|
|
|
4600
4610
|
is_public?: boolean | undefined;
|
|
4601
4611
|
sender_username?: string | undefined;
|
|
4602
4612
|
sender_display_name?: string | undefined;
|
|
4613
|
+
topic_id?: string | undefined;
|
|
4603
4614
|
} & {
|
|
4604
4615
|
clan_id?: string | undefined;
|
|
4605
4616
|
channel_id?: string | undefined;
|
|
@@ -4608,6 +4619,7 @@ export declare const Envelope: {
|
|
|
4608
4619
|
is_public?: boolean | undefined;
|
|
4609
4620
|
sender_username?: string | undefined;
|
|
4610
4621
|
sender_display_name?: string | undefined;
|
|
4622
|
+
topic_id?: string | undefined;
|
|
4611
4623
|
} & { [K_68 in Exclude<keyof I["message_typing_event"], keyof MessageTypingEvent>]: never; }) | undefined;
|
|
4612
4624
|
last_seen_message_event?: ({
|
|
4613
4625
|
clan_id?: string | undefined;
|
|
@@ -4892,6 +4904,7 @@ export declare const Envelope: {
|
|
|
4892
4904
|
display_name?: string | undefined;
|
|
4893
4905
|
about_me?: string | undefined;
|
|
4894
4906
|
user_status?: string | undefined;
|
|
4907
|
+
status?: string | undefined;
|
|
4895
4908
|
create_time_second?: number | undefined;
|
|
4896
4909
|
fcm_tokens?: {
|
|
4897
4910
|
device_id?: string | undefined;
|
|
@@ -4917,6 +4930,7 @@ export declare const Envelope: {
|
|
|
4917
4930
|
display_name?: string | undefined;
|
|
4918
4931
|
about_me?: string | undefined;
|
|
4919
4932
|
user_status?: string | undefined;
|
|
4933
|
+
status?: string | undefined;
|
|
4920
4934
|
create_time_second?: number | undefined;
|
|
4921
4935
|
fcm_tokens?: {
|
|
4922
4936
|
device_id?: string | undefined;
|
|
@@ -5066,6 +5080,7 @@ export declare const Envelope: {
|
|
|
5066
5080
|
display_name?: string | undefined;
|
|
5067
5081
|
about_me?: string | undefined;
|
|
5068
5082
|
user_status?: string | undefined;
|
|
5083
|
+
status?: string | undefined;
|
|
5069
5084
|
create_time_second?: number | undefined;
|
|
5070
5085
|
fcm_tokens?: {
|
|
5071
5086
|
device_id?: string | undefined;
|
|
@@ -5088,6 +5103,7 @@ export declare const Envelope: {
|
|
|
5088
5103
|
display_name?: string | undefined;
|
|
5089
5104
|
about_me?: string | undefined;
|
|
5090
5105
|
user_status?: string | undefined;
|
|
5106
|
+
status?: string | undefined;
|
|
5091
5107
|
create_time_second?: number | undefined;
|
|
5092
5108
|
fcm_tokens?: {
|
|
5093
5109
|
device_id?: string | undefined;
|
|
@@ -5110,6 +5126,7 @@ export declare const Envelope: {
|
|
|
5110
5126
|
display_name?: string | undefined;
|
|
5111
5127
|
about_me?: string | undefined;
|
|
5112
5128
|
user_status?: string | undefined;
|
|
5129
|
+
status?: string | undefined;
|
|
5113
5130
|
create_time_second?: number | undefined;
|
|
5114
5131
|
fcm_tokens?: ({
|
|
5115
5132
|
device_id?: string | undefined;
|
|
@@ -5144,6 +5161,7 @@ export declare const Envelope: {
|
|
|
5144
5161
|
display_name?: string | undefined;
|
|
5145
5162
|
about_me?: string | undefined;
|
|
5146
5163
|
user_status?: string | undefined;
|
|
5164
|
+
status?: string | undefined;
|
|
5147
5165
|
create_time_second?: number | undefined;
|
|
5148
5166
|
fcm_tokens?: {
|
|
5149
5167
|
device_id?: string | undefined;
|
|
@@ -5169,6 +5187,7 @@ export declare const Envelope: {
|
|
|
5169
5187
|
display_name?: string | undefined;
|
|
5170
5188
|
about_me?: string | undefined;
|
|
5171
5189
|
user_status?: string | undefined;
|
|
5190
|
+
status?: string | undefined;
|
|
5172
5191
|
create_time_second?: number | undefined;
|
|
5173
5192
|
fcm_tokens?: {
|
|
5174
5193
|
device_id?: string | undefined;
|
|
@@ -5191,6 +5210,7 @@ export declare const Envelope: {
|
|
|
5191
5210
|
display_name?: string | undefined;
|
|
5192
5211
|
about_me?: string | undefined;
|
|
5193
5212
|
user_status?: string | undefined;
|
|
5213
|
+
status?: string | undefined;
|
|
5194
5214
|
create_time_second?: number | undefined;
|
|
5195
5215
|
fcm_tokens?: ({
|
|
5196
5216
|
device_id?: string | undefined;
|
|
@@ -5317,6 +5337,7 @@ export declare const Envelope: {
|
|
|
5317
5337
|
display_name?: string | undefined;
|
|
5318
5338
|
about_me?: string | undefined;
|
|
5319
5339
|
user_status?: string | undefined;
|
|
5340
|
+
status?: string | undefined;
|
|
5320
5341
|
create_time_second?: number | undefined;
|
|
5321
5342
|
fcm_tokens?: {
|
|
5322
5343
|
device_id?: string | undefined;
|
|
@@ -5343,6 +5364,7 @@ export declare const Envelope: {
|
|
|
5343
5364
|
display_name?: string | undefined;
|
|
5344
5365
|
about_me?: string | undefined;
|
|
5345
5366
|
user_status?: string | undefined;
|
|
5367
|
+
status?: string | undefined;
|
|
5346
5368
|
create_time_second?: number | undefined;
|
|
5347
5369
|
fcm_tokens?: {
|
|
5348
5370
|
device_id?: string | undefined;
|
|
@@ -5365,6 +5387,7 @@ export declare const Envelope: {
|
|
|
5365
5387
|
display_name?: string | undefined;
|
|
5366
5388
|
about_me?: string | undefined;
|
|
5367
5389
|
user_status?: string | undefined;
|
|
5390
|
+
status?: string | undefined;
|
|
5368
5391
|
create_time_second?: number | undefined;
|
|
5369
5392
|
fcm_tokens?: ({
|
|
5370
5393
|
device_id?: string | undefined;
|
|
@@ -7256,6 +7279,7 @@ export declare const Envelope: {
|
|
|
7256
7279
|
location?: string | undefined;
|
|
7257
7280
|
timezone?: string | undefined;
|
|
7258
7281
|
user_status?: string | undefined;
|
|
7282
|
+
status?: string | undefined;
|
|
7259
7283
|
online?: boolean | undefined;
|
|
7260
7284
|
phone_number?: string | undefined;
|
|
7261
7285
|
edge_count?: number | undefined;
|
|
@@ -7312,6 +7336,7 @@ export declare const Envelope: {
|
|
|
7312
7336
|
location?: string | undefined;
|
|
7313
7337
|
timezone?: string | undefined;
|
|
7314
7338
|
user_status?: string | undefined;
|
|
7339
|
+
status?: string | undefined;
|
|
7315
7340
|
online?: boolean | undefined;
|
|
7316
7341
|
phone_number?: string | undefined;
|
|
7317
7342
|
edge_count?: number | undefined;
|
|
@@ -10242,6 +10267,7 @@ export declare const Envelope: {
|
|
|
10242
10267
|
location?: string | undefined;
|
|
10243
10268
|
timezone?: string | undefined;
|
|
10244
10269
|
user_status?: string | undefined;
|
|
10270
|
+
status?: string | undefined;
|
|
10245
10271
|
online?: boolean | undefined;
|
|
10246
10272
|
phone_number?: string | undefined;
|
|
10247
10273
|
edge_count?: number | undefined;
|
|
@@ -10270,6 +10296,7 @@ export declare const Envelope: {
|
|
|
10270
10296
|
location?: string | undefined;
|
|
10271
10297
|
timezone?: string | undefined;
|
|
10272
10298
|
user_status?: string | undefined;
|
|
10299
|
+
status?: string | undefined;
|
|
10273
10300
|
online?: boolean | undefined;
|
|
10274
10301
|
phone_number?: string | undefined;
|
|
10275
10302
|
edge_count?: number | undefined;
|
|
@@ -10295,6 +10322,7 @@ export declare const Envelope: {
|
|
|
10295
10322
|
location?: string | undefined;
|
|
10296
10323
|
timezone?: string | undefined;
|
|
10297
10324
|
user_status?: string | undefined;
|
|
10325
|
+
status?: string | undefined;
|
|
10298
10326
|
online?: boolean | undefined;
|
|
10299
10327
|
phone_number?: string | undefined;
|
|
10300
10328
|
edge_count?: number | undefined;
|
|
@@ -10320,6 +10348,7 @@ export declare const Envelope: {
|
|
|
10320
10348
|
location?: string | undefined;
|
|
10321
10349
|
timezone?: string | undefined;
|
|
10322
10350
|
user_status?: string | undefined;
|
|
10351
|
+
status?: string | undefined;
|
|
10323
10352
|
online?: boolean | undefined;
|
|
10324
10353
|
phone_number?: string | undefined;
|
|
10325
10354
|
edge_count?: number | undefined;
|
|
@@ -10340,6 +10369,7 @@ export declare const Envelope: {
|
|
|
10340
10369
|
location?: string | undefined;
|
|
10341
10370
|
timezone?: string | undefined;
|
|
10342
10371
|
user_status?: string | undefined;
|
|
10372
|
+
status?: string | undefined;
|
|
10343
10373
|
online?: boolean | undefined;
|
|
10344
10374
|
phone_number?: string | undefined;
|
|
10345
10375
|
edge_count?: number | undefined;
|
|
@@ -10365,6 +10395,7 @@ export declare const Envelope: {
|
|
|
10365
10395
|
location?: string | undefined;
|
|
10366
10396
|
timezone?: string | undefined;
|
|
10367
10397
|
user_status?: string | undefined;
|
|
10398
|
+
status?: string | undefined;
|
|
10368
10399
|
online?: boolean | undefined;
|
|
10369
10400
|
phone_number?: string | undefined;
|
|
10370
10401
|
edge_count?: number | undefined;
|
|
@@ -10489,6 +10520,7 @@ export declare const Envelope: {
|
|
|
10489
10520
|
location?: string | undefined;
|
|
10490
10521
|
timezone?: string | undefined;
|
|
10491
10522
|
user_status?: string | undefined;
|
|
10523
|
+
status?: string | undefined;
|
|
10492
10524
|
online?: boolean | undefined;
|
|
10493
10525
|
phone_number?: string | undefined;
|
|
10494
10526
|
edge_count?: number | undefined;
|
|
@@ -10519,6 +10551,7 @@ export declare const Envelope: {
|
|
|
10519
10551
|
location?: string | undefined;
|
|
10520
10552
|
timezone?: string | undefined;
|
|
10521
10553
|
user_status?: string | undefined;
|
|
10554
|
+
status?: string | undefined;
|
|
10522
10555
|
online?: boolean | undefined;
|
|
10523
10556
|
phone_number?: string | undefined;
|
|
10524
10557
|
edge_count?: number | undefined;
|
|
@@ -10545,6 +10578,7 @@ export declare const Envelope: {
|
|
|
10545
10578
|
location?: string | undefined;
|
|
10546
10579
|
timezone?: string | undefined;
|
|
10547
10580
|
user_status?: string | undefined;
|
|
10581
|
+
status?: string | undefined;
|
|
10548
10582
|
online?: boolean | undefined;
|
|
10549
10583
|
phone_number?: string | undefined;
|
|
10550
10584
|
edge_count?: number | undefined;
|
|
@@ -10571,6 +10605,7 @@ export declare const Envelope: {
|
|
|
10571
10605
|
location?: string | undefined;
|
|
10572
10606
|
timezone?: string | undefined;
|
|
10573
10607
|
user_status?: string | undefined;
|
|
10608
|
+
status?: string | undefined;
|
|
10574
10609
|
online?: boolean | undefined;
|
|
10575
10610
|
phone_number?: string | undefined;
|
|
10576
10611
|
edge_count?: number | undefined;
|
|
@@ -10591,6 +10626,7 @@ export declare const Envelope: {
|
|
|
10591
10626
|
location?: string | undefined;
|
|
10592
10627
|
timezone?: string | undefined;
|
|
10593
10628
|
user_status?: string | undefined;
|
|
10629
|
+
status?: string | undefined;
|
|
10594
10630
|
online?: boolean | undefined;
|
|
10595
10631
|
phone_number?: string | undefined;
|
|
10596
10632
|
edge_count?: number | undefined;
|
|
@@ -10617,6 +10653,7 @@ export declare const Envelope: {
|
|
|
10617
10653
|
location?: string | undefined;
|
|
10618
10654
|
timezone?: string | undefined;
|
|
10619
10655
|
user_status?: string | undefined;
|
|
10656
|
+
status?: string | undefined;
|
|
10620
10657
|
online?: boolean | undefined;
|
|
10621
10658
|
phone_number?: string | undefined;
|
|
10622
10659
|
edge_count?: number | undefined;
|
|
@@ -11490,6 +11527,7 @@ export declare const Envelope: {
|
|
|
11490
11527
|
is_public?: boolean | undefined;
|
|
11491
11528
|
sender_username?: string | undefined;
|
|
11492
11529
|
sender_display_name?: string | undefined;
|
|
11530
|
+
topic_id?: string | undefined;
|
|
11493
11531
|
} | undefined;
|
|
11494
11532
|
last_seen_message_event?: {
|
|
11495
11533
|
clan_id?: string | undefined;
|
|
@@ -11668,6 +11706,7 @@ export declare const Envelope: {
|
|
|
11668
11706
|
display_name?: string | undefined;
|
|
11669
11707
|
about_me?: string | undefined;
|
|
11670
11708
|
user_status?: string | undefined;
|
|
11709
|
+
status?: string | undefined;
|
|
11671
11710
|
create_time_second?: number | undefined;
|
|
11672
11711
|
fcm_tokens?: {
|
|
11673
11712
|
device_id?: string | undefined;
|
|
@@ -11693,6 +11732,7 @@ export declare const Envelope: {
|
|
|
11693
11732
|
display_name?: string | undefined;
|
|
11694
11733
|
about_me?: string | undefined;
|
|
11695
11734
|
user_status?: string | undefined;
|
|
11735
|
+
status?: string | undefined;
|
|
11696
11736
|
create_time_second?: number | undefined;
|
|
11697
11737
|
fcm_tokens?: {
|
|
11698
11738
|
device_id?: string | undefined;
|
|
@@ -11767,6 +11807,7 @@ export declare const Envelope: {
|
|
|
11767
11807
|
display_name?: string | undefined;
|
|
11768
11808
|
about_me?: string | undefined;
|
|
11769
11809
|
user_status?: string | undefined;
|
|
11810
|
+
status?: string | undefined;
|
|
11770
11811
|
create_time_second?: number | undefined;
|
|
11771
11812
|
fcm_tokens?: {
|
|
11772
11813
|
device_id?: string | undefined;
|
|
@@ -12917,6 +12958,7 @@ export declare const Envelope: {
|
|
|
12917
12958
|
location?: string | undefined;
|
|
12918
12959
|
timezone?: string | undefined;
|
|
12919
12960
|
user_status?: string | undefined;
|
|
12961
|
+
status?: string | undefined;
|
|
12920
12962
|
online?: boolean | undefined;
|
|
12921
12963
|
phone_number?: string | undefined;
|
|
12922
12964
|
edge_count?: number | undefined;
|
|
@@ -12973,6 +13015,7 @@ export declare const Envelope: {
|
|
|
12973
13015
|
location?: string | undefined;
|
|
12974
13016
|
timezone?: string | undefined;
|
|
12975
13017
|
user_status?: string | undefined;
|
|
13018
|
+
status?: string | undefined;
|
|
12976
13019
|
online?: boolean | undefined;
|
|
12977
13020
|
phone_number?: string | undefined;
|
|
12978
13021
|
edge_count?: number | undefined;
|
|
@@ -14444,6 +14487,7 @@ export declare const Envelope: {
|
|
|
14444
14487
|
is_public?: boolean | undefined;
|
|
14445
14488
|
sender_username?: string | undefined;
|
|
14446
14489
|
sender_display_name?: string | undefined;
|
|
14490
|
+
topic_id?: string | undefined;
|
|
14447
14491
|
} & {
|
|
14448
14492
|
clan_id?: string | undefined;
|
|
14449
14493
|
channel_id?: string | undefined;
|
|
@@ -14452,6 +14496,7 @@ export declare const Envelope: {
|
|
|
14452
14496
|
is_public?: boolean | undefined;
|
|
14453
14497
|
sender_username?: string | undefined;
|
|
14454
14498
|
sender_display_name?: string | undefined;
|
|
14499
|
+
topic_id?: string | undefined;
|
|
14455
14500
|
} & { [K_455 in Exclude<keyof I_1["message_typing_event"], keyof MessageTypingEvent>]: never; }) | undefined;
|
|
14456
14501
|
last_seen_message_event?: ({
|
|
14457
14502
|
clan_id?: string | undefined;
|
|
@@ -14736,6 +14781,7 @@ export declare const Envelope: {
|
|
|
14736
14781
|
display_name?: string | undefined;
|
|
14737
14782
|
about_me?: string | undefined;
|
|
14738
14783
|
user_status?: string | undefined;
|
|
14784
|
+
status?: string | undefined;
|
|
14739
14785
|
create_time_second?: number | undefined;
|
|
14740
14786
|
fcm_tokens?: {
|
|
14741
14787
|
device_id?: string | undefined;
|
|
@@ -14761,6 +14807,7 @@ export declare const Envelope: {
|
|
|
14761
14807
|
display_name?: string | undefined;
|
|
14762
14808
|
about_me?: string | undefined;
|
|
14763
14809
|
user_status?: string | undefined;
|
|
14810
|
+
status?: string | undefined;
|
|
14764
14811
|
create_time_second?: number | undefined;
|
|
14765
14812
|
fcm_tokens?: {
|
|
14766
14813
|
device_id?: string | undefined;
|
|
@@ -14910,6 +14957,7 @@ export declare const Envelope: {
|
|
|
14910
14957
|
display_name?: string | undefined;
|
|
14911
14958
|
about_me?: string | undefined;
|
|
14912
14959
|
user_status?: string | undefined;
|
|
14960
|
+
status?: string | undefined;
|
|
14913
14961
|
create_time_second?: number | undefined;
|
|
14914
14962
|
fcm_tokens?: {
|
|
14915
14963
|
device_id?: string | undefined;
|
|
@@ -14932,6 +14980,7 @@ export declare const Envelope: {
|
|
|
14932
14980
|
display_name?: string | undefined;
|
|
14933
14981
|
about_me?: string | undefined;
|
|
14934
14982
|
user_status?: string | undefined;
|
|
14983
|
+
status?: string | undefined;
|
|
14935
14984
|
create_time_second?: number | undefined;
|
|
14936
14985
|
fcm_tokens?: {
|
|
14937
14986
|
device_id?: string | undefined;
|
|
@@ -14954,6 +15003,7 @@ export declare const Envelope: {
|
|
|
14954
15003
|
display_name?: string | undefined;
|
|
14955
15004
|
about_me?: string | undefined;
|
|
14956
15005
|
user_status?: string | undefined;
|
|
15006
|
+
status?: string | undefined;
|
|
14957
15007
|
create_time_second?: number | undefined;
|
|
14958
15008
|
fcm_tokens?: ({
|
|
14959
15009
|
device_id?: string | undefined;
|
|
@@ -14988,6 +15038,7 @@ export declare const Envelope: {
|
|
|
14988
15038
|
display_name?: string | undefined;
|
|
14989
15039
|
about_me?: string | undefined;
|
|
14990
15040
|
user_status?: string | undefined;
|
|
15041
|
+
status?: string | undefined;
|
|
14991
15042
|
create_time_second?: number | undefined;
|
|
14992
15043
|
fcm_tokens?: {
|
|
14993
15044
|
device_id?: string | undefined;
|
|
@@ -15013,6 +15064,7 @@ export declare const Envelope: {
|
|
|
15013
15064
|
display_name?: string | undefined;
|
|
15014
15065
|
about_me?: string | undefined;
|
|
15015
15066
|
user_status?: string | undefined;
|
|
15067
|
+
status?: string | undefined;
|
|
15016
15068
|
create_time_second?: number | undefined;
|
|
15017
15069
|
fcm_tokens?: {
|
|
15018
15070
|
device_id?: string | undefined;
|
|
@@ -15035,6 +15087,7 @@ export declare const Envelope: {
|
|
|
15035
15087
|
display_name?: string | undefined;
|
|
15036
15088
|
about_me?: string | undefined;
|
|
15037
15089
|
user_status?: string | undefined;
|
|
15090
|
+
status?: string | undefined;
|
|
15038
15091
|
create_time_second?: number | undefined;
|
|
15039
15092
|
fcm_tokens?: ({
|
|
15040
15093
|
device_id?: string | undefined;
|
|
@@ -15161,6 +15214,7 @@ export declare const Envelope: {
|
|
|
15161
15214
|
display_name?: string | undefined;
|
|
15162
15215
|
about_me?: string | undefined;
|
|
15163
15216
|
user_status?: string | undefined;
|
|
15217
|
+
status?: string | undefined;
|
|
15164
15218
|
create_time_second?: number | undefined;
|
|
15165
15219
|
fcm_tokens?: {
|
|
15166
15220
|
device_id?: string | undefined;
|
|
@@ -15187,6 +15241,7 @@ export declare const Envelope: {
|
|
|
15187
15241
|
display_name?: string | undefined;
|
|
15188
15242
|
about_me?: string | undefined;
|
|
15189
15243
|
user_status?: string | undefined;
|
|
15244
|
+
status?: string | undefined;
|
|
15190
15245
|
create_time_second?: number | undefined;
|
|
15191
15246
|
fcm_tokens?: {
|
|
15192
15247
|
device_id?: string | undefined;
|
|
@@ -15209,6 +15264,7 @@ export declare const Envelope: {
|
|
|
15209
15264
|
display_name?: string | undefined;
|
|
15210
15265
|
about_me?: string | undefined;
|
|
15211
15266
|
user_status?: string | undefined;
|
|
15267
|
+
status?: string | undefined;
|
|
15212
15268
|
create_time_second?: number | undefined;
|
|
15213
15269
|
fcm_tokens?: ({
|
|
15214
15270
|
device_id?: string | undefined;
|
|
@@ -17100,6 +17156,7 @@ export declare const Envelope: {
|
|
|
17100
17156
|
location?: string | undefined;
|
|
17101
17157
|
timezone?: string | undefined;
|
|
17102
17158
|
user_status?: string | undefined;
|
|
17159
|
+
status?: string | undefined;
|
|
17103
17160
|
online?: boolean | undefined;
|
|
17104
17161
|
phone_number?: string | undefined;
|
|
17105
17162
|
edge_count?: number | undefined;
|
|
@@ -17156,6 +17213,7 @@ export declare const Envelope: {
|
|
|
17156
17213
|
location?: string | undefined;
|
|
17157
17214
|
timezone?: string | undefined;
|
|
17158
17215
|
user_status?: string | undefined;
|
|
17216
|
+
status?: string | undefined;
|
|
17159
17217
|
online?: boolean | undefined;
|
|
17160
17218
|
phone_number?: string | undefined;
|
|
17161
17219
|
edge_count?: number | undefined;
|
|
@@ -20086,6 +20144,7 @@ export declare const Envelope: {
|
|
|
20086
20144
|
location?: string | undefined;
|
|
20087
20145
|
timezone?: string | undefined;
|
|
20088
20146
|
user_status?: string | undefined;
|
|
20147
|
+
status?: string | undefined;
|
|
20089
20148
|
online?: boolean | undefined;
|
|
20090
20149
|
phone_number?: string | undefined;
|
|
20091
20150
|
edge_count?: number | undefined;
|
|
@@ -20114,6 +20173,7 @@ export declare const Envelope: {
|
|
|
20114
20173
|
location?: string | undefined;
|
|
20115
20174
|
timezone?: string | undefined;
|
|
20116
20175
|
user_status?: string | undefined;
|
|
20176
|
+
status?: string | undefined;
|
|
20117
20177
|
online?: boolean | undefined;
|
|
20118
20178
|
phone_number?: string | undefined;
|
|
20119
20179
|
edge_count?: number | undefined;
|
|
@@ -20139,6 +20199,7 @@ export declare const Envelope: {
|
|
|
20139
20199
|
location?: string | undefined;
|
|
20140
20200
|
timezone?: string | undefined;
|
|
20141
20201
|
user_status?: string | undefined;
|
|
20202
|
+
status?: string | undefined;
|
|
20142
20203
|
online?: boolean | undefined;
|
|
20143
20204
|
phone_number?: string | undefined;
|
|
20144
20205
|
edge_count?: number | undefined;
|
|
@@ -20164,6 +20225,7 @@ export declare const Envelope: {
|
|
|
20164
20225
|
location?: string | undefined;
|
|
20165
20226
|
timezone?: string | undefined;
|
|
20166
20227
|
user_status?: string | undefined;
|
|
20228
|
+
status?: string | undefined;
|
|
20167
20229
|
online?: boolean | undefined;
|
|
20168
20230
|
phone_number?: string | undefined;
|
|
20169
20231
|
edge_count?: number | undefined;
|
|
@@ -20184,6 +20246,7 @@ export declare const Envelope: {
|
|
|
20184
20246
|
location?: string | undefined;
|
|
20185
20247
|
timezone?: string | undefined;
|
|
20186
20248
|
user_status?: string | undefined;
|
|
20249
|
+
status?: string | undefined;
|
|
20187
20250
|
online?: boolean | undefined;
|
|
20188
20251
|
phone_number?: string | undefined;
|
|
20189
20252
|
edge_count?: number | undefined;
|
|
@@ -20209,6 +20272,7 @@ export declare const Envelope: {
|
|
|
20209
20272
|
location?: string | undefined;
|
|
20210
20273
|
timezone?: string | undefined;
|
|
20211
20274
|
user_status?: string | undefined;
|
|
20275
|
+
status?: string | undefined;
|
|
20212
20276
|
online?: boolean | undefined;
|
|
20213
20277
|
phone_number?: string | undefined;
|
|
20214
20278
|
edge_count?: number | undefined;
|
|
@@ -20333,6 +20397,7 @@ export declare const Envelope: {
|
|
|
20333
20397
|
location?: string | undefined;
|
|
20334
20398
|
timezone?: string | undefined;
|
|
20335
20399
|
user_status?: string | undefined;
|
|
20400
|
+
status?: string | undefined;
|
|
20336
20401
|
online?: boolean | undefined;
|
|
20337
20402
|
phone_number?: string | undefined;
|
|
20338
20403
|
edge_count?: number | undefined;
|
|
@@ -20363,6 +20428,7 @@ export declare const Envelope: {
|
|
|
20363
20428
|
location?: string | undefined;
|
|
20364
20429
|
timezone?: string | undefined;
|
|
20365
20430
|
user_status?: string | undefined;
|
|
20431
|
+
status?: string | undefined;
|
|
20366
20432
|
online?: boolean | undefined;
|
|
20367
20433
|
phone_number?: string | undefined;
|
|
20368
20434
|
edge_count?: number | undefined;
|
|
@@ -20389,6 +20455,7 @@ export declare const Envelope: {
|
|
|
20389
20455
|
location?: string | undefined;
|
|
20390
20456
|
timezone?: string | undefined;
|
|
20391
20457
|
user_status?: string | undefined;
|
|
20458
|
+
status?: string | undefined;
|
|
20392
20459
|
online?: boolean | undefined;
|
|
20393
20460
|
phone_number?: string | undefined;
|
|
20394
20461
|
edge_count?: number | undefined;
|
|
@@ -20415,6 +20482,7 @@ export declare const Envelope: {
|
|
|
20415
20482
|
location?: string | undefined;
|
|
20416
20483
|
timezone?: string | undefined;
|
|
20417
20484
|
user_status?: string | undefined;
|
|
20485
|
+
status?: string | undefined;
|
|
20418
20486
|
online?: boolean | undefined;
|
|
20419
20487
|
phone_number?: string | undefined;
|
|
20420
20488
|
edge_count?: number | undefined;
|
|
@@ -20435,6 +20503,7 @@ export declare const Envelope: {
|
|
|
20435
20503
|
location?: string | undefined;
|
|
20436
20504
|
timezone?: string | undefined;
|
|
20437
20505
|
user_status?: string | undefined;
|
|
20506
|
+
status?: string | undefined;
|
|
20438
20507
|
online?: boolean | undefined;
|
|
20439
20508
|
phone_number?: string | undefined;
|
|
20440
20509
|
edge_count?: number | undefined;
|
|
@@ -20461,6 +20530,7 @@ export declare const Envelope: {
|
|
|
20461
20530
|
location?: string | undefined;
|
|
20462
20531
|
timezone?: string | undefined;
|
|
20463
20532
|
user_status?: string | undefined;
|
|
20533
|
+
status?: string | undefined;
|
|
20464
20534
|
online?: boolean | undefined;
|
|
20465
20535
|
phone_number?: string | undefined;
|
|
20466
20536
|
edge_count?: number | undefined;
|
|
@@ -21126,6 +21196,7 @@ export declare const AddClanUserEvent: {
|
|
|
21126
21196
|
display_name?: string | undefined;
|
|
21127
21197
|
about_me?: string | undefined;
|
|
21128
21198
|
user_status?: string | undefined;
|
|
21199
|
+
status?: string | undefined;
|
|
21129
21200
|
create_time_second?: number | undefined;
|
|
21130
21201
|
fcm_tokens?: {
|
|
21131
21202
|
device_id?: string | undefined;
|
|
@@ -21152,6 +21223,7 @@ export declare const AddClanUserEvent: {
|
|
|
21152
21223
|
display_name?: string | undefined;
|
|
21153
21224
|
about_me?: string | undefined;
|
|
21154
21225
|
user_status?: string | undefined;
|
|
21226
|
+
status?: string | undefined;
|
|
21155
21227
|
create_time_second?: number | undefined;
|
|
21156
21228
|
fcm_tokens?: {
|
|
21157
21229
|
device_id?: string | undefined;
|
|
@@ -21174,6 +21246,7 @@ export declare const AddClanUserEvent: {
|
|
|
21174
21246
|
display_name?: string | undefined;
|
|
21175
21247
|
about_me?: string | undefined;
|
|
21176
21248
|
user_status?: string | undefined;
|
|
21249
|
+
status?: string | undefined;
|
|
21177
21250
|
create_time_second?: number | undefined;
|
|
21178
21251
|
fcm_tokens?: ({
|
|
21179
21252
|
device_id?: string | undefined;
|
|
@@ -21213,6 +21286,7 @@ export declare const AddClanUserEvent: {
|
|
|
21213
21286
|
display_name?: string | undefined;
|
|
21214
21287
|
about_me?: string | undefined;
|
|
21215
21288
|
user_status?: string | undefined;
|
|
21289
|
+
status?: string | undefined;
|
|
21216
21290
|
create_time_second?: number | undefined;
|
|
21217
21291
|
fcm_tokens?: {
|
|
21218
21292
|
device_id?: string | undefined;
|
|
@@ -21239,6 +21313,7 @@ export declare const AddClanUserEvent: {
|
|
|
21239
21313
|
display_name?: string | undefined;
|
|
21240
21314
|
about_me?: string | undefined;
|
|
21241
21315
|
user_status?: string | undefined;
|
|
21316
|
+
status?: string | undefined;
|
|
21242
21317
|
create_time_second?: number | undefined;
|
|
21243
21318
|
fcm_tokens?: {
|
|
21244
21319
|
device_id?: string | undefined;
|
|
@@ -21261,6 +21336,7 @@ export declare const AddClanUserEvent: {
|
|
|
21261
21336
|
display_name?: string | undefined;
|
|
21262
21337
|
about_me?: string | undefined;
|
|
21263
21338
|
user_status?: string | undefined;
|
|
21339
|
+
status?: string | undefined;
|
|
21264
21340
|
create_time_second?: number | undefined;
|
|
21265
21341
|
fcm_tokens?: ({
|
|
21266
21342
|
device_id?: string | undefined;
|
|
@@ -24949,6 +25025,7 @@ export declare const MessageTypingEvent: {
|
|
|
24949
25025
|
is_public?: boolean | undefined;
|
|
24950
25026
|
sender_username?: string | undefined;
|
|
24951
25027
|
sender_display_name?: string | undefined;
|
|
25028
|
+
topic_id?: string | undefined;
|
|
24952
25029
|
} & {
|
|
24953
25030
|
clan_id?: string | undefined;
|
|
24954
25031
|
channel_id?: string | undefined;
|
|
@@ -24957,6 +25034,7 @@ export declare const MessageTypingEvent: {
|
|
|
24957
25034
|
is_public?: boolean | undefined;
|
|
24958
25035
|
sender_username?: string | undefined;
|
|
24959
25036
|
sender_display_name?: string | undefined;
|
|
25037
|
+
topic_id?: string | undefined;
|
|
24960
25038
|
} & { [K in Exclude<keyof I, keyof MessageTypingEvent>]: never; }>(base?: I | undefined): MessageTypingEvent;
|
|
24961
25039
|
fromPartial<I_1 extends {
|
|
24962
25040
|
clan_id?: string | undefined;
|
|
@@ -24966,6 +25044,7 @@ export declare const MessageTypingEvent: {
|
|
|
24966
25044
|
is_public?: boolean | undefined;
|
|
24967
25045
|
sender_username?: string | undefined;
|
|
24968
25046
|
sender_display_name?: string | undefined;
|
|
25047
|
+
topic_id?: string | undefined;
|
|
24969
25048
|
} & {
|
|
24970
25049
|
clan_id?: string | undefined;
|
|
24971
25050
|
channel_id?: string | undefined;
|
|
@@ -24974,6 +25053,7 @@ export declare const MessageTypingEvent: {
|
|
|
24974
25053
|
is_public?: boolean | undefined;
|
|
24975
25054
|
sender_username?: string | undefined;
|
|
24976
25055
|
sender_display_name?: string | undefined;
|
|
25056
|
+
topic_id?: string | undefined;
|
|
24977
25057
|
} & { [K_1 in Exclude<keyof I_1, keyof MessageTypingEvent>]: never; }>(object: I_1): MessageTypingEvent;
|
|
24978
25058
|
};
|
|
24979
25059
|
export declare const VoiceLeavedEvent: {
|
|
@@ -26469,6 +26549,7 @@ export declare const UserChannelAdded: {
|
|
|
26469
26549
|
display_name?: string | undefined;
|
|
26470
26550
|
about_me?: string | undefined;
|
|
26471
26551
|
user_status?: string | undefined;
|
|
26552
|
+
status?: string | undefined;
|
|
26472
26553
|
create_time_second?: number | undefined;
|
|
26473
26554
|
fcm_tokens?: {
|
|
26474
26555
|
device_id?: string | undefined;
|
|
@@ -26494,6 +26575,7 @@ export declare const UserChannelAdded: {
|
|
|
26494
26575
|
display_name?: string | undefined;
|
|
26495
26576
|
about_me?: string | undefined;
|
|
26496
26577
|
user_status?: string | undefined;
|
|
26578
|
+
status?: string | undefined;
|
|
26497
26579
|
create_time_second?: number | undefined;
|
|
26498
26580
|
fcm_tokens?: {
|
|
26499
26581
|
device_id?: string | undefined;
|
|
@@ -26643,6 +26725,7 @@ export declare const UserChannelAdded: {
|
|
|
26643
26725
|
display_name?: string | undefined;
|
|
26644
26726
|
about_me?: string | undefined;
|
|
26645
26727
|
user_status?: string | undefined;
|
|
26728
|
+
status?: string | undefined;
|
|
26646
26729
|
create_time_second?: number | undefined;
|
|
26647
26730
|
fcm_tokens?: {
|
|
26648
26731
|
device_id?: string | undefined;
|
|
@@ -26665,6 +26748,7 @@ export declare const UserChannelAdded: {
|
|
|
26665
26748
|
display_name?: string | undefined;
|
|
26666
26749
|
about_me?: string | undefined;
|
|
26667
26750
|
user_status?: string | undefined;
|
|
26751
|
+
status?: string | undefined;
|
|
26668
26752
|
create_time_second?: number | undefined;
|
|
26669
26753
|
fcm_tokens?: {
|
|
26670
26754
|
device_id?: string | undefined;
|
|
@@ -26687,6 +26771,7 @@ export declare const UserChannelAdded: {
|
|
|
26687
26771
|
display_name?: string | undefined;
|
|
26688
26772
|
about_me?: string | undefined;
|
|
26689
26773
|
user_status?: string | undefined;
|
|
26774
|
+
status?: string | undefined;
|
|
26690
26775
|
create_time_second?: number | undefined;
|
|
26691
26776
|
fcm_tokens?: ({
|
|
26692
26777
|
device_id?: string | undefined;
|
|
@@ -26721,6 +26806,7 @@ export declare const UserChannelAdded: {
|
|
|
26721
26806
|
display_name?: string | undefined;
|
|
26722
26807
|
about_me?: string | undefined;
|
|
26723
26808
|
user_status?: string | undefined;
|
|
26809
|
+
status?: string | undefined;
|
|
26724
26810
|
create_time_second?: number | undefined;
|
|
26725
26811
|
fcm_tokens?: {
|
|
26726
26812
|
device_id?: string | undefined;
|
|
@@ -26746,6 +26832,7 @@ export declare const UserChannelAdded: {
|
|
|
26746
26832
|
display_name?: string | undefined;
|
|
26747
26833
|
about_me?: string | undefined;
|
|
26748
26834
|
user_status?: string | undefined;
|
|
26835
|
+
status?: string | undefined;
|
|
26749
26836
|
create_time_second?: number | undefined;
|
|
26750
26837
|
fcm_tokens?: {
|
|
26751
26838
|
device_id?: string | undefined;
|
|
@@ -26768,6 +26855,7 @@ export declare const UserChannelAdded: {
|
|
|
26768
26855
|
display_name?: string | undefined;
|
|
26769
26856
|
about_me?: string | undefined;
|
|
26770
26857
|
user_status?: string | undefined;
|
|
26858
|
+
status?: string | undefined;
|
|
26771
26859
|
create_time_second?: number | undefined;
|
|
26772
26860
|
fcm_tokens?: ({
|
|
26773
26861
|
device_id?: string | undefined;
|
|
@@ -26859,6 +26947,7 @@ export declare const UserChannelAdded: {
|
|
|
26859
26947
|
display_name?: string | undefined;
|
|
26860
26948
|
about_me?: string | undefined;
|
|
26861
26949
|
user_status?: string | undefined;
|
|
26950
|
+
status?: string | undefined;
|
|
26862
26951
|
create_time_second?: number | undefined;
|
|
26863
26952
|
fcm_tokens?: {
|
|
26864
26953
|
device_id?: string | undefined;
|
|
@@ -26884,6 +26973,7 @@ export declare const UserChannelAdded: {
|
|
|
26884
26973
|
display_name?: string | undefined;
|
|
26885
26974
|
about_me?: string | undefined;
|
|
26886
26975
|
user_status?: string | undefined;
|
|
26976
|
+
status?: string | undefined;
|
|
26887
26977
|
create_time_second?: number | undefined;
|
|
26888
26978
|
fcm_tokens?: {
|
|
26889
26979
|
device_id?: string | undefined;
|
|
@@ -27033,6 +27123,7 @@ export declare const UserChannelAdded: {
|
|
|
27033
27123
|
display_name?: string | undefined;
|
|
27034
27124
|
about_me?: string | undefined;
|
|
27035
27125
|
user_status?: string | undefined;
|
|
27126
|
+
status?: string | undefined;
|
|
27036
27127
|
create_time_second?: number | undefined;
|
|
27037
27128
|
fcm_tokens?: {
|
|
27038
27129
|
device_id?: string | undefined;
|
|
@@ -27055,6 +27146,7 @@ export declare const UserChannelAdded: {
|
|
|
27055
27146
|
display_name?: string | undefined;
|
|
27056
27147
|
about_me?: string | undefined;
|
|
27057
27148
|
user_status?: string | undefined;
|
|
27149
|
+
status?: string | undefined;
|
|
27058
27150
|
create_time_second?: number | undefined;
|
|
27059
27151
|
fcm_tokens?: {
|
|
27060
27152
|
device_id?: string | undefined;
|
|
@@ -27077,6 +27169,7 @@ export declare const UserChannelAdded: {
|
|
|
27077
27169
|
display_name?: string | undefined;
|
|
27078
27170
|
about_me?: string | undefined;
|
|
27079
27171
|
user_status?: string | undefined;
|
|
27172
|
+
status?: string | undefined;
|
|
27080
27173
|
create_time_second?: number | undefined;
|
|
27081
27174
|
fcm_tokens?: ({
|
|
27082
27175
|
device_id?: string | undefined;
|
|
@@ -27111,6 +27204,7 @@ export declare const UserChannelAdded: {
|
|
|
27111
27204
|
display_name?: string | undefined;
|
|
27112
27205
|
about_me?: string | undefined;
|
|
27113
27206
|
user_status?: string | undefined;
|
|
27207
|
+
status?: string | undefined;
|
|
27114
27208
|
create_time_second?: number | undefined;
|
|
27115
27209
|
fcm_tokens?: {
|
|
27116
27210
|
device_id?: string | undefined;
|
|
@@ -27136,6 +27230,7 @@ export declare const UserChannelAdded: {
|
|
|
27136
27230
|
display_name?: string | undefined;
|
|
27137
27231
|
about_me?: string | undefined;
|
|
27138
27232
|
user_status?: string | undefined;
|
|
27233
|
+
status?: string | undefined;
|
|
27139
27234
|
create_time_second?: number | undefined;
|
|
27140
27235
|
fcm_tokens?: {
|
|
27141
27236
|
device_id?: string | undefined;
|
|
@@ -27158,6 +27253,7 @@ export declare const UserChannelAdded: {
|
|
|
27158
27253
|
display_name?: string | undefined;
|
|
27159
27254
|
about_me?: string | undefined;
|
|
27160
27255
|
user_status?: string | undefined;
|
|
27256
|
+
status?: string | undefined;
|
|
27161
27257
|
create_time_second?: number | undefined;
|
|
27162
27258
|
fcm_tokens?: ({
|
|
27163
27259
|
device_id?: string | undefined;
|
|
@@ -27382,6 +27478,7 @@ export declare const UserProfileRedis: {
|
|
|
27382
27478
|
display_name?: string | undefined;
|
|
27383
27479
|
about_me?: string | undefined;
|
|
27384
27480
|
user_status?: string | undefined;
|
|
27481
|
+
status?: string | undefined;
|
|
27385
27482
|
create_time_second?: number | undefined;
|
|
27386
27483
|
fcm_tokens?: {
|
|
27387
27484
|
device_id?: string | undefined;
|
|
@@ -27404,6 +27501,7 @@ export declare const UserProfileRedis: {
|
|
|
27404
27501
|
display_name?: string | undefined;
|
|
27405
27502
|
about_me?: string | undefined;
|
|
27406
27503
|
user_status?: string | undefined;
|
|
27504
|
+
status?: string | undefined;
|
|
27407
27505
|
create_time_second?: number | undefined;
|
|
27408
27506
|
fcm_tokens?: ({
|
|
27409
27507
|
device_id?: string | undefined;
|
|
@@ -27439,6 +27537,7 @@ export declare const UserProfileRedis: {
|
|
|
27439
27537
|
display_name?: string | undefined;
|
|
27440
27538
|
about_me?: string | undefined;
|
|
27441
27539
|
user_status?: string | undefined;
|
|
27540
|
+
status?: string | undefined;
|
|
27442
27541
|
create_time_second?: number | undefined;
|
|
27443
27542
|
fcm_tokens?: {
|
|
27444
27543
|
device_id?: string | undefined;
|
|
@@ -27461,6 +27560,7 @@ export declare const UserProfileRedis: {
|
|
|
27461
27560
|
display_name?: string | undefined;
|
|
27462
27561
|
about_me?: string | undefined;
|
|
27463
27562
|
user_status?: string | undefined;
|
|
27563
|
+
status?: string | undefined;
|
|
27464
27564
|
create_time_second?: number | undefined;
|
|
27465
27565
|
fcm_tokens?: ({
|
|
27466
27566
|
device_id?: string | undefined;
|
|
@@ -29196,6 +29296,7 @@ export declare const ListDataSocket: {
|
|
|
29196
29296
|
location?: string | undefined;
|
|
29197
29297
|
timezone?: string | undefined;
|
|
29198
29298
|
user_status?: string | undefined;
|
|
29299
|
+
status?: string | undefined;
|
|
29199
29300
|
online?: boolean | undefined;
|
|
29200
29301
|
phone_number?: string | undefined;
|
|
29201
29302
|
edge_count?: number | undefined;
|
|
@@ -29252,6 +29353,7 @@ export declare const ListDataSocket: {
|
|
|
29252
29353
|
location?: string | undefined;
|
|
29253
29354
|
timezone?: string | undefined;
|
|
29254
29355
|
user_status?: string | undefined;
|
|
29356
|
+
status?: string | undefined;
|
|
29255
29357
|
online?: boolean | undefined;
|
|
29256
29358
|
phone_number?: string | undefined;
|
|
29257
29359
|
edge_count?: number | undefined;
|
|
@@ -32182,6 +32284,7 @@ export declare const ListDataSocket: {
|
|
|
32182
32284
|
location?: string | undefined;
|
|
32183
32285
|
timezone?: string | undefined;
|
|
32184
32286
|
user_status?: string | undefined;
|
|
32287
|
+
status?: string | undefined;
|
|
32185
32288
|
online?: boolean | undefined;
|
|
32186
32289
|
phone_number?: string | undefined;
|
|
32187
32290
|
edge_count?: number | undefined;
|
|
@@ -32210,6 +32313,7 @@ export declare const ListDataSocket: {
|
|
|
32210
32313
|
location?: string | undefined;
|
|
32211
32314
|
timezone?: string | undefined;
|
|
32212
32315
|
user_status?: string | undefined;
|
|
32316
|
+
status?: string | undefined;
|
|
32213
32317
|
online?: boolean | undefined;
|
|
32214
32318
|
phone_number?: string | undefined;
|
|
32215
32319
|
edge_count?: number | undefined;
|
|
@@ -32235,6 +32339,7 @@ export declare const ListDataSocket: {
|
|
|
32235
32339
|
location?: string | undefined;
|
|
32236
32340
|
timezone?: string | undefined;
|
|
32237
32341
|
user_status?: string | undefined;
|
|
32342
|
+
status?: string | undefined;
|
|
32238
32343
|
online?: boolean | undefined;
|
|
32239
32344
|
phone_number?: string | undefined;
|
|
32240
32345
|
edge_count?: number | undefined;
|
|
@@ -32260,6 +32365,7 @@ export declare const ListDataSocket: {
|
|
|
32260
32365
|
location?: string | undefined;
|
|
32261
32366
|
timezone?: string | undefined;
|
|
32262
32367
|
user_status?: string | undefined;
|
|
32368
|
+
status?: string | undefined;
|
|
32263
32369
|
online?: boolean | undefined;
|
|
32264
32370
|
phone_number?: string | undefined;
|
|
32265
32371
|
edge_count?: number | undefined;
|
|
@@ -32280,6 +32386,7 @@ export declare const ListDataSocket: {
|
|
|
32280
32386
|
location?: string | undefined;
|
|
32281
32387
|
timezone?: string | undefined;
|
|
32282
32388
|
user_status?: string | undefined;
|
|
32389
|
+
status?: string | undefined;
|
|
32283
32390
|
online?: boolean | undefined;
|
|
32284
32391
|
phone_number?: string | undefined;
|
|
32285
32392
|
edge_count?: number | undefined;
|
|
@@ -32305,6 +32412,7 @@ export declare const ListDataSocket: {
|
|
|
32305
32412
|
location?: string | undefined;
|
|
32306
32413
|
timezone?: string | undefined;
|
|
32307
32414
|
user_status?: string | undefined;
|
|
32415
|
+
status?: string | undefined;
|
|
32308
32416
|
online?: boolean | undefined;
|
|
32309
32417
|
phone_number?: string | undefined;
|
|
32310
32418
|
edge_count?: number | undefined;
|
|
@@ -32429,6 +32537,7 @@ export declare const ListDataSocket: {
|
|
|
32429
32537
|
location?: string | undefined;
|
|
32430
32538
|
timezone?: string | undefined;
|
|
32431
32539
|
user_status?: string | undefined;
|
|
32540
|
+
status?: string | undefined;
|
|
32432
32541
|
online?: boolean | undefined;
|
|
32433
32542
|
phone_number?: string | undefined;
|
|
32434
32543
|
edge_count?: number | undefined;
|
|
@@ -32459,6 +32568,7 @@ export declare const ListDataSocket: {
|
|
|
32459
32568
|
location?: string | undefined;
|
|
32460
32569
|
timezone?: string | undefined;
|
|
32461
32570
|
user_status?: string | undefined;
|
|
32571
|
+
status?: string | undefined;
|
|
32462
32572
|
online?: boolean | undefined;
|
|
32463
32573
|
phone_number?: string | undefined;
|
|
32464
32574
|
edge_count?: number | undefined;
|
|
@@ -32485,6 +32595,7 @@ export declare const ListDataSocket: {
|
|
|
32485
32595
|
location?: string | undefined;
|
|
32486
32596
|
timezone?: string | undefined;
|
|
32487
32597
|
user_status?: string | undefined;
|
|
32598
|
+
status?: string | undefined;
|
|
32488
32599
|
online?: boolean | undefined;
|
|
32489
32600
|
phone_number?: string | undefined;
|
|
32490
32601
|
edge_count?: number | undefined;
|
|
@@ -32511,6 +32622,7 @@ export declare const ListDataSocket: {
|
|
|
32511
32622
|
location?: string | undefined;
|
|
32512
32623
|
timezone?: string | undefined;
|
|
32513
32624
|
user_status?: string | undefined;
|
|
32625
|
+
status?: string | undefined;
|
|
32514
32626
|
online?: boolean | undefined;
|
|
32515
32627
|
phone_number?: string | undefined;
|
|
32516
32628
|
edge_count?: number | undefined;
|
|
@@ -32531,6 +32643,7 @@ export declare const ListDataSocket: {
|
|
|
32531
32643
|
location?: string | undefined;
|
|
32532
32644
|
timezone?: string | undefined;
|
|
32533
32645
|
user_status?: string | undefined;
|
|
32646
|
+
status?: string | undefined;
|
|
32534
32647
|
online?: boolean | undefined;
|
|
32535
32648
|
phone_number?: string | undefined;
|
|
32536
32649
|
edge_count?: number | undefined;
|
|
@@ -32557,6 +32670,7 @@ export declare const ListDataSocket: {
|
|
|
32557
32670
|
location?: string | undefined;
|
|
32558
32671
|
timezone?: string | undefined;
|
|
32559
32672
|
user_status?: string | undefined;
|
|
32673
|
+
status?: string | undefined;
|
|
32560
32674
|
online?: boolean | undefined;
|
|
32561
32675
|
phone_number?: string | undefined;
|
|
32562
32676
|
edge_count?: number | undefined;
|
|
@@ -33526,6 +33640,7 @@ export declare const ListDataSocket: {
|
|
|
33526
33640
|
location?: string | undefined;
|
|
33527
33641
|
timezone?: string | undefined;
|
|
33528
33642
|
user_status?: string | undefined;
|
|
33643
|
+
status?: string | undefined;
|
|
33529
33644
|
online?: boolean | undefined;
|
|
33530
33645
|
phone_number?: string | undefined;
|
|
33531
33646
|
edge_count?: number | undefined;
|
|
@@ -33582,6 +33697,7 @@ export declare const ListDataSocket: {
|
|
|
33582
33697
|
location?: string | undefined;
|
|
33583
33698
|
timezone?: string | undefined;
|
|
33584
33699
|
user_status?: string | undefined;
|
|
33700
|
+
status?: string | undefined;
|
|
33585
33701
|
online?: boolean | undefined;
|
|
33586
33702
|
phone_number?: string | undefined;
|
|
33587
33703
|
edge_count?: number | undefined;
|
|
@@ -36512,6 +36628,7 @@ export declare const ListDataSocket: {
|
|
|
36512
36628
|
location?: string | undefined;
|
|
36513
36629
|
timezone?: string | undefined;
|
|
36514
36630
|
user_status?: string | undefined;
|
|
36631
|
+
status?: string | undefined;
|
|
36515
36632
|
online?: boolean | undefined;
|
|
36516
36633
|
phone_number?: string | undefined;
|
|
36517
36634
|
edge_count?: number | undefined;
|
|
@@ -36540,6 +36657,7 @@ export declare const ListDataSocket: {
|
|
|
36540
36657
|
location?: string | undefined;
|
|
36541
36658
|
timezone?: string | undefined;
|
|
36542
36659
|
user_status?: string | undefined;
|
|
36660
|
+
status?: string | undefined;
|
|
36543
36661
|
online?: boolean | undefined;
|
|
36544
36662
|
phone_number?: string | undefined;
|
|
36545
36663
|
edge_count?: number | undefined;
|
|
@@ -36565,6 +36683,7 @@ export declare const ListDataSocket: {
|
|
|
36565
36683
|
location?: string | undefined;
|
|
36566
36684
|
timezone?: string | undefined;
|
|
36567
36685
|
user_status?: string | undefined;
|
|
36686
|
+
status?: string | undefined;
|
|
36568
36687
|
online?: boolean | undefined;
|
|
36569
36688
|
phone_number?: string | undefined;
|
|
36570
36689
|
edge_count?: number | undefined;
|
|
@@ -36590,6 +36709,7 @@ export declare const ListDataSocket: {
|
|
|
36590
36709
|
location?: string | undefined;
|
|
36591
36710
|
timezone?: string | undefined;
|
|
36592
36711
|
user_status?: string | undefined;
|
|
36712
|
+
status?: string | undefined;
|
|
36593
36713
|
online?: boolean | undefined;
|
|
36594
36714
|
phone_number?: string | undefined;
|
|
36595
36715
|
edge_count?: number | undefined;
|
|
@@ -36610,6 +36730,7 @@ export declare const ListDataSocket: {
|
|
|
36610
36730
|
location?: string | undefined;
|
|
36611
36731
|
timezone?: string | undefined;
|
|
36612
36732
|
user_status?: string | undefined;
|
|
36733
|
+
status?: string | undefined;
|
|
36613
36734
|
online?: boolean | undefined;
|
|
36614
36735
|
phone_number?: string | undefined;
|
|
36615
36736
|
edge_count?: number | undefined;
|
|
@@ -36635,6 +36756,7 @@ export declare const ListDataSocket: {
|
|
|
36635
36756
|
location?: string | undefined;
|
|
36636
36757
|
timezone?: string | undefined;
|
|
36637
36758
|
user_status?: string | undefined;
|
|
36759
|
+
status?: string | undefined;
|
|
36638
36760
|
online?: boolean | undefined;
|
|
36639
36761
|
phone_number?: string | undefined;
|
|
36640
36762
|
edge_count?: number | undefined;
|
|
@@ -36759,6 +36881,7 @@ export declare const ListDataSocket: {
|
|
|
36759
36881
|
location?: string | undefined;
|
|
36760
36882
|
timezone?: string | undefined;
|
|
36761
36883
|
user_status?: string | undefined;
|
|
36884
|
+
status?: string | undefined;
|
|
36762
36885
|
online?: boolean | undefined;
|
|
36763
36886
|
phone_number?: string | undefined;
|
|
36764
36887
|
edge_count?: number | undefined;
|
|
@@ -36789,6 +36912,7 @@ export declare const ListDataSocket: {
|
|
|
36789
36912
|
location?: string | undefined;
|
|
36790
36913
|
timezone?: string | undefined;
|
|
36791
36914
|
user_status?: string | undefined;
|
|
36915
|
+
status?: string | undefined;
|
|
36792
36916
|
online?: boolean | undefined;
|
|
36793
36917
|
phone_number?: string | undefined;
|
|
36794
36918
|
edge_count?: number | undefined;
|
|
@@ -36815,6 +36939,7 @@ export declare const ListDataSocket: {
|
|
|
36815
36939
|
location?: string | undefined;
|
|
36816
36940
|
timezone?: string | undefined;
|
|
36817
36941
|
user_status?: string | undefined;
|
|
36942
|
+
status?: string | undefined;
|
|
36818
36943
|
online?: boolean | undefined;
|
|
36819
36944
|
phone_number?: string | undefined;
|
|
36820
36945
|
edge_count?: number | undefined;
|
|
@@ -36841,6 +36966,7 @@ export declare const ListDataSocket: {
|
|
|
36841
36966
|
location?: string | undefined;
|
|
36842
36967
|
timezone?: string | undefined;
|
|
36843
36968
|
user_status?: string | undefined;
|
|
36969
|
+
status?: string | undefined;
|
|
36844
36970
|
online?: boolean | undefined;
|
|
36845
36971
|
phone_number?: string | undefined;
|
|
36846
36972
|
edge_count?: number | undefined;
|
|
@@ -36861,6 +36987,7 @@ export declare const ListDataSocket: {
|
|
|
36861
36987
|
location?: string | undefined;
|
|
36862
36988
|
timezone?: string | undefined;
|
|
36863
36989
|
user_status?: string | undefined;
|
|
36990
|
+
status?: string | undefined;
|
|
36864
36991
|
online?: boolean | undefined;
|
|
36865
36992
|
phone_number?: string | undefined;
|
|
36866
36993
|
edge_count?: number | undefined;
|
|
@@ -36887,6 +37014,7 @@ export declare const ListDataSocket: {
|
|
|
36887
37014
|
location?: string | undefined;
|
|
36888
37015
|
timezone?: string | undefined;
|
|
36889
37016
|
user_status?: string | undefined;
|
|
37017
|
+
status?: string | undefined;
|
|
36890
37018
|
online?: boolean | undefined;
|
|
36891
37019
|
phone_number?: string | undefined;
|
|
36892
37020
|
edge_count?: number | undefined;
|