mezon-js-protobuf 1.8.23 → 1.8.25
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/api/api.ts +220 -51
- package/dist/mezon-js-protobuf/api/api.d.ts +125 -51
- package/dist/mezon-js-protobuf/rtapi/realtime.d.ts +693 -593
- package/dist/mezon-js-protobuf.cjs.js +100 -9
- package/dist/mezon-js-protobuf.esm.mjs +100 -9
- package/package.json +1 -1
- package/rtapi/realtime.ts +72 -0
|
@@ -984,6 +984,10 @@ export interface ClanDesc {
|
|
|
984
984
|
onboarding_banner: string;
|
|
985
985
|
/** clan order */
|
|
986
986
|
clan_order: number;
|
|
987
|
+
/** is community */
|
|
988
|
+
is_community: boolean;
|
|
989
|
+
/** community banner */
|
|
990
|
+
community_banner: string;
|
|
987
991
|
}
|
|
988
992
|
/** Clan information */
|
|
989
993
|
export interface CreateClanDescRequest {
|
|
@@ -1002,7 +1006,7 @@ export interface UpdateClanDescRequest {
|
|
|
1002
1006
|
/** Clan logo */
|
|
1003
1007
|
logo: string;
|
|
1004
1008
|
/** Clan banner */
|
|
1005
|
-
banner: string;
|
|
1009
|
+
banner: string | undefined;
|
|
1006
1010
|
/** Clan status */
|
|
1007
1011
|
status: number;
|
|
1008
1012
|
/** Is onboarding. */
|
|
@@ -1010,7 +1014,15 @@ export interface UpdateClanDescRequest {
|
|
|
1010
1014
|
/** Welcome channel id. */
|
|
1011
1015
|
welcome_channel_id: string;
|
|
1012
1016
|
/** Onboarding_banner. */
|
|
1013
|
-
onboarding_banner: string;
|
|
1017
|
+
onboarding_banner: string | undefined;
|
|
1018
|
+
/** Enable community. */
|
|
1019
|
+
is_community: boolean | undefined;
|
|
1020
|
+
/** Community banner. */
|
|
1021
|
+
community_banner: string | undefined;
|
|
1022
|
+
/** string description */
|
|
1023
|
+
description: string;
|
|
1024
|
+
/** about */
|
|
1025
|
+
about: string;
|
|
1014
1026
|
}
|
|
1015
1027
|
/** Delete a clan the user has access to. */
|
|
1016
1028
|
export interface DeleteClanDescRequest {
|
|
@@ -1451,8 +1463,14 @@ export interface NotificationSetting {
|
|
|
1451
1463
|
}
|
|
1452
1464
|
/** */
|
|
1453
1465
|
export interface DeletePinMessage {
|
|
1466
|
+
/** */
|
|
1467
|
+
id: string;
|
|
1454
1468
|
/** */
|
|
1455
1469
|
message_id: string;
|
|
1470
|
+
/** */
|
|
1471
|
+
channel_id: string;
|
|
1472
|
+
/** */
|
|
1473
|
+
clan_id: string;
|
|
1456
1474
|
}
|
|
1457
1475
|
/** */
|
|
1458
1476
|
export interface PinMessage {
|
|
@@ -1847,11 +1865,11 @@ export interface SearchMessageDocument {
|
|
|
1847
1865
|
/** The message ID. */
|
|
1848
1866
|
message_id: string;
|
|
1849
1867
|
/** The channel ID. */
|
|
1850
|
-
channel_id:
|
|
1868
|
+
channel_id: string;
|
|
1851
1869
|
/** The clan ID. */
|
|
1852
|
-
clan_id:
|
|
1870
|
+
clan_id: string;
|
|
1853
1871
|
/** The user ID of sender. */
|
|
1854
|
-
sender_id:
|
|
1872
|
+
sender_id: string;
|
|
1855
1873
|
/** Message content */
|
|
1856
1874
|
content: string;
|
|
1857
1875
|
/** Mention users */
|
|
@@ -2662,9 +2680,9 @@ export interface TokenSentEvent {
|
|
|
2662
2680
|
amount: number;
|
|
2663
2681
|
/** note */
|
|
2664
2682
|
note: string;
|
|
2665
|
-
/**
|
|
2683
|
+
/** extra attribute */
|
|
2666
2684
|
extra_attribute: string;
|
|
2667
|
-
/**
|
|
2685
|
+
/** transaction id */
|
|
2668
2686
|
transaction_id: string;
|
|
2669
2687
|
}
|
|
2670
2688
|
export interface UnlockItemRequest {
|
|
@@ -9765,6 +9783,8 @@ export declare const ClanDesc: {
|
|
|
9765
9783
|
welcome_channel_id?: string | undefined;
|
|
9766
9784
|
onboarding_banner?: string | undefined;
|
|
9767
9785
|
clan_order?: number | undefined;
|
|
9786
|
+
is_community?: boolean | undefined;
|
|
9787
|
+
community_banner?: string | undefined;
|
|
9768
9788
|
} & {
|
|
9769
9789
|
creator_id?: string | undefined;
|
|
9770
9790
|
clan_name?: string | undefined;
|
|
@@ -9777,6 +9797,8 @@ export declare const ClanDesc: {
|
|
|
9777
9797
|
welcome_channel_id?: string | undefined;
|
|
9778
9798
|
onboarding_banner?: string | undefined;
|
|
9779
9799
|
clan_order?: number | undefined;
|
|
9800
|
+
is_community?: boolean | undefined;
|
|
9801
|
+
community_banner?: string | undefined;
|
|
9780
9802
|
} & { [K in Exclude<keyof I, keyof ClanDesc>]: never; }>(base?: I | undefined): ClanDesc;
|
|
9781
9803
|
fromPartial<I_1 extends {
|
|
9782
9804
|
creator_id?: string | undefined;
|
|
@@ -9790,6 +9812,8 @@ export declare const ClanDesc: {
|
|
|
9790
9812
|
welcome_channel_id?: string | undefined;
|
|
9791
9813
|
onboarding_banner?: string | undefined;
|
|
9792
9814
|
clan_order?: number | undefined;
|
|
9815
|
+
is_community?: boolean | undefined;
|
|
9816
|
+
community_banner?: string | undefined;
|
|
9793
9817
|
} & {
|
|
9794
9818
|
creator_id?: string | undefined;
|
|
9795
9819
|
clan_name?: string | undefined;
|
|
@@ -9802,6 +9826,8 @@ export declare const ClanDesc: {
|
|
|
9802
9826
|
welcome_channel_id?: string | undefined;
|
|
9803
9827
|
onboarding_banner?: string | undefined;
|
|
9804
9828
|
clan_order?: number | undefined;
|
|
9829
|
+
is_community?: boolean | undefined;
|
|
9830
|
+
community_banner?: string | undefined;
|
|
9805
9831
|
} & { [K_1 in Exclude<keyof I_1, keyof ClanDesc>]: never; }>(object: I_1): ClanDesc;
|
|
9806
9832
|
};
|
|
9807
9833
|
export declare const CreateClanDescRequest: {
|
|
@@ -9842,6 +9868,10 @@ export declare const UpdateClanDescRequest: {
|
|
|
9842
9868
|
is_onboarding?: boolean | undefined;
|
|
9843
9869
|
welcome_channel_id?: string | undefined;
|
|
9844
9870
|
onboarding_banner?: string | undefined;
|
|
9871
|
+
is_community?: boolean | undefined;
|
|
9872
|
+
community_banner?: string | undefined;
|
|
9873
|
+
description?: string | undefined;
|
|
9874
|
+
about?: string | undefined;
|
|
9845
9875
|
} & {
|
|
9846
9876
|
clan_id?: string | undefined;
|
|
9847
9877
|
clan_name?: string | undefined;
|
|
@@ -9851,6 +9881,10 @@ export declare const UpdateClanDescRequest: {
|
|
|
9851
9881
|
is_onboarding?: boolean | undefined;
|
|
9852
9882
|
welcome_channel_id?: string | undefined;
|
|
9853
9883
|
onboarding_banner?: string | undefined;
|
|
9884
|
+
is_community?: boolean | undefined;
|
|
9885
|
+
community_banner?: string | undefined;
|
|
9886
|
+
description?: string | undefined;
|
|
9887
|
+
about?: string | undefined;
|
|
9854
9888
|
} & { [K in Exclude<keyof I, keyof UpdateClanDescRequest>]: never; }>(base?: I | undefined): UpdateClanDescRequest;
|
|
9855
9889
|
fromPartial<I_1 extends {
|
|
9856
9890
|
clan_id?: string | undefined;
|
|
@@ -9861,6 +9895,10 @@ export declare const UpdateClanDescRequest: {
|
|
|
9861
9895
|
is_onboarding?: boolean | undefined;
|
|
9862
9896
|
welcome_channel_id?: string | undefined;
|
|
9863
9897
|
onboarding_banner?: string | undefined;
|
|
9898
|
+
is_community?: boolean | undefined;
|
|
9899
|
+
community_banner?: string | undefined;
|
|
9900
|
+
description?: string | undefined;
|
|
9901
|
+
about?: string | undefined;
|
|
9864
9902
|
} & {
|
|
9865
9903
|
clan_id?: string | undefined;
|
|
9866
9904
|
clan_name?: string | undefined;
|
|
@@ -9870,6 +9908,10 @@ export declare const UpdateClanDescRequest: {
|
|
|
9870
9908
|
is_onboarding?: boolean | undefined;
|
|
9871
9909
|
welcome_channel_id?: string | undefined;
|
|
9872
9910
|
onboarding_banner?: string | undefined;
|
|
9911
|
+
is_community?: boolean | undefined;
|
|
9912
|
+
community_banner?: string | undefined;
|
|
9913
|
+
description?: string | undefined;
|
|
9914
|
+
about?: string | undefined;
|
|
9873
9915
|
} & { [K_1 in Exclude<keyof I_1, keyof UpdateClanDescRequest>]: never; }>(object: I_1): UpdateClanDescRequest;
|
|
9874
9916
|
};
|
|
9875
9917
|
export declare const DeleteClanDescRequest: {
|
|
@@ -9930,6 +9972,8 @@ export declare const ClanDescList: {
|
|
|
9930
9972
|
welcome_channel_id?: string | undefined;
|
|
9931
9973
|
onboarding_banner?: string | undefined;
|
|
9932
9974
|
clan_order?: number | undefined;
|
|
9975
|
+
is_community?: boolean | undefined;
|
|
9976
|
+
community_banner?: string | undefined;
|
|
9933
9977
|
}[] | undefined;
|
|
9934
9978
|
} & {
|
|
9935
9979
|
clandesc?: ({
|
|
@@ -9944,6 +9988,8 @@ export declare const ClanDescList: {
|
|
|
9944
9988
|
welcome_channel_id?: string | undefined;
|
|
9945
9989
|
onboarding_banner?: string | undefined;
|
|
9946
9990
|
clan_order?: number | undefined;
|
|
9991
|
+
is_community?: boolean | undefined;
|
|
9992
|
+
community_banner?: string | undefined;
|
|
9947
9993
|
}[] & ({
|
|
9948
9994
|
creator_id?: string | undefined;
|
|
9949
9995
|
clan_name?: string | undefined;
|
|
@@ -9956,6 +10002,8 @@ export declare const ClanDescList: {
|
|
|
9956
10002
|
welcome_channel_id?: string | undefined;
|
|
9957
10003
|
onboarding_banner?: string | undefined;
|
|
9958
10004
|
clan_order?: number | undefined;
|
|
10005
|
+
is_community?: boolean | undefined;
|
|
10006
|
+
community_banner?: string | undefined;
|
|
9959
10007
|
} & {
|
|
9960
10008
|
creator_id?: string | undefined;
|
|
9961
10009
|
clan_name?: string | undefined;
|
|
@@ -9968,6 +10016,8 @@ export declare const ClanDescList: {
|
|
|
9968
10016
|
welcome_channel_id?: string | undefined;
|
|
9969
10017
|
onboarding_banner?: string | undefined;
|
|
9970
10018
|
clan_order?: number | undefined;
|
|
10019
|
+
is_community?: boolean | undefined;
|
|
10020
|
+
community_banner?: string | undefined;
|
|
9971
10021
|
} & { [K in Exclude<keyof I["clandesc"][number], keyof ClanDesc>]: never; })[] & { [K_1 in Exclude<keyof I["clandesc"], keyof {
|
|
9972
10022
|
creator_id?: string | undefined;
|
|
9973
10023
|
clan_name?: string | undefined;
|
|
@@ -9980,6 +10030,8 @@ export declare const ClanDescList: {
|
|
|
9980
10030
|
welcome_channel_id?: string | undefined;
|
|
9981
10031
|
onboarding_banner?: string | undefined;
|
|
9982
10032
|
clan_order?: number | undefined;
|
|
10033
|
+
is_community?: boolean | undefined;
|
|
10034
|
+
community_banner?: string | undefined;
|
|
9983
10035
|
}[]>]: never; }) | undefined;
|
|
9984
10036
|
} & { [K_2 in Exclude<keyof I, "clandesc">]: never; }>(base?: I | undefined): ClanDescList;
|
|
9985
10037
|
fromPartial<I_1 extends {
|
|
@@ -9995,6 +10047,8 @@ export declare const ClanDescList: {
|
|
|
9995
10047
|
welcome_channel_id?: string | undefined;
|
|
9996
10048
|
onboarding_banner?: string | undefined;
|
|
9997
10049
|
clan_order?: number | undefined;
|
|
10050
|
+
is_community?: boolean | undefined;
|
|
10051
|
+
community_banner?: string | undefined;
|
|
9998
10052
|
}[] | undefined;
|
|
9999
10053
|
} & {
|
|
10000
10054
|
clandesc?: ({
|
|
@@ -10009,6 +10063,8 @@ export declare const ClanDescList: {
|
|
|
10009
10063
|
welcome_channel_id?: string | undefined;
|
|
10010
10064
|
onboarding_banner?: string | undefined;
|
|
10011
10065
|
clan_order?: number | undefined;
|
|
10066
|
+
is_community?: boolean | undefined;
|
|
10067
|
+
community_banner?: string | undefined;
|
|
10012
10068
|
}[] & ({
|
|
10013
10069
|
creator_id?: string | undefined;
|
|
10014
10070
|
clan_name?: string | undefined;
|
|
@@ -10021,6 +10077,8 @@ export declare const ClanDescList: {
|
|
|
10021
10077
|
welcome_channel_id?: string | undefined;
|
|
10022
10078
|
onboarding_banner?: string | undefined;
|
|
10023
10079
|
clan_order?: number | undefined;
|
|
10080
|
+
is_community?: boolean | undefined;
|
|
10081
|
+
community_banner?: string | undefined;
|
|
10024
10082
|
} & {
|
|
10025
10083
|
creator_id?: string | undefined;
|
|
10026
10084
|
clan_name?: string | undefined;
|
|
@@ -10033,6 +10091,8 @@ export declare const ClanDescList: {
|
|
|
10033
10091
|
welcome_channel_id?: string | undefined;
|
|
10034
10092
|
onboarding_banner?: string | undefined;
|
|
10035
10093
|
clan_order?: number | undefined;
|
|
10094
|
+
is_community?: boolean | undefined;
|
|
10095
|
+
community_banner?: string | undefined;
|
|
10036
10096
|
} & { [K_3 in Exclude<keyof I_1["clandesc"][number], keyof ClanDesc>]: never; })[] & { [K_4 in Exclude<keyof I_1["clandesc"], keyof {
|
|
10037
10097
|
creator_id?: string | undefined;
|
|
10038
10098
|
clan_name?: string | undefined;
|
|
@@ -10045,6 +10105,8 @@ export declare const ClanDescList: {
|
|
|
10045
10105
|
welcome_channel_id?: string | undefined;
|
|
10046
10106
|
onboarding_banner?: string | undefined;
|
|
10047
10107
|
clan_order?: number | undefined;
|
|
10108
|
+
is_community?: boolean | undefined;
|
|
10109
|
+
community_banner?: string | undefined;
|
|
10048
10110
|
}[]>]: never; }) | undefined;
|
|
10049
10111
|
} & { [K_5 in Exclude<keyof I_1, "clandesc">]: never; }>(object: I_1): ClanDescList;
|
|
10050
10112
|
};
|
|
@@ -12708,15 +12770,27 @@ export declare const DeletePinMessage: {
|
|
|
12708
12770
|
fromJSON(object: any): DeletePinMessage;
|
|
12709
12771
|
toJSON(message: DeletePinMessage): unknown;
|
|
12710
12772
|
create<I extends {
|
|
12773
|
+
id?: string | undefined;
|
|
12711
12774
|
message_id?: string | undefined;
|
|
12775
|
+
channel_id?: string | undefined;
|
|
12776
|
+
clan_id?: string | undefined;
|
|
12712
12777
|
} & {
|
|
12778
|
+
id?: string | undefined;
|
|
12713
12779
|
message_id?: string | undefined;
|
|
12714
|
-
|
|
12780
|
+
channel_id?: string | undefined;
|
|
12781
|
+
clan_id?: string | undefined;
|
|
12782
|
+
} & { [K in Exclude<keyof I, keyof DeletePinMessage>]: never; }>(base?: I | undefined): DeletePinMessage;
|
|
12715
12783
|
fromPartial<I_1 extends {
|
|
12784
|
+
id?: string | undefined;
|
|
12716
12785
|
message_id?: string | undefined;
|
|
12786
|
+
channel_id?: string | undefined;
|
|
12787
|
+
clan_id?: string | undefined;
|
|
12717
12788
|
} & {
|
|
12789
|
+
id?: string | undefined;
|
|
12718
12790
|
message_id?: string | undefined;
|
|
12719
|
-
|
|
12791
|
+
channel_id?: string | undefined;
|
|
12792
|
+
clan_id?: string | undefined;
|
|
12793
|
+
} & { [K_1 in Exclude<keyof I_1, keyof DeletePinMessage>]: never; }>(object: I_1): DeletePinMessage;
|
|
12720
12794
|
};
|
|
12721
12795
|
export declare const PinMessage: {
|
|
12722
12796
|
encode(message: PinMessage, writer?: _m0.Writer): _m0.Writer;
|
|
@@ -15313,9 +15387,9 @@ export declare const SearchMessageDocument: {
|
|
|
15313
15387
|
toJSON(message: SearchMessageDocument): unknown;
|
|
15314
15388
|
create<I extends {
|
|
15315
15389
|
message_id?: string | undefined;
|
|
15316
|
-
channel_id?:
|
|
15317
|
-
clan_id?:
|
|
15318
|
-
sender_id?:
|
|
15390
|
+
channel_id?: string | undefined;
|
|
15391
|
+
clan_id?: string | undefined;
|
|
15392
|
+
sender_id?: string | undefined;
|
|
15319
15393
|
content?: string | undefined;
|
|
15320
15394
|
mentions?: string | undefined;
|
|
15321
15395
|
reactions?: string | undefined;
|
|
@@ -15339,9 +15413,9 @@ export declare const SearchMessageDocument: {
|
|
|
15339
15413
|
avatar_url?: string | undefined;
|
|
15340
15414
|
} & {
|
|
15341
15415
|
message_id?: string | undefined;
|
|
15342
|
-
channel_id?:
|
|
15343
|
-
clan_id?:
|
|
15344
|
-
sender_id?:
|
|
15416
|
+
channel_id?: string | undefined;
|
|
15417
|
+
clan_id?: string | undefined;
|
|
15418
|
+
sender_id?: string | undefined;
|
|
15345
15419
|
content?: string | undefined;
|
|
15346
15420
|
mentions?: string | undefined;
|
|
15347
15421
|
reactions?: string | undefined;
|
|
@@ -15390,9 +15464,9 @@ export declare const SearchMessageDocument: {
|
|
|
15390
15464
|
} & { [K_2 in Exclude<keyof I, keyof SearchMessageDocument>]: never; }>(base?: I | undefined): SearchMessageDocument;
|
|
15391
15465
|
fromPartial<I_1 extends {
|
|
15392
15466
|
message_id?: string | undefined;
|
|
15393
|
-
channel_id?:
|
|
15394
|
-
clan_id?:
|
|
15395
|
-
sender_id?:
|
|
15467
|
+
channel_id?: string | undefined;
|
|
15468
|
+
clan_id?: string | undefined;
|
|
15469
|
+
sender_id?: string | undefined;
|
|
15396
15470
|
content?: string | undefined;
|
|
15397
15471
|
mentions?: string | undefined;
|
|
15398
15472
|
reactions?: string | undefined;
|
|
@@ -15416,9 +15490,9 @@ export declare const SearchMessageDocument: {
|
|
|
15416
15490
|
avatar_url?: string | undefined;
|
|
15417
15491
|
} & {
|
|
15418
15492
|
message_id?: string | undefined;
|
|
15419
|
-
channel_id?:
|
|
15420
|
-
clan_id?:
|
|
15421
|
-
sender_id?:
|
|
15493
|
+
channel_id?: string | undefined;
|
|
15494
|
+
clan_id?: string | undefined;
|
|
15495
|
+
sender_id?: string | undefined;
|
|
15422
15496
|
content?: string | undefined;
|
|
15423
15497
|
mentions?: string | undefined;
|
|
15424
15498
|
reactions?: string | undefined;
|
|
@@ -15474,9 +15548,9 @@ export declare const SearchMessageResponse: {
|
|
|
15474
15548
|
create<I extends {
|
|
15475
15549
|
messages?: {
|
|
15476
15550
|
message_id?: string | undefined;
|
|
15477
|
-
channel_id?:
|
|
15478
|
-
clan_id?:
|
|
15479
|
-
sender_id?:
|
|
15551
|
+
channel_id?: string | undefined;
|
|
15552
|
+
clan_id?: string | undefined;
|
|
15553
|
+
sender_id?: string | undefined;
|
|
15480
15554
|
content?: string | undefined;
|
|
15481
15555
|
mentions?: string | undefined;
|
|
15482
15556
|
reactions?: string | undefined;
|
|
@@ -15503,9 +15577,9 @@ export declare const SearchMessageResponse: {
|
|
|
15503
15577
|
} & {
|
|
15504
15578
|
messages?: ({
|
|
15505
15579
|
message_id?: string | undefined;
|
|
15506
|
-
channel_id?:
|
|
15507
|
-
clan_id?:
|
|
15508
|
-
sender_id?:
|
|
15580
|
+
channel_id?: string | undefined;
|
|
15581
|
+
clan_id?: string | undefined;
|
|
15582
|
+
sender_id?: string | undefined;
|
|
15509
15583
|
content?: string | undefined;
|
|
15510
15584
|
mentions?: string | undefined;
|
|
15511
15585
|
reactions?: string | undefined;
|
|
@@ -15529,9 +15603,9 @@ export declare const SearchMessageResponse: {
|
|
|
15529
15603
|
avatar_url?: string | undefined;
|
|
15530
15604
|
}[] & ({
|
|
15531
15605
|
message_id?: string | undefined;
|
|
15532
|
-
channel_id?:
|
|
15533
|
-
clan_id?:
|
|
15534
|
-
sender_id?:
|
|
15606
|
+
channel_id?: string | undefined;
|
|
15607
|
+
clan_id?: string | undefined;
|
|
15608
|
+
sender_id?: string | undefined;
|
|
15535
15609
|
content?: string | undefined;
|
|
15536
15610
|
mentions?: string | undefined;
|
|
15537
15611
|
reactions?: string | undefined;
|
|
@@ -15555,9 +15629,9 @@ export declare const SearchMessageResponse: {
|
|
|
15555
15629
|
avatar_url?: string | undefined;
|
|
15556
15630
|
} & {
|
|
15557
15631
|
message_id?: string | undefined;
|
|
15558
|
-
channel_id?:
|
|
15559
|
-
clan_id?:
|
|
15560
|
-
sender_id?:
|
|
15632
|
+
channel_id?: string | undefined;
|
|
15633
|
+
clan_id?: string | undefined;
|
|
15634
|
+
sender_id?: string | undefined;
|
|
15561
15635
|
content?: string | undefined;
|
|
15562
15636
|
mentions?: string | undefined;
|
|
15563
15637
|
reactions?: string | undefined;
|
|
@@ -15605,9 +15679,9 @@ export declare const SearchMessageResponse: {
|
|
|
15605
15679
|
avatar_url?: string | undefined;
|
|
15606
15680
|
} & { [K_2 in Exclude<keyof I["messages"][number], keyof SearchMessageDocument>]: never; })[] & { [K_3 in Exclude<keyof I["messages"], keyof {
|
|
15607
15681
|
message_id?: string | undefined;
|
|
15608
|
-
channel_id?:
|
|
15609
|
-
clan_id?:
|
|
15610
|
-
sender_id?:
|
|
15682
|
+
channel_id?: string | undefined;
|
|
15683
|
+
clan_id?: string | undefined;
|
|
15684
|
+
sender_id?: string | undefined;
|
|
15611
15685
|
content?: string | undefined;
|
|
15612
15686
|
mentions?: string | undefined;
|
|
15613
15687
|
reactions?: string | undefined;
|
|
@@ -15635,9 +15709,9 @@ export declare const SearchMessageResponse: {
|
|
|
15635
15709
|
fromPartial<I_1 extends {
|
|
15636
15710
|
messages?: {
|
|
15637
15711
|
message_id?: string | undefined;
|
|
15638
|
-
channel_id?:
|
|
15639
|
-
clan_id?:
|
|
15640
|
-
sender_id?:
|
|
15712
|
+
channel_id?: string | undefined;
|
|
15713
|
+
clan_id?: string | undefined;
|
|
15714
|
+
sender_id?: string | undefined;
|
|
15641
15715
|
content?: string | undefined;
|
|
15642
15716
|
mentions?: string | undefined;
|
|
15643
15717
|
reactions?: string | undefined;
|
|
@@ -15664,9 +15738,9 @@ export declare const SearchMessageResponse: {
|
|
|
15664
15738
|
} & {
|
|
15665
15739
|
messages?: ({
|
|
15666
15740
|
message_id?: string | undefined;
|
|
15667
|
-
channel_id?:
|
|
15668
|
-
clan_id?:
|
|
15669
|
-
sender_id?:
|
|
15741
|
+
channel_id?: string | undefined;
|
|
15742
|
+
clan_id?: string | undefined;
|
|
15743
|
+
sender_id?: string | undefined;
|
|
15670
15744
|
content?: string | undefined;
|
|
15671
15745
|
mentions?: string | undefined;
|
|
15672
15746
|
reactions?: string | undefined;
|
|
@@ -15690,9 +15764,9 @@ export declare const SearchMessageResponse: {
|
|
|
15690
15764
|
avatar_url?: string | undefined;
|
|
15691
15765
|
}[] & ({
|
|
15692
15766
|
message_id?: string | undefined;
|
|
15693
|
-
channel_id?:
|
|
15694
|
-
clan_id?:
|
|
15695
|
-
sender_id?:
|
|
15767
|
+
channel_id?: string | undefined;
|
|
15768
|
+
clan_id?: string | undefined;
|
|
15769
|
+
sender_id?: string | undefined;
|
|
15696
15770
|
content?: string | undefined;
|
|
15697
15771
|
mentions?: string | undefined;
|
|
15698
15772
|
reactions?: string | undefined;
|
|
@@ -15716,9 +15790,9 @@ export declare const SearchMessageResponse: {
|
|
|
15716
15790
|
avatar_url?: string | undefined;
|
|
15717
15791
|
} & {
|
|
15718
15792
|
message_id?: string | undefined;
|
|
15719
|
-
channel_id?:
|
|
15720
|
-
clan_id?:
|
|
15721
|
-
sender_id?:
|
|
15793
|
+
channel_id?: string | undefined;
|
|
15794
|
+
clan_id?: string | undefined;
|
|
15795
|
+
sender_id?: string | undefined;
|
|
15722
15796
|
content?: string | undefined;
|
|
15723
15797
|
mentions?: string | undefined;
|
|
15724
15798
|
reactions?: string | undefined;
|
|
@@ -15766,9 +15840,9 @@ export declare const SearchMessageResponse: {
|
|
|
15766
15840
|
avatar_url?: string | undefined;
|
|
15767
15841
|
} & { [K_7 in Exclude<keyof I_1["messages"][number], keyof SearchMessageDocument>]: never; })[] & { [K_8 in Exclude<keyof I_1["messages"], keyof {
|
|
15768
15842
|
message_id?: string | undefined;
|
|
15769
|
-
channel_id?:
|
|
15770
|
-
clan_id?:
|
|
15771
|
-
sender_id?:
|
|
15843
|
+
channel_id?: string | undefined;
|
|
15844
|
+
clan_id?: string | undefined;
|
|
15845
|
+
sender_id?: string | undefined;
|
|
15772
15846
|
content?: string | undefined;
|
|
15773
15847
|
mentions?: string | undefined;
|
|
15774
15848
|
reactions?: string | undefined;
|