mezon-js-protobuf 1.8.23 → 1.8.24
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 +182 -51
- package/dist/mezon-js-protobuf/api/api.d.ts +113 -51
- package/dist/mezon-js-protobuf/rtapi/realtime.d.ts +669 -593
- package/dist/mezon-js-protobuf.cjs.js +67 -6
- package/dist/mezon-js-protobuf.esm.mjs +67 -6
- package/package.json +1 -1
- package/rtapi/realtime.ts +36 -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,11 @@ 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;
|
|
1014
1022
|
}
|
|
1015
1023
|
/** Delete a clan the user has access to. */
|
|
1016
1024
|
export interface DeleteClanDescRequest {
|
|
@@ -1451,8 +1459,14 @@ export interface NotificationSetting {
|
|
|
1451
1459
|
}
|
|
1452
1460
|
/** */
|
|
1453
1461
|
export interface DeletePinMessage {
|
|
1462
|
+
/** */
|
|
1463
|
+
id: string;
|
|
1454
1464
|
/** */
|
|
1455
1465
|
message_id: string;
|
|
1466
|
+
/** */
|
|
1467
|
+
channel_id: string;
|
|
1468
|
+
/** */
|
|
1469
|
+
clan_id: string;
|
|
1456
1470
|
}
|
|
1457
1471
|
/** */
|
|
1458
1472
|
export interface PinMessage {
|
|
@@ -1847,11 +1861,11 @@ export interface SearchMessageDocument {
|
|
|
1847
1861
|
/** The message ID. */
|
|
1848
1862
|
message_id: string;
|
|
1849
1863
|
/** The channel ID. */
|
|
1850
|
-
channel_id:
|
|
1864
|
+
channel_id: string;
|
|
1851
1865
|
/** The clan ID. */
|
|
1852
|
-
clan_id:
|
|
1866
|
+
clan_id: string;
|
|
1853
1867
|
/** The user ID of sender. */
|
|
1854
|
-
sender_id:
|
|
1868
|
+
sender_id: string;
|
|
1855
1869
|
/** Message content */
|
|
1856
1870
|
content: string;
|
|
1857
1871
|
/** Mention users */
|
|
@@ -2662,9 +2676,9 @@ export interface TokenSentEvent {
|
|
|
2662
2676
|
amount: number;
|
|
2663
2677
|
/** note */
|
|
2664
2678
|
note: string;
|
|
2665
|
-
/**
|
|
2679
|
+
/** extra attribute */
|
|
2666
2680
|
extra_attribute: string;
|
|
2667
|
-
/**
|
|
2681
|
+
/** transaction id */
|
|
2668
2682
|
transaction_id: string;
|
|
2669
2683
|
}
|
|
2670
2684
|
export interface UnlockItemRequest {
|
|
@@ -9765,6 +9779,8 @@ export declare const ClanDesc: {
|
|
|
9765
9779
|
welcome_channel_id?: string | undefined;
|
|
9766
9780
|
onboarding_banner?: string | undefined;
|
|
9767
9781
|
clan_order?: number | undefined;
|
|
9782
|
+
is_community?: boolean | undefined;
|
|
9783
|
+
community_banner?: string | undefined;
|
|
9768
9784
|
} & {
|
|
9769
9785
|
creator_id?: string | undefined;
|
|
9770
9786
|
clan_name?: string | undefined;
|
|
@@ -9777,6 +9793,8 @@ export declare const ClanDesc: {
|
|
|
9777
9793
|
welcome_channel_id?: string | undefined;
|
|
9778
9794
|
onboarding_banner?: string | undefined;
|
|
9779
9795
|
clan_order?: number | undefined;
|
|
9796
|
+
is_community?: boolean | undefined;
|
|
9797
|
+
community_banner?: string | undefined;
|
|
9780
9798
|
} & { [K in Exclude<keyof I, keyof ClanDesc>]: never; }>(base?: I | undefined): ClanDesc;
|
|
9781
9799
|
fromPartial<I_1 extends {
|
|
9782
9800
|
creator_id?: string | undefined;
|
|
@@ -9790,6 +9808,8 @@ export declare const ClanDesc: {
|
|
|
9790
9808
|
welcome_channel_id?: string | undefined;
|
|
9791
9809
|
onboarding_banner?: string | undefined;
|
|
9792
9810
|
clan_order?: number | undefined;
|
|
9811
|
+
is_community?: boolean | undefined;
|
|
9812
|
+
community_banner?: string | undefined;
|
|
9793
9813
|
} & {
|
|
9794
9814
|
creator_id?: string | undefined;
|
|
9795
9815
|
clan_name?: string | undefined;
|
|
@@ -9802,6 +9822,8 @@ export declare const ClanDesc: {
|
|
|
9802
9822
|
welcome_channel_id?: string | undefined;
|
|
9803
9823
|
onboarding_banner?: string | undefined;
|
|
9804
9824
|
clan_order?: number | undefined;
|
|
9825
|
+
is_community?: boolean | undefined;
|
|
9826
|
+
community_banner?: string | undefined;
|
|
9805
9827
|
} & { [K_1 in Exclude<keyof I_1, keyof ClanDesc>]: never; }>(object: I_1): ClanDesc;
|
|
9806
9828
|
};
|
|
9807
9829
|
export declare const CreateClanDescRequest: {
|
|
@@ -9842,6 +9864,8 @@ export declare const UpdateClanDescRequest: {
|
|
|
9842
9864
|
is_onboarding?: boolean | undefined;
|
|
9843
9865
|
welcome_channel_id?: string | undefined;
|
|
9844
9866
|
onboarding_banner?: string | undefined;
|
|
9867
|
+
is_community?: boolean | undefined;
|
|
9868
|
+
community_banner?: string | undefined;
|
|
9845
9869
|
} & {
|
|
9846
9870
|
clan_id?: string | undefined;
|
|
9847
9871
|
clan_name?: string | undefined;
|
|
@@ -9851,6 +9875,8 @@ export declare const UpdateClanDescRequest: {
|
|
|
9851
9875
|
is_onboarding?: boolean | undefined;
|
|
9852
9876
|
welcome_channel_id?: string | undefined;
|
|
9853
9877
|
onboarding_banner?: string | undefined;
|
|
9878
|
+
is_community?: boolean | undefined;
|
|
9879
|
+
community_banner?: string | undefined;
|
|
9854
9880
|
} & { [K in Exclude<keyof I, keyof UpdateClanDescRequest>]: never; }>(base?: I | undefined): UpdateClanDescRequest;
|
|
9855
9881
|
fromPartial<I_1 extends {
|
|
9856
9882
|
clan_id?: string | undefined;
|
|
@@ -9861,6 +9887,8 @@ export declare const UpdateClanDescRequest: {
|
|
|
9861
9887
|
is_onboarding?: boolean | undefined;
|
|
9862
9888
|
welcome_channel_id?: string | undefined;
|
|
9863
9889
|
onboarding_banner?: string | undefined;
|
|
9890
|
+
is_community?: boolean | undefined;
|
|
9891
|
+
community_banner?: string | undefined;
|
|
9864
9892
|
} & {
|
|
9865
9893
|
clan_id?: string | undefined;
|
|
9866
9894
|
clan_name?: string | undefined;
|
|
@@ -9870,6 +9898,8 @@ export declare const UpdateClanDescRequest: {
|
|
|
9870
9898
|
is_onboarding?: boolean | undefined;
|
|
9871
9899
|
welcome_channel_id?: string | undefined;
|
|
9872
9900
|
onboarding_banner?: string | undefined;
|
|
9901
|
+
is_community?: boolean | undefined;
|
|
9902
|
+
community_banner?: string | undefined;
|
|
9873
9903
|
} & { [K_1 in Exclude<keyof I_1, keyof UpdateClanDescRequest>]: never; }>(object: I_1): UpdateClanDescRequest;
|
|
9874
9904
|
};
|
|
9875
9905
|
export declare const DeleteClanDescRequest: {
|
|
@@ -9930,6 +9960,8 @@ export declare const ClanDescList: {
|
|
|
9930
9960
|
welcome_channel_id?: string | undefined;
|
|
9931
9961
|
onboarding_banner?: string | undefined;
|
|
9932
9962
|
clan_order?: number | undefined;
|
|
9963
|
+
is_community?: boolean | undefined;
|
|
9964
|
+
community_banner?: string | undefined;
|
|
9933
9965
|
}[] | undefined;
|
|
9934
9966
|
} & {
|
|
9935
9967
|
clandesc?: ({
|
|
@@ -9944,6 +9976,8 @@ export declare const ClanDescList: {
|
|
|
9944
9976
|
welcome_channel_id?: string | undefined;
|
|
9945
9977
|
onboarding_banner?: string | undefined;
|
|
9946
9978
|
clan_order?: number | undefined;
|
|
9979
|
+
is_community?: boolean | undefined;
|
|
9980
|
+
community_banner?: string | undefined;
|
|
9947
9981
|
}[] & ({
|
|
9948
9982
|
creator_id?: string | undefined;
|
|
9949
9983
|
clan_name?: string | undefined;
|
|
@@ -9956,6 +9990,8 @@ export declare const ClanDescList: {
|
|
|
9956
9990
|
welcome_channel_id?: string | undefined;
|
|
9957
9991
|
onboarding_banner?: string | undefined;
|
|
9958
9992
|
clan_order?: number | undefined;
|
|
9993
|
+
is_community?: boolean | undefined;
|
|
9994
|
+
community_banner?: string | undefined;
|
|
9959
9995
|
} & {
|
|
9960
9996
|
creator_id?: string | undefined;
|
|
9961
9997
|
clan_name?: string | undefined;
|
|
@@ -9968,6 +10004,8 @@ export declare const ClanDescList: {
|
|
|
9968
10004
|
welcome_channel_id?: string | undefined;
|
|
9969
10005
|
onboarding_banner?: string | undefined;
|
|
9970
10006
|
clan_order?: number | undefined;
|
|
10007
|
+
is_community?: boolean | undefined;
|
|
10008
|
+
community_banner?: string | undefined;
|
|
9971
10009
|
} & { [K in Exclude<keyof I["clandesc"][number], keyof ClanDesc>]: never; })[] & { [K_1 in Exclude<keyof I["clandesc"], keyof {
|
|
9972
10010
|
creator_id?: string | undefined;
|
|
9973
10011
|
clan_name?: string | undefined;
|
|
@@ -9980,6 +10018,8 @@ export declare const ClanDescList: {
|
|
|
9980
10018
|
welcome_channel_id?: string | undefined;
|
|
9981
10019
|
onboarding_banner?: string | undefined;
|
|
9982
10020
|
clan_order?: number | undefined;
|
|
10021
|
+
is_community?: boolean | undefined;
|
|
10022
|
+
community_banner?: string | undefined;
|
|
9983
10023
|
}[]>]: never; }) | undefined;
|
|
9984
10024
|
} & { [K_2 in Exclude<keyof I, "clandesc">]: never; }>(base?: I | undefined): ClanDescList;
|
|
9985
10025
|
fromPartial<I_1 extends {
|
|
@@ -9995,6 +10035,8 @@ export declare const ClanDescList: {
|
|
|
9995
10035
|
welcome_channel_id?: string | undefined;
|
|
9996
10036
|
onboarding_banner?: string | undefined;
|
|
9997
10037
|
clan_order?: number | undefined;
|
|
10038
|
+
is_community?: boolean | undefined;
|
|
10039
|
+
community_banner?: string | undefined;
|
|
9998
10040
|
}[] | undefined;
|
|
9999
10041
|
} & {
|
|
10000
10042
|
clandesc?: ({
|
|
@@ -10009,6 +10051,8 @@ export declare const ClanDescList: {
|
|
|
10009
10051
|
welcome_channel_id?: string | undefined;
|
|
10010
10052
|
onboarding_banner?: string | undefined;
|
|
10011
10053
|
clan_order?: number | undefined;
|
|
10054
|
+
is_community?: boolean | undefined;
|
|
10055
|
+
community_banner?: string | undefined;
|
|
10012
10056
|
}[] & ({
|
|
10013
10057
|
creator_id?: string | undefined;
|
|
10014
10058
|
clan_name?: string | undefined;
|
|
@@ -10021,6 +10065,8 @@ export declare const ClanDescList: {
|
|
|
10021
10065
|
welcome_channel_id?: string | undefined;
|
|
10022
10066
|
onboarding_banner?: string | undefined;
|
|
10023
10067
|
clan_order?: number | undefined;
|
|
10068
|
+
is_community?: boolean | undefined;
|
|
10069
|
+
community_banner?: string | undefined;
|
|
10024
10070
|
} & {
|
|
10025
10071
|
creator_id?: string | undefined;
|
|
10026
10072
|
clan_name?: string | undefined;
|
|
@@ -10033,6 +10079,8 @@ export declare const ClanDescList: {
|
|
|
10033
10079
|
welcome_channel_id?: string | undefined;
|
|
10034
10080
|
onboarding_banner?: string | undefined;
|
|
10035
10081
|
clan_order?: number | undefined;
|
|
10082
|
+
is_community?: boolean | undefined;
|
|
10083
|
+
community_banner?: string | undefined;
|
|
10036
10084
|
} & { [K_3 in Exclude<keyof I_1["clandesc"][number], keyof ClanDesc>]: never; })[] & { [K_4 in Exclude<keyof I_1["clandesc"], keyof {
|
|
10037
10085
|
creator_id?: string | undefined;
|
|
10038
10086
|
clan_name?: string | undefined;
|
|
@@ -10045,6 +10093,8 @@ export declare const ClanDescList: {
|
|
|
10045
10093
|
welcome_channel_id?: string | undefined;
|
|
10046
10094
|
onboarding_banner?: string | undefined;
|
|
10047
10095
|
clan_order?: number | undefined;
|
|
10096
|
+
is_community?: boolean | undefined;
|
|
10097
|
+
community_banner?: string | undefined;
|
|
10048
10098
|
}[]>]: never; }) | undefined;
|
|
10049
10099
|
} & { [K_5 in Exclude<keyof I_1, "clandesc">]: never; }>(object: I_1): ClanDescList;
|
|
10050
10100
|
};
|
|
@@ -12708,15 +12758,27 @@ export declare const DeletePinMessage: {
|
|
|
12708
12758
|
fromJSON(object: any): DeletePinMessage;
|
|
12709
12759
|
toJSON(message: DeletePinMessage): unknown;
|
|
12710
12760
|
create<I extends {
|
|
12761
|
+
id?: string | undefined;
|
|
12711
12762
|
message_id?: string | undefined;
|
|
12763
|
+
channel_id?: string | undefined;
|
|
12764
|
+
clan_id?: string | undefined;
|
|
12712
12765
|
} & {
|
|
12766
|
+
id?: string | undefined;
|
|
12713
12767
|
message_id?: string | undefined;
|
|
12714
|
-
|
|
12768
|
+
channel_id?: string | undefined;
|
|
12769
|
+
clan_id?: string | undefined;
|
|
12770
|
+
} & { [K in Exclude<keyof I, keyof DeletePinMessage>]: never; }>(base?: I | undefined): DeletePinMessage;
|
|
12715
12771
|
fromPartial<I_1 extends {
|
|
12772
|
+
id?: string | undefined;
|
|
12716
12773
|
message_id?: string | undefined;
|
|
12774
|
+
channel_id?: string | undefined;
|
|
12775
|
+
clan_id?: string | undefined;
|
|
12717
12776
|
} & {
|
|
12777
|
+
id?: string | undefined;
|
|
12718
12778
|
message_id?: string | undefined;
|
|
12719
|
-
|
|
12779
|
+
channel_id?: string | undefined;
|
|
12780
|
+
clan_id?: string | undefined;
|
|
12781
|
+
} & { [K_1 in Exclude<keyof I_1, keyof DeletePinMessage>]: never; }>(object: I_1): DeletePinMessage;
|
|
12720
12782
|
};
|
|
12721
12783
|
export declare const PinMessage: {
|
|
12722
12784
|
encode(message: PinMessage, writer?: _m0.Writer): _m0.Writer;
|
|
@@ -15313,9 +15375,9 @@ export declare const SearchMessageDocument: {
|
|
|
15313
15375
|
toJSON(message: SearchMessageDocument): unknown;
|
|
15314
15376
|
create<I extends {
|
|
15315
15377
|
message_id?: string | undefined;
|
|
15316
|
-
channel_id?:
|
|
15317
|
-
clan_id?:
|
|
15318
|
-
sender_id?:
|
|
15378
|
+
channel_id?: string | undefined;
|
|
15379
|
+
clan_id?: string | undefined;
|
|
15380
|
+
sender_id?: string | undefined;
|
|
15319
15381
|
content?: string | undefined;
|
|
15320
15382
|
mentions?: string | undefined;
|
|
15321
15383
|
reactions?: string | undefined;
|
|
@@ -15339,9 +15401,9 @@ export declare const SearchMessageDocument: {
|
|
|
15339
15401
|
avatar_url?: string | undefined;
|
|
15340
15402
|
} & {
|
|
15341
15403
|
message_id?: string | undefined;
|
|
15342
|
-
channel_id?:
|
|
15343
|
-
clan_id?:
|
|
15344
|
-
sender_id?:
|
|
15404
|
+
channel_id?: string | undefined;
|
|
15405
|
+
clan_id?: string | undefined;
|
|
15406
|
+
sender_id?: string | undefined;
|
|
15345
15407
|
content?: string | undefined;
|
|
15346
15408
|
mentions?: string | undefined;
|
|
15347
15409
|
reactions?: string | undefined;
|
|
@@ -15390,9 +15452,9 @@ export declare const SearchMessageDocument: {
|
|
|
15390
15452
|
} & { [K_2 in Exclude<keyof I, keyof SearchMessageDocument>]: never; }>(base?: I | undefined): SearchMessageDocument;
|
|
15391
15453
|
fromPartial<I_1 extends {
|
|
15392
15454
|
message_id?: string | undefined;
|
|
15393
|
-
channel_id?:
|
|
15394
|
-
clan_id?:
|
|
15395
|
-
sender_id?:
|
|
15455
|
+
channel_id?: string | undefined;
|
|
15456
|
+
clan_id?: string | undefined;
|
|
15457
|
+
sender_id?: string | undefined;
|
|
15396
15458
|
content?: string | undefined;
|
|
15397
15459
|
mentions?: string | undefined;
|
|
15398
15460
|
reactions?: string | undefined;
|
|
@@ -15416,9 +15478,9 @@ export declare const SearchMessageDocument: {
|
|
|
15416
15478
|
avatar_url?: string | undefined;
|
|
15417
15479
|
} & {
|
|
15418
15480
|
message_id?: string | undefined;
|
|
15419
|
-
channel_id?:
|
|
15420
|
-
clan_id?:
|
|
15421
|
-
sender_id?:
|
|
15481
|
+
channel_id?: string | undefined;
|
|
15482
|
+
clan_id?: string | undefined;
|
|
15483
|
+
sender_id?: string | undefined;
|
|
15422
15484
|
content?: string | undefined;
|
|
15423
15485
|
mentions?: string | undefined;
|
|
15424
15486
|
reactions?: string | undefined;
|
|
@@ -15474,9 +15536,9 @@ export declare const SearchMessageResponse: {
|
|
|
15474
15536
|
create<I extends {
|
|
15475
15537
|
messages?: {
|
|
15476
15538
|
message_id?: string | undefined;
|
|
15477
|
-
channel_id?:
|
|
15478
|
-
clan_id?:
|
|
15479
|
-
sender_id?:
|
|
15539
|
+
channel_id?: string | undefined;
|
|
15540
|
+
clan_id?: string | undefined;
|
|
15541
|
+
sender_id?: string | undefined;
|
|
15480
15542
|
content?: string | undefined;
|
|
15481
15543
|
mentions?: string | undefined;
|
|
15482
15544
|
reactions?: string | undefined;
|
|
@@ -15503,9 +15565,9 @@ export declare const SearchMessageResponse: {
|
|
|
15503
15565
|
} & {
|
|
15504
15566
|
messages?: ({
|
|
15505
15567
|
message_id?: string | undefined;
|
|
15506
|
-
channel_id?:
|
|
15507
|
-
clan_id?:
|
|
15508
|
-
sender_id?:
|
|
15568
|
+
channel_id?: string | undefined;
|
|
15569
|
+
clan_id?: string | undefined;
|
|
15570
|
+
sender_id?: string | undefined;
|
|
15509
15571
|
content?: string | undefined;
|
|
15510
15572
|
mentions?: string | undefined;
|
|
15511
15573
|
reactions?: string | undefined;
|
|
@@ -15529,9 +15591,9 @@ export declare const SearchMessageResponse: {
|
|
|
15529
15591
|
avatar_url?: string | undefined;
|
|
15530
15592
|
}[] & ({
|
|
15531
15593
|
message_id?: string | undefined;
|
|
15532
|
-
channel_id?:
|
|
15533
|
-
clan_id?:
|
|
15534
|
-
sender_id?:
|
|
15594
|
+
channel_id?: string | undefined;
|
|
15595
|
+
clan_id?: string | undefined;
|
|
15596
|
+
sender_id?: string | undefined;
|
|
15535
15597
|
content?: string | undefined;
|
|
15536
15598
|
mentions?: string | undefined;
|
|
15537
15599
|
reactions?: string | undefined;
|
|
@@ -15555,9 +15617,9 @@ export declare const SearchMessageResponse: {
|
|
|
15555
15617
|
avatar_url?: string | undefined;
|
|
15556
15618
|
} & {
|
|
15557
15619
|
message_id?: string | undefined;
|
|
15558
|
-
channel_id?:
|
|
15559
|
-
clan_id?:
|
|
15560
|
-
sender_id?:
|
|
15620
|
+
channel_id?: string | undefined;
|
|
15621
|
+
clan_id?: string | undefined;
|
|
15622
|
+
sender_id?: string | undefined;
|
|
15561
15623
|
content?: string | undefined;
|
|
15562
15624
|
mentions?: string | undefined;
|
|
15563
15625
|
reactions?: string | undefined;
|
|
@@ -15605,9 +15667,9 @@ export declare const SearchMessageResponse: {
|
|
|
15605
15667
|
avatar_url?: string | undefined;
|
|
15606
15668
|
} & { [K_2 in Exclude<keyof I["messages"][number], keyof SearchMessageDocument>]: never; })[] & { [K_3 in Exclude<keyof I["messages"], keyof {
|
|
15607
15669
|
message_id?: string | undefined;
|
|
15608
|
-
channel_id?:
|
|
15609
|
-
clan_id?:
|
|
15610
|
-
sender_id?:
|
|
15670
|
+
channel_id?: string | undefined;
|
|
15671
|
+
clan_id?: string | undefined;
|
|
15672
|
+
sender_id?: string | undefined;
|
|
15611
15673
|
content?: string | undefined;
|
|
15612
15674
|
mentions?: string | undefined;
|
|
15613
15675
|
reactions?: string | undefined;
|
|
@@ -15635,9 +15697,9 @@ export declare const SearchMessageResponse: {
|
|
|
15635
15697
|
fromPartial<I_1 extends {
|
|
15636
15698
|
messages?: {
|
|
15637
15699
|
message_id?: string | undefined;
|
|
15638
|
-
channel_id?:
|
|
15639
|
-
clan_id?:
|
|
15640
|
-
sender_id?:
|
|
15700
|
+
channel_id?: string | undefined;
|
|
15701
|
+
clan_id?: string | undefined;
|
|
15702
|
+
sender_id?: string | undefined;
|
|
15641
15703
|
content?: string | undefined;
|
|
15642
15704
|
mentions?: string | undefined;
|
|
15643
15705
|
reactions?: string | undefined;
|
|
@@ -15664,9 +15726,9 @@ export declare const SearchMessageResponse: {
|
|
|
15664
15726
|
} & {
|
|
15665
15727
|
messages?: ({
|
|
15666
15728
|
message_id?: string | undefined;
|
|
15667
|
-
channel_id?:
|
|
15668
|
-
clan_id?:
|
|
15669
|
-
sender_id?:
|
|
15729
|
+
channel_id?: string | undefined;
|
|
15730
|
+
clan_id?: string | undefined;
|
|
15731
|
+
sender_id?: string | undefined;
|
|
15670
15732
|
content?: string | undefined;
|
|
15671
15733
|
mentions?: string | undefined;
|
|
15672
15734
|
reactions?: string | undefined;
|
|
@@ -15690,9 +15752,9 @@ export declare const SearchMessageResponse: {
|
|
|
15690
15752
|
avatar_url?: string | undefined;
|
|
15691
15753
|
}[] & ({
|
|
15692
15754
|
message_id?: string | undefined;
|
|
15693
|
-
channel_id?:
|
|
15694
|
-
clan_id?:
|
|
15695
|
-
sender_id?:
|
|
15755
|
+
channel_id?: string | undefined;
|
|
15756
|
+
clan_id?: string | undefined;
|
|
15757
|
+
sender_id?: string | undefined;
|
|
15696
15758
|
content?: string | undefined;
|
|
15697
15759
|
mentions?: string | undefined;
|
|
15698
15760
|
reactions?: string | undefined;
|
|
@@ -15716,9 +15778,9 @@ export declare const SearchMessageResponse: {
|
|
|
15716
15778
|
avatar_url?: string | undefined;
|
|
15717
15779
|
} & {
|
|
15718
15780
|
message_id?: string | undefined;
|
|
15719
|
-
channel_id?:
|
|
15720
|
-
clan_id?:
|
|
15721
|
-
sender_id?:
|
|
15781
|
+
channel_id?: string | undefined;
|
|
15782
|
+
clan_id?: string | undefined;
|
|
15783
|
+
sender_id?: string | undefined;
|
|
15722
15784
|
content?: string | undefined;
|
|
15723
15785
|
mentions?: string | undefined;
|
|
15724
15786
|
reactions?: string | undefined;
|
|
@@ -15766,9 +15828,9 @@ export declare const SearchMessageResponse: {
|
|
|
15766
15828
|
avatar_url?: string | undefined;
|
|
15767
15829
|
} & { [K_7 in Exclude<keyof I_1["messages"][number], keyof SearchMessageDocument>]: never; })[] & { [K_8 in Exclude<keyof I_1["messages"], keyof {
|
|
15768
15830
|
message_id?: string | undefined;
|
|
15769
|
-
channel_id?:
|
|
15770
|
-
clan_id?:
|
|
15771
|
-
sender_id?:
|
|
15831
|
+
channel_id?: string | undefined;
|
|
15832
|
+
clan_id?: string | undefined;
|
|
15833
|
+
sender_id?: string | undefined;
|
|
15772
15834
|
content?: string | undefined;
|
|
15773
15835
|
mentions?: string | undefined;
|
|
15774
15836
|
reactions?: string | undefined;
|