mezon-js-protobuf 1.7.14 → 1.7.16
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/api/api.ts +39570 -39348
- package/dist/mezon-js-protobuf/api/api.d.ts +135 -67
- package/dist/mezon-js-protobuf/rtapi/realtime.d.ts +354 -232
- package/dist/mezon-js-protobuf.cjs.js +209 -34
- package/dist/mezon-js-protobuf.esm.mjs +209 -34
- package/google/protobuf/struct.ts +554 -554
- package/google/protobuf/timestamp.ts +223 -223
- package/google/protobuf/wrappers.ts +670 -670
- package/package.json +1 -1
- package/rtapi/realtime.ts +11946 -11732
|
@@ -1379,8 +1379,8 @@ export interface ChannelMessageHeader {
|
|
|
1379
1379
|
export interface ChannelDescription {
|
|
1380
1380
|
/** The clan of this channel */
|
|
1381
1381
|
clan_id: string;
|
|
1382
|
-
/** The
|
|
1383
|
-
|
|
1382
|
+
/** The parent channel this message belongs to. */
|
|
1383
|
+
parent_id: string;
|
|
1384
1384
|
/** The channel this message belongs to. */
|
|
1385
1385
|
channel_id: string;
|
|
1386
1386
|
/** The category of channel */
|
|
@@ -1491,8 +1491,8 @@ export interface AddRoleChannelDescRequest {
|
|
|
1491
1491
|
export interface CreateChannelDescRequest {
|
|
1492
1492
|
/** The clan of this channel */
|
|
1493
1493
|
clan_id: string;
|
|
1494
|
-
/** The
|
|
1495
|
-
|
|
1494
|
+
/** The parent channel this message belongs to. */
|
|
1495
|
+
parent_id: string;
|
|
1496
1496
|
/** The channel this message belongs to. */
|
|
1497
1497
|
channel_id: string;
|
|
1498
1498
|
/** The category of channel */
|
|
@@ -1752,7 +1752,7 @@ export interface HashtagDm {
|
|
|
1752
1752
|
/** */
|
|
1753
1753
|
channel_private: number;
|
|
1754
1754
|
/** */
|
|
1755
|
-
|
|
1755
|
+
parent_id: string;
|
|
1756
1756
|
}
|
|
1757
1757
|
export interface NotificationChannelCategorySettingList {
|
|
1758
1758
|
notification_channel_category_settings_list: NotificationChannelCategorySetting[];
|
|
@@ -2643,6 +2643,8 @@ export interface EditChannelCanvasRequest {
|
|
|
2643
2643
|
content: string;
|
|
2644
2644
|
/** is default */
|
|
2645
2645
|
is_default: boolean;
|
|
2646
|
+
/** status */
|
|
2647
|
+
status: number;
|
|
2646
2648
|
}
|
|
2647
2649
|
export interface EditChannelCanvasResponse {
|
|
2648
2650
|
/** id */
|
|
@@ -3202,11 +3204,21 @@ export interface MezonOauthClient {
|
|
|
3202
3204
|
export interface MezonOauthClientList {
|
|
3203
3205
|
listMezonOauthClient: MezonOauthClient[];
|
|
3204
3206
|
}
|
|
3207
|
+
export interface GetMezonOauthClientRequest {
|
|
3208
|
+
client_id: string;
|
|
3209
|
+
}
|
|
3205
3210
|
export interface SearchThreadRequest {
|
|
3206
3211
|
clan_id: string;
|
|
3207
3212
|
channel_id: string;
|
|
3208
3213
|
label: string;
|
|
3209
3214
|
}
|
|
3215
|
+
export interface GenerateHashChannelAppsRequest {
|
|
3216
|
+
app_id: string;
|
|
3217
|
+
}
|
|
3218
|
+
export interface GenerateHashChannelAppsResponse {
|
|
3219
|
+
hash: string;
|
|
3220
|
+
user_id: string;
|
|
3221
|
+
}
|
|
3210
3222
|
export declare const Account: {
|
|
3211
3223
|
encode(message: Account, writer?: _m0.Writer): _m0.Writer;
|
|
3212
3224
|
decode(input: _m0.Reader | Uint8Array, length?: number): Account;
|
|
@@ -4913,7 +4925,7 @@ export declare const NotificationInfo: {
|
|
|
4913
4925
|
clan_logo?: string | undefined;
|
|
4914
4926
|
channel?: {
|
|
4915
4927
|
clan_id?: string | undefined;
|
|
4916
|
-
|
|
4928
|
+
parent_id?: string | undefined;
|
|
4917
4929
|
channel_id?: string | undefined;
|
|
4918
4930
|
category_id?: string | undefined;
|
|
4919
4931
|
category_name?: string | undefined;
|
|
@@ -4977,7 +4989,7 @@ export declare const NotificationInfo: {
|
|
|
4977
4989
|
clan_logo?: string | undefined;
|
|
4978
4990
|
channel?: ({
|
|
4979
4991
|
clan_id?: string | undefined;
|
|
4980
|
-
|
|
4992
|
+
parent_id?: string | undefined;
|
|
4981
4993
|
channel_id?: string | undefined;
|
|
4982
4994
|
category_id?: string | undefined;
|
|
4983
4995
|
category_name?: string | undefined;
|
|
@@ -5029,7 +5041,7 @@ export declare const NotificationInfo: {
|
|
|
5029
5041
|
display_names?: string[] | undefined;
|
|
5030
5042
|
} & {
|
|
5031
5043
|
clan_id?: string | undefined;
|
|
5032
|
-
|
|
5044
|
+
parent_id?: string | undefined;
|
|
5033
5045
|
channel_id?: string | undefined;
|
|
5034
5046
|
category_id?: string | undefined;
|
|
5035
5047
|
category_name?: string | undefined;
|
|
@@ -5114,7 +5126,7 @@ export declare const NotificationInfo: {
|
|
|
5114
5126
|
clan_logo?: string | undefined;
|
|
5115
5127
|
channel?: {
|
|
5116
5128
|
clan_id?: string | undefined;
|
|
5117
|
-
|
|
5129
|
+
parent_id?: string | undefined;
|
|
5118
5130
|
channel_id?: string | undefined;
|
|
5119
5131
|
category_id?: string | undefined;
|
|
5120
5132
|
category_name?: string | undefined;
|
|
@@ -5178,7 +5190,7 @@ export declare const NotificationInfo: {
|
|
|
5178
5190
|
clan_logo?: string | undefined;
|
|
5179
5191
|
channel?: ({
|
|
5180
5192
|
clan_id?: string | undefined;
|
|
5181
|
-
|
|
5193
|
+
parent_id?: string | undefined;
|
|
5182
5194
|
channel_id?: string | undefined;
|
|
5183
5195
|
category_id?: string | undefined;
|
|
5184
5196
|
category_name?: string | undefined;
|
|
@@ -5230,7 +5242,7 @@ export declare const NotificationInfo: {
|
|
|
5230
5242
|
display_names?: string[] | undefined;
|
|
5231
5243
|
} & {
|
|
5232
5244
|
clan_id?: string | undefined;
|
|
5233
|
-
|
|
5245
|
+
parent_id?: string | undefined;
|
|
5234
5246
|
channel_id?: string | undefined;
|
|
5235
5247
|
category_id?: string | undefined;
|
|
5236
5248
|
category_name?: string | undefined;
|
|
@@ -8746,7 +8758,7 @@ export declare const Notification: {
|
|
|
8746
8758
|
avatar_url?: string | undefined;
|
|
8747
8759
|
channel?: {
|
|
8748
8760
|
clan_id?: string | undefined;
|
|
8749
|
-
|
|
8761
|
+
parent_id?: string | undefined;
|
|
8750
8762
|
channel_id?: string | undefined;
|
|
8751
8763
|
category_id?: string | undefined;
|
|
8752
8764
|
category_name?: string | undefined;
|
|
@@ -8811,7 +8823,7 @@ export declare const Notification: {
|
|
|
8811
8823
|
avatar_url?: string | undefined;
|
|
8812
8824
|
channel?: ({
|
|
8813
8825
|
clan_id?: string | undefined;
|
|
8814
|
-
|
|
8826
|
+
parent_id?: string | undefined;
|
|
8815
8827
|
channel_id?: string | undefined;
|
|
8816
8828
|
category_id?: string | undefined;
|
|
8817
8829
|
category_name?: string | undefined;
|
|
@@ -8863,7 +8875,7 @@ export declare const Notification: {
|
|
|
8863
8875
|
display_names?: string[] | undefined;
|
|
8864
8876
|
} & {
|
|
8865
8877
|
clan_id?: string | undefined;
|
|
8866
|
-
|
|
8878
|
+
parent_id?: string | undefined;
|
|
8867
8879
|
channel_id?: string | undefined;
|
|
8868
8880
|
category_id?: string | undefined;
|
|
8869
8881
|
category_name?: string | undefined;
|
|
@@ -8949,7 +8961,7 @@ export declare const Notification: {
|
|
|
8949
8961
|
avatar_url?: string | undefined;
|
|
8950
8962
|
channel?: {
|
|
8951
8963
|
clan_id?: string | undefined;
|
|
8952
|
-
|
|
8964
|
+
parent_id?: string | undefined;
|
|
8953
8965
|
channel_id?: string | undefined;
|
|
8954
8966
|
category_id?: string | undefined;
|
|
8955
8967
|
category_name?: string | undefined;
|
|
@@ -9014,7 +9026,7 @@ export declare const Notification: {
|
|
|
9014
9026
|
avatar_url?: string | undefined;
|
|
9015
9027
|
channel?: ({
|
|
9016
9028
|
clan_id?: string | undefined;
|
|
9017
|
-
|
|
9029
|
+
parent_id?: string | undefined;
|
|
9018
9030
|
channel_id?: string | undefined;
|
|
9019
9031
|
category_id?: string | undefined;
|
|
9020
9032
|
category_name?: string | undefined;
|
|
@@ -9066,7 +9078,7 @@ export declare const Notification: {
|
|
|
9066
9078
|
display_names?: string[] | undefined;
|
|
9067
9079
|
} & {
|
|
9068
9080
|
clan_id?: string | undefined;
|
|
9069
|
-
|
|
9081
|
+
parent_id?: string | undefined;
|
|
9070
9082
|
channel_id?: string | undefined;
|
|
9071
9083
|
category_id?: string | undefined;
|
|
9072
9084
|
category_name?: string | undefined;
|
|
@@ -9159,7 +9171,7 @@ export declare const NotificationList: {
|
|
|
9159
9171
|
avatar_url?: string | undefined;
|
|
9160
9172
|
channel?: {
|
|
9161
9173
|
clan_id?: string | undefined;
|
|
9162
|
-
|
|
9174
|
+
parent_id?: string | undefined;
|
|
9163
9175
|
channel_id?: string | undefined;
|
|
9164
9176
|
category_id?: string | undefined;
|
|
9165
9177
|
category_name?: string | undefined;
|
|
@@ -9227,7 +9239,7 @@ export declare const NotificationList: {
|
|
|
9227
9239
|
avatar_url?: string | undefined;
|
|
9228
9240
|
channel?: {
|
|
9229
9241
|
clan_id?: string | undefined;
|
|
9230
|
-
|
|
9242
|
+
parent_id?: string | undefined;
|
|
9231
9243
|
channel_id?: string | undefined;
|
|
9232
9244
|
category_id?: string | undefined;
|
|
9233
9245
|
category_name?: string | undefined;
|
|
@@ -9292,7 +9304,7 @@ export declare const NotificationList: {
|
|
|
9292
9304
|
avatar_url?: string | undefined;
|
|
9293
9305
|
channel?: {
|
|
9294
9306
|
clan_id?: string | undefined;
|
|
9295
|
-
|
|
9307
|
+
parent_id?: string | undefined;
|
|
9296
9308
|
channel_id?: string | undefined;
|
|
9297
9309
|
category_id?: string | undefined;
|
|
9298
9310
|
category_name?: string | undefined;
|
|
@@ -9357,7 +9369,7 @@ export declare const NotificationList: {
|
|
|
9357
9369
|
avatar_url?: string | undefined;
|
|
9358
9370
|
channel?: ({
|
|
9359
9371
|
clan_id?: string | undefined;
|
|
9360
|
-
|
|
9372
|
+
parent_id?: string | undefined;
|
|
9361
9373
|
channel_id?: string | undefined;
|
|
9362
9374
|
category_id?: string | undefined;
|
|
9363
9375
|
category_name?: string | undefined;
|
|
@@ -9409,7 +9421,7 @@ export declare const NotificationList: {
|
|
|
9409
9421
|
display_names?: string[] | undefined;
|
|
9410
9422
|
} & {
|
|
9411
9423
|
clan_id?: string | undefined;
|
|
9412
|
-
|
|
9424
|
+
parent_id?: string | undefined;
|
|
9413
9425
|
channel_id?: string | undefined;
|
|
9414
9426
|
category_id?: string | undefined;
|
|
9415
9427
|
category_name?: string | undefined;
|
|
@@ -9494,7 +9506,7 @@ export declare const NotificationList: {
|
|
|
9494
9506
|
avatar_url?: string | undefined;
|
|
9495
9507
|
channel?: {
|
|
9496
9508
|
clan_id?: string | undefined;
|
|
9497
|
-
|
|
9509
|
+
parent_id?: string | undefined;
|
|
9498
9510
|
channel_id?: string | undefined;
|
|
9499
9511
|
category_id?: string | undefined;
|
|
9500
9512
|
category_name?: string | undefined;
|
|
@@ -9563,7 +9575,7 @@ export declare const NotificationList: {
|
|
|
9563
9575
|
avatar_url?: string | undefined;
|
|
9564
9576
|
channel?: {
|
|
9565
9577
|
clan_id?: string | undefined;
|
|
9566
|
-
|
|
9578
|
+
parent_id?: string | undefined;
|
|
9567
9579
|
channel_id?: string | undefined;
|
|
9568
9580
|
category_id?: string | undefined;
|
|
9569
9581
|
category_name?: string | undefined;
|
|
@@ -9631,7 +9643,7 @@ export declare const NotificationList: {
|
|
|
9631
9643
|
avatar_url?: string | undefined;
|
|
9632
9644
|
channel?: {
|
|
9633
9645
|
clan_id?: string | undefined;
|
|
9634
|
-
|
|
9646
|
+
parent_id?: string | undefined;
|
|
9635
9647
|
channel_id?: string | undefined;
|
|
9636
9648
|
category_id?: string | undefined;
|
|
9637
9649
|
category_name?: string | undefined;
|
|
@@ -9696,7 +9708,7 @@ export declare const NotificationList: {
|
|
|
9696
9708
|
avatar_url?: string | undefined;
|
|
9697
9709
|
channel?: {
|
|
9698
9710
|
clan_id?: string | undefined;
|
|
9699
|
-
|
|
9711
|
+
parent_id?: string | undefined;
|
|
9700
9712
|
channel_id?: string | undefined;
|
|
9701
9713
|
category_id?: string | undefined;
|
|
9702
9714
|
category_name?: string | undefined;
|
|
@@ -9761,7 +9773,7 @@ export declare const NotificationList: {
|
|
|
9761
9773
|
avatar_url?: string | undefined;
|
|
9762
9774
|
channel?: ({
|
|
9763
9775
|
clan_id?: string | undefined;
|
|
9764
|
-
|
|
9776
|
+
parent_id?: string | undefined;
|
|
9765
9777
|
channel_id?: string | undefined;
|
|
9766
9778
|
category_id?: string | undefined;
|
|
9767
9779
|
category_name?: string | undefined;
|
|
@@ -9813,7 +9825,7 @@ export declare const NotificationList: {
|
|
|
9813
9825
|
display_names?: string[] | undefined;
|
|
9814
9826
|
} & {
|
|
9815
9827
|
clan_id?: string | undefined;
|
|
9816
|
-
|
|
9828
|
+
parent_id?: string | undefined;
|
|
9817
9829
|
channel_id?: string | undefined;
|
|
9818
9830
|
category_id?: string | undefined;
|
|
9819
9831
|
category_name?: string | undefined;
|
|
@@ -9898,7 +9910,7 @@ export declare const NotificationList: {
|
|
|
9898
9910
|
avatar_url?: string | undefined;
|
|
9899
9911
|
channel?: {
|
|
9900
9912
|
clan_id?: string | undefined;
|
|
9901
|
-
|
|
9913
|
+
parent_id?: string | undefined;
|
|
9902
9914
|
channel_id?: string | undefined;
|
|
9903
9915
|
category_id?: string | undefined;
|
|
9904
9916
|
category_name?: string | undefined;
|
|
@@ -11203,7 +11215,7 @@ export declare const InviteUserRes: {
|
|
|
11203
11215
|
expiry_time?: Date | undefined;
|
|
11204
11216
|
channel_desc?: {
|
|
11205
11217
|
clan_id?: string | undefined;
|
|
11206
|
-
|
|
11218
|
+
parent_id?: string | undefined;
|
|
11207
11219
|
channel_id?: string | undefined;
|
|
11208
11220
|
category_id?: string | undefined;
|
|
11209
11221
|
category_name?: string | undefined;
|
|
@@ -11263,7 +11275,7 @@ export declare const InviteUserRes: {
|
|
|
11263
11275
|
expiry_time?: Date | undefined;
|
|
11264
11276
|
channel_desc?: ({
|
|
11265
11277
|
clan_id?: string | undefined;
|
|
11266
|
-
|
|
11278
|
+
parent_id?: string | undefined;
|
|
11267
11279
|
channel_id?: string | undefined;
|
|
11268
11280
|
category_id?: string | undefined;
|
|
11269
11281
|
category_name?: string | undefined;
|
|
@@ -11315,7 +11327,7 @@ export declare const InviteUserRes: {
|
|
|
11315
11327
|
display_names?: string[] | undefined;
|
|
11316
11328
|
} & {
|
|
11317
11329
|
clan_id?: string | undefined;
|
|
11318
|
-
|
|
11330
|
+
parent_id?: string | undefined;
|
|
11319
11331
|
channel_id?: string | undefined;
|
|
11320
11332
|
category_id?: string | undefined;
|
|
11321
11333
|
category_name?: string | undefined;
|
|
@@ -11396,7 +11408,7 @@ export declare const InviteUserRes: {
|
|
|
11396
11408
|
expiry_time?: Date | undefined;
|
|
11397
11409
|
channel_desc?: {
|
|
11398
11410
|
clan_id?: string | undefined;
|
|
11399
|
-
|
|
11411
|
+
parent_id?: string | undefined;
|
|
11400
11412
|
channel_id?: string | undefined;
|
|
11401
11413
|
category_id?: string | undefined;
|
|
11402
11414
|
category_name?: string | undefined;
|
|
@@ -11456,7 +11468,7 @@ export declare const InviteUserRes: {
|
|
|
11456
11468
|
expiry_time?: Date | undefined;
|
|
11457
11469
|
channel_desc?: ({
|
|
11458
11470
|
clan_id?: string | undefined;
|
|
11459
|
-
|
|
11471
|
+
parent_id?: string | undefined;
|
|
11460
11472
|
channel_id?: string | undefined;
|
|
11461
11473
|
category_id?: string | undefined;
|
|
11462
11474
|
category_name?: string | undefined;
|
|
@@ -11508,7 +11520,7 @@ export declare const InviteUserRes: {
|
|
|
11508
11520
|
display_names?: string[] | undefined;
|
|
11509
11521
|
} & {
|
|
11510
11522
|
clan_id?: string | undefined;
|
|
11511
|
-
|
|
11523
|
+
parent_id?: string | undefined;
|
|
11512
11524
|
channel_id?: string | undefined;
|
|
11513
11525
|
category_id?: string | undefined;
|
|
11514
11526
|
category_name?: string | undefined;
|
|
@@ -12010,7 +12022,7 @@ export declare const ChannelDescription: {
|
|
|
12010
12022
|
toJSON(message: ChannelDescription): unknown;
|
|
12011
12023
|
create<I extends {
|
|
12012
12024
|
clan_id?: string | undefined;
|
|
12013
|
-
|
|
12025
|
+
parent_id?: string | undefined;
|
|
12014
12026
|
channel_id?: string | undefined;
|
|
12015
12027
|
category_id?: string | undefined;
|
|
12016
12028
|
category_name?: string | undefined;
|
|
@@ -12062,7 +12074,7 @@ export declare const ChannelDescription: {
|
|
|
12062
12074
|
display_names?: string[] | undefined;
|
|
12063
12075
|
} & {
|
|
12064
12076
|
clan_id?: string | undefined;
|
|
12065
|
-
|
|
12077
|
+
parent_id?: string | undefined;
|
|
12066
12078
|
channel_id?: string | undefined;
|
|
12067
12079
|
category_id?: string | undefined;
|
|
12068
12080
|
category_name?: string | undefined;
|
|
@@ -12135,7 +12147,7 @@ export declare const ChannelDescription: {
|
|
|
12135
12147
|
} & { [K_11 in Exclude<keyof I, keyof ChannelDescription>]: never; }>(base?: I | undefined): ChannelDescription;
|
|
12136
12148
|
fromPartial<I_1 extends {
|
|
12137
12149
|
clan_id?: string | undefined;
|
|
12138
|
-
|
|
12150
|
+
parent_id?: string | undefined;
|
|
12139
12151
|
channel_id?: string | undefined;
|
|
12140
12152
|
category_id?: string | undefined;
|
|
12141
12153
|
category_name?: string | undefined;
|
|
@@ -12187,7 +12199,7 @@ export declare const ChannelDescription: {
|
|
|
12187
12199
|
display_names?: string[] | undefined;
|
|
12188
12200
|
} & {
|
|
12189
12201
|
clan_id?: string | undefined;
|
|
12190
|
-
|
|
12202
|
+
parent_id?: string | undefined;
|
|
12191
12203
|
channel_id?: string | undefined;
|
|
12192
12204
|
category_id?: string | undefined;
|
|
12193
12205
|
category_name?: string | undefined;
|
|
@@ -12267,7 +12279,7 @@ export declare const ChannelDescList: {
|
|
|
12267
12279
|
create<I extends {
|
|
12268
12280
|
channeldesc?: {
|
|
12269
12281
|
clan_id?: string | undefined;
|
|
12270
|
-
|
|
12282
|
+
parent_id?: string | undefined;
|
|
12271
12283
|
channel_id?: string | undefined;
|
|
12272
12284
|
category_id?: string | undefined;
|
|
12273
12285
|
category_name?: string | undefined;
|
|
@@ -12325,7 +12337,7 @@ export declare const ChannelDescList: {
|
|
|
12325
12337
|
} & {
|
|
12326
12338
|
channeldesc?: ({
|
|
12327
12339
|
clan_id?: string | undefined;
|
|
12328
|
-
|
|
12340
|
+
parent_id?: string | undefined;
|
|
12329
12341
|
channel_id?: string | undefined;
|
|
12330
12342
|
category_id?: string | undefined;
|
|
12331
12343
|
category_name?: string | undefined;
|
|
@@ -12377,7 +12389,7 @@ export declare const ChannelDescList: {
|
|
|
12377
12389
|
display_names?: string[] | undefined;
|
|
12378
12390
|
}[] & ({
|
|
12379
12391
|
clan_id?: string | undefined;
|
|
12380
|
-
|
|
12392
|
+
parent_id?: string | undefined;
|
|
12381
12393
|
channel_id?: string | undefined;
|
|
12382
12394
|
category_id?: string | undefined;
|
|
12383
12395
|
category_name?: string | undefined;
|
|
@@ -12429,7 +12441,7 @@ export declare const ChannelDescList: {
|
|
|
12429
12441
|
display_names?: string[] | undefined;
|
|
12430
12442
|
} & {
|
|
12431
12443
|
clan_id?: string | undefined;
|
|
12432
|
-
|
|
12444
|
+
parent_id?: string | undefined;
|
|
12433
12445
|
channel_id?: string | undefined;
|
|
12434
12446
|
category_id?: string | undefined;
|
|
12435
12447
|
category_name?: string | undefined;
|
|
@@ -12501,7 +12513,7 @@ export declare const ChannelDescList: {
|
|
|
12501
12513
|
display_names?: (string[] & string[] & { [K_10 in Exclude<keyof I["channeldesc"][number]["display_names"], keyof string[]>]: never; }) | undefined;
|
|
12502
12514
|
} & { [K_11 in Exclude<keyof I["channeldesc"][number], keyof ChannelDescription>]: never; })[] & { [K_12 in Exclude<keyof I["channeldesc"], keyof {
|
|
12503
12515
|
clan_id?: string | undefined;
|
|
12504
|
-
|
|
12516
|
+
parent_id?: string | undefined;
|
|
12505
12517
|
channel_id?: string | undefined;
|
|
12506
12518
|
category_id?: string | undefined;
|
|
12507
12519
|
category_name?: string | undefined;
|
|
@@ -12560,7 +12572,7 @@ export declare const ChannelDescList: {
|
|
|
12560
12572
|
fromPartial<I_1 extends {
|
|
12561
12573
|
channeldesc?: {
|
|
12562
12574
|
clan_id?: string | undefined;
|
|
12563
|
-
|
|
12575
|
+
parent_id?: string | undefined;
|
|
12564
12576
|
channel_id?: string | undefined;
|
|
12565
12577
|
category_id?: string | undefined;
|
|
12566
12578
|
category_name?: string | undefined;
|
|
@@ -12618,7 +12630,7 @@ export declare const ChannelDescList: {
|
|
|
12618
12630
|
} & {
|
|
12619
12631
|
channeldesc?: ({
|
|
12620
12632
|
clan_id?: string | undefined;
|
|
12621
|
-
|
|
12633
|
+
parent_id?: string | undefined;
|
|
12622
12634
|
channel_id?: string | undefined;
|
|
12623
12635
|
category_id?: string | undefined;
|
|
12624
12636
|
category_name?: string | undefined;
|
|
@@ -12670,7 +12682,7 @@ export declare const ChannelDescList: {
|
|
|
12670
12682
|
display_names?: string[] | undefined;
|
|
12671
12683
|
}[] & ({
|
|
12672
12684
|
clan_id?: string | undefined;
|
|
12673
|
-
|
|
12685
|
+
parent_id?: string | undefined;
|
|
12674
12686
|
channel_id?: string | undefined;
|
|
12675
12687
|
category_id?: string | undefined;
|
|
12676
12688
|
category_name?: string | undefined;
|
|
@@ -12722,7 +12734,7 @@ export declare const ChannelDescList: {
|
|
|
12722
12734
|
display_names?: string[] | undefined;
|
|
12723
12735
|
} & {
|
|
12724
12736
|
clan_id?: string | undefined;
|
|
12725
|
-
|
|
12737
|
+
parent_id?: string | undefined;
|
|
12726
12738
|
channel_id?: string | undefined;
|
|
12727
12739
|
category_id?: string | undefined;
|
|
12728
12740
|
category_name?: string | undefined;
|
|
@@ -12794,7 +12806,7 @@ export declare const ChannelDescList: {
|
|
|
12794
12806
|
display_names?: (string[] & string[] & { [K_24 in Exclude<keyof I_1["channeldesc"][number]["display_names"], keyof string[]>]: never; }) | undefined;
|
|
12795
12807
|
} & { [K_25 in Exclude<keyof I_1["channeldesc"][number], keyof ChannelDescription>]: never; })[] & { [K_26 in Exclude<keyof I_1["channeldesc"], keyof {
|
|
12796
12808
|
clan_id?: string | undefined;
|
|
12797
|
-
|
|
12809
|
+
parent_id?: string | undefined;
|
|
12798
12810
|
channel_id?: string | undefined;
|
|
12799
12811
|
category_id?: string | undefined;
|
|
12800
12812
|
category_name?: string | undefined;
|
|
@@ -12946,7 +12958,7 @@ export declare const CreateChannelDescRequest: {
|
|
|
12946
12958
|
toJSON(message: CreateChannelDescRequest): unknown;
|
|
12947
12959
|
create<I extends {
|
|
12948
12960
|
clan_id?: string | undefined;
|
|
12949
|
-
|
|
12961
|
+
parent_id?: string | undefined;
|
|
12950
12962
|
channel_id?: string | undefined;
|
|
12951
12963
|
category_id?: string | undefined;
|
|
12952
12964
|
type?: number | undefined;
|
|
@@ -12956,7 +12968,7 @@ export declare const CreateChannelDescRequest: {
|
|
|
12956
12968
|
app_url?: string | undefined;
|
|
12957
12969
|
} & {
|
|
12958
12970
|
clan_id?: string | undefined;
|
|
12959
|
-
|
|
12971
|
+
parent_id?: string | undefined;
|
|
12960
12972
|
channel_id?: string | undefined;
|
|
12961
12973
|
category_id?: string | undefined;
|
|
12962
12974
|
type?: number | undefined;
|
|
@@ -12967,7 +12979,7 @@ export declare const CreateChannelDescRequest: {
|
|
|
12967
12979
|
} & { [K_1 in Exclude<keyof I, keyof CreateChannelDescRequest>]: never; }>(base?: I | undefined): CreateChannelDescRequest;
|
|
12968
12980
|
fromPartial<I_1 extends {
|
|
12969
12981
|
clan_id?: string | undefined;
|
|
12970
|
-
|
|
12982
|
+
parent_id?: string | undefined;
|
|
12971
12983
|
channel_id?: string | undefined;
|
|
12972
12984
|
category_id?: string | undefined;
|
|
12973
12985
|
type?: number | undefined;
|
|
@@ -12977,7 +12989,7 @@ export declare const CreateChannelDescRequest: {
|
|
|
12977
12989
|
app_url?: string | undefined;
|
|
12978
12990
|
} & {
|
|
12979
12991
|
clan_id?: string | undefined;
|
|
12980
|
-
|
|
12992
|
+
parent_id?: string | undefined;
|
|
12981
12993
|
channel_id?: string | undefined;
|
|
12982
12994
|
category_id?: string | undefined;
|
|
12983
12995
|
type?: number | undefined;
|
|
@@ -14051,7 +14063,7 @@ export declare const HashtagDmList: {
|
|
|
14051
14063
|
meeting_code?: string | undefined;
|
|
14052
14064
|
type?: number | undefined;
|
|
14053
14065
|
channel_private?: number | undefined;
|
|
14054
|
-
|
|
14066
|
+
parent_id?: string | undefined;
|
|
14055
14067
|
}[] | undefined;
|
|
14056
14068
|
} & {
|
|
14057
14069
|
hashtag_dm?: ({
|
|
@@ -14062,7 +14074,7 @@ export declare const HashtagDmList: {
|
|
|
14062
14074
|
meeting_code?: string | undefined;
|
|
14063
14075
|
type?: number | undefined;
|
|
14064
14076
|
channel_private?: number | undefined;
|
|
14065
|
-
|
|
14077
|
+
parent_id?: string | undefined;
|
|
14066
14078
|
}[] & ({
|
|
14067
14079
|
channel_id?: string | undefined;
|
|
14068
14080
|
channel_label?: string | undefined;
|
|
@@ -14071,7 +14083,7 @@ export declare const HashtagDmList: {
|
|
|
14071
14083
|
meeting_code?: string | undefined;
|
|
14072
14084
|
type?: number | undefined;
|
|
14073
14085
|
channel_private?: number | undefined;
|
|
14074
|
-
|
|
14086
|
+
parent_id?: string | undefined;
|
|
14075
14087
|
} & {
|
|
14076
14088
|
channel_id?: string | undefined;
|
|
14077
14089
|
channel_label?: string | undefined;
|
|
@@ -14080,7 +14092,7 @@ export declare const HashtagDmList: {
|
|
|
14080
14092
|
meeting_code?: string | undefined;
|
|
14081
14093
|
type?: number | undefined;
|
|
14082
14094
|
channel_private?: number | undefined;
|
|
14083
|
-
|
|
14095
|
+
parent_id?: string | undefined;
|
|
14084
14096
|
} & { [K in Exclude<keyof I["hashtag_dm"][number], keyof HashtagDm>]: never; })[] & { [K_1 in Exclude<keyof I["hashtag_dm"], keyof {
|
|
14085
14097
|
channel_id?: string | undefined;
|
|
14086
14098
|
channel_label?: string | undefined;
|
|
@@ -14089,7 +14101,7 @@ export declare const HashtagDmList: {
|
|
|
14089
14101
|
meeting_code?: string | undefined;
|
|
14090
14102
|
type?: number | undefined;
|
|
14091
14103
|
channel_private?: number | undefined;
|
|
14092
|
-
|
|
14104
|
+
parent_id?: string | undefined;
|
|
14093
14105
|
}[]>]: never; }) | undefined;
|
|
14094
14106
|
} & { [K_2 in Exclude<keyof I, "hashtag_dm">]: never; }>(base?: I | undefined): HashtagDmList;
|
|
14095
14107
|
fromPartial<I_1 extends {
|
|
@@ -14101,7 +14113,7 @@ export declare const HashtagDmList: {
|
|
|
14101
14113
|
meeting_code?: string | undefined;
|
|
14102
14114
|
type?: number | undefined;
|
|
14103
14115
|
channel_private?: number | undefined;
|
|
14104
|
-
|
|
14116
|
+
parent_id?: string | undefined;
|
|
14105
14117
|
}[] | undefined;
|
|
14106
14118
|
} & {
|
|
14107
14119
|
hashtag_dm?: ({
|
|
@@ -14112,7 +14124,7 @@ export declare const HashtagDmList: {
|
|
|
14112
14124
|
meeting_code?: string | undefined;
|
|
14113
14125
|
type?: number | undefined;
|
|
14114
14126
|
channel_private?: number | undefined;
|
|
14115
|
-
|
|
14127
|
+
parent_id?: string | undefined;
|
|
14116
14128
|
}[] & ({
|
|
14117
14129
|
channel_id?: string | undefined;
|
|
14118
14130
|
channel_label?: string | undefined;
|
|
@@ -14121,7 +14133,7 @@ export declare const HashtagDmList: {
|
|
|
14121
14133
|
meeting_code?: string | undefined;
|
|
14122
14134
|
type?: number | undefined;
|
|
14123
14135
|
channel_private?: number | undefined;
|
|
14124
|
-
|
|
14136
|
+
parent_id?: string | undefined;
|
|
14125
14137
|
} & {
|
|
14126
14138
|
channel_id?: string | undefined;
|
|
14127
14139
|
channel_label?: string | undefined;
|
|
@@ -14130,7 +14142,7 @@ export declare const HashtagDmList: {
|
|
|
14130
14142
|
meeting_code?: string | undefined;
|
|
14131
14143
|
type?: number | undefined;
|
|
14132
14144
|
channel_private?: number | undefined;
|
|
14133
|
-
|
|
14145
|
+
parent_id?: string | undefined;
|
|
14134
14146
|
} & { [K_3 in Exclude<keyof I_1["hashtag_dm"][number], keyof HashtagDm>]: never; })[] & { [K_4 in Exclude<keyof I_1["hashtag_dm"], keyof {
|
|
14135
14147
|
channel_id?: string | undefined;
|
|
14136
14148
|
channel_label?: string | undefined;
|
|
@@ -14139,7 +14151,7 @@ export declare const HashtagDmList: {
|
|
|
14139
14151
|
meeting_code?: string | undefined;
|
|
14140
14152
|
type?: number | undefined;
|
|
14141
14153
|
channel_private?: number | undefined;
|
|
14142
|
-
|
|
14154
|
+
parent_id?: string | undefined;
|
|
14143
14155
|
}[]>]: never; }) | undefined;
|
|
14144
14156
|
} & { [K_5 in Exclude<keyof I_1, "hashtag_dm">]: never; }>(object: I_1): HashtagDmList;
|
|
14145
14157
|
};
|
|
@@ -14156,7 +14168,7 @@ export declare const HashtagDm: {
|
|
|
14156
14168
|
meeting_code?: string | undefined;
|
|
14157
14169
|
type?: number | undefined;
|
|
14158
14170
|
channel_private?: number | undefined;
|
|
14159
|
-
|
|
14171
|
+
parent_id?: string | undefined;
|
|
14160
14172
|
} & {
|
|
14161
14173
|
channel_id?: string | undefined;
|
|
14162
14174
|
channel_label?: string | undefined;
|
|
@@ -14165,7 +14177,7 @@ export declare const HashtagDm: {
|
|
|
14165
14177
|
meeting_code?: string | undefined;
|
|
14166
14178
|
type?: number | undefined;
|
|
14167
14179
|
channel_private?: number | undefined;
|
|
14168
|
-
|
|
14180
|
+
parent_id?: string | undefined;
|
|
14169
14181
|
} & { [K in Exclude<keyof I, keyof HashtagDm>]: never; }>(base?: I | undefined): HashtagDm;
|
|
14170
14182
|
fromPartial<I_1 extends {
|
|
14171
14183
|
channel_id?: string | undefined;
|
|
@@ -14175,7 +14187,7 @@ export declare const HashtagDm: {
|
|
|
14175
14187
|
meeting_code?: string | undefined;
|
|
14176
14188
|
type?: number | undefined;
|
|
14177
14189
|
channel_private?: number | undefined;
|
|
14178
|
-
|
|
14190
|
+
parent_id?: string | undefined;
|
|
14179
14191
|
} & {
|
|
14180
14192
|
channel_id?: string | undefined;
|
|
14181
14193
|
channel_label?: string | undefined;
|
|
@@ -14184,7 +14196,7 @@ export declare const HashtagDm: {
|
|
|
14184
14196
|
meeting_code?: string | undefined;
|
|
14185
14197
|
type?: number | undefined;
|
|
14186
14198
|
channel_private?: number | undefined;
|
|
14187
|
-
|
|
14199
|
+
parent_id?: string | undefined;
|
|
14188
14200
|
} & { [K_1 in Exclude<keyof I_1, keyof HashtagDm>]: never; }>(object: I_1): HashtagDm;
|
|
14189
14201
|
};
|
|
14190
14202
|
export declare const NotificationChannelCategorySettingList: {
|
|
@@ -20377,6 +20389,7 @@ export declare const EditChannelCanvasRequest: {
|
|
|
20377
20389
|
title?: string | undefined;
|
|
20378
20390
|
content?: string | undefined;
|
|
20379
20391
|
is_default?: boolean | undefined;
|
|
20392
|
+
status?: number | undefined;
|
|
20380
20393
|
} & {
|
|
20381
20394
|
id?: string | undefined;
|
|
20382
20395
|
channel_id?: string | undefined;
|
|
@@ -20384,6 +20397,7 @@ export declare const EditChannelCanvasRequest: {
|
|
|
20384
20397
|
title?: string | undefined;
|
|
20385
20398
|
content?: string | undefined;
|
|
20386
20399
|
is_default?: boolean | undefined;
|
|
20400
|
+
status?: number | undefined;
|
|
20387
20401
|
} & { [K in Exclude<keyof I, keyof EditChannelCanvasRequest>]: never; }>(base?: I | undefined): EditChannelCanvasRequest;
|
|
20388
20402
|
fromPartial<I_1 extends {
|
|
20389
20403
|
id?: string | undefined;
|
|
@@ -20392,6 +20406,7 @@ export declare const EditChannelCanvasRequest: {
|
|
|
20392
20406
|
title?: string | undefined;
|
|
20393
20407
|
content?: string | undefined;
|
|
20394
20408
|
is_default?: boolean | undefined;
|
|
20409
|
+
status?: number | undefined;
|
|
20395
20410
|
} & {
|
|
20396
20411
|
id?: string | undefined;
|
|
20397
20412
|
channel_id?: string | undefined;
|
|
@@ -20399,6 +20414,7 @@ export declare const EditChannelCanvasRequest: {
|
|
|
20399
20414
|
title?: string | undefined;
|
|
20400
20415
|
content?: string | undefined;
|
|
20401
20416
|
is_default?: boolean | undefined;
|
|
20417
|
+
status?: number | undefined;
|
|
20402
20418
|
} & { [K_1 in Exclude<keyof I_1, keyof EditChannelCanvasRequest>]: never; }>(object: I_1): EditChannelCanvasRequest;
|
|
20403
20419
|
};
|
|
20404
20420
|
export declare const EditChannelCanvasResponse: {
|
|
@@ -24911,6 +24927,22 @@ export declare const MezonOauthClientList: {
|
|
|
24911
24927
|
}[]>]: never; }) | undefined;
|
|
24912
24928
|
} & { [K_23 in Exclude<keyof I_1, "listMezonOauthClient">]: never; }>(object: I_1): MezonOauthClientList;
|
|
24913
24929
|
};
|
|
24930
|
+
export declare const GetMezonOauthClientRequest: {
|
|
24931
|
+
encode(message: GetMezonOauthClientRequest, writer?: _m0.Writer): _m0.Writer;
|
|
24932
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): GetMezonOauthClientRequest;
|
|
24933
|
+
fromJSON(object: any): GetMezonOauthClientRequest;
|
|
24934
|
+
toJSON(message: GetMezonOauthClientRequest): unknown;
|
|
24935
|
+
create<I extends {
|
|
24936
|
+
client_id?: string | undefined;
|
|
24937
|
+
} & {
|
|
24938
|
+
client_id?: string | undefined;
|
|
24939
|
+
} & { [K in Exclude<keyof I, "client_id">]: never; }>(base?: I | undefined): GetMezonOauthClientRequest;
|
|
24940
|
+
fromPartial<I_1 extends {
|
|
24941
|
+
client_id?: string | undefined;
|
|
24942
|
+
} & {
|
|
24943
|
+
client_id?: string | undefined;
|
|
24944
|
+
} & { [K_1 in Exclude<keyof I_1, "client_id">]: never; }>(object: I_1): GetMezonOauthClientRequest;
|
|
24945
|
+
};
|
|
24914
24946
|
export declare const SearchThreadRequest: {
|
|
24915
24947
|
encode(message: SearchThreadRequest, writer?: _m0.Writer): _m0.Writer;
|
|
24916
24948
|
decode(input: _m0.Reader | Uint8Array, length?: number): SearchThreadRequest;
|
|
@@ -24935,6 +24967,42 @@ export declare const SearchThreadRequest: {
|
|
|
24935
24967
|
label?: string | undefined;
|
|
24936
24968
|
} & { [K_1 in Exclude<keyof I_1, keyof SearchThreadRequest>]: never; }>(object: I_1): SearchThreadRequest;
|
|
24937
24969
|
};
|
|
24970
|
+
export declare const GenerateHashChannelAppsRequest: {
|
|
24971
|
+
encode(message: GenerateHashChannelAppsRequest, writer?: _m0.Writer): _m0.Writer;
|
|
24972
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): GenerateHashChannelAppsRequest;
|
|
24973
|
+
fromJSON(object: any): GenerateHashChannelAppsRequest;
|
|
24974
|
+
toJSON(message: GenerateHashChannelAppsRequest): unknown;
|
|
24975
|
+
create<I extends {
|
|
24976
|
+
app_id?: string | undefined;
|
|
24977
|
+
} & {
|
|
24978
|
+
app_id?: string | undefined;
|
|
24979
|
+
} & { [K in Exclude<keyof I, "app_id">]: never; }>(base?: I | undefined): GenerateHashChannelAppsRequest;
|
|
24980
|
+
fromPartial<I_1 extends {
|
|
24981
|
+
app_id?: string | undefined;
|
|
24982
|
+
} & {
|
|
24983
|
+
app_id?: string | undefined;
|
|
24984
|
+
} & { [K_1 in Exclude<keyof I_1, "app_id">]: never; }>(object: I_1): GenerateHashChannelAppsRequest;
|
|
24985
|
+
};
|
|
24986
|
+
export declare const GenerateHashChannelAppsResponse: {
|
|
24987
|
+
encode(message: GenerateHashChannelAppsResponse, writer?: _m0.Writer): _m0.Writer;
|
|
24988
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): GenerateHashChannelAppsResponse;
|
|
24989
|
+
fromJSON(object: any): GenerateHashChannelAppsResponse;
|
|
24990
|
+
toJSON(message: GenerateHashChannelAppsResponse): unknown;
|
|
24991
|
+
create<I extends {
|
|
24992
|
+
hash?: string | undefined;
|
|
24993
|
+
user_id?: string | undefined;
|
|
24994
|
+
} & {
|
|
24995
|
+
hash?: string | undefined;
|
|
24996
|
+
user_id?: string | undefined;
|
|
24997
|
+
} & { [K in Exclude<keyof I, keyof GenerateHashChannelAppsResponse>]: never; }>(base?: I | undefined): GenerateHashChannelAppsResponse;
|
|
24998
|
+
fromPartial<I_1 extends {
|
|
24999
|
+
hash?: string | undefined;
|
|
25000
|
+
user_id?: string | undefined;
|
|
25001
|
+
} & {
|
|
25002
|
+
hash?: string | undefined;
|
|
25003
|
+
user_id?: string | undefined;
|
|
25004
|
+
} & { [K_1 in Exclude<keyof I_1, keyof GenerateHashChannelAppsResponse>]: never; }>(object: I_1): GenerateHashChannelAppsResponse;
|
|
25005
|
+
};
|
|
24938
25006
|
type Builtin = Date | Function | Uint8Array | string | number | boolean | undefined;
|
|
24939
25007
|
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 {} ? {
|
|
24940
25008
|
[K in keyof T]?: DeepPartial<T[K]>;
|