mezon-sdk 2.8.12 → 2.8.14
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/README.md +96 -23
- package/dist/cjs/api/api.d.ts +263 -67
- package/dist/cjs/api/api.js +528 -84
- package/dist/cjs/api/api.js.map +1 -1
- package/dist/cjs/index.d.ts +2 -0
- package/dist/cjs/index.js +2 -0
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/interfaces/client.d.ts +56 -3
- package/dist/cjs/interfaces/client.js +1 -0
- package/dist/cjs/interfaces/client.js.map +1 -1
- package/dist/cjs/mezon-client/client/MezonClient.d.ts +11 -3
- package/dist/cjs/mezon-client/client/MezonClient.js +63 -5
- package/dist/cjs/mezon-client/client/MezonClient.js.map +1 -1
- package/dist/cjs/mezon-client/structures/ButtonBuilder.d.ts +6 -0
- package/dist/cjs/mezon-client/structures/ButtonBuilder.js +22 -0
- package/dist/cjs/mezon-client/structures/ButtonBuilder.js.map +1 -0
- package/dist/cjs/mezon-client/structures/Clan.d.ts +4 -1
- package/dist/cjs/mezon-client/structures/Clan.js +12 -1
- package/dist/cjs/mezon-client/structures/Clan.js.map +1 -1
- package/dist/cjs/mezon-client/structures/InteractiveMessage.d.ts +16 -0
- package/dist/cjs/mezon-client/structures/InteractiveMessage.js +120 -0
- package/dist/cjs/mezon-client/structures/InteractiveMessage.js.map +1 -0
- package/dist/cjs/mezon-client/structures/TextChannel.js +2 -1
- package/dist/cjs/mezon-client/structures/TextChannel.js.map +1 -1
- package/dist/cjs/mezon-client/structures/User.d.ts +6 -2
- package/dist/cjs/mezon-client/structures/User.js +46 -8
- package/dist/cjs/mezon-client/structures/User.js.map +1 -1
- package/dist/cjs/mezon-client/utils/helper.d.ts +1 -0
- package/dist/cjs/mezon-client/utils/helper.js +29 -0
- package/dist/cjs/mezon-client/utils/helper.js.map +1 -0
- package/dist/cjs/rtapi/realtime.d.ts +898 -635
- package/dist/cjs/rtapi/realtime.js +278 -5
- package/dist/cjs/rtapi/realtime.js.map +1 -1
- package/dist/esm/api/api.d.ts +263 -67
- package/dist/esm/api/api.js +518 -78
- package/dist/esm/api/api.js.map +1 -1
- package/dist/esm/index.d.ts +2 -0
- package/dist/esm/index.js +2 -0
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/interfaces/client.d.ts +56 -3
- package/dist/esm/interfaces/client.js +1 -0
- package/dist/esm/interfaces/client.js.map +1 -1
- package/dist/esm/mezon-client/client/MezonClient.d.ts +11 -3
- package/dist/esm/mezon-client/client/MezonClient.js +67 -5
- package/dist/esm/mezon-client/client/MezonClient.js.map +1 -1
- package/dist/esm/mezon-client/structures/ButtonBuilder.d.ts +6 -0
- package/dist/esm/mezon-client/structures/ButtonBuilder.js +16 -0
- package/dist/esm/mezon-client/structures/ButtonBuilder.js.map +1 -0
- package/dist/esm/mezon-client/structures/Clan.d.ts +4 -1
- package/dist/esm/mezon-client/structures/Clan.js +14 -1
- package/dist/esm/mezon-client/structures/Clan.js.map +1 -1
- package/dist/esm/mezon-client/structures/InteractiveMessage.d.ts +16 -0
- package/dist/esm/mezon-client/structures/InteractiveMessage.js +116 -0
- package/dist/esm/mezon-client/structures/InteractiveMessage.js.map +1 -0
- package/dist/esm/mezon-client/structures/TextChannel.js +2 -1
- package/dist/esm/mezon-client/structures/TextChannel.js.map +1 -1
- package/dist/esm/mezon-client/structures/User.d.ts +6 -2
- package/dist/esm/mezon-client/structures/User.js +46 -7
- package/dist/esm/mezon-client/structures/User.js.map +1 -1
- package/dist/esm/mezon-client/utils/helper.d.ts +1 -0
- package/dist/esm/mezon-client/utils/helper.js +25 -0
- package/dist/esm/mezon-client/utils/helper.js.map +1 -0
- package/dist/esm/rtapi/realtime.d.ts +898 -635
- package/dist/esm/rtapi/realtime.js +270 -0
- 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 +4 -3
package/dist/cjs/api/api.d.ts
CHANGED
|
@@ -676,11 +676,11 @@ export interface ListChannelAttachmentRequest {
|
|
|
676
676
|
/** The group user state to list. */
|
|
677
677
|
state: number | undefined;
|
|
678
678
|
/** An optional previous id for page. */
|
|
679
|
-
before:
|
|
679
|
+
before: number;
|
|
680
680
|
/** An optional next id for page. */
|
|
681
|
-
after:
|
|
681
|
+
after: number;
|
|
682
682
|
/** An optional around id for page. */
|
|
683
|
-
around:
|
|
683
|
+
around: number;
|
|
684
684
|
}
|
|
685
685
|
/** List all users that are part of a clan. */
|
|
686
686
|
export interface ListClanUsersRequest {
|
|
@@ -818,7 +818,7 @@ export interface UpdateAccountRequest {
|
|
|
818
818
|
/** date of birth */
|
|
819
819
|
dob: Date | undefined;
|
|
820
820
|
/** logo url */
|
|
821
|
-
logo: string;
|
|
821
|
+
logo: string | undefined;
|
|
822
822
|
/** splash screen */
|
|
823
823
|
splash_screen: string;
|
|
824
824
|
/** e2ee encrypt private key */
|
|
@@ -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,17 @@ 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;
|
|
1026
|
+
/** short url for community */
|
|
1027
|
+
short_url: string | undefined;
|
|
1014
1028
|
}
|
|
1015
1029
|
/** Delete a clan the user has access to. */
|
|
1016
1030
|
export interface DeleteClanDescRequest {
|
|
@@ -1451,8 +1465,14 @@ export interface NotificationSetting {
|
|
|
1451
1465
|
}
|
|
1452
1466
|
/** */
|
|
1453
1467
|
export interface DeletePinMessage {
|
|
1468
|
+
/** */
|
|
1469
|
+
id: string;
|
|
1454
1470
|
/** */
|
|
1455
1471
|
message_id: string;
|
|
1472
|
+
/** */
|
|
1473
|
+
channel_id: string;
|
|
1474
|
+
/** */
|
|
1475
|
+
clan_id: string;
|
|
1456
1476
|
}
|
|
1457
1477
|
/** */
|
|
1458
1478
|
export interface PinMessage {
|
|
@@ -1847,11 +1867,11 @@ export interface SearchMessageDocument {
|
|
|
1847
1867
|
/** The message ID. */
|
|
1848
1868
|
message_id: string;
|
|
1849
1869
|
/** The channel ID. */
|
|
1850
|
-
channel_id:
|
|
1870
|
+
channel_id: string;
|
|
1851
1871
|
/** The clan ID. */
|
|
1852
|
-
clan_id:
|
|
1872
|
+
clan_id: string;
|
|
1853
1873
|
/** The user ID of sender. */
|
|
1854
|
-
sender_id:
|
|
1874
|
+
sender_id: string;
|
|
1855
1875
|
/** Message content */
|
|
1856
1876
|
content: string;
|
|
1857
1877
|
/** Mention users */
|
|
@@ -1988,6 +2008,7 @@ export interface Webhook {
|
|
|
1988
2008
|
update_time: string;
|
|
1989
2009
|
avatar: string;
|
|
1990
2010
|
status: number;
|
|
2011
|
+
clan_id: string;
|
|
1991
2012
|
}
|
|
1992
2013
|
export interface WebhookCreateRequest {
|
|
1993
2014
|
webhook_name: string;
|
|
@@ -2662,9 +2683,9 @@ export interface TokenSentEvent {
|
|
|
2662
2683
|
amount: number;
|
|
2663
2684
|
/** note */
|
|
2664
2685
|
note: string;
|
|
2665
|
-
/**
|
|
2686
|
+
/** extra attribute */
|
|
2666
2687
|
extra_attribute: string;
|
|
2667
|
-
/**
|
|
2688
|
+
/** transaction id */
|
|
2668
2689
|
transaction_id: string;
|
|
2669
2690
|
}
|
|
2670
2691
|
export interface UnlockItemRequest {
|
|
@@ -2962,6 +2983,12 @@ export interface GenerateMeetTokenRequest {
|
|
|
2962
2983
|
channel_id: string;
|
|
2963
2984
|
room_name: string;
|
|
2964
2985
|
}
|
|
2986
|
+
export interface MeetParticipantRequest {
|
|
2987
|
+
username: string;
|
|
2988
|
+
room_name: string;
|
|
2989
|
+
channel_id: string;
|
|
2990
|
+
clan_id: string;
|
|
2991
|
+
}
|
|
2965
2992
|
export interface GenerateMeetTokenResponse {
|
|
2966
2993
|
token: string;
|
|
2967
2994
|
}
|
|
@@ -3110,6 +3137,17 @@ export interface ForSaleItem {
|
|
|
3110
3137
|
export interface ForSaleItemList {
|
|
3111
3138
|
for_sale_items: ForSaleItem[];
|
|
3112
3139
|
}
|
|
3140
|
+
export interface IsFollowerRequest {
|
|
3141
|
+
follow_id: string;
|
|
3142
|
+
}
|
|
3143
|
+
export interface IsFollowerResponse {
|
|
3144
|
+
follow_id: string;
|
|
3145
|
+
is_follower: boolean;
|
|
3146
|
+
}
|
|
3147
|
+
export interface TransferOwnershipRequest {
|
|
3148
|
+
clan_id: string;
|
|
3149
|
+
new_owner_id: string;
|
|
3150
|
+
}
|
|
3113
3151
|
export declare const Account: {
|
|
3114
3152
|
encode(message: Account, writer?: _m0.Writer): _m0.Writer;
|
|
3115
3153
|
decode(input: _m0.Reader | Uint8Array, length?: number): Account;
|
|
@@ -7345,18 +7383,18 @@ export declare const ListChannelAttachmentRequest: {
|
|
|
7345
7383
|
file_type?: string | undefined;
|
|
7346
7384
|
limit?: number | undefined;
|
|
7347
7385
|
state?: number | undefined;
|
|
7348
|
-
before?:
|
|
7349
|
-
after?:
|
|
7350
|
-
around?:
|
|
7386
|
+
before?: number | undefined;
|
|
7387
|
+
after?: number | undefined;
|
|
7388
|
+
around?: number | undefined;
|
|
7351
7389
|
} & {
|
|
7352
7390
|
clan_id?: string | undefined;
|
|
7353
7391
|
channel_id?: string | undefined;
|
|
7354
7392
|
file_type?: string | undefined;
|
|
7355
7393
|
limit?: number | undefined;
|
|
7356
7394
|
state?: number | undefined;
|
|
7357
|
-
before?:
|
|
7358
|
-
after?:
|
|
7359
|
-
around?:
|
|
7395
|
+
before?: number | undefined;
|
|
7396
|
+
after?: number | undefined;
|
|
7397
|
+
around?: number | undefined;
|
|
7360
7398
|
} & { [K in Exclude<keyof I, keyof ListChannelAttachmentRequest>]: never; }>(base?: I | undefined): ListChannelAttachmentRequest;
|
|
7361
7399
|
fromPartial<I_1 extends {
|
|
7362
7400
|
clan_id?: string | undefined;
|
|
@@ -7364,18 +7402,18 @@ export declare const ListChannelAttachmentRequest: {
|
|
|
7364
7402
|
file_type?: string | undefined;
|
|
7365
7403
|
limit?: number | undefined;
|
|
7366
7404
|
state?: number | undefined;
|
|
7367
|
-
before?:
|
|
7368
|
-
after?:
|
|
7369
|
-
around?:
|
|
7405
|
+
before?: number | undefined;
|
|
7406
|
+
after?: number | undefined;
|
|
7407
|
+
around?: number | undefined;
|
|
7370
7408
|
} & {
|
|
7371
7409
|
clan_id?: string | undefined;
|
|
7372
7410
|
channel_id?: string | undefined;
|
|
7373
7411
|
file_type?: string | undefined;
|
|
7374
7412
|
limit?: number | undefined;
|
|
7375
7413
|
state?: number | undefined;
|
|
7376
|
-
before?:
|
|
7377
|
-
after?:
|
|
7378
|
-
around?:
|
|
7414
|
+
before?: number | undefined;
|
|
7415
|
+
after?: number | undefined;
|
|
7416
|
+
around?: number | undefined;
|
|
7379
7417
|
} & { [K_1 in Exclude<keyof I_1, keyof ListChannelAttachmentRequest>]: never; }>(object: I_1): ListChannelAttachmentRequest;
|
|
7380
7418
|
};
|
|
7381
7419
|
export declare const ListClanUsersRequest: {
|
|
@@ -9765,6 +9803,8 @@ export declare const ClanDesc: {
|
|
|
9765
9803
|
welcome_channel_id?: string | undefined;
|
|
9766
9804
|
onboarding_banner?: string | undefined;
|
|
9767
9805
|
clan_order?: number | undefined;
|
|
9806
|
+
is_community?: boolean | undefined;
|
|
9807
|
+
community_banner?: string | undefined;
|
|
9768
9808
|
} & {
|
|
9769
9809
|
creator_id?: string | undefined;
|
|
9770
9810
|
clan_name?: string | undefined;
|
|
@@ -9777,6 +9817,8 @@ export declare const ClanDesc: {
|
|
|
9777
9817
|
welcome_channel_id?: string | undefined;
|
|
9778
9818
|
onboarding_banner?: string | undefined;
|
|
9779
9819
|
clan_order?: number | undefined;
|
|
9820
|
+
is_community?: boolean | undefined;
|
|
9821
|
+
community_banner?: string | undefined;
|
|
9780
9822
|
} & { [K in Exclude<keyof I, keyof ClanDesc>]: never; }>(base?: I | undefined): ClanDesc;
|
|
9781
9823
|
fromPartial<I_1 extends {
|
|
9782
9824
|
creator_id?: string | undefined;
|
|
@@ -9790,6 +9832,8 @@ export declare const ClanDesc: {
|
|
|
9790
9832
|
welcome_channel_id?: string | undefined;
|
|
9791
9833
|
onboarding_banner?: string | undefined;
|
|
9792
9834
|
clan_order?: number | undefined;
|
|
9835
|
+
is_community?: boolean | undefined;
|
|
9836
|
+
community_banner?: string | undefined;
|
|
9793
9837
|
} & {
|
|
9794
9838
|
creator_id?: string | undefined;
|
|
9795
9839
|
clan_name?: string | undefined;
|
|
@@ -9802,6 +9846,8 @@ export declare const ClanDesc: {
|
|
|
9802
9846
|
welcome_channel_id?: string | undefined;
|
|
9803
9847
|
onboarding_banner?: string | undefined;
|
|
9804
9848
|
clan_order?: number | undefined;
|
|
9849
|
+
is_community?: boolean | undefined;
|
|
9850
|
+
community_banner?: string | undefined;
|
|
9805
9851
|
} & { [K_1 in Exclude<keyof I_1, keyof ClanDesc>]: never; }>(object: I_1): ClanDesc;
|
|
9806
9852
|
};
|
|
9807
9853
|
export declare const CreateClanDescRequest: {
|
|
@@ -9842,6 +9888,11 @@ export declare const UpdateClanDescRequest: {
|
|
|
9842
9888
|
is_onboarding?: boolean | undefined;
|
|
9843
9889
|
welcome_channel_id?: string | undefined;
|
|
9844
9890
|
onboarding_banner?: string | undefined;
|
|
9891
|
+
is_community?: boolean | undefined;
|
|
9892
|
+
community_banner?: string | undefined;
|
|
9893
|
+
description?: string | undefined;
|
|
9894
|
+
about?: string | undefined;
|
|
9895
|
+
short_url?: string | undefined;
|
|
9845
9896
|
} & {
|
|
9846
9897
|
clan_id?: string | undefined;
|
|
9847
9898
|
clan_name?: string | undefined;
|
|
@@ -9851,6 +9902,11 @@ export declare const UpdateClanDescRequest: {
|
|
|
9851
9902
|
is_onboarding?: boolean | undefined;
|
|
9852
9903
|
welcome_channel_id?: string | undefined;
|
|
9853
9904
|
onboarding_banner?: string | undefined;
|
|
9905
|
+
is_community?: boolean | undefined;
|
|
9906
|
+
community_banner?: string | undefined;
|
|
9907
|
+
description?: string | undefined;
|
|
9908
|
+
about?: string | undefined;
|
|
9909
|
+
short_url?: string | undefined;
|
|
9854
9910
|
} & { [K in Exclude<keyof I, keyof UpdateClanDescRequest>]: never; }>(base?: I | undefined): UpdateClanDescRequest;
|
|
9855
9911
|
fromPartial<I_1 extends {
|
|
9856
9912
|
clan_id?: string | undefined;
|
|
@@ -9861,6 +9917,11 @@ export declare const UpdateClanDescRequest: {
|
|
|
9861
9917
|
is_onboarding?: boolean | undefined;
|
|
9862
9918
|
welcome_channel_id?: string | undefined;
|
|
9863
9919
|
onboarding_banner?: string | undefined;
|
|
9920
|
+
is_community?: boolean | undefined;
|
|
9921
|
+
community_banner?: string | undefined;
|
|
9922
|
+
description?: string | undefined;
|
|
9923
|
+
about?: string | undefined;
|
|
9924
|
+
short_url?: string | undefined;
|
|
9864
9925
|
} & {
|
|
9865
9926
|
clan_id?: string | undefined;
|
|
9866
9927
|
clan_name?: string | undefined;
|
|
@@ -9870,6 +9931,11 @@ export declare const UpdateClanDescRequest: {
|
|
|
9870
9931
|
is_onboarding?: boolean | undefined;
|
|
9871
9932
|
welcome_channel_id?: string | undefined;
|
|
9872
9933
|
onboarding_banner?: string | undefined;
|
|
9934
|
+
is_community?: boolean | undefined;
|
|
9935
|
+
community_banner?: string | undefined;
|
|
9936
|
+
description?: string | undefined;
|
|
9937
|
+
about?: string | undefined;
|
|
9938
|
+
short_url?: string | undefined;
|
|
9873
9939
|
} & { [K_1 in Exclude<keyof I_1, keyof UpdateClanDescRequest>]: never; }>(object: I_1): UpdateClanDescRequest;
|
|
9874
9940
|
};
|
|
9875
9941
|
export declare const DeleteClanDescRequest: {
|
|
@@ -9930,6 +9996,8 @@ export declare const ClanDescList: {
|
|
|
9930
9996
|
welcome_channel_id?: string | undefined;
|
|
9931
9997
|
onboarding_banner?: string | undefined;
|
|
9932
9998
|
clan_order?: number | undefined;
|
|
9999
|
+
is_community?: boolean | undefined;
|
|
10000
|
+
community_banner?: string | undefined;
|
|
9933
10001
|
}[] | undefined;
|
|
9934
10002
|
} & {
|
|
9935
10003
|
clandesc?: ({
|
|
@@ -9944,6 +10012,8 @@ export declare const ClanDescList: {
|
|
|
9944
10012
|
welcome_channel_id?: string | undefined;
|
|
9945
10013
|
onboarding_banner?: string | undefined;
|
|
9946
10014
|
clan_order?: number | undefined;
|
|
10015
|
+
is_community?: boolean | undefined;
|
|
10016
|
+
community_banner?: string | undefined;
|
|
9947
10017
|
}[] & ({
|
|
9948
10018
|
creator_id?: string | undefined;
|
|
9949
10019
|
clan_name?: string | undefined;
|
|
@@ -9956,6 +10026,8 @@ export declare const ClanDescList: {
|
|
|
9956
10026
|
welcome_channel_id?: string | undefined;
|
|
9957
10027
|
onboarding_banner?: string | undefined;
|
|
9958
10028
|
clan_order?: number | undefined;
|
|
10029
|
+
is_community?: boolean | undefined;
|
|
10030
|
+
community_banner?: string | undefined;
|
|
9959
10031
|
} & {
|
|
9960
10032
|
creator_id?: string | undefined;
|
|
9961
10033
|
clan_name?: string | undefined;
|
|
@@ -9968,6 +10040,8 @@ export declare const ClanDescList: {
|
|
|
9968
10040
|
welcome_channel_id?: string | undefined;
|
|
9969
10041
|
onboarding_banner?: string | undefined;
|
|
9970
10042
|
clan_order?: number | undefined;
|
|
10043
|
+
is_community?: boolean | undefined;
|
|
10044
|
+
community_banner?: string | undefined;
|
|
9971
10045
|
} & { [K in Exclude<keyof I["clandesc"][number], keyof ClanDesc>]: never; })[] & { [K_1 in Exclude<keyof I["clandesc"], keyof {
|
|
9972
10046
|
creator_id?: string | undefined;
|
|
9973
10047
|
clan_name?: string | undefined;
|
|
@@ -9980,6 +10054,8 @@ export declare const ClanDescList: {
|
|
|
9980
10054
|
welcome_channel_id?: string | undefined;
|
|
9981
10055
|
onboarding_banner?: string | undefined;
|
|
9982
10056
|
clan_order?: number | undefined;
|
|
10057
|
+
is_community?: boolean | undefined;
|
|
10058
|
+
community_banner?: string | undefined;
|
|
9983
10059
|
}[]>]: never; }) | undefined;
|
|
9984
10060
|
} & { [K_2 in Exclude<keyof I, "clandesc">]: never; }>(base?: I | undefined): ClanDescList;
|
|
9985
10061
|
fromPartial<I_1 extends {
|
|
@@ -9995,6 +10071,8 @@ export declare const ClanDescList: {
|
|
|
9995
10071
|
welcome_channel_id?: string | undefined;
|
|
9996
10072
|
onboarding_banner?: string | undefined;
|
|
9997
10073
|
clan_order?: number | undefined;
|
|
10074
|
+
is_community?: boolean | undefined;
|
|
10075
|
+
community_banner?: string | undefined;
|
|
9998
10076
|
}[] | undefined;
|
|
9999
10077
|
} & {
|
|
10000
10078
|
clandesc?: ({
|
|
@@ -10009,6 +10087,8 @@ export declare const ClanDescList: {
|
|
|
10009
10087
|
welcome_channel_id?: string | undefined;
|
|
10010
10088
|
onboarding_banner?: string | undefined;
|
|
10011
10089
|
clan_order?: number | undefined;
|
|
10090
|
+
is_community?: boolean | undefined;
|
|
10091
|
+
community_banner?: string | undefined;
|
|
10012
10092
|
}[] & ({
|
|
10013
10093
|
creator_id?: string | undefined;
|
|
10014
10094
|
clan_name?: string | undefined;
|
|
@@ -10021,6 +10101,8 @@ export declare const ClanDescList: {
|
|
|
10021
10101
|
welcome_channel_id?: string | undefined;
|
|
10022
10102
|
onboarding_banner?: string | undefined;
|
|
10023
10103
|
clan_order?: number | undefined;
|
|
10104
|
+
is_community?: boolean | undefined;
|
|
10105
|
+
community_banner?: string | undefined;
|
|
10024
10106
|
} & {
|
|
10025
10107
|
creator_id?: string | undefined;
|
|
10026
10108
|
clan_name?: string | undefined;
|
|
@@ -10033,6 +10115,8 @@ export declare const ClanDescList: {
|
|
|
10033
10115
|
welcome_channel_id?: string | undefined;
|
|
10034
10116
|
onboarding_banner?: string | undefined;
|
|
10035
10117
|
clan_order?: number | undefined;
|
|
10118
|
+
is_community?: boolean | undefined;
|
|
10119
|
+
community_banner?: string | undefined;
|
|
10036
10120
|
} & { [K_3 in Exclude<keyof I_1["clandesc"][number], keyof ClanDesc>]: never; })[] & { [K_4 in Exclude<keyof I_1["clandesc"], keyof {
|
|
10037
10121
|
creator_id?: string | undefined;
|
|
10038
10122
|
clan_name?: string | undefined;
|
|
@@ -10045,6 +10129,8 @@ export declare const ClanDescList: {
|
|
|
10045
10129
|
welcome_channel_id?: string | undefined;
|
|
10046
10130
|
onboarding_banner?: string | undefined;
|
|
10047
10131
|
clan_order?: number | undefined;
|
|
10132
|
+
is_community?: boolean | undefined;
|
|
10133
|
+
community_banner?: string | undefined;
|
|
10048
10134
|
}[]>]: never; }) | undefined;
|
|
10049
10135
|
} & { [K_5 in Exclude<keyof I_1, "clandesc">]: never; }>(object: I_1): ClanDescList;
|
|
10050
10136
|
};
|
|
@@ -12708,15 +12794,27 @@ export declare const DeletePinMessage: {
|
|
|
12708
12794
|
fromJSON(object: any): DeletePinMessage;
|
|
12709
12795
|
toJSON(message: DeletePinMessage): unknown;
|
|
12710
12796
|
create<I extends {
|
|
12797
|
+
id?: string | undefined;
|
|
12711
12798
|
message_id?: string | undefined;
|
|
12799
|
+
channel_id?: string | undefined;
|
|
12800
|
+
clan_id?: string | undefined;
|
|
12712
12801
|
} & {
|
|
12802
|
+
id?: string | undefined;
|
|
12713
12803
|
message_id?: string | undefined;
|
|
12714
|
-
|
|
12804
|
+
channel_id?: string | undefined;
|
|
12805
|
+
clan_id?: string | undefined;
|
|
12806
|
+
} & { [K in Exclude<keyof I, keyof DeletePinMessage>]: never; }>(base?: I | undefined): DeletePinMessage;
|
|
12715
12807
|
fromPartial<I_1 extends {
|
|
12808
|
+
id?: string | undefined;
|
|
12716
12809
|
message_id?: string | undefined;
|
|
12810
|
+
channel_id?: string | undefined;
|
|
12811
|
+
clan_id?: string | undefined;
|
|
12717
12812
|
} & {
|
|
12813
|
+
id?: string | undefined;
|
|
12718
12814
|
message_id?: string | undefined;
|
|
12719
|
-
|
|
12815
|
+
channel_id?: string | undefined;
|
|
12816
|
+
clan_id?: string | undefined;
|
|
12817
|
+
} & { [K_1 in Exclude<keyof I_1, keyof DeletePinMessage>]: never; }>(object: I_1): DeletePinMessage;
|
|
12720
12818
|
};
|
|
12721
12819
|
export declare const PinMessage: {
|
|
12722
12820
|
encode(message: PinMessage, writer?: _m0.Writer): _m0.Writer;
|
|
@@ -15313,9 +15411,9 @@ export declare const SearchMessageDocument: {
|
|
|
15313
15411
|
toJSON(message: SearchMessageDocument): unknown;
|
|
15314
15412
|
create<I extends {
|
|
15315
15413
|
message_id?: string | undefined;
|
|
15316
|
-
channel_id?:
|
|
15317
|
-
clan_id?:
|
|
15318
|
-
sender_id?:
|
|
15414
|
+
channel_id?: string | undefined;
|
|
15415
|
+
clan_id?: string | undefined;
|
|
15416
|
+
sender_id?: string | undefined;
|
|
15319
15417
|
content?: string | undefined;
|
|
15320
15418
|
mentions?: string | undefined;
|
|
15321
15419
|
reactions?: string | undefined;
|
|
@@ -15339,9 +15437,9 @@ export declare const SearchMessageDocument: {
|
|
|
15339
15437
|
avatar_url?: string | undefined;
|
|
15340
15438
|
} & {
|
|
15341
15439
|
message_id?: string | undefined;
|
|
15342
|
-
channel_id?:
|
|
15343
|
-
clan_id?:
|
|
15344
|
-
sender_id?:
|
|
15440
|
+
channel_id?: string | undefined;
|
|
15441
|
+
clan_id?: string | undefined;
|
|
15442
|
+
sender_id?: string | undefined;
|
|
15345
15443
|
content?: string | undefined;
|
|
15346
15444
|
mentions?: string | undefined;
|
|
15347
15445
|
reactions?: string | undefined;
|
|
@@ -15390,9 +15488,9 @@ export declare const SearchMessageDocument: {
|
|
|
15390
15488
|
} & { [K_2 in Exclude<keyof I, keyof SearchMessageDocument>]: never; }>(base?: I | undefined): SearchMessageDocument;
|
|
15391
15489
|
fromPartial<I_1 extends {
|
|
15392
15490
|
message_id?: string | undefined;
|
|
15393
|
-
channel_id?:
|
|
15394
|
-
clan_id?:
|
|
15395
|
-
sender_id?:
|
|
15491
|
+
channel_id?: string | undefined;
|
|
15492
|
+
clan_id?: string | undefined;
|
|
15493
|
+
sender_id?: string | undefined;
|
|
15396
15494
|
content?: string | undefined;
|
|
15397
15495
|
mentions?: string | undefined;
|
|
15398
15496
|
reactions?: string | undefined;
|
|
@@ -15416,9 +15514,9 @@ export declare const SearchMessageDocument: {
|
|
|
15416
15514
|
avatar_url?: string | undefined;
|
|
15417
15515
|
} & {
|
|
15418
15516
|
message_id?: string | undefined;
|
|
15419
|
-
channel_id?:
|
|
15420
|
-
clan_id?:
|
|
15421
|
-
sender_id?:
|
|
15517
|
+
channel_id?: string | undefined;
|
|
15518
|
+
clan_id?: string | undefined;
|
|
15519
|
+
sender_id?: string | undefined;
|
|
15422
15520
|
content?: string | undefined;
|
|
15423
15521
|
mentions?: string | undefined;
|
|
15424
15522
|
reactions?: string | undefined;
|
|
@@ -15474,9 +15572,9 @@ export declare const SearchMessageResponse: {
|
|
|
15474
15572
|
create<I extends {
|
|
15475
15573
|
messages?: {
|
|
15476
15574
|
message_id?: string | undefined;
|
|
15477
|
-
channel_id?:
|
|
15478
|
-
clan_id?:
|
|
15479
|
-
sender_id?:
|
|
15575
|
+
channel_id?: string | undefined;
|
|
15576
|
+
clan_id?: string | undefined;
|
|
15577
|
+
sender_id?: string | undefined;
|
|
15480
15578
|
content?: string | undefined;
|
|
15481
15579
|
mentions?: string | undefined;
|
|
15482
15580
|
reactions?: string | undefined;
|
|
@@ -15503,9 +15601,9 @@ export declare const SearchMessageResponse: {
|
|
|
15503
15601
|
} & {
|
|
15504
15602
|
messages?: ({
|
|
15505
15603
|
message_id?: string | undefined;
|
|
15506
|
-
channel_id?:
|
|
15507
|
-
clan_id?:
|
|
15508
|
-
sender_id?:
|
|
15604
|
+
channel_id?: string | undefined;
|
|
15605
|
+
clan_id?: string | undefined;
|
|
15606
|
+
sender_id?: string | undefined;
|
|
15509
15607
|
content?: string | undefined;
|
|
15510
15608
|
mentions?: string | undefined;
|
|
15511
15609
|
reactions?: string | undefined;
|
|
@@ -15529,9 +15627,9 @@ export declare const SearchMessageResponse: {
|
|
|
15529
15627
|
avatar_url?: string | undefined;
|
|
15530
15628
|
}[] & ({
|
|
15531
15629
|
message_id?: string | undefined;
|
|
15532
|
-
channel_id?:
|
|
15533
|
-
clan_id?:
|
|
15534
|
-
sender_id?:
|
|
15630
|
+
channel_id?: string | undefined;
|
|
15631
|
+
clan_id?: string | undefined;
|
|
15632
|
+
sender_id?: string | undefined;
|
|
15535
15633
|
content?: string | undefined;
|
|
15536
15634
|
mentions?: string | undefined;
|
|
15537
15635
|
reactions?: string | undefined;
|
|
@@ -15555,9 +15653,9 @@ export declare const SearchMessageResponse: {
|
|
|
15555
15653
|
avatar_url?: string | undefined;
|
|
15556
15654
|
} & {
|
|
15557
15655
|
message_id?: string | undefined;
|
|
15558
|
-
channel_id?:
|
|
15559
|
-
clan_id?:
|
|
15560
|
-
sender_id?:
|
|
15656
|
+
channel_id?: string | undefined;
|
|
15657
|
+
clan_id?: string | undefined;
|
|
15658
|
+
sender_id?: string | undefined;
|
|
15561
15659
|
content?: string | undefined;
|
|
15562
15660
|
mentions?: string | undefined;
|
|
15563
15661
|
reactions?: string | undefined;
|
|
@@ -15605,9 +15703,9 @@ export declare const SearchMessageResponse: {
|
|
|
15605
15703
|
avatar_url?: string | undefined;
|
|
15606
15704
|
} & { [K_2 in Exclude<keyof I["messages"][number], keyof SearchMessageDocument>]: never; })[] & { [K_3 in Exclude<keyof I["messages"], keyof {
|
|
15607
15705
|
message_id?: string | undefined;
|
|
15608
|
-
channel_id?:
|
|
15609
|
-
clan_id?:
|
|
15610
|
-
sender_id?:
|
|
15706
|
+
channel_id?: string | undefined;
|
|
15707
|
+
clan_id?: string | undefined;
|
|
15708
|
+
sender_id?: string | undefined;
|
|
15611
15709
|
content?: string | undefined;
|
|
15612
15710
|
mentions?: string | undefined;
|
|
15613
15711
|
reactions?: string | undefined;
|
|
@@ -15635,9 +15733,9 @@ export declare const SearchMessageResponse: {
|
|
|
15635
15733
|
fromPartial<I_1 extends {
|
|
15636
15734
|
messages?: {
|
|
15637
15735
|
message_id?: string | undefined;
|
|
15638
|
-
channel_id?:
|
|
15639
|
-
clan_id?:
|
|
15640
|
-
sender_id?:
|
|
15736
|
+
channel_id?: string | undefined;
|
|
15737
|
+
clan_id?: string | undefined;
|
|
15738
|
+
sender_id?: string | undefined;
|
|
15641
15739
|
content?: string | undefined;
|
|
15642
15740
|
mentions?: string | undefined;
|
|
15643
15741
|
reactions?: string | undefined;
|
|
@@ -15664,9 +15762,9 @@ export declare const SearchMessageResponse: {
|
|
|
15664
15762
|
} & {
|
|
15665
15763
|
messages?: ({
|
|
15666
15764
|
message_id?: string | undefined;
|
|
15667
|
-
channel_id?:
|
|
15668
|
-
clan_id?:
|
|
15669
|
-
sender_id?:
|
|
15765
|
+
channel_id?: string | undefined;
|
|
15766
|
+
clan_id?: string | undefined;
|
|
15767
|
+
sender_id?: string | undefined;
|
|
15670
15768
|
content?: string | undefined;
|
|
15671
15769
|
mentions?: string | undefined;
|
|
15672
15770
|
reactions?: string | undefined;
|
|
@@ -15690,9 +15788,9 @@ export declare const SearchMessageResponse: {
|
|
|
15690
15788
|
avatar_url?: string | undefined;
|
|
15691
15789
|
}[] & ({
|
|
15692
15790
|
message_id?: string | undefined;
|
|
15693
|
-
channel_id?:
|
|
15694
|
-
clan_id?:
|
|
15695
|
-
sender_id?:
|
|
15791
|
+
channel_id?: string | undefined;
|
|
15792
|
+
clan_id?: string | undefined;
|
|
15793
|
+
sender_id?: string | undefined;
|
|
15696
15794
|
content?: string | undefined;
|
|
15697
15795
|
mentions?: string | undefined;
|
|
15698
15796
|
reactions?: string | undefined;
|
|
@@ -15716,9 +15814,9 @@ export declare const SearchMessageResponse: {
|
|
|
15716
15814
|
avatar_url?: string | undefined;
|
|
15717
15815
|
} & {
|
|
15718
15816
|
message_id?: string | undefined;
|
|
15719
|
-
channel_id?:
|
|
15720
|
-
clan_id?:
|
|
15721
|
-
sender_id?:
|
|
15817
|
+
channel_id?: string | undefined;
|
|
15818
|
+
clan_id?: string | undefined;
|
|
15819
|
+
sender_id?: string | undefined;
|
|
15722
15820
|
content?: string | undefined;
|
|
15723
15821
|
mentions?: string | undefined;
|
|
15724
15822
|
reactions?: string | undefined;
|
|
@@ -15766,9 +15864,9 @@ export declare const SearchMessageResponse: {
|
|
|
15766
15864
|
avatar_url?: string | undefined;
|
|
15767
15865
|
} & { [K_7 in Exclude<keyof I_1["messages"][number], keyof SearchMessageDocument>]: never; })[] & { [K_8 in Exclude<keyof I_1["messages"], keyof {
|
|
15768
15866
|
message_id?: string | undefined;
|
|
15769
|
-
channel_id?:
|
|
15770
|
-
clan_id?:
|
|
15771
|
-
sender_id?:
|
|
15867
|
+
channel_id?: string | undefined;
|
|
15868
|
+
clan_id?: string | undefined;
|
|
15869
|
+
sender_id?: string | undefined;
|
|
15772
15870
|
content?: string | undefined;
|
|
15773
15871
|
mentions?: string | undefined;
|
|
15774
15872
|
reactions?: string | undefined;
|
|
@@ -16382,6 +16480,7 @@ export declare const Webhook: {
|
|
|
16382
16480
|
update_time?: string | undefined;
|
|
16383
16481
|
avatar?: string | undefined;
|
|
16384
16482
|
status?: number | undefined;
|
|
16483
|
+
clan_id?: string | undefined;
|
|
16385
16484
|
} & {
|
|
16386
16485
|
id?: string | undefined;
|
|
16387
16486
|
webhook_name?: string | undefined;
|
|
@@ -16393,6 +16492,7 @@ export declare const Webhook: {
|
|
|
16393
16492
|
update_time?: string | undefined;
|
|
16394
16493
|
avatar?: string | undefined;
|
|
16395
16494
|
status?: number | undefined;
|
|
16495
|
+
clan_id?: string | undefined;
|
|
16396
16496
|
} & { [K in Exclude<keyof I, keyof Webhook>]: never; }>(base?: I | undefined): Webhook;
|
|
16397
16497
|
fromPartial<I_1 extends {
|
|
16398
16498
|
id?: string | undefined;
|
|
@@ -16405,6 +16505,7 @@ export declare const Webhook: {
|
|
|
16405
16505
|
update_time?: string | undefined;
|
|
16406
16506
|
avatar?: string | undefined;
|
|
16407
16507
|
status?: number | undefined;
|
|
16508
|
+
clan_id?: string | undefined;
|
|
16408
16509
|
} & {
|
|
16409
16510
|
id?: string | undefined;
|
|
16410
16511
|
webhook_name?: string | undefined;
|
|
@@ -16416,6 +16517,7 @@ export declare const Webhook: {
|
|
|
16416
16517
|
update_time?: string | undefined;
|
|
16417
16518
|
avatar?: string | undefined;
|
|
16418
16519
|
status?: number | undefined;
|
|
16520
|
+
clan_id?: string | undefined;
|
|
16419
16521
|
} & { [K_1 in Exclude<keyof I_1, keyof Webhook>]: never; }>(object: I_1): Webhook;
|
|
16420
16522
|
};
|
|
16421
16523
|
export declare const WebhookCreateRequest: {
|
|
@@ -16559,6 +16661,7 @@ export declare const WebhookListResponse: {
|
|
|
16559
16661
|
update_time?: string | undefined;
|
|
16560
16662
|
avatar?: string | undefined;
|
|
16561
16663
|
status?: number | undefined;
|
|
16664
|
+
clan_id?: string | undefined;
|
|
16562
16665
|
}[] | undefined;
|
|
16563
16666
|
} & {
|
|
16564
16667
|
webhooks?: ({
|
|
@@ -16572,6 +16675,7 @@ export declare const WebhookListResponse: {
|
|
|
16572
16675
|
update_time?: string | undefined;
|
|
16573
16676
|
avatar?: string | undefined;
|
|
16574
16677
|
status?: number | undefined;
|
|
16678
|
+
clan_id?: string | undefined;
|
|
16575
16679
|
}[] & ({
|
|
16576
16680
|
id?: string | undefined;
|
|
16577
16681
|
webhook_name?: string | undefined;
|
|
@@ -16583,6 +16687,7 @@ export declare const WebhookListResponse: {
|
|
|
16583
16687
|
update_time?: string | undefined;
|
|
16584
16688
|
avatar?: string | undefined;
|
|
16585
16689
|
status?: number | undefined;
|
|
16690
|
+
clan_id?: string | undefined;
|
|
16586
16691
|
} & {
|
|
16587
16692
|
id?: string | undefined;
|
|
16588
16693
|
webhook_name?: string | undefined;
|
|
@@ -16594,6 +16699,7 @@ export declare const WebhookListResponse: {
|
|
|
16594
16699
|
update_time?: string | undefined;
|
|
16595
16700
|
avatar?: string | undefined;
|
|
16596
16701
|
status?: number | undefined;
|
|
16702
|
+
clan_id?: string | undefined;
|
|
16597
16703
|
} & { [K in Exclude<keyof I["webhooks"][number], keyof Webhook>]: never; })[] & { [K_1 in Exclude<keyof I["webhooks"], keyof {
|
|
16598
16704
|
id?: string | undefined;
|
|
16599
16705
|
webhook_name?: string | undefined;
|
|
@@ -16605,6 +16711,7 @@ export declare const WebhookListResponse: {
|
|
|
16605
16711
|
update_time?: string | undefined;
|
|
16606
16712
|
avatar?: string | undefined;
|
|
16607
16713
|
status?: number | undefined;
|
|
16714
|
+
clan_id?: string | undefined;
|
|
16608
16715
|
}[]>]: never; }) | undefined;
|
|
16609
16716
|
} & { [K_2 in Exclude<keyof I, "webhooks">]: never; }>(base?: I | undefined): WebhookListResponse;
|
|
16610
16717
|
fromPartial<I_1 extends {
|
|
@@ -16619,6 +16726,7 @@ export declare const WebhookListResponse: {
|
|
|
16619
16726
|
update_time?: string | undefined;
|
|
16620
16727
|
avatar?: string | undefined;
|
|
16621
16728
|
status?: number | undefined;
|
|
16729
|
+
clan_id?: string | undefined;
|
|
16622
16730
|
}[] | undefined;
|
|
16623
16731
|
} & {
|
|
16624
16732
|
webhooks?: ({
|
|
@@ -16632,6 +16740,7 @@ export declare const WebhookListResponse: {
|
|
|
16632
16740
|
update_time?: string | undefined;
|
|
16633
16741
|
avatar?: string | undefined;
|
|
16634
16742
|
status?: number | undefined;
|
|
16743
|
+
clan_id?: string | undefined;
|
|
16635
16744
|
}[] & ({
|
|
16636
16745
|
id?: string | undefined;
|
|
16637
16746
|
webhook_name?: string | undefined;
|
|
@@ -16643,6 +16752,7 @@ export declare const WebhookListResponse: {
|
|
|
16643
16752
|
update_time?: string | undefined;
|
|
16644
16753
|
avatar?: string | undefined;
|
|
16645
16754
|
status?: number | undefined;
|
|
16755
|
+
clan_id?: string | undefined;
|
|
16646
16756
|
} & {
|
|
16647
16757
|
id?: string | undefined;
|
|
16648
16758
|
webhook_name?: string | undefined;
|
|
@@ -16654,6 +16764,7 @@ export declare const WebhookListResponse: {
|
|
|
16654
16764
|
update_time?: string | undefined;
|
|
16655
16765
|
avatar?: string | undefined;
|
|
16656
16766
|
status?: number | undefined;
|
|
16767
|
+
clan_id?: string | undefined;
|
|
16657
16768
|
} & { [K_3 in Exclude<keyof I_1["webhooks"][number], keyof Webhook>]: never; })[] & { [K_4 in Exclude<keyof I_1["webhooks"], keyof {
|
|
16658
16769
|
id?: string | undefined;
|
|
16659
16770
|
webhook_name?: string | undefined;
|
|
@@ -16665,6 +16776,7 @@ export declare const WebhookListResponse: {
|
|
|
16665
16776
|
update_time?: string | undefined;
|
|
16666
16777
|
avatar?: string | undefined;
|
|
16667
16778
|
status?: number | undefined;
|
|
16779
|
+
clan_id?: string | undefined;
|
|
16668
16780
|
}[]>]: never; }) | undefined;
|
|
16669
16781
|
} & { [K_5 in Exclude<keyof I_1, "webhooks">]: never; }>(object: I_1): WebhookListResponse;
|
|
16670
16782
|
};
|
|
@@ -23402,6 +23514,34 @@ export declare const GenerateMeetTokenRequest: {
|
|
|
23402
23514
|
room_name?: string | undefined;
|
|
23403
23515
|
} & { [K_1 in Exclude<keyof I_1, keyof GenerateMeetTokenRequest>]: never; }>(object: I_1): GenerateMeetTokenRequest;
|
|
23404
23516
|
};
|
|
23517
|
+
export declare const MeetParticipantRequest: {
|
|
23518
|
+
encode(message: MeetParticipantRequest, writer?: _m0.Writer): _m0.Writer;
|
|
23519
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): MeetParticipantRequest;
|
|
23520
|
+
fromJSON(object: any): MeetParticipantRequest;
|
|
23521
|
+
toJSON(message: MeetParticipantRequest): unknown;
|
|
23522
|
+
create<I extends {
|
|
23523
|
+
username?: string | undefined;
|
|
23524
|
+
room_name?: string | undefined;
|
|
23525
|
+
channel_id?: string | undefined;
|
|
23526
|
+
clan_id?: string | undefined;
|
|
23527
|
+
} & {
|
|
23528
|
+
username?: string | undefined;
|
|
23529
|
+
room_name?: string | undefined;
|
|
23530
|
+
channel_id?: string | undefined;
|
|
23531
|
+
clan_id?: string | undefined;
|
|
23532
|
+
} & { [K in Exclude<keyof I, keyof MeetParticipantRequest>]: never; }>(base?: I | undefined): MeetParticipantRequest;
|
|
23533
|
+
fromPartial<I_1 extends {
|
|
23534
|
+
username?: string | undefined;
|
|
23535
|
+
room_name?: string | undefined;
|
|
23536
|
+
channel_id?: string | undefined;
|
|
23537
|
+
clan_id?: string | undefined;
|
|
23538
|
+
} & {
|
|
23539
|
+
username?: string | undefined;
|
|
23540
|
+
room_name?: string | undefined;
|
|
23541
|
+
channel_id?: string | undefined;
|
|
23542
|
+
clan_id?: string | undefined;
|
|
23543
|
+
} & { [K_1 in Exclude<keyof I_1, keyof MeetParticipantRequest>]: never; }>(object: I_1): MeetParticipantRequest;
|
|
23544
|
+
};
|
|
23405
23545
|
export declare const GenerateMeetTokenResponse: {
|
|
23406
23546
|
encode(message: GenerateMeetTokenResponse, writer?: _m0.Writer): _m0.Writer;
|
|
23407
23547
|
decode(input: _m0.Reader | Uint8Array, length?: number): GenerateMeetTokenResponse;
|
|
@@ -24654,6 +24794,62 @@ export declare const ForSaleItemList: {
|
|
|
24654
24794
|
}[]>]: never; }) | undefined;
|
|
24655
24795
|
} & { [K_5 in Exclude<keyof I_1, "for_sale_items">]: never; }>(object: I_1): ForSaleItemList;
|
|
24656
24796
|
};
|
|
24797
|
+
export declare const IsFollowerRequest: {
|
|
24798
|
+
encode(message: IsFollowerRequest, writer?: _m0.Writer): _m0.Writer;
|
|
24799
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): IsFollowerRequest;
|
|
24800
|
+
fromJSON(object: any): IsFollowerRequest;
|
|
24801
|
+
toJSON(message: IsFollowerRequest): unknown;
|
|
24802
|
+
create<I extends {
|
|
24803
|
+
follow_id?: string | undefined;
|
|
24804
|
+
} & {
|
|
24805
|
+
follow_id?: string | undefined;
|
|
24806
|
+
} & { [K in Exclude<keyof I, "follow_id">]: never; }>(base?: I | undefined): IsFollowerRequest;
|
|
24807
|
+
fromPartial<I_1 extends {
|
|
24808
|
+
follow_id?: string | undefined;
|
|
24809
|
+
} & {
|
|
24810
|
+
follow_id?: string | undefined;
|
|
24811
|
+
} & { [K_1 in Exclude<keyof I_1, "follow_id">]: never; }>(object: I_1): IsFollowerRequest;
|
|
24812
|
+
};
|
|
24813
|
+
export declare const IsFollowerResponse: {
|
|
24814
|
+
encode(message: IsFollowerResponse, writer?: _m0.Writer): _m0.Writer;
|
|
24815
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): IsFollowerResponse;
|
|
24816
|
+
fromJSON(object: any): IsFollowerResponse;
|
|
24817
|
+
toJSON(message: IsFollowerResponse): unknown;
|
|
24818
|
+
create<I extends {
|
|
24819
|
+
follow_id?: string | undefined;
|
|
24820
|
+
is_follower?: boolean | undefined;
|
|
24821
|
+
} & {
|
|
24822
|
+
follow_id?: string | undefined;
|
|
24823
|
+
is_follower?: boolean | undefined;
|
|
24824
|
+
} & { [K in Exclude<keyof I, keyof IsFollowerResponse>]: never; }>(base?: I | undefined): IsFollowerResponse;
|
|
24825
|
+
fromPartial<I_1 extends {
|
|
24826
|
+
follow_id?: string | undefined;
|
|
24827
|
+
is_follower?: boolean | undefined;
|
|
24828
|
+
} & {
|
|
24829
|
+
follow_id?: string | undefined;
|
|
24830
|
+
is_follower?: boolean | undefined;
|
|
24831
|
+
} & { [K_1 in Exclude<keyof I_1, keyof IsFollowerResponse>]: never; }>(object: I_1): IsFollowerResponse;
|
|
24832
|
+
};
|
|
24833
|
+
export declare const TransferOwnershipRequest: {
|
|
24834
|
+
encode(message: TransferOwnershipRequest, writer?: _m0.Writer): _m0.Writer;
|
|
24835
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): TransferOwnershipRequest;
|
|
24836
|
+
fromJSON(object: any): TransferOwnershipRequest;
|
|
24837
|
+
toJSON(message: TransferOwnershipRequest): unknown;
|
|
24838
|
+
create<I extends {
|
|
24839
|
+
clan_id?: string | undefined;
|
|
24840
|
+
new_owner_id?: string | undefined;
|
|
24841
|
+
} & {
|
|
24842
|
+
clan_id?: string | undefined;
|
|
24843
|
+
new_owner_id?: string | undefined;
|
|
24844
|
+
} & { [K in Exclude<keyof I, keyof TransferOwnershipRequest>]: never; }>(base?: I | undefined): TransferOwnershipRequest;
|
|
24845
|
+
fromPartial<I_1 extends {
|
|
24846
|
+
clan_id?: string | undefined;
|
|
24847
|
+
new_owner_id?: string | undefined;
|
|
24848
|
+
} & {
|
|
24849
|
+
clan_id?: string | undefined;
|
|
24850
|
+
new_owner_id?: string | undefined;
|
|
24851
|
+
} & { [K_1 in Exclude<keyof I_1, keyof TransferOwnershipRequest>]: never; }>(object: I_1): TransferOwnershipRequest;
|
|
24852
|
+
};
|
|
24657
24853
|
type Builtin = Date | Function | Uint8Array | string | number | boolean | undefined;
|
|
24658
24854
|
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 {} ? {
|
|
24659
24855
|
[K in keyof T]?: DeepPartial<T[K]>;
|