mezon-js-protobuf 1.7.40 → 1.7.42
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 +186 -31
- package/dist/mezon-js-protobuf/api/api.d.ts +116 -55
- package/dist/mezon-js-protobuf/rtapi/realtime.d.ts +119 -63
- package/dist/mezon-js-protobuf.cjs.js +42 -27
- package/dist/mezon-js-protobuf.esm.mjs +42 -27
- package/package.json +1 -1
- package/rtapi/realtime.ts +37 -19
|
@@ -1469,7 +1469,7 @@ export interface ChannelDescription {
|
|
|
1469
1469
|
/** clan_name */
|
|
1470
1470
|
clan_name: string;
|
|
1471
1471
|
/** app url */
|
|
1472
|
-
|
|
1472
|
+
app_id: string;
|
|
1473
1473
|
/** channel all message */
|
|
1474
1474
|
is_mute: boolean;
|
|
1475
1475
|
/** age restricted */
|
|
@@ -1521,6 +1521,11 @@ export interface ListChannelDescsRequest {
|
|
|
1521
1521
|
/** channel type */
|
|
1522
1522
|
channel_type: number;
|
|
1523
1523
|
}
|
|
1524
|
+
/** List channel description detail */
|
|
1525
|
+
export interface ListChannelDetailRequest {
|
|
1526
|
+
/** channel id */
|
|
1527
|
+
channel_id: string;
|
|
1528
|
+
}
|
|
1524
1529
|
/** Add a role for channel. */
|
|
1525
1530
|
export interface AddRoleChannelDescRequest {
|
|
1526
1531
|
/** This is the role that needs to be added to the channel */
|
|
@@ -1547,7 +1552,7 @@ export interface CreateChannelDescRequest {
|
|
|
1547
1552
|
/** The users to add. */
|
|
1548
1553
|
user_ids: string[];
|
|
1549
1554
|
/** app url for channel type app */
|
|
1550
|
-
|
|
1555
|
+
app_id: string;
|
|
1551
1556
|
}
|
|
1552
1557
|
/** Delete a channel the user has access to. */
|
|
1553
1558
|
export interface DeleteChannelDescRequest {
|
|
@@ -1563,7 +1568,7 @@ export interface UpdateChannelDescRequest {
|
|
|
1563
1568
|
/** The category of channel */
|
|
1564
1569
|
category_id: string | undefined;
|
|
1565
1570
|
/** app url for channel type app */
|
|
1566
|
-
|
|
1571
|
+
app_id: string;
|
|
1567
1572
|
/** topic */
|
|
1568
1573
|
topic: string;
|
|
1569
1574
|
/** */
|
|
@@ -2306,6 +2311,8 @@ export interface App {
|
|
|
2306
2311
|
role: number;
|
|
2307
2312
|
/** about */
|
|
2308
2313
|
about: string;
|
|
2314
|
+
/** app url */
|
|
2315
|
+
app_url: string;
|
|
2309
2316
|
}
|
|
2310
2317
|
/** Delete a app. */
|
|
2311
2318
|
export interface AppDeleteRequest {
|
|
@@ -2335,6 +2342,12 @@ export interface AddAppRequest {
|
|
|
2335
2342
|
role: number;
|
|
2336
2343
|
/** Is shadow. */
|
|
2337
2344
|
is_shadow: boolean;
|
|
2345
|
+
/** App url. */
|
|
2346
|
+
app_url: string;
|
|
2347
|
+
/** app logo */
|
|
2348
|
+
app_logo: string;
|
|
2349
|
+
/** about me */
|
|
2350
|
+
about_me: string;
|
|
2338
2351
|
}
|
|
2339
2352
|
/** List (and optionally filter) users. */
|
|
2340
2353
|
export interface ListAppsRequest {
|
|
@@ -2359,6 +2372,8 @@ export interface UpdateAppRequest {
|
|
|
2359
2372
|
token: string | undefined;
|
|
2360
2373
|
/** about the app. */
|
|
2361
2374
|
about: string;
|
|
2375
|
+
/** App url. */
|
|
2376
|
+
app_url: string;
|
|
2362
2377
|
}
|
|
2363
2378
|
/** The identifier for an app. */
|
|
2364
2379
|
export interface AppId {
|
|
@@ -5019,7 +5034,7 @@ export declare const NotificationInfo: {
|
|
|
5019
5034
|
metadata?: string[] | undefined;
|
|
5020
5035
|
about_me?: string[] | undefined;
|
|
5021
5036
|
clan_name?: string | undefined;
|
|
5022
|
-
|
|
5037
|
+
app_id?: string | undefined;
|
|
5023
5038
|
is_mute?: boolean | undefined;
|
|
5024
5039
|
age_restricted?: number | undefined;
|
|
5025
5040
|
topic?: string | undefined;
|
|
@@ -5083,7 +5098,7 @@ export declare const NotificationInfo: {
|
|
|
5083
5098
|
metadata?: string[] | undefined;
|
|
5084
5099
|
about_me?: string[] | undefined;
|
|
5085
5100
|
clan_name?: string | undefined;
|
|
5086
|
-
|
|
5101
|
+
app_id?: string | undefined;
|
|
5087
5102
|
is_mute?: boolean | undefined;
|
|
5088
5103
|
age_restricted?: number | undefined;
|
|
5089
5104
|
topic?: string | undefined;
|
|
@@ -5155,7 +5170,7 @@ export declare const NotificationInfo: {
|
|
|
5155
5170
|
metadata?: (string[] & string[] & { [K_8 in Exclude<keyof I["channel"]["metadata"], keyof string[]>]: never; }) | undefined;
|
|
5156
5171
|
about_me?: (string[] & string[] & { [K_9 in Exclude<keyof I["channel"]["about_me"], keyof string[]>]: never; }) | undefined;
|
|
5157
5172
|
clan_name?: string | undefined;
|
|
5158
|
-
|
|
5173
|
+
app_id?: string | undefined;
|
|
5159
5174
|
is_mute?: boolean | undefined;
|
|
5160
5175
|
age_restricted?: number | undefined;
|
|
5161
5176
|
topic?: string | undefined;
|
|
@@ -5220,7 +5235,7 @@ export declare const NotificationInfo: {
|
|
|
5220
5235
|
metadata?: string[] | undefined;
|
|
5221
5236
|
about_me?: string[] | undefined;
|
|
5222
5237
|
clan_name?: string | undefined;
|
|
5223
|
-
|
|
5238
|
+
app_id?: string | undefined;
|
|
5224
5239
|
is_mute?: boolean | undefined;
|
|
5225
5240
|
age_restricted?: number | undefined;
|
|
5226
5241
|
topic?: string | undefined;
|
|
@@ -5284,7 +5299,7 @@ export declare const NotificationInfo: {
|
|
|
5284
5299
|
metadata?: string[] | undefined;
|
|
5285
5300
|
about_me?: string[] | undefined;
|
|
5286
5301
|
clan_name?: string | undefined;
|
|
5287
|
-
|
|
5302
|
+
app_id?: string | undefined;
|
|
5288
5303
|
is_mute?: boolean | undefined;
|
|
5289
5304
|
age_restricted?: number | undefined;
|
|
5290
5305
|
topic?: string | undefined;
|
|
@@ -5356,7 +5371,7 @@ export declare const NotificationInfo: {
|
|
|
5356
5371
|
metadata?: (string[] & string[] & { [K_21 in Exclude<keyof I_1["channel"]["metadata"], keyof string[]>]: never; }) | undefined;
|
|
5357
5372
|
about_me?: (string[] & string[] & { [K_22 in Exclude<keyof I_1["channel"]["about_me"], keyof string[]>]: never; }) | undefined;
|
|
5358
5373
|
clan_name?: string | undefined;
|
|
5359
|
-
|
|
5374
|
+
app_id?: string | undefined;
|
|
5360
5375
|
is_mute?: boolean | undefined;
|
|
5361
5376
|
age_restricted?: number | undefined;
|
|
5362
5377
|
topic?: string | undefined;
|
|
@@ -8918,7 +8933,7 @@ export declare const Notification: {
|
|
|
8918
8933
|
metadata?: string[] | undefined;
|
|
8919
8934
|
about_me?: string[] | undefined;
|
|
8920
8935
|
clan_name?: string | undefined;
|
|
8921
|
-
|
|
8936
|
+
app_id?: string | undefined;
|
|
8922
8937
|
is_mute?: boolean | undefined;
|
|
8923
8938
|
age_restricted?: number | undefined;
|
|
8924
8939
|
topic?: string | undefined;
|
|
@@ -8985,7 +9000,7 @@ export declare const Notification: {
|
|
|
8985
9000
|
metadata?: string[] | undefined;
|
|
8986
9001
|
about_me?: string[] | undefined;
|
|
8987
9002
|
clan_name?: string | undefined;
|
|
8988
|
-
|
|
9003
|
+
app_id?: string | undefined;
|
|
8989
9004
|
is_mute?: boolean | undefined;
|
|
8990
9005
|
age_restricted?: number | undefined;
|
|
8991
9006
|
topic?: string | undefined;
|
|
@@ -9057,7 +9072,7 @@ export declare const Notification: {
|
|
|
9057
9072
|
metadata?: (string[] & string[] & { [K_8 in Exclude<keyof I["channel"]["metadata"], keyof string[]>]: never; }) | undefined;
|
|
9058
9073
|
about_me?: (string[] & string[] & { [K_9 in Exclude<keyof I["channel"]["about_me"], keyof string[]>]: never; }) | undefined;
|
|
9059
9074
|
clan_name?: string | undefined;
|
|
9060
|
-
|
|
9075
|
+
app_id?: string | undefined;
|
|
9061
9076
|
is_mute?: boolean | undefined;
|
|
9062
9077
|
age_restricted?: number | undefined;
|
|
9063
9078
|
topic?: string | undefined;
|
|
@@ -9125,7 +9140,7 @@ export declare const Notification: {
|
|
|
9125
9140
|
metadata?: string[] | undefined;
|
|
9126
9141
|
about_me?: string[] | undefined;
|
|
9127
9142
|
clan_name?: string | undefined;
|
|
9128
|
-
|
|
9143
|
+
app_id?: string | undefined;
|
|
9129
9144
|
is_mute?: boolean | undefined;
|
|
9130
9145
|
age_restricted?: number | undefined;
|
|
9131
9146
|
topic?: string | undefined;
|
|
@@ -9192,7 +9207,7 @@ export declare const Notification: {
|
|
|
9192
9207
|
metadata?: string[] | undefined;
|
|
9193
9208
|
about_me?: string[] | undefined;
|
|
9194
9209
|
clan_name?: string | undefined;
|
|
9195
|
-
|
|
9210
|
+
app_id?: string | undefined;
|
|
9196
9211
|
is_mute?: boolean | undefined;
|
|
9197
9212
|
age_restricted?: number | undefined;
|
|
9198
9213
|
topic?: string | undefined;
|
|
@@ -9264,7 +9279,7 @@ export declare const Notification: {
|
|
|
9264
9279
|
metadata?: (string[] & string[] & { [K_21 in Exclude<keyof I_1["channel"]["metadata"], keyof string[]>]: never; }) | undefined;
|
|
9265
9280
|
about_me?: (string[] & string[] & { [K_22 in Exclude<keyof I_1["channel"]["about_me"], keyof string[]>]: never; }) | undefined;
|
|
9266
9281
|
clan_name?: string | undefined;
|
|
9267
|
-
|
|
9282
|
+
app_id?: string | undefined;
|
|
9268
9283
|
is_mute?: boolean | undefined;
|
|
9269
9284
|
age_restricted?: number | undefined;
|
|
9270
9285
|
topic?: string | undefined;
|
|
@@ -9419,7 +9434,7 @@ export declare const NotificationList: {
|
|
|
9419
9434
|
metadata?: string[] | undefined;
|
|
9420
9435
|
about_me?: string[] | undefined;
|
|
9421
9436
|
clan_name?: string | undefined;
|
|
9422
|
-
|
|
9437
|
+
app_id?: string | undefined;
|
|
9423
9438
|
is_mute?: boolean | undefined;
|
|
9424
9439
|
age_restricted?: number | undefined;
|
|
9425
9440
|
topic?: string | undefined;
|
|
@@ -9489,7 +9504,7 @@ export declare const NotificationList: {
|
|
|
9489
9504
|
metadata?: string[] | undefined;
|
|
9490
9505
|
about_me?: string[] | undefined;
|
|
9491
9506
|
clan_name?: string | undefined;
|
|
9492
|
-
|
|
9507
|
+
app_id?: string | undefined;
|
|
9493
9508
|
is_mute?: boolean | undefined;
|
|
9494
9509
|
age_restricted?: number | undefined;
|
|
9495
9510
|
topic?: string | undefined;
|
|
@@ -9556,7 +9571,7 @@ export declare const NotificationList: {
|
|
|
9556
9571
|
metadata?: string[] | undefined;
|
|
9557
9572
|
about_me?: string[] | undefined;
|
|
9558
9573
|
clan_name?: string | undefined;
|
|
9559
|
-
|
|
9574
|
+
app_id?: string | undefined;
|
|
9560
9575
|
is_mute?: boolean | undefined;
|
|
9561
9576
|
age_restricted?: number | undefined;
|
|
9562
9577
|
topic?: string | undefined;
|
|
@@ -9623,7 +9638,7 @@ export declare const NotificationList: {
|
|
|
9623
9638
|
metadata?: string[] | undefined;
|
|
9624
9639
|
about_me?: string[] | undefined;
|
|
9625
9640
|
clan_name?: string | undefined;
|
|
9626
|
-
|
|
9641
|
+
app_id?: string | undefined;
|
|
9627
9642
|
is_mute?: boolean | undefined;
|
|
9628
9643
|
age_restricted?: number | undefined;
|
|
9629
9644
|
topic?: string | undefined;
|
|
@@ -9695,7 +9710,7 @@ export declare const NotificationList: {
|
|
|
9695
9710
|
metadata?: (string[] & string[] & { [K_8 in Exclude<keyof I["notifications"][number]["channel"]["metadata"], keyof string[]>]: never; }) | undefined;
|
|
9696
9711
|
about_me?: (string[] & string[] & { [K_9 in Exclude<keyof I["notifications"][number]["channel"]["about_me"], keyof string[]>]: never; }) | undefined;
|
|
9697
9712
|
clan_name?: string | undefined;
|
|
9698
|
-
|
|
9713
|
+
app_id?: string | undefined;
|
|
9699
9714
|
is_mute?: boolean | undefined;
|
|
9700
9715
|
age_restricted?: number | undefined;
|
|
9701
9716
|
topic?: string | undefined;
|
|
@@ -9762,7 +9777,7 @@ export declare const NotificationList: {
|
|
|
9762
9777
|
metadata?: string[] | undefined;
|
|
9763
9778
|
about_me?: string[] | undefined;
|
|
9764
9779
|
clan_name?: string | undefined;
|
|
9765
|
-
|
|
9780
|
+
app_id?: string | undefined;
|
|
9766
9781
|
is_mute?: boolean | undefined;
|
|
9767
9782
|
age_restricted?: number | undefined;
|
|
9768
9783
|
topic?: string | undefined;
|
|
@@ -9833,7 +9848,7 @@ export declare const NotificationList: {
|
|
|
9833
9848
|
metadata?: string[] | undefined;
|
|
9834
9849
|
about_me?: string[] | undefined;
|
|
9835
9850
|
clan_name?: string | undefined;
|
|
9836
|
-
|
|
9851
|
+
app_id?: string | undefined;
|
|
9837
9852
|
is_mute?: boolean | undefined;
|
|
9838
9853
|
age_restricted?: number | undefined;
|
|
9839
9854
|
topic?: string | undefined;
|
|
@@ -9903,7 +9918,7 @@ export declare const NotificationList: {
|
|
|
9903
9918
|
metadata?: string[] | undefined;
|
|
9904
9919
|
about_me?: string[] | undefined;
|
|
9905
9920
|
clan_name?: string | undefined;
|
|
9906
|
-
|
|
9921
|
+
app_id?: string | undefined;
|
|
9907
9922
|
is_mute?: boolean | undefined;
|
|
9908
9923
|
age_restricted?: number | undefined;
|
|
9909
9924
|
topic?: string | undefined;
|
|
@@ -9970,7 +9985,7 @@ export declare const NotificationList: {
|
|
|
9970
9985
|
metadata?: string[] | undefined;
|
|
9971
9986
|
about_me?: string[] | undefined;
|
|
9972
9987
|
clan_name?: string | undefined;
|
|
9973
|
-
|
|
9988
|
+
app_id?: string | undefined;
|
|
9974
9989
|
is_mute?: boolean | undefined;
|
|
9975
9990
|
age_restricted?: number | undefined;
|
|
9976
9991
|
topic?: string | undefined;
|
|
@@ -10037,7 +10052,7 @@ export declare const NotificationList: {
|
|
|
10037
10052
|
metadata?: string[] | undefined;
|
|
10038
10053
|
about_me?: string[] | undefined;
|
|
10039
10054
|
clan_name?: string | undefined;
|
|
10040
|
-
|
|
10055
|
+
app_id?: string | undefined;
|
|
10041
10056
|
is_mute?: boolean | undefined;
|
|
10042
10057
|
age_restricted?: number | undefined;
|
|
10043
10058
|
topic?: string | undefined;
|
|
@@ -10109,7 +10124,7 @@ export declare const NotificationList: {
|
|
|
10109
10124
|
metadata?: (string[] & string[] & { [K_23 in Exclude<keyof I_1["notifications"][number]["channel"]["metadata"], keyof string[]>]: never; }) | undefined;
|
|
10110
10125
|
about_me?: (string[] & string[] & { [K_24 in Exclude<keyof I_1["notifications"][number]["channel"]["about_me"], keyof string[]>]: never; }) | undefined;
|
|
10111
10126
|
clan_name?: string | undefined;
|
|
10112
|
-
|
|
10127
|
+
app_id?: string | undefined;
|
|
10113
10128
|
is_mute?: boolean | undefined;
|
|
10114
10129
|
age_restricted?: number | undefined;
|
|
10115
10130
|
topic?: string | undefined;
|
|
@@ -10176,7 +10191,7 @@ export declare const NotificationList: {
|
|
|
10176
10191
|
metadata?: string[] | undefined;
|
|
10177
10192
|
about_me?: string[] | undefined;
|
|
10178
10193
|
clan_name?: string | undefined;
|
|
10179
|
-
|
|
10194
|
+
app_id?: string | undefined;
|
|
10180
10195
|
is_mute?: boolean | undefined;
|
|
10181
10196
|
age_restricted?: number | undefined;
|
|
10182
10197
|
topic?: string | undefined;
|
|
@@ -11519,7 +11534,7 @@ export declare const InviteUserRes: {
|
|
|
11519
11534
|
metadata?: string[] | undefined;
|
|
11520
11535
|
about_me?: string[] | undefined;
|
|
11521
11536
|
clan_name?: string | undefined;
|
|
11522
|
-
|
|
11537
|
+
app_id?: string | undefined;
|
|
11523
11538
|
is_mute?: boolean | undefined;
|
|
11524
11539
|
age_restricted?: number | undefined;
|
|
11525
11540
|
topic?: string | undefined;
|
|
@@ -11579,7 +11594,7 @@ export declare const InviteUserRes: {
|
|
|
11579
11594
|
metadata?: string[] | undefined;
|
|
11580
11595
|
about_me?: string[] | undefined;
|
|
11581
11596
|
clan_name?: string | undefined;
|
|
11582
|
-
|
|
11597
|
+
app_id?: string | undefined;
|
|
11583
11598
|
is_mute?: boolean | undefined;
|
|
11584
11599
|
age_restricted?: number | undefined;
|
|
11585
11600
|
topic?: string | undefined;
|
|
@@ -11651,7 +11666,7 @@ export declare const InviteUserRes: {
|
|
|
11651
11666
|
metadata?: (string[] & string[] & { [K_8 in Exclude<keyof I["channel_desc"]["metadata"], keyof string[]>]: never; }) | undefined;
|
|
11652
11667
|
about_me?: (string[] & string[] & { [K_9 in Exclude<keyof I["channel_desc"]["about_me"], keyof string[]>]: never; }) | undefined;
|
|
11653
11668
|
clan_name?: string | undefined;
|
|
11654
|
-
|
|
11669
|
+
app_id?: string | undefined;
|
|
11655
11670
|
is_mute?: boolean | undefined;
|
|
11656
11671
|
age_restricted?: number | undefined;
|
|
11657
11672
|
topic?: string | undefined;
|
|
@@ -11712,7 +11727,7 @@ export declare const InviteUserRes: {
|
|
|
11712
11727
|
metadata?: string[] | undefined;
|
|
11713
11728
|
about_me?: string[] | undefined;
|
|
11714
11729
|
clan_name?: string | undefined;
|
|
11715
|
-
|
|
11730
|
+
app_id?: string | undefined;
|
|
11716
11731
|
is_mute?: boolean | undefined;
|
|
11717
11732
|
age_restricted?: number | undefined;
|
|
11718
11733
|
topic?: string | undefined;
|
|
@@ -11772,7 +11787,7 @@ export declare const InviteUserRes: {
|
|
|
11772
11787
|
metadata?: string[] | undefined;
|
|
11773
11788
|
about_me?: string[] | undefined;
|
|
11774
11789
|
clan_name?: string | undefined;
|
|
11775
|
-
|
|
11790
|
+
app_id?: string | undefined;
|
|
11776
11791
|
is_mute?: boolean | undefined;
|
|
11777
11792
|
age_restricted?: number | undefined;
|
|
11778
11793
|
topic?: string | undefined;
|
|
@@ -11844,7 +11859,7 @@ export declare const InviteUserRes: {
|
|
|
11844
11859
|
metadata?: (string[] & string[] & { [K_21 in Exclude<keyof I_1["channel_desc"]["metadata"], keyof string[]>]: never; }) | undefined;
|
|
11845
11860
|
about_me?: (string[] & string[] & { [K_22 in Exclude<keyof I_1["channel_desc"]["about_me"], keyof string[]>]: never; }) | undefined;
|
|
11846
11861
|
clan_name?: string | undefined;
|
|
11847
|
-
|
|
11862
|
+
app_id?: string | undefined;
|
|
11848
11863
|
is_mute?: boolean | undefined;
|
|
11849
11864
|
age_restricted?: number | undefined;
|
|
11850
11865
|
topic?: string | undefined;
|
|
@@ -12396,7 +12411,7 @@ export declare const ChannelDescription: {
|
|
|
12396
12411
|
metadata?: string[] | undefined;
|
|
12397
12412
|
about_me?: string[] | undefined;
|
|
12398
12413
|
clan_name?: string | undefined;
|
|
12399
|
-
|
|
12414
|
+
app_id?: string | undefined;
|
|
12400
12415
|
is_mute?: boolean | undefined;
|
|
12401
12416
|
age_restricted?: number | undefined;
|
|
12402
12417
|
topic?: string | undefined;
|
|
@@ -12468,7 +12483,7 @@ export declare const ChannelDescription: {
|
|
|
12468
12483
|
metadata?: (string[] & string[] & { [K_8 in Exclude<keyof I["metadata"], keyof string[]>]: never; }) | undefined;
|
|
12469
12484
|
about_me?: (string[] & string[] & { [K_9 in Exclude<keyof I["about_me"], keyof string[]>]: never; }) | undefined;
|
|
12470
12485
|
clan_name?: string | undefined;
|
|
12471
|
-
|
|
12486
|
+
app_id?: string | undefined;
|
|
12472
12487
|
is_mute?: boolean | undefined;
|
|
12473
12488
|
age_restricted?: number | undefined;
|
|
12474
12489
|
topic?: string | undefined;
|
|
@@ -12521,7 +12536,7 @@ export declare const ChannelDescription: {
|
|
|
12521
12536
|
metadata?: string[] | undefined;
|
|
12522
12537
|
about_me?: string[] | undefined;
|
|
12523
12538
|
clan_name?: string | undefined;
|
|
12524
|
-
|
|
12539
|
+
app_id?: string | undefined;
|
|
12525
12540
|
is_mute?: boolean | undefined;
|
|
12526
12541
|
age_restricted?: number | undefined;
|
|
12527
12542
|
topic?: string | undefined;
|
|
@@ -12593,7 +12608,7 @@ export declare const ChannelDescription: {
|
|
|
12593
12608
|
metadata?: (string[] & string[] & { [K_20 in Exclude<keyof I_1["metadata"], keyof string[]>]: never; }) | undefined;
|
|
12594
12609
|
about_me?: (string[] & string[] & { [K_21 in Exclude<keyof I_1["about_me"], keyof string[]>]: never; }) | undefined;
|
|
12595
12610
|
clan_name?: string | undefined;
|
|
12596
|
-
|
|
12611
|
+
app_id?: string | undefined;
|
|
12597
12612
|
is_mute?: boolean | undefined;
|
|
12598
12613
|
age_restricted?: number | undefined;
|
|
12599
12614
|
topic?: string | undefined;
|
|
@@ -12653,7 +12668,7 @@ export declare const ChannelDescList: {
|
|
|
12653
12668
|
metadata?: string[] | undefined;
|
|
12654
12669
|
about_me?: string[] | undefined;
|
|
12655
12670
|
clan_name?: string | undefined;
|
|
12656
|
-
|
|
12671
|
+
app_id?: string | undefined;
|
|
12657
12672
|
is_mute?: boolean | undefined;
|
|
12658
12673
|
age_restricted?: number | undefined;
|
|
12659
12674
|
topic?: string | undefined;
|
|
@@ -12711,7 +12726,7 @@ export declare const ChannelDescList: {
|
|
|
12711
12726
|
metadata?: string[] | undefined;
|
|
12712
12727
|
about_me?: string[] | undefined;
|
|
12713
12728
|
clan_name?: string | undefined;
|
|
12714
|
-
|
|
12729
|
+
app_id?: string | undefined;
|
|
12715
12730
|
is_mute?: boolean | undefined;
|
|
12716
12731
|
age_restricted?: number | undefined;
|
|
12717
12732
|
topic?: string | undefined;
|
|
@@ -12763,7 +12778,7 @@ export declare const ChannelDescList: {
|
|
|
12763
12778
|
metadata?: string[] | undefined;
|
|
12764
12779
|
about_me?: string[] | undefined;
|
|
12765
12780
|
clan_name?: string | undefined;
|
|
12766
|
-
|
|
12781
|
+
app_id?: string | undefined;
|
|
12767
12782
|
is_mute?: boolean | undefined;
|
|
12768
12783
|
age_restricted?: number | undefined;
|
|
12769
12784
|
topic?: string | undefined;
|
|
@@ -12835,7 +12850,7 @@ export declare const ChannelDescList: {
|
|
|
12835
12850
|
metadata?: (string[] & string[] & { [K_8 in Exclude<keyof I["channeldesc"][number]["metadata"], keyof string[]>]: never; }) | undefined;
|
|
12836
12851
|
about_me?: (string[] & string[] & { [K_9 in Exclude<keyof I["channeldesc"][number]["about_me"], keyof string[]>]: never; }) | undefined;
|
|
12837
12852
|
clan_name?: string | undefined;
|
|
12838
|
-
|
|
12853
|
+
app_id?: string | undefined;
|
|
12839
12854
|
is_mute?: boolean | undefined;
|
|
12840
12855
|
age_restricted?: number | undefined;
|
|
12841
12856
|
topic?: string | undefined;
|
|
@@ -12887,7 +12902,7 @@ export declare const ChannelDescList: {
|
|
|
12887
12902
|
metadata?: string[] | undefined;
|
|
12888
12903
|
about_me?: string[] | undefined;
|
|
12889
12904
|
clan_name?: string | undefined;
|
|
12890
|
-
|
|
12905
|
+
app_id?: string | undefined;
|
|
12891
12906
|
is_mute?: boolean | undefined;
|
|
12892
12907
|
age_restricted?: number | undefined;
|
|
12893
12908
|
topic?: string | undefined;
|
|
@@ -12946,7 +12961,7 @@ export declare const ChannelDescList: {
|
|
|
12946
12961
|
metadata?: string[] | undefined;
|
|
12947
12962
|
about_me?: string[] | undefined;
|
|
12948
12963
|
clan_name?: string | undefined;
|
|
12949
|
-
|
|
12964
|
+
app_id?: string | undefined;
|
|
12950
12965
|
is_mute?: boolean | undefined;
|
|
12951
12966
|
age_restricted?: number | undefined;
|
|
12952
12967
|
topic?: string | undefined;
|
|
@@ -13004,7 +13019,7 @@ export declare const ChannelDescList: {
|
|
|
13004
13019
|
metadata?: string[] | undefined;
|
|
13005
13020
|
about_me?: string[] | undefined;
|
|
13006
13021
|
clan_name?: string | undefined;
|
|
13007
|
-
|
|
13022
|
+
app_id?: string | undefined;
|
|
13008
13023
|
is_mute?: boolean | undefined;
|
|
13009
13024
|
age_restricted?: number | undefined;
|
|
13010
13025
|
topic?: string | undefined;
|
|
@@ -13056,7 +13071,7 @@ export declare const ChannelDescList: {
|
|
|
13056
13071
|
metadata?: string[] | undefined;
|
|
13057
13072
|
about_me?: string[] | undefined;
|
|
13058
13073
|
clan_name?: string | undefined;
|
|
13059
|
-
|
|
13074
|
+
app_id?: string | undefined;
|
|
13060
13075
|
is_mute?: boolean | undefined;
|
|
13061
13076
|
age_restricted?: number | undefined;
|
|
13062
13077
|
topic?: string | undefined;
|
|
@@ -13128,7 +13143,7 @@ export declare const ChannelDescList: {
|
|
|
13128
13143
|
metadata?: (string[] & string[] & { [K_22 in Exclude<keyof I_1["channeldesc"][number]["metadata"], keyof string[]>]: never; }) | undefined;
|
|
13129
13144
|
about_me?: (string[] & string[] & { [K_23 in Exclude<keyof I_1["channeldesc"][number]["about_me"], keyof string[]>]: never; }) | undefined;
|
|
13130
13145
|
clan_name?: string | undefined;
|
|
13131
|
-
|
|
13146
|
+
app_id?: string | undefined;
|
|
13132
13147
|
is_mute?: boolean | undefined;
|
|
13133
13148
|
age_restricted?: number | undefined;
|
|
13134
13149
|
topic?: string | undefined;
|
|
@@ -13180,7 +13195,7 @@ export declare const ChannelDescList: {
|
|
|
13180
13195
|
metadata?: string[] | undefined;
|
|
13181
13196
|
about_me?: string[] | undefined;
|
|
13182
13197
|
clan_name?: string | undefined;
|
|
13183
|
-
|
|
13198
|
+
app_id?: string | undefined;
|
|
13184
13199
|
is_mute?: boolean | undefined;
|
|
13185
13200
|
age_restricted?: number | undefined;
|
|
13186
13201
|
topic?: string | undefined;
|
|
@@ -13261,6 +13276,22 @@ export declare const ListChannelDescsRequest: {
|
|
|
13261
13276
|
channel_type?: number | undefined;
|
|
13262
13277
|
} & { [K_1 in Exclude<keyof I_1, keyof ListChannelDescsRequest>]: never; }>(object: I_1): ListChannelDescsRequest;
|
|
13263
13278
|
};
|
|
13279
|
+
export declare const ListChannelDetailRequest: {
|
|
13280
|
+
encode(message: ListChannelDetailRequest, writer?: _m0.Writer): _m0.Writer;
|
|
13281
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): ListChannelDetailRequest;
|
|
13282
|
+
fromJSON(object: any): ListChannelDetailRequest;
|
|
13283
|
+
toJSON(message: ListChannelDetailRequest): unknown;
|
|
13284
|
+
create<I extends {
|
|
13285
|
+
channel_id?: string | undefined;
|
|
13286
|
+
} & {
|
|
13287
|
+
channel_id?: string | undefined;
|
|
13288
|
+
} & { [K in Exclude<keyof I, "channel_id">]: never; }>(base?: I | undefined): ListChannelDetailRequest;
|
|
13289
|
+
fromPartial<I_1 extends {
|
|
13290
|
+
channel_id?: string | undefined;
|
|
13291
|
+
} & {
|
|
13292
|
+
channel_id?: string | undefined;
|
|
13293
|
+
} & { [K_1 in Exclude<keyof I_1, "channel_id">]: never; }>(object: I_1): ListChannelDetailRequest;
|
|
13294
|
+
};
|
|
13264
13295
|
export declare const AddRoleChannelDescRequest: {
|
|
13265
13296
|
encode(message: AddRoleChannelDescRequest, writer?: _m0.Writer): _m0.Writer;
|
|
13266
13297
|
decode(input: _m0.Reader | Uint8Array, length?: number): AddRoleChannelDescRequest;
|
|
@@ -13295,7 +13326,7 @@ export declare const CreateChannelDescRequest: {
|
|
|
13295
13326
|
channel_label?: string | undefined;
|
|
13296
13327
|
channel_private?: number | undefined;
|
|
13297
13328
|
user_ids?: string[] | undefined;
|
|
13298
|
-
|
|
13329
|
+
app_id?: string | undefined;
|
|
13299
13330
|
} & {
|
|
13300
13331
|
clan_id?: string | undefined;
|
|
13301
13332
|
parent_id?: string | undefined;
|
|
@@ -13305,7 +13336,7 @@ export declare const CreateChannelDescRequest: {
|
|
|
13305
13336
|
channel_label?: string | undefined;
|
|
13306
13337
|
channel_private?: number | undefined;
|
|
13307
13338
|
user_ids?: (string[] & string[] & { [K in Exclude<keyof I["user_ids"], keyof string[]>]: never; }) | undefined;
|
|
13308
|
-
|
|
13339
|
+
app_id?: string | undefined;
|
|
13309
13340
|
} & { [K_1 in Exclude<keyof I, keyof CreateChannelDescRequest>]: never; }>(base?: I | undefined): CreateChannelDescRequest;
|
|
13310
13341
|
fromPartial<I_1 extends {
|
|
13311
13342
|
clan_id?: string | undefined;
|
|
@@ -13316,7 +13347,7 @@ export declare const CreateChannelDescRequest: {
|
|
|
13316
13347
|
channel_label?: string | undefined;
|
|
13317
13348
|
channel_private?: number | undefined;
|
|
13318
13349
|
user_ids?: string[] | undefined;
|
|
13319
|
-
|
|
13350
|
+
app_id?: string | undefined;
|
|
13320
13351
|
} & {
|
|
13321
13352
|
clan_id?: string | undefined;
|
|
13322
13353
|
parent_id?: string | undefined;
|
|
@@ -13326,7 +13357,7 @@ export declare const CreateChannelDescRequest: {
|
|
|
13326
13357
|
channel_label?: string | undefined;
|
|
13327
13358
|
channel_private?: number | undefined;
|
|
13328
13359
|
user_ids?: (string[] & string[] & { [K_2 in Exclude<keyof I_1["user_ids"], keyof string[]>]: never; }) | undefined;
|
|
13329
|
-
|
|
13360
|
+
app_id?: string | undefined;
|
|
13330
13361
|
} & { [K_3 in Exclude<keyof I_1, keyof CreateChannelDescRequest>]: never; }>(object: I_1): CreateChannelDescRequest;
|
|
13331
13362
|
};
|
|
13332
13363
|
export declare const DeleteChannelDescRequest: {
|
|
@@ -13354,7 +13385,7 @@ export declare const UpdateChannelDescRequest: {
|
|
|
13354
13385
|
channel_id?: string | undefined;
|
|
13355
13386
|
channel_label?: string | undefined;
|
|
13356
13387
|
category_id?: string | undefined;
|
|
13357
|
-
|
|
13388
|
+
app_id?: string | undefined;
|
|
13358
13389
|
topic?: string | undefined;
|
|
13359
13390
|
age_restricted?: number | undefined;
|
|
13360
13391
|
e2ee?: number | undefined;
|
|
@@ -13362,7 +13393,7 @@ export declare const UpdateChannelDescRequest: {
|
|
|
13362
13393
|
channel_id?: string | undefined;
|
|
13363
13394
|
channel_label?: string | undefined;
|
|
13364
13395
|
category_id?: string | undefined;
|
|
13365
|
-
|
|
13396
|
+
app_id?: string | undefined;
|
|
13366
13397
|
topic?: string | undefined;
|
|
13367
13398
|
age_restricted?: number | undefined;
|
|
13368
13399
|
e2ee?: number | undefined;
|
|
@@ -13371,7 +13402,7 @@ export declare const UpdateChannelDescRequest: {
|
|
|
13371
13402
|
channel_id?: string | undefined;
|
|
13372
13403
|
channel_label?: string | undefined;
|
|
13373
13404
|
category_id?: string | undefined;
|
|
13374
|
-
|
|
13405
|
+
app_id?: string | undefined;
|
|
13375
13406
|
topic?: string | undefined;
|
|
13376
13407
|
age_restricted?: number | undefined;
|
|
13377
13408
|
e2ee?: number | undefined;
|
|
@@ -13379,7 +13410,7 @@ export declare const UpdateChannelDescRequest: {
|
|
|
13379
13410
|
channel_id?: string | undefined;
|
|
13380
13411
|
channel_label?: string | undefined;
|
|
13381
13412
|
category_id?: string | undefined;
|
|
13382
|
-
|
|
13413
|
+
app_id?: string | undefined;
|
|
13383
13414
|
topic?: string | undefined;
|
|
13384
13415
|
age_restricted?: number | undefined;
|
|
13385
13416
|
e2ee?: number | undefined;
|
|
@@ -18144,6 +18175,7 @@ export declare const App: {
|
|
|
18144
18175
|
token?: string | undefined;
|
|
18145
18176
|
role?: number | undefined;
|
|
18146
18177
|
about?: string | undefined;
|
|
18178
|
+
app_url?: string | undefined;
|
|
18147
18179
|
} & {
|
|
18148
18180
|
id?: string | undefined;
|
|
18149
18181
|
appname?: string | undefined;
|
|
@@ -18154,6 +18186,7 @@ export declare const App: {
|
|
|
18154
18186
|
token?: string | undefined;
|
|
18155
18187
|
role?: number | undefined;
|
|
18156
18188
|
about?: string | undefined;
|
|
18189
|
+
app_url?: string | undefined;
|
|
18157
18190
|
} & { [K in Exclude<keyof I, keyof App>]: never; }>(base?: I | undefined): App;
|
|
18158
18191
|
fromPartial<I_1 extends {
|
|
18159
18192
|
id?: string | undefined;
|
|
@@ -18165,6 +18198,7 @@ export declare const App: {
|
|
|
18165
18198
|
token?: string | undefined;
|
|
18166
18199
|
role?: number | undefined;
|
|
18167
18200
|
about?: string | undefined;
|
|
18201
|
+
app_url?: string | undefined;
|
|
18168
18202
|
} & {
|
|
18169
18203
|
id?: string | undefined;
|
|
18170
18204
|
appname?: string | undefined;
|
|
@@ -18175,6 +18209,7 @@ export declare const App: {
|
|
|
18175
18209
|
token?: string | undefined;
|
|
18176
18210
|
role?: number | undefined;
|
|
18177
18211
|
about?: string | undefined;
|
|
18212
|
+
app_url?: string | undefined;
|
|
18178
18213
|
} & { [K_1 in Exclude<keyof I_1, keyof App>]: never; }>(object: I_1): App;
|
|
18179
18214
|
};
|
|
18180
18215
|
export declare const AppDeleteRequest: {
|
|
@@ -18213,6 +18248,7 @@ export declare const AppList: {
|
|
|
18213
18248
|
token?: string | undefined;
|
|
18214
18249
|
role?: number | undefined;
|
|
18215
18250
|
about?: string | undefined;
|
|
18251
|
+
app_url?: string | undefined;
|
|
18216
18252
|
}[] | undefined;
|
|
18217
18253
|
total_count?: number | undefined;
|
|
18218
18254
|
next_cursor?: string | undefined;
|
|
@@ -18227,6 +18263,7 @@ export declare const AppList: {
|
|
|
18227
18263
|
token?: string | undefined;
|
|
18228
18264
|
role?: number | undefined;
|
|
18229
18265
|
about?: string | undefined;
|
|
18266
|
+
app_url?: string | undefined;
|
|
18230
18267
|
}[] & ({
|
|
18231
18268
|
id?: string | undefined;
|
|
18232
18269
|
appname?: string | undefined;
|
|
@@ -18237,6 +18274,7 @@ export declare const AppList: {
|
|
|
18237
18274
|
token?: string | undefined;
|
|
18238
18275
|
role?: number | undefined;
|
|
18239
18276
|
about?: string | undefined;
|
|
18277
|
+
app_url?: string | undefined;
|
|
18240
18278
|
} & {
|
|
18241
18279
|
id?: string | undefined;
|
|
18242
18280
|
appname?: string | undefined;
|
|
@@ -18247,6 +18285,7 @@ export declare const AppList: {
|
|
|
18247
18285
|
token?: string | undefined;
|
|
18248
18286
|
role?: number | undefined;
|
|
18249
18287
|
about?: string | undefined;
|
|
18288
|
+
app_url?: string | undefined;
|
|
18250
18289
|
} & { [K in Exclude<keyof I["apps"][number], keyof App>]: never; })[] & { [K_1 in Exclude<keyof I["apps"], keyof {
|
|
18251
18290
|
id?: string | undefined;
|
|
18252
18291
|
appname?: string | undefined;
|
|
@@ -18257,6 +18296,7 @@ export declare const AppList: {
|
|
|
18257
18296
|
token?: string | undefined;
|
|
18258
18297
|
role?: number | undefined;
|
|
18259
18298
|
about?: string | undefined;
|
|
18299
|
+
app_url?: string | undefined;
|
|
18260
18300
|
}[]>]: never; }) | undefined;
|
|
18261
18301
|
total_count?: number | undefined;
|
|
18262
18302
|
next_cursor?: string | undefined;
|
|
@@ -18272,6 +18312,7 @@ export declare const AppList: {
|
|
|
18272
18312
|
token?: string | undefined;
|
|
18273
18313
|
role?: number | undefined;
|
|
18274
18314
|
about?: string | undefined;
|
|
18315
|
+
app_url?: string | undefined;
|
|
18275
18316
|
}[] | undefined;
|
|
18276
18317
|
total_count?: number | undefined;
|
|
18277
18318
|
next_cursor?: string | undefined;
|
|
@@ -18286,6 +18327,7 @@ export declare const AppList: {
|
|
|
18286
18327
|
token?: string | undefined;
|
|
18287
18328
|
role?: number | undefined;
|
|
18288
18329
|
about?: string | undefined;
|
|
18330
|
+
app_url?: string | undefined;
|
|
18289
18331
|
}[] & ({
|
|
18290
18332
|
id?: string | undefined;
|
|
18291
18333
|
appname?: string | undefined;
|
|
@@ -18296,6 +18338,7 @@ export declare const AppList: {
|
|
|
18296
18338
|
token?: string | undefined;
|
|
18297
18339
|
role?: number | undefined;
|
|
18298
18340
|
about?: string | undefined;
|
|
18341
|
+
app_url?: string | undefined;
|
|
18299
18342
|
} & {
|
|
18300
18343
|
id?: string | undefined;
|
|
18301
18344
|
appname?: string | undefined;
|
|
@@ -18306,6 +18349,7 @@ export declare const AppList: {
|
|
|
18306
18349
|
token?: string | undefined;
|
|
18307
18350
|
role?: number | undefined;
|
|
18308
18351
|
about?: string | undefined;
|
|
18352
|
+
app_url?: string | undefined;
|
|
18309
18353
|
} & { [K_3 in Exclude<keyof I_1["apps"][number], keyof App>]: never; })[] & { [K_4 in Exclude<keyof I_1["apps"], keyof {
|
|
18310
18354
|
id?: string | undefined;
|
|
18311
18355
|
appname?: string | undefined;
|
|
@@ -18316,6 +18360,7 @@ export declare const AppList: {
|
|
|
18316
18360
|
token?: string | undefined;
|
|
18317
18361
|
role?: number | undefined;
|
|
18318
18362
|
about?: string | undefined;
|
|
18363
|
+
app_url?: string | undefined;
|
|
18319
18364
|
}[]>]: never; }) | undefined;
|
|
18320
18365
|
total_count?: number | undefined;
|
|
18321
18366
|
next_cursor?: string | undefined;
|
|
@@ -18332,12 +18377,18 @@ export declare const AddAppRequest: {
|
|
|
18332
18377
|
creator_id?: string | undefined;
|
|
18333
18378
|
role?: number | undefined;
|
|
18334
18379
|
is_shadow?: boolean | undefined;
|
|
18380
|
+
app_url?: string | undefined;
|
|
18381
|
+
app_logo?: string | undefined;
|
|
18382
|
+
about_me?: string | undefined;
|
|
18335
18383
|
} & {
|
|
18336
18384
|
appname?: string | undefined;
|
|
18337
18385
|
token?: string | undefined;
|
|
18338
18386
|
creator_id?: string | undefined;
|
|
18339
18387
|
role?: number | undefined;
|
|
18340
18388
|
is_shadow?: boolean | undefined;
|
|
18389
|
+
app_url?: string | undefined;
|
|
18390
|
+
app_logo?: string | undefined;
|
|
18391
|
+
about_me?: string | undefined;
|
|
18341
18392
|
} & { [K in Exclude<keyof I, keyof AddAppRequest>]: never; }>(base?: I | undefined): AddAppRequest;
|
|
18342
18393
|
fromPartial<I_1 extends {
|
|
18343
18394
|
appname?: string | undefined;
|
|
@@ -18345,12 +18396,18 @@ export declare const AddAppRequest: {
|
|
|
18345
18396
|
creator_id?: string | undefined;
|
|
18346
18397
|
role?: number | undefined;
|
|
18347
18398
|
is_shadow?: boolean | undefined;
|
|
18399
|
+
app_url?: string | undefined;
|
|
18400
|
+
app_logo?: string | undefined;
|
|
18401
|
+
about_me?: string | undefined;
|
|
18348
18402
|
} & {
|
|
18349
18403
|
appname?: string | undefined;
|
|
18350
18404
|
token?: string | undefined;
|
|
18351
18405
|
creator_id?: string | undefined;
|
|
18352
18406
|
role?: number | undefined;
|
|
18353
18407
|
is_shadow?: boolean | undefined;
|
|
18408
|
+
app_url?: string | undefined;
|
|
18409
|
+
app_logo?: string | undefined;
|
|
18410
|
+
about_me?: string | undefined;
|
|
18354
18411
|
} & { [K_1 in Exclude<keyof I_1, keyof AddAppRequest>]: never; }>(object: I_1): AddAppRequest;
|
|
18355
18412
|
};
|
|
18356
18413
|
export declare const ListAppsRequest: {
|
|
@@ -18389,6 +18446,7 @@ export declare const UpdateAppRequest: {
|
|
|
18389
18446
|
applogo?: string | undefined;
|
|
18390
18447
|
token?: string | undefined;
|
|
18391
18448
|
about?: string | undefined;
|
|
18449
|
+
app_url?: string | undefined;
|
|
18392
18450
|
} & {
|
|
18393
18451
|
id?: string | undefined;
|
|
18394
18452
|
appname?: string | undefined;
|
|
@@ -18396,6 +18454,7 @@ export declare const UpdateAppRequest: {
|
|
|
18396
18454
|
applogo?: string | undefined;
|
|
18397
18455
|
token?: string | undefined;
|
|
18398
18456
|
about?: string | undefined;
|
|
18457
|
+
app_url?: string | undefined;
|
|
18399
18458
|
} & { [K in Exclude<keyof I, keyof UpdateAppRequest>]: never; }>(base?: I | undefined): UpdateAppRequest;
|
|
18400
18459
|
fromPartial<I_1 extends {
|
|
18401
18460
|
id?: string | undefined;
|
|
@@ -18404,6 +18463,7 @@ export declare const UpdateAppRequest: {
|
|
|
18404
18463
|
applogo?: string | undefined;
|
|
18405
18464
|
token?: string | undefined;
|
|
18406
18465
|
about?: string | undefined;
|
|
18466
|
+
app_url?: string | undefined;
|
|
18407
18467
|
} & {
|
|
18408
18468
|
id?: string | undefined;
|
|
18409
18469
|
appname?: string | undefined;
|
|
@@ -18411,6 +18471,7 @@ export declare const UpdateAppRequest: {
|
|
|
18411
18471
|
applogo?: string | undefined;
|
|
18412
18472
|
token?: string | undefined;
|
|
18413
18473
|
about?: string | undefined;
|
|
18474
|
+
app_url?: string | undefined;
|
|
18414
18475
|
} & { [K_1 in Exclude<keyof I_1, keyof UpdateAppRequest>]: never; }>(object: I_1): UpdateAppRequest;
|
|
18415
18476
|
};
|
|
18416
18477
|
export declare const AppId: {
|