mezon-sdk 2.7.80 → 2.7.81
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 +238 -75
- package/dist/cjs/api/api.js +407 -46
- package/dist/cjs/api/api.js.map +1 -1
- package/dist/cjs/client.js +3 -3
- package/dist/cjs/client.js.map +1 -1
- package/dist/cjs/google/protobuf/struct.js +1 -1
- package/dist/cjs/google/protobuf/timestamp.js +1 -1
- package/dist/cjs/google/protobuf/wrappers.js +1 -1
- package/dist/cjs/mezon-client/channel_manager.d.ts +2 -0
- package/dist/cjs/mezon-client/channel_manager.js +2 -1
- package/dist/cjs/mezon-client/channel_manager.js.map +1 -1
- package/dist/cjs/mezon-client/message_manager.d.ts +2 -0
- package/dist/cjs/mezon-client/message_manager.js +2 -0
- package/dist/cjs/mezon-client/message_manager.js.map +1 -1
- package/dist/cjs/mezon-client/mezon_client.d.ts +6 -7
- package/dist/cjs/mezon-client/mezon_client.js +9 -42
- package/dist/cjs/mezon-client/mezon_client.js.map +1 -1
- package/dist/cjs/mezon-client/socket_manager.d.ts +12 -1
- package/dist/cjs/mezon-client/socket_manager.js +48 -7
- package/dist/cjs/mezon-client/socket_manager.js.map +1 -1
- package/dist/cjs/rtapi/realtime.d.ts +1329 -342
- package/dist/cjs/rtapi/realtime.js +632 -59
- package/dist/cjs/rtapi/realtime.js.map +1 -1
- package/dist/esm/api/api.d.ts +238 -75
- package/dist/esm/api/api.js +396 -39
- package/dist/esm/api/api.js.map +1 -1
- package/dist/esm/client.js +3 -3
- package/dist/esm/client.js.map +1 -1
- package/dist/esm/google/protobuf/struct.js +1 -1
- package/dist/esm/google/protobuf/timestamp.js +1 -1
- package/dist/esm/google/protobuf/wrappers.js +1 -1
- package/dist/esm/mezon-client/channel_manager.d.ts +2 -0
- package/dist/esm/mezon-client/channel_manager.js +2 -1
- package/dist/esm/mezon-client/channel_manager.js.map +1 -1
- package/dist/esm/mezon-client/message_manager.d.ts +2 -0
- package/dist/esm/mezon-client/message_manager.js +2 -0
- package/dist/esm/mezon-client/message_manager.js.map +1 -1
- package/dist/esm/mezon-client/mezon_client.d.ts +6 -7
- package/dist/esm/mezon-client/mezon_client.js +9 -43
- package/dist/esm/mezon-client/mezon_client.js.map +1 -1
- package/dist/esm/mezon-client/socket_manager.d.ts +12 -1
- package/dist/esm/mezon-client/socket_manager.js +51 -7
- package/dist/esm/mezon-client/socket_manager.js.map +1 -1
- package/dist/esm/rtapi/realtime.d.ts +1329 -342
- package/dist/esm/rtapi/realtime.js +621 -51
- 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
package/dist/cjs/api/api.d.ts
CHANGED
|
@@ -245,6 +245,8 @@ export interface SessionLogoutRequest {
|
|
|
245
245
|
device_id: string;
|
|
246
246
|
/** FCM token from firebase */
|
|
247
247
|
fcm_token: string;
|
|
248
|
+
/** platform */
|
|
249
|
+
platform: string;
|
|
248
250
|
}
|
|
249
251
|
/** Authenticate against the server with Apple Sign In. */
|
|
250
252
|
export interface AuthenticateAppleRequest {
|
|
@@ -569,6 +571,8 @@ export interface DeleteGroupRequest {
|
|
|
569
571
|
export interface DeleteNotificationsRequest {
|
|
570
572
|
/** The id of notifications. */
|
|
571
573
|
ids: string[];
|
|
574
|
+
/** The category of notifications. */
|
|
575
|
+
category: number;
|
|
572
576
|
}
|
|
573
577
|
/** Represents an event to be passed through the server to registered event handlers. */
|
|
574
578
|
export interface Event {
|
|
@@ -928,8 +932,8 @@ export interface ListNotificationsRequest {
|
|
|
928
932
|
clan_id: string;
|
|
929
933
|
/** The current notification Id. */
|
|
930
934
|
notification_id: string;
|
|
931
|
-
/** The
|
|
932
|
-
|
|
935
|
+
/** The category (0: for you, 1: mentions, 2: mesages). */
|
|
936
|
+
category: number;
|
|
933
937
|
/** True if listing should be older notifications to newer, false if reverse. */
|
|
934
938
|
direction: number | undefined;
|
|
935
939
|
}
|
|
@@ -970,6 +974,10 @@ export interface Notification {
|
|
|
970
974
|
avatar_url: string;
|
|
971
975
|
/** */
|
|
972
976
|
channel: ChannelDescription | undefined;
|
|
977
|
+
/** */
|
|
978
|
+
topic_id: string;
|
|
979
|
+
/** category. */
|
|
980
|
+
category: number;
|
|
973
981
|
}
|
|
974
982
|
/** A collection of zero or more notifications. */
|
|
975
983
|
export interface NotificationList {
|
|
@@ -1187,6 +1195,8 @@ export interface ClanDesc {
|
|
|
1187
1195
|
badge_count: number;
|
|
1188
1196
|
/** Is onboarding. */
|
|
1189
1197
|
is_onboarding: boolean;
|
|
1198
|
+
/** Welcome channel id. */
|
|
1199
|
+
welcome_channel_id: string;
|
|
1190
1200
|
}
|
|
1191
1201
|
/** Clan information */
|
|
1192
1202
|
export interface CreateClanDescRequest {
|
|
@@ -1210,6 +1220,8 @@ export interface UpdateClanDescRequest {
|
|
|
1210
1220
|
status: number;
|
|
1211
1221
|
/** Is onboarding. */
|
|
1212
1222
|
is_onboarding: boolean | undefined;
|
|
1223
|
+
/** Welcome channel id. */
|
|
1224
|
+
welcome_channel_id: string;
|
|
1213
1225
|
}
|
|
1214
1226
|
/** Delete a clan the user has access to. */
|
|
1215
1227
|
export interface DeleteClanDescRequest {
|
|
@@ -1375,8 +1387,8 @@ export interface ChannelMessageHeader {
|
|
|
1375
1387
|
export interface ChannelDescription {
|
|
1376
1388
|
/** The clan of this channel */
|
|
1377
1389
|
clan_id: string;
|
|
1378
|
-
/** The
|
|
1379
|
-
|
|
1390
|
+
/** The parent channel this message belongs to. */
|
|
1391
|
+
parent_id: string;
|
|
1380
1392
|
/** The channel this message belongs to. */
|
|
1381
1393
|
channel_id: string;
|
|
1382
1394
|
/** The category of channel */
|
|
@@ -1487,8 +1499,8 @@ export interface AddRoleChannelDescRequest {
|
|
|
1487
1499
|
export interface CreateChannelDescRequest {
|
|
1488
1500
|
/** The clan of this channel */
|
|
1489
1501
|
clan_id: string;
|
|
1490
|
-
/** The
|
|
1491
|
-
|
|
1502
|
+
/** The parent channel this message belongs to. */
|
|
1503
|
+
parent_id: string;
|
|
1492
1504
|
/** The channel this message belongs to. */
|
|
1493
1505
|
channel_id: string;
|
|
1494
1506
|
/** The category of channel */
|
|
@@ -1748,7 +1760,7 @@ export interface HashtagDm {
|
|
|
1748
1760
|
/** */
|
|
1749
1761
|
channel_private: number;
|
|
1750
1762
|
/** */
|
|
1751
|
-
|
|
1763
|
+
parent_id: string;
|
|
1752
1764
|
}
|
|
1753
1765
|
export interface NotificationChannelCategorySettingList {
|
|
1754
1766
|
notification_channel_category_settings_list: NotificationChannelCategorySetting[];
|
|
@@ -2639,6 +2651,8 @@ export interface EditChannelCanvasRequest {
|
|
|
2639
2651
|
content: string;
|
|
2640
2652
|
/** is default */
|
|
2641
2653
|
is_default: boolean;
|
|
2654
|
+
/** status */
|
|
2655
|
+
status: number;
|
|
2642
2656
|
}
|
|
2643
2657
|
export interface EditChannelCanvasResponse {
|
|
2644
2658
|
/** id */
|
|
@@ -3198,6 +3212,21 @@ export interface MezonOauthClient {
|
|
|
3198
3212
|
export interface MezonOauthClientList {
|
|
3199
3213
|
listMezonOauthClient: MezonOauthClient[];
|
|
3200
3214
|
}
|
|
3215
|
+
export interface GetMezonOauthClientRequest {
|
|
3216
|
+
client_id: string;
|
|
3217
|
+
}
|
|
3218
|
+
export interface SearchThreadRequest {
|
|
3219
|
+
clan_id: string;
|
|
3220
|
+
channel_id: string;
|
|
3221
|
+
label: string;
|
|
3222
|
+
}
|
|
3223
|
+
export interface GenerateHashChannelAppsRequest {
|
|
3224
|
+
app_id: string;
|
|
3225
|
+
}
|
|
3226
|
+
export interface GenerateHashChannelAppsResponse {
|
|
3227
|
+
hash: string;
|
|
3228
|
+
user_id: string;
|
|
3229
|
+
}
|
|
3201
3230
|
export declare const Account: {
|
|
3202
3231
|
encode(message: Account, writer?: _m0.Writer): _m0.Writer;
|
|
3203
3232
|
decode(input: _m0.Reader | Uint8Array, length?: number): Account;
|
|
@@ -4082,22 +4111,26 @@ export declare const SessionLogoutRequest: {
|
|
|
4082
4111
|
refresh_token?: string | undefined;
|
|
4083
4112
|
device_id?: string | undefined;
|
|
4084
4113
|
fcm_token?: string | undefined;
|
|
4114
|
+
platform?: string | undefined;
|
|
4085
4115
|
} & {
|
|
4086
4116
|
token?: string | undefined;
|
|
4087
4117
|
refresh_token?: string | undefined;
|
|
4088
4118
|
device_id?: string | undefined;
|
|
4089
4119
|
fcm_token?: string | undefined;
|
|
4120
|
+
platform?: string | undefined;
|
|
4090
4121
|
} & { [K in Exclude<keyof I, keyof SessionLogoutRequest>]: never; }>(base?: I | undefined): SessionLogoutRequest;
|
|
4091
4122
|
fromPartial<I_1 extends {
|
|
4092
4123
|
token?: string | undefined;
|
|
4093
4124
|
refresh_token?: string | undefined;
|
|
4094
4125
|
device_id?: string | undefined;
|
|
4095
4126
|
fcm_token?: string | undefined;
|
|
4127
|
+
platform?: string | undefined;
|
|
4096
4128
|
} & {
|
|
4097
4129
|
token?: string | undefined;
|
|
4098
4130
|
refresh_token?: string | undefined;
|
|
4099
4131
|
device_id?: string | undefined;
|
|
4100
4132
|
fcm_token?: string | undefined;
|
|
4133
|
+
platform?: string | undefined;
|
|
4101
4134
|
} & { [K_1 in Exclude<keyof I_1, keyof SessionLogoutRequest>]: never; }>(object: I_1): SessionLogoutRequest;
|
|
4102
4135
|
};
|
|
4103
4136
|
export declare const AuthenticateAppleRequest: {
|
|
@@ -4904,7 +4937,7 @@ export declare const NotificationInfo: {
|
|
|
4904
4937
|
clan_logo?: string | undefined;
|
|
4905
4938
|
channel?: {
|
|
4906
4939
|
clan_id?: string | undefined;
|
|
4907
|
-
|
|
4940
|
+
parent_id?: string | undefined;
|
|
4908
4941
|
channel_id?: string | undefined;
|
|
4909
4942
|
category_id?: string | undefined;
|
|
4910
4943
|
category_name?: string | undefined;
|
|
@@ -4968,7 +5001,7 @@ export declare const NotificationInfo: {
|
|
|
4968
5001
|
clan_logo?: string | undefined;
|
|
4969
5002
|
channel?: ({
|
|
4970
5003
|
clan_id?: string | undefined;
|
|
4971
|
-
|
|
5004
|
+
parent_id?: string | undefined;
|
|
4972
5005
|
channel_id?: string | undefined;
|
|
4973
5006
|
category_id?: string | undefined;
|
|
4974
5007
|
category_name?: string | undefined;
|
|
@@ -5020,7 +5053,7 @@ export declare const NotificationInfo: {
|
|
|
5020
5053
|
display_names?: string[] | undefined;
|
|
5021
5054
|
} & {
|
|
5022
5055
|
clan_id?: string | undefined;
|
|
5023
|
-
|
|
5056
|
+
parent_id?: string | undefined;
|
|
5024
5057
|
channel_id?: string | undefined;
|
|
5025
5058
|
category_id?: string | undefined;
|
|
5026
5059
|
category_name?: string | undefined;
|
|
@@ -5105,7 +5138,7 @@ export declare const NotificationInfo: {
|
|
|
5105
5138
|
clan_logo?: string | undefined;
|
|
5106
5139
|
channel?: {
|
|
5107
5140
|
clan_id?: string | undefined;
|
|
5108
|
-
|
|
5141
|
+
parent_id?: string | undefined;
|
|
5109
5142
|
channel_id?: string | undefined;
|
|
5110
5143
|
category_id?: string | undefined;
|
|
5111
5144
|
category_name?: string | undefined;
|
|
@@ -5169,7 +5202,7 @@ export declare const NotificationInfo: {
|
|
|
5169
5202
|
clan_logo?: string | undefined;
|
|
5170
5203
|
channel?: ({
|
|
5171
5204
|
clan_id?: string | undefined;
|
|
5172
|
-
|
|
5205
|
+
parent_id?: string | undefined;
|
|
5173
5206
|
channel_id?: string | undefined;
|
|
5174
5207
|
category_id?: string | undefined;
|
|
5175
5208
|
category_name?: string | undefined;
|
|
@@ -5221,7 +5254,7 @@ export declare const NotificationInfo: {
|
|
|
5221
5254
|
display_names?: string[] | undefined;
|
|
5222
5255
|
} & {
|
|
5223
5256
|
clan_id?: string | undefined;
|
|
5224
|
-
|
|
5257
|
+
parent_id?: string | undefined;
|
|
5225
5258
|
channel_id?: string | undefined;
|
|
5226
5259
|
category_id?: string | undefined;
|
|
5227
5260
|
category_name?: string | undefined;
|
|
@@ -5977,14 +6010,18 @@ export declare const DeleteNotificationsRequest: {
|
|
|
5977
6010
|
toJSON(message: DeleteNotificationsRequest): unknown;
|
|
5978
6011
|
create<I extends {
|
|
5979
6012
|
ids?: string[] | undefined;
|
|
6013
|
+
category?: number | undefined;
|
|
5980
6014
|
} & {
|
|
5981
6015
|
ids?: (string[] & string[] & { [K in Exclude<keyof I["ids"], keyof string[]>]: never; }) | undefined;
|
|
5982
|
-
|
|
6016
|
+
category?: number | undefined;
|
|
6017
|
+
} & { [K_1 in Exclude<keyof I, keyof DeleteNotificationsRequest>]: never; }>(base?: I | undefined): DeleteNotificationsRequest;
|
|
5983
6018
|
fromPartial<I_1 extends {
|
|
5984
6019
|
ids?: string[] | undefined;
|
|
6020
|
+
category?: number | undefined;
|
|
5985
6021
|
} & {
|
|
5986
6022
|
ids?: (string[] & string[] & { [K_2 in Exclude<keyof I_1["ids"], keyof string[]>]: never; }) | undefined;
|
|
5987
|
-
|
|
6023
|
+
category?: number | undefined;
|
|
6024
|
+
} & { [K_3 in Exclude<keyof I_1, keyof DeleteNotificationsRequest>]: never; }>(object: I_1): DeleteNotificationsRequest;
|
|
5988
6025
|
};
|
|
5989
6026
|
export declare const Event: {
|
|
5990
6027
|
encode(message: Event, writer?: _m0.Writer): _m0.Writer;
|
|
@@ -8667,26 +8704,26 @@ export declare const ListNotificationsRequest: {
|
|
|
8667
8704
|
limit?: number | undefined;
|
|
8668
8705
|
clan_id?: string | undefined;
|
|
8669
8706
|
notification_id?: string | undefined;
|
|
8670
|
-
|
|
8707
|
+
category?: number | undefined;
|
|
8671
8708
|
direction?: number | undefined;
|
|
8672
8709
|
} & {
|
|
8673
8710
|
limit?: number | undefined;
|
|
8674
8711
|
clan_id?: string | undefined;
|
|
8675
8712
|
notification_id?: string | undefined;
|
|
8676
|
-
|
|
8713
|
+
category?: number | undefined;
|
|
8677
8714
|
direction?: number | undefined;
|
|
8678
8715
|
} & { [K in Exclude<keyof I, keyof ListNotificationsRequest>]: never; }>(base?: I | undefined): ListNotificationsRequest;
|
|
8679
8716
|
fromPartial<I_1 extends {
|
|
8680
8717
|
limit?: number | undefined;
|
|
8681
8718
|
clan_id?: string | undefined;
|
|
8682
8719
|
notification_id?: string | undefined;
|
|
8683
|
-
|
|
8720
|
+
category?: number | undefined;
|
|
8684
8721
|
direction?: number | undefined;
|
|
8685
8722
|
} & {
|
|
8686
8723
|
limit?: number | undefined;
|
|
8687
8724
|
clan_id?: string | undefined;
|
|
8688
8725
|
notification_id?: string | undefined;
|
|
8689
|
-
|
|
8726
|
+
category?: number | undefined;
|
|
8690
8727
|
direction?: number | undefined;
|
|
8691
8728
|
} & { [K_1 in Exclude<keyof I_1, keyof ListNotificationsRequest>]: never; }>(object: I_1): ListNotificationsRequest;
|
|
8692
8729
|
};
|
|
@@ -8737,7 +8774,7 @@ export declare const Notification: {
|
|
|
8737
8774
|
avatar_url?: string | undefined;
|
|
8738
8775
|
channel?: {
|
|
8739
8776
|
clan_id?: string | undefined;
|
|
8740
|
-
|
|
8777
|
+
parent_id?: string | undefined;
|
|
8741
8778
|
channel_id?: string | undefined;
|
|
8742
8779
|
category_id?: string | undefined;
|
|
8743
8780
|
category_name?: string | undefined;
|
|
@@ -8788,6 +8825,8 @@ export declare const Notification: {
|
|
|
8788
8825
|
e2ee?: number | undefined;
|
|
8789
8826
|
display_names?: string[] | undefined;
|
|
8790
8827
|
} | undefined;
|
|
8828
|
+
topic_id?: string | undefined;
|
|
8829
|
+
category?: number | undefined;
|
|
8791
8830
|
} & {
|
|
8792
8831
|
id?: string | undefined;
|
|
8793
8832
|
subject?: string | undefined;
|
|
@@ -8802,7 +8841,7 @@ export declare const Notification: {
|
|
|
8802
8841
|
avatar_url?: string | undefined;
|
|
8803
8842
|
channel?: ({
|
|
8804
8843
|
clan_id?: string | undefined;
|
|
8805
|
-
|
|
8844
|
+
parent_id?: string | undefined;
|
|
8806
8845
|
channel_id?: string | undefined;
|
|
8807
8846
|
category_id?: string | undefined;
|
|
8808
8847
|
category_name?: string | undefined;
|
|
@@ -8854,7 +8893,7 @@ export declare const Notification: {
|
|
|
8854
8893
|
display_names?: string[] | undefined;
|
|
8855
8894
|
} & {
|
|
8856
8895
|
clan_id?: string | undefined;
|
|
8857
|
-
|
|
8896
|
+
parent_id?: string | undefined;
|
|
8858
8897
|
channel_id?: string | undefined;
|
|
8859
8898
|
category_id?: string | undefined;
|
|
8860
8899
|
category_name?: string | undefined;
|
|
@@ -8925,6 +8964,8 @@ export declare const Notification: {
|
|
|
8925
8964
|
e2ee?: number | undefined;
|
|
8926
8965
|
display_names?: (string[] & string[] & { [K_10 in Exclude<keyof I["channel"]["display_names"], keyof string[]>]: never; }) | undefined;
|
|
8927
8966
|
} & { [K_11 in Exclude<keyof I["channel"], keyof ChannelDescription>]: never; }) | undefined;
|
|
8967
|
+
topic_id?: string | undefined;
|
|
8968
|
+
category?: number | undefined;
|
|
8928
8969
|
} & { [K_12 in Exclude<keyof I, keyof Notification>]: never; }>(base?: I | undefined): Notification;
|
|
8929
8970
|
fromPartial<I_1 extends {
|
|
8930
8971
|
id?: string | undefined;
|
|
@@ -8940,7 +8981,7 @@ export declare const Notification: {
|
|
|
8940
8981
|
avatar_url?: string | undefined;
|
|
8941
8982
|
channel?: {
|
|
8942
8983
|
clan_id?: string | undefined;
|
|
8943
|
-
|
|
8984
|
+
parent_id?: string | undefined;
|
|
8944
8985
|
channel_id?: string | undefined;
|
|
8945
8986
|
category_id?: string | undefined;
|
|
8946
8987
|
category_name?: string | undefined;
|
|
@@ -8991,6 +9032,8 @@ export declare const Notification: {
|
|
|
8991
9032
|
e2ee?: number | undefined;
|
|
8992
9033
|
display_names?: string[] | undefined;
|
|
8993
9034
|
} | undefined;
|
|
9035
|
+
topic_id?: string | undefined;
|
|
9036
|
+
category?: number | undefined;
|
|
8994
9037
|
} & {
|
|
8995
9038
|
id?: string | undefined;
|
|
8996
9039
|
subject?: string | undefined;
|
|
@@ -9005,7 +9048,7 @@ export declare const Notification: {
|
|
|
9005
9048
|
avatar_url?: string | undefined;
|
|
9006
9049
|
channel?: ({
|
|
9007
9050
|
clan_id?: string | undefined;
|
|
9008
|
-
|
|
9051
|
+
parent_id?: string | undefined;
|
|
9009
9052
|
channel_id?: string | undefined;
|
|
9010
9053
|
category_id?: string | undefined;
|
|
9011
9054
|
category_name?: string | undefined;
|
|
@@ -9057,7 +9100,7 @@ export declare const Notification: {
|
|
|
9057
9100
|
display_names?: string[] | undefined;
|
|
9058
9101
|
} & {
|
|
9059
9102
|
clan_id?: string | undefined;
|
|
9060
|
-
|
|
9103
|
+
parent_id?: string | undefined;
|
|
9061
9104
|
channel_id?: string | undefined;
|
|
9062
9105
|
category_id?: string | undefined;
|
|
9063
9106
|
category_name?: string | undefined;
|
|
@@ -9128,6 +9171,8 @@ export declare const Notification: {
|
|
|
9128
9171
|
e2ee?: number | undefined;
|
|
9129
9172
|
display_names?: (string[] & string[] & { [K_23 in Exclude<keyof I_1["channel"]["display_names"], keyof string[]>]: never; }) | undefined;
|
|
9130
9173
|
} & { [K_24 in Exclude<keyof I_1["channel"], keyof ChannelDescription>]: never; }) | undefined;
|
|
9174
|
+
topic_id?: string | undefined;
|
|
9175
|
+
category?: number | undefined;
|
|
9131
9176
|
} & { [K_25 in Exclude<keyof I_1, keyof Notification>]: never; }>(object: I_1): Notification;
|
|
9132
9177
|
};
|
|
9133
9178
|
export declare const NotificationList: {
|
|
@@ -9150,7 +9195,7 @@ export declare const NotificationList: {
|
|
|
9150
9195
|
avatar_url?: string | undefined;
|
|
9151
9196
|
channel?: {
|
|
9152
9197
|
clan_id?: string | undefined;
|
|
9153
|
-
|
|
9198
|
+
parent_id?: string | undefined;
|
|
9154
9199
|
channel_id?: string | undefined;
|
|
9155
9200
|
category_id?: string | undefined;
|
|
9156
9201
|
category_name?: string | undefined;
|
|
@@ -9201,6 +9246,8 @@ export declare const NotificationList: {
|
|
|
9201
9246
|
e2ee?: number | undefined;
|
|
9202
9247
|
display_names?: string[] | undefined;
|
|
9203
9248
|
} | undefined;
|
|
9249
|
+
topic_id?: string | undefined;
|
|
9250
|
+
category?: number | undefined;
|
|
9204
9251
|
}[] | undefined;
|
|
9205
9252
|
cacheable_cursor?: string | undefined;
|
|
9206
9253
|
} & {
|
|
@@ -9218,7 +9265,7 @@ export declare const NotificationList: {
|
|
|
9218
9265
|
avatar_url?: string | undefined;
|
|
9219
9266
|
channel?: {
|
|
9220
9267
|
clan_id?: string | undefined;
|
|
9221
|
-
|
|
9268
|
+
parent_id?: string | undefined;
|
|
9222
9269
|
channel_id?: string | undefined;
|
|
9223
9270
|
category_id?: string | undefined;
|
|
9224
9271
|
category_name?: string | undefined;
|
|
@@ -9269,6 +9316,8 @@ export declare const NotificationList: {
|
|
|
9269
9316
|
e2ee?: number | undefined;
|
|
9270
9317
|
display_names?: string[] | undefined;
|
|
9271
9318
|
} | undefined;
|
|
9319
|
+
topic_id?: string | undefined;
|
|
9320
|
+
category?: number | undefined;
|
|
9272
9321
|
}[] & ({
|
|
9273
9322
|
id?: string | undefined;
|
|
9274
9323
|
subject?: string | undefined;
|
|
@@ -9283,7 +9332,7 @@ export declare const NotificationList: {
|
|
|
9283
9332
|
avatar_url?: string | undefined;
|
|
9284
9333
|
channel?: {
|
|
9285
9334
|
clan_id?: string | undefined;
|
|
9286
|
-
|
|
9335
|
+
parent_id?: string | undefined;
|
|
9287
9336
|
channel_id?: string | undefined;
|
|
9288
9337
|
category_id?: string | undefined;
|
|
9289
9338
|
category_name?: string | undefined;
|
|
@@ -9334,6 +9383,8 @@ export declare const NotificationList: {
|
|
|
9334
9383
|
e2ee?: number | undefined;
|
|
9335
9384
|
display_names?: string[] | undefined;
|
|
9336
9385
|
} | undefined;
|
|
9386
|
+
topic_id?: string | undefined;
|
|
9387
|
+
category?: number | undefined;
|
|
9337
9388
|
} & {
|
|
9338
9389
|
id?: string | undefined;
|
|
9339
9390
|
subject?: string | undefined;
|
|
@@ -9348,7 +9399,7 @@ export declare const NotificationList: {
|
|
|
9348
9399
|
avatar_url?: string | undefined;
|
|
9349
9400
|
channel?: ({
|
|
9350
9401
|
clan_id?: string | undefined;
|
|
9351
|
-
|
|
9402
|
+
parent_id?: string | undefined;
|
|
9352
9403
|
channel_id?: string | undefined;
|
|
9353
9404
|
category_id?: string | undefined;
|
|
9354
9405
|
category_name?: string | undefined;
|
|
@@ -9400,7 +9451,7 @@ export declare const NotificationList: {
|
|
|
9400
9451
|
display_names?: string[] | undefined;
|
|
9401
9452
|
} & {
|
|
9402
9453
|
clan_id?: string | undefined;
|
|
9403
|
-
|
|
9454
|
+
parent_id?: string | undefined;
|
|
9404
9455
|
channel_id?: string | undefined;
|
|
9405
9456
|
category_id?: string | undefined;
|
|
9406
9457
|
category_name?: string | undefined;
|
|
@@ -9471,6 +9522,8 @@ export declare const NotificationList: {
|
|
|
9471
9522
|
e2ee?: number | undefined;
|
|
9472
9523
|
display_names?: (string[] & string[] & { [K_10 in Exclude<keyof I["notifications"][number]["channel"]["display_names"], keyof string[]>]: never; }) | undefined;
|
|
9473
9524
|
} & { [K_11 in Exclude<keyof I["notifications"][number]["channel"], keyof ChannelDescription>]: never; }) | undefined;
|
|
9525
|
+
topic_id?: string | undefined;
|
|
9526
|
+
category?: number | undefined;
|
|
9474
9527
|
} & { [K_12 in Exclude<keyof I["notifications"][number], keyof Notification>]: never; })[] & { [K_13 in Exclude<keyof I["notifications"], keyof {
|
|
9475
9528
|
id?: string | undefined;
|
|
9476
9529
|
subject?: string | undefined;
|
|
@@ -9485,7 +9538,7 @@ export declare const NotificationList: {
|
|
|
9485
9538
|
avatar_url?: string | undefined;
|
|
9486
9539
|
channel?: {
|
|
9487
9540
|
clan_id?: string | undefined;
|
|
9488
|
-
|
|
9541
|
+
parent_id?: string | undefined;
|
|
9489
9542
|
channel_id?: string | undefined;
|
|
9490
9543
|
category_id?: string | undefined;
|
|
9491
9544
|
category_name?: string | undefined;
|
|
@@ -9536,6 +9589,8 @@ export declare const NotificationList: {
|
|
|
9536
9589
|
e2ee?: number | undefined;
|
|
9537
9590
|
display_names?: string[] | undefined;
|
|
9538
9591
|
} | undefined;
|
|
9592
|
+
topic_id?: string | undefined;
|
|
9593
|
+
category?: number | undefined;
|
|
9539
9594
|
}[]>]: never; }) | undefined;
|
|
9540
9595
|
cacheable_cursor?: string | undefined;
|
|
9541
9596
|
} & { [K_14 in Exclude<keyof I, keyof NotificationList>]: never; }>(base?: I | undefined): NotificationList;
|
|
@@ -9554,7 +9609,7 @@ export declare const NotificationList: {
|
|
|
9554
9609
|
avatar_url?: string | undefined;
|
|
9555
9610
|
channel?: {
|
|
9556
9611
|
clan_id?: string | undefined;
|
|
9557
|
-
|
|
9612
|
+
parent_id?: string | undefined;
|
|
9558
9613
|
channel_id?: string | undefined;
|
|
9559
9614
|
category_id?: string | undefined;
|
|
9560
9615
|
category_name?: string | undefined;
|
|
@@ -9605,6 +9660,8 @@ export declare const NotificationList: {
|
|
|
9605
9660
|
e2ee?: number | undefined;
|
|
9606
9661
|
display_names?: string[] | undefined;
|
|
9607
9662
|
} | undefined;
|
|
9663
|
+
topic_id?: string | undefined;
|
|
9664
|
+
category?: number | undefined;
|
|
9608
9665
|
}[] | undefined;
|
|
9609
9666
|
cacheable_cursor?: string | undefined;
|
|
9610
9667
|
} & {
|
|
@@ -9622,7 +9679,7 @@ export declare const NotificationList: {
|
|
|
9622
9679
|
avatar_url?: string | undefined;
|
|
9623
9680
|
channel?: {
|
|
9624
9681
|
clan_id?: string | undefined;
|
|
9625
|
-
|
|
9682
|
+
parent_id?: string | undefined;
|
|
9626
9683
|
channel_id?: string | undefined;
|
|
9627
9684
|
category_id?: string | undefined;
|
|
9628
9685
|
category_name?: string | undefined;
|
|
@@ -9673,6 +9730,8 @@ export declare const NotificationList: {
|
|
|
9673
9730
|
e2ee?: number | undefined;
|
|
9674
9731
|
display_names?: string[] | undefined;
|
|
9675
9732
|
} | undefined;
|
|
9733
|
+
topic_id?: string | undefined;
|
|
9734
|
+
category?: number | undefined;
|
|
9676
9735
|
}[] & ({
|
|
9677
9736
|
id?: string | undefined;
|
|
9678
9737
|
subject?: string | undefined;
|
|
@@ -9687,7 +9746,7 @@ export declare const NotificationList: {
|
|
|
9687
9746
|
avatar_url?: string | undefined;
|
|
9688
9747
|
channel?: {
|
|
9689
9748
|
clan_id?: string | undefined;
|
|
9690
|
-
|
|
9749
|
+
parent_id?: string | undefined;
|
|
9691
9750
|
channel_id?: string | undefined;
|
|
9692
9751
|
category_id?: string | undefined;
|
|
9693
9752
|
category_name?: string | undefined;
|
|
@@ -9738,6 +9797,8 @@ export declare const NotificationList: {
|
|
|
9738
9797
|
e2ee?: number | undefined;
|
|
9739
9798
|
display_names?: string[] | undefined;
|
|
9740
9799
|
} | undefined;
|
|
9800
|
+
topic_id?: string | undefined;
|
|
9801
|
+
category?: number | undefined;
|
|
9741
9802
|
} & {
|
|
9742
9803
|
id?: string | undefined;
|
|
9743
9804
|
subject?: string | undefined;
|
|
@@ -9752,7 +9813,7 @@ export declare const NotificationList: {
|
|
|
9752
9813
|
avatar_url?: string | undefined;
|
|
9753
9814
|
channel?: ({
|
|
9754
9815
|
clan_id?: string | undefined;
|
|
9755
|
-
|
|
9816
|
+
parent_id?: string | undefined;
|
|
9756
9817
|
channel_id?: string | undefined;
|
|
9757
9818
|
category_id?: string | undefined;
|
|
9758
9819
|
category_name?: string | undefined;
|
|
@@ -9804,7 +9865,7 @@ export declare const NotificationList: {
|
|
|
9804
9865
|
display_names?: string[] | undefined;
|
|
9805
9866
|
} & {
|
|
9806
9867
|
clan_id?: string | undefined;
|
|
9807
|
-
|
|
9868
|
+
parent_id?: string | undefined;
|
|
9808
9869
|
channel_id?: string | undefined;
|
|
9809
9870
|
category_id?: string | undefined;
|
|
9810
9871
|
category_name?: string | undefined;
|
|
@@ -9875,6 +9936,8 @@ export declare const NotificationList: {
|
|
|
9875
9936
|
e2ee?: number | undefined;
|
|
9876
9937
|
display_names?: (string[] & string[] & { [K_25 in Exclude<keyof I_1["notifications"][number]["channel"]["display_names"], keyof string[]>]: never; }) | undefined;
|
|
9877
9938
|
} & { [K_26 in Exclude<keyof I_1["notifications"][number]["channel"], keyof ChannelDescription>]: never; }) | undefined;
|
|
9939
|
+
topic_id?: string | undefined;
|
|
9940
|
+
category?: number | undefined;
|
|
9878
9941
|
} & { [K_27 in Exclude<keyof I_1["notifications"][number], keyof Notification>]: never; })[] & { [K_28 in Exclude<keyof I_1["notifications"], keyof {
|
|
9879
9942
|
id?: string | undefined;
|
|
9880
9943
|
subject?: string | undefined;
|
|
@@ -9889,7 +9952,7 @@ export declare const NotificationList: {
|
|
|
9889
9952
|
avatar_url?: string | undefined;
|
|
9890
9953
|
channel?: {
|
|
9891
9954
|
clan_id?: string | undefined;
|
|
9892
|
-
|
|
9955
|
+
parent_id?: string | undefined;
|
|
9893
9956
|
channel_id?: string | undefined;
|
|
9894
9957
|
category_id?: string | undefined;
|
|
9895
9958
|
category_name?: string | undefined;
|
|
@@ -9940,6 +10003,8 @@ export declare const NotificationList: {
|
|
|
9940
10003
|
e2ee?: number | undefined;
|
|
9941
10004
|
display_names?: string[] | undefined;
|
|
9942
10005
|
} | undefined;
|
|
10006
|
+
topic_id?: string | undefined;
|
|
10007
|
+
category?: number | undefined;
|
|
9943
10008
|
}[]>]: never; }) | undefined;
|
|
9944
10009
|
cacheable_cursor?: string | undefined;
|
|
9945
10010
|
} & { [K_29 in Exclude<keyof I_1, keyof NotificationList>]: never; }>(object: I_1): NotificationList;
|
|
@@ -10886,6 +10951,7 @@ export declare const ClanDesc: {
|
|
|
10886
10951
|
status?: number | undefined;
|
|
10887
10952
|
badge_count?: number | undefined;
|
|
10888
10953
|
is_onboarding?: boolean | undefined;
|
|
10954
|
+
welcome_channel_id?: string | undefined;
|
|
10889
10955
|
} & {
|
|
10890
10956
|
creator_id?: string | undefined;
|
|
10891
10957
|
clan_name?: string | undefined;
|
|
@@ -10895,6 +10961,7 @@ export declare const ClanDesc: {
|
|
|
10895
10961
|
status?: number | undefined;
|
|
10896
10962
|
badge_count?: number | undefined;
|
|
10897
10963
|
is_onboarding?: boolean | undefined;
|
|
10964
|
+
welcome_channel_id?: string | undefined;
|
|
10898
10965
|
} & { [K in Exclude<keyof I, keyof ClanDesc>]: never; }>(base?: I | undefined): ClanDesc;
|
|
10899
10966
|
fromPartial<I_1 extends {
|
|
10900
10967
|
creator_id?: string | undefined;
|
|
@@ -10905,6 +10972,7 @@ export declare const ClanDesc: {
|
|
|
10905
10972
|
status?: number | undefined;
|
|
10906
10973
|
badge_count?: number | undefined;
|
|
10907
10974
|
is_onboarding?: boolean | undefined;
|
|
10975
|
+
welcome_channel_id?: string | undefined;
|
|
10908
10976
|
} & {
|
|
10909
10977
|
creator_id?: string | undefined;
|
|
10910
10978
|
clan_name?: string | undefined;
|
|
@@ -10914,6 +10982,7 @@ export declare const ClanDesc: {
|
|
|
10914
10982
|
status?: number | undefined;
|
|
10915
10983
|
badge_count?: number | undefined;
|
|
10916
10984
|
is_onboarding?: boolean | undefined;
|
|
10985
|
+
welcome_channel_id?: string | undefined;
|
|
10917
10986
|
} & { [K_1 in Exclude<keyof I_1, keyof ClanDesc>]: never; }>(object: I_1): ClanDesc;
|
|
10918
10987
|
};
|
|
10919
10988
|
export declare const CreateClanDescRequest: {
|
|
@@ -10952,6 +11021,7 @@ export declare const UpdateClanDescRequest: {
|
|
|
10952
11021
|
banner?: string | undefined;
|
|
10953
11022
|
status?: number | undefined;
|
|
10954
11023
|
is_onboarding?: boolean | undefined;
|
|
11024
|
+
welcome_channel_id?: string | undefined;
|
|
10955
11025
|
} & {
|
|
10956
11026
|
clan_id?: string | undefined;
|
|
10957
11027
|
clan_name?: string | undefined;
|
|
@@ -10959,6 +11029,7 @@ export declare const UpdateClanDescRequest: {
|
|
|
10959
11029
|
banner?: string | undefined;
|
|
10960
11030
|
status?: number | undefined;
|
|
10961
11031
|
is_onboarding?: boolean | undefined;
|
|
11032
|
+
welcome_channel_id?: string | undefined;
|
|
10962
11033
|
} & { [K in Exclude<keyof I, keyof UpdateClanDescRequest>]: never; }>(base?: I | undefined): UpdateClanDescRequest;
|
|
10963
11034
|
fromPartial<I_1 extends {
|
|
10964
11035
|
clan_id?: string | undefined;
|
|
@@ -10967,6 +11038,7 @@ export declare const UpdateClanDescRequest: {
|
|
|
10967
11038
|
banner?: string | undefined;
|
|
10968
11039
|
status?: number | undefined;
|
|
10969
11040
|
is_onboarding?: boolean | undefined;
|
|
11041
|
+
welcome_channel_id?: string | undefined;
|
|
10970
11042
|
} & {
|
|
10971
11043
|
clan_id?: string | undefined;
|
|
10972
11044
|
clan_name?: string | undefined;
|
|
@@ -10974,6 +11046,7 @@ export declare const UpdateClanDescRequest: {
|
|
|
10974
11046
|
banner?: string | undefined;
|
|
10975
11047
|
status?: number | undefined;
|
|
10976
11048
|
is_onboarding?: boolean | undefined;
|
|
11049
|
+
welcome_channel_id?: string | undefined;
|
|
10977
11050
|
} & { [K_1 in Exclude<keyof I_1, keyof UpdateClanDescRequest>]: never; }>(object: I_1): UpdateClanDescRequest;
|
|
10978
11051
|
};
|
|
10979
11052
|
export declare const DeleteClanDescRequest: {
|
|
@@ -11031,6 +11104,7 @@ export declare const ClanDescList: {
|
|
|
11031
11104
|
status?: number | undefined;
|
|
11032
11105
|
badge_count?: number | undefined;
|
|
11033
11106
|
is_onboarding?: boolean | undefined;
|
|
11107
|
+
welcome_channel_id?: string | undefined;
|
|
11034
11108
|
}[] | undefined;
|
|
11035
11109
|
} & {
|
|
11036
11110
|
clandesc?: ({
|
|
@@ -11042,6 +11116,7 @@ export declare const ClanDescList: {
|
|
|
11042
11116
|
status?: number | undefined;
|
|
11043
11117
|
badge_count?: number | undefined;
|
|
11044
11118
|
is_onboarding?: boolean | undefined;
|
|
11119
|
+
welcome_channel_id?: string | undefined;
|
|
11045
11120
|
}[] & ({
|
|
11046
11121
|
creator_id?: string | undefined;
|
|
11047
11122
|
clan_name?: string | undefined;
|
|
@@ -11051,6 +11126,7 @@ export declare const ClanDescList: {
|
|
|
11051
11126
|
status?: number | undefined;
|
|
11052
11127
|
badge_count?: number | undefined;
|
|
11053
11128
|
is_onboarding?: boolean | undefined;
|
|
11129
|
+
welcome_channel_id?: string | undefined;
|
|
11054
11130
|
} & {
|
|
11055
11131
|
creator_id?: string | undefined;
|
|
11056
11132
|
clan_name?: string | undefined;
|
|
@@ -11060,6 +11136,7 @@ export declare const ClanDescList: {
|
|
|
11060
11136
|
status?: number | undefined;
|
|
11061
11137
|
badge_count?: number | undefined;
|
|
11062
11138
|
is_onboarding?: boolean | undefined;
|
|
11139
|
+
welcome_channel_id?: string | undefined;
|
|
11063
11140
|
} & { [K in Exclude<keyof I["clandesc"][number], keyof ClanDesc>]: never; })[] & { [K_1 in Exclude<keyof I["clandesc"], keyof {
|
|
11064
11141
|
creator_id?: string | undefined;
|
|
11065
11142
|
clan_name?: string | undefined;
|
|
@@ -11069,6 +11146,7 @@ export declare const ClanDescList: {
|
|
|
11069
11146
|
status?: number | undefined;
|
|
11070
11147
|
badge_count?: number | undefined;
|
|
11071
11148
|
is_onboarding?: boolean | undefined;
|
|
11149
|
+
welcome_channel_id?: string | undefined;
|
|
11072
11150
|
}[]>]: never; }) | undefined;
|
|
11073
11151
|
} & { [K_2 in Exclude<keyof I, "clandesc">]: never; }>(base?: I | undefined): ClanDescList;
|
|
11074
11152
|
fromPartial<I_1 extends {
|
|
@@ -11081,6 +11159,7 @@ export declare const ClanDescList: {
|
|
|
11081
11159
|
status?: number | undefined;
|
|
11082
11160
|
badge_count?: number | undefined;
|
|
11083
11161
|
is_onboarding?: boolean | undefined;
|
|
11162
|
+
welcome_channel_id?: string | undefined;
|
|
11084
11163
|
}[] | undefined;
|
|
11085
11164
|
} & {
|
|
11086
11165
|
clandesc?: ({
|
|
@@ -11092,6 +11171,7 @@ export declare const ClanDescList: {
|
|
|
11092
11171
|
status?: number | undefined;
|
|
11093
11172
|
badge_count?: number | undefined;
|
|
11094
11173
|
is_onboarding?: boolean | undefined;
|
|
11174
|
+
welcome_channel_id?: string | undefined;
|
|
11095
11175
|
}[] & ({
|
|
11096
11176
|
creator_id?: string | undefined;
|
|
11097
11177
|
clan_name?: string | undefined;
|
|
@@ -11101,6 +11181,7 @@ export declare const ClanDescList: {
|
|
|
11101
11181
|
status?: number | undefined;
|
|
11102
11182
|
badge_count?: number | undefined;
|
|
11103
11183
|
is_onboarding?: boolean | undefined;
|
|
11184
|
+
welcome_channel_id?: string | undefined;
|
|
11104
11185
|
} & {
|
|
11105
11186
|
creator_id?: string | undefined;
|
|
11106
11187
|
clan_name?: string | undefined;
|
|
@@ -11110,6 +11191,7 @@ export declare const ClanDescList: {
|
|
|
11110
11191
|
status?: number | undefined;
|
|
11111
11192
|
badge_count?: number | undefined;
|
|
11112
11193
|
is_onboarding?: boolean | undefined;
|
|
11194
|
+
welcome_channel_id?: string | undefined;
|
|
11113
11195
|
} & { [K_3 in Exclude<keyof I_1["clandesc"][number], keyof ClanDesc>]: never; })[] & { [K_4 in Exclude<keyof I_1["clandesc"], keyof {
|
|
11114
11196
|
creator_id?: string | undefined;
|
|
11115
11197
|
clan_name?: string | undefined;
|
|
@@ -11119,6 +11201,7 @@ export declare const ClanDescList: {
|
|
|
11119
11201
|
status?: number | undefined;
|
|
11120
11202
|
badge_count?: number | undefined;
|
|
11121
11203
|
is_onboarding?: boolean | undefined;
|
|
11204
|
+
welcome_channel_id?: string | undefined;
|
|
11122
11205
|
}[]>]: never; }) | undefined;
|
|
11123
11206
|
} & { [K_5 in Exclude<keyof I_1, "clandesc">]: never; }>(object: I_1): ClanDescList;
|
|
11124
11207
|
};
|
|
@@ -11176,7 +11259,7 @@ export declare const InviteUserRes: {
|
|
|
11176
11259
|
expiry_time?: Date | undefined;
|
|
11177
11260
|
channel_desc?: {
|
|
11178
11261
|
clan_id?: string | undefined;
|
|
11179
|
-
|
|
11262
|
+
parent_id?: string | undefined;
|
|
11180
11263
|
channel_id?: string | undefined;
|
|
11181
11264
|
category_id?: string | undefined;
|
|
11182
11265
|
category_name?: string | undefined;
|
|
@@ -11236,7 +11319,7 @@ export declare const InviteUserRes: {
|
|
|
11236
11319
|
expiry_time?: Date | undefined;
|
|
11237
11320
|
channel_desc?: ({
|
|
11238
11321
|
clan_id?: string | undefined;
|
|
11239
|
-
|
|
11322
|
+
parent_id?: string | undefined;
|
|
11240
11323
|
channel_id?: string | undefined;
|
|
11241
11324
|
category_id?: string | undefined;
|
|
11242
11325
|
category_name?: string | undefined;
|
|
@@ -11288,7 +11371,7 @@ export declare const InviteUserRes: {
|
|
|
11288
11371
|
display_names?: string[] | undefined;
|
|
11289
11372
|
} & {
|
|
11290
11373
|
clan_id?: string | undefined;
|
|
11291
|
-
|
|
11374
|
+
parent_id?: string | undefined;
|
|
11292
11375
|
channel_id?: string | undefined;
|
|
11293
11376
|
category_id?: string | undefined;
|
|
11294
11377
|
category_name?: string | undefined;
|
|
@@ -11369,7 +11452,7 @@ export declare const InviteUserRes: {
|
|
|
11369
11452
|
expiry_time?: Date | undefined;
|
|
11370
11453
|
channel_desc?: {
|
|
11371
11454
|
clan_id?: string | undefined;
|
|
11372
|
-
|
|
11455
|
+
parent_id?: string | undefined;
|
|
11373
11456
|
channel_id?: string | undefined;
|
|
11374
11457
|
category_id?: string | undefined;
|
|
11375
11458
|
category_name?: string | undefined;
|
|
@@ -11429,7 +11512,7 @@ export declare const InviteUserRes: {
|
|
|
11429
11512
|
expiry_time?: Date | undefined;
|
|
11430
11513
|
channel_desc?: ({
|
|
11431
11514
|
clan_id?: string | undefined;
|
|
11432
|
-
|
|
11515
|
+
parent_id?: string | undefined;
|
|
11433
11516
|
channel_id?: string | undefined;
|
|
11434
11517
|
category_id?: string | undefined;
|
|
11435
11518
|
category_name?: string | undefined;
|
|
@@ -11481,7 +11564,7 @@ export declare const InviteUserRes: {
|
|
|
11481
11564
|
display_names?: string[] | undefined;
|
|
11482
11565
|
} & {
|
|
11483
11566
|
clan_id?: string | undefined;
|
|
11484
|
-
|
|
11567
|
+
parent_id?: string | undefined;
|
|
11485
11568
|
channel_id?: string | undefined;
|
|
11486
11569
|
category_id?: string | undefined;
|
|
11487
11570
|
category_name?: string | undefined;
|
|
@@ -11983,7 +12066,7 @@ export declare const ChannelDescription: {
|
|
|
11983
12066
|
toJSON(message: ChannelDescription): unknown;
|
|
11984
12067
|
create<I extends {
|
|
11985
12068
|
clan_id?: string | undefined;
|
|
11986
|
-
|
|
12069
|
+
parent_id?: string | undefined;
|
|
11987
12070
|
channel_id?: string | undefined;
|
|
11988
12071
|
category_id?: string | undefined;
|
|
11989
12072
|
category_name?: string | undefined;
|
|
@@ -12035,7 +12118,7 @@ export declare const ChannelDescription: {
|
|
|
12035
12118
|
display_names?: string[] | undefined;
|
|
12036
12119
|
} & {
|
|
12037
12120
|
clan_id?: string | undefined;
|
|
12038
|
-
|
|
12121
|
+
parent_id?: string | undefined;
|
|
12039
12122
|
channel_id?: string | undefined;
|
|
12040
12123
|
category_id?: string | undefined;
|
|
12041
12124
|
category_name?: string | undefined;
|
|
@@ -12108,7 +12191,7 @@ export declare const ChannelDescription: {
|
|
|
12108
12191
|
} & { [K_11 in Exclude<keyof I, keyof ChannelDescription>]: never; }>(base?: I | undefined): ChannelDescription;
|
|
12109
12192
|
fromPartial<I_1 extends {
|
|
12110
12193
|
clan_id?: string | undefined;
|
|
12111
|
-
|
|
12194
|
+
parent_id?: string | undefined;
|
|
12112
12195
|
channel_id?: string | undefined;
|
|
12113
12196
|
category_id?: string | undefined;
|
|
12114
12197
|
category_name?: string | undefined;
|
|
@@ -12160,7 +12243,7 @@ export declare const ChannelDescription: {
|
|
|
12160
12243
|
display_names?: string[] | undefined;
|
|
12161
12244
|
} & {
|
|
12162
12245
|
clan_id?: string | undefined;
|
|
12163
|
-
|
|
12246
|
+
parent_id?: string | undefined;
|
|
12164
12247
|
channel_id?: string | undefined;
|
|
12165
12248
|
category_id?: string | undefined;
|
|
12166
12249
|
category_name?: string | undefined;
|
|
@@ -12240,7 +12323,7 @@ export declare const ChannelDescList: {
|
|
|
12240
12323
|
create<I extends {
|
|
12241
12324
|
channeldesc?: {
|
|
12242
12325
|
clan_id?: string | undefined;
|
|
12243
|
-
|
|
12326
|
+
parent_id?: string | undefined;
|
|
12244
12327
|
channel_id?: string | undefined;
|
|
12245
12328
|
category_id?: string | undefined;
|
|
12246
12329
|
category_name?: string | undefined;
|
|
@@ -12298,7 +12381,7 @@ export declare const ChannelDescList: {
|
|
|
12298
12381
|
} & {
|
|
12299
12382
|
channeldesc?: ({
|
|
12300
12383
|
clan_id?: string | undefined;
|
|
12301
|
-
|
|
12384
|
+
parent_id?: string | undefined;
|
|
12302
12385
|
channel_id?: string | undefined;
|
|
12303
12386
|
category_id?: string | undefined;
|
|
12304
12387
|
category_name?: string | undefined;
|
|
@@ -12350,7 +12433,7 @@ export declare const ChannelDescList: {
|
|
|
12350
12433
|
display_names?: string[] | undefined;
|
|
12351
12434
|
}[] & ({
|
|
12352
12435
|
clan_id?: string | undefined;
|
|
12353
|
-
|
|
12436
|
+
parent_id?: string | undefined;
|
|
12354
12437
|
channel_id?: string | undefined;
|
|
12355
12438
|
category_id?: string | undefined;
|
|
12356
12439
|
category_name?: string | undefined;
|
|
@@ -12402,7 +12485,7 @@ export declare const ChannelDescList: {
|
|
|
12402
12485
|
display_names?: string[] | undefined;
|
|
12403
12486
|
} & {
|
|
12404
12487
|
clan_id?: string | undefined;
|
|
12405
|
-
|
|
12488
|
+
parent_id?: string | undefined;
|
|
12406
12489
|
channel_id?: string | undefined;
|
|
12407
12490
|
category_id?: string | undefined;
|
|
12408
12491
|
category_name?: string | undefined;
|
|
@@ -12474,7 +12557,7 @@ export declare const ChannelDescList: {
|
|
|
12474
12557
|
display_names?: (string[] & string[] & { [K_10 in Exclude<keyof I["channeldesc"][number]["display_names"], keyof string[]>]: never; }) | undefined;
|
|
12475
12558
|
} & { [K_11 in Exclude<keyof I["channeldesc"][number], keyof ChannelDescription>]: never; })[] & { [K_12 in Exclude<keyof I["channeldesc"], keyof {
|
|
12476
12559
|
clan_id?: string | undefined;
|
|
12477
|
-
|
|
12560
|
+
parent_id?: string | undefined;
|
|
12478
12561
|
channel_id?: string | undefined;
|
|
12479
12562
|
category_id?: string | undefined;
|
|
12480
12563
|
category_name?: string | undefined;
|
|
@@ -12533,7 +12616,7 @@ export declare const ChannelDescList: {
|
|
|
12533
12616
|
fromPartial<I_1 extends {
|
|
12534
12617
|
channeldesc?: {
|
|
12535
12618
|
clan_id?: string | undefined;
|
|
12536
|
-
|
|
12619
|
+
parent_id?: string | undefined;
|
|
12537
12620
|
channel_id?: string | undefined;
|
|
12538
12621
|
category_id?: string | undefined;
|
|
12539
12622
|
category_name?: string | undefined;
|
|
@@ -12591,7 +12674,7 @@ export declare const ChannelDescList: {
|
|
|
12591
12674
|
} & {
|
|
12592
12675
|
channeldesc?: ({
|
|
12593
12676
|
clan_id?: string | undefined;
|
|
12594
|
-
|
|
12677
|
+
parent_id?: string | undefined;
|
|
12595
12678
|
channel_id?: string | undefined;
|
|
12596
12679
|
category_id?: string | undefined;
|
|
12597
12680
|
category_name?: string | undefined;
|
|
@@ -12643,7 +12726,7 @@ export declare const ChannelDescList: {
|
|
|
12643
12726
|
display_names?: string[] | undefined;
|
|
12644
12727
|
}[] & ({
|
|
12645
12728
|
clan_id?: string | undefined;
|
|
12646
|
-
|
|
12729
|
+
parent_id?: string | undefined;
|
|
12647
12730
|
channel_id?: string | undefined;
|
|
12648
12731
|
category_id?: string | undefined;
|
|
12649
12732
|
category_name?: string | undefined;
|
|
@@ -12695,7 +12778,7 @@ export declare const ChannelDescList: {
|
|
|
12695
12778
|
display_names?: string[] | undefined;
|
|
12696
12779
|
} & {
|
|
12697
12780
|
clan_id?: string | undefined;
|
|
12698
|
-
|
|
12781
|
+
parent_id?: string | undefined;
|
|
12699
12782
|
channel_id?: string | undefined;
|
|
12700
12783
|
category_id?: string | undefined;
|
|
12701
12784
|
category_name?: string | undefined;
|
|
@@ -12767,7 +12850,7 @@ export declare const ChannelDescList: {
|
|
|
12767
12850
|
display_names?: (string[] & string[] & { [K_24 in Exclude<keyof I_1["channeldesc"][number]["display_names"], keyof string[]>]: never; }) | undefined;
|
|
12768
12851
|
} & { [K_25 in Exclude<keyof I_1["channeldesc"][number], keyof ChannelDescription>]: never; })[] & { [K_26 in Exclude<keyof I_1["channeldesc"], keyof {
|
|
12769
12852
|
clan_id?: string | undefined;
|
|
12770
|
-
|
|
12853
|
+
parent_id?: string | undefined;
|
|
12771
12854
|
channel_id?: string | undefined;
|
|
12772
12855
|
category_id?: string | undefined;
|
|
12773
12856
|
category_name?: string | undefined;
|
|
@@ -12919,7 +13002,7 @@ export declare const CreateChannelDescRequest: {
|
|
|
12919
13002
|
toJSON(message: CreateChannelDescRequest): unknown;
|
|
12920
13003
|
create<I extends {
|
|
12921
13004
|
clan_id?: string | undefined;
|
|
12922
|
-
|
|
13005
|
+
parent_id?: string | undefined;
|
|
12923
13006
|
channel_id?: string | undefined;
|
|
12924
13007
|
category_id?: string | undefined;
|
|
12925
13008
|
type?: number | undefined;
|
|
@@ -12929,7 +13012,7 @@ export declare const CreateChannelDescRequest: {
|
|
|
12929
13012
|
app_url?: string | undefined;
|
|
12930
13013
|
} & {
|
|
12931
13014
|
clan_id?: string | undefined;
|
|
12932
|
-
|
|
13015
|
+
parent_id?: string | undefined;
|
|
12933
13016
|
channel_id?: string | undefined;
|
|
12934
13017
|
category_id?: string | undefined;
|
|
12935
13018
|
type?: number | undefined;
|
|
@@ -12940,7 +13023,7 @@ export declare const CreateChannelDescRequest: {
|
|
|
12940
13023
|
} & { [K_1 in Exclude<keyof I, keyof CreateChannelDescRequest>]: never; }>(base?: I | undefined): CreateChannelDescRequest;
|
|
12941
13024
|
fromPartial<I_1 extends {
|
|
12942
13025
|
clan_id?: string | undefined;
|
|
12943
|
-
|
|
13026
|
+
parent_id?: string | undefined;
|
|
12944
13027
|
channel_id?: string | undefined;
|
|
12945
13028
|
category_id?: string | undefined;
|
|
12946
13029
|
type?: number | undefined;
|
|
@@ -12950,7 +13033,7 @@ export declare const CreateChannelDescRequest: {
|
|
|
12950
13033
|
app_url?: string | undefined;
|
|
12951
13034
|
} & {
|
|
12952
13035
|
clan_id?: string | undefined;
|
|
12953
|
-
|
|
13036
|
+
parent_id?: string | undefined;
|
|
12954
13037
|
channel_id?: string | undefined;
|
|
12955
13038
|
category_id?: string | undefined;
|
|
12956
13039
|
type?: number | undefined;
|
|
@@ -14024,7 +14107,7 @@ export declare const HashtagDmList: {
|
|
|
14024
14107
|
meeting_code?: string | undefined;
|
|
14025
14108
|
type?: number | undefined;
|
|
14026
14109
|
channel_private?: number | undefined;
|
|
14027
|
-
|
|
14110
|
+
parent_id?: string | undefined;
|
|
14028
14111
|
}[] | undefined;
|
|
14029
14112
|
} & {
|
|
14030
14113
|
hashtag_dm?: ({
|
|
@@ -14035,7 +14118,7 @@ export declare const HashtagDmList: {
|
|
|
14035
14118
|
meeting_code?: string | undefined;
|
|
14036
14119
|
type?: number | undefined;
|
|
14037
14120
|
channel_private?: number | undefined;
|
|
14038
|
-
|
|
14121
|
+
parent_id?: string | undefined;
|
|
14039
14122
|
}[] & ({
|
|
14040
14123
|
channel_id?: string | undefined;
|
|
14041
14124
|
channel_label?: string | undefined;
|
|
@@ -14044,7 +14127,7 @@ export declare const HashtagDmList: {
|
|
|
14044
14127
|
meeting_code?: string | undefined;
|
|
14045
14128
|
type?: number | undefined;
|
|
14046
14129
|
channel_private?: number | undefined;
|
|
14047
|
-
|
|
14130
|
+
parent_id?: string | undefined;
|
|
14048
14131
|
} & {
|
|
14049
14132
|
channel_id?: string | undefined;
|
|
14050
14133
|
channel_label?: string | undefined;
|
|
@@ -14053,7 +14136,7 @@ export declare const HashtagDmList: {
|
|
|
14053
14136
|
meeting_code?: string | undefined;
|
|
14054
14137
|
type?: number | undefined;
|
|
14055
14138
|
channel_private?: number | undefined;
|
|
14056
|
-
|
|
14139
|
+
parent_id?: string | undefined;
|
|
14057
14140
|
} & { [K in Exclude<keyof I["hashtag_dm"][number], keyof HashtagDm>]: never; })[] & { [K_1 in Exclude<keyof I["hashtag_dm"], keyof {
|
|
14058
14141
|
channel_id?: string | undefined;
|
|
14059
14142
|
channel_label?: string | undefined;
|
|
@@ -14062,7 +14145,7 @@ export declare const HashtagDmList: {
|
|
|
14062
14145
|
meeting_code?: string | undefined;
|
|
14063
14146
|
type?: number | undefined;
|
|
14064
14147
|
channel_private?: number | undefined;
|
|
14065
|
-
|
|
14148
|
+
parent_id?: string | undefined;
|
|
14066
14149
|
}[]>]: never; }) | undefined;
|
|
14067
14150
|
} & { [K_2 in Exclude<keyof I, "hashtag_dm">]: never; }>(base?: I | undefined): HashtagDmList;
|
|
14068
14151
|
fromPartial<I_1 extends {
|
|
@@ -14074,7 +14157,7 @@ export declare const HashtagDmList: {
|
|
|
14074
14157
|
meeting_code?: string | undefined;
|
|
14075
14158
|
type?: number | undefined;
|
|
14076
14159
|
channel_private?: number | undefined;
|
|
14077
|
-
|
|
14160
|
+
parent_id?: string | undefined;
|
|
14078
14161
|
}[] | undefined;
|
|
14079
14162
|
} & {
|
|
14080
14163
|
hashtag_dm?: ({
|
|
@@ -14085,7 +14168,7 @@ export declare const HashtagDmList: {
|
|
|
14085
14168
|
meeting_code?: string | undefined;
|
|
14086
14169
|
type?: number | undefined;
|
|
14087
14170
|
channel_private?: number | undefined;
|
|
14088
|
-
|
|
14171
|
+
parent_id?: string | undefined;
|
|
14089
14172
|
}[] & ({
|
|
14090
14173
|
channel_id?: string | undefined;
|
|
14091
14174
|
channel_label?: string | undefined;
|
|
@@ -14094,7 +14177,7 @@ export declare const HashtagDmList: {
|
|
|
14094
14177
|
meeting_code?: string | undefined;
|
|
14095
14178
|
type?: number | undefined;
|
|
14096
14179
|
channel_private?: number | undefined;
|
|
14097
|
-
|
|
14180
|
+
parent_id?: string | undefined;
|
|
14098
14181
|
} & {
|
|
14099
14182
|
channel_id?: string | undefined;
|
|
14100
14183
|
channel_label?: string | undefined;
|
|
@@ -14103,7 +14186,7 @@ export declare const HashtagDmList: {
|
|
|
14103
14186
|
meeting_code?: string | undefined;
|
|
14104
14187
|
type?: number | undefined;
|
|
14105
14188
|
channel_private?: number | undefined;
|
|
14106
|
-
|
|
14189
|
+
parent_id?: string | undefined;
|
|
14107
14190
|
} & { [K_3 in Exclude<keyof I_1["hashtag_dm"][number], keyof HashtagDm>]: never; })[] & { [K_4 in Exclude<keyof I_1["hashtag_dm"], keyof {
|
|
14108
14191
|
channel_id?: string | undefined;
|
|
14109
14192
|
channel_label?: string | undefined;
|
|
@@ -14112,7 +14195,7 @@ export declare const HashtagDmList: {
|
|
|
14112
14195
|
meeting_code?: string | undefined;
|
|
14113
14196
|
type?: number | undefined;
|
|
14114
14197
|
channel_private?: number | undefined;
|
|
14115
|
-
|
|
14198
|
+
parent_id?: string | undefined;
|
|
14116
14199
|
}[]>]: never; }) | undefined;
|
|
14117
14200
|
} & { [K_5 in Exclude<keyof I_1, "hashtag_dm">]: never; }>(object: I_1): HashtagDmList;
|
|
14118
14201
|
};
|
|
@@ -14129,7 +14212,7 @@ export declare const HashtagDm: {
|
|
|
14129
14212
|
meeting_code?: string | undefined;
|
|
14130
14213
|
type?: number | undefined;
|
|
14131
14214
|
channel_private?: number | undefined;
|
|
14132
|
-
|
|
14215
|
+
parent_id?: string | undefined;
|
|
14133
14216
|
} & {
|
|
14134
14217
|
channel_id?: string | undefined;
|
|
14135
14218
|
channel_label?: string | undefined;
|
|
@@ -14138,7 +14221,7 @@ export declare const HashtagDm: {
|
|
|
14138
14221
|
meeting_code?: string | undefined;
|
|
14139
14222
|
type?: number | undefined;
|
|
14140
14223
|
channel_private?: number | undefined;
|
|
14141
|
-
|
|
14224
|
+
parent_id?: string | undefined;
|
|
14142
14225
|
} & { [K in Exclude<keyof I, keyof HashtagDm>]: never; }>(base?: I | undefined): HashtagDm;
|
|
14143
14226
|
fromPartial<I_1 extends {
|
|
14144
14227
|
channel_id?: string | undefined;
|
|
@@ -14148,7 +14231,7 @@ export declare const HashtagDm: {
|
|
|
14148
14231
|
meeting_code?: string | undefined;
|
|
14149
14232
|
type?: number | undefined;
|
|
14150
14233
|
channel_private?: number | undefined;
|
|
14151
|
-
|
|
14234
|
+
parent_id?: string | undefined;
|
|
14152
14235
|
} & {
|
|
14153
14236
|
channel_id?: string | undefined;
|
|
14154
14237
|
channel_label?: string | undefined;
|
|
@@ -14157,7 +14240,7 @@ export declare const HashtagDm: {
|
|
|
14157
14240
|
meeting_code?: string | undefined;
|
|
14158
14241
|
type?: number | undefined;
|
|
14159
14242
|
channel_private?: number | undefined;
|
|
14160
|
-
|
|
14243
|
+
parent_id?: string | undefined;
|
|
14161
14244
|
} & { [K_1 in Exclude<keyof I_1, keyof HashtagDm>]: never; }>(object: I_1): HashtagDm;
|
|
14162
14245
|
};
|
|
14163
14246
|
export declare const NotificationChannelCategorySettingList: {
|
|
@@ -20350,6 +20433,7 @@ export declare const EditChannelCanvasRequest: {
|
|
|
20350
20433
|
title?: string | undefined;
|
|
20351
20434
|
content?: string | undefined;
|
|
20352
20435
|
is_default?: boolean | undefined;
|
|
20436
|
+
status?: number | undefined;
|
|
20353
20437
|
} & {
|
|
20354
20438
|
id?: string | undefined;
|
|
20355
20439
|
channel_id?: string | undefined;
|
|
@@ -20357,6 +20441,7 @@ export declare const EditChannelCanvasRequest: {
|
|
|
20357
20441
|
title?: string | undefined;
|
|
20358
20442
|
content?: string | undefined;
|
|
20359
20443
|
is_default?: boolean | undefined;
|
|
20444
|
+
status?: number | undefined;
|
|
20360
20445
|
} & { [K in Exclude<keyof I, keyof EditChannelCanvasRequest>]: never; }>(base?: I | undefined): EditChannelCanvasRequest;
|
|
20361
20446
|
fromPartial<I_1 extends {
|
|
20362
20447
|
id?: string | undefined;
|
|
@@ -20365,6 +20450,7 @@ export declare const EditChannelCanvasRequest: {
|
|
|
20365
20450
|
title?: string | undefined;
|
|
20366
20451
|
content?: string | undefined;
|
|
20367
20452
|
is_default?: boolean | undefined;
|
|
20453
|
+
status?: number | undefined;
|
|
20368
20454
|
} & {
|
|
20369
20455
|
id?: string | undefined;
|
|
20370
20456
|
channel_id?: string | undefined;
|
|
@@ -20372,6 +20458,7 @@ export declare const EditChannelCanvasRequest: {
|
|
|
20372
20458
|
title?: string | undefined;
|
|
20373
20459
|
content?: string | undefined;
|
|
20374
20460
|
is_default?: boolean | undefined;
|
|
20461
|
+
status?: number | undefined;
|
|
20375
20462
|
} & { [K_1 in Exclude<keyof I_1, keyof EditChannelCanvasRequest>]: never; }>(object: I_1): EditChannelCanvasRequest;
|
|
20376
20463
|
};
|
|
20377
20464
|
export declare const EditChannelCanvasResponse: {
|
|
@@ -24884,6 +24971,82 @@ export declare const MezonOauthClientList: {
|
|
|
24884
24971
|
}[]>]: never; }) | undefined;
|
|
24885
24972
|
} & { [K_23 in Exclude<keyof I_1, "listMezonOauthClient">]: never; }>(object: I_1): MezonOauthClientList;
|
|
24886
24973
|
};
|
|
24974
|
+
export declare const GetMezonOauthClientRequest: {
|
|
24975
|
+
encode(message: GetMezonOauthClientRequest, writer?: _m0.Writer): _m0.Writer;
|
|
24976
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): GetMezonOauthClientRequest;
|
|
24977
|
+
fromJSON(object: any): GetMezonOauthClientRequest;
|
|
24978
|
+
toJSON(message: GetMezonOauthClientRequest): unknown;
|
|
24979
|
+
create<I extends {
|
|
24980
|
+
client_id?: string | undefined;
|
|
24981
|
+
} & {
|
|
24982
|
+
client_id?: string | undefined;
|
|
24983
|
+
} & { [K in Exclude<keyof I, "client_id">]: never; }>(base?: I | undefined): GetMezonOauthClientRequest;
|
|
24984
|
+
fromPartial<I_1 extends {
|
|
24985
|
+
client_id?: string | undefined;
|
|
24986
|
+
} & {
|
|
24987
|
+
client_id?: string | undefined;
|
|
24988
|
+
} & { [K_1 in Exclude<keyof I_1, "client_id">]: never; }>(object: I_1): GetMezonOauthClientRequest;
|
|
24989
|
+
};
|
|
24990
|
+
export declare const SearchThreadRequest: {
|
|
24991
|
+
encode(message: SearchThreadRequest, writer?: _m0.Writer): _m0.Writer;
|
|
24992
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): SearchThreadRequest;
|
|
24993
|
+
fromJSON(object: any): SearchThreadRequest;
|
|
24994
|
+
toJSON(message: SearchThreadRequest): unknown;
|
|
24995
|
+
create<I extends {
|
|
24996
|
+
clan_id?: string | undefined;
|
|
24997
|
+
channel_id?: string | undefined;
|
|
24998
|
+
label?: string | undefined;
|
|
24999
|
+
} & {
|
|
25000
|
+
clan_id?: string | undefined;
|
|
25001
|
+
channel_id?: string | undefined;
|
|
25002
|
+
label?: string | undefined;
|
|
25003
|
+
} & { [K in Exclude<keyof I, keyof SearchThreadRequest>]: never; }>(base?: I | undefined): SearchThreadRequest;
|
|
25004
|
+
fromPartial<I_1 extends {
|
|
25005
|
+
clan_id?: string | undefined;
|
|
25006
|
+
channel_id?: string | undefined;
|
|
25007
|
+
label?: string | undefined;
|
|
25008
|
+
} & {
|
|
25009
|
+
clan_id?: string | undefined;
|
|
25010
|
+
channel_id?: string | undefined;
|
|
25011
|
+
label?: string | undefined;
|
|
25012
|
+
} & { [K_1 in Exclude<keyof I_1, keyof SearchThreadRequest>]: never; }>(object: I_1): SearchThreadRequest;
|
|
25013
|
+
};
|
|
25014
|
+
export declare const GenerateHashChannelAppsRequest: {
|
|
25015
|
+
encode(message: GenerateHashChannelAppsRequest, writer?: _m0.Writer): _m0.Writer;
|
|
25016
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): GenerateHashChannelAppsRequest;
|
|
25017
|
+
fromJSON(object: any): GenerateHashChannelAppsRequest;
|
|
25018
|
+
toJSON(message: GenerateHashChannelAppsRequest): unknown;
|
|
25019
|
+
create<I extends {
|
|
25020
|
+
app_id?: string | undefined;
|
|
25021
|
+
} & {
|
|
25022
|
+
app_id?: string | undefined;
|
|
25023
|
+
} & { [K in Exclude<keyof I, "app_id">]: never; }>(base?: I | undefined): GenerateHashChannelAppsRequest;
|
|
25024
|
+
fromPartial<I_1 extends {
|
|
25025
|
+
app_id?: string | undefined;
|
|
25026
|
+
} & {
|
|
25027
|
+
app_id?: string | undefined;
|
|
25028
|
+
} & { [K_1 in Exclude<keyof I_1, "app_id">]: never; }>(object: I_1): GenerateHashChannelAppsRequest;
|
|
25029
|
+
};
|
|
25030
|
+
export declare const GenerateHashChannelAppsResponse: {
|
|
25031
|
+
encode(message: GenerateHashChannelAppsResponse, writer?: _m0.Writer): _m0.Writer;
|
|
25032
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): GenerateHashChannelAppsResponse;
|
|
25033
|
+
fromJSON(object: any): GenerateHashChannelAppsResponse;
|
|
25034
|
+
toJSON(message: GenerateHashChannelAppsResponse): unknown;
|
|
25035
|
+
create<I extends {
|
|
25036
|
+
hash?: string | undefined;
|
|
25037
|
+
user_id?: string | undefined;
|
|
25038
|
+
} & {
|
|
25039
|
+
hash?: string | undefined;
|
|
25040
|
+
user_id?: string | undefined;
|
|
25041
|
+
} & { [K in Exclude<keyof I, keyof GenerateHashChannelAppsResponse>]: never; }>(base?: I | undefined): GenerateHashChannelAppsResponse;
|
|
25042
|
+
fromPartial<I_1 extends {
|
|
25043
|
+
hash?: string | undefined;
|
|
25044
|
+
user_id?: string | undefined;
|
|
25045
|
+
} & {
|
|
25046
|
+
hash?: string | undefined;
|
|
25047
|
+
user_id?: string | undefined;
|
|
25048
|
+
} & { [K_1 in Exclude<keyof I_1, keyof GenerateHashChannelAppsResponse>]: never; }>(object: I_1): GenerateHashChannelAppsResponse;
|
|
25049
|
+
};
|
|
24887
25050
|
type Builtin = Date | Function | Uint8Array | string | number | boolean | undefined;
|
|
24888
25051
|
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 {} ? {
|
|
24889
25052
|
[K in keyof T]?: DeepPartial<T[K]>;
|