mezon-js-protobuf 1.7.46 → 1.7.48
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 +210 -9
- package/dist/mezon-js-protobuf/api/api.d.ts +224 -165
- package/dist/mezon-js-protobuf/rtapi/realtime.d.ts +184 -116
- package/dist/mezon-js-protobuf.cjs.js +43 -14
- package/dist/mezon-js-protobuf.esm.mjs +43 -14
- package/package.json +1 -1
- package/rtapi/realtime.ts +39 -2
|
@@ -203,6 +203,8 @@ export interface AddClanUserEvent {
|
|
|
203
203
|
clan_id: string;
|
|
204
204
|
/** the user */
|
|
205
205
|
user: UserProfileRedis | undefined;
|
|
206
|
+
/** inviter */
|
|
207
|
+
invitor: string;
|
|
206
208
|
}
|
|
207
209
|
/** On role assign */
|
|
208
210
|
export interface RoleAssignedEvent {
|
|
@@ -962,6 +964,8 @@ export interface UserProfileRedis {
|
|
|
962
964
|
app_token: string;
|
|
963
965
|
/** app url */
|
|
964
966
|
app_url: string;
|
|
967
|
+
/** is bot */
|
|
968
|
+
is_bot: boolean;
|
|
965
969
|
}
|
|
966
970
|
export interface FCMTokens {
|
|
967
971
|
/** deviceID to follow. */
|
|
@@ -1321,7 +1325,7 @@ export declare const Envelope: {
|
|
|
1321
1325
|
sender_id?: string | undefined;
|
|
1322
1326
|
content?: string | undefined;
|
|
1323
1327
|
attachment?: string | undefined;
|
|
1324
|
-
|
|
1328
|
+
reference?: string | undefined;
|
|
1325
1329
|
mention?: string | undefined;
|
|
1326
1330
|
reaction?: string | undefined;
|
|
1327
1331
|
repliers?: string[] | undefined;
|
|
@@ -1332,7 +1336,7 @@ export declare const Envelope: {
|
|
|
1332
1336
|
sender_id?: string | undefined;
|
|
1333
1337
|
content?: string | undefined;
|
|
1334
1338
|
attachment?: string | undefined;
|
|
1335
|
-
|
|
1339
|
+
reference?: string | undefined;
|
|
1336
1340
|
mention?: string | undefined;
|
|
1337
1341
|
reaction?: string | undefined;
|
|
1338
1342
|
repliers?: string[] | undefined;
|
|
@@ -1589,7 +1593,7 @@ export declare const Envelope: {
|
|
|
1589
1593
|
sender_id?: string | undefined;
|
|
1590
1594
|
content?: string | undefined;
|
|
1591
1595
|
attachment?: string | undefined;
|
|
1592
|
-
|
|
1596
|
+
reference?: string | undefined;
|
|
1593
1597
|
mention?: string | undefined;
|
|
1594
1598
|
reaction?: string | undefined;
|
|
1595
1599
|
repliers?: string[] | undefined;
|
|
@@ -1600,7 +1604,7 @@ export declare const Envelope: {
|
|
|
1600
1604
|
sender_id?: string | undefined;
|
|
1601
1605
|
content?: string | undefined;
|
|
1602
1606
|
attachment?: string | undefined;
|
|
1603
|
-
|
|
1607
|
+
reference?: string | undefined;
|
|
1604
1608
|
mention?: string | undefined;
|
|
1605
1609
|
reaction?: string | undefined;
|
|
1606
1610
|
repliers?: string[] | undefined;
|
|
@@ -1645,6 +1649,7 @@ export declare const Envelope: {
|
|
|
1645
1649
|
mezon_id?: string | undefined;
|
|
1646
1650
|
app_token?: string | undefined;
|
|
1647
1651
|
app_url?: string | undefined;
|
|
1652
|
+
is_bot?: boolean | undefined;
|
|
1648
1653
|
}[] | undefined;
|
|
1649
1654
|
status?: string | undefined;
|
|
1650
1655
|
clan_id?: string | undefined;
|
|
@@ -1669,6 +1674,7 @@ export declare const Envelope: {
|
|
|
1669
1674
|
mezon_id?: string | undefined;
|
|
1670
1675
|
app_token?: string | undefined;
|
|
1671
1676
|
app_url?: string | undefined;
|
|
1677
|
+
is_bot?: boolean | undefined;
|
|
1672
1678
|
} | undefined;
|
|
1673
1679
|
create_time_second?: number | undefined;
|
|
1674
1680
|
active?: number | undefined;
|
|
@@ -1737,7 +1743,9 @@ export declare const Envelope: {
|
|
|
1737
1743
|
mezon_id?: string | undefined;
|
|
1738
1744
|
app_token?: string | undefined;
|
|
1739
1745
|
app_url?: string | undefined;
|
|
1746
|
+
is_bot?: boolean | undefined;
|
|
1740
1747
|
} | undefined;
|
|
1748
|
+
invitor?: string | undefined;
|
|
1741
1749
|
} | undefined;
|
|
1742
1750
|
clan_event_created?: {
|
|
1743
1751
|
title?: string | undefined;
|
|
@@ -1983,7 +1991,7 @@ export declare const Envelope: {
|
|
|
1983
1991
|
sender_id?: string | undefined;
|
|
1984
1992
|
content?: string | undefined;
|
|
1985
1993
|
attachment?: string | undefined;
|
|
1986
|
-
|
|
1994
|
+
reference?: string | undefined;
|
|
1987
1995
|
mention?: string | undefined;
|
|
1988
1996
|
reaction?: string | undefined;
|
|
1989
1997
|
repliers?: string[] | undefined;
|
|
@@ -2712,7 +2720,7 @@ export declare const Envelope: {
|
|
|
2712
2720
|
sender_id?: string | undefined;
|
|
2713
2721
|
content?: string | undefined;
|
|
2714
2722
|
attachment?: string | undefined;
|
|
2715
|
-
|
|
2723
|
+
reference?: string | undefined;
|
|
2716
2724
|
mention?: string | undefined;
|
|
2717
2725
|
reaction?: string | undefined;
|
|
2718
2726
|
repliers?: string[] | undefined;
|
|
@@ -2723,7 +2731,7 @@ export declare const Envelope: {
|
|
|
2723
2731
|
sender_id?: string | undefined;
|
|
2724
2732
|
content?: string | undefined;
|
|
2725
2733
|
attachment?: string | undefined;
|
|
2726
|
-
|
|
2734
|
+
reference?: string | undefined;
|
|
2727
2735
|
mention?: string | undefined;
|
|
2728
2736
|
reaction?: string | undefined;
|
|
2729
2737
|
repliers?: string[] | undefined;
|
|
@@ -2781,7 +2789,7 @@ export declare const Envelope: {
|
|
|
2781
2789
|
sender_id?: string | undefined;
|
|
2782
2790
|
content?: string | undefined;
|
|
2783
2791
|
attachment?: string | undefined;
|
|
2784
|
-
|
|
2792
|
+
reference?: string | undefined;
|
|
2785
2793
|
mention?: string | undefined;
|
|
2786
2794
|
reaction?: string | undefined;
|
|
2787
2795
|
repliers?: string[] | undefined;
|
|
@@ -2792,7 +2800,7 @@ export declare const Envelope: {
|
|
|
2792
2800
|
sender_id?: string | undefined;
|
|
2793
2801
|
content?: string | undefined;
|
|
2794
2802
|
attachment?: string | undefined;
|
|
2795
|
-
|
|
2803
|
+
reference?: string | undefined;
|
|
2796
2804
|
mention?: string | undefined;
|
|
2797
2805
|
reaction?: string | undefined;
|
|
2798
2806
|
repliers?: string[] | undefined;
|
|
@@ -2848,7 +2856,7 @@ export declare const Envelope: {
|
|
|
2848
2856
|
sender_id?: string | undefined;
|
|
2849
2857
|
content?: string | undefined;
|
|
2850
2858
|
attachment?: string | undefined;
|
|
2851
|
-
|
|
2859
|
+
reference?: string | undefined;
|
|
2852
2860
|
mention?: string | undefined;
|
|
2853
2861
|
reaction?: string | undefined;
|
|
2854
2862
|
repliers?: string[] | undefined;
|
|
@@ -2859,7 +2867,7 @@ export declare const Envelope: {
|
|
|
2859
2867
|
sender_id?: string | undefined;
|
|
2860
2868
|
content?: string | undefined;
|
|
2861
2869
|
attachment?: string | undefined;
|
|
2862
|
-
|
|
2870
|
+
reference?: string | undefined;
|
|
2863
2871
|
mention?: string | undefined;
|
|
2864
2872
|
reaction?: string | undefined;
|
|
2865
2873
|
repliers?: string[] | undefined;
|
|
@@ -2915,7 +2923,7 @@ export declare const Envelope: {
|
|
|
2915
2923
|
sender_id?: string | undefined;
|
|
2916
2924
|
content?: string | undefined;
|
|
2917
2925
|
attachment?: string | undefined;
|
|
2918
|
-
|
|
2926
|
+
reference?: string | undefined;
|
|
2919
2927
|
mention?: string | undefined;
|
|
2920
2928
|
reaction?: string | undefined;
|
|
2921
2929
|
repliers?: string[] | undefined;
|
|
@@ -2926,7 +2934,7 @@ export declare const Envelope: {
|
|
|
2926
2934
|
sender_id?: string | undefined;
|
|
2927
2935
|
content?: string | undefined;
|
|
2928
2936
|
attachment?: string | undefined;
|
|
2929
|
-
|
|
2937
|
+
reference?: string | undefined;
|
|
2930
2938
|
mention?: string | undefined;
|
|
2931
2939
|
reaction?: string | undefined;
|
|
2932
2940
|
repliers?: string[] | undefined;
|
|
@@ -2967,7 +2975,7 @@ export declare const Envelope: {
|
|
|
2967
2975
|
sender_id?: string | undefined;
|
|
2968
2976
|
content?: string | undefined;
|
|
2969
2977
|
attachment?: string | undefined;
|
|
2970
|
-
|
|
2978
|
+
reference?: string | undefined;
|
|
2971
2979
|
mention?: string | undefined;
|
|
2972
2980
|
reaction?: string | undefined;
|
|
2973
2981
|
repliers?: string[] | undefined;
|
|
@@ -2977,7 +2985,7 @@ export declare const Envelope: {
|
|
|
2977
2985
|
sender_id?: string | undefined;
|
|
2978
2986
|
content?: string | undefined;
|
|
2979
2987
|
attachment?: string | undefined;
|
|
2980
|
-
|
|
2988
|
+
reference?: string | undefined;
|
|
2981
2989
|
mention?: string | undefined;
|
|
2982
2990
|
reaction?: string | undefined;
|
|
2983
2991
|
repliers?: (string[] & string[] & { [K_31 in Exclude<keyof I["notifications"]["notifications"][number]["channel"]["last_sent_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
@@ -2988,7 +2996,7 @@ export declare const Envelope: {
|
|
|
2988
2996
|
sender_id?: string | undefined;
|
|
2989
2997
|
content?: string | undefined;
|
|
2990
2998
|
attachment?: string | undefined;
|
|
2991
|
-
|
|
2999
|
+
reference?: string | undefined;
|
|
2992
3000
|
mention?: string | undefined;
|
|
2993
3001
|
reaction?: string | undefined;
|
|
2994
3002
|
repliers?: string[] | undefined;
|
|
@@ -2998,7 +3006,7 @@ export declare const Envelope: {
|
|
|
2998
3006
|
sender_id?: string | undefined;
|
|
2999
3007
|
content?: string | undefined;
|
|
3000
3008
|
attachment?: string | undefined;
|
|
3001
|
-
|
|
3009
|
+
reference?: string | undefined;
|
|
3002
3010
|
mention?: string | undefined;
|
|
3003
3011
|
reaction?: string | undefined;
|
|
3004
3012
|
repliers?: (string[] & string[] & { [K_33 in Exclude<keyof I["notifications"]["notifications"][number]["channel"]["last_seen_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
@@ -3054,7 +3062,7 @@ export declare const Envelope: {
|
|
|
3054
3062
|
sender_id?: string | undefined;
|
|
3055
3063
|
content?: string | undefined;
|
|
3056
3064
|
attachment?: string | undefined;
|
|
3057
|
-
|
|
3065
|
+
reference?: string | undefined;
|
|
3058
3066
|
mention?: string | undefined;
|
|
3059
3067
|
reaction?: string | undefined;
|
|
3060
3068
|
repliers?: string[] | undefined;
|
|
@@ -3065,7 +3073,7 @@ export declare const Envelope: {
|
|
|
3065
3073
|
sender_id?: string | undefined;
|
|
3066
3074
|
content?: string | undefined;
|
|
3067
3075
|
attachment?: string | undefined;
|
|
3068
|
-
|
|
3076
|
+
reference?: string | undefined;
|
|
3069
3077
|
mention?: string | undefined;
|
|
3070
3078
|
reaction?: string | undefined;
|
|
3071
3079
|
repliers?: string[] | undefined;
|
|
@@ -3648,7 +3656,7 @@ export declare const Envelope: {
|
|
|
3648
3656
|
sender_id?: string | undefined;
|
|
3649
3657
|
content?: string | undefined;
|
|
3650
3658
|
attachment?: string | undefined;
|
|
3651
|
-
|
|
3659
|
+
reference?: string | undefined;
|
|
3652
3660
|
mention?: string | undefined;
|
|
3653
3661
|
reaction?: string | undefined;
|
|
3654
3662
|
repliers?: string[] | undefined;
|
|
@@ -3659,7 +3667,7 @@ export declare const Envelope: {
|
|
|
3659
3667
|
sender_id?: string | undefined;
|
|
3660
3668
|
content?: string | undefined;
|
|
3661
3669
|
attachment?: string | undefined;
|
|
3662
|
-
|
|
3670
|
+
reference?: string | undefined;
|
|
3663
3671
|
mention?: string | undefined;
|
|
3664
3672
|
reaction?: string | undefined;
|
|
3665
3673
|
repliers?: string[] | undefined;
|
|
@@ -3704,6 +3712,7 @@ export declare const Envelope: {
|
|
|
3704
3712
|
mezon_id?: string | undefined;
|
|
3705
3713
|
app_token?: string | undefined;
|
|
3706
3714
|
app_url?: string | undefined;
|
|
3715
|
+
is_bot?: boolean | undefined;
|
|
3707
3716
|
}[] | undefined;
|
|
3708
3717
|
status?: string | undefined;
|
|
3709
3718
|
clan_id?: string | undefined;
|
|
@@ -3728,6 +3737,7 @@ export declare const Envelope: {
|
|
|
3728
3737
|
mezon_id?: string | undefined;
|
|
3729
3738
|
app_token?: string | undefined;
|
|
3730
3739
|
app_url?: string | undefined;
|
|
3740
|
+
is_bot?: boolean | undefined;
|
|
3731
3741
|
} | undefined;
|
|
3732
3742
|
create_time_second?: number | undefined;
|
|
3733
3743
|
active?: number | undefined;
|
|
@@ -3750,7 +3760,7 @@ export declare const Envelope: {
|
|
|
3750
3760
|
sender_id?: string | undefined;
|
|
3751
3761
|
content?: string | undefined;
|
|
3752
3762
|
attachment?: string | undefined;
|
|
3753
|
-
|
|
3763
|
+
reference?: string | undefined;
|
|
3754
3764
|
mention?: string | undefined;
|
|
3755
3765
|
reaction?: string | undefined;
|
|
3756
3766
|
repliers?: string[] | undefined;
|
|
@@ -3761,7 +3771,7 @@ export declare const Envelope: {
|
|
|
3761
3771
|
sender_id?: string | undefined;
|
|
3762
3772
|
content?: string | undefined;
|
|
3763
3773
|
attachment?: string | undefined;
|
|
3764
|
-
|
|
3774
|
+
reference?: string | undefined;
|
|
3765
3775
|
mention?: string | undefined;
|
|
3766
3776
|
reaction?: string | undefined;
|
|
3767
3777
|
repliers?: string[] | undefined;
|
|
@@ -3802,7 +3812,7 @@ export declare const Envelope: {
|
|
|
3802
3812
|
sender_id?: string | undefined;
|
|
3803
3813
|
content?: string | undefined;
|
|
3804
3814
|
attachment?: string | undefined;
|
|
3805
|
-
|
|
3815
|
+
reference?: string | undefined;
|
|
3806
3816
|
mention?: string | undefined;
|
|
3807
3817
|
reaction?: string | undefined;
|
|
3808
3818
|
repliers?: string[] | undefined;
|
|
@@ -3812,7 +3822,7 @@ export declare const Envelope: {
|
|
|
3812
3822
|
sender_id?: string | undefined;
|
|
3813
3823
|
content?: string | undefined;
|
|
3814
3824
|
attachment?: string | undefined;
|
|
3815
|
-
|
|
3825
|
+
reference?: string | undefined;
|
|
3816
3826
|
mention?: string | undefined;
|
|
3817
3827
|
reaction?: string | undefined;
|
|
3818
3828
|
repliers?: (string[] & string[] & { [K_84 in Exclude<keyof I["user_channel_added_event"]["channel_desc"]["last_sent_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
@@ -3823,7 +3833,7 @@ export declare const Envelope: {
|
|
|
3823
3833
|
sender_id?: string | undefined;
|
|
3824
3834
|
content?: string | undefined;
|
|
3825
3835
|
attachment?: string | undefined;
|
|
3826
|
-
|
|
3836
|
+
reference?: string | undefined;
|
|
3827
3837
|
mention?: string | undefined;
|
|
3828
3838
|
reaction?: string | undefined;
|
|
3829
3839
|
repliers?: string[] | undefined;
|
|
@@ -3833,7 +3843,7 @@ export declare const Envelope: {
|
|
|
3833
3843
|
sender_id?: string | undefined;
|
|
3834
3844
|
content?: string | undefined;
|
|
3835
3845
|
attachment?: string | undefined;
|
|
3836
|
-
|
|
3846
|
+
reference?: string | undefined;
|
|
3837
3847
|
mention?: string | undefined;
|
|
3838
3848
|
reaction?: string | undefined;
|
|
3839
3849
|
repliers?: (string[] & string[] & { [K_86 in Exclude<keyof I["user_channel_added_event"]["channel_desc"]["last_seen_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
@@ -3878,6 +3888,7 @@ export declare const Envelope: {
|
|
|
3878
3888
|
mezon_id?: string | undefined;
|
|
3879
3889
|
app_token?: string | undefined;
|
|
3880
3890
|
app_url?: string | undefined;
|
|
3891
|
+
is_bot?: boolean | undefined;
|
|
3881
3892
|
}[] & ({
|
|
3882
3893
|
user_id?: string | undefined;
|
|
3883
3894
|
username?: string | undefined;
|
|
@@ -3899,6 +3910,7 @@ export declare const Envelope: {
|
|
|
3899
3910
|
mezon_id?: string | undefined;
|
|
3900
3911
|
app_token?: string | undefined;
|
|
3901
3912
|
app_url?: string | undefined;
|
|
3913
|
+
is_bot?: boolean | undefined;
|
|
3902
3914
|
} & {
|
|
3903
3915
|
user_id?: string | undefined;
|
|
3904
3916
|
username?: string | undefined;
|
|
@@ -3932,6 +3944,7 @@ export declare const Envelope: {
|
|
|
3932
3944
|
mezon_id?: string | undefined;
|
|
3933
3945
|
app_token?: string | undefined;
|
|
3934
3946
|
app_url?: string | undefined;
|
|
3947
|
+
is_bot?: boolean | undefined;
|
|
3935
3948
|
} & { [K_97 in Exclude<keyof I["user_channel_added_event"]["users"][number], keyof UserProfileRedis>]: never; })[] & { [K_98 in Exclude<keyof I["user_channel_added_event"]["users"], keyof {
|
|
3936
3949
|
user_id?: string | undefined;
|
|
3937
3950
|
username?: string | undefined;
|
|
@@ -3953,6 +3966,7 @@ export declare const Envelope: {
|
|
|
3953
3966
|
mezon_id?: string | undefined;
|
|
3954
3967
|
app_token?: string | undefined;
|
|
3955
3968
|
app_url?: string | undefined;
|
|
3969
|
+
is_bot?: boolean | undefined;
|
|
3956
3970
|
}[]>]: never; }) | undefined;
|
|
3957
3971
|
status?: string | undefined;
|
|
3958
3972
|
clan_id?: string | undefined;
|
|
@@ -3977,6 +3991,7 @@ export declare const Envelope: {
|
|
|
3977
3991
|
mezon_id?: string | undefined;
|
|
3978
3992
|
app_token?: string | undefined;
|
|
3979
3993
|
app_url?: string | undefined;
|
|
3994
|
+
is_bot?: boolean | undefined;
|
|
3980
3995
|
} & {
|
|
3981
3996
|
user_id?: string | undefined;
|
|
3982
3997
|
username?: string | undefined;
|
|
@@ -4010,6 +4025,7 @@ export declare const Envelope: {
|
|
|
4010
4025
|
mezon_id?: string | undefined;
|
|
4011
4026
|
app_token?: string | undefined;
|
|
4012
4027
|
app_url?: string | undefined;
|
|
4028
|
+
is_bot?: boolean | undefined;
|
|
4013
4029
|
} & { [K_102 in Exclude<keyof I["user_channel_added_event"]["caller"], keyof UserProfileRedis>]: never; }) | undefined;
|
|
4014
4030
|
create_time_second?: number | undefined;
|
|
4015
4031
|
active?: number | undefined;
|
|
@@ -4113,7 +4129,9 @@ export declare const Envelope: {
|
|
|
4113
4129
|
mezon_id?: string | undefined;
|
|
4114
4130
|
app_token?: string | undefined;
|
|
4115
4131
|
app_url?: string | undefined;
|
|
4132
|
+
is_bot?: boolean | undefined;
|
|
4116
4133
|
} | undefined;
|
|
4134
|
+
invitor?: string | undefined;
|
|
4117
4135
|
} & {
|
|
4118
4136
|
clan_id?: string | undefined;
|
|
4119
4137
|
user?: ({
|
|
@@ -4137,6 +4155,7 @@ export declare const Envelope: {
|
|
|
4137
4155
|
mezon_id?: string | undefined;
|
|
4138
4156
|
app_token?: string | undefined;
|
|
4139
4157
|
app_url?: string | undefined;
|
|
4158
|
+
is_bot?: boolean | undefined;
|
|
4140
4159
|
} & {
|
|
4141
4160
|
user_id?: string | undefined;
|
|
4142
4161
|
username?: string | undefined;
|
|
@@ -4170,7 +4189,9 @@ export declare const Envelope: {
|
|
|
4170
4189
|
mezon_id?: string | undefined;
|
|
4171
4190
|
app_token?: string | undefined;
|
|
4172
4191
|
app_url?: string | undefined;
|
|
4192
|
+
is_bot?: boolean | undefined;
|
|
4173
4193
|
} & { [K_115 in Exclude<keyof I["add_clan_user_event"]["user"], keyof UserProfileRedis>]: never; }) | undefined;
|
|
4194
|
+
invitor?: string | undefined;
|
|
4174
4195
|
} & { [K_116 in Exclude<keyof I["add_clan_user_event"], keyof AddClanUserEvent>]: never; }) | undefined;
|
|
4175
4196
|
clan_event_created?: ({
|
|
4176
4197
|
title?: string | undefined;
|
|
@@ -4817,7 +4838,7 @@ export declare const Envelope: {
|
|
|
4817
4838
|
sender_id?: string | undefined;
|
|
4818
4839
|
content?: string | undefined;
|
|
4819
4840
|
attachment?: string | undefined;
|
|
4820
|
-
|
|
4841
|
+
reference?: string | undefined;
|
|
4821
4842
|
mention?: string | undefined;
|
|
4822
4843
|
reaction?: string | undefined;
|
|
4823
4844
|
repliers?: string[] | undefined;
|
|
@@ -4863,7 +4884,7 @@ export declare const Envelope: {
|
|
|
4863
4884
|
sender_id?: string | undefined;
|
|
4864
4885
|
content?: string | undefined;
|
|
4865
4886
|
attachment?: string | undefined;
|
|
4866
|
-
|
|
4887
|
+
reference?: string | undefined;
|
|
4867
4888
|
mention?: string | undefined;
|
|
4868
4889
|
reaction?: string | undefined;
|
|
4869
4890
|
repliers?: string[] | undefined;
|
|
@@ -4873,7 +4894,7 @@ export declare const Envelope: {
|
|
|
4873
4894
|
sender_id?: string | undefined;
|
|
4874
4895
|
content?: string | undefined;
|
|
4875
4896
|
attachment?: string | undefined;
|
|
4876
|
-
|
|
4897
|
+
reference?: string | undefined;
|
|
4877
4898
|
mention?: string | undefined;
|
|
4878
4899
|
reaction?: string | undefined;
|
|
4879
4900
|
repliers?: (string[] & string[] & { [K_165 in Exclude<keyof I["sd_topic_event"]["last_sent_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
@@ -5292,7 +5313,7 @@ export declare const Envelope: {
|
|
|
5292
5313
|
sender_id?: string | undefined;
|
|
5293
5314
|
content?: string | undefined;
|
|
5294
5315
|
attachment?: string | undefined;
|
|
5295
|
-
|
|
5316
|
+
reference?: string | undefined;
|
|
5296
5317
|
mention?: string | undefined;
|
|
5297
5318
|
reaction?: string | undefined;
|
|
5298
5319
|
repliers?: string[] | undefined;
|
|
@@ -5303,7 +5324,7 @@ export declare const Envelope: {
|
|
|
5303
5324
|
sender_id?: string | undefined;
|
|
5304
5325
|
content?: string | undefined;
|
|
5305
5326
|
attachment?: string | undefined;
|
|
5306
|
-
|
|
5327
|
+
reference?: string | undefined;
|
|
5307
5328
|
mention?: string | undefined;
|
|
5308
5329
|
reaction?: string | undefined;
|
|
5309
5330
|
repliers?: string[] | undefined;
|
|
@@ -5560,7 +5581,7 @@ export declare const Envelope: {
|
|
|
5560
5581
|
sender_id?: string | undefined;
|
|
5561
5582
|
content?: string | undefined;
|
|
5562
5583
|
attachment?: string | undefined;
|
|
5563
|
-
|
|
5584
|
+
reference?: string | undefined;
|
|
5564
5585
|
mention?: string | undefined;
|
|
5565
5586
|
reaction?: string | undefined;
|
|
5566
5587
|
repliers?: string[] | undefined;
|
|
@@ -5571,7 +5592,7 @@ export declare const Envelope: {
|
|
|
5571
5592
|
sender_id?: string | undefined;
|
|
5572
5593
|
content?: string | undefined;
|
|
5573
5594
|
attachment?: string | undefined;
|
|
5574
|
-
|
|
5595
|
+
reference?: string | undefined;
|
|
5575
5596
|
mention?: string | undefined;
|
|
5576
5597
|
reaction?: string | undefined;
|
|
5577
5598
|
repliers?: string[] | undefined;
|
|
@@ -5616,6 +5637,7 @@ export declare const Envelope: {
|
|
|
5616
5637
|
mezon_id?: string | undefined;
|
|
5617
5638
|
app_token?: string | undefined;
|
|
5618
5639
|
app_url?: string | undefined;
|
|
5640
|
+
is_bot?: boolean | undefined;
|
|
5619
5641
|
}[] | undefined;
|
|
5620
5642
|
status?: string | undefined;
|
|
5621
5643
|
clan_id?: string | undefined;
|
|
@@ -5640,6 +5662,7 @@ export declare const Envelope: {
|
|
|
5640
5662
|
mezon_id?: string | undefined;
|
|
5641
5663
|
app_token?: string | undefined;
|
|
5642
5664
|
app_url?: string | undefined;
|
|
5665
|
+
is_bot?: boolean | undefined;
|
|
5643
5666
|
} | undefined;
|
|
5644
5667
|
create_time_second?: number | undefined;
|
|
5645
5668
|
active?: number | undefined;
|
|
@@ -5708,7 +5731,9 @@ export declare const Envelope: {
|
|
|
5708
5731
|
mezon_id?: string | undefined;
|
|
5709
5732
|
app_token?: string | undefined;
|
|
5710
5733
|
app_url?: string | undefined;
|
|
5734
|
+
is_bot?: boolean | undefined;
|
|
5711
5735
|
} | undefined;
|
|
5736
|
+
invitor?: string | undefined;
|
|
5712
5737
|
} | undefined;
|
|
5713
5738
|
clan_event_created?: {
|
|
5714
5739
|
title?: string | undefined;
|
|
@@ -5954,7 +5979,7 @@ export declare const Envelope: {
|
|
|
5954
5979
|
sender_id?: string | undefined;
|
|
5955
5980
|
content?: string | undefined;
|
|
5956
5981
|
attachment?: string | undefined;
|
|
5957
|
-
|
|
5982
|
+
reference?: string | undefined;
|
|
5958
5983
|
mention?: string | undefined;
|
|
5959
5984
|
reaction?: string | undefined;
|
|
5960
5985
|
repliers?: string[] | undefined;
|
|
@@ -6683,7 +6708,7 @@ export declare const Envelope: {
|
|
|
6683
6708
|
sender_id?: string | undefined;
|
|
6684
6709
|
content?: string | undefined;
|
|
6685
6710
|
attachment?: string | undefined;
|
|
6686
|
-
|
|
6711
|
+
reference?: string | undefined;
|
|
6687
6712
|
mention?: string | undefined;
|
|
6688
6713
|
reaction?: string | undefined;
|
|
6689
6714
|
repliers?: string[] | undefined;
|
|
@@ -6694,7 +6719,7 @@ export declare const Envelope: {
|
|
|
6694
6719
|
sender_id?: string | undefined;
|
|
6695
6720
|
content?: string | undefined;
|
|
6696
6721
|
attachment?: string | undefined;
|
|
6697
|
-
|
|
6722
|
+
reference?: string | undefined;
|
|
6698
6723
|
mention?: string | undefined;
|
|
6699
6724
|
reaction?: string | undefined;
|
|
6700
6725
|
repliers?: string[] | undefined;
|
|
@@ -6752,7 +6777,7 @@ export declare const Envelope: {
|
|
|
6752
6777
|
sender_id?: string | undefined;
|
|
6753
6778
|
content?: string | undefined;
|
|
6754
6779
|
attachment?: string | undefined;
|
|
6755
|
-
|
|
6780
|
+
reference?: string | undefined;
|
|
6756
6781
|
mention?: string | undefined;
|
|
6757
6782
|
reaction?: string | undefined;
|
|
6758
6783
|
repliers?: string[] | undefined;
|
|
@@ -6763,7 +6788,7 @@ export declare const Envelope: {
|
|
|
6763
6788
|
sender_id?: string | undefined;
|
|
6764
6789
|
content?: string | undefined;
|
|
6765
6790
|
attachment?: string | undefined;
|
|
6766
|
-
|
|
6791
|
+
reference?: string | undefined;
|
|
6767
6792
|
mention?: string | undefined;
|
|
6768
6793
|
reaction?: string | undefined;
|
|
6769
6794
|
repliers?: string[] | undefined;
|
|
@@ -6819,7 +6844,7 @@ export declare const Envelope: {
|
|
|
6819
6844
|
sender_id?: string | undefined;
|
|
6820
6845
|
content?: string | undefined;
|
|
6821
6846
|
attachment?: string | undefined;
|
|
6822
|
-
|
|
6847
|
+
reference?: string | undefined;
|
|
6823
6848
|
mention?: string | undefined;
|
|
6824
6849
|
reaction?: string | undefined;
|
|
6825
6850
|
repliers?: string[] | undefined;
|
|
@@ -6830,7 +6855,7 @@ export declare const Envelope: {
|
|
|
6830
6855
|
sender_id?: string | undefined;
|
|
6831
6856
|
content?: string | undefined;
|
|
6832
6857
|
attachment?: string | undefined;
|
|
6833
|
-
|
|
6858
|
+
reference?: string | undefined;
|
|
6834
6859
|
mention?: string | undefined;
|
|
6835
6860
|
reaction?: string | undefined;
|
|
6836
6861
|
repliers?: string[] | undefined;
|
|
@@ -6886,7 +6911,7 @@ export declare const Envelope: {
|
|
|
6886
6911
|
sender_id?: string | undefined;
|
|
6887
6912
|
content?: string | undefined;
|
|
6888
6913
|
attachment?: string | undefined;
|
|
6889
|
-
|
|
6914
|
+
reference?: string | undefined;
|
|
6890
6915
|
mention?: string | undefined;
|
|
6891
6916
|
reaction?: string | undefined;
|
|
6892
6917
|
repliers?: string[] | undefined;
|
|
@@ -6897,7 +6922,7 @@ export declare const Envelope: {
|
|
|
6897
6922
|
sender_id?: string | undefined;
|
|
6898
6923
|
content?: string | undefined;
|
|
6899
6924
|
attachment?: string | undefined;
|
|
6900
|
-
|
|
6925
|
+
reference?: string | undefined;
|
|
6901
6926
|
mention?: string | undefined;
|
|
6902
6927
|
reaction?: string | undefined;
|
|
6903
6928
|
repliers?: string[] | undefined;
|
|
@@ -6938,7 +6963,7 @@ export declare const Envelope: {
|
|
|
6938
6963
|
sender_id?: string | undefined;
|
|
6939
6964
|
content?: string | undefined;
|
|
6940
6965
|
attachment?: string | undefined;
|
|
6941
|
-
|
|
6966
|
+
reference?: string | undefined;
|
|
6942
6967
|
mention?: string | undefined;
|
|
6943
6968
|
reaction?: string | undefined;
|
|
6944
6969
|
repliers?: string[] | undefined;
|
|
@@ -6948,7 +6973,7 @@ export declare const Envelope: {
|
|
|
6948
6973
|
sender_id?: string | undefined;
|
|
6949
6974
|
content?: string | undefined;
|
|
6950
6975
|
attachment?: string | undefined;
|
|
6951
|
-
|
|
6976
|
+
reference?: string | undefined;
|
|
6952
6977
|
mention?: string | undefined;
|
|
6953
6978
|
reaction?: string | undefined;
|
|
6954
6979
|
repliers?: (string[] & string[] & { [K_213 in Exclude<keyof I_1["notifications"]["notifications"][number]["channel"]["last_sent_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
@@ -6959,7 +6984,7 @@ export declare const Envelope: {
|
|
|
6959
6984
|
sender_id?: string | undefined;
|
|
6960
6985
|
content?: string | undefined;
|
|
6961
6986
|
attachment?: string | undefined;
|
|
6962
|
-
|
|
6987
|
+
reference?: string | undefined;
|
|
6963
6988
|
mention?: string | undefined;
|
|
6964
6989
|
reaction?: string | undefined;
|
|
6965
6990
|
repliers?: string[] | undefined;
|
|
@@ -6969,7 +6994,7 @@ export declare const Envelope: {
|
|
|
6969
6994
|
sender_id?: string | undefined;
|
|
6970
6995
|
content?: string | undefined;
|
|
6971
6996
|
attachment?: string | undefined;
|
|
6972
|
-
|
|
6997
|
+
reference?: string | undefined;
|
|
6973
6998
|
mention?: string | undefined;
|
|
6974
6999
|
reaction?: string | undefined;
|
|
6975
7000
|
repliers?: (string[] & string[] & { [K_215 in Exclude<keyof I_1["notifications"]["notifications"][number]["channel"]["last_seen_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
@@ -7025,7 +7050,7 @@ export declare const Envelope: {
|
|
|
7025
7050
|
sender_id?: string | undefined;
|
|
7026
7051
|
content?: string | undefined;
|
|
7027
7052
|
attachment?: string | undefined;
|
|
7028
|
-
|
|
7053
|
+
reference?: string | undefined;
|
|
7029
7054
|
mention?: string | undefined;
|
|
7030
7055
|
reaction?: string | undefined;
|
|
7031
7056
|
repliers?: string[] | undefined;
|
|
@@ -7036,7 +7061,7 @@ export declare const Envelope: {
|
|
|
7036
7061
|
sender_id?: string | undefined;
|
|
7037
7062
|
content?: string | undefined;
|
|
7038
7063
|
attachment?: string | undefined;
|
|
7039
|
-
|
|
7064
|
+
reference?: string | undefined;
|
|
7040
7065
|
mention?: string | undefined;
|
|
7041
7066
|
reaction?: string | undefined;
|
|
7042
7067
|
repliers?: string[] | undefined;
|
|
@@ -7619,7 +7644,7 @@ export declare const Envelope: {
|
|
|
7619
7644
|
sender_id?: string | undefined;
|
|
7620
7645
|
content?: string | undefined;
|
|
7621
7646
|
attachment?: string | undefined;
|
|
7622
|
-
|
|
7647
|
+
reference?: string | undefined;
|
|
7623
7648
|
mention?: string | undefined;
|
|
7624
7649
|
reaction?: string | undefined;
|
|
7625
7650
|
repliers?: string[] | undefined;
|
|
@@ -7630,7 +7655,7 @@ export declare const Envelope: {
|
|
|
7630
7655
|
sender_id?: string | undefined;
|
|
7631
7656
|
content?: string | undefined;
|
|
7632
7657
|
attachment?: string | undefined;
|
|
7633
|
-
|
|
7658
|
+
reference?: string | undefined;
|
|
7634
7659
|
mention?: string | undefined;
|
|
7635
7660
|
reaction?: string | undefined;
|
|
7636
7661
|
repliers?: string[] | undefined;
|
|
@@ -7675,6 +7700,7 @@ export declare const Envelope: {
|
|
|
7675
7700
|
mezon_id?: string | undefined;
|
|
7676
7701
|
app_token?: string | undefined;
|
|
7677
7702
|
app_url?: string | undefined;
|
|
7703
|
+
is_bot?: boolean | undefined;
|
|
7678
7704
|
}[] | undefined;
|
|
7679
7705
|
status?: string | undefined;
|
|
7680
7706
|
clan_id?: string | undefined;
|
|
@@ -7699,6 +7725,7 @@ export declare const Envelope: {
|
|
|
7699
7725
|
mezon_id?: string | undefined;
|
|
7700
7726
|
app_token?: string | undefined;
|
|
7701
7727
|
app_url?: string | undefined;
|
|
7728
|
+
is_bot?: boolean | undefined;
|
|
7702
7729
|
} | undefined;
|
|
7703
7730
|
create_time_second?: number | undefined;
|
|
7704
7731
|
active?: number | undefined;
|
|
@@ -7721,7 +7748,7 @@ export declare const Envelope: {
|
|
|
7721
7748
|
sender_id?: string | undefined;
|
|
7722
7749
|
content?: string | undefined;
|
|
7723
7750
|
attachment?: string | undefined;
|
|
7724
|
-
|
|
7751
|
+
reference?: string | undefined;
|
|
7725
7752
|
mention?: string | undefined;
|
|
7726
7753
|
reaction?: string | undefined;
|
|
7727
7754
|
repliers?: string[] | undefined;
|
|
@@ -7732,7 +7759,7 @@ export declare const Envelope: {
|
|
|
7732
7759
|
sender_id?: string | undefined;
|
|
7733
7760
|
content?: string | undefined;
|
|
7734
7761
|
attachment?: string | undefined;
|
|
7735
|
-
|
|
7762
|
+
reference?: string | undefined;
|
|
7736
7763
|
mention?: string | undefined;
|
|
7737
7764
|
reaction?: string | undefined;
|
|
7738
7765
|
repliers?: string[] | undefined;
|
|
@@ -7773,7 +7800,7 @@ export declare const Envelope: {
|
|
|
7773
7800
|
sender_id?: string | undefined;
|
|
7774
7801
|
content?: string | undefined;
|
|
7775
7802
|
attachment?: string | undefined;
|
|
7776
|
-
|
|
7803
|
+
reference?: string | undefined;
|
|
7777
7804
|
mention?: string | undefined;
|
|
7778
7805
|
reaction?: string | undefined;
|
|
7779
7806
|
repliers?: string[] | undefined;
|
|
@@ -7783,7 +7810,7 @@ export declare const Envelope: {
|
|
|
7783
7810
|
sender_id?: string | undefined;
|
|
7784
7811
|
content?: string | undefined;
|
|
7785
7812
|
attachment?: string | undefined;
|
|
7786
|
-
|
|
7813
|
+
reference?: string | undefined;
|
|
7787
7814
|
mention?: string | undefined;
|
|
7788
7815
|
reaction?: string | undefined;
|
|
7789
7816
|
repliers?: (string[] & string[] & { [K_266 in Exclude<keyof I_1["user_channel_added_event"]["channel_desc"]["last_sent_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
@@ -7794,7 +7821,7 @@ export declare const Envelope: {
|
|
|
7794
7821
|
sender_id?: string | undefined;
|
|
7795
7822
|
content?: string | undefined;
|
|
7796
7823
|
attachment?: string | undefined;
|
|
7797
|
-
|
|
7824
|
+
reference?: string | undefined;
|
|
7798
7825
|
mention?: string | undefined;
|
|
7799
7826
|
reaction?: string | undefined;
|
|
7800
7827
|
repliers?: string[] | undefined;
|
|
@@ -7804,7 +7831,7 @@ export declare const Envelope: {
|
|
|
7804
7831
|
sender_id?: string | undefined;
|
|
7805
7832
|
content?: string | undefined;
|
|
7806
7833
|
attachment?: string | undefined;
|
|
7807
|
-
|
|
7834
|
+
reference?: string | undefined;
|
|
7808
7835
|
mention?: string | undefined;
|
|
7809
7836
|
reaction?: string | undefined;
|
|
7810
7837
|
repliers?: (string[] & string[] & { [K_268 in Exclude<keyof I_1["user_channel_added_event"]["channel_desc"]["last_seen_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
@@ -7849,6 +7876,7 @@ export declare const Envelope: {
|
|
|
7849
7876
|
mezon_id?: string | undefined;
|
|
7850
7877
|
app_token?: string | undefined;
|
|
7851
7878
|
app_url?: string | undefined;
|
|
7879
|
+
is_bot?: boolean | undefined;
|
|
7852
7880
|
}[] & ({
|
|
7853
7881
|
user_id?: string | undefined;
|
|
7854
7882
|
username?: string | undefined;
|
|
@@ -7870,6 +7898,7 @@ export declare const Envelope: {
|
|
|
7870
7898
|
mezon_id?: string | undefined;
|
|
7871
7899
|
app_token?: string | undefined;
|
|
7872
7900
|
app_url?: string | undefined;
|
|
7901
|
+
is_bot?: boolean | undefined;
|
|
7873
7902
|
} & {
|
|
7874
7903
|
user_id?: string | undefined;
|
|
7875
7904
|
username?: string | undefined;
|
|
@@ -7903,6 +7932,7 @@ export declare const Envelope: {
|
|
|
7903
7932
|
mezon_id?: string | undefined;
|
|
7904
7933
|
app_token?: string | undefined;
|
|
7905
7934
|
app_url?: string | undefined;
|
|
7935
|
+
is_bot?: boolean | undefined;
|
|
7906
7936
|
} & { [K_279 in Exclude<keyof I_1["user_channel_added_event"]["users"][number], keyof UserProfileRedis>]: never; })[] & { [K_280 in Exclude<keyof I_1["user_channel_added_event"]["users"], keyof {
|
|
7907
7937
|
user_id?: string | undefined;
|
|
7908
7938
|
username?: string | undefined;
|
|
@@ -7924,6 +7954,7 @@ export declare const Envelope: {
|
|
|
7924
7954
|
mezon_id?: string | undefined;
|
|
7925
7955
|
app_token?: string | undefined;
|
|
7926
7956
|
app_url?: string | undefined;
|
|
7957
|
+
is_bot?: boolean | undefined;
|
|
7927
7958
|
}[]>]: never; }) | undefined;
|
|
7928
7959
|
status?: string | undefined;
|
|
7929
7960
|
clan_id?: string | undefined;
|
|
@@ -7948,6 +7979,7 @@ export declare const Envelope: {
|
|
|
7948
7979
|
mezon_id?: string | undefined;
|
|
7949
7980
|
app_token?: string | undefined;
|
|
7950
7981
|
app_url?: string | undefined;
|
|
7982
|
+
is_bot?: boolean | undefined;
|
|
7951
7983
|
} & {
|
|
7952
7984
|
user_id?: string | undefined;
|
|
7953
7985
|
username?: string | undefined;
|
|
@@ -7981,6 +8013,7 @@ export declare const Envelope: {
|
|
|
7981
8013
|
mezon_id?: string | undefined;
|
|
7982
8014
|
app_token?: string | undefined;
|
|
7983
8015
|
app_url?: string | undefined;
|
|
8016
|
+
is_bot?: boolean | undefined;
|
|
7984
8017
|
} & { [K_284 in Exclude<keyof I_1["user_channel_added_event"]["caller"], keyof UserProfileRedis>]: never; }) | undefined;
|
|
7985
8018
|
create_time_second?: number | undefined;
|
|
7986
8019
|
active?: number | undefined;
|
|
@@ -8084,7 +8117,9 @@ export declare const Envelope: {
|
|
|
8084
8117
|
mezon_id?: string | undefined;
|
|
8085
8118
|
app_token?: string | undefined;
|
|
8086
8119
|
app_url?: string | undefined;
|
|
8120
|
+
is_bot?: boolean | undefined;
|
|
8087
8121
|
} | undefined;
|
|
8122
|
+
invitor?: string | undefined;
|
|
8088
8123
|
} & {
|
|
8089
8124
|
clan_id?: string | undefined;
|
|
8090
8125
|
user?: ({
|
|
@@ -8108,6 +8143,7 @@ export declare const Envelope: {
|
|
|
8108
8143
|
mezon_id?: string | undefined;
|
|
8109
8144
|
app_token?: string | undefined;
|
|
8110
8145
|
app_url?: string | undefined;
|
|
8146
|
+
is_bot?: boolean | undefined;
|
|
8111
8147
|
} & {
|
|
8112
8148
|
user_id?: string | undefined;
|
|
8113
8149
|
username?: string | undefined;
|
|
@@ -8141,7 +8177,9 @@ export declare const Envelope: {
|
|
|
8141
8177
|
mezon_id?: string | undefined;
|
|
8142
8178
|
app_token?: string | undefined;
|
|
8143
8179
|
app_url?: string | undefined;
|
|
8180
|
+
is_bot?: boolean | undefined;
|
|
8144
8181
|
} & { [K_297 in Exclude<keyof I_1["add_clan_user_event"]["user"], keyof UserProfileRedis>]: never; }) | undefined;
|
|
8182
|
+
invitor?: string | undefined;
|
|
8145
8183
|
} & { [K_298 in Exclude<keyof I_1["add_clan_user_event"], keyof AddClanUserEvent>]: never; }) | undefined;
|
|
8146
8184
|
clan_event_created?: ({
|
|
8147
8185
|
title?: string | undefined;
|
|
@@ -8788,7 +8826,7 @@ export declare const Envelope: {
|
|
|
8788
8826
|
sender_id?: string | undefined;
|
|
8789
8827
|
content?: string | undefined;
|
|
8790
8828
|
attachment?: string | undefined;
|
|
8791
|
-
|
|
8829
|
+
reference?: string | undefined;
|
|
8792
8830
|
mention?: string | undefined;
|
|
8793
8831
|
reaction?: string | undefined;
|
|
8794
8832
|
repliers?: string[] | undefined;
|
|
@@ -8834,7 +8872,7 @@ export declare const Envelope: {
|
|
|
8834
8872
|
sender_id?: string | undefined;
|
|
8835
8873
|
content?: string | undefined;
|
|
8836
8874
|
attachment?: string | undefined;
|
|
8837
|
-
|
|
8875
|
+
reference?: string | undefined;
|
|
8838
8876
|
mention?: string | undefined;
|
|
8839
8877
|
reaction?: string | undefined;
|
|
8840
8878
|
repliers?: string[] | undefined;
|
|
@@ -8844,7 +8882,7 @@ export declare const Envelope: {
|
|
|
8844
8882
|
sender_id?: string | undefined;
|
|
8845
8883
|
content?: string | undefined;
|
|
8846
8884
|
attachment?: string | undefined;
|
|
8847
|
-
|
|
8885
|
+
reference?: string | undefined;
|
|
8848
8886
|
mention?: string | undefined;
|
|
8849
8887
|
reaction?: string | undefined;
|
|
8850
8888
|
repliers?: (string[] & string[] & { [K_347 in Exclude<keyof I_1["sd_topic_event"]["last_sent_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
@@ -9211,7 +9249,9 @@ export declare const AddClanUserEvent: {
|
|
|
9211
9249
|
mezon_id?: string | undefined;
|
|
9212
9250
|
app_token?: string | undefined;
|
|
9213
9251
|
app_url?: string | undefined;
|
|
9252
|
+
is_bot?: boolean | undefined;
|
|
9214
9253
|
} | undefined;
|
|
9254
|
+
invitor?: string | undefined;
|
|
9215
9255
|
} & {
|
|
9216
9256
|
clan_id?: string | undefined;
|
|
9217
9257
|
user?: ({
|
|
@@ -9235,6 +9275,7 @@ export declare const AddClanUserEvent: {
|
|
|
9235
9275
|
mezon_id?: string | undefined;
|
|
9236
9276
|
app_token?: string | undefined;
|
|
9237
9277
|
app_url?: string | undefined;
|
|
9278
|
+
is_bot?: boolean | undefined;
|
|
9238
9279
|
} & {
|
|
9239
9280
|
user_id?: string | undefined;
|
|
9240
9281
|
username?: string | undefined;
|
|
@@ -9268,7 +9309,9 @@ export declare const AddClanUserEvent: {
|
|
|
9268
9309
|
mezon_id?: string | undefined;
|
|
9269
9310
|
app_token?: string | undefined;
|
|
9270
9311
|
app_url?: string | undefined;
|
|
9312
|
+
is_bot?: boolean | undefined;
|
|
9271
9313
|
} & { [K_3 in Exclude<keyof I["user"], keyof UserProfileRedis>]: never; }) | undefined;
|
|
9314
|
+
invitor?: string | undefined;
|
|
9272
9315
|
} & { [K_4 in Exclude<keyof I, keyof AddClanUserEvent>]: never; }>(base?: I | undefined): AddClanUserEvent;
|
|
9273
9316
|
fromPartial<I_1 extends {
|
|
9274
9317
|
clan_id?: string | undefined;
|
|
@@ -9293,7 +9336,9 @@ export declare const AddClanUserEvent: {
|
|
|
9293
9336
|
mezon_id?: string | undefined;
|
|
9294
9337
|
app_token?: string | undefined;
|
|
9295
9338
|
app_url?: string | undefined;
|
|
9339
|
+
is_bot?: boolean | undefined;
|
|
9296
9340
|
} | undefined;
|
|
9341
|
+
invitor?: string | undefined;
|
|
9297
9342
|
} & {
|
|
9298
9343
|
clan_id?: string | undefined;
|
|
9299
9344
|
user?: ({
|
|
@@ -9317,6 +9362,7 @@ export declare const AddClanUserEvent: {
|
|
|
9317
9362
|
mezon_id?: string | undefined;
|
|
9318
9363
|
app_token?: string | undefined;
|
|
9319
9364
|
app_url?: string | undefined;
|
|
9365
|
+
is_bot?: boolean | undefined;
|
|
9320
9366
|
} & {
|
|
9321
9367
|
user_id?: string | undefined;
|
|
9322
9368
|
username?: string | undefined;
|
|
@@ -9350,7 +9396,9 @@ export declare const AddClanUserEvent: {
|
|
|
9350
9396
|
mezon_id?: string | undefined;
|
|
9351
9397
|
app_token?: string | undefined;
|
|
9352
9398
|
app_url?: string | undefined;
|
|
9399
|
+
is_bot?: boolean | undefined;
|
|
9353
9400
|
} & { [K_8 in Exclude<keyof I_1["user"], keyof UserProfileRedis>]: never; }) | undefined;
|
|
9401
|
+
invitor?: string | undefined;
|
|
9354
9402
|
} & { [K_9 in Exclude<keyof I_1, keyof AddClanUserEvent>]: never; }>(object: I_1): AddClanUserEvent;
|
|
9355
9403
|
};
|
|
9356
9404
|
export declare const RoleAssignedEvent: {
|
|
@@ -9465,7 +9513,7 @@ export declare const ChannelDescription: {
|
|
|
9465
9513
|
sender_id?: string | undefined;
|
|
9466
9514
|
content?: string | undefined;
|
|
9467
9515
|
attachment?: string | undefined;
|
|
9468
|
-
|
|
9516
|
+
reference?: string | undefined;
|
|
9469
9517
|
mention?: string | undefined;
|
|
9470
9518
|
reaction?: string | undefined;
|
|
9471
9519
|
repliers?: string[] | undefined;
|
|
@@ -9485,7 +9533,7 @@ export declare const ChannelDescription: {
|
|
|
9485
9533
|
sender_id?: string | undefined;
|
|
9486
9534
|
content?: string | undefined;
|
|
9487
9535
|
attachment?: string | undefined;
|
|
9488
|
-
|
|
9536
|
+
reference?: string | undefined;
|
|
9489
9537
|
mention?: string | undefined;
|
|
9490
9538
|
reaction?: string | undefined;
|
|
9491
9539
|
repliers?: string[] | undefined;
|
|
@@ -9495,7 +9543,7 @@ export declare const ChannelDescription: {
|
|
|
9495
9543
|
sender_id?: string | undefined;
|
|
9496
9544
|
content?: string | undefined;
|
|
9497
9545
|
attachment?: string | undefined;
|
|
9498
|
-
|
|
9546
|
+
reference?: string | undefined;
|
|
9499
9547
|
mention?: string | undefined;
|
|
9500
9548
|
reaction?: string | undefined;
|
|
9501
9549
|
repliers?: (string[] & string[] & { [K in Exclude<keyof I["last_sent_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
@@ -9516,7 +9564,7 @@ export declare const ChannelDescription: {
|
|
|
9516
9564
|
sender_id?: string | undefined;
|
|
9517
9565
|
content?: string | undefined;
|
|
9518
9566
|
attachment?: string | undefined;
|
|
9519
|
-
|
|
9567
|
+
reference?: string | undefined;
|
|
9520
9568
|
mention?: string | undefined;
|
|
9521
9569
|
reaction?: string | undefined;
|
|
9522
9570
|
repliers?: string[] | undefined;
|
|
@@ -9536,7 +9584,7 @@ export declare const ChannelDescription: {
|
|
|
9536
9584
|
sender_id?: string | undefined;
|
|
9537
9585
|
content?: string | undefined;
|
|
9538
9586
|
attachment?: string | undefined;
|
|
9539
|
-
|
|
9587
|
+
reference?: string | undefined;
|
|
9540
9588
|
mention?: string | undefined;
|
|
9541
9589
|
reaction?: string | undefined;
|
|
9542
9590
|
repliers?: string[] | undefined;
|
|
@@ -9546,7 +9594,7 @@ export declare const ChannelDescription: {
|
|
|
9546
9594
|
sender_id?: string | undefined;
|
|
9547
9595
|
content?: string | undefined;
|
|
9548
9596
|
attachment?: string | undefined;
|
|
9549
|
-
|
|
9597
|
+
reference?: string | undefined;
|
|
9550
9598
|
mention?: string | undefined;
|
|
9551
9599
|
reaction?: string | undefined;
|
|
9552
9600
|
repliers?: (string[] & string[] & { [K_3 in Exclude<keyof I_1["last_sent_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
@@ -10779,7 +10827,7 @@ export declare const Notifications: {
|
|
|
10779
10827
|
sender_id?: string | undefined;
|
|
10780
10828
|
content?: string | undefined;
|
|
10781
10829
|
attachment?: string | undefined;
|
|
10782
|
-
|
|
10830
|
+
reference?: string | undefined;
|
|
10783
10831
|
mention?: string | undefined;
|
|
10784
10832
|
reaction?: string | undefined;
|
|
10785
10833
|
repliers?: string[] | undefined;
|
|
@@ -10790,7 +10838,7 @@ export declare const Notifications: {
|
|
|
10790
10838
|
sender_id?: string | undefined;
|
|
10791
10839
|
content?: string | undefined;
|
|
10792
10840
|
attachment?: string | undefined;
|
|
10793
|
-
|
|
10841
|
+
reference?: string | undefined;
|
|
10794
10842
|
mention?: string | undefined;
|
|
10795
10843
|
reaction?: string | undefined;
|
|
10796
10844
|
repliers?: string[] | undefined;
|
|
@@ -10848,7 +10896,7 @@ export declare const Notifications: {
|
|
|
10848
10896
|
sender_id?: string | undefined;
|
|
10849
10897
|
content?: string | undefined;
|
|
10850
10898
|
attachment?: string | undefined;
|
|
10851
|
-
|
|
10899
|
+
reference?: string | undefined;
|
|
10852
10900
|
mention?: string | undefined;
|
|
10853
10901
|
reaction?: string | undefined;
|
|
10854
10902
|
repliers?: string[] | undefined;
|
|
@@ -10859,7 +10907,7 @@ export declare const Notifications: {
|
|
|
10859
10907
|
sender_id?: string | undefined;
|
|
10860
10908
|
content?: string | undefined;
|
|
10861
10909
|
attachment?: string | undefined;
|
|
10862
|
-
|
|
10910
|
+
reference?: string | undefined;
|
|
10863
10911
|
mention?: string | undefined;
|
|
10864
10912
|
reaction?: string | undefined;
|
|
10865
10913
|
repliers?: string[] | undefined;
|
|
@@ -10915,7 +10963,7 @@ export declare const Notifications: {
|
|
|
10915
10963
|
sender_id?: string | undefined;
|
|
10916
10964
|
content?: string | undefined;
|
|
10917
10965
|
attachment?: string | undefined;
|
|
10918
|
-
|
|
10966
|
+
reference?: string | undefined;
|
|
10919
10967
|
mention?: string | undefined;
|
|
10920
10968
|
reaction?: string | undefined;
|
|
10921
10969
|
repliers?: string[] | undefined;
|
|
@@ -10926,7 +10974,7 @@ export declare const Notifications: {
|
|
|
10926
10974
|
sender_id?: string | undefined;
|
|
10927
10975
|
content?: string | undefined;
|
|
10928
10976
|
attachment?: string | undefined;
|
|
10929
|
-
|
|
10977
|
+
reference?: string | undefined;
|
|
10930
10978
|
mention?: string | undefined;
|
|
10931
10979
|
reaction?: string | undefined;
|
|
10932
10980
|
repliers?: string[] | undefined;
|
|
@@ -10982,7 +11030,7 @@ export declare const Notifications: {
|
|
|
10982
11030
|
sender_id?: string | undefined;
|
|
10983
11031
|
content?: string | undefined;
|
|
10984
11032
|
attachment?: string | undefined;
|
|
10985
|
-
|
|
11033
|
+
reference?: string | undefined;
|
|
10986
11034
|
mention?: string | undefined;
|
|
10987
11035
|
reaction?: string | undefined;
|
|
10988
11036
|
repliers?: string[] | undefined;
|
|
@@ -10993,7 +11041,7 @@ export declare const Notifications: {
|
|
|
10993
11041
|
sender_id?: string | undefined;
|
|
10994
11042
|
content?: string | undefined;
|
|
10995
11043
|
attachment?: string | undefined;
|
|
10996
|
-
|
|
11044
|
+
reference?: string | undefined;
|
|
10997
11045
|
mention?: string | undefined;
|
|
10998
11046
|
reaction?: string | undefined;
|
|
10999
11047
|
repliers?: string[] | undefined;
|
|
@@ -11034,7 +11082,7 @@ export declare const Notifications: {
|
|
|
11034
11082
|
sender_id?: string | undefined;
|
|
11035
11083
|
content?: string | undefined;
|
|
11036
11084
|
attachment?: string | undefined;
|
|
11037
|
-
|
|
11085
|
+
reference?: string | undefined;
|
|
11038
11086
|
mention?: string | undefined;
|
|
11039
11087
|
reaction?: string | undefined;
|
|
11040
11088
|
repliers?: string[] | undefined;
|
|
@@ -11044,7 +11092,7 @@ export declare const Notifications: {
|
|
|
11044
11092
|
sender_id?: string | undefined;
|
|
11045
11093
|
content?: string | undefined;
|
|
11046
11094
|
attachment?: string | undefined;
|
|
11047
|
-
|
|
11095
|
+
reference?: string | undefined;
|
|
11048
11096
|
mention?: string | undefined;
|
|
11049
11097
|
reaction?: string | undefined;
|
|
11050
11098
|
repliers?: (string[] & string[] & { [K_2 in Exclude<keyof I["notifications"][number]["channel"]["last_sent_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
@@ -11055,7 +11103,7 @@ export declare const Notifications: {
|
|
|
11055
11103
|
sender_id?: string | undefined;
|
|
11056
11104
|
content?: string | undefined;
|
|
11057
11105
|
attachment?: string | undefined;
|
|
11058
|
-
|
|
11106
|
+
reference?: string | undefined;
|
|
11059
11107
|
mention?: string | undefined;
|
|
11060
11108
|
reaction?: string | undefined;
|
|
11061
11109
|
repliers?: string[] | undefined;
|
|
@@ -11065,7 +11113,7 @@ export declare const Notifications: {
|
|
|
11065
11113
|
sender_id?: string | undefined;
|
|
11066
11114
|
content?: string | undefined;
|
|
11067
11115
|
attachment?: string | undefined;
|
|
11068
|
-
|
|
11116
|
+
reference?: string | undefined;
|
|
11069
11117
|
mention?: string | undefined;
|
|
11070
11118
|
reaction?: string | undefined;
|
|
11071
11119
|
repliers?: (string[] & string[] & { [K_4 in Exclude<keyof I["notifications"][number]["channel"]["last_seen_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
@@ -11121,7 +11169,7 @@ export declare const Notifications: {
|
|
|
11121
11169
|
sender_id?: string | undefined;
|
|
11122
11170
|
content?: string | undefined;
|
|
11123
11171
|
attachment?: string | undefined;
|
|
11124
|
-
|
|
11172
|
+
reference?: string | undefined;
|
|
11125
11173
|
mention?: string | undefined;
|
|
11126
11174
|
reaction?: string | undefined;
|
|
11127
11175
|
repliers?: string[] | undefined;
|
|
@@ -11132,7 +11180,7 @@ export declare const Notifications: {
|
|
|
11132
11180
|
sender_id?: string | undefined;
|
|
11133
11181
|
content?: string | undefined;
|
|
11134
11182
|
attachment?: string | undefined;
|
|
11135
|
-
|
|
11183
|
+
reference?: string | undefined;
|
|
11136
11184
|
mention?: string | undefined;
|
|
11137
11185
|
reaction?: string | undefined;
|
|
11138
11186
|
repliers?: string[] | undefined;
|
|
@@ -11191,7 +11239,7 @@ export declare const Notifications: {
|
|
|
11191
11239
|
sender_id?: string | undefined;
|
|
11192
11240
|
content?: string | undefined;
|
|
11193
11241
|
attachment?: string | undefined;
|
|
11194
|
-
|
|
11242
|
+
reference?: string | undefined;
|
|
11195
11243
|
mention?: string | undefined;
|
|
11196
11244
|
reaction?: string | undefined;
|
|
11197
11245
|
repliers?: string[] | undefined;
|
|
@@ -11202,7 +11250,7 @@ export declare const Notifications: {
|
|
|
11202
11250
|
sender_id?: string | undefined;
|
|
11203
11251
|
content?: string | undefined;
|
|
11204
11252
|
attachment?: string | undefined;
|
|
11205
|
-
|
|
11253
|
+
reference?: string | undefined;
|
|
11206
11254
|
mention?: string | undefined;
|
|
11207
11255
|
reaction?: string | undefined;
|
|
11208
11256
|
repliers?: string[] | undefined;
|
|
@@ -11260,7 +11308,7 @@ export declare const Notifications: {
|
|
|
11260
11308
|
sender_id?: string | undefined;
|
|
11261
11309
|
content?: string | undefined;
|
|
11262
11310
|
attachment?: string | undefined;
|
|
11263
|
-
|
|
11311
|
+
reference?: string | undefined;
|
|
11264
11312
|
mention?: string | undefined;
|
|
11265
11313
|
reaction?: string | undefined;
|
|
11266
11314
|
repliers?: string[] | undefined;
|
|
@@ -11271,7 +11319,7 @@ export declare const Notifications: {
|
|
|
11271
11319
|
sender_id?: string | undefined;
|
|
11272
11320
|
content?: string | undefined;
|
|
11273
11321
|
attachment?: string | undefined;
|
|
11274
|
-
|
|
11322
|
+
reference?: string | undefined;
|
|
11275
11323
|
mention?: string | undefined;
|
|
11276
11324
|
reaction?: string | undefined;
|
|
11277
11325
|
repliers?: string[] | undefined;
|
|
@@ -11327,7 +11375,7 @@ export declare const Notifications: {
|
|
|
11327
11375
|
sender_id?: string | undefined;
|
|
11328
11376
|
content?: string | undefined;
|
|
11329
11377
|
attachment?: string | undefined;
|
|
11330
|
-
|
|
11378
|
+
reference?: string | undefined;
|
|
11331
11379
|
mention?: string | undefined;
|
|
11332
11380
|
reaction?: string | undefined;
|
|
11333
11381
|
repliers?: string[] | undefined;
|
|
@@ -11338,7 +11386,7 @@ export declare const Notifications: {
|
|
|
11338
11386
|
sender_id?: string | undefined;
|
|
11339
11387
|
content?: string | undefined;
|
|
11340
11388
|
attachment?: string | undefined;
|
|
11341
|
-
|
|
11389
|
+
reference?: string | undefined;
|
|
11342
11390
|
mention?: string | undefined;
|
|
11343
11391
|
reaction?: string | undefined;
|
|
11344
11392
|
repliers?: string[] | undefined;
|
|
@@ -11394,7 +11442,7 @@ export declare const Notifications: {
|
|
|
11394
11442
|
sender_id?: string | undefined;
|
|
11395
11443
|
content?: string | undefined;
|
|
11396
11444
|
attachment?: string | undefined;
|
|
11397
|
-
|
|
11445
|
+
reference?: string | undefined;
|
|
11398
11446
|
mention?: string | undefined;
|
|
11399
11447
|
reaction?: string | undefined;
|
|
11400
11448
|
repliers?: string[] | undefined;
|
|
@@ -11405,7 +11453,7 @@ export declare const Notifications: {
|
|
|
11405
11453
|
sender_id?: string | undefined;
|
|
11406
11454
|
content?: string | undefined;
|
|
11407
11455
|
attachment?: string | undefined;
|
|
11408
|
-
|
|
11456
|
+
reference?: string | undefined;
|
|
11409
11457
|
mention?: string | undefined;
|
|
11410
11458
|
reaction?: string | undefined;
|
|
11411
11459
|
repliers?: string[] | undefined;
|
|
@@ -11446,7 +11494,7 @@ export declare const Notifications: {
|
|
|
11446
11494
|
sender_id?: string | undefined;
|
|
11447
11495
|
content?: string | undefined;
|
|
11448
11496
|
attachment?: string | undefined;
|
|
11449
|
-
|
|
11497
|
+
reference?: string | undefined;
|
|
11450
11498
|
mention?: string | undefined;
|
|
11451
11499
|
reaction?: string | undefined;
|
|
11452
11500
|
repliers?: string[] | undefined;
|
|
@@ -11456,7 +11504,7 @@ export declare const Notifications: {
|
|
|
11456
11504
|
sender_id?: string | undefined;
|
|
11457
11505
|
content?: string | undefined;
|
|
11458
11506
|
attachment?: string | undefined;
|
|
11459
|
-
|
|
11507
|
+
reference?: string | undefined;
|
|
11460
11508
|
mention?: string | undefined;
|
|
11461
11509
|
reaction?: string | undefined;
|
|
11462
11510
|
repliers?: (string[] & string[] & { [K_17 in Exclude<keyof I_1["notifications"][number]["channel"]["last_sent_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
@@ -11467,7 +11515,7 @@ export declare const Notifications: {
|
|
|
11467
11515
|
sender_id?: string | undefined;
|
|
11468
11516
|
content?: string | undefined;
|
|
11469
11517
|
attachment?: string | undefined;
|
|
11470
|
-
|
|
11518
|
+
reference?: string | undefined;
|
|
11471
11519
|
mention?: string | undefined;
|
|
11472
11520
|
reaction?: string | undefined;
|
|
11473
11521
|
repliers?: string[] | undefined;
|
|
@@ -11477,7 +11525,7 @@ export declare const Notifications: {
|
|
|
11477
11525
|
sender_id?: string | undefined;
|
|
11478
11526
|
content?: string | undefined;
|
|
11479
11527
|
attachment?: string | undefined;
|
|
11480
|
-
|
|
11528
|
+
reference?: string | undefined;
|
|
11481
11529
|
mention?: string | undefined;
|
|
11482
11530
|
reaction?: string | undefined;
|
|
11483
11531
|
repliers?: (string[] & string[] & { [K_19 in Exclude<keyof I_1["notifications"][number]["channel"]["last_seen_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
@@ -11533,7 +11581,7 @@ export declare const Notifications: {
|
|
|
11533
11581
|
sender_id?: string | undefined;
|
|
11534
11582
|
content?: string | undefined;
|
|
11535
11583
|
attachment?: string | undefined;
|
|
11536
|
-
|
|
11584
|
+
reference?: string | undefined;
|
|
11537
11585
|
mention?: string | undefined;
|
|
11538
11586
|
reaction?: string | undefined;
|
|
11539
11587
|
repliers?: string[] | undefined;
|
|
@@ -11544,7 +11592,7 @@ export declare const Notifications: {
|
|
|
11544
11592
|
sender_id?: string | undefined;
|
|
11545
11593
|
content?: string | undefined;
|
|
11546
11594
|
attachment?: string | undefined;
|
|
11547
|
-
|
|
11595
|
+
reference?: string | undefined;
|
|
11548
11596
|
mention?: string | undefined;
|
|
11549
11597
|
reaction?: string | undefined;
|
|
11550
11598
|
repliers?: string[] | undefined;
|
|
@@ -13461,7 +13509,7 @@ export declare const UserChannelAdded: {
|
|
|
13461
13509
|
sender_id?: string | undefined;
|
|
13462
13510
|
content?: string | undefined;
|
|
13463
13511
|
attachment?: string | undefined;
|
|
13464
|
-
|
|
13512
|
+
reference?: string | undefined;
|
|
13465
13513
|
mention?: string | undefined;
|
|
13466
13514
|
reaction?: string | undefined;
|
|
13467
13515
|
repliers?: string[] | undefined;
|
|
@@ -13472,7 +13520,7 @@ export declare const UserChannelAdded: {
|
|
|
13472
13520
|
sender_id?: string | undefined;
|
|
13473
13521
|
content?: string | undefined;
|
|
13474
13522
|
attachment?: string | undefined;
|
|
13475
|
-
|
|
13523
|
+
reference?: string | undefined;
|
|
13476
13524
|
mention?: string | undefined;
|
|
13477
13525
|
reaction?: string | undefined;
|
|
13478
13526
|
repliers?: string[] | undefined;
|
|
@@ -13517,6 +13565,7 @@ export declare const UserChannelAdded: {
|
|
|
13517
13565
|
mezon_id?: string | undefined;
|
|
13518
13566
|
app_token?: string | undefined;
|
|
13519
13567
|
app_url?: string | undefined;
|
|
13568
|
+
is_bot?: boolean | undefined;
|
|
13520
13569
|
}[] | undefined;
|
|
13521
13570
|
status?: string | undefined;
|
|
13522
13571
|
clan_id?: string | undefined;
|
|
@@ -13541,6 +13590,7 @@ export declare const UserChannelAdded: {
|
|
|
13541
13590
|
mezon_id?: string | undefined;
|
|
13542
13591
|
app_token?: string | undefined;
|
|
13543
13592
|
app_url?: string | undefined;
|
|
13593
|
+
is_bot?: boolean | undefined;
|
|
13544
13594
|
} | undefined;
|
|
13545
13595
|
create_time_second?: number | undefined;
|
|
13546
13596
|
active?: number | undefined;
|
|
@@ -13563,7 +13613,7 @@ export declare const UserChannelAdded: {
|
|
|
13563
13613
|
sender_id?: string | undefined;
|
|
13564
13614
|
content?: string | undefined;
|
|
13565
13615
|
attachment?: string | undefined;
|
|
13566
|
-
|
|
13616
|
+
reference?: string | undefined;
|
|
13567
13617
|
mention?: string | undefined;
|
|
13568
13618
|
reaction?: string | undefined;
|
|
13569
13619
|
repliers?: string[] | undefined;
|
|
@@ -13574,7 +13624,7 @@ export declare const UserChannelAdded: {
|
|
|
13574
13624
|
sender_id?: string | undefined;
|
|
13575
13625
|
content?: string | undefined;
|
|
13576
13626
|
attachment?: string | undefined;
|
|
13577
|
-
|
|
13627
|
+
reference?: string | undefined;
|
|
13578
13628
|
mention?: string | undefined;
|
|
13579
13629
|
reaction?: string | undefined;
|
|
13580
13630
|
repliers?: string[] | undefined;
|
|
@@ -13615,7 +13665,7 @@ export declare const UserChannelAdded: {
|
|
|
13615
13665
|
sender_id?: string | undefined;
|
|
13616
13666
|
content?: string | undefined;
|
|
13617
13667
|
attachment?: string | undefined;
|
|
13618
|
-
|
|
13668
|
+
reference?: string | undefined;
|
|
13619
13669
|
mention?: string | undefined;
|
|
13620
13670
|
reaction?: string | undefined;
|
|
13621
13671
|
repliers?: string[] | undefined;
|
|
@@ -13625,7 +13675,7 @@ export declare const UserChannelAdded: {
|
|
|
13625
13675
|
sender_id?: string | undefined;
|
|
13626
13676
|
content?: string | undefined;
|
|
13627
13677
|
attachment?: string | undefined;
|
|
13628
|
-
|
|
13678
|
+
reference?: string | undefined;
|
|
13629
13679
|
mention?: string | undefined;
|
|
13630
13680
|
reaction?: string | undefined;
|
|
13631
13681
|
repliers?: (string[] & string[] & { [K_2 in Exclude<keyof I["channel_desc"]["last_sent_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
@@ -13636,7 +13686,7 @@ export declare const UserChannelAdded: {
|
|
|
13636
13686
|
sender_id?: string | undefined;
|
|
13637
13687
|
content?: string | undefined;
|
|
13638
13688
|
attachment?: string | undefined;
|
|
13639
|
-
|
|
13689
|
+
reference?: string | undefined;
|
|
13640
13690
|
mention?: string | undefined;
|
|
13641
13691
|
reaction?: string | undefined;
|
|
13642
13692
|
repliers?: string[] | undefined;
|
|
@@ -13646,7 +13696,7 @@ export declare const UserChannelAdded: {
|
|
|
13646
13696
|
sender_id?: string | undefined;
|
|
13647
13697
|
content?: string | undefined;
|
|
13648
13698
|
attachment?: string | undefined;
|
|
13649
|
-
|
|
13699
|
+
reference?: string | undefined;
|
|
13650
13700
|
mention?: string | undefined;
|
|
13651
13701
|
reaction?: string | undefined;
|
|
13652
13702
|
repliers?: (string[] & string[] & { [K_4 in Exclude<keyof I["channel_desc"]["last_seen_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
@@ -13691,6 +13741,7 @@ export declare const UserChannelAdded: {
|
|
|
13691
13741
|
mezon_id?: string | undefined;
|
|
13692
13742
|
app_token?: string | undefined;
|
|
13693
13743
|
app_url?: string | undefined;
|
|
13744
|
+
is_bot?: boolean | undefined;
|
|
13694
13745
|
}[] & ({
|
|
13695
13746
|
user_id?: string | undefined;
|
|
13696
13747
|
username?: string | undefined;
|
|
@@ -13712,6 +13763,7 @@ export declare const UserChannelAdded: {
|
|
|
13712
13763
|
mezon_id?: string | undefined;
|
|
13713
13764
|
app_token?: string | undefined;
|
|
13714
13765
|
app_url?: string | undefined;
|
|
13766
|
+
is_bot?: boolean | undefined;
|
|
13715
13767
|
} & {
|
|
13716
13768
|
user_id?: string | undefined;
|
|
13717
13769
|
username?: string | undefined;
|
|
@@ -13745,6 +13797,7 @@ export declare const UserChannelAdded: {
|
|
|
13745
13797
|
mezon_id?: string | undefined;
|
|
13746
13798
|
app_token?: string | undefined;
|
|
13747
13799
|
app_url?: string | undefined;
|
|
13800
|
+
is_bot?: boolean | undefined;
|
|
13748
13801
|
} & { [K_15 in Exclude<keyof I["users"][number], keyof UserProfileRedis>]: never; })[] & { [K_16 in Exclude<keyof I["users"], keyof {
|
|
13749
13802
|
user_id?: string | undefined;
|
|
13750
13803
|
username?: string | undefined;
|
|
@@ -13766,6 +13819,7 @@ export declare const UserChannelAdded: {
|
|
|
13766
13819
|
mezon_id?: string | undefined;
|
|
13767
13820
|
app_token?: string | undefined;
|
|
13768
13821
|
app_url?: string | undefined;
|
|
13822
|
+
is_bot?: boolean | undefined;
|
|
13769
13823
|
}[]>]: never; }) | undefined;
|
|
13770
13824
|
status?: string | undefined;
|
|
13771
13825
|
clan_id?: string | undefined;
|
|
@@ -13790,6 +13844,7 @@ export declare const UserChannelAdded: {
|
|
|
13790
13844
|
mezon_id?: string | undefined;
|
|
13791
13845
|
app_token?: string | undefined;
|
|
13792
13846
|
app_url?: string | undefined;
|
|
13847
|
+
is_bot?: boolean | undefined;
|
|
13793
13848
|
} & {
|
|
13794
13849
|
user_id?: string | undefined;
|
|
13795
13850
|
username?: string | undefined;
|
|
@@ -13823,6 +13878,7 @@ export declare const UserChannelAdded: {
|
|
|
13823
13878
|
mezon_id?: string | undefined;
|
|
13824
13879
|
app_token?: string | undefined;
|
|
13825
13880
|
app_url?: string | undefined;
|
|
13881
|
+
is_bot?: boolean | undefined;
|
|
13826
13882
|
} & { [K_20 in Exclude<keyof I["caller"], keyof UserProfileRedis>]: never; }) | undefined;
|
|
13827
13883
|
create_time_second?: number | undefined;
|
|
13828
13884
|
active?: number | undefined;
|
|
@@ -13846,7 +13902,7 @@ export declare const UserChannelAdded: {
|
|
|
13846
13902
|
sender_id?: string | undefined;
|
|
13847
13903
|
content?: string | undefined;
|
|
13848
13904
|
attachment?: string | undefined;
|
|
13849
|
-
|
|
13905
|
+
reference?: string | undefined;
|
|
13850
13906
|
mention?: string | undefined;
|
|
13851
13907
|
reaction?: string | undefined;
|
|
13852
13908
|
repliers?: string[] | undefined;
|
|
@@ -13857,7 +13913,7 @@ export declare const UserChannelAdded: {
|
|
|
13857
13913
|
sender_id?: string | undefined;
|
|
13858
13914
|
content?: string | undefined;
|
|
13859
13915
|
attachment?: string | undefined;
|
|
13860
|
-
|
|
13916
|
+
reference?: string | undefined;
|
|
13861
13917
|
mention?: string | undefined;
|
|
13862
13918
|
reaction?: string | undefined;
|
|
13863
13919
|
repliers?: string[] | undefined;
|
|
@@ -13902,6 +13958,7 @@ export declare const UserChannelAdded: {
|
|
|
13902
13958
|
mezon_id?: string | undefined;
|
|
13903
13959
|
app_token?: string | undefined;
|
|
13904
13960
|
app_url?: string | undefined;
|
|
13961
|
+
is_bot?: boolean | undefined;
|
|
13905
13962
|
}[] | undefined;
|
|
13906
13963
|
status?: string | undefined;
|
|
13907
13964
|
clan_id?: string | undefined;
|
|
@@ -13926,6 +13983,7 @@ export declare const UserChannelAdded: {
|
|
|
13926
13983
|
mezon_id?: string | undefined;
|
|
13927
13984
|
app_token?: string | undefined;
|
|
13928
13985
|
app_url?: string | undefined;
|
|
13986
|
+
is_bot?: boolean | undefined;
|
|
13929
13987
|
} | undefined;
|
|
13930
13988
|
create_time_second?: number | undefined;
|
|
13931
13989
|
active?: number | undefined;
|
|
@@ -13948,7 +14006,7 @@ export declare const UserChannelAdded: {
|
|
|
13948
14006
|
sender_id?: string | undefined;
|
|
13949
14007
|
content?: string | undefined;
|
|
13950
14008
|
attachment?: string | undefined;
|
|
13951
|
-
|
|
14009
|
+
reference?: string | undefined;
|
|
13952
14010
|
mention?: string | undefined;
|
|
13953
14011
|
reaction?: string | undefined;
|
|
13954
14012
|
repliers?: string[] | undefined;
|
|
@@ -13959,7 +14017,7 @@ export declare const UserChannelAdded: {
|
|
|
13959
14017
|
sender_id?: string | undefined;
|
|
13960
14018
|
content?: string | undefined;
|
|
13961
14019
|
attachment?: string | undefined;
|
|
13962
|
-
|
|
14020
|
+
reference?: string | undefined;
|
|
13963
14021
|
mention?: string | undefined;
|
|
13964
14022
|
reaction?: string | undefined;
|
|
13965
14023
|
repliers?: string[] | undefined;
|
|
@@ -14000,7 +14058,7 @@ export declare const UserChannelAdded: {
|
|
|
14000
14058
|
sender_id?: string | undefined;
|
|
14001
14059
|
content?: string | undefined;
|
|
14002
14060
|
attachment?: string | undefined;
|
|
14003
|
-
|
|
14061
|
+
reference?: string | undefined;
|
|
14004
14062
|
mention?: string | undefined;
|
|
14005
14063
|
reaction?: string | undefined;
|
|
14006
14064
|
repliers?: string[] | undefined;
|
|
@@ -14010,7 +14068,7 @@ export declare const UserChannelAdded: {
|
|
|
14010
14068
|
sender_id?: string | undefined;
|
|
14011
14069
|
content?: string | undefined;
|
|
14012
14070
|
attachment?: string | undefined;
|
|
14013
|
-
|
|
14071
|
+
reference?: string | undefined;
|
|
14014
14072
|
mention?: string | undefined;
|
|
14015
14073
|
reaction?: string | undefined;
|
|
14016
14074
|
repliers?: (string[] & string[] & { [K_24 in Exclude<keyof I_1["channel_desc"]["last_sent_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
@@ -14021,7 +14079,7 @@ export declare const UserChannelAdded: {
|
|
|
14021
14079
|
sender_id?: string | undefined;
|
|
14022
14080
|
content?: string | undefined;
|
|
14023
14081
|
attachment?: string | undefined;
|
|
14024
|
-
|
|
14082
|
+
reference?: string | undefined;
|
|
14025
14083
|
mention?: string | undefined;
|
|
14026
14084
|
reaction?: string | undefined;
|
|
14027
14085
|
repliers?: string[] | undefined;
|
|
@@ -14031,7 +14089,7 @@ export declare const UserChannelAdded: {
|
|
|
14031
14089
|
sender_id?: string | undefined;
|
|
14032
14090
|
content?: string | undefined;
|
|
14033
14091
|
attachment?: string | undefined;
|
|
14034
|
-
|
|
14092
|
+
reference?: string | undefined;
|
|
14035
14093
|
mention?: string | undefined;
|
|
14036
14094
|
reaction?: string | undefined;
|
|
14037
14095
|
repliers?: (string[] & string[] & { [K_26 in Exclude<keyof I_1["channel_desc"]["last_seen_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
@@ -14076,6 +14134,7 @@ export declare const UserChannelAdded: {
|
|
|
14076
14134
|
mezon_id?: string | undefined;
|
|
14077
14135
|
app_token?: string | undefined;
|
|
14078
14136
|
app_url?: string | undefined;
|
|
14137
|
+
is_bot?: boolean | undefined;
|
|
14079
14138
|
}[] & ({
|
|
14080
14139
|
user_id?: string | undefined;
|
|
14081
14140
|
username?: string | undefined;
|
|
@@ -14097,6 +14156,7 @@ export declare const UserChannelAdded: {
|
|
|
14097
14156
|
mezon_id?: string | undefined;
|
|
14098
14157
|
app_token?: string | undefined;
|
|
14099
14158
|
app_url?: string | undefined;
|
|
14159
|
+
is_bot?: boolean | undefined;
|
|
14100
14160
|
} & {
|
|
14101
14161
|
user_id?: string | undefined;
|
|
14102
14162
|
username?: string | undefined;
|
|
@@ -14130,6 +14190,7 @@ export declare const UserChannelAdded: {
|
|
|
14130
14190
|
mezon_id?: string | undefined;
|
|
14131
14191
|
app_token?: string | undefined;
|
|
14132
14192
|
app_url?: string | undefined;
|
|
14193
|
+
is_bot?: boolean | undefined;
|
|
14133
14194
|
} & { [K_37 in Exclude<keyof I_1["users"][number], keyof UserProfileRedis>]: never; })[] & { [K_38 in Exclude<keyof I_1["users"], keyof {
|
|
14134
14195
|
user_id?: string | undefined;
|
|
14135
14196
|
username?: string | undefined;
|
|
@@ -14151,6 +14212,7 @@ export declare const UserChannelAdded: {
|
|
|
14151
14212
|
mezon_id?: string | undefined;
|
|
14152
14213
|
app_token?: string | undefined;
|
|
14153
14214
|
app_url?: string | undefined;
|
|
14215
|
+
is_bot?: boolean | undefined;
|
|
14154
14216
|
}[]>]: never; }) | undefined;
|
|
14155
14217
|
status?: string | undefined;
|
|
14156
14218
|
clan_id?: string | undefined;
|
|
@@ -14175,6 +14237,7 @@ export declare const UserChannelAdded: {
|
|
|
14175
14237
|
mezon_id?: string | undefined;
|
|
14176
14238
|
app_token?: string | undefined;
|
|
14177
14239
|
app_url?: string | undefined;
|
|
14240
|
+
is_bot?: boolean | undefined;
|
|
14178
14241
|
} & {
|
|
14179
14242
|
user_id?: string | undefined;
|
|
14180
14243
|
username?: string | undefined;
|
|
@@ -14208,6 +14271,7 @@ export declare const UserChannelAdded: {
|
|
|
14208
14271
|
mezon_id?: string | undefined;
|
|
14209
14272
|
app_token?: string | undefined;
|
|
14210
14273
|
app_url?: string | undefined;
|
|
14274
|
+
is_bot?: boolean | undefined;
|
|
14211
14275
|
} & { [K_42 in Exclude<keyof I_1["caller"], keyof UserProfileRedis>]: never; }) | undefined;
|
|
14212
14276
|
create_time_second?: number | undefined;
|
|
14213
14277
|
active?: number | undefined;
|
|
@@ -14399,6 +14463,7 @@ export declare const UserProfileRedis: {
|
|
|
14399
14463
|
mezon_id?: string | undefined;
|
|
14400
14464
|
app_token?: string | undefined;
|
|
14401
14465
|
app_url?: string | undefined;
|
|
14466
|
+
is_bot?: boolean | undefined;
|
|
14402
14467
|
} & {
|
|
14403
14468
|
user_id?: string | undefined;
|
|
14404
14469
|
username?: string | undefined;
|
|
@@ -14432,6 +14497,7 @@ export declare const UserProfileRedis: {
|
|
|
14432
14497
|
mezon_id?: string | undefined;
|
|
14433
14498
|
app_token?: string | undefined;
|
|
14434
14499
|
app_url?: string | undefined;
|
|
14500
|
+
is_bot?: boolean | undefined;
|
|
14435
14501
|
} & { [K_3 in Exclude<keyof I, keyof UserProfileRedis>]: never; }>(base?: I | undefined): UserProfileRedis;
|
|
14436
14502
|
fromPartial<I_1 extends {
|
|
14437
14503
|
user_id?: string | undefined;
|
|
@@ -14454,6 +14520,7 @@ export declare const UserProfileRedis: {
|
|
|
14454
14520
|
mezon_id?: string | undefined;
|
|
14455
14521
|
app_token?: string | undefined;
|
|
14456
14522
|
app_url?: string | undefined;
|
|
14523
|
+
is_bot?: boolean | undefined;
|
|
14457
14524
|
} & {
|
|
14458
14525
|
user_id?: string | undefined;
|
|
14459
14526
|
username?: string | undefined;
|
|
@@ -14487,6 +14554,7 @@ export declare const UserProfileRedis: {
|
|
|
14487
14554
|
mezon_id?: string | undefined;
|
|
14488
14555
|
app_token?: string | undefined;
|
|
14489
14556
|
app_url?: string | undefined;
|
|
14557
|
+
is_bot?: boolean | undefined;
|
|
14490
14558
|
} & { [K_7 in Exclude<keyof I_1, keyof UserProfileRedis>]: never; }>(object: I_1): UserProfileRedis;
|
|
14491
14559
|
};
|
|
14492
14560
|
export declare const FCMTokens: {
|
|
@@ -15064,7 +15132,7 @@ export declare const SdTopicEvent: {
|
|
|
15064
15132
|
sender_id?: string | undefined;
|
|
15065
15133
|
content?: string | undefined;
|
|
15066
15134
|
attachment?: string | undefined;
|
|
15067
|
-
|
|
15135
|
+
reference?: string | undefined;
|
|
15068
15136
|
mention?: string | undefined;
|
|
15069
15137
|
reaction?: string | undefined;
|
|
15070
15138
|
repliers?: string[] | undefined;
|
|
@@ -15110,7 +15178,7 @@ export declare const SdTopicEvent: {
|
|
|
15110
15178
|
sender_id?: string | undefined;
|
|
15111
15179
|
content?: string | undefined;
|
|
15112
15180
|
attachment?: string | undefined;
|
|
15113
|
-
|
|
15181
|
+
reference?: string | undefined;
|
|
15114
15182
|
mention?: string | undefined;
|
|
15115
15183
|
reaction?: string | undefined;
|
|
15116
15184
|
repliers?: string[] | undefined;
|
|
@@ -15120,7 +15188,7 @@ export declare const SdTopicEvent: {
|
|
|
15120
15188
|
sender_id?: string | undefined;
|
|
15121
15189
|
content?: string | undefined;
|
|
15122
15190
|
attachment?: string | undefined;
|
|
15123
|
-
|
|
15191
|
+
reference?: string | undefined;
|
|
15124
15192
|
mention?: string | undefined;
|
|
15125
15193
|
reaction?: string | undefined;
|
|
15126
15194
|
repliers?: (string[] & string[] & { [K in Exclude<keyof I["last_sent_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
@@ -15195,7 +15263,7 @@ export declare const SdTopicEvent: {
|
|
|
15195
15263
|
sender_id?: string | undefined;
|
|
15196
15264
|
content?: string | undefined;
|
|
15197
15265
|
attachment?: string | undefined;
|
|
15198
|
-
|
|
15266
|
+
reference?: string | undefined;
|
|
15199
15267
|
mention?: string | undefined;
|
|
15200
15268
|
reaction?: string | undefined;
|
|
15201
15269
|
repliers?: string[] | undefined;
|
|
@@ -15241,7 +15309,7 @@ export declare const SdTopicEvent: {
|
|
|
15241
15309
|
sender_id?: string | undefined;
|
|
15242
15310
|
content?: string | undefined;
|
|
15243
15311
|
attachment?: string | undefined;
|
|
15244
|
-
|
|
15312
|
+
reference?: string | undefined;
|
|
15245
15313
|
mention?: string | undefined;
|
|
15246
15314
|
reaction?: string | undefined;
|
|
15247
15315
|
repliers?: string[] | undefined;
|
|
@@ -15251,7 +15319,7 @@ export declare const SdTopicEvent: {
|
|
|
15251
15319
|
sender_id?: string | undefined;
|
|
15252
15320
|
content?: string | undefined;
|
|
15253
15321
|
attachment?: string | undefined;
|
|
15254
|
-
|
|
15322
|
+
reference?: string | undefined;
|
|
15255
15323
|
mention?: string | undefined;
|
|
15256
15324
|
reaction?: string | undefined;
|
|
15257
15325
|
repliers?: (string[] & string[] & { [K_4 in Exclude<keyof I_1["last_sent_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|