mezon-sdk 2.7.88 → 2.7.89
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/api/api.d.ts +906 -289
- package/dist/cjs/api/api.js +1050 -119
- package/dist/cjs/api/api.js.map +1 -1
- package/dist/cjs/interfaces/client.d.ts +1 -1
- package/dist/cjs/interfaces/client.js +1 -1
- package/dist/cjs/interfaces/client.js.map +1 -1
- package/dist/cjs/mezon-client/client/MezonClient.js +10 -7
- package/dist/cjs/mezon-client/client/MezonClient.js.map +1 -1
- package/dist/cjs/rtapi/realtime.d.ts +722 -388
- package/dist/cjs/rtapi/realtime.js +288 -22
- package/dist/cjs/rtapi/realtime.js.map +1 -1
- package/dist/esm/api/api.d.ts +906 -289
- package/dist/esm/api/api.js +1048 -129
- package/dist/esm/api/api.js.map +1 -1
- package/dist/esm/interfaces/client.d.ts +1 -1
- package/dist/esm/interfaces/client.js +1 -1
- package/dist/esm/interfaces/client.js.map +1 -1
- package/dist/esm/mezon-client/client/MezonClient.js +8 -5
- package/dist/esm/mezon-client/client/MezonClient.js.map +1 -1
- package/dist/esm/rtapi/realtime.d.ts +722 -388
- package/dist/esm/rtapi/realtime.js +282 -18
- package/dist/esm/rtapi/realtime.js.map +1 -1
- package/dist/tsconfig.esm.tsbuildinfo +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +1 -1
|
@@ -153,6 +153,10 @@ export interface Envelope {
|
|
|
153
153
|
unpin_message_event?: UnpinMessageEvent | undefined;
|
|
154
154
|
/** category event */
|
|
155
155
|
category_event?: CategoryEvent | undefined;
|
|
156
|
+
/** handle join/leave channel voice */
|
|
157
|
+
handle_participant_meet_state_event?: HandleParticipantMeetStateEvent | undefined;
|
|
158
|
+
/** delete acc */
|
|
159
|
+
delete_account_event?: DeleteAccountEvent | undefined;
|
|
156
160
|
}
|
|
157
161
|
export interface FollowEvent {
|
|
158
162
|
}
|
|
@@ -199,6 +203,8 @@ export interface AddClanUserEvent {
|
|
|
199
203
|
clan_id: string;
|
|
200
204
|
/** the user */
|
|
201
205
|
user: UserProfileRedis | undefined;
|
|
206
|
+
/** inviter */
|
|
207
|
+
invitor: string;
|
|
202
208
|
}
|
|
203
209
|
/** On role assign */
|
|
204
210
|
export interface RoleAssignedEvent {
|
|
@@ -541,6 +547,10 @@ export interface MessageTypingEvent {
|
|
|
541
547
|
mode: number;
|
|
542
548
|
/** is public */
|
|
543
549
|
is_public: boolean;
|
|
550
|
+
/** sender username */
|
|
551
|
+
sender_username: string;
|
|
552
|
+
/** sender display name */
|
|
553
|
+
sender_display_name: string;
|
|
544
554
|
}
|
|
545
555
|
/** Voice Joined event */
|
|
546
556
|
export interface VoiceLeavedEvent {
|
|
@@ -655,8 +665,8 @@ export interface ChannelCreatedEvent {
|
|
|
655
665
|
channel_type: number | undefined;
|
|
656
666
|
/** status */
|
|
657
667
|
status: number;
|
|
658
|
-
/** app
|
|
659
|
-
|
|
668
|
+
/** app id */
|
|
669
|
+
app_id: string;
|
|
660
670
|
/** clan_name */
|
|
661
671
|
clan_name: string;
|
|
662
672
|
}
|
|
@@ -755,7 +765,7 @@ export interface ChannelUpdatedEvent {
|
|
|
755
765
|
/** channel private */
|
|
756
766
|
channel_private: boolean;
|
|
757
767
|
/** app url */
|
|
758
|
-
|
|
768
|
+
app_id: string;
|
|
759
769
|
/** e2ee */
|
|
760
770
|
e2ee: number;
|
|
761
771
|
/** topic */
|
|
@@ -952,6 +962,10 @@ export interface UserProfileRedis {
|
|
|
952
962
|
mezon_id: string;
|
|
953
963
|
/** app token */
|
|
954
964
|
app_token: string;
|
|
965
|
+
/** app url */
|
|
966
|
+
app_url: string;
|
|
967
|
+
/** is bot */
|
|
968
|
+
is_bot: boolean;
|
|
955
969
|
}
|
|
956
970
|
export interface FCMTokens {
|
|
957
971
|
/** deviceID to follow. */
|
|
@@ -1067,6 +1081,20 @@ export interface UnpinMessageEvent {
|
|
|
1067
1081
|
channel_id: string;
|
|
1068
1082
|
clan_id: string;
|
|
1069
1083
|
}
|
|
1084
|
+
export interface HandleParticipantMeetStateEvent {
|
|
1085
|
+
/** clan id */
|
|
1086
|
+
clan_id: string;
|
|
1087
|
+
/** channel id */
|
|
1088
|
+
channel_id: string;
|
|
1089
|
+
/** display name */
|
|
1090
|
+
display_name: string;
|
|
1091
|
+
/** state (0: join, 1: leave) */
|
|
1092
|
+
state: number;
|
|
1093
|
+
}
|
|
1094
|
+
export interface DeleteAccountEvent {
|
|
1095
|
+
/** user id */
|
|
1096
|
+
user_id: string;
|
|
1097
|
+
}
|
|
1070
1098
|
export declare const Envelope: {
|
|
1071
1099
|
encode(message: Envelope, writer?: _m0.Writer): _m0.Writer;
|
|
1072
1100
|
decode(input: _m0.Reader | Uint8Array, length?: number): Envelope;
|
|
@@ -1297,7 +1325,7 @@ export declare const Envelope: {
|
|
|
1297
1325
|
sender_id?: string | undefined;
|
|
1298
1326
|
content?: string | undefined;
|
|
1299
1327
|
attachment?: string | undefined;
|
|
1300
|
-
|
|
1328
|
+
reference?: string | undefined;
|
|
1301
1329
|
mention?: string | undefined;
|
|
1302
1330
|
reaction?: string | undefined;
|
|
1303
1331
|
repliers?: string[] | undefined;
|
|
@@ -1308,7 +1336,7 @@ export declare const Envelope: {
|
|
|
1308
1336
|
sender_id?: string | undefined;
|
|
1309
1337
|
content?: string | undefined;
|
|
1310
1338
|
attachment?: string | undefined;
|
|
1311
|
-
|
|
1339
|
+
reference?: string | undefined;
|
|
1312
1340
|
mention?: string | undefined;
|
|
1313
1341
|
reaction?: string | undefined;
|
|
1314
1342
|
repliers?: string[] | undefined;
|
|
@@ -1325,7 +1353,7 @@ export declare const Envelope: {
|
|
|
1325
1353
|
metadata?: string[] | undefined;
|
|
1326
1354
|
about_me?: string[] | undefined;
|
|
1327
1355
|
clan_name?: string | undefined;
|
|
1328
|
-
|
|
1356
|
+
app_id?: string | undefined;
|
|
1329
1357
|
is_mute?: boolean | undefined;
|
|
1330
1358
|
age_restricted?: number | undefined;
|
|
1331
1359
|
topic?: string | undefined;
|
|
@@ -1435,6 +1463,8 @@ export declare const Envelope: {
|
|
|
1435
1463
|
sender_id?: string | undefined;
|
|
1436
1464
|
mode?: number | undefined;
|
|
1437
1465
|
is_public?: boolean | undefined;
|
|
1466
|
+
sender_username?: string | undefined;
|
|
1467
|
+
sender_display_name?: string | undefined;
|
|
1438
1468
|
} | undefined;
|
|
1439
1469
|
last_seen_message_event?: {
|
|
1440
1470
|
clan_id?: string | undefined;
|
|
@@ -1498,7 +1528,7 @@ export declare const Envelope: {
|
|
|
1498
1528
|
channel_private?: number | undefined;
|
|
1499
1529
|
channel_type?: number | undefined;
|
|
1500
1530
|
status?: number | undefined;
|
|
1501
|
-
|
|
1531
|
+
app_id?: string | undefined;
|
|
1502
1532
|
clan_name?: string | undefined;
|
|
1503
1533
|
} | undefined;
|
|
1504
1534
|
channel_deleted_event?: {
|
|
@@ -1520,7 +1550,7 @@ export declare const Envelope: {
|
|
|
1520
1550
|
meeting_code?: string | undefined;
|
|
1521
1551
|
is_error?: boolean | undefined;
|
|
1522
1552
|
channel_private?: boolean | undefined;
|
|
1523
|
-
|
|
1553
|
+
app_id?: string | undefined;
|
|
1524
1554
|
e2ee?: number | undefined;
|
|
1525
1555
|
topic?: string | undefined;
|
|
1526
1556
|
age_restricted?: number | undefined;
|
|
@@ -1563,7 +1593,7 @@ export declare const Envelope: {
|
|
|
1563
1593
|
sender_id?: string | undefined;
|
|
1564
1594
|
content?: string | undefined;
|
|
1565
1595
|
attachment?: string | undefined;
|
|
1566
|
-
|
|
1596
|
+
reference?: string | undefined;
|
|
1567
1597
|
mention?: string | undefined;
|
|
1568
1598
|
reaction?: string | undefined;
|
|
1569
1599
|
repliers?: string[] | undefined;
|
|
@@ -1574,7 +1604,7 @@ export declare const Envelope: {
|
|
|
1574
1604
|
sender_id?: string | undefined;
|
|
1575
1605
|
content?: string | undefined;
|
|
1576
1606
|
attachment?: string | undefined;
|
|
1577
|
-
|
|
1607
|
+
reference?: string | undefined;
|
|
1578
1608
|
mention?: string | undefined;
|
|
1579
1609
|
reaction?: string | undefined;
|
|
1580
1610
|
repliers?: string[] | undefined;
|
|
@@ -1591,7 +1621,7 @@ export declare const Envelope: {
|
|
|
1591
1621
|
metadata?: string[] | undefined;
|
|
1592
1622
|
about_me?: string[] | undefined;
|
|
1593
1623
|
clan_name?: string | undefined;
|
|
1594
|
-
|
|
1624
|
+
app_id?: string | undefined;
|
|
1595
1625
|
is_mute?: boolean | undefined;
|
|
1596
1626
|
age_restricted?: number | undefined;
|
|
1597
1627
|
topic?: string | undefined;
|
|
@@ -1618,6 +1648,8 @@ export declare const Envelope: {
|
|
|
1618
1648
|
pubkey?: string | undefined;
|
|
1619
1649
|
mezon_id?: string | undefined;
|
|
1620
1650
|
app_token?: string | undefined;
|
|
1651
|
+
app_url?: string | undefined;
|
|
1652
|
+
is_bot?: boolean | undefined;
|
|
1621
1653
|
}[] | undefined;
|
|
1622
1654
|
status?: string | undefined;
|
|
1623
1655
|
clan_id?: string | undefined;
|
|
@@ -1641,6 +1673,8 @@ export declare const Envelope: {
|
|
|
1641
1673
|
pubkey?: string | undefined;
|
|
1642
1674
|
mezon_id?: string | undefined;
|
|
1643
1675
|
app_token?: string | undefined;
|
|
1676
|
+
app_url?: string | undefined;
|
|
1677
|
+
is_bot?: boolean | undefined;
|
|
1644
1678
|
} | undefined;
|
|
1645
1679
|
create_time_second?: number | undefined;
|
|
1646
1680
|
active?: number | undefined;
|
|
@@ -1708,7 +1742,10 @@ export declare const Envelope: {
|
|
|
1708
1742
|
pubkey?: string | undefined;
|
|
1709
1743
|
mezon_id?: string | undefined;
|
|
1710
1744
|
app_token?: string | undefined;
|
|
1745
|
+
app_url?: string | undefined;
|
|
1746
|
+
is_bot?: boolean | undefined;
|
|
1711
1747
|
} | undefined;
|
|
1748
|
+
invitor?: string | undefined;
|
|
1712
1749
|
} | undefined;
|
|
1713
1750
|
clan_event_created?: {
|
|
1714
1751
|
title?: string | undefined;
|
|
@@ -1726,6 +1763,14 @@ export declare const Envelope: {
|
|
|
1726
1763
|
repeat_type?: number | undefined;
|
|
1727
1764
|
creator_id?: string | undefined;
|
|
1728
1765
|
user_id?: string | undefined;
|
|
1766
|
+
is_private?: boolean | undefined;
|
|
1767
|
+
meet_room?: {
|
|
1768
|
+
meet_id?: string | undefined;
|
|
1769
|
+
room_name?: string | undefined;
|
|
1770
|
+
external_link?: string | undefined;
|
|
1771
|
+
creator_id?: string | undefined;
|
|
1772
|
+
event_id?: string | undefined;
|
|
1773
|
+
} | undefined;
|
|
1729
1774
|
} | undefined;
|
|
1730
1775
|
role_assign_event?: {
|
|
1731
1776
|
ClanId?: string | undefined;
|
|
@@ -1804,6 +1849,7 @@ export declare const Envelope: {
|
|
|
1804
1849
|
role_channel_active?: number | undefined;
|
|
1805
1850
|
channel_ids?: string[] | undefined;
|
|
1806
1851
|
max_level_permission?: number | undefined;
|
|
1852
|
+
order_role?: number | undefined;
|
|
1807
1853
|
} | undefined;
|
|
1808
1854
|
status?: number | undefined;
|
|
1809
1855
|
user_id?: string | undefined;
|
|
@@ -1945,7 +1991,7 @@ export declare const Envelope: {
|
|
|
1945
1991
|
sender_id?: string | undefined;
|
|
1946
1992
|
content?: string | undefined;
|
|
1947
1993
|
attachment?: string | undefined;
|
|
1948
|
-
|
|
1994
|
+
reference?: string | undefined;
|
|
1949
1995
|
mention?: string | undefined;
|
|
1950
1996
|
reaction?: string | undefined;
|
|
1951
1997
|
repliers?: string[] | undefined;
|
|
@@ -2042,6 +2088,15 @@ export declare const Envelope: {
|
|
|
2042
2088
|
id?: string | undefined;
|
|
2043
2089
|
status?: number | undefined;
|
|
2044
2090
|
} | undefined;
|
|
2091
|
+
handle_participant_meet_state_event?: {
|
|
2092
|
+
clan_id?: string | undefined;
|
|
2093
|
+
channel_id?: string | undefined;
|
|
2094
|
+
display_name?: string | undefined;
|
|
2095
|
+
state?: number | undefined;
|
|
2096
|
+
} | undefined;
|
|
2097
|
+
delete_account_event?: {
|
|
2098
|
+
user_id?: string | undefined;
|
|
2099
|
+
} | undefined;
|
|
2045
2100
|
} & {
|
|
2046
2101
|
cid?: string | undefined;
|
|
2047
2102
|
channel?: ({
|
|
@@ -2665,7 +2720,7 @@ export declare const Envelope: {
|
|
|
2665
2720
|
sender_id?: string | undefined;
|
|
2666
2721
|
content?: string | undefined;
|
|
2667
2722
|
attachment?: string | undefined;
|
|
2668
|
-
|
|
2723
|
+
reference?: string | undefined;
|
|
2669
2724
|
mention?: string | undefined;
|
|
2670
2725
|
reaction?: string | undefined;
|
|
2671
2726
|
repliers?: string[] | undefined;
|
|
@@ -2676,7 +2731,7 @@ export declare const Envelope: {
|
|
|
2676
2731
|
sender_id?: string | undefined;
|
|
2677
2732
|
content?: string | undefined;
|
|
2678
2733
|
attachment?: string | undefined;
|
|
2679
|
-
|
|
2734
|
+
reference?: string | undefined;
|
|
2680
2735
|
mention?: string | undefined;
|
|
2681
2736
|
reaction?: string | undefined;
|
|
2682
2737
|
repliers?: string[] | undefined;
|
|
@@ -2693,7 +2748,7 @@ export declare const Envelope: {
|
|
|
2693
2748
|
metadata?: string[] | undefined;
|
|
2694
2749
|
about_me?: string[] | undefined;
|
|
2695
2750
|
clan_name?: string | undefined;
|
|
2696
|
-
|
|
2751
|
+
app_id?: string | undefined;
|
|
2697
2752
|
is_mute?: boolean | undefined;
|
|
2698
2753
|
age_restricted?: number | undefined;
|
|
2699
2754
|
topic?: string | undefined;
|
|
@@ -2734,7 +2789,7 @@ export declare const Envelope: {
|
|
|
2734
2789
|
sender_id?: string | undefined;
|
|
2735
2790
|
content?: string | undefined;
|
|
2736
2791
|
attachment?: string | undefined;
|
|
2737
|
-
|
|
2792
|
+
reference?: string | undefined;
|
|
2738
2793
|
mention?: string | undefined;
|
|
2739
2794
|
reaction?: string | undefined;
|
|
2740
2795
|
repliers?: string[] | undefined;
|
|
@@ -2745,7 +2800,7 @@ export declare const Envelope: {
|
|
|
2745
2800
|
sender_id?: string | undefined;
|
|
2746
2801
|
content?: string | undefined;
|
|
2747
2802
|
attachment?: string | undefined;
|
|
2748
|
-
|
|
2803
|
+
reference?: string | undefined;
|
|
2749
2804
|
mention?: string | undefined;
|
|
2750
2805
|
reaction?: string | undefined;
|
|
2751
2806
|
repliers?: string[] | undefined;
|
|
@@ -2762,7 +2817,7 @@ export declare const Envelope: {
|
|
|
2762
2817
|
metadata?: string[] | undefined;
|
|
2763
2818
|
about_me?: string[] | undefined;
|
|
2764
2819
|
clan_name?: string | undefined;
|
|
2765
|
-
|
|
2820
|
+
app_id?: string | undefined;
|
|
2766
2821
|
is_mute?: boolean | undefined;
|
|
2767
2822
|
age_restricted?: number | undefined;
|
|
2768
2823
|
topic?: string | undefined;
|
|
@@ -2801,7 +2856,7 @@ export declare const Envelope: {
|
|
|
2801
2856
|
sender_id?: string | undefined;
|
|
2802
2857
|
content?: string | undefined;
|
|
2803
2858
|
attachment?: string | undefined;
|
|
2804
|
-
|
|
2859
|
+
reference?: string | undefined;
|
|
2805
2860
|
mention?: string | undefined;
|
|
2806
2861
|
reaction?: string | undefined;
|
|
2807
2862
|
repliers?: string[] | undefined;
|
|
@@ -2812,7 +2867,7 @@ export declare const Envelope: {
|
|
|
2812
2867
|
sender_id?: string | undefined;
|
|
2813
2868
|
content?: string | undefined;
|
|
2814
2869
|
attachment?: string | undefined;
|
|
2815
|
-
|
|
2870
|
+
reference?: string | undefined;
|
|
2816
2871
|
mention?: string | undefined;
|
|
2817
2872
|
reaction?: string | undefined;
|
|
2818
2873
|
repliers?: string[] | undefined;
|
|
@@ -2829,7 +2884,7 @@ export declare const Envelope: {
|
|
|
2829
2884
|
metadata?: string[] | undefined;
|
|
2830
2885
|
about_me?: string[] | undefined;
|
|
2831
2886
|
clan_name?: string | undefined;
|
|
2832
|
-
|
|
2887
|
+
app_id?: string | undefined;
|
|
2833
2888
|
is_mute?: boolean | undefined;
|
|
2834
2889
|
age_restricted?: number | undefined;
|
|
2835
2890
|
topic?: string | undefined;
|
|
@@ -2868,7 +2923,7 @@ export declare const Envelope: {
|
|
|
2868
2923
|
sender_id?: string | undefined;
|
|
2869
2924
|
content?: string | undefined;
|
|
2870
2925
|
attachment?: string | undefined;
|
|
2871
|
-
|
|
2926
|
+
reference?: string | undefined;
|
|
2872
2927
|
mention?: string | undefined;
|
|
2873
2928
|
reaction?: string | undefined;
|
|
2874
2929
|
repliers?: string[] | undefined;
|
|
@@ -2879,7 +2934,7 @@ export declare const Envelope: {
|
|
|
2879
2934
|
sender_id?: string | undefined;
|
|
2880
2935
|
content?: string | undefined;
|
|
2881
2936
|
attachment?: string | undefined;
|
|
2882
|
-
|
|
2937
|
+
reference?: string | undefined;
|
|
2883
2938
|
mention?: string | undefined;
|
|
2884
2939
|
reaction?: string | undefined;
|
|
2885
2940
|
repliers?: string[] | undefined;
|
|
@@ -2896,7 +2951,7 @@ export declare const Envelope: {
|
|
|
2896
2951
|
metadata?: string[] | undefined;
|
|
2897
2952
|
about_me?: string[] | undefined;
|
|
2898
2953
|
clan_name?: string | undefined;
|
|
2899
|
-
|
|
2954
|
+
app_id?: string | undefined;
|
|
2900
2955
|
is_mute?: boolean | undefined;
|
|
2901
2956
|
age_restricted?: number | undefined;
|
|
2902
2957
|
topic?: string | undefined;
|
|
@@ -2920,7 +2975,7 @@ export declare const Envelope: {
|
|
|
2920
2975
|
sender_id?: string | undefined;
|
|
2921
2976
|
content?: string | undefined;
|
|
2922
2977
|
attachment?: string | undefined;
|
|
2923
|
-
|
|
2978
|
+
reference?: string | undefined;
|
|
2924
2979
|
mention?: string | undefined;
|
|
2925
2980
|
reaction?: string | undefined;
|
|
2926
2981
|
repliers?: string[] | undefined;
|
|
@@ -2930,7 +2985,7 @@ export declare const Envelope: {
|
|
|
2930
2985
|
sender_id?: string | undefined;
|
|
2931
2986
|
content?: string | undefined;
|
|
2932
2987
|
attachment?: string | undefined;
|
|
2933
|
-
|
|
2988
|
+
reference?: string | undefined;
|
|
2934
2989
|
mention?: string | undefined;
|
|
2935
2990
|
reaction?: string | undefined;
|
|
2936
2991
|
repliers?: (string[] & string[] & { [K_31 in Exclude<keyof I["notifications"]["notifications"][number]["channel"]["last_sent_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
@@ -2941,7 +2996,7 @@ export declare const Envelope: {
|
|
|
2941
2996
|
sender_id?: string | undefined;
|
|
2942
2997
|
content?: string | undefined;
|
|
2943
2998
|
attachment?: string | undefined;
|
|
2944
|
-
|
|
2999
|
+
reference?: string | undefined;
|
|
2945
3000
|
mention?: string | undefined;
|
|
2946
3001
|
reaction?: string | undefined;
|
|
2947
3002
|
repliers?: string[] | undefined;
|
|
@@ -2951,7 +3006,7 @@ export declare const Envelope: {
|
|
|
2951
3006
|
sender_id?: string | undefined;
|
|
2952
3007
|
content?: string | undefined;
|
|
2953
3008
|
attachment?: string | undefined;
|
|
2954
|
-
|
|
3009
|
+
reference?: string | undefined;
|
|
2955
3010
|
mention?: string | undefined;
|
|
2956
3011
|
reaction?: string | undefined;
|
|
2957
3012
|
repliers?: (string[] & string[] & { [K_33 in Exclude<keyof I["notifications"]["notifications"][number]["channel"]["last_seen_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
@@ -2968,7 +3023,7 @@ export declare const Envelope: {
|
|
|
2968
3023
|
metadata?: (string[] & string[] & { [K_37 in Exclude<keyof I["notifications"]["notifications"][number]["channel"]["metadata"], keyof string[]>]: never; }) | undefined;
|
|
2969
3024
|
about_me?: (string[] & string[] & { [K_38 in Exclude<keyof I["notifications"]["notifications"][number]["channel"]["about_me"], keyof string[]>]: never; }) | undefined;
|
|
2970
3025
|
clan_name?: string | undefined;
|
|
2971
|
-
|
|
3026
|
+
app_id?: string | undefined;
|
|
2972
3027
|
is_mute?: boolean | undefined;
|
|
2973
3028
|
age_restricted?: number | undefined;
|
|
2974
3029
|
topic?: string | undefined;
|
|
@@ -3007,7 +3062,7 @@ export declare const Envelope: {
|
|
|
3007
3062
|
sender_id?: string | undefined;
|
|
3008
3063
|
content?: string | undefined;
|
|
3009
3064
|
attachment?: string | undefined;
|
|
3010
|
-
|
|
3065
|
+
reference?: string | undefined;
|
|
3011
3066
|
mention?: string | undefined;
|
|
3012
3067
|
reaction?: string | undefined;
|
|
3013
3068
|
repliers?: string[] | undefined;
|
|
@@ -3018,7 +3073,7 @@ export declare const Envelope: {
|
|
|
3018
3073
|
sender_id?: string | undefined;
|
|
3019
3074
|
content?: string | undefined;
|
|
3020
3075
|
attachment?: string | undefined;
|
|
3021
|
-
|
|
3076
|
+
reference?: string | undefined;
|
|
3022
3077
|
mention?: string | undefined;
|
|
3023
3078
|
reaction?: string | undefined;
|
|
3024
3079
|
repliers?: string[] | undefined;
|
|
@@ -3035,7 +3090,7 @@ export declare const Envelope: {
|
|
|
3035
3090
|
metadata?: string[] | undefined;
|
|
3036
3091
|
about_me?: string[] | undefined;
|
|
3037
3092
|
clan_name?: string | undefined;
|
|
3038
|
-
|
|
3093
|
+
app_id?: string | undefined;
|
|
3039
3094
|
is_mute?: boolean | undefined;
|
|
3040
3095
|
age_restricted?: number | undefined;
|
|
3041
3096
|
topic?: string | undefined;
|
|
@@ -3366,12 +3421,16 @@ export declare const Envelope: {
|
|
|
3366
3421
|
sender_id?: string | undefined;
|
|
3367
3422
|
mode?: number | undefined;
|
|
3368
3423
|
is_public?: boolean | undefined;
|
|
3424
|
+
sender_username?: string | undefined;
|
|
3425
|
+
sender_display_name?: string | undefined;
|
|
3369
3426
|
} & {
|
|
3370
3427
|
clan_id?: string | undefined;
|
|
3371
3428
|
channel_id?: string | undefined;
|
|
3372
3429
|
sender_id?: string | undefined;
|
|
3373
3430
|
mode?: number | undefined;
|
|
3374
3431
|
is_public?: boolean | undefined;
|
|
3432
|
+
sender_username?: string | undefined;
|
|
3433
|
+
sender_display_name?: string | undefined;
|
|
3375
3434
|
} & { [K_70 in Exclude<keyof I["message_typing_event"], keyof MessageTypingEvent>]: never; }) | undefined;
|
|
3376
3435
|
last_seen_message_event?: ({
|
|
3377
3436
|
clan_id?: string | undefined;
|
|
@@ -3481,7 +3540,7 @@ export declare const Envelope: {
|
|
|
3481
3540
|
channel_private?: number | undefined;
|
|
3482
3541
|
channel_type?: number | undefined;
|
|
3483
3542
|
status?: number | undefined;
|
|
3484
|
-
|
|
3543
|
+
app_id?: string | undefined;
|
|
3485
3544
|
clan_name?: string | undefined;
|
|
3486
3545
|
} & {
|
|
3487
3546
|
clan_id?: string | undefined;
|
|
@@ -3493,7 +3552,7 @@ export declare const Envelope: {
|
|
|
3493
3552
|
channel_private?: number | undefined;
|
|
3494
3553
|
channel_type?: number | undefined;
|
|
3495
3554
|
status?: number | undefined;
|
|
3496
|
-
|
|
3555
|
+
app_id?: string | undefined;
|
|
3497
3556
|
clan_name?: string | undefined;
|
|
3498
3557
|
} & { [K_77 in Exclude<keyof I["channel_created_event"], keyof ChannelCreatedEvent>]: never; }) | undefined;
|
|
3499
3558
|
channel_deleted_event?: ({
|
|
@@ -3521,7 +3580,7 @@ export declare const Envelope: {
|
|
|
3521
3580
|
meeting_code?: string | undefined;
|
|
3522
3581
|
is_error?: boolean | undefined;
|
|
3523
3582
|
channel_private?: boolean | undefined;
|
|
3524
|
-
|
|
3583
|
+
app_id?: string | undefined;
|
|
3525
3584
|
e2ee?: number | undefined;
|
|
3526
3585
|
topic?: string | undefined;
|
|
3527
3586
|
age_restricted?: number | undefined;
|
|
@@ -3538,7 +3597,7 @@ export declare const Envelope: {
|
|
|
3538
3597
|
meeting_code?: string | undefined;
|
|
3539
3598
|
is_error?: boolean | undefined;
|
|
3540
3599
|
channel_private?: boolean | undefined;
|
|
3541
|
-
|
|
3600
|
+
app_id?: string | undefined;
|
|
3542
3601
|
e2ee?: number | undefined;
|
|
3543
3602
|
topic?: string | undefined;
|
|
3544
3603
|
age_restricted?: number | undefined;
|
|
@@ -3597,7 +3656,7 @@ export declare const Envelope: {
|
|
|
3597
3656
|
sender_id?: string | undefined;
|
|
3598
3657
|
content?: string | undefined;
|
|
3599
3658
|
attachment?: string | undefined;
|
|
3600
|
-
|
|
3659
|
+
reference?: string | undefined;
|
|
3601
3660
|
mention?: string | undefined;
|
|
3602
3661
|
reaction?: string | undefined;
|
|
3603
3662
|
repliers?: string[] | undefined;
|
|
@@ -3608,7 +3667,7 @@ export declare const Envelope: {
|
|
|
3608
3667
|
sender_id?: string | undefined;
|
|
3609
3668
|
content?: string | undefined;
|
|
3610
3669
|
attachment?: string | undefined;
|
|
3611
|
-
|
|
3670
|
+
reference?: string | undefined;
|
|
3612
3671
|
mention?: string | undefined;
|
|
3613
3672
|
reaction?: string | undefined;
|
|
3614
3673
|
repliers?: string[] | undefined;
|
|
@@ -3625,7 +3684,7 @@ export declare const Envelope: {
|
|
|
3625
3684
|
metadata?: string[] | undefined;
|
|
3626
3685
|
about_me?: string[] | undefined;
|
|
3627
3686
|
clan_name?: string | undefined;
|
|
3628
|
-
|
|
3687
|
+
app_id?: string | undefined;
|
|
3629
3688
|
is_mute?: boolean | undefined;
|
|
3630
3689
|
age_restricted?: number | undefined;
|
|
3631
3690
|
topic?: string | undefined;
|
|
@@ -3652,6 +3711,8 @@ export declare const Envelope: {
|
|
|
3652
3711
|
pubkey?: string | undefined;
|
|
3653
3712
|
mezon_id?: string | undefined;
|
|
3654
3713
|
app_token?: string | undefined;
|
|
3714
|
+
app_url?: string | undefined;
|
|
3715
|
+
is_bot?: boolean | undefined;
|
|
3655
3716
|
}[] | undefined;
|
|
3656
3717
|
status?: string | undefined;
|
|
3657
3718
|
clan_id?: string | undefined;
|
|
@@ -3675,6 +3736,8 @@ export declare const Envelope: {
|
|
|
3675
3736
|
pubkey?: string | undefined;
|
|
3676
3737
|
mezon_id?: string | undefined;
|
|
3677
3738
|
app_token?: string | undefined;
|
|
3739
|
+
app_url?: string | undefined;
|
|
3740
|
+
is_bot?: boolean | undefined;
|
|
3678
3741
|
} | undefined;
|
|
3679
3742
|
create_time_second?: number | undefined;
|
|
3680
3743
|
active?: number | undefined;
|
|
@@ -3697,7 +3760,7 @@ export declare const Envelope: {
|
|
|
3697
3760
|
sender_id?: string | undefined;
|
|
3698
3761
|
content?: string | undefined;
|
|
3699
3762
|
attachment?: string | undefined;
|
|
3700
|
-
|
|
3763
|
+
reference?: string | undefined;
|
|
3701
3764
|
mention?: string | undefined;
|
|
3702
3765
|
reaction?: string | undefined;
|
|
3703
3766
|
repliers?: string[] | undefined;
|
|
@@ -3708,7 +3771,7 @@ export declare const Envelope: {
|
|
|
3708
3771
|
sender_id?: string | undefined;
|
|
3709
3772
|
content?: string | undefined;
|
|
3710
3773
|
attachment?: string | undefined;
|
|
3711
|
-
|
|
3774
|
+
reference?: string | undefined;
|
|
3712
3775
|
mention?: string | undefined;
|
|
3713
3776
|
reaction?: string | undefined;
|
|
3714
3777
|
repliers?: string[] | undefined;
|
|
@@ -3725,7 +3788,7 @@ export declare const Envelope: {
|
|
|
3725
3788
|
metadata?: string[] | undefined;
|
|
3726
3789
|
about_me?: string[] | undefined;
|
|
3727
3790
|
clan_name?: string | undefined;
|
|
3728
|
-
|
|
3791
|
+
app_id?: string | undefined;
|
|
3729
3792
|
is_mute?: boolean | undefined;
|
|
3730
3793
|
age_restricted?: number | undefined;
|
|
3731
3794
|
topic?: string | undefined;
|
|
@@ -3749,7 +3812,7 @@ export declare const Envelope: {
|
|
|
3749
3812
|
sender_id?: string | undefined;
|
|
3750
3813
|
content?: string | undefined;
|
|
3751
3814
|
attachment?: string | undefined;
|
|
3752
|
-
|
|
3815
|
+
reference?: string | undefined;
|
|
3753
3816
|
mention?: string | undefined;
|
|
3754
3817
|
reaction?: string | undefined;
|
|
3755
3818
|
repliers?: string[] | undefined;
|
|
@@ -3759,7 +3822,7 @@ export declare const Envelope: {
|
|
|
3759
3822
|
sender_id?: string | undefined;
|
|
3760
3823
|
content?: string | undefined;
|
|
3761
3824
|
attachment?: string | undefined;
|
|
3762
|
-
|
|
3825
|
+
reference?: string | undefined;
|
|
3763
3826
|
mention?: string | undefined;
|
|
3764
3827
|
reaction?: string | undefined;
|
|
3765
3828
|
repliers?: (string[] & string[] & { [K_84 in Exclude<keyof I["user_channel_added_event"]["channel_desc"]["last_sent_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
@@ -3770,7 +3833,7 @@ export declare const Envelope: {
|
|
|
3770
3833
|
sender_id?: string | undefined;
|
|
3771
3834
|
content?: string | undefined;
|
|
3772
3835
|
attachment?: string | undefined;
|
|
3773
|
-
|
|
3836
|
+
reference?: string | undefined;
|
|
3774
3837
|
mention?: string | undefined;
|
|
3775
3838
|
reaction?: string | undefined;
|
|
3776
3839
|
repliers?: string[] | undefined;
|
|
@@ -3780,7 +3843,7 @@ export declare const Envelope: {
|
|
|
3780
3843
|
sender_id?: string | undefined;
|
|
3781
3844
|
content?: string | undefined;
|
|
3782
3845
|
attachment?: string | undefined;
|
|
3783
|
-
|
|
3846
|
+
reference?: string | undefined;
|
|
3784
3847
|
mention?: string | undefined;
|
|
3785
3848
|
reaction?: string | undefined;
|
|
3786
3849
|
repliers?: (string[] & string[] & { [K_86 in Exclude<keyof I["user_channel_added_event"]["channel_desc"]["last_seen_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
@@ -3797,7 +3860,7 @@ export declare const Envelope: {
|
|
|
3797
3860
|
metadata?: (string[] & string[] & { [K_90 in Exclude<keyof I["user_channel_added_event"]["channel_desc"]["metadata"], keyof string[]>]: never; }) | undefined;
|
|
3798
3861
|
about_me?: (string[] & string[] & { [K_91 in Exclude<keyof I["user_channel_added_event"]["channel_desc"]["about_me"], keyof string[]>]: never; }) | undefined;
|
|
3799
3862
|
clan_name?: string | undefined;
|
|
3800
|
-
|
|
3863
|
+
app_id?: string | undefined;
|
|
3801
3864
|
is_mute?: boolean | undefined;
|
|
3802
3865
|
age_restricted?: number | undefined;
|
|
3803
3866
|
topic?: string | undefined;
|
|
@@ -3824,6 +3887,8 @@ export declare const Envelope: {
|
|
|
3824
3887
|
pubkey?: string | undefined;
|
|
3825
3888
|
mezon_id?: string | undefined;
|
|
3826
3889
|
app_token?: string | undefined;
|
|
3890
|
+
app_url?: string | undefined;
|
|
3891
|
+
is_bot?: boolean | undefined;
|
|
3827
3892
|
}[] & ({
|
|
3828
3893
|
user_id?: string | undefined;
|
|
3829
3894
|
username?: string | undefined;
|
|
@@ -3844,6 +3909,8 @@ export declare const Envelope: {
|
|
|
3844
3909
|
pubkey?: string | undefined;
|
|
3845
3910
|
mezon_id?: string | undefined;
|
|
3846
3911
|
app_token?: string | undefined;
|
|
3912
|
+
app_url?: string | undefined;
|
|
3913
|
+
is_bot?: boolean | undefined;
|
|
3847
3914
|
} & {
|
|
3848
3915
|
user_id?: string | undefined;
|
|
3849
3916
|
username?: string | undefined;
|
|
@@ -3876,6 +3943,8 @@ export declare const Envelope: {
|
|
|
3876
3943
|
pubkey?: string | undefined;
|
|
3877
3944
|
mezon_id?: string | undefined;
|
|
3878
3945
|
app_token?: string | undefined;
|
|
3946
|
+
app_url?: string | undefined;
|
|
3947
|
+
is_bot?: boolean | undefined;
|
|
3879
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 {
|
|
3880
3949
|
user_id?: string | undefined;
|
|
3881
3950
|
username?: string | undefined;
|
|
@@ -3896,6 +3965,8 @@ export declare const Envelope: {
|
|
|
3896
3965
|
pubkey?: string | undefined;
|
|
3897
3966
|
mezon_id?: string | undefined;
|
|
3898
3967
|
app_token?: string | undefined;
|
|
3968
|
+
app_url?: string | undefined;
|
|
3969
|
+
is_bot?: boolean | undefined;
|
|
3899
3970
|
}[]>]: never; }) | undefined;
|
|
3900
3971
|
status?: string | undefined;
|
|
3901
3972
|
clan_id?: string | undefined;
|
|
@@ -3919,6 +3990,8 @@ export declare const Envelope: {
|
|
|
3919
3990
|
pubkey?: string | undefined;
|
|
3920
3991
|
mezon_id?: string | undefined;
|
|
3921
3992
|
app_token?: string | undefined;
|
|
3993
|
+
app_url?: string | undefined;
|
|
3994
|
+
is_bot?: boolean | undefined;
|
|
3922
3995
|
} & {
|
|
3923
3996
|
user_id?: string | undefined;
|
|
3924
3997
|
username?: string | undefined;
|
|
@@ -3951,6 +4024,8 @@ export declare const Envelope: {
|
|
|
3951
4024
|
pubkey?: string | undefined;
|
|
3952
4025
|
mezon_id?: string | undefined;
|
|
3953
4026
|
app_token?: string | undefined;
|
|
4027
|
+
app_url?: string | undefined;
|
|
4028
|
+
is_bot?: boolean | undefined;
|
|
3954
4029
|
} & { [K_102 in Exclude<keyof I["user_channel_added_event"]["caller"], keyof UserProfileRedis>]: never; }) | undefined;
|
|
3955
4030
|
create_time_second?: number | undefined;
|
|
3956
4031
|
active?: number | undefined;
|
|
@@ -4053,7 +4128,10 @@ export declare const Envelope: {
|
|
|
4053
4128
|
pubkey?: string | undefined;
|
|
4054
4129
|
mezon_id?: string | undefined;
|
|
4055
4130
|
app_token?: string | undefined;
|
|
4131
|
+
app_url?: string | undefined;
|
|
4132
|
+
is_bot?: boolean | undefined;
|
|
4056
4133
|
} | undefined;
|
|
4134
|
+
invitor?: string | undefined;
|
|
4057
4135
|
} & {
|
|
4058
4136
|
clan_id?: string | undefined;
|
|
4059
4137
|
user?: ({
|
|
@@ -4076,6 +4154,8 @@ export declare const Envelope: {
|
|
|
4076
4154
|
pubkey?: string | undefined;
|
|
4077
4155
|
mezon_id?: string | undefined;
|
|
4078
4156
|
app_token?: string | undefined;
|
|
4157
|
+
app_url?: string | undefined;
|
|
4158
|
+
is_bot?: boolean | undefined;
|
|
4079
4159
|
} & {
|
|
4080
4160
|
user_id?: string | undefined;
|
|
4081
4161
|
username?: string | undefined;
|
|
@@ -4108,7 +4188,10 @@ export declare const Envelope: {
|
|
|
4108
4188
|
pubkey?: string | undefined;
|
|
4109
4189
|
mezon_id?: string | undefined;
|
|
4110
4190
|
app_token?: string | undefined;
|
|
4191
|
+
app_url?: string | undefined;
|
|
4192
|
+
is_bot?: boolean | undefined;
|
|
4111
4193
|
} & { [K_115 in Exclude<keyof I["add_clan_user_event"]["user"], keyof UserProfileRedis>]: never; }) | undefined;
|
|
4194
|
+
invitor?: string | undefined;
|
|
4112
4195
|
} & { [K_116 in Exclude<keyof I["add_clan_user_event"], keyof AddClanUserEvent>]: never; }) | undefined;
|
|
4113
4196
|
clan_event_created?: ({
|
|
4114
4197
|
title?: string | undefined;
|
|
@@ -4126,6 +4209,14 @@ export declare const Envelope: {
|
|
|
4126
4209
|
repeat_type?: number | undefined;
|
|
4127
4210
|
creator_id?: string | undefined;
|
|
4128
4211
|
user_id?: string | undefined;
|
|
4212
|
+
is_private?: boolean | undefined;
|
|
4213
|
+
meet_room?: {
|
|
4214
|
+
meet_id?: string | undefined;
|
|
4215
|
+
room_name?: string | undefined;
|
|
4216
|
+
external_link?: string | undefined;
|
|
4217
|
+
creator_id?: string | undefined;
|
|
4218
|
+
event_id?: string | undefined;
|
|
4219
|
+
} | undefined;
|
|
4129
4220
|
} & {
|
|
4130
4221
|
title?: string | undefined;
|
|
4131
4222
|
logo?: string | undefined;
|
|
@@ -4142,7 +4233,21 @@ export declare const Envelope: {
|
|
|
4142
4233
|
repeat_type?: number | undefined;
|
|
4143
4234
|
creator_id?: string | undefined;
|
|
4144
4235
|
user_id?: string | undefined;
|
|
4145
|
-
|
|
4236
|
+
is_private?: boolean | undefined;
|
|
4237
|
+
meet_room?: ({
|
|
4238
|
+
meet_id?: string | undefined;
|
|
4239
|
+
room_name?: string | undefined;
|
|
4240
|
+
external_link?: string | undefined;
|
|
4241
|
+
creator_id?: string | undefined;
|
|
4242
|
+
event_id?: string | undefined;
|
|
4243
|
+
} & {
|
|
4244
|
+
meet_id?: string | undefined;
|
|
4245
|
+
room_name?: string | undefined;
|
|
4246
|
+
external_link?: string | undefined;
|
|
4247
|
+
creator_id?: string | undefined;
|
|
4248
|
+
event_id?: string | undefined;
|
|
4249
|
+
} & { [K_117 in Exclude<keyof I["clan_event_created"]["meet_room"], keyof import("../api/api").GenerateMezonMeetResponse>]: never; }) | undefined;
|
|
4250
|
+
} & { [K_118 in Exclude<keyof I["clan_event_created"], keyof CreateEventRequest>]: never; }) | undefined;
|
|
4146
4251
|
role_assign_event?: ({
|
|
4147
4252
|
ClanId?: string | undefined;
|
|
4148
4253
|
role_id?: string | undefined;
|
|
@@ -4151,16 +4256,16 @@ export declare const Envelope: {
|
|
|
4151
4256
|
} & {
|
|
4152
4257
|
ClanId?: string | undefined;
|
|
4153
4258
|
role_id?: string | undefined;
|
|
4154
|
-
user_ids_assigned?: (string[] & string[] & { [
|
|
4155
|
-
user_ids_removed?: (string[] & string[] & { [
|
|
4156
|
-
} & { [
|
|
4259
|
+
user_ids_assigned?: (string[] & string[] & { [K_119 in Exclude<keyof I["role_assign_event"]["user_ids_assigned"], keyof string[]>]: never; }) | undefined;
|
|
4260
|
+
user_ids_removed?: (string[] & string[] & { [K_120 in Exclude<keyof I["role_assign_event"]["user_ids_removed"], keyof string[]>]: never; }) | undefined;
|
|
4261
|
+
} & { [K_121 in Exclude<keyof I["role_assign_event"], keyof RoleAssignedEvent>]: never; }) | undefined;
|
|
4157
4262
|
clan_deleted_event?: ({
|
|
4158
4263
|
clan_id?: string | undefined;
|
|
4159
4264
|
deletor?: string | undefined;
|
|
4160
4265
|
} & {
|
|
4161
4266
|
clan_id?: string | undefined;
|
|
4162
4267
|
deletor?: string | undefined;
|
|
4163
|
-
} & { [
|
|
4268
|
+
} & { [K_122 in Exclude<keyof I["clan_deleted_event"], keyof ClanDeletedEvent>]: never; }) | undefined;
|
|
4164
4269
|
give_coffee_event?: ({
|
|
4165
4270
|
sender_id?: string | undefined;
|
|
4166
4271
|
receiver_id?: string | undefined;
|
|
@@ -4175,7 +4280,7 @@ export declare const Envelope: {
|
|
|
4175
4280
|
message_ref_id?: string | undefined;
|
|
4176
4281
|
channel_id?: string | undefined;
|
|
4177
4282
|
clan_id?: string | undefined;
|
|
4178
|
-
} & { [
|
|
4283
|
+
} & { [K_123 in Exclude<keyof I["give_coffee_event"], keyof GiveCoffeeEvent>]: never; }) | undefined;
|
|
4179
4284
|
sticker_create_event?: ({
|
|
4180
4285
|
clan_id?: string | undefined;
|
|
4181
4286
|
source?: string | undefined;
|
|
@@ -4194,7 +4299,7 @@ export declare const Envelope: {
|
|
|
4194
4299
|
sticker_id?: string | undefined;
|
|
4195
4300
|
logo?: string | undefined;
|
|
4196
4301
|
clan_name?: string | undefined;
|
|
4197
|
-
} & { [
|
|
4302
|
+
} & { [K_124 in Exclude<keyof I["sticker_create_event"], keyof StickerCreateEvent>]: never; }) | undefined;
|
|
4198
4303
|
sticker_update_event?: ({
|
|
4199
4304
|
shortname?: string | undefined;
|
|
4200
4305
|
sticker_id?: string | undefined;
|
|
@@ -4203,14 +4308,14 @@ export declare const Envelope: {
|
|
|
4203
4308
|
shortname?: string | undefined;
|
|
4204
4309
|
sticker_id?: string | undefined;
|
|
4205
4310
|
user_id?: string | undefined;
|
|
4206
|
-
} & { [
|
|
4311
|
+
} & { [K_125 in Exclude<keyof I["sticker_update_event"], keyof StickerUpdateEvent>]: never; }) | undefined;
|
|
4207
4312
|
sticker_delete_event?: ({
|
|
4208
4313
|
sticker_id?: string | undefined;
|
|
4209
4314
|
user_id?: string | undefined;
|
|
4210
4315
|
} & {
|
|
4211
4316
|
sticker_id?: string | undefined;
|
|
4212
4317
|
user_id?: string | undefined;
|
|
4213
|
-
} & { [
|
|
4318
|
+
} & { [K_126 in Exclude<keyof I["sticker_delete_event"], keyof StickerDeleteEvent>]: never; }) | undefined;
|
|
4214
4319
|
role_event?: ({
|
|
4215
4320
|
role?: {
|
|
4216
4321
|
id?: string | undefined;
|
|
@@ -4251,6 +4356,7 @@ export declare const Envelope: {
|
|
|
4251
4356
|
role_channel_active?: number | undefined;
|
|
4252
4357
|
channel_ids?: string[] | undefined;
|
|
4253
4358
|
max_level_permission?: number | undefined;
|
|
4359
|
+
order_role?: number | undefined;
|
|
4254
4360
|
} | undefined;
|
|
4255
4361
|
status?: number | undefined;
|
|
4256
4362
|
user_id?: string | undefined;
|
|
@@ -4298,6 +4404,7 @@ export declare const Envelope: {
|
|
|
4298
4404
|
role_channel_active?: number | undefined;
|
|
4299
4405
|
channel_ids?: string[] | undefined;
|
|
4300
4406
|
max_level_permission?: number | undefined;
|
|
4407
|
+
order_role?: number | undefined;
|
|
4301
4408
|
} & {
|
|
4302
4409
|
id?: string | undefined;
|
|
4303
4410
|
title?: string | undefined;
|
|
@@ -4346,7 +4453,7 @@ export declare const Envelope: {
|
|
|
4346
4453
|
lang_tag?: string | undefined;
|
|
4347
4454
|
location?: string | undefined;
|
|
4348
4455
|
online?: boolean | undefined;
|
|
4349
|
-
} & { [
|
|
4456
|
+
} & { [K_127 in Exclude<keyof I["role_event"]["role"]["role_user_list"]["role_users"][number], keyof import("../api/api").RoleUserList_RoleUser>]: never; })[] & { [K_128 in Exclude<keyof I["role_event"]["role"]["role_user_list"]["role_users"], keyof {
|
|
4350
4457
|
id?: string | undefined;
|
|
4351
4458
|
username?: string | undefined;
|
|
4352
4459
|
display_name?: string | undefined;
|
|
@@ -4356,7 +4463,7 @@ export declare const Envelope: {
|
|
|
4356
4463
|
online?: boolean | undefined;
|
|
4357
4464
|
}[]>]: never; }) | undefined;
|
|
4358
4465
|
cursor?: string | undefined;
|
|
4359
|
-
} & { [
|
|
4466
|
+
} & { [K_129 in Exclude<keyof I["role_event"]["role"]["role_user_list"], keyof import("../api/api").RoleUserList>]: never; }) | undefined;
|
|
4360
4467
|
permission_list?: ({
|
|
4361
4468
|
permissions?: {
|
|
4362
4469
|
id?: string | undefined;
|
|
@@ -4393,7 +4500,7 @@ export declare const Envelope: {
|
|
|
4393
4500
|
active?: number | undefined;
|
|
4394
4501
|
scope?: number | undefined;
|
|
4395
4502
|
level?: number | undefined;
|
|
4396
|
-
} & { [
|
|
4503
|
+
} & { [K_130 in Exclude<keyof I["role_event"]["role"]["permission_list"]["permissions"][number], keyof import("../api/api").Permission>]: never; })[] & { [K_131 in Exclude<keyof I["role_event"]["role"]["permission_list"]["permissions"], keyof {
|
|
4397
4504
|
id?: string | undefined;
|
|
4398
4505
|
title?: string | undefined;
|
|
4399
4506
|
slug?: string | undefined;
|
|
@@ -4403,18 +4510,19 @@ export declare const Envelope: {
|
|
|
4403
4510
|
level?: number | undefined;
|
|
4404
4511
|
}[]>]: never; }) | undefined;
|
|
4405
4512
|
max_level_permission?: number | undefined;
|
|
4406
|
-
} & { [
|
|
4513
|
+
} & { [K_132 in Exclude<keyof I["role_event"]["role"]["permission_list"], keyof import("../api/api").PermissionList>]: never; }) | undefined;
|
|
4407
4514
|
role_channel_active?: number | undefined;
|
|
4408
|
-
channel_ids?: (string[] & string[] & { [
|
|
4515
|
+
channel_ids?: (string[] & string[] & { [K_133 in Exclude<keyof I["role_event"]["role"]["channel_ids"], keyof string[]>]: never; }) | undefined;
|
|
4409
4516
|
max_level_permission?: number | undefined;
|
|
4410
|
-
|
|
4517
|
+
order_role?: number | undefined;
|
|
4518
|
+
} & { [K_134 in Exclude<keyof I["role_event"]["role"], keyof Role>]: never; }) | undefined;
|
|
4411
4519
|
status?: number | undefined;
|
|
4412
4520
|
user_id?: string | undefined;
|
|
4413
|
-
user_add_ids?: (string[] & string[] & { [
|
|
4414
|
-
user_remove_ids?: (string[] & string[] & { [
|
|
4415
|
-
active_permission_ids?: (string[] & string[] & { [
|
|
4416
|
-
remove_permission_ids?: (string[] & string[] & { [
|
|
4417
|
-
} & { [
|
|
4521
|
+
user_add_ids?: (string[] & string[] & { [K_135 in Exclude<keyof I["role_event"]["user_add_ids"], keyof string[]>]: never; }) | undefined;
|
|
4522
|
+
user_remove_ids?: (string[] & string[] & { [K_136 in Exclude<keyof I["role_event"]["user_remove_ids"], keyof string[]>]: never; }) | undefined;
|
|
4523
|
+
active_permission_ids?: (string[] & string[] & { [K_137 in Exclude<keyof I["role_event"]["active_permission_ids"], keyof string[]>]: never; }) | undefined;
|
|
4524
|
+
remove_permission_ids?: (string[] & string[] & { [K_138 in Exclude<keyof I["role_event"]["remove_permission_ids"], keyof string[]>]: never; }) | undefined;
|
|
4525
|
+
} & { [K_139 in Exclude<keyof I["role_event"], keyof RoleEvent>]: never; }) | undefined;
|
|
4418
4526
|
event_emoji?: ({
|
|
4419
4527
|
id?: string | undefined;
|
|
4420
4528
|
clan_id?: string | undefined;
|
|
@@ -4435,7 +4543,7 @@ export declare const Envelope: {
|
|
|
4435
4543
|
user_id?: string | undefined;
|
|
4436
4544
|
logo?: string | undefined;
|
|
4437
4545
|
clan_name?: string | undefined;
|
|
4438
|
-
} & { [
|
|
4546
|
+
} & { [K_140 in Exclude<keyof I["event_emoji"], keyof EventEmoji>]: never; }) | undefined;
|
|
4439
4547
|
streaming_joined_event?: ({
|
|
4440
4548
|
clan_id?: string | undefined;
|
|
4441
4549
|
clan_name?: string | undefined;
|
|
@@ -4452,7 +4560,7 @@ export declare const Envelope: {
|
|
|
4452
4560
|
user_id?: string | undefined;
|
|
4453
4561
|
streaming_channel_label?: string | undefined;
|
|
4454
4562
|
streaming_channel_id?: string | undefined;
|
|
4455
|
-
} & { [
|
|
4563
|
+
} & { [K_141 in Exclude<keyof I["streaming_joined_event"], keyof StreamingJoinedEvent>]: never; }) | undefined;
|
|
4456
4564
|
streaming_leaved_event?: ({
|
|
4457
4565
|
id?: string | undefined;
|
|
4458
4566
|
clan_id?: string | undefined;
|
|
@@ -4463,7 +4571,7 @@ export declare const Envelope: {
|
|
|
4463
4571
|
clan_id?: string | undefined;
|
|
4464
4572
|
streaming_channel_id?: string | undefined;
|
|
4465
4573
|
streaming_user_id?: string | undefined;
|
|
4466
|
-
} & { [
|
|
4574
|
+
} & { [K_142 in Exclude<keyof I["streaming_leaved_event"], keyof StreamingLeavedEvent>]: never; }) | undefined;
|
|
4467
4575
|
streaming_started_event?: ({
|
|
4468
4576
|
clan_id?: string | undefined;
|
|
4469
4577
|
channel_id?: string | undefined;
|
|
@@ -4474,14 +4582,14 @@ export declare const Envelope: {
|
|
|
4474
4582
|
channel_id?: string | undefined;
|
|
4475
4583
|
streaming_url?: string | undefined;
|
|
4476
4584
|
is_streaming?: boolean | undefined;
|
|
4477
|
-
} & { [
|
|
4585
|
+
} & { [K_143 in Exclude<keyof I["streaming_started_event"], keyof StreamingStartedEvent>]: never; }) | undefined;
|
|
4478
4586
|
streaming_ended_event?: ({
|
|
4479
4587
|
clan_id?: string | undefined;
|
|
4480
4588
|
channel_id?: string | undefined;
|
|
4481
4589
|
} & {
|
|
4482
4590
|
clan_id?: string | undefined;
|
|
4483
4591
|
channel_id?: string | undefined;
|
|
4484
|
-
} & { [
|
|
4592
|
+
} & { [K_144 in Exclude<keyof I["streaming_ended_event"], keyof StreamingEndedEvent>]: never; }) | undefined;
|
|
4485
4593
|
permission_set_event?: ({
|
|
4486
4594
|
caller?: string | undefined;
|
|
4487
4595
|
role_id?: string | undefined;
|
|
@@ -4509,12 +4617,12 @@ export declare const Envelope: {
|
|
|
4509
4617
|
permission_id?: string | undefined;
|
|
4510
4618
|
slug?: string | undefined;
|
|
4511
4619
|
type?: number | undefined;
|
|
4512
|
-
} & { [
|
|
4620
|
+
} & { [K_145 in Exclude<keyof I["permission_set_event"]["permission_updates"][number], keyof PermissionUpdate>]: never; })[] & { [K_146 in Exclude<keyof I["permission_set_event"]["permission_updates"], keyof {
|
|
4513
4621
|
permission_id?: string | undefined;
|
|
4514
4622
|
slug?: string | undefined;
|
|
4515
4623
|
type?: number | undefined;
|
|
4516
4624
|
}[]>]: never; }) | undefined;
|
|
4517
|
-
} & { [
|
|
4625
|
+
} & { [K_147 in Exclude<keyof I["permission_set_event"], keyof PermissionSetEvent>]: never; }) | undefined;
|
|
4518
4626
|
permission_changed_event?: ({
|
|
4519
4627
|
user_id?: string | undefined;
|
|
4520
4628
|
channel_id?: string | undefined;
|
|
@@ -4548,7 +4656,7 @@ export declare const Envelope: {
|
|
|
4548
4656
|
permission_id?: string | undefined;
|
|
4549
4657
|
slug?: string | undefined;
|
|
4550
4658
|
type?: number | undefined;
|
|
4551
|
-
} & { [
|
|
4659
|
+
} & { [K_148 in Exclude<keyof I["permission_changed_event"]["add_permissions"][number], keyof PermissionUpdate>]: never; })[] & { [K_149 in Exclude<keyof I["permission_changed_event"]["add_permissions"], keyof {
|
|
4552
4660
|
permission_id?: string | undefined;
|
|
4553
4661
|
slug?: string | undefined;
|
|
4554
4662
|
type?: number | undefined;
|
|
@@ -4565,7 +4673,7 @@ export declare const Envelope: {
|
|
|
4565
4673
|
permission_id?: string | undefined;
|
|
4566
4674
|
slug?: string | undefined;
|
|
4567
4675
|
type?: number | undefined;
|
|
4568
|
-
} & { [
|
|
4676
|
+
} & { [K_150 in Exclude<keyof I["permission_changed_event"]["remove_permissions"][number], keyof PermissionUpdate>]: never; })[] & { [K_151 in Exclude<keyof I["permission_changed_event"]["remove_permissions"], keyof {
|
|
4569
4677
|
permission_id?: string | undefined;
|
|
4570
4678
|
slug?: string | undefined;
|
|
4571
4679
|
type?: number | undefined;
|
|
@@ -4582,12 +4690,12 @@ export declare const Envelope: {
|
|
|
4582
4690
|
permission_id?: string | undefined;
|
|
4583
4691
|
slug?: string | undefined;
|
|
4584
4692
|
type?: number | undefined;
|
|
4585
|
-
} & { [
|
|
4693
|
+
} & { [K_152 in Exclude<keyof I["permission_changed_event"]["default_permissions"][number], keyof PermissionUpdate>]: never; })[] & { [K_153 in Exclude<keyof I["permission_changed_event"]["default_permissions"], keyof {
|
|
4586
4694
|
permission_id?: string | undefined;
|
|
4587
4695
|
slug?: string | undefined;
|
|
4588
4696
|
type?: number | undefined;
|
|
4589
4697
|
}[]>]: never; }) | undefined;
|
|
4590
|
-
} & { [
|
|
4698
|
+
} & { [K_154 in Exclude<keyof I["permission_changed_event"], keyof PermissionChangedEvent>]: never; }) | undefined;
|
|
4591
4699
|
token_sent_event?: ({
|
|
4592
4700
|
sender_id?: string | undefined;
|
|
4593
4701
|
sender_name?: string | undefined;
|
|
@@ -4604,7 +4712,7 @@ export declare const Envelope: {
|
|
|
4604
4712
|
note?: string | undefined;
|
|
4605
4713
|
extra_attribute?: string | undefined;
|
|
4606
4714
|
transaction_id?: string | undefined;
|
|
4607
|
-
} & { [
|
|
4715
|
+
} & { [K_155 in Exclude<keyof I["token_sent_event"], keyof TokenSentEvent>]: never; }) | undefined;
|
|
4608
4716
|
message_button_clicked?: ({
|
|
4609
4717
|
message_id?: string | undefined;
|
|
4610
4718
|
channel_id?: string | undefined;
|
|
@@ -4619,7 +4727,7 @@ export declare const Envelope: {
|
|
|
4619
4727
|
sender_id?: string | undefined;
|
|
4620
4728
|
user_id?: string | undefined;
|
|
4621
4729
|
extra_data?: string | undefined;
|
|
4622
|
-
} & { [
|
|
4730
|
+
} & { [K_156 in Exclude<keyof I["message_button_clicked"], keyof MessageButtonClicked>]: never; }) | undefined;
|
|
4623
4731
|
unmute_event?: ({
|
|
4624
4732
|
channel_id?: string | undefined;
|
|
4625
4733
|
category_id?: string | undefined;
|
|
@@ -4628,7 +4736,7 @@ export declare const Envelope: {
|
|
|
4628
4736
|
channel_id?: string | undefined;
|
|
4629
4737
|
category_id?: string | undefined;
|
|
4630
4738
|
clan_id?: string | undefined;
|
|
4631
|
-
} & { [
|
|
4739
|
+
} & { [K_157 in Exclude<keyof I["unmute_event"], keyof UnmuteEvent>]: never; }) | undefined;
|
|
4632
4740
|
webrtc_signaling_fwd?: ({
|
|
4633
4741
|
receiver_id?: string | undefined;
|
|
4634
4742
|
data_type?: number | undefined;
|
|
@@ -4641,7 +4749,7 @@ export declare const Envelope: {
|
|
|
4641
4749
|
json_data?: string | undefined;
|
|
4642
4750
|
channel_id?: string | undefined;
|
|
4643
4751
|
caller_id?: string | undefined;
|
|
4644
|
-
} & { [
|
|
4752
|
+
} & { [K_158 in Exclude<keyof I["webrtc_signaling_fwd"], keyof WebrtcSignalingFwd>]: never; }) | undefined;
|
|
4645
4753
|
list_activity?: ({
|
|
4646
4754
|
acts?: {
|
|
4647
4755
|
user_id?: string | undefined;
|
|
@@ -4681,7 +4789,7 @@ export declare const Envelope: {
|
|
|
4681
4789
|
end_time?: Date | undefined;
|
|
4682
4790
|
application_id?: string | undefined;
|
|
4683
4791
|
status?: number | undefined;
|
|
4684
|
-
} & { [
|
|
4792
|
+
} & { [K_159 in Exclude<keyof I["list_activity"]["acts"][number], keyof UserActivity>]: never; })[] & { [K_160 in Exclude<keyof I["list_activity"]["acts"], keyof {
|
|
4685
4793
|
user_id?: string | undefined;
|
|
4686
4794
|
activity_name?: string | undefined;
|
|
4687
4795
|
activity_type?: number | undefined;
|
|
@@ -4691,7 +4799,7 @@ export declare const Envelope: {
|
|
|
4691
4799
|
application_id?: string | undefined;
|
|
4692
4800
|
status?: number | undefined;
|
|
4693
4801
|
}[]>]: never; }) | undefined;
|
|
4694
|
-
} & { [
|
|
4802
|
+
} & { [K_161 in Exclude<keyof I["list_activity"], "acts">]: never; }) | undefined;
|
|
4695
4803
|
dropdown_box_selected?: ({
|
|
4696
4804
|
message_id?: string | undefined;
|
|
4697
4805
|
channel_id?: string | undefined;
|
|
@@ -4705,8 +4813,8 @@ export declare const Envelope: {
|
|
|
4705
4813
|
selectbox_id?: string | undefined;
|
|
4706
4814
|
sender_id?: string | undefined;
|
|
4707
4815
|
user_id?: string | undefined;
|
|
4708
|
-
values?: (string[] & string[] & { [
|
|
4709
|
-
} & { [
|
|
4816
|
+
values?: (string[] & string[] & { [K_162 in Exclude<keyof I["dropdown_box_selected"]["values"], keyof string[]>]: never; }) | undefined;
|
|
4817
|
+
} & { [K_163 in Exclude<keyof I["dropdown_box_selected"], keyof DropdownBoxSelected>]: never; }) | undefined;
|
|
4710
4818
|
incoming_call_push?: ({
|
|
4711
4819
|
receiver_id?: string | undefined;
|
|
4712
4820
|
json_data?: string | undefined;
|
|
@@ -4717,7 +4825,7 @@ export declare const Envelope: {
|
|
|
4717
4825
|
json_data?: string | undefined;
|
|
4718
4826
|
channel_id?: string | undefined;
|
|
4719
4827
|
caller_id?: string | undefined;
|
|
4720
|
-
} & { [
|
|
4828
|
+
} & { [K_164 in Exclude<keyof I["incoming_call_push"], keyof IncomingCallPush>]: never; }) | undefined;
|
|
4721
4829
|
sd_topic_event?: ({
|
|
4722
4830
|
id?: string | undefined;
|
|
4723
4831
|
clan_id?: string | undefined;
|
|
@@ -4730,7 +4838,7 @@ export declare const Envelope: {
|
|
|
4730
4838
|
sender_id?: string | undefined;
|
|
4731
4839
|
content?: string | undefined;
|
|
4732
4840
|
attachment?: string | undefined;
|
|
4733
|
-
|
|
4841
|
+
reference?: string | undefined;
|
|
4734
4842
|
mention?: string | undefined;
|
|
4735
4843
|
reaction?: string | undefined;
|
|
4736
4844
|
repliers?: string[] | undefined;
|
|
@@ -4776,7 +4884,7 @@ export declare const Envelope: {
|
|
|
4776
4884
|
sender_id?: string | undefined;
|
|
4777
4885
|
content?: string | undefined;
|
|
4778
4886
|
attachment?: string | undefined;
|
|
4779
|
-
|
|
4887
|
+
reference?: string | undefined;
|
|
4780
4888
|
mention?: string | undefined;
|
|
4781
4889
|
reaction?: string | undefined;
|
|
4782
4890
|
repliers?: string[] | undefined;
|
|
@@ -4786,11 +4894,11 @@ export declare const Envelope: {
|
|
|
4786
4894
|
sender_id?: string | undefined;
|
|
4787
4895
|
content?: string | undefined;
|
|
4788
4896
|
attachment?: string | undefined;
|
|
4789
|
-
|
|
4897
|
+
reference?: string | undefined;
|
|
4790
4898
|
mention?: string | undefined;
|
|
4791
4899
|
reaction?: string | undefined;
|
|
4792
|
-
repliers?: (string[] & string[] & { [
|
|
4793
|
-
} & { [
|
|
4900
|
+
repliers?: (string[] & string[] & { [K_165 in Exclude<keyof I["sd_topic_event"]["last_sent_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
4901
|
+
} & { [K_166 in Exclude<keyof I["sd_topic_event"]["last_sent_message"], keyof ChannelMessageHeader>]: never; }) | undefined;
|
|
4794
4902
|
message?: ({
|
|
4795
4903
|
clan_id?: string | undefined;
|
|
4796
4904
|
channel_id?: string | undefined;
|
|
@@ -4847,9 +4955,9 @@ export declare const Envelope: {
|
|
|
4847
4955
|
hide_editted?: boolean | undefined;
|
|
4848
4956
|
is_public?: boolean | undefined;
|
|
4849
4957
|
topic_id?: string | undefined;
|
|
4850
|
-
} & { [
|
|
4851
|
-
} & { [
|
|
4852
|
-
follow_event?: ({} & {} & { [
|
|
4958
|
+
} & { [K_167 in Exclude<keyof I["sd_topic_event"]["message"], keyof ChannelMessage>]: never; }) | undefined;
|
|
4959
|
+
} & { [K_168 in Exclude<keyof I["sd_topic_event"], keyof SdTopicEvent>]: never; }) | undefined;
|
|
4960
|
+
follow_event?: ({} & {} & { [K_169 in Exclude<keyof I["follow_event"], never>]: never; }) | undefined;
|
|
4853
4961
|
channel_app_event?: ({
|
|
4854
4962
|
user_id?: string | undefined;
|
|
4855
4963
|
username?: string | undefined;
|
|
@@ -4862,19 +4970,19 @@ export declare const Envelope: {
|
|
|
4862
4970
|
clan_id?: string | undefined;
|
|
4863
4971
|
channel_id?: string | undefined;
|
|
4864
4972
|
action?: number | undefined;
|
|
4865
|
-
} & { [
|
|
4973
|
+
} & { [K_170 in Exclude<keyof I["channel_app_event"], keyof ChannelAppEvent>]: never; }) | undefined;
|
|
4866
4974
|
user_status_event?: ({
|
|
4867
4975
|
user_id?: string | undefined;
|
|
4868
4976
|
custom_status?: string | undefined;
|
|
4869
4977
|
} & {
|
|
4870
4978
|
user_id?: string | undefined;
|
|
4871
4979
|
custom_status?: string | undefined;
|
|
4872
|
-
} & { [
|
|
4980
|
+
} & { [K_171 in Exclude<keyof I["user_status_event"], keyof UserStatusEvent>]: never; }) | undefined;
|
|
4873
4981
|
remove_friend?: ({
|
|
4874
4982
|
user_id?: string | undefined;
|
|
4875
4983
|
} & {
|
|
4876
4984
|
user_id?: string | undefined;
|
|
4877
|
-
} & { [
|
|
4985
|
+
} & { [K_172 in Exclude<keyof I["remove_friend"], "user_id">]: never; }) | undefined;
|
|
4878
4986
|
webhook_event?: ({
|
|
4879
4987
|
id?: string | undefined;
|
|
4880
4988
|
webhook_name?: string | undefined;
|
|
@@ -4897,7 +5005,7 @@ export declare const Envelope: {
|
|
|
4897
5005
|
update_time?: string | undefined;
|
|
4898
5006
|
avatar?: string | undefined;
|
|
4899
5007
|
status?: number | undefined;
|
|
4900
|
-
} & { [
|
|
5008
|
+
} & { [K_173 in Exclude<keyof I["webhook_event"], keyof Webhook>]: never; }) | undefined;
|
|
4901
5009
|
noti_user_channel?: ({
|
|
4902
5010
|
id?: string | undefined;
|
|
4903
5011
|
notification_setting_type?: number | undefined;
|
|
@@ -4910,7 +5018,7 @@ export declare const Envelope: {
|
|
|
4910
5018
|
time_mute?: Date | undefined;
|
|
4911
5019
|
active?: number | undefined;
|
|
4912
5020
|
channel_id?: string | undefined;
|
|
4913
|
-
} & { [
|
|
5021
|
+
} & { [K_174 in Exclude<keyof I["noti_user_channel"], keyof NotificationUserChannel>]: never; }) | undefined;
|
|
4914
5022
|
join_channel_app_data?: ({
|
|
4915
5023
|
user_id?: string | undefined;
|
|
4916
5024
|
username?: string | undefined;
|
|
@@ -4919,7 +5027,7 @@ export declare const Envelope: {
|
|
|
4919
5027
|
user_id?: string | undefined;
|
|
4920
5028
|
username?: string | undefined;
|
|
4921
5029
|
hash?: string | undefined;
|
|
4922
|
-
} & { [
|
|
5030
|
+
} & { [K_175 in Exclude<keyof I["join_channel_app_data"], keyof JoinChannelAppData>]: never; }) | undefined;
|
|
4923
5031
|
canvas_event?: ({
|
|
4924
5032
|
id?: string | undefined;
|
|
4925
5033
|
title?: string | undefined;
|
|
@@ -4938,7 +5046,7 @@ export declare const Envelope: {
|
|
|
4938
5046
|
is_default?: boolean | undefined;
|
|
4939
5047
|
channel_id?: string | undefined;
|
|
4940
5048
|
status?: number | undefined;
|
|
4941
|
-
} & { [
|
|
5049
|
+
} & { [K_176 in Exclude<keyof I["canvas_event"], keyof ChannelCanvas>]: never; }) | undefined;
|
|
4942
5050
|
unpin_message_event?: ({
|
|
4943
5051
|
id?: string | undefined;
|
|
4944
5052
|
message_id?: string | undefined;
|
|
@@ -4949,7 +5057,7 @@ export declare const Envelope: {
|
|
|
4949
5057
|
message_id?: string | undefined;
|
|
4950
5058
|
channel_id?: string | undefined;
|
|
4951
5059
|
clan_id?: string | undefined;
|
|
4952
|
-
} & { [
|
|
5060
|
+
} & { [K_177 in Exclude<keyof I["unpin_message_event"], keyof UnpinMessageEvent>]: never; }) | undefined;
|
|
4953
5061
|
category_event?: ({
|
|
4954
5062
|
creator_id?: string | undefined;
|
|
4955
5063
|
clan_id?: string | undefined;
|
|
@@ -4962,8 +5070,24 @@ export declare const Envelope: {
|
|
|
4962
5070
|
category_name?: string | undefined;
|
|
4963
5071
|
id?: string | undefined;
|
|
4964
5072
|
status?: number | undefined;
|
|
4965
|
-
} & { [
|
|
4966
|
-
|
|
5073
|
+
} & { [K_178 in Exclude<keyof I["category_event"], keyof CategoryEvent>]: never; }) | undefined;
|
|
5074
|
+
handle_participant_meet_state_event?: ({
|
|
5075
|
+
clan_id?: string | undefined;
|
|
5076
|
+
channel_id?: string | undefined;
|
|
5077
|
+
display_name?: string | undefined;
|
|
5078
|
+
state?: number | undefined;
|
|
5079
|
+
} & {
|
|
5080
|
+
clan_id?: string | undefined;
|
|
5081
|
+
channel_id?: string | undefined;
|
|
5082
|
+
display_name?: string | undefined;
|
|
5083
|
+
state?: number | undefined;
|
|
5084
|
+
} & { [K_179 in Exclude<keyof I["handle_participant_meet_state_event"], keyof HandleParticipantMeetStateEvent>]: never; }) | undefined;
|
|
5085
|
+
delete_account_event?: ({
|
|
5086
|
+
user_id?: string | undefined;
|
|
5087
|
+
} & {
|
|
5088
|
+
user_id?: string | undefined;
|
|
5089
|
+
} & { [K_180 in Exclude<keyof I["delete_account_event"], "user_id">]: never; }) | undefined;
|
|
5090
|
+
} & { [K_181 in Exclude<keyof I, keyof Envelope>]: never; }>(base?: I | undefined): Envelope;
|
|
4967
5091
|
fromPartial<I_1 extends {
|
|
4968
5092
|
cid?: string | undefined;
|
|
4969
5093
|
channel?: {
|
|
@@ -5189,7 +5313,7 @@ export declare const Envelope: {
|
|
|
5189
5313
|
sender_id?: string | undefined;
|
|
5190
5314
|
content?: string | undefined;
|
|
5191
5315
|
attachment?: string | undefined;
|
|
5192
|
-
|
|
5316
|
+
reference?: string | undefined;
|
|
5193
5317
|
mention?: string | undefined;
|
|
5194
5318
|
reaction?: string | undefined;
|
|
5195
5319
|
repliers?: string[] | undefined;
|
|
@@ -5200,7 +5324,7 @@ export declare const Envelope: {
|
|
|
5200
5324
|
sender_id?: string | undefined;
|
|
5201
5325
|
content?: string | undefined;
|
|
5202
5326
|
attachment?: string | undefined;
|
|
5203
|
-
|
|
5327
|
+
reference?: string | undefined;
|
|
5204
5328
|
mention?: string | undefined;
|
|
5205
5329
|
reaction?: string | undefined;
|
|
5206
5330
|
repliers?: string[] | undefined;
|
|
@@ -5217,7 +5341,7 @@ export declare const Envelope: {
|
|
|
5217
5341
|
metadata?: string[] | undefined;
|
|
5218
5342
|
about_me?: string[] | undefined;
|
|
5219
5343
|
clan_name?: string | undefined;
|
|
5220
|
-
|
|
5344
|
+
app_id?: string | undefined;
|
|
5221
5345
|
is_mute?: boolean | undefined;
|
|
5222
5346
|
age_restricted?: number | undefined;
|
|
5223
5347
|
topic?: string | undefined;
|
|
@@ -5327,6 +5451,8 @@ export declare const Envelope: {
|
|
|
5327
5451
|
sender_id?: string | undefined;
|
|
5328
5452
|
mode?: number | undefined;
|
|
5329
5453
|
is_public?: boolean | undefined;
|
|
5454
|
+
sender_username?: string | undefined;
|
|
5455
|
+
sender_display_name?: string | undefined;
|
|
5330
5456
|
} | undefined;
|
|
5331
5457
|
last_seen_message_event?: {
|
|
5332
5458
|
clan_id?: string | undefined;
|
|
@@ -5390,7 +5516,7 @@ export declare const Envelope: {
|
|
|
5390
5516
|
channel_private?: number | undefined;
|
|
5391
5517
|
channel_type?: number | undefined;
|
|
5392
5518
|
status?: number | undefined;
|
|
5393
|
-
|
|
5519
|
+
app_id?: string | undefined;
|
|
5394
5520
|
clan_name?: string | undefined;
|
|
5395
5521
|
} | undefined;
|
|
5396
5522
|
channel_deleted_event?: {
|
|
@@ -5412,7 +5538,7 @@ export declare const Envelope: {
|
|
|
5412
5538
|
meeting_code?: string | undefined;
|
|
5413
5539
|
is_error?: boolean | undefined;
|
|
5414
5540
|
channel_private?: boolean | undefined;
|
|
5415
|
-
|
|
5541
|
+
app_id?: string | undefined;
|
|
5416
5542
|
e2ee?: number | undefined;
|
|
5417
5543
|
topic?: string | undefined;
|
|
5418
5544
|
age_restricted?: number | undefined;
|
|
@@ -5455,7 +5581,7 @@ export declare const Envelope: {
|
|
|
5455
5581
|
sender_id?: string | undefined;
|
|
5456
5582
|
content?: string | undefined;
|
|
5457
5583
|
attachment?: string | undefined;
|
|
5458
|
-
|
|
5584
|
+
reference?: string | undefined;
|
|
5459
5585
|
mention?: string | undefined;
|
|
5460
5586
|
reaction?: string | undefined;
|
|
5461
5587
|
repliers?: string[] | undefined;
|
|
@@ -5466,7 +5592,7 @@ export declare const Envelope: {
|
|
|
5466
5592
|
sender_id?: string | undefined;
|
|
5467
5593
|
content?: string | undefined;
|
|
5468
5594
|
attachment?: string | undefined;
|
|
5469
|
-
|
|
5595
|
+
reference?: string | undefined;
|
|
5470
5596
|
mention?: string | undefined;
|
|
5471
5597
|
reaction?: string | undefined;
|
|
5472
5598
|
repliers?: string[] | undefined;
|
|
@@ -5483,7 +5609,7 @@ export declare const Envelope: {
|
|
|
5483
5609
|
metadata?: string[] | undefined;
|
|
5484
5610
|
about_me?: string[] | undefined;
|
|
5485
5611
|
clan_name?: string | undefined;
|
|
5486
|
-
|
|
5612
|
+
app_id?: string | undefined;
|
|
5487
5613
|
is_mute?: boolean | undefined;
|
|
5488
5614
|
age_restricted?: number | undefined;
|
|
5489
5615
|
topic?: string | undefined;
|
|
@@ -5510,6 +5636,8 @@ export declare const Envelope: {
|
|
|
5510
5636
|
pubkey?: string | undefined;
|
|
5511
5637
|
mezon_id?: string | undefined;
|
|
5512
5638
|
app_token?: string | undefined;
|
|
5639
|
+
app_url?: string | undefined;
|
|
5640
|
+
is_bot?: boolean | undefined;
|
|
5513
5641
|
}[] | undefined;
|
|
5514
5642
|
status?: string | undefined;
|
|
5515
5643
|
clan_id?: string | undefined;
|
|
@@ -5533,6 +5661,8 @@ export declare const Envelope: {
|
|
|
5533
5661
|
pubkey?: string | undefined;
|
|
5534
5662
|
mezon_id?: string | undefined;
|
|
5535
5663
|
app_token?: string | undefined;
|
|
5664
|
+
app_url?: string | undefined;
|
|
5665
|
+
is_bot?: boolean | undefined;
|
|
5536
5666
|
} | undefined;
|
|
5537
5667
|
create_time_second?: number | undefined;
|
|
5538
5668
|
active?: number | undefined;
|
|
@@ -5600,7 +5730,10 @@ export declare const Envelope: {
|
|
|
5600
5730
|
pubkey?: string | undefined;
|
|
5601
5731
|
mezon_id?: string | undefined;
|
|
5602
5732
|
app_token?: string | undefined;
|
|
5733
|
+
app_url?: string | undefined;
|
|
5734
|
+
is_bot?: boolean | undefined;
|
|
5603
5735
|
} | undefined;
|
|
5736
|
+
invitor?: string | undefined;
|
|
5604
5737
|
} | undefined;
|
|
5605
5738
|
clan_event_created?: {
|
|
5606
5739
|
title?: string | undefined;
|
|
@@ -5618,6 +5751,14 @@ export declare const Envelope: {
|
|
|
5618
5751
|
repeat_type?: number | undefined;
|
|
5619
5752
|
creator_id?: string | undefined;
|
|
5620
5753
|
user_id?: string | undefined;
|
|
5754
|
+
is_private?: boolean | undefined;
|
|
5755
|
+
meet_room?: {
|
|
5756
|
+
meet_id?: string | undefined;
|
|
5757
|
+
room_name?: string | undefined;
|
|
5758
|
+
external_link?: string | undefined;
|
|
5759
|
+
creator_id?: string | undefined;
|
|
5760
|
+
event_id?: string | undefined;
|
|
5761
|
+
} | undefined;
|
|
5621
5762
|
} | undefined;
|
|
5622
5763
|
role_assign_event?: {
|
|
5623
5764
|
ClanId?: string | undefined;
|
|
@@ -5696,6 +5837,7 @@ export declare const Envelope: {
|
|
|
5696
5837
|
role_channel_active?: number | undefined;
|
|
5697
5838
|
channel_ids?: string[] | undefined;
|
|
5698
5839
|
max_level_permission?: number | undefined;
|
|
5840
|
+
order_role?: number | undefined;
|
|
5699
5841
|
} | undefined;
|
|
5700
5842
|
status?: number | undefined;
|
|
5701
5843
|
user_id?: string | undefined;
|
|
@@ -5837,7 +5979,7 @@ export declare const Envelope: {
|
|
|
5837
5979
|
sender_id?: string | undefined;
|
|
5838
5980
|
content?: string | undefined;
|
|
5839
5981
|
attachment?: string | undefined;
|
|
5840
|
-
|
|
5982
|
+
reference?: string | undefined;
|
|
5841
5983
|
mention?: string | undefined;
|
|
5842
5984
|
reaction?: string | undefined;
|
|
5843
5985
|
repliers?: string[] | undefined;
|
|
@@ -5934,6 +6076,15 @@ export declare const Envelope: {
|
|
|
5934
6076
|
id?: string | undefined;
|
|
5935
6077
|
status?: number | undefined;
|
|
5936
6078
|
} | undefined;
|
|
6079
|
+
handle_participant_meet_state_event?: {
|
|
6080
|
+
clan_id?: string | undefined;
|
|
6081
|
+
channel_id?: string | undefined;
|
|
6082
|
+
display_name?: string | undefined;
|
|
6083
|
+
state?: number | undefined;
|
|
6084
|
+
} | undefined;
|
|
6085
|
+
delete_account_event?: {
|
|
6086
|
+
user_id?: string | undefined;
|
|
6087
|
+
} | undefined;
|
|
5937
6088
|
} & {
|
|
5938
6089
|
cid?: string | undefined;
|
|
5939
6090
|
channel?: ({
|
|
@@ -5985,7 +6136,7 @@ export declare const Envelope: {
|
|
|
5985
6136
|
status?: string | undefined;
|
|
5986
6137
|
is_mobile?: boolean | undefined;
|
|
5987
6138
|
metadata?: string | undefined;
|
|
5988
|
-
} & { [
|
|
6139
|
+
} & { [K_182 in Exclude<keyof I_1["channel"]["presences"][number], keyof UserPresence>]: never; })[] & { [K_183 in Exclude<keyof I_1["channel"]["presences"], keyof {
|
|
5989
6140
|
user_id?: string | undefined;
|
|
5990
6141
|
session_id?: string | undefined;
|
|
5991
6142
|
username?: string | undefined;
|
|
@@ -6010,16 +6161,16 @@ export declare const Envelope: {
|
|
|
6010
6161
|
status?: string | undefined;
|
|
6011
6162
|
is_mobile?: boolean | undefined;
|
|
6012
6163
|
metadata?: string | undefined;
|
|
6013
|
-
} & { [
|
|
6164
|
+
} & { [K_184 in Exclude<keyof I_1["channel"]["self"], keyof UserPresence>]: never; }) | undefined;
|
|
6014
6165
|
chanel_label?: string | undefined;
|
|
6015
6166
|
clan_logo?: string | undefined;
|
|
6016
6167
|
category_name?: string | undefined;
|
|
6017
|
-
} & { [
|
|
6168
|
+
} & { [K_185 in Exclude<keyof I_1["channel"], keyof Channel>]: never; }) | undefined;
|
|
6018
6169
|
clan_join?: ({
|
|
6019
6170
|
clan_id?: string | undefined;
|
|
6020
6171
|
} & {
|
|
6021
6172
|
clan_id?: string | undefined;
|
|
6022
|
-
} & { [
|
|
6173
|
+
} & { [K_186 in Exclude<keyof I_1["clan_join"], "clan_id">]: never; }) | undefined;
|
|
6023
6174
|
channel_join?: ({
|
|
6024
6175
|
clan_id?: string | undefined;
|
|
6025
6176
|
channel_id?: string | undefined;
|
|
@@ -6030,7 +6181,7 @@ export declare const Envelope: {
|
|
|
6030
6181
|
channel_id?: string | undefined;
|
|
6031
6182
|
channel_type?: number | undefined;
|
|
6032
6183
|
is_public?: boolean | undefined;
|
|
6033
|
-
} & { [
|
|
6184
|
+
} & { [K_187 in Exclude<keyof I_1["channel_join"], keyof ChannelJoin>]: never; }) | undefined;
|
|
6034
6185
|
channel_leave?: ({
|
|
6035
6186
|
clan_id?: string | undefined;
|
|
6036
6187
|
channel_id?: string | undefined;
|
|
@@ -6041,7 +6192,7 @@ export declare const Envelope: {
|
|
|
6041
6192
|
channel_id?: string | undefined;
|
|
6042
6193
|
channel_type?: number | undefined;
|
|
6043
6194
|
is_public?: boolean | undefined;
|
|
6044
|
-
} & { [
|
|
6195
|
+
} & { [K_188 in Exclude<keyof I_1["channel_leave"], keyof ChannelLeave>]: never; }) | undefined;
|
|
6045
6196
|
channel_message?: ({
|
|
6046
6197
|
clan_id?: string | undefined;
|
|
6047
6198
|
channel_id?: string | undefined;
|
|
@@ -6098,7 +6249,7 @@ export declare const Envelope: {
|
|
|
6098
6249
|
hide_editted?: boolean | undefined;
|
|
6099
6250
|
is_public?: boolean | undefined;
|
|
6100
6251
|
topic_id?: string | undefined;
|
|
6101
|
-
} & { [
|
|
6252
|
+
} & { [K_189 in Exclude<keyof I_1["channel_message"], keyof ChannelMessage>]: never; }) | undefined;
|
|
6102
6253
|
channel_message_ack?: ({
|
|
6103
6254
|
channel_id?: string | undefined;
|
|
6104
6255
|
message_id?: string | undefined;
|
|
@@ -6119,7 +6270,7 @@ export declare const Envelope: {
|
|
|
6119
6270
|
persistent?: boolean | undefined;
|
|
6120
6271
|
clan_logo?: string | undefined;
|
|
6121
6272
|
category_name?: string | undefined;
|
|
6122
|
-
} & { [
|
|
6273
|
+
} & { [K_190 in Exclude<keyof I_1["channel_message_ack"], keyof ChannelMessageAck>]: never; }) | undefined;
|
|
6123
6274
|
channel_message_send?: ({
|
|
6124
6275
|
clan_id?: string | undefined;
|
|
6125
6276
|
channel_id?: string | undefined;
|
|
@@ -6193,7 +6344,7 @@ export declare const Envelope: {
|
|
|
6193
6344
|
create_time?: Date | undefined;
|
|
6194
6345
|
s?: number | undefined;
|
|
6195
6346
|
e?: number | undefined;
|
|
6196
|
-
} & { [
|
|
6347
|
+
} & { [K_191 in Exclude<keyof I_1["channel_message_send"]["mentions"][number], keyof MessageMention>]: never; })[] & { [K_192 in Exclude<keyof I_1["channel_message_send"]["mentions"], keyof {
|
|
6197
6348
|
id?: string | undefined;
|
|
6198
6349
|
user_id?: string | undefined;
|
|
6199
6350
|
username?: string | undefined;
|
|
@@ -6227,7 +6378,7 @@ export declare const Envelope: {
|
|
|
6227
6378
|
width?: number | undefined;
|
|
6228
6379
|
height?: number | undefined;
|
|
6229
6380
|
thumbnail?: string | undefined;
|
|
6230
|
-
} & { [
|
|
6381
|
+
} & { [K_193 in Exclude<keyof I_1["channel_message_send"]["attachments"][number], keyof MessageAttachment>]: never; })[] & { [K_194 in Exclude<keyof I_1["channel_message_send"]["attachments"], keyof {
|
|
6231
6382
|
filename?: string | undefined;
|
|
6232
6383
|
size?: number | undefined;
|
|
6233
6384
|
url?: string | undefined;
|
|
@@ -6269,7 +6420,7 @@ export declare const Envelope: {
|
|
|
6269
6420
|
mesages_sender_avatar?: string | undefined;
|
|
6270
6421
|
message_sender_clan_nick?: string | undefined;
|
|
6271
6422
|
message_sender_display_name?: string | undefined;
|
|
6272
|
-
} & { [
|
|
6423
|
+
} & { [K_195 in Exclude<keyof I_1["channel_message_send"]["references"][number], keyof MessageRef>]: never; })[] & { [K_196 in Exclude<keyof I_1["channel_message_send"]["references"], keyof {
|
|
6273
6424
|
message_id?: string | undefined;
|
|
6274
6425
|
message_ref_id?: string | undefined;
|
|
6275
6426
|
content?: string | undefined;
|
|
@@ -6288,7 +6439,7 @@ export declare const Envelope: {
|
|
|
6288
6439
|
is_public?: boolean | undefined;
|
|
6289
6440
|
code?: number | undefined;
|
|
6290
6441
|
topic_id?: string | undefined;
|
|
6291
|
-
} & { [
|
|
6442
|
+
} & { [K_197 in Exclude<keyof I_1["channel_message_send"], keyof ChannelMessageSend>]: never; }) | undefined;
|
|
6292
6443
|
channel_message_update?: ({
|
|
6293
6444
|
clan_id?: string | undefined;
|
|
6294
6445
|
channel_id?: string | undefined;
|
|
@@ -6350,7 +6501,7 @@ export declare const Envelope: {
|
|
|
6350
6501
|
create_time?: Date | undefined;
|
|
6351
6502
|
s?: number | undefined;
|
|
6352
6503
|
e?: number | undefined;
|
|
6353
|
-
} & { [
|
|
6504
|
+
} & { [K_198 in Exclude<keyof I_1["channel_message_update"]["mentions"][number], keyof MessageMention>]: never; })[] & { [K_199 in Exclude<keyof I_1["channel_message_update"]["mentions"], keyof {
|
|
6354
6505
|
id?: string | undefined;
|
|
6355
6506
|
user_id?: string | undefined;
|
|
6356
6507
|
username?: string | undefined;
|
|
@@ -6384,7 +6535,7 @@ export declare const Envelope: {
|
|
|
6384
6535
|
width?: number | undefined;
|
|
6385
6536
|
height?: number | undefined;
|
|
6386
6537
|
thumbnail?: string | undefined;
|
|
6387
|
-
} & { [
|
|
6538
|
+
} & { [K_200 in Exclude<keyof I_1["channel_message_update"]["attachments"][number], keyof MessageAttachment>]: never; })[] & { [K_201 in Exclude<keyof I_1["channel_message_update"]["attachments"], keyof {
|
|
6388
6539
|
filename?: string | undefined;
|
|
6389
6540
|
size?: number | undefined;
|
|
6390
6541
|
url?: string | undefined;
|
|
@@ -6398,7 +6549,7 @@ export declare const Envelope: {
|
|
|
6398
6549
|
hide_editted?: boolean | undefined;
|
|
6399
6550
|
topic_id?: string | undefined;
|
|
6400
6551
|
is_update_msg_topic?: boolean | undefined;
|
|
6401
|
-
} & { [
|
|
6552
|
+
} & { [K_202 in Exclude<keyof I_1["channel_message_update"], keyof ChannelMessageUpdate>]: never; }) | undefined;
|
|
6402
6553
|
channel_message_remove?: ({
|
|
6403
6554
|
clan_id?: string | undefined;
|
|
6404
6555
|
channel_id?: string | undefined;
|
|
@@ -6415,7 +6566,7 @@ export declare const Envelope: {
|
|
|
6415
6566
|
is_public?: boolean | undefined;
|
|
6416
6567
|
has_attachment?: boolean | undefined;
|
|
6417
6568
|
topic_id?: string | undefined;
|
|
6418
|
-
} & { [
|
|
6569
|
+
} & { [K_203 in Exclude<keyof I_1["channel_message_remove"], keyof ChannelMessageRemove>]: never; }) | undefined;
|
|
6419
6570
|
channel_presence_event?: ({
|
|
6420
6571
|
channel_id?: string | undefined;
|
|
6421
6572
|
joins?: {
|
|
@@ -6465,7 +6616,7 @@ export declare const Envelope: {
|
|
|
6465
6616
|
status?: string | undefined;
|
|
6466
6617
|
is_mobile?: boolean | undefined;
|
|
6467
6618
|
metadata?: string | undefined;
|
|
6468
|
-
} & { [
|
|
6619
|
+
} & { [K_204 in Exclude<keyof I_1["channel_presence_event"]["joins"][number], keyof UserPresence>]: never; })[] & { [K_205 in Exclude<keyof I_1["channel_presence_event"]["joins"], keyof {
|
|
6469
6620
|
user_id?: string | undefined;
|
|
6470
6621
|
session_id?: string | undefined;
|
|
6471
6622
|
username?: string | undefined;
|
|
@@ -6498,7 +6649,7 @@ export declare const Envelope: {
|
|
|
6498
6649
|
status?: string | undefined;
|
|
6499
6650
|
is_mobile?: boolean | undefined;
|
|
6500
6651
|
metadata?: string | undefined;
|
|
6501
|
-
} & { [
|
|
6652
|
+
} & { [K_206 in Exclude<keyof I_1["channel_presence_event"]["leaves"][number], keyof UserPresence>]: never; })[] & { [K_207 in Exclude<keyof I_1["channel_presence_event"]["leaves"], keyof {
|
|
6502
6653
|
user_id?: string | undefined;
|
|
6503
6654
|
session_id?: string | undefined;
|
|
6504
6655
|
username?: string | undefined;
|
|
@@ -6510,7 +6661,7 @@ export declare const Envelope: {
|
|
|
6510
6661
|
clan_logo?: string | undefined;
|
|
6511
6662
|
category_name?: string | undefined;
|
|
6512
6663
|
mode?: number | undefined;
|
|
6513
|
-
} & { [
|
|
6664
|
+
} & { [K_208 in Exclude<keyof I_1["channel_presence_event"], keyof ChannelPresenceEvent>]: never; }) | undefined;
|
|
6514
6665
|
error?: ({
|
|
6515
6666
|
code?: number | undefined;
|
|
6516
6667
|
message?: string | undefined;
|
|
@@ -6524,8 +6675,8 @@ export declare const Envelope: {
|
|
|
6524
6675
|
[x: string]: string | undefined;
|
|
6525
6676
|
} & {
|
|
6526
6677
|
[x: string]: string | undefined;
|
|
6527
|
-
} & { [
|
|
6528
|
-
} & { [
|
|
6678
|
+
} & { [K_209 in Exclude<keyof I_1["error"]["context"], string | number>]: never; }) | undefined;
|
|
6679
|
+
} & { [K_210 in Exclude<keyof I_1["error"], keyof Error>]: never; }) | undefined;
|
|
6529
6680
|
notifications?: ({
|
|
6530
6681
|
notifications?: {
|
|
6531
6682
|
id?: string | undefined;
|
|
@@ -6557,7 +6708,7 @@ export declare const Envelope: {
|
|
|
6557
6708
|
sender_id?: string | undefined;
|
|
6558
6709
|
content?: string | undefined;
|
|
6559
6710
|
attachment?: string | undefined;
|
|
6560
|
-
|
|
6711
|
+
reference?: string | undefined;
|
|
6561
6712
|
mention?: string | undefined;
|
|
6562
6713
|
reaction?: string | undefined;
|
|
6563
6714
|
repliers?: string[] | undefined;
|
|
@@ -6568,7 +6719,7 @@ export declare const Envelope: {
|
|
|
6568
6719
|
sender_id?: string | undefined;
|
|
6569
6720
|
content?: string | undefined;
|
|
6570
6721
|
attachment?: string | undefined;
|
|
6571
|
-
|
|
6722
|
+
reference?: string | undefined;
|
|
6572
6723
|
mention?: string | undefined;
|
|
6573
6724
|
reaction?: string | undefined;
|
|
6574
6725
|
repliers?: string[] | undefined;
|
|
@@ -6585,7 +6736,7 @@ export declare const Envelope: {
|
|
|
6585
6736
|
metadata?: string[] | undefined;
|
|
6586
6737
|
about_me?: string[] | undefined;
|
|
6587
6738
|
clan_name?: string | undefined;
|
|
6588
|
-
|
|
6739
|
+
app_id?: string | undefined;
|
|
6589
6740
|
is_mute?: boolean | undefined;
|
|
6590
6741
|
age_restricted?: number | undefined;
|
|
6591
6742
|
topic?: string | undefined;
|
|
@@ -6626,7 +6777,7 @@ export declare const Envelope: {
|
|
|
6626
6777
|
sender_id?: string | undefined;
|
|
6627
6778
|
content?: string | undefined;
|
|
6628
6779
|
attachment?: string | undefined;
|
|
6629
|
-
|
|
6780
|
+
reference?: string | undefined;
|
|
6630
6781
|
mention?: string | undefined;
|
|
6631
6782
|
reaction?: string | undefined;
|
|
6632
6783
|
repliers?: string[] | undefined;
|
|
@@ -6637,7 +6788,7 @@ export declare const Envelope: {
|
|
|
6637
6788
|
sender_id?: string | undefined;
|
|
6638
6789
|
content?: string | undefined;
|
|
6639
6790
|
attachment?: string | undefined;
|
|
6640
|
-
|
|
6791
|
+
reference?: string | undefined;
|
|
6641
6792
|
mention?: string | undefined;
|
|
6642
6793
|
reaction?: string | undefined;
|
|
6643
6794
|
repliers?: string[] | undefined;
|
|
@@ -6654,7 +6805,7 @@ export declare const Envelope: {
|
|
|
6654
6805
|
metadata?: string[] | undefined;
|
|
6655
6806
|
about_me?: string[] | undefined;
|
|
6656
6807
|
clan_name?: string | undefined;
|
|
6657
|
-
|
|
6808
|
+
app_id?: string | undefined;
|
|
6658
6809
|
is_mute?: boolean | undefined;
|
|
6659
6810
|
age_restricted?: number | undefined;
|
|
6660
6811
|
topic?: string | undefined;
|
|
@@ -6693,7 +6844,7 @@ export declare const Envelope: {
|
|
|
6693
6844
|
sender_id?: string | undefined;
|
|
6694
6845
|
content?: string | undefined;
|
|
6695
6846
|
attachment?: string | undefined;
|
|
6696
|
-
|
|
6847
|
+
reference?: string | undefined;
|
|
6697
6848
|
mention?: string | undefined;
|
|
6698
6849
|
reaction?: string | undefined;
|
|
6699
6850
|
repliers?: string[] | undefined;
|
|
@@ -6704,7 +6855,7 @@ export declare const Envelope: {
|
|
|
6704
6855
|
sender_id?: string | undefined;
|
|
6705
6856
|
content?: string | undefined;
|
|
6706
6857
|
attachment?: string | undefined;
|
|
6707
|
-
|
|
6858
|
+
reference?: string | undefined;
|
|
6708
6859
|
mention?: string | undefined;
|
|
6709
6860
|
reaction?: string | undefined;
|
|
6710
6861
|
repliers?: string[] | undefined;
|
|
@@ -6721,7 +6872,7 @@ export declare const Envelope: {
|
|
|
6721
6872
|
metadata?: string[] | undefined;
|
|
6722
6873
|
about_me?: string[] | undefined;
|
|
6723
6874
|
clan_name?: string | undefined;
|
|
6724
|
-
|
|
6875
|
+
app_id?: string | undefined;
|
|
6725
6876
|
is_mute?: boolean | undefined;
|
|
6726
6877
|
age_restricted?: number | undefined;
|
|
6727
6878
|
topic?: string | undefined;
|
|
@@ -6760,7 +6911,7 @@ export declare const Envelope: {
|
|
|
6760
6911
|
sender_id?: string | undefined;
|
|
6761
6912
|
content?: string | undefined;
|
|
6762
6913
|
attachment?: string | undefined;
|
|
6763
|
-
|
|
6914
|
+
reference?: string | undefined;
|
|
6764
6915
|
mention?: string | undefined;
|
|
6765
6916
|
reaction?: string | undefined;
|
|
6766
6917
|
repliers?: string[] | undefined;
|
|
@@ -6771,7 +6922,7 @@ export declare const Envelope: {
|
|
|
6771
6922
|
sender_id?: string | undefined;
|
|
6772
6923
|
content?: string | undefined;
|
|
6773
6924
|
attachment?: string | undefined;
|
|
6774
|
-
|
|
6925
|
+
reference?: string | undefined;
|
|
6775
6926
|
mention?: string | undefined;
|
|
6776
6927
|
reaction?: string | undefined;
|
|
6777
6928
|
repliers?: string[] | undefined;
|
|
@@ -6788,7 +6939,7 @@ export declare const Envelope: {
|
|
|
6788
6939
|
metadata?: string[] | undefined;
|
|
6789
6940
|
about_me?: string[] | undefined;
|
|
6790
6941
|
clan_name?: string | undefined;
|
|
6791
|
-
|
|
6942
|
+
app_id?: string | undefined;
|
|
6792
6943
|
is_mute?: boolean | undefined;
|
|
6793
6944
|
age_restricted?: number | undefined;
|
|
6794
6945
|
topic?: string | undefined;
|
|
@@ -6804,15 +6955,15 @@ export declare const Envelope: {
|
|
|
6804
6955
|
creator_id?: string | undefined;
|
|
6805
6956
|
channel_label?: string | undefined;
|
|
6806
6957
|
channel_private?: number | undefined;
|
|
6807
|
-
channel_avatar?: (string[] & string[] & { [
|
|
6808
|
-
user_id?: (string[] & string[] & { [
|
|
6958
|
+
channel_avatar?: (string[] & string[] & { [K_211 in Exclude<keyof I_1["notifications"]["notifications"][number]["channel"]["channel_avatar"], keyof string[]>]: never; }) | undefined;
|
|
6959
|
+
user_id?: (string[] & string[] & { [K_212 in Exclude<keyof I_1["notifications"]["notifications"][number]["channel"]["user_id"], keyof string[]>]: never; }) | undefined;
|
|
6809
6960
|
last_sent_message?: ({
|
|
6810
6961
|
id?: string | undefined;
|
|
6811
6962
|
timestamp_seconds?: number | undefined;
|
|
6812
6963
|
sender_id?: string | undefined;
|
|
6813
6964
|
content?: string | undefined;
|
|
6814
6965
|
attachment?: string | undefined;
|
|
6815
|
-
|
|
6966
|
+
reference?: string | undefined;
|
|
6816
6967
|
mention?: string | undefined;
|
|
6817
6968
|
reaction?: string | undefined;
|
|
6818
6969
|
repliers?: string[] | undefined;
|
|
@@ -6822,18 +6973,18 @@ export declare const Envelope: {
|
|
|
6822
6973
|
sender_id?: string | undefined;
|
|
6823
6974
|
content?: string | undefined;
|
|
6824
6975
|
attachment?: string | undefined;
|
|
6825
|
-
|
|
6976
|
+
reference?: string | undefined;
|
|
6826
6977
|
mention?: string | undefined;
|
|
6827
6978
|
reaction?: string | undefined;
|
|
6828
|
-
repliers?: (string[] & string[] & { [
|
|
6829
|
-
} & { [
|
|
6979
|
+
repliers?: (string[] & string[] & { [K_213 in Exclude<keyof I_1["notifications"]["notifications"][number]["channel"]["last_sent_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
6980
|
+
} & { [K_214 in Exclude<keyof I_1["notifications"]["notifications"][number]["channel"]["last_sent_message"], keyof ChannelMessageHeader>]: never; }) | undefined;
|
|
6830
6981
|
last_seen_message?: ({
|
|
6831
6982
|
id?: string | undefined;
|
|
6832
6983
|
timestamp_seconds?: number | undefined;
|
|
6833
6984
|
sender_id?: string | undefined;
|
|
6834
6985
|
content?: string | undefined;
|
|
6835
6986
|
attachment?: string | undefined;
|
|
6836
|
-
|
|
6987
|
+
reference?: string | undefined;
|
|
6837
6988
|
mention?: string | undefined;
|
|
6838
6989
|
reaction?: string | undefined;
|
|
6839
6990
|
repliers?: string[] | undefined;
|
|
@@ -6843,33 +6994,33 @@ export declare const Envelope: {
|
|
|
6843
6994
|
sender_id?: string | undefined;
|
|
6844
6995
|
content?: string | undefined;
|
|
6845
6996
|
attachment?: string | undefined;
|
|
6846
|
-
|
|
6997
|
+
reference?: string | undefined;
|
|
6847
6998
|
mention?: string | undefined;
|
|
6848
6999
|
reaction?: string | undefined;
|
|
6849
|
-
repliers?: (string[] & string[] & { [
|
|
6850
|
-
} & { [
|
|
6851
|
-
is_online?: (boolean[] & boolean[] & { [
|
|
7000
|
+
repliers?: (string[] & string[] & { [K_215 in Exclude<keyof I_1["notifications"]["notifications"][number]["channel"]["last_seen_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
7001
|
+
} & { [K_216 in Exclude<keyof I_1["notifications"]["notifications"][number]["channel"]["last_seen_message"], keyof ChannelMessageHeader>]: never; }) | undefined;
|
|
7002
|
+
is_online?: (boolean[] & boolean[] & { [K_217 in Exclude<keyof I_1["notifications"]["notifications"][number]["channel"]["is_online"], keyof boolean[]>]: never; }) | undefined;
|
|
6852
7003
|
meeting_code?: string | undefined;
|
|
6853
7004
|
count_mess_unread?: number | undefined;
|
|
6854
7005
|
active?: number | undefined;
|
|
6855
7006
|
last_pin_message?: string | undefined;
|
|
6856
|
-
usernames?: (string[] & string[] & { [
|
|
7007
|
+
usernames?: (string[] & string[] & { [K_218 in Exclude<keyof I_1["notifications"]["notifications"][number]["channel"]["usernames"], keyof string[]>]: never; }) | undefined;
|
|
6857
7008
|
creator_name?: string | undefined;
|
|
6858
7009
|
create_time_seconds?: number | undefined;
|
|
6859
7010
|
update_time_seconds?: number | undefined;
|
|
6860
|
-
metadata?: (string[] & string[] & { [
|
|
6861
|
-
about_me?: (string[] & string[] & { [
|
|
7011
|
+
metadata?: (string[] & string[] & { [K_219 in Exclude<keyof I_1["notifications"]["notifications"][number]["channel"]["metadata"], keyof string[]>]: never; }) | undefined;
|
|
7012
|
+
about_me?: (string[] & string[] & { [K_220 in Exclude<keyof I_1["notifications"]["notifications"][number]["channel"]["about_me"], keyof string[]>]: never; }) | undefined;
|
|
6862
7013
|
clan_name?: string | undefined;
|
|
6863
|
-
|
|
7014
|
+
app_id?: string | undefined;
|
|
6864
7015
|
is_mute?: boolean | undefined;
|
|
6865
7016
|
age_restricted?: number | undefined;
|
|
6866
7017
|
topic?: string | undefined;
|
|
6867
7018
|
e2ee?: number | undefined;
|
|
6868
|
-
display_names?: (string[] & string[] & { [
|
|
6869
|
-
} & { [
|
|
7019
|
+
display_names?: (string[] & string[] & { [K_221 in Exclude<keyof I_1["notifications"]["notifications"][number]["channel"]["display_names"], keyof string[]>]: never; }) | undefined;
|
|
7020
|
+
} & { [K_222 in Exclude<keyof I_1["notifications"]["notifications"][number]["channel"], keyof ChannelDescription1>]: never; }) | undefined;
|
|
6870
7021
|
topic_id?: string | undefined;
|
|
6871
7022
|
category?: number | undefined;
|
|
6872
|
-
} & { [
|
|
7023
|
+
} & { [K_223 in Exclude<keyof I_1["notifications"]["notifications"][number], keyof Notification>]: never; })[] & { [K_224 in Exclude<keyof I_1["notifications"]["notifications"], keyof {
|
|
6873
7024
|
id?: string | undefined;
|
|
6874
7025
|
subject?: string | undefined;
|
|
6875
7026
|
content?: string | undefined;
|
|
@@ -6899,7 +7050,7 @@ export declare const Envelope: {
|
|
|
6899
7050
|
sender_id?: string | undefined;
|
|
6900
7051
|
content?: string | undefined;
|
|
6901
7052
|
attachment?: string | undefined;
|
|
6902
|
-
|
|
7053
|
+
reference?: string | undefined;
|
|
6903
7054
|
mention?: string | undefined;
|
|
6904
7055
|
reaction?: string | undefined;
|
|
6905
7056
|
repliers?: string[] | undefined;
|
|
@@ -6910,7 +7061,7 @@ export declare const Envelope: {
|
|
|
6910
7061
|
sender_id?: string | undefined;
|
|
6911
7062
|
content?: string | undefined;
|
|
6912
7063
|
attachment?: string | undefined;
|
|
6913
|
-
|
|
7064
|
+
reference?: string | undefined;
|
|
6914
7065
|
mention?: string | undefined;
|
|
6915
7066
|
reaction?: string | undefined;
|
|
6916
7067
|
repliers?: string[] | undefined;
|
|
@@ -6927,7 +7078,7 @@ export declare const Envelope: {
|
|
|
6927
7078
|
metadata?: string[] | undefined;
|
|
6928
7079
|
about_me?: string[] | undefined;
|
|
6929
7080
|
clan_name?: string | undefined;
|
|
6930
|
-
|
|
7081
|
+
app_id?: string | undefined;
|
|
6931
7082
|
is_mute?: boolean | undefined;
|
|
6932
7083
|
age_restricted?: number | undefined;
|
|
6933
7084
|
topic?: string | undefined;
|
|
@@ -6937,7 +7088,7 @@ export declare const Envelope: {
|
|
|
6937
7088
|
topic_id?: string | undefined;
|
|
6938
7089
|
category?: number | undefined;
|
|
6939
7090
|
}[]>]: never; }) | undefined;
|
|
6940
|
-
} & { [
|
|
7091
|
+
} & { [K_225 in Exclude<keyof I_1["notifications"], "notifications">]: never; }) | undefined;
|
|
6941
7092
|
rpc?: ({
|
|
6942
7093
|
id?: string | undefined;
|
|
6943
7094
|
payload?: string | undefined;
|
|
@@ -6946,7 +7097,7 @@ export declare const Envelope: {
|
|
|
6946
7097
|
id?: string | undefined;
|
|
6947
7098
|
payload?: string | undefined;
|
|
6948
7099
|
http_key?: string | undefined;
|
|
6949
|
-
} & { [
|
|
7100
|
+
} & { [K_226 in Exclude<keyof I_1["rpc"], keyof Rpc>]: never; }) | undefined;
|
|
6950
7101
|
status?: ({
|
|
6951
7102
|
presences?: {
|
|
6952
7103
|
user_id?: string | undefined;
|
|
@@ -6982,7 +7133,7 @@ export declare const Envelope: {
|
|
|
6982
7133
|
status?: string | undefined;
|
|
6983
7134
|
is_mobile?: boolean | undefined;
|
|
6984
7135
|
metadata?: string | undefined;
|
|
6985
|
-
} & { [
|
|
7136
|
+
} & { [K_227 in Exclude<keyof I_1["status"]["presences"][number], keyof UserPresence>]: never; })[] & { [K_228 in Exclude<keyof I_1["status"]["presences"], keyof {
|
|
6986
7137
|
user_id?: string | undefined;
|
|
6987
7138
|
session_id?: string | undefined;
|
|
6988
7139
|
username?: string | undefined;
|
|
@@ -6991,14 +7142,14 @@ export declare const Envelope: {
|
|
|
6991
7142
|
is_mobile?: boolean | undefined;
|
|
6992
7143
|
metadata?: string | undefined;
|
|
6993
7144
|
}[]>]: never; }) | undefined;
|
|
6994
|
-
} & { [
|
|
7145
|
+
} & { [K_229 in Exclude<keyof I_1["status"], "presences">]: never; }) | undefined;
|
|
6995
7146
|
status_follow?: ({
|
|
6996
7147
|
user_ids?: string[] | undefined;
|
|
6997
7148
|
usernames?: string[] | undefined;
|
|
6998
7149
|
} & {
|
|
6999
|
-
user_ids?: (string[] & string[] & { [
|
|
7000
|
-
usernames?: (string[] & string[] & { [
|
|
7001
|
-
} & { [
|
|
7150
|
+
user_ids?: (string[] & string[] & { [K_230 in Exclude<keyof I_1["status_follow"]["user_ids"], keyof string[]>]: never; }) | undefined;
|
|
7151
|
+
usernames?: (string[] & string[] & { [K_231 in Exclude<keyof I_1["status_follow"]["usernames"], keyof string[]>]: never; }) | undefined;
|
|
7152
|
+
} & { [K_232 in Exclude<keyof I_1["status_follow"], keyof StatusFollow>]: never; }) | undefined;
|
|
7002
7153
|
status_presence_event?: ({
|
|
7003
7154
|
joins?: {
|
|
7004
7155
|
user_id?: string | undefined;
|
|
@@ -7043,7 +7194,7 @@ export declare const Envelope: {
|
|
|
7043
7194
|
status?: string | undefined;
|
|
7044
7195
|
is_mobile?: boolean | undefined;
|
|
7045
7196
|
metadata?: string | undefined;
|
|
7046
|
-
} & { [
|
|
7197
|
+
} & { [K_233 in Exclude<keyof I_1["status_presence_event"]["joins"][number], keyof UserPresence>]: never; })[] & { [K_234 in Exclude<keyof I_1["status_presence_event"]["joins"], keyof {
|
|
7047
7198
|
user_id?: string | undefined;
|
|
7048
7199
|
session_id?: string | undefined;
|
|
7049
7200
|
username?: string | undefined;
|
|
@@ -7076,7 +7227,7 @@ export declare const Envelope: {
|
|
|
7076
7227
|
status?: string | undefined;
|
|
7077
7228
|
is_mobile?: boolean | undefined;
|
|
7078
7229
|
metadata?: string | undefined;
|
|
7079
|
-
} & { [
|
|
7230
|
+
} & { [K_235 in Exclude<keyof I_1["status_presence_event"]["leaves"][number], keyof UserPresence>]: never; })[] & { [K_236 in Exclude<keyof I_1["status_presence_event"]["leaves"], keyof {
|
|
7080
7231
|
user_id?: string | undefined;
|
|
7081
7232
|
session_id?: string | undefined;
|
|
7082
7233
|
username?: string | undefined;
|
|
@@ -7085,17 +7236,17 @@ export declare const Envelope: {
|
|
|
7085
7236
|
is_mobile?: boolean | undefined;
|
|
7086
7237
|
metadata?: string | undefined;
|
|
7087
7238
|
}[]>]: never; }) | undefined;
|
|
7088
|
-
} & { [
|
|
7239
|
+
} & { [K_237 in Exclude<keyof I_1["status_presence_event"], keyof StatusPresenceEvent>]: never; }) | undefined;
|
|
7089
7240
|
status_unfollow?: ({
|
|
7090
7241
|
user_ids?: string[] | undefined;
|
|
7091
7242
|
} & {
|
|
7092
|
-
user_ids?: (string[] & string[] & { [
|
|
7093
|
-
} & { [
|
|
7243
|
+
user_ids?: (string[] & string[] & { [K_238 in Exclude<keyof I_1["status_unfollow"]["user_ids"], keyof string[]>]: never; }) | undefined;
|
|
7244
|
+
} & { [K_239 in Exclude<keyof I_1["status_unfollow"], "user_ids">]: never; }) | undefined;
|
|
7094
7245
|
status_update?: ({
|
|
7095
7246
|
status?: string | undefined;
|
|
7096
7247
|
} & {
|
|
7097
7248
|
status?: string | undefined;
|
|
7098
|
-
} & { [
|
|
7249
|
+
} & { [K_240 in Exclude<keyof I_1["status_update"], "status">]: never; }) | undefined;
|
|
7099
7250
|
stream_data?: ({
|
|
7100
7251
|
stream?: {
|
|
7101
7252
|
mode?: number | undefined;
|
|
@@ -7125,7 +7276,7 @@ export declare const Envelope: {
|
|
|
7125
7276
|
channel_id?: string | undefined;
|
|
7126
7277
|
clan_id?: string | undefined;
|
|
7127
7278
|
label?: string | undefined;
|
|
7128
|
-
} & { [
|
|
7279
|
+
} & { [K_241 in Exclude<keyof I_1["stream_data"]["stream"], keyof Stream>]: never; }) | undefined;
|
|
7129
7280
|
sender?: ({
|
|
7130
7281
|
user_id?: string | undefined;
|
|
7131
7282
|
session_id?: string | undefined;
|
|
@@ -7142,10 +7293,10 @@ export declare const Envelope: {
|
|
|
7142
7293
|
status?: string | undefined;
|
|
7143
7294
|
is_mobile?: boolean | undefined;
|
|
7144
7295
|
metadata?: string | undefined;
|
|
7145
|
-
} & { [
|
|
7296
|
+
} & { [K_242 in Exclude<keyof I_1["stream_data"]["sender"], keyof UserPresence>]: never; }) | undefined;
|
|
7146
7297
|
data?: string | undefined;
|
|
7147
7298
|
reliable?: boolean | undefined;
|
|
7148
|
-
} & { [
|
|
7299
|
+
} & { [K_243 in Exclude<keyof I_1["stream_data"], keyof StreamData>]: never; }) | undefined;
|
|
7149
7300
|
stream_presence_event?: ({
|
|
7150
7301
|
stream?: {
|
|
7151
7302
|
mode?: number | undefined;
|
|
@@ -7182,7 +7333,7 @@ export declare const Envelope: {
|
|
|
7182
7333
|
channel_id?: string | undefined;
|
|
7183
7334
|
clan_id?: string | undefined;
|
|
7184
7335
|
label?: string | undefined;
|
|
7185
|
-
} & { [
|
|
7336
|
+
} & { [K_244 in Exclude<keyof I_1["stream_presence_event"]["stream"], keyof Stream>]: never; }) | undefined;
|
|
7186
7337
|
joins?: ({
|
|
7187
7338
|
user_id?: string | undefined;
|
|
7188
7339
|
session_id?: string | undefined;
|
|
@@ -7207,7 +7358,7 @@ export declare const Envelope: {
|
|
|
7207
7358
|
status?: string | undefined;
|
|
7208
7359
|
is_mobile?: boolean | undefined;
|
|
7209
7360
|
metadata?: string | undefined;
|
|
7210
|
-
} & { [
|
|
7361
|
+
} & { [K_245 in Exclude<keyof I_1["stream_presence_event"]["joins"][number], keyof UserPresence>]: never; })[] & { [K_246 in Exclude<keyof I_1["stream_presence_event"]["joins"], keyof {
|
|
7211
7362
|
user_id?: string | undefined;
|
|
7212
7363
|
session_id?: string | undefined;
|
|
7213
7364
|
username?: string | undefined;
|
|
@@ -7240,7 +7391,7 @@ export declare const Envelope: {
|
|
|
7240
7391
|
status?: string | undefined;
|
|
7241
7392
|
is_mobile?: boolean | undefined;
|
|
7242
7393
|
metadata?: string | undefined;
|
|
7243
|
-
} & { [
|
|
7394
|
+
} & { [K_247 in Exclude<keyof I_1["stream_presence_event"]["leaves"][number], keyof UserPresence>]: never; })[] & { [K_248 in Exclude<keyof I_1["stream_presence_event"]["leaves"], keyof {
|
|
7244
7395
|
user_id?: string | undefined;
|
|
7245
7396
|
session_id?: string | undefined;
|
|
7246
7397
|
username?: string | undefined;
|
|
@@ -7249,22 +7400,26 @@ export declare const Envelope: {
|
|
|
7249
7400
|
is_mobile?: boolean | undefined;
|
|
7250
7401
|
metadata?: string | undefined;
|
|
7251
7402
|
}[]>]: never; }) | undefined;
|
|
7252
|
-
} & { [
|
|
7253
|
-
ping?: ({} & {} & { [
|
|
7254
|
-
pong?: ({} & {} & { [
|
|
7403
|
+
} & { [K_249 in Exclude<keyof I_1["stream_presence_event"], keyof StreamPresenceEvent>]: never; }) | undefined;
|
|
7404
|
+
ping?: ({} & {} & { [K_250 in Exclude<keyof I_1["ping"], never>]: never; }) | undefined;
|
|
7405
|
+
pong?: ({} & {} & { [K_251 in Exclude<keyof I_1["pong"], never>]: never; }) | undefined;
|
|
7255
7406
|
message_typing_event?: ({
|
|
7256
7407
|
clan_id?: string | undefined;
|
|
7257
7408
|
channel_id?: string | undefined;
|
|
7258
7409
|
sender_id?: string | undefined;
|
|
7259
7410
|
mode?: number | undefined;
|
|
7260
7411
|
is_public?: boolean | undefined;
|
|
7412
|
+
sender_username?: string | undefined;
|
|
7413
|
+
sender_display_name?: string | undefined;
|
|
7261
7414
|
} & {
|
|
7262
7415
|
clan_id?: string | undefined;
|
|
7263
7416
|
channel_id?: string | undefined;
|
|
7264
7417
|
sender_id?: string | undefined;
|
|
7265
7418
|
mode?: number | undefined;
|
|
7266
7419
|
is_public?: boolean | undefined;
|
|
7267
|
-
|
|
7420
|
+
sender_username?: string | undefined;
|
|
7421
|
+
sender_display_name?: string | undefined;
|
|
7422
|
+
} & { [K_252 in Exclude<keyof I_1["message_typing_event"], keyof MessageTypingEvent>]: never; }) | undefined;
|
|
7268
7423
|
last_seen_message_event?: ({
|
|
7269
7424
|
clan_id?: string | undefined;
|
|
7270
7425
|
channel_id?: string | undefined;
|
|
@@ -7279,7 +7434,7 @@ export declare const Envelope: {
|
|
|
7279
7434
|
mode?: number | undefined;
|
|
7280
7435
|
timestamp_seconds?: number | undefined;
|
|
7281
7436
|
badge_count?: number | undefined;
|
|
7282
|
-
} & { [
|
|
7437
|
+
} & { [K_253 in Exclude<keyof I_1["last_seen_message_event"], keyof LastSeenMessageEvent>]: never; }) | undefined;
|
|
7283
7438
|
message_reaction_event?: ({
|
|
7284
7439
|
id?: string | undefined;
|
|
7285
7440
|
emoji_id?: string | undefined;
|
|
@@ -7314,7 +7469,7 @@ export declare const Envelope: {
|
|
|
7314
7469
|
is_public?: boolean | undefined;
|
|
7315
7470
|
topic_id?: string | undefined;
|
|
7316
7471
|
emoji_recent_id?: string | undefined;
|
|
7317
|
-
} & { [
|
|
7472
|
+
} & { [K_254 in Exclude<keyof I_1["message_reaction_event"], keyof MessageReaction>]: never; }) | undefined;
|
|
7318
7473
|
voice_joined_event?: ({
|
|
7319
7474
|
clan_id?: string | undefined;
|
|
7320
7475
|
clan_name?: string | undefined;
|
|
@@ -7333,7 +7488,7 @@ export declare const Envelope: {
|
|
|
7333
7488
|
voice_channel_label?: string | undefined;
|
|
7334
7489
|
voice_channel_id?: string | undefined;
|
|
7335
7490
|
last_screenshot?: string | undefined;
|
|
7336
|
-
} & { [
|
|
7491
|
+
} & { [K_255 in Exclude<keyof I_1["voice_joined_event"], keyof VoiceJoinedEvent>]: never; }) | undefined;
|
|
7337
7492
|
voice_leaved_event?: ({
|
|
7338
7493
|
id?: string | undefined;
|
|
7339
7494
|
clan_id?: string | undefined;
|
|
@@ -7344,7 +7499,7 @@ export declare const Envelope: {
|
|
|
7344
7499
|
clan_id?: string | undefined;
|
|
7345
7500
|
voice_channel_id?: string | undefined;
|
|
7346
7501
|
voice_user_id?: string | undefined;
|
|
7347
|
-
} & { [
|
|
7502
|
+
} & { [K_256 in Exclude<keyof I_1["voice_leaved_event"], keyof VoiceLeavedEvent>]: never; }) | undefined;
|
|
7348
7503
|
voice_started_event?: ({
|
|
7349
7504
|
id?: string | undefined;
|
|
7350
7505
|
clan_id?: string | undefined;
|
|
@@ -7353,7 +7508,7 @@ export declare const Envelope: {
|
|
|
7353
7508
|
id?: string | undefined;
|
|
7354
7509
|
clan_id?: string | undefined;
|
|
7355
7510
|
voice_channel_id?: string | undefined;
|
|
7356
|
-
} & { [
|
|
7511
|
+
} & { [K_257 in Exclude<keyof I_1["voice_started_event"], keyof VoiceStartedEvent>]: never; }) | undefined;
|
|
7357
7512
|
voice_ended_event?: ({
|
|
7358
7513
|
id?: string | undefined;
|
|
7359
7514
|
clan_id?: string | undefined;
|
|
@@ -7362,7 +7517,7 @@ export declare const Envelope: {
|
|
|
7362
7517
|
id?: string | undefined;
|
|
7363
7518
|
clan_id?: string | undefined;
|
|
7364
7519
|
voice_channel_id?: string | undefined;
|
|
7365
|
-
} & { [
|
|
7520
|
+
} & { [K_258 in Exclude<keyof I_1["voice_ended_event"], keyof VoiceEndedEvent>]: never; }) | undefined;
|
|
7366
7521
|
channel_created_event?: ({
|
|
7367
7522
|
clan_id?: string | undefined;
|
|
7368
7523
|
category_id?: string | undefined;
|
|
@@ -7373,7 +7528,7 @@ export declare const Envelope: {
|
|
|
7373
7528
|
channel_private?: number | undefined;
|
|
7374
7529
|
channel_type?: number | undefined;
|
|
7375
7530
|
status?: number | undefined;
|
|
7376
|
-
|
|
7531
|
+
app_id?: string | undefined;
|
|
7377
7532
|
clan_name?: string | undefined;
|
|
7378
7533
|
} & {
|
|
7379
7534
|
clan_id?: string | undefined;
|
|
@@ -7385,9 +7540,9 @@ export declare const Envelope: {
|
|
|
7385
7540
|
channel_private?: number | undefined;
|
|
7386
7541
|
channel_type?: number | undefined;
|
|
7387
7542
|
status?: number | undefined;
|
|
7388
|
-
|
|
7543
|
+
app_id?: string | undefined;
|
|
7389
7544
|
clan_name?: string | undefined;
|
|
7390
|
-
} & { [
|
|
7545
|
+
} & { [K_259 in Exclude<keyof I_1["channel_created_event"], keyof ChannelCreatedEvent>]: never; }) | undefined;
|
|
7391
7546
|
channel_deleted_event?: ({
|
|
7392
7547
|
clan_id?: string | undefined;
|
|
7393
7548
|
category_id?: string | undefined;
|
|
@@ -7400,7 +7555,7 @@ export declare const Envelope: {
|
|
|
7400
7555
|
parent_id?: string | undefined;
|
|
7401
7556
|
channel_id?: string | undefined;
|
|
7402
7557
|
deletor?: string | undefined;
|
|
7403
|
-
} & { [
|
|
7558
|
+
} & { [K_260 in Exclude<keyof I_1["channel_deleted_event"], keyof ChannelDeletedEvent>]: never; }) | undefined;
|
|
7404
7559
|
channel_updated_event?: ({
|
|
7405
7560
|
clan_id?: string | undefined;
|
|
7406
7561
|
category_id?: string | undefined;
|
|
@@ -7413,7 +7568,7 @@ export declare const Envelope: {
|
|
|
7413
7568
|
meeting_code?: string | undefined;
|
|
7414
7569
|
is_error?: boolean | undefined;
|
|
7415
7570
|
channel_private?: boolean | undefined;
|
|
7416
|
-
|
|
7571
|
+
app_id?: string | undefined;
|
|
7417
7572
|
e2ee?: number | undefined;
|
|
7418
7573
|
topic?: string | undefined;
|
|
7419
7574
|
age_restricted?: number | undefined;
|
|
@@ -7430,12 +7585,12 @@ export declare const Envelope: {
|
|
|
7430
7585
|
meeting_code?: string | undefined;
|
|
7431
7586
|
is_error?: boolean | undefined;
|
|
7432
7587
|
channel_private?: boolean | undefined;
|
|
7433
|
-
|
|
7588
|
+
app_id?: string | undefined;
|
|
7434
7589
|
e2ee?: number | undefined;
|
|
7435
7590
|
topic?: string | undefined;
|
|
7436
7591
|
age_restricted?: number | undefined;
|
|
7437
7592
|
active?: number | undefined;
|
|
7438
|
-
} & { [
|
|
7593
|
+
} & { [K_261 in Exclude<keyof I_1["channel_updated_event"], keyof ChannelUpdatedEvent>]: never; }) | undefined;
|
|
7439
7594
|
last_pin_message_event?: ({
|
|
7440
7595
|
clan_id?: string | undefined;
|
|
7441
7596
|
channel_id?: string | undefined;
|
|
@@ -7454,7 +7609,7 @@ export declare const Envelope: {
|
|
|
7454
7609
|
timestamp_seconds?: number | undefined;
|
|
7455
7610
|
operation?: number | undefined;
|
|
7456
7611
|
is_public?: boolean | undefined;
|
|
7457
|
-
} & { [
|
|
7612
|
+
} & { [K_262 in Exclude<keyof I_1["last_pin_message_event"], keyof LastPinMessageEvent>]: never; }) | undefined;
|
|
7458
7613
|
custom_status_event?: ({
|
|
7459
7614
|
clan_id?: string | undefined;
|
|
7460
7615
|
user_id?: string | undefined;
|
|
@@ -7469,7 +7624,7 @@ export declare const Envelope: {
|
|
|
7469
7624
|
status?: string | undefined;
|
|
7470
7625
|
time_reset?: number | undefined;
|
|
7471
7626
|
no_clear?: boolean | undefined;
|
|
7472
|
-
} & { [
|
|
7627
|
+
} & { [K_263 in Exclude<keyof I_1["custom_status_event"], keyof CustomStatusEvent>]: never; }) | undefined;
|
|
7473
7628
|
user_channel_added_event?: ({
|
|
7474
7629
|
channel_desc?: {
|
|
7475
7630
|
clan_id?: string | undefined;
|
|
@@ -7489,7 +7644,7 @@ export declare const Envelope: {
|
|
|
7489
7644
|
sender_id?: string | undefined;
|
|
7490
7645
|
content?: string | undefined;
|
|
7491
7646
|
attachment?: string | undefined;
|
|
7492
|
-
|
|
7647
|
+
reference?: string | undefined;
|
|
7493
7648
|
mention?: string | undefined;
|
|
7494
7649
|
reaction?: string | undefined;
|
|
7495
7650
|
repliers?: string[] | undefined;
|
|
@@ -7500,7 +7655,7 @@ export declare const Envelope: {
|
|
|
7500
7655
|
sender_id?: string | undefined;
|
|
7501
7656
|
content?: string | undefined;
|
|
7502
7657
|
attachment?: string | undefined;
|
|
7503
|
-
|
|
7658
|
+
reference?: string | undefined;
|
|
7504
7659
|
mention?: string | undefined;
|
|
7505
7660
|
reaction?: string | undefined;
|
|
7506
7661
|
repliers?: string[] | undefined;
|
|
@@ -7517,7 +7672,7 @@ export declare const Envelope: {
|
|
|
7517
7672
|
metadata?: string[] | undefined;
|
|
7518
7673
|
about_me?: string[] | undefined;
|
|
7519
7674
|
clan_name?: string | undefined;
|
|
7520
|
-
|
|
7675
|
+
app_id?: string | undefined;
|
|
7521
7676
|
is_mute?: boolean | undefined;
|
|
7522
7677
|
age_restricted?: number | undefined;
|
|
7523
7678
|
topic?: string | undefined;
|
|
@@ -7544,6 +7699,8 @@ export declare const Envelope: {
|
|
|
7544
7699
|
pubkey?: string | undefined;
|
|
7545
7700
|
mezon_id?: string | undefined;
|
|
7546
7701
|
app_token?: string | undefined;
|
|
7702
|
+
app_url?: string | undefined;
|
|
7703
|
+
is_bot?: boolean | undefined;
|
|
7547
7704
|
}[] | undefined;
|
|
7548
7705
|
status?: string | undefined;
|
|
7549
7706
|
clan_id?: string | undefined;
|
|
@@ -7567,6 +7724,8 @@ export declare const Envelope: {
|
|
|
7567
7724
|
pubkey?: string | undefined;
|
|
7568
7725
|
mezon_id?: string | undefined;
|
|
7569
7726
|
app_token?: string | undefined;
|
|
7727
|
+
app_url?: string | undefined;
|
|
7728
|
+
is_bot?: boolean | undefined;
|
|
7570
7729
|
} | undefined;
|
|
7571
7730
|
create_time_second?: number | undefined;
|
|
7572
7731
|
active?: number | undefined;
|
|
@@ -7589,7 +7748,7 @@ export declare const Envelope: {
|
|
|
7589
7748
|
sender_id?: string | undefined;
|
|
7590
7749
|
content?: string | undefined;
|
|
7591
7750
|
attachment?: string | undefined;
|
|
7592
|
-
|
|
7751
|
+
reference?: string | undefined;
|
|
7593
7752
|
mention?: string | undefined;
|
|
7594
7753
|
reaction?: string | undefined;
|
|
7595
7754
|
repliers?: string[] | undefined;
|
|
@@ -7600,7 +7759,7 @@ export declare const Envelope: {
|
|
|
7600
7759
|
sender_id?: string | undefined;
|
|
7601
7760
|
content?: string | undefined;
|
|
7602
7761
|
attachment?: string | undefined;
|
|
7603
|
-
|
|
7762
|
+
reference?: string | undefined;
|
|
7604
7763
|
mention?: string | undefined;
|
|
7605
7764
|
reaction?: string | undefined;
|
|
7606
7765
|
repliers?: string[] | undefined;
|
|
@@ -7617,7 +7776,7 @@ export declare const Envelope: {
|
|
|
7617
7776
|
metadata?: string[] | undefined;
|
|
7618
7777
|
about_me?: string[] | undefined;
|
|
7619
7778
|
clan_name?: string | undefined;
|
|
7620
|
-
|
|
7779
|
+
app_id?: string | undefined;
|
|
7621
7780
|
is_mute?: boolean | undefined;
|
|
7622
7781
|
age_restricted?: number | undefined;
|
|
7623
7782
|
topic?: string | undefined;
|
|
@@ -7633,15 +7792,15 @@ export declare const Envelope: {
|
|
|
7633
7792
|
creator_id?: string | undefined;
|
|
7634
7793
|
channel_label?: string | undefined;
|
|
7635
7794
|
channel_private?: number | undefined;
|
|
7636
|
-
channel_avatar?: (string[] & string[] & { [
|
|
7637
|
-
user_id?: (string[] & string[] & { [
|
|
7795
|
+
channel_avatar?: (string[] & string[] & { [K_264 in Exclude<keyof I_1["user_channel_added_event"]["channel_desc"]["channel_avatar"], keyof string[]>]: never; }) | undefined;
|
|
7796
|
+
user_id?: (string[] & string[] & { [K_265 in Exclude<keyof I_1["user_channel_added_event"]["channel_desc"]["user_id"], keyof string[]>]: never; }) | undefined;
|
|
7638
7797
|
last_sent_message?: ({
|
|
7639
7798
|
id?: string | undefined;
|
|
7640
7799
|
timestamp_seconds?: number | undefined;
|
|
7641
7800
|
sender_id?: string | undefined;
|
|
7642
7801
|
content?: string | undefined;
|
|
7643
7802
|
attachment?: string | undefined;
|
|
7644
|
-
|
|
7803
|
+
reference?: string | undefined;
|
|
7645
7804
|
mention?: string | undefined;
|
|
7646
7805
|
reaction?: string | undefined;
|
|
7647
7806
|
repliers?: string[] | undefined;
|
|
@@ -7651,18 +7810,18 @@ export declare const Envelope: {
|
|
|
7651
7810
|
sender_id?: string | undefined;
|
|
7652
7811
|
content?: string | undefined;
|
|
7653
7812
|
attachment?: string | undefined;
|
|
7654
|
-
|
|
7813
|
+
reference?: string | undefined;
|
|
7655
7814
|
mention?: string | undefined;
|
|
7656
7815
|
reaction?: string | undefined;
|
|
7657
|
-
repliers?: (string[] & string[] & { [
|
|
7658
|
-
} & { [
|
|
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;
|
|
7817
|
+
} & { [K_267 in Exclude<keyof I_1["user_channel_added_event"]["channel_desc"]["last_sent_message"], keyof ChannelMessageHeader>]: never; }) | undefined;
|
|
7659
7818
|
last_seen_message?: ({
|
|
7660
7819
|
id?: string | undefined;
|
|
7661
7820
|
timestamp_seconds?: number | undefined;
|
|
7662
7821
|
sender_id?: string | undefined;
|
|
7663
7822
|
content?: string | undefined;
|
|
7664
7823
|
attachment?: string | undefined;
|
|
7665
|
-
|
|
7824
|
+
reference?: string | undefined;
|
|
7666
7825
|
mention?: string | undefined;
|
|
7667
7826
|
reaction?: string | undefined;
|
|
7668
7827
|
repliers?: string[] | undefined;
|
|
@@ -7672,30 +7831,30 @@ export declare const Envelope: {
|
|
|
7672
7831
|
sender_id?: string | undefined;
|
|
7673
7832
|
content?: string | undefined;
|
|
7674
7833
|
attachment?: string | undefined;
|
|
7675
|
-
|
|
7834
|
+
reference?: string | undefined;
|
|
7676
7835
|
mention?: string | undefined;
|
|
7677
7836
|
reaction?: string | undefined;
|
|
7678
|
-
repliers?: (string[] & string[] & { [
|
|
7679
|
-
} & { [
|
|
7680
|
-
is_online?: (boolean[] & boolean[] & { [
|
|
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;
|
|
7838
|
+
} & { [K_269 in Exclude<keyof I_1["user_channel_added_event"]["channel_desc"]["last_seen_message"], keyof ChannelMessageHeader>]: never; }) | undefined;
|
|
7839
|
+
is_online?: (boolean[] & boolean[] & { [K_270 in Exclude<keyof I_1["user_channel_added_event"]["channel_desc"]["is_online"], keyof boolean[]>]: never; }) | undefined;
|
|
7681
7840
|
meeting_code?: string | undefined;
|
|
7682
7841
|
count_mess_unread?: number | undefined;
|
|
7683
7842
|
active?: number | undefined;
|
|
7684
7843
|
last_pin_message?: string | undefined;
|
|
7685
|
-
usernames?: (string[] & string[] & { [
|
|
7844
|
+
usernames?: (string[] & string[] & { [K_271 in Exclude<keyof I_1["user_channel_added_event"]["channel_desc"]["usernames"], keyof string[]>]: never; }) | undefined;
|
|
7686
7845
|
creator_name?: string | undefined;
|
|
7687
7846
|
create_time_seconds?: number | undefined;
|
|
7688
7847
|
update_time_seconds?: number | undefined;
|
|
7689
|
-
metadata?: (string[] & string[] & { [
|
|
7690
|
-
about_me?: (string[] & string[] & { [
|
|
7848
|
+
metadata?: (string[] & string[] & { [K_272 in Exclude<keyof I_1["user_channel_added_event"]["channel_desc"]["metadata"], keyof string[]>]: never; }) | undefined;
|
|
7849
|
+
about_me?: (string[] & string[] & { [K_273 in Exclude<keyof I_1["user_channel_added_event"]["channel_desc"]["about_me"], keyof string[]>]: never; }) | undefined;
|
|
7691
7850
|
clan_name?: string | undefined;
|
|
7692
|
-
|
|
7851
|
+
app_id?: string | undefined;
|
|
7693
7852
|
is_mute?: boolean | undefined;
|
|
7694
7853
|
age_restricted?: number | undefined;
|
|
7695
7854
|
topic?: string | undefined;
|
|
7696
7855
|
e2ee?: number | undefined;
|
|
7697
|
-
display_names?: (string[] & string[] & { [
|
|
7698
|
-
} & { [
|
|
7856
|
+
display_names?: (string[] & string[] & { [K_274 in Exclude<keyof I_1["user_channel_added_event"]["channel_desc"]["display_names"], keyof string[]>]: never; }) | undefined;
|
|
7857
|
+
} & { [K_275 in Exclude<keyof I_1["user_channel_added_event"]["channel_desc"], keyof ChannelDescription1>]: never; }) | undefined;
|
|
7699
7858
|
users?: ({
|
|
7700
7859
|
user_id?: string | undefined;
|
|
7701
7860
|
username?: string | undefined;
|
|
@@ -7716,6 +7875,8 @@ export declare const Envelope: {
|
|
|
7716
7875
|
pubkey?: string | undefined;
|
|
7717
7876
|
mezon_id?: string | undefined;
|
|
7718
7877
|
app_token?: string | undefined;
|
|
7878
|
+
app_url?: string | undefined;
|
|
7879
|
+
is_bot?: boolean | undefined;
|
|
7719
7880
|
}[] & ({
|
|
7720
7881
|
user_id?: string | undefined;
|
|
7721
7882
|
username?: string | undefined;
|
|
@@ -7736,6 +7897,8 @@ export declare const Envelope: {
|
|
|
7736
7897
|
pubkey?: string | undefined;
|
|
7737
7898
|
mezon_id?: string | undefined;
|
|
7738
7899
|
app_token?: string | undefined;
|
|
7900
|
+
app_url?: string | undefined;
|
|
7901
|
+
is_bot?: boolean | undefined;
|
|
7739
7902
|
} & {
|
|
7740
7903
|
user_id?: string | undefined;
|
|
7741
7904
|
username?: string | undefined;
|
|
@@ -7756,7 +7919,7 @@ export declare const Envelope: {
|
|
|
7756
7919
|
device_id?: string | undefined;
|
|
7757
7920
|
token_id?: string | undefined;
|
|
7758
7921
|
platform?: string | undefined;
|
|
7759
|
-
} & { [
|
|
7922
|
+
} & { [K_276 in Exclude<keyof I_1["user_channel_added_event"]["users"][number]["fcm_tokens"][number], keyof FCMTokens>]: never; })[] & { [K_277 in Exclude<keyof I_1["user_channel_added_event"]["users"][number]["fcm_tokens"], keyof {
|
|
7760
7923
|
device_id?: string | undefined;
|
|
7761
7924
|
token_id?: string | undefined;
|
|
7762
7925
|
platform?: string | undefined;
|
|
@@ -7764,11 +7927,13 @@ export declare const Envelope: {
|
|
|
7764
7927
|
online?: boolean | undefined;
|
|
7765
7928
|
metadata?: string | undefined;
|
|
7766
7929
|
is_disabled?: boolean | undefined;
|
|
7767
|
-
joined_clans?: (string[] & string[] & { [
|
|
7930
|
+
joined_clans?: (string[] & string[] & { [K_278 in Exclude<keyof I_1["user_channel_added_event"]["users"][number]["joined_clans"], keyof string[]>]: never; }) | undefined;
|
|
7768
7931
|
pubkey?: string | undefined;
|
|
7769
7932
|
mezon_id?: string | undefined;
|
|
7770
7933
|
app_token?: string | undefined;
|
|
7771
|
-
|
|
7934
|
+
app_url?: string | undefined;
|
|
7935
|
+
is_bot?: boolean | undefined;
|
|
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 {
|
|
7772
7937
|
user_id?: string | undefined;
|
|
7773
7938
|
username?: string | undefined;
|
|
7774
7939
|
avatar?: string | undefined;
|
|
@@ -7788,6 +7953,8 @@ export declare const Envelope: {
|
|
|
7788
7953
|
pubkey?: string | undefined;
|
|
7789
7954
|
mezon_id?: string | undefined;
|
|
7790
7955
|
app_token?: string | undefined;
|
|
7956
|
+
app_url?: string | undefined;
|
|
7957
|
+
is_bot?: boolean | undefined;
|
|
7791
7958
|
}[]>]: never; }) | undefined;
|
|
7792
7959
|
status?: string | undefined;
|
|
7793
7960
|
clan_id?: string | undefined;
|
|
@@ -7811,6 +7978,8 @@ export declare const Envelope: {
|
|
|
7811
7978
|
pubkey?: string | undefined;
|
|
7812
7979
|
mezon_id?: string | undefined;
|
|
7813
7980
|
app_token?: string | undefined;
|
|
7981
|
+
app_url?: string | undefined;
|
|
7982
|
+
is_bot?: boolean | undefined;
|
|
7814
7983
|
} & {
|
|
7815
7984
|
user_id?: string | undefined;
|
|
7816
7985
|
username?: string | undefined;
|
|
@@ -7831,7 +8000,7 @@ export declare const Envelope: {
|
|
|
7831
8000
|
device_id?: string | undefined;
|
|
7832
8001
|
token_id?: string | undefined;
|
|
7833
8002
|
platform?: string | undefined;
|
|
7834
|
-
} & { [
|
|
8003
|
+
} & { [K_281 in Exclude<keyof I_1["user_channel_added_event"]["caller"]["fcm_tokens"][number], keyof FCMTokens>]: never; })[] & { [K_282 in Exclude<keyof I_1["user_channel_added_event"]["caller"]["fcm_tokens"], keyof {
|
|
7835
8004
|
device_id?: string | undefined;
|
|
7836
8005
|
token_id?: string | undefined;
|
|
7837
8006
|
platform?: string | undefined;
|
|
@@ -7839,14 +8008,16 @@ export declare const Envelope: {
|
|
|
7839
8008
|
online?: boolean | undefined;
|
|
7840
8009
|
metadata?: string | undefined;
|
|
7841
8010
|
is_disabled?: boolean | undefined;
|
|
7842
|
-
joined_clans?: (string[] & string[] & { [
|
|
8011
|
+
joined_clans?: (string[] & string[] & { [K_283 in Exclude<keyof I_1["user_channel_added_event"]["caller"]["joined_clans"], keyof string[]>]: never; }) | undefined;
|
|
7843
8012
|
pubkey?: string | undefined;
|
|
7844
8013
|
mezon_id?: string | undefined;
|
|
7845
8014
|
app_token?: string | undefined;
|
|
7846
|
-
|
|
8015
|
+
app_url?: string | undefined;
|
|
8016
|
+
is_bot?: boolean | undefined;
|
|
8017
|
+
} & { [K_284 in Exclude<keyof I_1["user_channel_added_event"]["caller"], keyof UserProfileRedis>]: never; }) | undefined;
|
|
7847
8018
|
create_time_second?: number | undefined;
|
|
7848
8019
|
active?: number | undefined;
|
|
7849
|
-
} & { [
|
|
8020
|
+
} & { [K_285 in Exclude<keyof I_1["user_channel_added_event"], keyof UserChannelAdded>]: never; }) | undefined;
|
|
7850
8021
|
user_channel_removed_event?: ({
|
|
7851
8022
|
channel_id?: string | undefined;
|
|
7852
8023
|
user_ids?: string[] | undefined;
|
|
@@ -7854,17 +8025,17 @@ export declare const Envelope: {
|
|
|
7854
8025
|
clan_id?: string | undefined;
|
|
7855
8026
|
} & {
|
|
7856
8027
|
channel_id?: string | undefined;
|
|
7857
|
-
user_ids?: (string[] & string[] & { [
|
|
8028
|
+
user_ids?: (string[] & string[] & { [K_286 in Exclude<keyof I_1["user_channel_removed_event"]["user_ids"], keyof string[]>]: never; }) | undefined;
|
|
7858
8029
|
channel_type?: number | undefined;
|
|
7859
8030
|
clan_id?: string | undefined;
|
|
7860
|
-
} & { [
|
|
8031
|
+
} & { [K_287 in Exclude<keyof I_1["user_channel_removed_event"], keyof UserChannelRemoved>]: never; }) | undefined;
|
|
7861
8032
|
user_clan_removed_event?: ({
|
|
7862
8033
|
clan_id?: string | undefined;
|
|
7863
8034
|
user_ids?: string[] | undefined;
|
|
7864
8035
|
} & {
|
|
7865
8036
|
clan_id?: string | undefined;
|
|
7866
|
-
user_ids?: (string[] & string[] & { [
|
|
7867
|
-
} & { [
|
|
8037
|
+
user_ids?: (string[] & string[] & { [K_288 in Exclude<keyof I_1["user_clan_removed_event"]["user_ids"], keyof string[]>]: never; }) | undefined;
|
|
8038
|
+
} & { [K_289 in Exclude<keyof I_1["user_clan_removed_event"], keyof UserClanRemoved>]: never; }) | undefined;
|
|
7868
8039
|
clan_updated_event?: ({
|
|
7869
8040
|
clan_id?: string | undefined;
|
|
7870
8041
|
clan_name?: string | undefined;
|
|
@@ -7883,7 +8054,7 @@ export declare const Envelope: {
|
|
|
7883
8054
|
is_onboarding?: boolean | undefined;
|
|
7884
8055
|
welcome_channel_id?: string | undefined;
|
|
7885
8056
|
onboarding_banner?: string | undefined;
|
|
7886
|
-
} & { [
|
|
8057
|
+
} & { [K_290 in Exclude<keyof I_1["clan_updated_event"], keyof ClanUpdatedEvent>]: never; }) | undefined;
|
|
7887
8058
|
clan_profile_updated_event?: ({
|
|
7888
8059
|
user_id?: string | undefined;
|
|
7889
8060
|
clan_nick?: string | undefined;
|
|
@@ -7894,7 +8065,7 @@ export declare const Envelope: {
|
|
|
7894
8065
|
clan_nick?: string | undefined;
|
|
7895
8066
|
clan_avatar?: string | undefined;
|
|
7896
8067
|
clan_id?: string | undefined;
|
|
7897
|
-
} & { [
|
|
8068
|
+
} & { [K_291 in Exclude<keyof I_1["clan_profile_updated_event"], keyof ClanProfileUpdatedEvent>]: never; }) | undefined;
|
|
7898
8069
|
check_name_existed_event?: ({
|
|
7899
8070
|
name?: string | undefined;
|
|
7900
8071
|
condition_id?: string | undefined;
|
|
@@ -7905,7 +8076,7 @@ export declare const Envelope: {
|
|
|
7905
8076
|
condition_id?: string | undefined;
|
|
7906
8077
|
exist?: boolean | undefined;
|
|
7907
8078
|
type?: number | undefined;
|
|
7908
|
-
} & { [
|
|
8079
|
+
} & { [K_292 in Exclude<keyof I_1["check_name_existed_event"], keyof CheckNameExistedEvent>]: never; }) | undefined;
|
|
7909
8080
|
user_profile_updated_event?: ({
|
|
7910
8081
|
user_id?: string | undefined;
|
|
7911
8082
|
display_name?: string | undefined;
|
|
@@ -7922,7 +8093,7 @@ export declare const Envelope: {
|
|
|
7922
8093
|
channel_id?: string | undefined;
|
|
7923
8094
|
clan_id?: string | undefined;
|
|
7924
8095
|
encrypt_private_key?: string | undefined;
|
|
7925
|
-
} & { [
|
|
8096
|
+
} & { [K_293 in Exclude<keyof I_1["user_profile_updated_event"], keyof UserProfileUpdatedEvent>]: never; }) | undefined;
|
|
7926
8097
|
add_clan_user_event?: ({
|
|
7927
8098
|
clan_id?: string | undefined;
|
|
7928
8099
|
user?: {
|
|
@@ -7945,7 +8116,10 @@ export declare const Envelope: {
|
|
|
7945
8116
|
pubkey?: string | undefined;
|
|
7946
8117
|
mezon_id?: string | undefined;
|
|
7947
8118
|
app_token?: string | undefined;
|
|
8119
|
+
app_url?: string | undefined;
|
|
8120
|
+
is_bot?: boolean | undefined;
|
|
7948
8121
|
} | undefined;
|
|
8122
|
+
invitor?: string | undefined;
|
|
7949
8123
|
} & {
|
|
7950
8124
|
clan_id?: string | undefined;
|
|
7951
8125
|
user?: ({
|
|
@@ -7968,6 +8142,8 @@ export declare const Envelope: {
|
|
|
7968
8142
|
pubkey?: string | undefined;
|
|
7969
8143
|
mezon_id?: string | undefined;
|
|
7970
8144
|
app_token?: string | undefined;
|
|
8145
|
+
app_url?: string | undefined;
|
|
8146
|
+
is_bot?: boolean | undefined;
|
|
7971
8147
|
} & {
|
|
7972
8148
|
user_id?: string | undefined;
|
|
7973
8149
|
username?: string | undefined;
|
|
@@ -7988,7 +8164,7 @@ export declare const Envelope: {
|
|
|
7988
8164
|
device_id?: string | undefined;
|
|
7989
8165
|
token_id?: string | undefined;
|
|
7990
8166
|
platform?: string | undefined;
|
|
7991
|
-
} & { [
|
|
8167
|
+
} & { [K_294 in Exclude<keyof I_1["add_clan_user_event"]["user"]["fcm_tokens"][number], keyof FCMTokens>]: never; })[] & { [K_295 in Exclude<keyof I_1["add_clan_user_event"]["user"]["fcm_tokens"], keyof {
|
|
7992
8168
|
device_id?: string | undefined;
|
|
7993
8169
|
token_id?: string | undefined;
|
|
7994
8170
|
platform?: string | undefined;
|
|
@@ -7996,12 +8172,15 @@ export declare const Envelope: {
|
|
|
7996
8172
|
online?: boolean | undefined;
|
|
7997
8173
|
metadata?: string | undefined;
|
|
7998
8174
|
is_disabled?: boolean | undefined;
|
|
7999
|
-
joined_clans?: (string[] & string[] & { [
|
|
8175
|
+
joined_clans?: (string[] & string[] & { [K_296 in Exclude<keyof I_1["add_clan_user_event"]["user"]["joined_clans"], keyof string[]>]: never; }) | undefined;
|
|
8000
8176
|
pubkey?: string | undefined;
|
|
8001
8177
|
mezon_id?: string | undefined;
|
|
8002
8178
|
app_token?: string | undefined;
|
|
8003
|
-
|
|
8004
|
-
|
|
8179
|
+
app_url?: string | undefined;
|
|
8180
|
+
is_bot?: boolean | undefined;
|
|
8181
|
+
} & { [K_297 in Exclude<keyof I_1["add_clan_user_event"]["user"], keyof UserProfileRedis>]: never; }) | undefined;
|
|
8182
|
+
invitor?: string | undefined;
|
|
8183
|
+
} & { [K_298 in Exclude<keyof I_1["add_clan_user_event"], keyof AddClanUserEvent>]: never; }) | undefined;
|
|
8005
8184
|
clan_event_created?: ({
|
|
8006
8185
|
title?: string | undefined;
|
|
8007
8186
|
logo?: string | undefined;
|
|
@@ -8018,6 +8197,14 @@ export declare const Envelope: {
|
|
|
8018
8197
|
repeat_type?: number | undefined;
|
|
8019
8198
|
creator_id?: string | undefined;
|
|
8020
8199
|
user_id?: string | undefined;
|
|
8200
|
+
is_private?: boolean | undefined;
|
|
8201
|
+
meet_room?: {
|
|
8202
|
+
meet_id?: string | undefined;
|
|
8203
|
+
room_name?: string | undefined;
|
|
8204
|
+
external_link?: string | undefined;
|
|
8205
|
+
creator_id?: string | undefined;
|
|
8206
|
+
event_id?: string | undefined;
|
|
8207
|
+
} | undefined;
|
|
8021
8208
|
} & {
|
|
8022
8209
|
title?: string | undefined;
|
|
8023
8210
|
logo?: string | undefined;
|
|
@@ -8034,7 +8221,21 @@ export declare const Envelope: {
|
|
|
8034
8221
|
repeat_type?: number | undefined;
|
|
8035
8222
|
creator_id?: string | undefined;
|
|
8036
8223
|
user_id?: string | undefined;
|
|
8037
|
-
|
|
8224
|
+
is_private?: boolean | undefined;
|
|
8225
|
+
meet_room?: ({
|
|
8226
|
+
meet_id?: string | undefined;
|
|
8227
|
+
room_name?: string | undefined;
|
|
8228
|
+
external_link?: string | undefined;
|
|
8229
|
+
creator_id?: string | undefined;
|
|
8230
|
+
event_id?: string | undefined;
|
|
8231
|
+
} & {
|
|
8232
|
+
meet_id?: string | undefined;
|
|
8233
|
+
room_name?: string | undefined;
|
|
8234
|
+
external_link?: string | undefined;
|
|
8235
|
+
creator_id?: string | undefined;
|
|
8236
|
+
event_id?: string | undefined;
|
|
8237
|
+
} & { [K_299 in Exclude<keyof I_1["clan_event_created"]["meet_room"], keyof import("../api/api").GenerateMezonMeetResponse>]: never; }) | undefined;
|
|
8238
|
+
} & { [K_300 in Exclude<keyof I_1["clan_event_created"], keyof CreateEventRequest>]: never; }) | undefined;
|
|
8038
8239
|
role_assign_event?: ({
|
|
8039
8240
|
ClanId?: string | undefined;
|
|
8040
8241
|
role_id?: string | undefined;
|
|
@@ -8043,16 +8244,16 @@ export declare const Envelope: {
|
|
|
8043
8244
|
} & {
|
|
8044
8245
|
ClanId?: string | undefined;
|
|
8045
8246
|
role_id?: string | undefined;
|
|
8046
|
-
user_ids_assigned?: (string[] & string[] & { [
|
|
8047
|
-
user_ids_removed?: (string[] & string[] & { [
|
|
8048
|
-
} & { [
|
|
8247
|
+
user_ids_assigned?: (string[] & string[] & { [K_301 in Exclude<keyof I_1["role_assign_event"]["user_ids_assigned"], keyof string[]>]: never; }) | undefined;
|
|
8248
|
+
user_ids_removed?: (string[] & string[] & { [K_302 in Exclude<keyof I_1["role_assign_event"]["user_ids_removed"], keyof string[]>]: never; }) | undefined;
|
|
8249
|
+
} & { [K_303 in Exclude<keyof I_1["role_assign_event"], keyof RoleAssignedEvent>]: never; }) | undefined;
|
|
8049
8250
|
clan_deleted_event?: ({
|
|
8050
8251
|
clan_id?: string | undefined;
|
|
8051
8252
|
deletor?: string | undefined;
|
|
8052
8253
|
} & {
|
|
8053
8254
|
clan_id?: string | undefined;
|
|
8054
8255
|
deletor?: string | undefined;
|
|
8055
|
-
} & { [
|
|
8256
|
+
} & { [K_304 in Exclude<keyof I_1["clan_deleted_event"], keyof ClanDeletedEvent>]: never; }) | undefined;
|
|
8056
8257
|
give_coffee_event?: ({
|
|
8057
8258
|
sender_id?: string | undefined;
|
|
8058
8259
|
receiver_id?: string | undefined;
|
|
@@ -8067,7 +8268,7 @@ export declare const Envelope: {
|
|
|
8067
8268
|
message_ref_id?: string | undefined;
|
|
8068
8269
|
channel_id?: string | undefined;
|
|
8069
8270
|
clan_id?: string | undefined;
|
|
8070
|
-
} & { [
|
|
8271
|
+
} & { [K_305 in Exclude<keyof I_1["give_coffee_event"], keyof GiveCoffeeEvent>]: never; }) | undefined;
|
|
8071
8272
|
sticker_create_event?: ({
|
|
8072
8273
|
clan_id?: string | undefined;
|
|
8073
8274
|
source?: string | undefined;
|
|
@@ -8086,7 +8287,7 @@ export declare const Envelope: {
|
|
|
8086
8287
|
sticker_id?: string | undefined;
|
|
8087
8288
|
logo?: string | undefined;
|
|
8088
8289
|
clan_name?: string | undefined;
|
|
8089
|
-
} & { [
|
|
8290
|
+
} & { [K_306 in Exclude<keyof I_1["sticker_create_event"], keyof StickerCreateEvent>]: never; }) | undefined;
|
|
8090
8291
|
sticker_update_event?: ({
|
|
8091
8292
|
shortname?: string | undefined;
|
|
8092
8293
|
sticker_id?: string | undefined;
|
|
@@ -8095,14 +8296,14 @@ export declare const Envelope: {
|
|
|
8095
8296
|
shortname?: string | undefined;
|
|
8096
8297
|
sticker_id?: string | undefined;
|
|
8097
8298
|
user_id?: string | undefined;
|
|
8098
|
-
} & { [
|
|
8299
|
+
} & { [K_307 in Exclude<keyof I_1["sticker_update_event"], keyof StickerUpdateEvent>]: never; }) | undefined;
|
|
8099
8300
|
sticker_delete_event?: ({
|
|
8100
8301
|
sticker_id?: string | undefined;
|
|
8101
8302
|
user_id?: string | undefined;
|
|
8102
8303
|
} & {
|
|
8103
8304
|
sticker_id?: string | undefined;
|
|
8104
8305
|
user_id?: string | undefined;
|
|
8105
|
-
} & { [
|
|
8306
|
+
} & { [K_308 in Exclude<keyof I_1["sticker_delete_event"], keyof StickerDeleteEvent>]: never; }) | undefined;
|
|
8106
8307
|
role_event?: ({
|
|
8107
8308
|
role?: {
|
|
8108
8309
|
id?: string | undefined;
|
|
@@ -8143,6 +8344,7 @@ export declare const Envelope: {
|
|
|
8143
8344
|
role_channel_active?: number | undefined;
|
|
8144
8345
|
channel_ids?: string[] | undefined;
|
|
8145
8346
|
max_level_permission?: number | undefined;
|
|
8347
|
+
order_role?: number | undefined;
|
|
8146
8348
|
} | undefined;
|
|
8147
8349
|
status?: number | undefined;
|
|
8148
8350
|
user_id?: string | undefined;
|
|
@@ -8190,6 +8392,7 @@ export declare const Envelope: {
|
|
|
8190
8392
|
role_channel_active?: number | undefined;
|
|
8191
8393
|
channel_ids?: string[] | undefined;
|
|
8192
8394
|
max_level_permission?: number | undefined;
|
|
8395
|
+
order_role?: number | undefined;
|
|
8193
8396
|
} & {
|
|
8194
8397
|
id?: string | undefined;
|
|
8195
8398
|
title?: string | undefined;
|
|
@@ -8238,7 +8441,7 @@ export declare const Envelope: {
|
|
|
8238
8441
|
lang_tag?: string | undefined;
|
|
8239
8442
|
location?: string | undefined;
|
|
8240
8443
|
online?: boolean | undefined;
|
|
8241
|
-
} & { [
|
|
8444
|
+
} & { [K_309 in Exclude<keyof I_1["role_event"]["role"]["role_user_list"]["role_users"][number], keyof import("../api/api").RoleUserList_RoleUser>]: never; })[] & { [K_310 in Exclude<keyof I_1["role_event"]["role"]["role_user_list"]["role_users"], keyof {
|
|
8242
8445
|
id?: string | undefined;
|
|
8243
8446
|
username?: string | undefined;
|
|
8244
8447
|
display_name?: string | undefined;
|
|
@@ -8248,7 +8451,7 @@ export declare const Envelope: {
|
|
|
8248
8451
|
online?: boolean | undefined;
|
|
8249
8452
|
}[]>]: never; }) | undefined;
|
|
8250
8453
|
cursor?: string | undefined;
|
|
8251
|
-
} & { [
|
|
8454
|
+
} & { [K_311 in Exclude<keyof I_1["role_event"]["role"]["role_user_list"], keyof import("../api/api").RoleUserList>]: never; }) | undefined;
|
|
8252
8455
|
permission_list?: ({
|
|
8253
8456
|
permissions?: {
|
|
8254
8457
|
id?: string | undefined;
|
|
@@ -8285,7 +8488,7 @@ export declare const Envelope: {
|
|
|
8285
8488
|
active?: number | undefined;
|
|
8286
8489
|
scope?: number | undefined;
|
|
8287
8490
|
level?: number | undefined;
|
|
8288
|
-
} & { [
|
|
8491
|
+
} & { [K_312 in Exclude<keyof I_1["role_event"]["role"]["permission_list"]["permissions"][number], keyof import("../api/api").Permission>]: never; })[] & { [K_313 in Exclude<keyof I_1["role_event"]["role"]["permission_list"]["permissions"], keyof {
|
|
8289
8492
|
id?: string | undefined;
|
|
8290
8493
|
title?: string | undefined;
|
|
8291
8494
|
slug?: string | undefined;
|
|
@@ -8295,18 +8498,19 @@ export declare const Envelope: {
|
|
|
8295
8498
|
level?: number | undefined;
|
|
8296
8499
|
}[]>]: never; }) | undefined;
|
|
8297
8500
|
max_level_permission?: number | undefined;
|
|
8298
|
-
} & { [
|
|
8501
|
+
} & { [K_314 in Exclude<keyof I_1["role_event"]["role"]["permission_list"], keyof import("../api/api").PermissionList>]: never; }) | undefined;
|
|
8299
8502
|
role_channel_active?: number | undefined;
|
|
8300
|
-
channel_ids?: (string[] & string[] & { [
|
|
8503
|
+
channel_ids?: (string[] & string[] & { [K_315 in Exclude<keyof I_1["role_event"]["role"]["channel_ids"], keyof string[]>]: never; }) | undefined;
|
|
8301
8504
|
max_level_permission?: number | undefined;
|
|
8302
|
-
|
|
8505
|
+
order_role?: number | undefined;
|
|
8506
|
+
} & { [K_316 in Exclude<keyof I_1["role_event"]["role"], keyof Role>]: never; }) | undefined;
|
|
8303
8507
|
status?: number | undefined;
|
|
8304
8508
|
user_id?: string | undefined;
|
|
8305
|
-
user_add_ids?: (string[] & string[] & { [
|
|
8306
|
-
user_remove_ids?: (string[] & string[] & { [
|
|
8307
|
-
active_permission_ids?: (string[] & string[] & { [
|
|
8308
|
-
remove_permission_ids?: (string[] & string[] & { [
|
|
8309
|
-
} & { [
|
|
8509
|
+
user_add_ids?: (string[] & string[] & { [K_317 in Exclude<keyof I_1["role_event"]["user_add_ids"], keyof string[]>]: never; }) | undefined;
|
|
8510
|
+
user_remove_ids?: (string[] & string[] & { [K_318 in Exclude<keyof I_1["role_event"]["user_remove_ids"], keyof string[]>]: never; }) | undefined;
|
|
8511
|
+
active_permission_ids?: (string[] & string[] & { [K_319 in Exclude<keyof I_1["role_event"]["active_permission_ids"], keyof string[]>]: never; }) | undefined;
|
|
8512
|
+
remove_permission_ids?: (string[] & string[] & { [K_320 in Exclude<keyof I_1["role_event"]["remove_permission_ids"], keyof string[]>]: never; }) | undefined;
|
|
8513
|
+
} & { [K_321 in Exclude<keyof I_1["role_event"], keyof RoleEvent>]: never; }) | undefined;
|
|
8310
8514
|
event_emoji?: ({
|
|
8311
8515
|
id?: string | undefined;
|
|
8312
8516
|
clan_id?: string | undefined;
|
|
@@ -8327,7 +8531,7 @@ export declare const Envelope: {
|
|
|
8327
8531
|
user_id?: string | undefined;
|
|
8328
8532
|
logo?: string | undefined;
|
|
8329
8533
|
clan_name?: string | undefined;
|
|
8330
|
-
} & { [
|
|
8534
|
+
} & { [K_322 in Exclude<keyof I_1["event_emoji"], keyof EventEmoji>]: never; }) | undefined;
|
|
8331
8535
|
streaming_joined_event?: ({
|
|
8332
8536
|
clan_id?: string | undefined;
|
|
8333
8537
|
clan_name?: string | undefined;
|
|
@@ -8344,7 +8548,7 @@ export declare const Envelope: {
|
|
|
8344
8548
|
user_id?: string | undefined;
|
|
8345
8549
|
streaming_channel_label?: string | undefined;
|
|
8346
8550
|
streaming_channel_id?: string | undefined;
|
|
8347
|
-
} & { [
|
|
8551
|
+
} & { [K_323 in Exclude<keyof I_1["streaming_joined_event"], keyof StreamingJoinedEvent>]: never; }) | undefined;
|
|
8348
8552
|
streaming_leaved_event?: ({
|
|
8349
8553
|
id?: string | undefined;
|
|
8350
8554
|
clan_id?: string | undefined;
|
|
@@ -8355,7 +8559,7 @@ export declare const Envelope: {
|
|
|
8355
8559
|
clan_id?: string | undefined;
|
|
8356
8560
|
streaming_channel_id?: string | undefined;
|
|
8357
8561
|
streaming_user_id?: string | undefined;
|
|
8358
|
-
} & { [
|
|
8562
|
+
} & { [K_324 in Exclude<keyof I_1["streaming_leaved_event"], keyof StreamingLeavedEvent>]: never; }) | undefined;
|
|
8359
8563
|
streaming_started_event?: ({
|
|
8360
8564
|
clan_id?: string | undefined;
|
|
8361
8565
|
channel_id?: string | undefined;
|
|
@@ -8366,14 +8570,14 @@ export declare const Envelope: {
|
|
|
8366
8570
|
channel_id?: string | undefined;
|
|
8367
8571
|
streaming_url?: string | undefined;
|
|
8368
8572
|
is_streaming?: boolean | undefined;
|
|
8369
|
-
} & { [
|
|
8573
|
+
} & { [K_325 in Exclude<keyof I_1["streaming_started_event"], keyof StreamingStartedEvent>]: never; }) | undefined;
|
|
8370
8574
|
streaming_ended_event?: ({
|
|
8371
8575
|
clan_id?: string | undefined;
|
|
8372
8576
|
channel_id?: string | undefined;
|
|
8373
8577
|
} & {
|
|
8374
8578
|
clan_id?: string | undefined;
|
|
8375
8579
|
channel_id?: string | undefined;
|
|
8376
|
-
} & { [
|
|
8580
|
+
} & { [K_326 in Exclude<keyof I_1["streaming_ended_event"], keyof StreamingEndedEvent>]: never; }) | undefined;
|
|
8377
8581
|
permission_set_event?: ({
|
|
8378
8582
|
caller?: string | undefined;
|
|
8379
8583
|
role_id?: string | undefined;
|
|
@@ -8401,12 +8605,12 @@ export declare const Envelope: {
|
|
|
8401
8605
|
permission_id?: string | undefined;
|
|
8402
8606
|
slug?: string | undefined;
|
|
8403
8607
|
type?: number | undefined;
|
|
8404
|
-
} & { [
|
|
8608
|
+
} & { [K_327 in Exclude<keyof I_1["permission_set_event"]["permission_updates"][number], keyof PermissionUpdate>]: never; })[] & { [K_328 in Exclude<keyof I_1["permission_set_event"]["permission_updates"], keyof {
|
|
8405
8609
|
permission_id?: string | undefined;
|
|
8406
8610
|
slug?: string | undefined;
|
|
8407
8611
|
type?: number | undefined;
|
|
8408
8612
|
}[]>]: never; }) | undefined;
|
|
8409
|
-
} & { [
|
|
8613
|
+
} & { [K_329 in Exclude<keyof I_1["permission_set_event"], keyof PermissionSetEvent>]: never; }) | undefined;
|
|
8410
8614
|
permission_changed_event?: ({
|
|
8411
8615
|
user_id?: string | undefined;
|
|
8412
8616
|
channel_id?: string | undefined;
|
|
@@ -8440,7 +8644,7 @@ export declare const Envelope: {
|
|
|
8440
8644
|
permission_id?: string | undefined;
|
|
8441
8645
|
slug?: string | undefined;
|
|
8442
8646
|
type?: number | undefined;
|
|
8443
|
-
} & { [
|
|
8647
|
+
} & { [K_330 in Exclude<keyof I_1["permission_changed_event"]["add_permissions"][number], keyof PermissionUpdate>]: never; })[] & { [K_331 in Exclude<keyof I_1["permission_changed_event"]["add_permissions"], keyof {
|
|
8444
8648
|
permission_id?: string | undefined;
|
|
8445
8649
|
slug?: string | undefined;
|
|
8446
8650
|
type?: number | undefined;
|
|
@@ -8457,7 +8661,7 @@ export declare const Envelope: {
|
|
|
8457
8661
|
permission_id?: string | undefined;
|
|
8458
8662
|
slug?: string | undefined;
|
|
8459
8663
|
type?: number | undefined;
|
|
8460
|
-
} & { [
|
|
8664
|
+
} & { [K_332 in Exclude<keyof I_1["permission_changed_event"]["remove_permissions"][number], keyof PermissionUpdate>]: never; })[] & { [K_333 in Exclude<keyof I_1["permission_changed_event"]["remove_permissions"], keyof {
|
|
8461
8665
|
permission_id?: string | undefined;
|
|
8462
8666
|
slug?: string | undefined;
|
|
8463
8667
|
type?: number | undefined;
|
|
@@ -8474,12 +8678,12 @@ export declare const Envelope: {
|
|
|
8474
8678
|
permission_id?: string | undefined;
|
|
8475
8679
|
slug?: string | undefined;
|
|
8476
8680
|
type?: number | undefined;
|
|
8477
|
-
} & { [
|
|
8681
|
+
} & { [K_334 in Exclude<keyof I_1["permission_changed_event"]["default_permissions"][number], keyof PermissionUpdate>]: never; })[] & { [K_335 in Exclude<keyof I_1["permission_changed_event"]["default_permissions"], keyof {
|
|
8478
8682
|
permission_id?: string | undefined;
|
|
8479
8683
|
slug?: string | undefined;
|
|
8480
8684
|
type?: number | undefined;
|
|
8481
8685
|
}[]>]: never; }) | undefined;
|
|
8482
|
-
} & { [
|
|
8686
|
+
} & { [K_336 in Exclude<keyof I_1["permission_changed_event"], keyof PermissionChangedEvent>]: never; }) | undefined;
|
|
8483
8687
|
token_sent_event?: ({
|
|
8484
8688
|
sender_id?: string | undefined;
|
|
8485
8689
|
sender_name?: string | undefined;
|
|
@@ -8496,7 +8700,7 @@ export declare const Envelope: {
|
|
|
8496
8700
|
note?: string | undefined;
|
|
8497
8701
|
extra_attribute?: string | undefined;
|
|
8498
8702
|
transaction_id?: string | undefined;
|
|
8499
|
-
} & { [
|
|
8703
|
+
} & { [K_337 in Exclude<keyof I_1["token_sent_event"], keyof TokenSentEvent>]: never; }) | undefined;
|
|
8500
8704
|
message_button_clicked?: ({
|
|
8501
8705
|
message_id?: string | undefined;
|
|
8502
8706
|
channel_id?: string | undefined;
|
|
@@ -8511,7 +8715,7 @@ export declare const Envelope: {
|
|
|
8511
8715
|
sender_id?: string | undefined;
|
|
8512
8716
|
user_id?: string | undefined;
|
|
8513
8717
|
extra_data?: string | undefined;
|
|
8514
|
-
} & { [
|
|
8718
|
+
} & { [K_338 in Exclude<keyof I_1["message_button_clicked"], keyof MessageButtonClicked>]: never; }) | undefined;
|
|
8515
8719
|
unmute_event?: ({
|
|
8516
8720
|
channel_id?: string | undefined;
|
|
8517
8721
|
category_id?: string | undefined;
|
|
@@ -8520,7 +8724,7 @@ export declare const Envelope: {
|
|
|
8520
8724
|
channel_id?: string | undefined;
|
|
8521
8725
|
category_id?: string | undefined;
|
|
8522
8726
|
clan_id?: string | undefined;
|
|
8523
|
-
} & { [
|
|
8727
|
+
} & { [K_339 in Exclude<keyof I_1["unmute_event"], keyof UnmuteEvent>]: never; }) | undefined;
|
|
8524
8728
|
webrtc_signaling_fwd?: ({
|
|
8525
8729
|
receiver_id?: string | undefined;
|
|
8526
8730
|
data_type?: number | undefined;
|
|
@@ -8533,7 +8737,7 @@ export declare const Envelope: {
|
|
|
8533
8737
|
json_data?: string | undefined;
|
|
8534
8738
|
channel_id?: string | undefined;
|
|
8535
8739
|
caller_id?: string | undefined;
|
|
8536
|
-
} & { [
|
|
8740
|
+
} & { [K_340 in Exclude<keyof I_1["webrtc_signaling_fwd"], keyof WebrtcSignalingFwd>]: never; }) | undefined;
|
|
8537
8741
|
list_activity?: ({
|
|
8538
8742
|
acts?: {
|
|
8539
8743
|
user_id?: string | undefined;
|
|
@@ -8573,7 +8777,7 @@ export declare const Envelope: {
|
|
|
8573
8777
|
end_time?: Date | undefined;
|
|
8574
8778
|
application_id?: string | undefined;
|
|
8575
8779
|
status?: number | undefined;
|
|
8576
|
-
} & { [
|
|
8780
|
+
} & { [K_341 in Exclude<keyof I_1["list_activity"]["acts"][number], keyof UserActivity>]: never; })[] & { [K_342 in Exclude<keyof I_1["list_activity"]["acts"], keyof {
|
|
8577
8781
|
user_id?: string | undefined;
|
|
8578
8782
|
activity_name?: string | undefined;
|
|
8579
8783
|
activity_type?: number | undefined;
|
|
@@ -8583,7 +8787,7 @@ export declare const Envelope: {
|
|
|
8583
8787
|
application_id?: string | undefined;
|
|
8584
8788
|
status?: number | undefined;
|
|
8585
8789
|
}[]>]: never; }) | undefined;
|
|
8586
|
-
} & { [
|
|
8790
|
+
} & { [K_343 in Exclude<keyof I_1["list_activity"], "acts">]: never; }) | undefined;
|
|
8587
8791
|
dropdown_box_selected?: ({
|
|
8588
8792
|
message_id?: string | undefined;
|
|
8589
8793
|
channel_id?: string | undefined;
|
|
@@ -8597,8 +8801,8 @@ export declare const Envelope: {
|
|
|
8597
8801
|
selectbox_id?: string | undefined;
|
|
8598
8802
|
sender_id?: string | undefined;
|
|
8599
8803
|
user_id?: string | undefined;
|
|
8600
|
-
values?: (string[] & string[] & { [
|
|
8601
|
-
} & { [
|
|
8804
|
+
values?: (string[] & string[] & { [K_344 in Exclude<keyof I_1["dropdown_box_selected"]["values"], keyof string[]>]: never; }) | undefined;
|
|
8805
|
+
} & { [K_345 in Exclude<keyof I_1["dropdown_box_selected"], keyof DropdownBoxSelected>]: never; }) | undefined;
|
|
8602
8806
|
incoming_call_push?: ({
|
|
8603
8807
|
receiver_id?: string | undefined;
|
|
8604
8808
|
json_data?: string | undefined;
|
|
@@ -8609,7 +8813,7 @@ export declare const Envelope: {
|
|
|
8609
8813
|
json_data?: string | undefined;
|
|
8610
8814
|
channel_id?: string | undefined;
|
|
8611
8815
|
caller_id?: string | undefined;
|
|
8612
|
-
} & { [
|
|
8816
|
+
} & { [K_346 in Exclude<keyof I_1["incoming_call_push"], keyof IncomingCallPush>]: never; }) | undefined;
|
|
8613
8817
|
sd_topic_event?: ({
|
|
8614
8818
|
id?: string | undefined;
|
|
8615
8819
|
clan_id?: string | undefined;
|
|
@@ -8622,7 +8826,7 @@ export declare const Envelope: {
|
|
|
8622
8826
|
sender_id?: string | undefined;
|
|
8623
8827
|
content?: string | undefined;
|
|
8624
8828
|
attachment?: string | undefined;
|
|
8625
|
-
|
|
8829
|
+
reference?: string | undefined;
|
|
8626
8830
|
mention?: string | undefined;
|
|
8627
8831
|
reaction?: string | undefined;
|
|
8628
8832
|
repliers?: string[] | undefined;
|
|
@@ -8668,7 +8872,7 @@ export declare const Envelope: {
|
|
|
8668
8872
|
sender_id?: string | undefined;
|
|
8669
8873
|
content?: string | undefined;
|
|
8670
8874
|
attachment?: string | undefined;
|
|
8671
|
-
|
|
8875
|
+
reference?: string | undefined;
|
|
8672
8876
|
mention?: string | undefined;
|
|
8673
8877
|
reaction?: string | undefined;
|
|
8674
8878
|
repliers?: string[] | undefined;
|
|
@@ -8678,11 +8882,11 @@ export declare const Envelope: {
|
|
|
8678
8882
|
sender_id?: string | undefined;
|
|
8679
8883
|
content?: string | undefined;
|
|
8680
8884
|
attachment?: string | undefined;
|
|
8681
|
-
|
|
8885
|
+
reference?: string | undefined;
|
|
8682
8886
|
mention?: string | undefined;
|
|
8683
8887
|
reaction?: string | undefined;
|
|
8684
|
-
repliers?: (string[] & string[] & { [
|
|
8685
|
-
} & { [
|
|
8888
|
+
repliers?: (string[] & string[] & { [K_347 in Exclude<keyof I_1["sd_topic_event"]["last_sent_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
8889
|
+
} & { [K_348 in Exclude<keyof I_1["sd_topic_event"]["last_sent_message"], keyof ChannelMessageHeader>]: never; }) | undefined;
|
|
8686
8890
|
message?: ({
|
|
8687
8891
|
clan_id?: string | undefined;
|
|
8688
8892
|
channel_id?: string | undefined;
|
|
@@ -8739,9 +8943,9 @@ export declare const Envelope: {
|
|
|
8739
8943
|
hide_editted?: boolean | undefined;
|
|
8740
8944
|
is_public?: boolean | undefined;
|
|
8741
8945
|
topic_id?: string | undefined;
|
|
8742
|
-
} & { [
|
|
8743
|
-
} & { [
|
|
8744
|
-
follow_event?: ({} & {} & { [
|
|
8946
|
+
} & { [K_349 in Exclude<keyof I_1["sd_topic_event"]["message"], keyof ChannelMessage>]: never; }) | undefined;
|
|
8947
|
+
} & { [K_350 in Exclude<keyof I_1["sd_topic_event"], keyof SdTopicEvent>]: never; }) | undefined;
|
|
8948
|
+
follow_event?: ({} & {} & { [K_351 in Exclude<keyof I_1["follow_event"], never>]: never; }) | undefined;
|
|
8745
8949
|
channel_app_event?: ({
|
|
8746
8950
|
user_id?: string | undefined;
|
|
8747
8951
|
username?: string | undefined;
|
|
@@ -8754,19 +8958,19 @@ export declare const Envelope: {
|
|
|
8754
8958
|
clan_id?: string | undefined;
|
|
8755
8959
|
channel_id?: string | undefined;
|
|
8756
8960
|
action?: number | undefined;
|
|
8757
|
-
} & { [
|
|
8961
|
+
} & { [K_352 in Exclude<keyof I_1["channel_app_event"], keyof ChannelAppEvent>]: never; }) | undefined;
|
|
8758
8962
|
user_status_event?: ({
|
|
8759
8963
|
user_id?: string | undefined;
|
|
8760
8964
|
custom_status?: string | undefined;
|
|
8761
8965
|
} & {
|
|
8762
8966
|
user_id?: string | undefined;
|
|
8763
8967
|
custom_status?: string | undefined;
|
|
8764
|
-
} & { [
|
|
8968
|
+
} & { [K_353 in Exclude<keyof I_1["user_status_event"], keyof UserStatusEvent>]: never; }) | undefined;
|
|
8765
8969
|
remove_friend?: ({
|
|
8766
8970
|
user_id?: string | undefined;
|
|
8767
8971
|
} & {
|
|
8768
8972
|
user_id?: string | undefined;
|
|
8769
|
-
} & { [
|
|
8973
|
+
} & { [K_354 in Exclude<keyof I_1["remove_friend"], "user_id">]: never; }) | undefined;
|
|
8770
8974
|
webhook_event?: ({
|
|
8771
8975
|
id?: string | undefined;
|
|
8772
8976
|
webhook_name?: string | undefined;
|
|
@@ -8789,7 +8993,7 @@ export declare const Envelope: {
|
|
|
8789
8993
|
update_time?: string | undefined;
|
|
8790
8994
|
avatar?: string | undefined;
|
|
8791
8995
|
status?: number | undefined;
|
|
8792
|
-
} & { [
|
|
8996
|
+
} & { [K_355 in Exclude<keyof I_1["webhook_event"], keyof Webhook>]: never; }) | undefined;
|
|
8793
8997
|
noti_user_channel?: ({
|
|
8794
8998
|
id?: string | undefined;
|
|
8795
8999
|
notification_setting_type?: number | undefined;
|
|
@@ -8802,7 +9006,7 @@ export declare const Envelope: {
|
|
|
8802
9006
|
time_mute?: Date | undefined;
|
|
8803
9007
|
active?: number | undefined;
|
|
8804
9008
|
channel_id?: string | undefined;
|
|
8805
|
-
} & { [
|
|
9009
|
+
} & { [K_356 in Exclude<keyof I_1["noti_user_channel"], keyof NotificationUserChannel>]: never; }) | undefined;
|
|
8806
9010
|
join_channel_app_data?: ({
|
|
8807
9011
|
user_id?: string | undefined;
|
|
8808
9012
|
username?: string | undefined;
|
|
@@ -8811,7 +9015,7 @@ export declare const Envelope: {
|
|
|
8811
9015
|
user_id?: string | undefined;
|
|
8812
9016
|
username?: string | undefined;
|
|
8813
9017
|
hash?: string | undefined;
|
|
8814
|
-
} & { [
|
|
9018
|
+
} & { [K_357 in Exclude<keyof I_1["join_channel_app_data"], keyof JoinChannelAppData>]: never; }) | undefined;
|
|
8815
9019
|
canvas_event?: ({
|
|
8816
9020
|
id?: string | undefined;
|
|
8817
9021
|
title?: string | undefined;
|
|
@@ -8830,7 +9034,7 @@ export declare const Envelope: {
|
|
|
8830
9034
|
is_default?: boolean | undefined;
|
|
8831
9035
|
channel_id?: string | undefined;
|
|
8832
9036
|
status?: number | undefined;
|
|
8833
|
-
} & { [
|
|
9037
|
+
} & { [K_358 in Exclude<keyof I_1["canvas_event"], keyof ChannelCanvas>]: never; }) | undefined;
|
|
8834
9038
|
unpin_message_event?: ({
|
|
8835
9039
|
id?: string | undefined;
|
|
8836
9040
|
message_id?: string | undefined;
|
|
@@ -8841,7 +9045,7 @@ export declare const Envelope: {
|
|
|
8841
9045
|
message_id?: string | undefined;
|
|
8842
9046
|
channel_id?: string | undefined;
|
|
8843
9047
|
clan_id?: string | undefined;
|
|
8844
|
-
} & { [
|
|
9048
|
+
} & { [K_359 in Exclude<keyof I_1["unpin_message_event"], keyof UnpinMessageEvent>]: never; }) | undefined;
|
|
8845
9049
|
category_event?: ({
|
|
8846
9050
|
creator_id?: string | undefined;
|
|
8847
9051
|
clan_id?: string | undefined;
|
|
@@ -8854,8 +9058,24 @@ export declare const Envelope: {
|
|
|
8854
9058
|
category_name?: string | undefined;
|
|
8855
9059
|
id?: string | undefined;
|
|
8856
9060
|
status?: number | undefined;
|
|
8857
|
-
} & { [
|
|
8858
|
-
|
|
9061
|
+
} & { [K_360 in Exclude<keyof I_1["category_event"], keyof CategoryEvent>]: never; }) | undefined;
|
|
9062
|
+
handle_participant_meet_state_event?: ({
|
|
9063
|
+
clan_id?: string | undefined;
|
|
9064
|
+
channel_id?: string | undefined;
|
|
9065
|
+
display_name?: string | undefined;
|
|
9066
|
+
state?: number | undefined;
|
|
9067
|
+
} & {
|
|
9068
|
+
clan_id?: string | undefined;
|
|
9069
|
+
channel_id?: string | undefined;
|
|
9070
|
+
display_name?: string | undefined;
|
|
9071
|
+
state?: number | undefined;
|
|
9072
|
+
} & { [K_361 in Exclude<keyof I_1["handle_participant_meet_state_event"], keyof HandleParticipantMeetStateEvent>]: never; }) | undefined;
|
|
9073
|
+
delete_account_event?: ({
|
|
9074
|
+
user_id?: string | undefined;
|
|
9075
|
+
} & {
|
|
9076
|
+
user_id?: string | undefined;
|
|
9077
|
+
} & { [K_362 in Exclude<keyof I_1["delete_account_event"], "user_id">]: never; }) | undefined;
|
|
9078
|
+
} & { [K_363 in Exclude<keyof I_1, keyof Envelope>]: never; }>(object: I_1): Envelope;
|
|
8859
9079
|
};
|
|
8860
9080
|
export declare const FollowEvent: {
|
|
8861
9081
|
encode(_: FollowEvent, writer?: _m0.Writer): _m0.Writer;
|
|
@@ -9028,7 +9248,10 @@ export declare const AddClanUserEvent: {
|
|
|
9028
9248
|
pubkey?: string | undefined;
|
|
9029
9249
|
mezon_id?: string | undefined;
|
|
9030
9250
|
app_token?: string | undefined;
|
|
9251
|
+
app_url?: string | undefined;
|
|
9252
|
+
is_bot?: boolean | undefined;
|
|
9031
9253
|
} | undefined;
|
|
9254
|
+
invitor?: string | undefined;
|
|
9032
9255
|
} & {
|
|
9033
9256
|
clan_id?: string | undefined;
|
|
9034
9257
|
user?: ({
|
|
@@ -9051,6 +9274,8 @@ export declare const AddClanUserEvent: {
|
|
|
9051
9274
|
pubkey?: string | undefined;
|
|
9052
9275
|
mezon_id?: string | undefined;
|
|
9053
9276
|
app_token?: string | undefined;
|
|
9277
|
+
app_url?: string | undefined;
|
|
9278
|
+
is_bot?: boolean | undefined;
|
|
9054
9279
|
} & {
|
|
9055
9280
|
user_id?: string | undefined;
|
|
9056
9281
|
username?: string | undefined;
|
|
@@ -9083,7 +9308,10 @@ export declare const AddClanUserEvent: {
|
|
|
9083
9308
|
pubkey?: string | undefined;
|
|
9084
9309
|
mezon_id?: string | undefined;
|
|
9085
9310
|
app_token?: string | undefined;
|
|
9311
|
+
app_url?: string | undefined;
|
|
9312
|
+
is_bot?: boolean | undefined;
|
|
9086
9313
|
} & { [K_3 in Exclude<keyof I["user"], keyof UserProfileRedis>]: never; }) | undefined;
|
|
9314
|
+
invitor?: string | undefined;
|
|
9087
9315
|
} & { [K_4 in Exclude<keyof I, keyof AddClanUserEvent>]: never; }>(base?: I | undefined): AddClanUserEvent;
|
|
9088
9316
|
fromPartial<I_1 extends {
|
|
9089
9317
|
clan_id?: string | undefined;
|
|
@@ -9107,7 +9335,10 @@ export declare const AddClanUserEvent: {
|
|
|
9107
9335
|
pubkey?: string | undefined;
|
|
9108
9336
|
mezon_id?: string | undefined;
|
|
9109
9337
|
app_token?: string | undefined;
|
|
9338
|
+
app_url?: string | undefined;
|
|
9339
|
+
is_bot?: boolean | undefined;
|
|
9110
9340
|
} | undefined;
|
|
9341
|
+
invitor?: string | undefined;
|
|
9111
9342
|
} & {
|
|
9112
9343
|
clan_id?: string | undefined;
|
|
9113
9344
|
user?: ({
|
|
@@ -9130,6 +9361,8 @@ export declare const AddClanUserEvent: {
|
|
|
9130
9361
|
pubkey?: string | undefined;
|
|
9131
9362
|
mezon_id?: string | undefined;
|
|
9132
9363
|
app_token?: string | undefined;
|
|
9364
|
+
app_url?: string | undefined;
|
|
9365
|
+
is_bot?: boolean | undefined;
|
|
9133
9366
|
} & {
|
|
9134
9367
|
user_id?: string | undefined;
|
|
9135
9368
|
username?: string | undefined;
|
|
@@ -9162,7 +9395,10 @@ export declare const AddClanUserEvent: {
|
|
|
9162
9395
|
pubkey?: string | undefined;
|
|
9163
9396
|
mezon_id?: string | undefined;
|
|
9164
9397
|
app_token?: string | undefined;
|
|
9398
|
+
app_url?: string | undefined;
|
|
9399
|
+
is_bot?: boolean | undefined;
|
|
9165
9400
|
} & { [K_8 in Exclude<keyof I_1["user"], keyof UserProfileRedis>]: never; }) | undefined;
|
|
9401
|
+
invitor?: string | undefined;
|
|
9166
9402
|
} & { [K_9 in Exclude<keyof I_1, keyof AddClanUserEvent>]: never; }>(object: I_1): AddClanUserEvent;
|
|
9167
9403
|
};
|
|
9168
9404
|
export declare const RoleAssignedEvent: {
|
|
@@ -9277,7 +9513,7 @@ export declare const ChannelDescription: {
|
|
|
9277
9513
|
sender_id?: string | undefined;
|
|
9278
9514
|
content?: string | undefined;
|
|
9279
9515
|
attachment?: string | undefined;
|
|
9280
|
-
|
|
9516
|
+
reference?: string | undefined;
|
|
9281
9517
|
mention?: string | undefined;
|
|
9282
9518
|
reaction?: string | undefined;
|
|
9283
9519
|
repliers?: string[] | undefined;
|
|
@@ -9297,7 +9533,7 @@ export declare const ChannelDescription: {
|
|
|
9297
9533
|
sender_id?: string | undefined;
|
|
9298
9534
|
content?: string | undefined;
|
|
9299
9535
|
attachment?: string | undefined;
|
|
9300
|
-
|
|
9536
|
+
reference?: string | undefined;
|
|
9301
9537
|
mention?: string | undefined;
|
|
9302
9538
|
reaction?: string | undefined;
|
|
9303
9539
|
repliers?: string[] | undefined;
|
|
@@ -9307,7 +9543,7 @@ export declare const ChannelDescription: {
|
|
|
9307
9543
|
sender_id?: string | undefined;
|
|
9308
9544
|
content?: string | undefined;
|
|
9309
9545
|
attachment?: string | undefined;
|
|
9310
|
-
|
|
9546
|
+
reference?: string | undefined;
|
|
9311
9547
|
mention?: string | undefined;
|
|
9312
9548
|
reaction?: string | undefined;
|
|
9313
9549
|
repliers?: (string[] & string[] & { [K in Exclude<keyof I["last_sent_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
@@ -9328,7 +9564,7 @@ export declare const ChannelDescription: {
|
|
|
9328
9564
|
sender_id?: string | undefined;
|
|
9329
9565
|
content?: string | undefined;
|
|
9330
9566
|
attachment?: string | undefined;
|
|
9331
|
-
|
|
9567
|
+
reference?: string | undefined;
|
|
9332
9568
|
mention?: string | undefined;
|
|
9333
9569
|
reaction?: string | undefined;
|
|
9334
9570
|
repliers?: string[] | undefined;
|
|
@@ -9348,7 +9584,7 @@ export declare const ChannelDescription: {
|
|
|
9348
9584
|
sender_id?: string | undefined;
|
|
9349
9585
|
content?: string | undefined;
|
|
9350
9586
|
attachment?: string | undefined;
|
|
9351
|
-
|
|
9587
|
+
reference?: string | undefined;
|
|
9352
9588
|
mention?: string | undefined;
|
|
9353
9589
|
reaction?: string | undefined;
|
|
9354
9590
|
repliers?: string[] | undefined;
|
|
@@ -9358,7 +9594,7 @@ export declare const ChannelDescription: {
|
|
|
9358
9594
|
sender_id?: string | undefined;
|
|
9359
9595
|
content?: string | undefined;
|
|
9360
9596
|
attachment?: string | undefined;
|
|
9361
|
-
|
|
9597
|
+
reference?: string | undefined;
|
|
9362
9598
|
mention?: string | undefined;
|
|
9363
9599
|
reaction?: string | undefined;
|
|
9364
9600
|
repliers?: (string[] & string[] & { [K_3 in Exclude<keyof I_1["last_sent_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
@@ -10591,7 +10827,7 @@ export declare const Notifications: {
|
|
|
10591
10827
|
sender_id?: string | undefined;
|
|
10592
10828
|
content?: string | undefined;
|
|
10593
10829
|
attachment?: string | undefined;
|
|
10594
|
-
|
|
10830
|
+
reference?: string | undefined;
|
|
10595
10831
|
mention?: string | undefined;
|
|
10596
10832
|
reaction?: string | undefined;
|
|
10597
10833
|
repliers?: string[] | undefined;
|
|
@@ -10602,7 +10838,7 @@ export declare const Notifications: {
|
|
|
10602
10838
|
sender_id?: string | undefined;
|
|
10603
10839
|
content?: string | undefined;
|
|
10604
10840
|
attachment?: string | undefined;
|
|
10605
|
-
|
|
10841
|
+
reference?: string | undefined;
|
|
10606
10842
|
mention?: string | undefined;
|
|
10607
10843
|
reaction?: string | undefined;
|
|
10608
10844
|
repliers?: string[] | undefined;
|
|
@@ -10619,7 +10855,7 @@ export declare const Notifications: {
|
|
|
10619
10855
|
metadata?: string[] | undefined;
|
|
10620
10856
|
about_me?: string[] | undefined;
|
|
10621
10857
|
clan_name?: string | undefined;
|
|
10622
|
-
|
|
10858
|
+
app_id?: string | undefined;
|
|
10623
10859
|
is_mute?: boolean | undefined;
|
|
10624
10860
|
age_restricted?: number | undefined;
|
|
10625
10861
|
topic?: string | undefined;
|
|
@@ -10660,7 +10896,7 @@ export declare const Notifications: {
|
|
|
10660
10896
|
sender_id?: string | undefined;
|
|
10661
10897
|
content?: string | undefined;
|
|
10662
10898
|
attachment?: string | undefined;
|
|
10663
|
-
|
|
10899
|
+
reference?: string | undefined;
|
|
10664
10900
|
mention?: string | undefined;
|
|
10665
10901
|
reaction?: string | undefined;
|
|
10666
10902
|
repliers?: string[] | undefined;
|
|
@@ -10671,7 +10907,7 @@ export declare const Notifications: {
|
|
|
10671
10907
|
sender_id?: string | undefined;
|
|
10672
10908
|
content?: string | undefined;
|
|
10673
10909
|
attachment?: string | undefined;
|
|
10674
|
-
|
|
10910
|
+
reference?: string | undefined;
|
|
10675
10911
|
mention?: string | undefined;
|
|
10676
10912
|
reaction?: string | undefined;
|
|
10677
10913
|
repliers?: string[] | undefined;
|
|
@@ -10688,7 +10924,7 @@ export declare const Notifications: {
|
|
|
10688
10924
|
metadata?: string[] | undefined;
|
|
10689
10925
|
about_me?: string[] | undefined;
|
|
10690
10926
|
clan_name?: string | undefined;
|
|
10691
|
-
|
|
10927
|
+
app_id?: string | undefined;
|
|
10692
10928
|
is_mute?: boolean | undefined;
|
|
10693
10929
|
age_restricted?: number | undefined;
|
|
10694
10930
|
topic?: string | undefined;
|
|
@@ -10727,7 +10963,7 @@ export declare const Notifications: {
|
|
|
10727
10963
|
sender_id?: string | undefined;
|
|
10728
10964
|
content?: string | undefined;
|
|
10729
10965
|
attachment?: string | undefined;
|
|
10730
|
-
|
|
10966
|
+
reference?: string | undefined;
|
|
10731
10967
|
mention?: string | undefined;
|
|
10732
10968
|
reaction?: string | undefined;
|
|
10733
10969
|
repliers?: string[] | undefined;
|
|
@@ -10738,7 +10974,7 @@ export declare const Notifications: {
|
|
|
10738
10974
|
sender_id?: string | undefined;
|
|
10739
10975
|
content?: string | undefined;
|
|
10740
10976
|
attachment?: string | undefined;
|
|
10741
|
-
|
|
10977
|
+
reference?: string | undefined;
|
|
10742
10978
|
mention?: string | undefined;
|
|
10743
10979
|
reaction?: string | undefined;
|
|
10744
10980
|
repliers?: string[] | undefined;
|
|
@@ -10755,7 +10991,7 @@ export declare const Notifications: {
|
|
|
10755
10991
|
metadata?: string[] | undefined;
|
|
10756
10992
|
about_me?: string[] | undefined;
|
|
10757
10993
|
clan_name?: string | undefined;
|
|
10758
|
-
|
|
10994
|
+
app_id?: string | undefined;
|
|
10759
10995
|
is_mute?: boolean | undefined;
|
|
10760
10996
|
age_restricted?: number | undefined;
|
|
10761
10997
|
topic?: string | undefined;
|
|
@@ -10794,7 +11030,7 @@ export declare const Notifications: {
|
|
|
10794
11030
|
sender_id?: string | undefined;
|
|
10795
11031
|
content?: string | undefined;
|
|
10796
11032
|
attachment?: string | undefined;
|
|
10797
|
-
|
|
11033
|
+
reference?: string | undefined;
|
|
10798
11034
|
mention?: string | undefined;
|
|
10799
11035
|
reaction?: string | undefined;
|
|
10800
11036
|
repliers?: string[] | undefined;
|
|
@@ -10805,7 +11041,7 @@ export declare const Notifications: {
|
|
|
10805
11041
|
sender_id?: string | undefined;
|
|
10806
11042
|
content?: string | undefined;
|
|
10807
11043
|
attachment?: string | undefined;
|
|
10808
|
-
|
|
11044
|
+
reference?: string | undefined;
|
|
10809
11045
|
mention?: string | undefined;
|
|
10810
11046
|
reaction?: string | undefined;
|
|
10811
11047
|
repliers?: string[] | undefined;
|
|
@@ -10822,7 +11058,7 @@ export declare const Notifications: {
|
|
|
10822
11058
|
metadata?: string[] | undefined;
|
|
10823
11059
|
about_me?: string[] | undefined;
|
|
10824
11060
|
clan_name?: string | undefined;
|
|
10825
|
-
|
|
11061
|
+
app_id?: string | undefined;
|
|
10826
11062
|
is_mute?: boolean | undefined;
|
|
10827
11063
|
age_restricted?: number | undefined;
|
|
10828
11064
|
topic?: string | undefined;
|
|
@@ -10846,7 +11082,7 @@ export declare const Notifications: {
|
|
|
10846
11082
|
sender_id?: string | undefined;
|
|
10847
11083
|
content?: string | undefined;
|
|
10848
11084
|
attachment?: string | undefined;
|
|
10849
|
-
|
|
11085
|
+
reference?: string | undefined;
|
|
10850
11086
|
mention?: string | undefined;
|
|
10851
11087
|
reaction?: string | undefined;
|
|
10852
11088
|
repliers?: string[] | undefined;
|
|
@@ -10856,7 +11092,7 @@ export declare const Notifications: {
|
|
|
10856
11092
|
sender_id?: string | undefined;
|
|
10857
11093
|
content?: string | undefined;
|
|
10858
11094
|
attachment?: string | undefined;
|
|
10859
|
-
|
|
11095
|
+
reference?: string | undefined;
|
|
10860
11096
|
mention?: string | undefined;
|
|
10861
11097
|
reaction?: string | undefined;
|
|
10862
11098
|
repliers?: (string[] & string[] & { [K_2 in Exclude<keyof I["notifications"][number]["channel"]["last_sent_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
@@ -10867,7 +11103,7 @@ export declare const Notifications: {
|
|
|
10867
11103
|
sender_id?: string | undefined;
|
|
10868
11104
|
content?: string | undefined;
|
|
10869
11105
|
attachment?: string | undefined;
|
|
10870
|
-
|
|
11106
|
+
reference?: string | undefined;
|
|
10871
11107
|
mention?: string | undefined;
|
|
10872
11108
|
reaction?: string | undefined;
|
|
10873
11109
|
repliers?: string[] | undefined;
|
|
@@ -10877,7 +11113,7 @@ export declare const Notifications: {
|
|
|
10877
11113
|
sender_id?: string | undefined;
|
|
10878
11114
|
content?: string | undefined;
|
|
10879
11115
|
attachment?: string | undefined;
|
|
10880
|
-
|
|
11116
|
+
reference?: string | undefined;
|
|
10881
11117
|
mention?: string | undefined;
|
|
10882
11118
|
reaction?: string | undefined;
|
|
10883
11119
|
repliers?: (string[] & string[] & { [K_4 in Exclude<keyof I["notifications"][number]["channel"]["last_seen_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
@@ -10894,7 +11130,7 @@ export declare const Notifications: {
|
|
|
10894
11130
|
metadata?: (string[] & string[] & { [K_8 in Exclude<keyof I["notifications"][number]["channel"]["metadata"], keyof string[]>]: never; }) | undefined;
|
|
10895
11131
|
about_me?: (string[] & string[] & { [K_9 in Exclude<keyof I["notifications"][number]["channel"]["about_me"], keyof string[]>]: never; }) | undefined;
|
|
10896
11132
|
clan_name?: string | undefined;
|
|
10897
|
-
|
|
11133
|
+
app_id?: string | undefined;
|
|
10898
11134
|
is_mute?: boolean | undefined;
|
|
10899
11135
|
age_restricted?: number | undefined;
|
|
10900
11136
|
topic?: string | undefined;
|
|
@@ -10933,7 +11169,7 @@ export declare const Notifications: {
|
|
|
10933
11169
|
sender_id?: string | undefined;
|
|
10934
11170
|
content?: string | undefined;
|
|
10935
11171
|
attachment?: string | undefined;
|
|
10936
|
-
|
|
11172
|
+
reference?: string | undefined;
|
|
10937
11173
|
mention?: string | undefined;
|
|
10938
11174
|
reaction?: string | undefined;
|
|
10939
11175
|
repliers?: string[] | undefined;
|
|
@@ -10944,7 +11180,7 @@ export declare const Notifications: {
|
|
|
10944
11180
|
sender_id?: string | undefined;
|
|
10945
11181
|
content?: string | undefined;
|
|
10946
11182
|
attachment?: string | undefined;
|
|
10947
|
-
|
|
11183
|
+
reference?: string | undefined;
|
|
10948
11184
|
mention?: string | undefined;
|
|
10949
11185
|
reaction?: string | undefined;
|
|
10950
11186
|
repliers?: string[] | undefined;
|
|
@@ -10961,7 +11197,7 @@ export declare const Notifications: {
|
|
|
10961
11197
|
metadata?: string[] | undefined;
|
|
10962
11198
|
about_me?: string[] | undefined;
|
|
10963
11199
|
clan_name?: string | undefined;
|
|
10964
|
-
|
|
11200
|
+
app_id?: string | undefined;
|
|
10965
11201
|
is_mute?: boolean | undefined;
|
|
10966
11202
|
age_restricted?: number | undefined;
|
|
10967
11203
|
topic?: string | undefined;
|
|
@@ -11003,7 +11239,7 @@ export declare const Notifications: {
|
|
|
11003
11239
|
sender_id?: string | undefined;
|
|
11004
11240
|
content?: string | undefined;
|
|
11005
11241
|
attachment?: string | undefined;
|
|
11006
|
-
|
|
11242
|
+
reference?: string | undefined;
|
|
11007
11243
|
mention?: string | undefined;
|
|
11008
11244
|
reaction?: string | undefined;
|
|
11009
11245
|
repliers?: string[] | undefined;
|
|
@@ -11014,7 +11250,7 @@ export declare const Notifications: {
|
|
|
11014
11250
|
sender_id?: string | undefined;
|
|
11015
11251
|
content?: string | undefined;
|
|
11016
11252
|
attachment?: string | undefined;
|
|
11017
|
-
|
|
11253
|
+
reference?: string | undefined;
|
|
11018
11254
|
mention?: string | undefined;
|
|
11019
11255
|
reaction?: string | undefined;
|
|
11020
11256
|
repliers?: string[] | undefined;
|
|
@@ -11031,7 +11267,7 @@ export declare const Notifications: {
|
|
|
11031
11267
|
metadata?: string[] | undefined;
|
|
11032
11268
|
about_me?: string[] | undefined;
|
|
11033
11269
|
clan_name?: string | undefined;
|
|
11034
|
-
|
|
11270
|
+
app_id?: string | undefined;
|
|
11035
11271
|
is_mute?: boolean | undefined;
|
|
11036
11272
|
age_restricted?: number | undefined;
|
|
11037
11273
|
topic?: string | undefined;
|
|
@@ -11072,7 +11308,7 @@ export declare const Notifications: {
|
|
|
11072
11308
|
sender_id?: string | undefined;
|
|
11073
11309
|
content?: string | undefined;
|
|
11074
11310
|
attachment?: string | undefined;
|
|
11075
|
-
|
|
11311
|
+
reference?: string | undefined;
|
|
11076
11312
|
mention?: string | undefined;
|
|
11077
11313
|
reaction?: string | undefined;
|
|
11078
11314
|
repliers?: string[] | undefined;
|
|
@@ -11083,7 +11319,7 @@ export declare const Notifications: {
|
|
|
11083
11319
|
sender_id?: string | undefined;
|
|
11084
11320
|
content?: string | undefined;
|
|
11085
11321
|
attachment?: string | undefined;
|
|
11086
|
-
|
|
11322
|
+
reference?: string | undefined;
|
|
11087
11323
|
mention?: string | undefined;
|
|
11088
11324
|
reaction?: string | undefined;
|
|
11089
11325
|
repliers?: string[] | undefined;
|
|
@@ -11100,7 +11336,7 @@ export declare const Notifications: {
|
|
|
11100
11336
|
metadata?: string[] | undefined;
|
|
11101
11337
|
about_me?: string[] | undefined;
|
|
11102
11338
|
clan_name?: string | undefined;
|
|
11103
|
-
|
|
11339
|
+
app_id?: string | undefined;
|
|
11104
11340
|
is_mute?: boolean | undefined;
|
|
11105
11341
|
age_restricted?: number | undefined;
|
|
11106
11342
|
topic?: string | undefined;
|
|
@@ -11139,7 +11375,7 @@ export declare const Notifications: {
|
|
|
11139
11375
|
sender_id?: string | undefined;
|
|
11140
11376
|
content?: string | undefined;
|
|
11141
11377
|
attachment?: string | undefined;
|
|
11142
|
-
|
|
11378
|
+
reference?: string | undefined;
|
|
11143
11379
|
mention?: string | undefined;
|
|
11144
11380
|
reaction?: string | undefined;
|
|
11145
11381
|
repliers?: string[] | undefined;
|
|
@@ -11150,7 +11386,7 @@ export declare const Notifications: {
|
|
|
11150
11386
|
sender_id?: string | undefined;
|
|
11151
11387
|
content?: string | undefined;
|
|
11152
11388
|
attachment?: string | undefined;
|
|
11153
|
-
|
|
11389
|
+
reference?: string | undefined;
|
|
11154
11390
|
mention?: string | undefined;
|
|
11155
11391
|
reaction?: string | undefined;
|
|
11156
11392
|
repliers?: string[] | undefined;
|
|
@@ -11167,7 +11403,7 @@ export declare const Notifications: {
|
|
|
11167
11403
|
metadata?: string[] | undefined;
|
|
11168
11404
|
about_me?: string[] | undefined;
|
|
11169
11405
|
clan_name?: string | undefined;
|
|
11170
|
-
|
|
11406
|
+
app_id?: string | undefined;
|
|
11171
11407
|
is_mute?: boolean | undefined;
|
|
11172
11408
|
age_restricted?: number | undefined;
|
|
11173
11409
|
topic?: string | undefined;
|
|
@@ -11206,7 +11442,7 @@ export declare const Notifications: {
|
|
|
11206
11442
|
sender_id?: string | undefined;
|
|
11207
11443
|
content?: string | undefined;
|
|
11208
11444
|
attachment?: string | undefined;
|
|
11209
|
-
|
|
11445
|
+
reference?: string | undefined;
|
|
11210
11446
|
mention?: string | undefined;
|
|
11211
11447
|
reaction?: string | undefined;
|
|
11212
11448
|
repliers?: string[] | undefined;
|
|
@@ -11217,7 +11453,7 @@ export declare const Notifications: {
|
|
|
11217
11453
|
sender_id?: string | undefined;
|
|
11218
11454
|
content?: string | undefined;
|
|
11219
11455
|
attachment?: string | undefined;
|
|
11220
|
-
|
|
11456
|
+
reference?: string | undefined;
|
|
11221
11457
|
mention?: string | undefined;
|
|
11222
11458
|
reaction?: string | undefined;
|
|
11223
11459
|
repliers?: string[] | undefined;
|
|
@@ -11234,7 +11470,7 @@ export declare const Notifications: {
|
|
|
11234
11470
|
metadata?: string[] | undefined;
|
|
11235
11471
|
about_me?: string[] | undefined;
|
|
11236
11472
|
clan_name?: string | undefined;
|
|
11237
|
-
|
|
11473
|
+
app_id?: string | undefined;
|
|
11238
11474
|
is_mute?: boolean | undefined;
|
|
11239
11475
|
age_restricted?: number | undefined;
|
|
11240
11476
|
topic?: string | undefined;
|
|
@@ -11258,7 +11494,7 @@ export declare const Notifications: {
|
|
|
11258
11494
|
sender_id?: string | undefined;
|
|
11259
11495
|
content?: string | undefined;
|
|
11260
11496
|
attachment?: string | undefined;
|
|
11261
|
-
|
|
11497
|
+
reference?: string | undefined;
|
|
11262
11498
|
mention?: string | undefined;
|
|
11263
11499
|
reaction?: string | undefined;
|
|
11264
11500
|
repliers?: string[] | undefined;
|
|
@@ -11268,7 +11504,7 @@ export declare const Notifications: {
|
|
|
11268
11504
|
sender_id?: string | undefined;
|
|
11269
11505
|
content?: string | undefined;
|
|
11270
11506
|
attachment?: string | undefined;
|
|
11271
|
-
|
|
11507
|
+
reference?: string | undefined;
|
|
11272
11508
|
mention?: string | undefined;
|
|
11273
11509
|
reaction?: string | undefined;
|
|
11274
11510
|
repliers?: (string[] & string[] & { [K_17 in Exclude<keyof I_1["notifications"][number]["channel"]["last_sent_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
@@ -11279,7 +11515,7 @@ export declare const Notifications: {
|
|
|
11279
11515
|
sender_id?: string | undefined;
|
|
11280
11516
|
content?: string | undefined;
|
|
11281
11517
|
attachment?: string | undefined;
|
|
11282
|
-
|
|
11518
|
+
reference?: string | undefined;
|
|
11283
11519
|
mention?: string | undefined;
|
|
11284
11520
|
reaction?: string | undefined;
|
|
11285
11521
|
repliers?: string[] | undefined;
|
|
@@ -11289,7 +11525,7 @@ export declare const Notifications: {
|
|
|
11289
11525
|
sender_id?: string | undefined;
|
|
11290
11526
|
content?: string | undefined;
|
|
11291
11527
|
attachment?: string | undefined;
|
|
11292
|
-
|
|
11528
|
+
reference?: string | undefined;
|
|
11293
11529
|
mention?: string | undefined;
|
|
11294
11530
|
reaction?: string | undefined;
|
|
11295
11531
|
repliers?: (string[] & string[] & { [K_19 in Exclude<keyof I_1["notifications"][number]["channel"]["last_seen_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
@@ -11306,7 +11542,7 @@ export declare const Notifications: {
|
|
|
11306
11542
|
metadata?: (string[] & string[] & { [K_23 in Exclude<keyof I_1["notifications"][number]["channel"]["metadata"], keyof string[]>]: never; }) | undefined;
|
|
11307
11543
|
about_me?: (string[] & string[] & { [K_24 in Exclude<keyof I_1["notifications"][number]["channel"]["about_me"], keyof string[]>]: never; }) | undefined;
|
|
11308
11544
|
clan_name?: string | undefined;
|
|
11309
|
-
|
|
11545
|
+
app_id?: string | undefined;
|
|
11310
11546
|
is_mute?: boolean | undefined;
|
|
11311
11547
|
age_restricted?: number | undefined;
|
|
11312
11548
|
topic?: string | undefined;
|
|
@@ -11345,7 +11581,7 @@ export declare const Notifications: {
|
|
|
11345
11581
|
sender_id?: string | undefined;
|
|
11346
11582
|
content?: string | undefined;
|
|
11347
11583
|
attachment?: string | undefined;
|
|
11348
|
-
|
|
11584
|
+
reference?: string | undefined;
|
|
11349
11585
|
mention?: string | undefined;
|
|
11350
11586
|
reaction?: string | undefined;
|
|
11351
11587
|
repliers?: string[] | undefined;
|
|
@@ -11356,7 +11592,7 @@ export declare const Notifications: {
|
|
|
11356
11592
|
sender_id?: string | undefined;
|
|
11357
11593
|
content?: string | undefined;
|
|
11358
11594
|
attachment?: string | undefined;
|
|
11359
|
-
|
|
11595
|
+
reference?: string | undefined;
|
|
11360
11596
|
mention?: string | undefined;
|
|
11361
11597
|
reaction?: string | undefined;
|
|
11362
11598
|
repliers?: string[] | undefined;
|
|
@@ -11373,7 +11609,7 @@ export declare const Notifications: {
|
|
|
11373
11609
|
metadata?: string[] | undefined;
|
|
11374
11610
|
about_me?: string[] | undefined;
|
|
11375
11611
|
clan_name?: string | undefined;
|
|
11376
|
-
|
|
11612
|
+
app_id?: string | undefined;
|
|
11377
11613
|
is_mute?: boolean | undefined;
|
|
11378
11614
|
age_restricted?: number | undefined;
|
|
11379
11615
|
topic?: string | undefined;
|
|
@@ -11804,12 +12040,16 @@ export declare const MessageTypingEvent: {
|
|
|
11804
12040
|
sender_id?: string | undefined;
|
|
11805
12041
|
mode?: number | undefined;
|
|
11806
12042
|
is_public?: boolean | undefined;
|
|
12043
|
+
sender_username?: string | undefined;
|
|
12044
|
+
sender_display_name?: string | undefined;
|
|
11807
12045
|
} & {
|
|
11808
12046
|
clan_id?: string | undefined;
|
|
11809
12047
|
channel_id?: string | undefined;
|
|
11810
12048
|
sender_id?: string | undefined;
|
|
11811
12049
|
mode?: number | undefined;
|
|
11812
12050
|
is_public?: boolean | undefined;
|
|
12051
|
+
sender_username?: string | undefined;
|
|
12052
|
+
sender_display_name?: string | undefined;
|
|
11813
12053
|
} & { [K in Exclude<keyof I, keyof MessageTypingEvent>]: never; }>(base?: I | undefined): MessageTypingEvent;
|
|
11814
12054
|
fromPartial<I_1 extends {
|
|
11815
12055
|
clan_id?: string | undefined;
|
|
@@ -11817,12 +12057,16 @@ export declare const MessageTypingEvent: {
|
|
|
11817
12057
|
sender_id?: string | undefined;
|
|
11818
12058
|
mode?: number | undefined;
|
|
11819
12059
|
is_public?: boolean | undefined;
|
|
12060
|
+
sender_username?: string | undefined;
|
|
12061
|
+
sender_display_name?: string | undefined;
|
|
11820
12062
|
} & {
|
|
11821
12063
|
clan_id?: string | undefined;
|
|
11822
12064
|
channel_id?: string | undefined;
|
|
11823
12065
|
sender_id?: string | undefined;
|
|
11824
12066
|
mode?: number | undefined;
|
|
11825
12067
|
is_public?: boolean | undefined;
|
|
12068
|
+
sender_username?: string | undefined;
|
|
12069
|
+
sender_display_name?: string | undefined;
|
|
11826
12070
|
} & { [K_1 in Exclude<keyof I_1, keyof MessageTypingEvent>]: never; }>(object: I_1): MessageTypingEvent;
|
|
11827
12071
|
};
|
|
11828
12072
|
export declare const VoiceLeavedEvent: {
|
|
@@ -12076,7 +12320,7 @@ export declare const ChannelCreatedEvent: {
|
|
|
12076
12320
|
channel_private?: number | undefined;
|
|
12077
12321
|
channel_type?: number | undefined;
|
|
12078
12322
|
status?: number | undefined;
|
|
12079
|
-
|
|
12323
|
+
app_id?: string | undefined;
|
|
12080
12324
|
clan_name?: string | undefined;
|
|
12081
12325
|
} & {
|
|
12082
12326
|
clan_id?: string | undefined;
|
|
@@ -12088,7 +12332,7 @@ export declare const ChannelCreatedEvent: {
|
|
|
12088
12332
|
channel_private?: number | undefined;
|
|
12089
12333
|
channel_type?: number | undefined;
|
|
12090
12334
|
status?: number | undefined;
|
|
12091
|
-
|
|
12335
|
+
app_id?: string | undefined;
|
|
12092
12336
|
clan_name?: string | undefined;
|
|
12093
12337
|
} & { [K in Exclude<keyof I, keyof ChannelCreatedEvent>]: never; }>(base?: I | undefined): ChannelCreatedEvent;
|
|
12094
12338
|
fromPartial<I_1 extends {
|
|
@@ -12101,7 +12345,7 @@ export declare const ChannelCreatedEvent: {
|
|
|
12101
12345
|
channel_private?: number | undefined;
|
|
12102
12346
|
channel_type?: number | undefined;
|
|
12103
12347
|
status?: number | undefined;
|
|
12104
|
-
|
|
12348
|
+
app_id?: string | undefined;
|
|
12105
12349
|
clan_name?: string | undefined;
|
|
12106
12350
|
} & {
|
|
12107
12351
|
clan_id?: string | undefined;
|
|
@@ -12113,7 +12357,7 @@ export declare const ChannelCreatedEvent: {
|
|
|
12113
12357
|
channel_private?: number | undefined;
|
|
12114
12358
|
channel_type?: number | undefined;
|
|
12115
12359
|
status?: number | undefined;
|
|
12116
|
-
|
|
12360
|
+
app_id?: string | undefined;
|
|
12117
12361
|
clan_name?: string | undefined;
|
|
12118
12362
|
} & { [K_1 in Exclude<keyof I_1, keyof ChannelCreatedEvent>]: never; }>(object: I_1): ChannelCreatedEvent;
|
|
12119
12363
|
};
|
|
@@ -12194,6 +12438,7 @@ export declare const RoleEvent: {
|
|
|
12194
12438
|
role_channel_active?: number | undefined;
|
|
12195
12439
|
channel_ids?: string[] | undefined;
|
|
12196
12440
|
max_level_permission?: number | undefined;
|
|
12441
|
+
order_role?: number | undefined;
|
|
12197
12442
|
} | undefined;
|
|
12198
12443
|
status?: number | undefined;
|
|
12199
12444
|
user_id?: string | undefined;
|
|
@@ -12241,6 +12486,7 @@ export declare const RoleEvent: {
|
|
|
12241
12486
|
role_channel_active?: number | undefined;
|
|
12242
12487
|
channel_ids?: string[] | undefined;
|
|
12243
12488
|
max_level_permission?: number | undefined;
|
|
12489
|
+
order_role?: number | undefined;
|
|
12244
12490
|
} & {
|
|
12245
12491
|
id?: string | undefined;
|
|
12246
12492
|
title?: string | undefined;
|
|
@@ -12350,6 +12596,7 @@ export declare const RoleEvent: {
|
|
|
12350
12596
|
role_channel_active?: number | undefined;
|
|
12351
12597
|
channel_ids?: (string[] & string[] & { [K_6 in Exclude<keyof I["role"]["channel_ids"], keyof string[]>]: never; }) | undefined;
|
|
12352
12598
|
max_level_permission?: number | undefined;
|
|
12599
|
+
order_role?: number | undefined;
|
|
12353
12600
|
} & { [K_7 in Exclude<keyof I["role"], keyof Role>]: never; }) | undefined;
|
|
12354
12601
|
status?: number | undefined;
|
|
12355
12602
|
user_id?: string | undefined;
|
|
@@ -12398,6 +12645,7 @@ export declare const RoleEvent: {
|
|
|
12398
12645
|
role_channel_active?: number | undefined;
|
|
12399
12646
|
channel_ids?: string[] | undefined;
|
|
12400
12647
|
max_level_permission?: number | undefined;
|
|
12648
|
+
order_role?: number | undefined;
|
|
12401
12649
|
} | undefined;
|
|
12402
12650
|
status?: number | undefined;
|
|
12403
12651
|
user_id?: string | undefined;
|
|
@@ -12445,6 +12693,7 @@ export declare const RoleEvent: {
|
|
|
12445
12693
|
role_channel_active?: number | undefined;
|
|
12446
12694
|
channel_ids?: string[] | undefined;
|
|
12447
12695
|
max_level_permission?: number | undefined;
|
|
12696
|
+
order_role?: number | undefined;
|
|
12448
12697
|
} & {
|
|
12449
12698
|
id?: string | undefined;
|
|
12450
12699
|
title?: string | undefined;
|
|
@@ -12554,6 +12803,7 @@ export declare const RoleEvent: {
|
|
|
12554
12803
|
role_channel_active?: number | undefined;
|
|
12555
12804
|
channel_ids?: (string[] & string[] & { [K_19 in Exclude<keyof I_1["role"]["channel_ids"], keyof string[]>]: never; }) | undefined;
|
|
12556
12805
|
max_level_permission?: number | undefined;
|
|
12806
|
+
order_role?: number | undefined;
|
|
12557
12807
|
} & { [K_20 in Exclude<keyof I_1["role"], keyof Role>]: never; }) | undefined;
|
|
12558
12808
|
status?: number | undefined;
|
|
12559
12809
|
user_id?: string | undefined;
|
|
@@ -12720,7 +12970,7 @@ export declare const ChannelUpdatedEvent: {
|
|
|
12720
12970
|
meeting_code?: string | undefined;
|
|
12721
12971
|
is_error?: boolean | undefined;
|
|
12722
12972
|
channel_private?: boolean | undefined;
|
|
12723
|
-
|
|
12973
|
+
app_id?: string | undefined;
|
|
12724
12974
|
e2ee?: number | undefined;
|
|
12725
12975
|
topic?: string | undefined;
|
|
12726
12976
|
age_restricted?: number | undefined;
|
|
@@ -12737,7 +12987,7 @@ export declare const ChannelUpdatedEvent: {
|
|
|
12737
12987
|
meeting_code?: string | undefined;
|
|
12738
12988
|
is_error?: boolean | undefined;
|
|
12739
12989
|
channel_private?: boolean | undefined;
|
|
12740
|
-
|
|
12990
|
+
app_id?: string | undefined;
|
|
12741
12991
|
e2ee?: number | undefined;
|
|
12742
12992
|
topic?: string | undefined;
|
|
12743
12993
|
age_restricted?: number | undefined;
|
|
@@ -12755,7 +13005,7 @@ export declare const ChannelUpdatedEvent: {
|
|
|
12755
13005
|
meeting_code?: string | undefined;
|
|
12756
13006
|
is_error?: boolean | undefined;
|
|
12757
13007
|
channel_private?: boolean | undefined;
|
|
12758
|
-
|
|
13008
|
+
app_id?: string | undefined;
|
|
12759
13009
|
e2ee?: number | undefined;
|
|
12760
13010
|
topic?: string | undefined;
|
|
12761
13011
|
age_restricted?: number | undefined;
|
|
@@ -12772,7 +13022,7 @@ export declare const ChannelUpdatedEvent: {
|
|
|
12772
13022
|
meeting_code?: string | undefined;
|
|
12773
13023
|
is_error?: boolean | undefined;
|
|
12774
13024
|
channel_private?: boolean | undefined;
|
|
12775
|
-
|
|
13025
|
+
app_id?: string | undefined;
|
|
12776
13026
|
e2ee?: number | undefined;
|
|
12777
13027
|
topic?: string | undefined;
|
|
12778
13028
|
age_restricted?: number | undefined;
|
|
@@ -13259,7 +13509,7 @@ export declare const UserChannelAdded: {
|
|
|
13259
13509
|
sender_id?: string | undefined;
|
|
13260
13510
|
content?: string | undefined;
|
|
13261
13511
|
attachment?: string | undefined;
|
|
13262
|
-
|
|
13512
|
+
reference?: string | undefined;
|
|
13263
13513
|
mention?: string | undefined;
|
|
13264
13514
|
reaction?: string | undefined;
|
|
13265
13515
|
repliers?: string[] | undefined;
|
|
@@ -13270,7 +13520,7 @@ export declare const UserChannelAdded: {
|
|
|
13270
13520
|
sender_id?: string | undefined;
|
|
13271
13521
|
content?: string | undefined;
|
|
13272
13522
|
attachment?: string | undefined;
|
|
13273
|
-
|
|
13523
|
+
reference?: string | undefined;
|
|
13274
13524
|
mention?: string | undefined;
|
|
13275
13525
|
reaction?: string | undefined;
|
|
13276
13526
|
repliers?: string[] | undefined;
|
|
@@ -13287,7 +13537,7 @@ export declare const UserChannelAdded: {
|
|
|
13287
13537
|
metadata?: string[] | undefined;
|
|
13288
13538
|
about_me?: string[] | undefined;
|
|
13289
13539
|
clan_name?: string | undefined;
|
|
13290
|
-
|
|
13540
|
+
app_id?: string | undefined;
|
|
13291
13541
|
is_mute?: boolean | undefined;
|
|
13292
13542
|
age_restricted?: number | undefined;
|
|
13293
13543
|
topic?: string | undefined;
|
|
@@ -13314,6 +13564,8 @@ export declare const UserChannelAdded: {
|
|
|
13314
13564
|
pubkey?: string | undefined;
|
|
13315
13565
|
mezon_id?: string | undefined;
|
|
13316
13566
|
app_token?: string | undefined;
|
|
13567
|
+
app_url?: string | undefined;
|
|
13568
|
+
is_bot?: boolean | undefined;
|
|
13317
13569
|
}[] | undefined;
|
|
13318
13570
|
status?: string | undefined;
|
|
13319
13571
|
clan_id?: string | undefined;
|
|
@@ -13337,6 +13589,8 @@ export declare const UserChannelAdded: {
|
|
|
13337
13589
|
pubkey?: string | undefined;
|
|
13338
13590
|
mezon_id?: string | undefined;
|
|
13339
13591
|
app_token?: string | undefined;
|
|
13592
|
+
app_url?: string | undefined;
|
|
13593
|
+
is_bot?: boolean | undefined;
|
|
13340
13594
|
} | undefined;
|
|
13341
13595
|
create_time_second?: number | undefined;
|
|
13342
13596
|
active?: number | undefined;
|
|
@@ -13359,7 +13613,7 @@ export declare const UserChannelAdded: {
|
|
|
13359
13613
|
sender_id?: string | undefined;
|
|
13360
13614
|
content?: string | undefined;
|
|
13361
13615
|
attachment?: string | undefined;
|
|
13362
|
-
|
|
13616
|
+
reference?: string | undefined;
|
|
13363
13617
|
mention?: string | undefined;
|
|
13364
13618
|
reaction?: string | undefined;
|
|
13365
13619
|
repliers?: string[] | undefined;
|
|
@@ -13370,7 +13624,7 @@ export declare const UserChannelAdded: {
|
|
|
13370
13624
|
sender_id?: string | undefined;
|
|
13371
13625
|
content?: string | undefined;
|
|
13372
13626
|
attachment?: string | undefined;
|
|
13373
|
-
|
|
13627
|
+
reference?: string | undefined;
|
|
13374
13628
|
mention?: string | undefined;
|
|
13375
13629
|
reaction?: string | undefined;
|
|
13376
13630
|
repliers?: string[] | undefined;
|
|
@@ -13387,7 +13641,7 @@ export declare const UserChannelAdded: {
|
|
|
13387
13641
|
metadata?: string[] | undefined;
|
|
13388
13642
|
about_me?: string[] | undefined;
|
|
13389
13643
|
clan_name?: string | undefined;
|
|
13390
|
-
|
|
13644
|
+
app_id?: string | undefined;
|
|
13391
13645
|
is_mute?: boolean | undefined;
|
|
13392
13646
|
age_restricted?: number | undefined;
|
|
13393
13647
|
topic?: string | undefined;
|
|
@@ -13411,7 +13665,7 @@ export declare const UserChannelAdded: {
|
|
|
13411
13665
|
sender_id?: string | undefined;
|
|
13412
13666
|
content?: string | undefined;
|
|
13413
13667
|
attachment?: string | undefined;
|
|
13414
|
-
|
|
13668
|
+
reference?: string | undefined;
|
|
13415
13669
|
mention?: string | undefined;
|
|
13416
13670
|
reaction?: string | undefined;
|
|
13417
13671
|
repliers?: string[] | undefined;
|
|
@@ -13421,7 +13675,7 @@ export declare const UserChannelAdded: {
|
|
|
13421
13675
|
sender_id?: string | undefined;
|
|
13422
13676
|
content?: string | undefined;
|
|
13423
13677
|
attachment?: string | undefined;
|
|
13424
|
-
|
|
13678
|
+
reference?: string | undefined;
|
|
13425
13679
|
mention?: string | undefined;
|
|
13426
13680
|
reaction?: string | undefined;
|
|
13427
13681
|
repliers?: (string[] & string[] & { [K_2 in Exclude<keyof I["channel_desc"]["last_sent_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
@@ -13432,7 +13686,7 @@ export declare const UserChannelAdded: {
|
|
|
13432
13686
|
sender_id?: string | undefined;
|
|
13433
13687
|
content?: string | undefined;
|
|
13434
13688
|
attachment?: string | undefined;
|
|
13435
|
-
|
|
13689
|
+
reference?: string | undefined;
|
|
13436
13690
|
mention?: string | undefined;
|
|
13437
13691
|
reaction?: string | undefined;
|
|
13438
13692
|
repliers?: string[] | undefined;
|
|
@@ -13442,7 +13696,7 @@ export declare const UserChannelAdded: {
|
|
|
13442
13696
|
sender_id?: string | undefined;
|
|
13443
13697
|
content?: string | undefined;
|
|
13444
13698
|
attachment?: string | undefined;
|
|
13445
|
-
|
|
13699
|
+
reference?: string | undefined;
|
|
13446
13700
|
mention?: string | undefined;
|
|
13447
13701
|
reaction?: string | undefined;
|
|
13448
13702
|
repliers?: (string[] & string[] & { [K_4 in Exclude<keyof I["channel_desc"]["last_seen_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
@@ -13459,7 +13713,7 @@ export declare const UserChannelAdded: {
|
|
|
13459
13713
|
metadata?: (string[] & string[] & { [K_8 in Exclude<keyof I["channel_desc"]["metadata"], keyof string[]>]: never; }) | undefined;
|
|
13460
13714
|
about_me?: (string[] & string[] & { [K_9 in Exclude<keyof I["channel_desc"]["about_me"], keyof string[]>]: never; }) | undefined;
|
|
13461
13715
|
clan_name?: string | undefined;
|
|
13462
|
-
|
|
13716
|
+
app_id?: string | undefined;
|
|
13463
13717
|
is_mute?: boolean | undefined;
|
|
13464
13718
|
age_restricted?: number | undefined;
|
|
13465
13719
|
topic?: string | undefined;
|
|
@@ -13486,6 +13740,8 @@ export declare const UserChannelAdded: {
|
|
|
13486
13740
|
pubkey?: string | undefined;
|
|
13487
13741
|
mezon_id?: string | undefined;
|
|
13488
13742
|
app_token?: string | undefined;
|
|
13743
|
+
app_url?: string | undefined;
|
|
13744
|
+
is_bot?: boolean | undefined;
|
|
13489
13745
|
}[] & ({
|
|
13490
13746
|
user_id?: string | undefined;
|
|
13491
13747
|
username?: string | undefined;
|
|
@@ -13506,6 +13762,8 @@ export declare const UserChannelAdded: {
|
|
|
13506
13762
|
pubkey?: string | undefined;
|
|
13507
13763
|
mezon_id?: string | undefined;
|
|
13508
13764
|
app_token?: string | undefined;
|
|
13765
|
+
app_url?: string | undefined;
|
|
13766
|
+
is_bot?: boolean | undefined;
|
|
13509
13767
|
} & {
|
|
13510
13768
|
user_id?: string | undefined;
|
|
13511
13769
|
username?: string | undefined;
|
|
@@ -13538,6 +13796,8 @@ export declare const UserChannelAdded: {
|
|
|
13538
13796
|
pubkey?: string | undefined;
|
|
13539
13797
|
mezon_id?: string | undefined;
|
|
13540
13798
|
app_token?: string | undefined;
|
|
13799
|
+
app_url?: string | undefined;
|
|
13800
|
+
is_bot?: boolean | undefined;
|
|
13541
13801
|
} & { [K_15 in Exclude<keyof I["users"][number], keyof UserProfileRedis>]: never; })[] & { [K_16 in Exclude<keyof I["users"], keyof {
|
|
13542
13802
|
user_id?: string | undefined;
|
|
13543
13803
|
username?: string | undefined;
|
|
@@ -13558,6 +13818,8 @@ export declare const UserChannelAdded: {
|
|
|
13558
13818
|
pubkey?: string | undefined;
|
|
13559
13819
|
mezon_id?: string | undefined;
|
|
13560
13820
|
app_token?: string | undefined;
|
|
13821
|
+
app_url?: string | undefined;
|
|
13822
|
+
is_bot?: boolean | undefined;
|
|
13561
13823
|
}[]>]: never; }) | undefined;
|
|
13562
13824
|
status?: string | undefined;
|
|
13563
13825
|
clan_id?: string | undefined;
|
|
@@ -13581,6 +13843,8 @@ export declare const UserChannelAdded: {
|
|
|
13581
13843
|
pubkey?: string | undefined;
|
|
13582
13844
|
mezon_id?: string | undefined;
|
|
13583
13845
|
app_token?: string | undefined;
|
|
13846
|
+
app_url?: string | undefined;
|
|
13847
|
+
is_bot?: boolean | undefined;
|
|
13584
13848
|
} & {
|
|
13585
13849
|
user_id?: string | undefined;
|
|
13586
13850
|
username?: string | undefined;
|
|
@@ -13613,6 +13877,8 @@ export declare const UserChannelAdded: {
|
|
|
13613
13877
|
pubkey?: string | undefined;
|
|
13614
13878
|
mezon_id?: string | undefined;
|
|
13615
13879
|
app_token?: string | undefined;
|
|
13880
|
+
app_url?: string | undefined;
|
|
13881
|
+
is_bot?: boolean | undefined;
|
|
13616
13882
|
} & { [K_20 in Exclude<keyof I["caller"], keyof UserProfileRedis>]: never; }) | undefined;
|
|
13617
13883
|
create_time_second?: number | undefined;
|
|
13618
13884
|
active?: number | undefined;
|
|
@@ -13636,7 +13902,7 @@ export declare const UserChannelAdded: {
|
|
|
13636
13902
|
sender_id?: string | undefined;
|
|
13637
13903
|
content?: string | undefined;
|
|
13638
13904
|
attachment?: string | undefined;
|
|
13639
|
-
|
|
13905
|
+
reference?: string | undefined;
|
|
13640
13906
|
mention?: string | undefined;
|
|
13641
13907
|
reaction?: string | undefined;
|
|
13642
13908
|
repliers?: string[] | undefined;
|
|
@@ -13647,7 +13913,7 @@ export declare const UserChannelAdded: {
|
|
|
13647
13913
|
sender_id?: string | undefined;
|
|
13648
13914
|
content?: string | undefined;
|
|
13649
13915
|
attachment?: string | undefined;
|
|
13650
|
-
|
|
13916
|
+
reference?: string | undefined;
|
|
13651
13917
|
mention?: string | undefined;
|
|
13652
13918
|
reaction?: string | undefined;
|
|
13653
13919
|
repliers?: string[] | undefined;
|
|
@@ -13664,7 +13930,7 @@ export declare const UserChannelAdded: {
|
|
|
13664
13930
|
metadata?: string[] | undefined;
|
|
13665
13931
|
about_me?: string[] | undefined;
|
|
13666
13932
|
clan_name?: string | undefined;
|
|
13667
|
-
|
|
13933
|
+
app_id?: string | undefined;
|
|
13668
13934
|
is_mute?: boolean | undefined;
|
|
13669
13935
|
age_restricted?: number | undefined;
|
|
13670
13936
|
topic?: string | undefined;
|
|
@@ -13691,6 +13957,8 @@ export declare const UserChannelAdded: {
|
|
|
13691
13957
|
pubkey?: string | undefined;
|
|
13692
13958
|
mezon_id?: string | undefined;
|
|
13693
13959
|
app_token?: string | undefined;
|
|
13960
|
+
app_url?: string | undefined;
|
|
13961
|
+
is_bot?: boolean | undefined;
|
|
13694
13962
|
}[] | undefined;
|
|
13695
13963
|
status?: string | undefined;
|
|
13696
13964
|
clan_id?: string | undefined;
|
|
@@ -13714,6 +13982,8 @@ export declare const UserChannelAdded: {
|
|
|
13714
13982
|
pubkey?: string | undefined;
|
|
13715
13983
|
mezon_id?: string | undefined;
|
|
13716
13984
|
app_token?: string | undefined;
|
|
13985
|
+
app_url?: string | undefined;
|
|
13986
|
+
is_bot?: boolean | undefined;
|
|
13717
13987
|
} | undefined;
|
|
13718
13988
|
create_time_second?: number | undefined;
|
|
13719
13989
|
active?: number | undefined;
|
|
@@ -13736,7 +14006,7 @@ export declare const UserChannelAdded: {
|
|
|
13736
14006
|
sender_id?: string | undefined;
|
|
13737
14007
|
content?: string | undefined;
|
|
13738
14008
|
attachment?: string | undefined;
|
|
13739
|
-
|
|
14009
|
+
reference?: string | undefined;
|
|
13740
14010
|
mention?: string | undefined;
|
|
13741
14011
|
reaction?: string | undefined;
|
|
13742
14012
|
repliers?: string[] | undefined;
|
|
@@ -13747,7 +14017,7 @@ export declare const UserChannelAdded: {
|
|
|
13747
14017
|
sender_id?: string | undefined;
|
|
13748
14018
|
content?: string | undefined;
|
|
13749
14019
|
attachment?: string | undefined;
|
|
13750
|
-
|
|
14020
|
+
reference?: string | undefined;
|
|
13751
14021
|
mention?: string | undefined;
|
|
13752
14022
|
reaction?: string | undefined;
|
|
13753
14023
|
repliers?: string[] | undefined;
|
|
@@ -13764,7 +14034,7 @@ export declare const UserChannelAdded: {
|
|
|
13764
14034
|
metadata?: string[] | undefined;
|
|
13765
14035
|
about_me?: string[] | undefined;
|
|
13766
14036
|
clan_name?: string | undefined;
|
|
13767
|
-
|
|
14037
|
+
app_id?: string | undefined;
|
|
13768
14038
|
is_mute?: boolean | undefined;
|
|
13769
14039
|
age_restricted?: number | undefined;
|
|
13770
14040
|
topic?: string | undefined;
|
|
@@ -13788,7 +14058,7 @@ export declare const UserChannelAdded: {
|
|
|
13788
14058
|
sender_id?: string | undefined;
|
|
13789
14059
|
content?: string | undefined;
|
|
13790
14060
|
attachment?: string | undefined;
|
|
13791
|
-
|
|
14061
|
+
reference?: string | undefined;
|
|
13792
14062
|
mention?: string | undefined;
|
|
13793
14063
|
reaction?: string | undefined;
|
|
13794
14064
|
repliers?: string[] | undefined;
|
|
@@ -13798,7 +14068,7 @@ export declare const UserChannelAdded: {
|
|
|
13798
14068
|
sender_id?: string | undefined;
|
|
13799
14069
|
content?: string | undefined;
|
|
13800
14070
|
attachment?: string | undefined;
|
|
13801
|
-
|
|
14071
|
+
reference?: string | undefined;
|
|
13802
14072
|
mention?: string | undefined;
|
|
13803
14073
|
reaction?: string | undefined;
|
|
13804
14074
|
repliers?: (string[] & string[] & { [K_24 in Exclude<keyof I_1["channel_desc"]["last_sent_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
@@ -13809,7 +14079,7 @@ export declare const UserChannelAdded: {
|
|
|
13809
14079
|
sender_id?: string | undefined;
|
|
13810
14080
|
content?: string | undefined;
|
|
13811
14081
|
attachment?: string | undefined;
|
|
13812
|
-
|
|
14082
|
+
reference?: string | undefined;
|
|
13813
14083
|
mention?: string | undefined;
|
|
13814
14084
|
reaction?: string | undefined;
|
|
13815
14085
|
repliers?: string[] | undefined;
|
|
@@ -13819,7 +14089,7 @@ export declare const UserChannelAdded: {
|
|
|
13819
14089
|
sender_id?: string | undefined;
|
|
13820
14090
|
content?: string | undefined;
|
|
13821
14091
|
attachment?: string | undefined;
|
|
13822
|
-
|
|
14092
|
+
reference?: string | undefined;
|
|
13823
14093
|
mention?: string | undefined;
|
|
13824
14094
|
reaction?: string | undefined;
|
|
13825
14095
|
repliers?: (string[] & string[] & { [K_26 in Exclude<keyof I_1["channel_desc"]["last_seen_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
@@ -13836,7 +14106,7 @@ export declare const UserChannelAdded: {
|
|
|
13836
14106
|
metadata?: (string[] & string[] & { [K_30 in Exclude<keyof I_1["channel_desc"]["metadata"], keyof string[]>]: never; }) | undefined;
|
|
13837
14107
|
about_me?: (string[] & string[] & { [K_31 in Exclude<keyof I_1["channel_desc"]["about_me"], keyof string[]>]: never; }) | undefined;
|
|
13838
14108
|
clan_name?: string | undefined;
|
|
13839
|
-
|
|
14109
|
+
app_id?: string | undefined;
|
|
13840
14110
|
is_mute?: boolean | undefined;
|
|
13841
14111
|
age_restricted?: number | undefined;
|
|
13842
14112
|
topic?: string | undefined;
|
|
@@ -13863,6 +14133,8 @@ export declare const UserChannelAdded: {
|
|
|
13863
14133
|
pubkey?: string | undefined;
|
|
13864
14134
|
mezon_id?: string | undefined;
|
|
13865
14135
|
app_token?: string | undefined;
|
|
14136
|
+
app_url?: string | undefined;
|
|
14137
|
+
is_bot?: boolean | undefined;
|
|
13866
14138
|
}[] & ({
|
|
13867
14139
|
user_id?: string | undefined;
|
|
13868
14140
|
username?: string | undefined;
|
|
@@ -13883,6 +14155,8 @@ export declare const UserChannelAdded: {
|
|
|
13883
14155
|
pubkey?: string | undefined;
|
|
13884
14156
|
mezon_id?: string | undefined;
|
|
13885
14157
|
app_token?: string | undefined;
|
|
14158
|
+
app_url?: string | undefined;
|
|
14159
|
+
is_bot?: boolean | undefined;
|
|
13886
14160
|
} & {
|
|
13887
14161
|
user_id?: string | undefined;
|
|
13888
14162
|
username?: string | undefined;
|
|
@@ -13915,6 +14189,8 @@ export declare const UserChannelAdded: {
|
|
|
13915
14189
|
pubkey?: string | undefined;
|
|
13916
14190
|
mezon_id?: string | undefined;
|
|
13917
14191
|
app_token?: string | undefined;
|
|
14192
|
+
app_url?: string | undefined;
|
|
14193
|
+
is_bot?: boolean | undefined;
|
|
13918
14194
|
} & { [K_37 in Exclude<keyof I_1["users"][number], keyof UserProfileRedis>]: never; })[] & { [K_38 in Exclude<keyof I_1["users"], keyof {
|
|
13919
14195
|
user_id?: string | undefined;
|
|
13920
14196
|
username?: string | undefined;
|
|
@@ -13935,6 +14211,8 @@ export declare const UserChannelAdded: {
|
|
|
13935
14211
|
pubkey?: string | undefined;
|
|
13936
14212
|
mezon_id?: string | undefined;
|
|
13937
14213
|
app_token?: string | undefined;
|
|
14214
|
+
app_url?: string | undefined;
|
|
14215
|
+
is_bot?: boolean | undefined;
|
|
13938
14216
|
}[]>]: never; }) | undefined;
|
|
13939
14217
|
status?: string | undefined;
|
|
13940
14218
|
clan_id?: string | undefined;
|
|
@@ -13958,6 +14236,8 @@ export declare const UserChannelAdded: {
|
|
|
13958
14236
|
pubkey?: string | undefined;
|
|
13959
14237
|
mezon_id?: string | undefined;
|
|
13960
14238
|
app_token?: string | undefined;
|
|
14239
|
+
app_url?: string | undefined;
|
|
14240
|
+
is_bot?: boolean | undefined;
|
|
13961
14241
|
} & {
|
|
13962
14242
|
user_id?: string | undefined;
|
|
13963
14243
|
username?: string | undefined;
|
|
@@ -13990,6 +14270,8 @@ export declare const UserChannelAdded: {
|
|
|
13990
14270
|
pubkey?: string | undefined;
|
|
13991
14271
|
mezon_id?: string | undefined;
|
|
13992
14272
|
app_token?: string | undefined;
|
|
14273
|
+
app_url?: string | undefined;
|
|
14274
|
+
is_bot?: boolean | undefined;
|
|
13993
14275
|
} & { [K_42 in Exclude<keyof I_1["caller"], keyof UserProfileRedis>]: never; }) | undefined;
|
|
13994
14276
|
create_time_second?: number | undefined;
|
|
13995
14277
|
active?: number | undefined;
|
|
@@ -14180,6 +14462,8 @@ export declare const UserProfileRedis: {
|
|
|
14180
14462
|
pubkey?: string | undefined;
|
|
14181
14463
|
mezon_id?: string | undefined;
|
|
14182
14464
|
app_token?: string | undefined;
|
|
14465
|
+
app_url?: string | undefined;
|
|
14466
|
+
is_bot?: boolean | undefined;
|
|
14183
14467
|
} & {
|
|
14184
14468
|
user_id?: string | undefined;
|
|
14185
14469
|
username?: string | undefined;
|
|
@@ -14212,6 +14496,8 @@ export declare const UserProfileRedis: {
|
|
|
14212
14496
|
pubkey?: string | undefined;
|
|
14213
14497
|
mezon_id?: string | undefined;
|
|
14214
14498
|
app_token?: string | undefined;
|
|
14499
|
+
app_url?: string | undefined;
|
|
14500
|
+
is_bot?: boolean | undefined;
|
|
14215
14501
|
} & { [K_3 in Exclude<keyof I, keyof UserProfileRedis>]: never; }>(base?: I | undefined): UserProfileRedis;
|
|
14216
14502
|
fromPartial<I_1 extends {
|
|
14217
14503
|
user_id?: string | undefined;
|
|
@@ -14233,6 +14519,8 @@ export declare const UserProfileRedis: {
|
|
|
14233
14519
|
pubkey?: string | undefined;
|
|
14234
14520
|
mezon_id?: string | undefined;
|
|
14235
14521
|
app_token?: string | undefined;
|
|
14522
|
+
app_url?: string | undefined;
|
|
14523
|
+
is_bot?: boolean | undefined;
|
|
14236
14524
|
} & {
|
|
14237
14525
|
user_id?: string | undefined;
|
|
14238
14526
|
username?: string | undefined;
|
|
@@ -14265,6 +14553,8 @@ export declare const UserProfileRedis: {
|
|
|
14265
14553
|
pubkey?: string | undefined;
|
|
14266
14554
|
mezon_id?: string | undefined;
|
|
14267
14555
|
app_token?: string | undefined;
|
|
14556
|
+
app_url?: string | undefined;
|
|
14557
|
+
is_bot?: boolean | undefined;
|
|
14268
14558
|
} & { [K_7 in Exclude<keyof I_1, keyof UserProfileRedis>]: never; }>(object: I_1): UserProfileRedis;
|
|
14269
14559
|
};
|
|
14270
14560
|
export declare const FCMTokens: {
|
|
@@ -14842,7 +15132,7 @@ export declare const SdTopicEvent: {
|
|
|
14842
15132
|
sender_id?: string | undefined;
|
|
14843
15133
|
content?: string | undefined;
|
|
14844
15134
|
attachment?: string | undefined;
|
|
14845
|
-
|
|
15135
|
+
reference?: string | undefined;
|
|
14846
15136
|
mention?: string | undefined;
|
|
14847
15137
|
reaction?: string | undefined;
|
|
14848
15138
|
repliers?: string[] | undefined;
|
|
@@ -14888,7 +15178,7 @@ export declare const SdTopicEvent: {
|
|
|
14888
15178
|
sender_id?: string | undefined;
|
|
14889
15179
|
content?: string | undefined;
|
|
14890
15180
|
attachment?: string | undefined;
|
|
14891
|
-
|
|
15181
|
+
reference?: string | undefined;
|
|
14892
15182
|
mention?: string | undefined;
|
|
14893
15183
|
reaction?: string | undefined;
|
|
14894
15184
|
repliers?: string[] | undefined;
|
|
@@ -14898,7 +15188,7 @@ export declare const SdTopicEvent: {
|
|
|
14898
15188
|
sender_id?: string | undefined;
|
|
14899
15189
|
content?: string | undefined;
|
|
14900
15190
|
attachment?: string | undefined;
|
|
14901
|
-
|
|
15191
|
+
reference?: string | undefined;
|
|
14902
15192
|
mention?: string | undefined;
|
|
14903
15193
|
reaction?: string | undefined;
|
|
14904
15194
|
repliers?: (string[] & string[] & { [K in Exclude<keyof I["last_sent_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
@@ -14973,7 +15263,7 @@ export declare const SdTopicEvent: {
|
|
|
14973
15263
|
sender_id?: string | undefined;
|
|
14974
15264
|
content?: string | undefined;
|
|
14975
15265
|
attachment?: string | undefined;
|
|
14976
|
-
|
|
15266
|
+
reference?: string | undefined;
|
|
14977
15267
|
mention?: string | undefined;
|
|
14978
15268
|
reaction?: string | undefined;
|
|
14979
15269
|
repliers?: string[] | undefined;
|
|
@@ -15019,7 +15309,7 @@ export declare const SdTopicEvent: {
|
|
|
15019
15309
|
sender_id?: string | undefined;
|
|
15020
15310
|
content?: string | undefined;
|
|
15021
15311
|
attachment?: string | undefined;
|
|
15022
|
-
|
|
15312
|
+
reference?: string | undefined;
|
|
15023
15313
|
mention?: string | undefined;
|
|
15024
15314
|
reaction?: string | undefined;
|
|
15025
15315
|
repliers?: string[] | undefined;
|
|
@@ -15029,7 +15319,7 @@ export declare const SdTopicEvent: {
|
|
|
15029
15319
|
sender_id?: string | undefined;
|
|
15030
15320
|
content?: string | undefined;
|
|
15031
15321
|
attachment?: string | undefined;
|
|
15032
|
-
|
|
15322
|
+
reference?: string | undefined;
|
|
15033
15323
|
mention?: string | undefined;
|
|
15034
15324
|
reaction?: string | undefined;
|
|
15035
15325
|
repliers?: (string[] & string[] & { [K_4 in Exclude<keyof I_1["last_sent_message"]["repliers"], keyof string[]>]: never; }) | undefined;
|
|
@@ -15197,6 +15487,50 @@ export declare const UnpinMessageEvent: {
|
|
|
15197
15487
|
clan_id?: string | undefined;
|
|
15198
15488
|
} & { [K_1 in Exclude<keyof I_1, keyof UnpinMessageEvent>]: never; }>(object: I_1): UnpinMessageEvent;
|
|
15199
15489
|
};
|
|
15490
|
+
export declare const HandleParticipantMeetStateEvent: {
|
|
15491
|
+
encode(message: HandleParticipantMeetStateEvent, writer?: _m0.Writer): _m0.Writer;
|
|
15492
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): HandleParticipantMeetStateEvent;
|
|
15493
|
+
fromJSON(object: any): HandleParticipantMeetStateEvent;
|
|
15494
|
+
toJSON(message: HandleParticipantMeetStateEvent): unknown;
|
|
15495
|
+
create<I extends {
|
|
15496
|
+
clan_id?: string | undefined;
|
|
15497
|
+
channel_id?: string | undefined;
|
|
15498
|
+
display_name?: string | undefined;
|
|
15499
|
+
state?: number | undefined;
|
|
15500
|
+
} & {
|
|
15501
|
+
clan_id?: string | undefined;
|
|
15502
|
+
channel_id?: string | undefined;
|
|
15503
|
+
display_name?: string | undefined;
|
|
15504
|
+
state?: number | undefined;
|
|
15505
|
+
} & { [K in Exclude<keyof I, keyof HandleParticipantMeetStateEvent>]: never; }>(base?: I | undefined): HandleParticipantMeetStateEvent;
|
|
15506
|
+
fromPartial<I_1 extends {
|
|
15507
|
+
clan_id?: string | undefined;
|
|
15508
|
+
channel_id?: string | undefined;
|
|
15509
|
+
display_name?: string | undefined;
|
|
15510
|
+
state?: number | undefined;
|
|
15511
|
+
} & {
|
|
15512
|
+
clan_id?: string | undefined;
|
|
15513
|
+
channel_id?: string | undefined;
|
|
15514
|
+
display_name?: string | undefined;
|
|
15515
|
+
state?: number | undefined;
|
|
15516
|
+
} & { [K_1 in Exclude<keyof I_1, keyof HandleParticipantMeetStateEvent>]: never; }>(object: I_1): HandleParticipantMeetStateEvent;
|
|
15517
|
+
};
|
|
15518
|
+
export declare const DeleteAccountEvent: {
|
|
15519
|
+
encode(message: DeleteAccountEvent, writer?: _m0.Writer): _m0.Writer;
|
|
15520
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): DeleteAccountEvent;
|
|
15521
|
+
fromJSON(object: any): DeleteAccountEvent;
|
|
15522
|
+
toJSON(message: DeleteAccountEvent): unknown;
|
|
15523
|
+
create<I extends {
|
|
15524
|
+
user_id?: string | undefined;
|
|
15525
|
+
} & {
|
|
15526
|
+
user_id?: string | undefined;
|
|
15527
|
+
} & { [K in Exclude<keyof I, "user_id">]: never; }>(base?: I | undefined): DeleteAccountEvent;
|
|
15528
|
+
fromPartial<I_1 extends {
|
|
15529
|
+
user_id?: string | undefined;
|
|
15530
|
+
} & {
|
|
15531
|
+
user_id?: string | undefined;
|
|
15532
|
+
} & { [K_1 in Exclude<keyof I_1, "user_id">]: never; }>(object: I_1): DeleteAccountEvent;
|
|
15533
|
+
};
|
|
15200
15534
|
type Builtin = Date | Function | Uint8Array | string | number | boolean | undefined;
|
|
15201
15535
|
export type DeepPartial<T> = T extends Builtin ? T : T extends globalThis.Array<infer U> ? globalThis.Array<DeepPartial<U>> : T extends ReadonlyArray<infer U> ? ReadonlyArray<DeepPartial<U>> : T extends {} ? {
|
|
15202
15536
|
[K in keyof T]?: DeepPartial<T[K]>;
|