mezon-js-protobuf 1.7.15 → 1.7.17
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 +254 -32
- package/dist/mezon-js-protobuf/api/api.d.ts +135 -67
- package/dist/mezon-js-protobuf/rtapi/realtime.d.ts +86 -86
- package/dist/mezon-js-protobuf.cjs.js +32 -32
- package/dist/mezon-js-protobuf.esm.mjs +32 -32
- 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 -11946
|
@@ -231,7 +231,7 @@ export interface HashtagDm {
|
|
|
231
231
|
/** */
|
|
232
232
|
channel_private: number;
|
|
233
233
|
/** */
|
|
234
|
-
|
|
234
|
+
parent_id: string;
|
|
235
235
|
}
|
|
236
236
|
/** Channel description record */
|
|
237
237
|
export interface ChannelDescription {
|
|
@@ -250,7 +250,7 @@ export interface ChannelDescription {
|
|
|
250
250
|
/** */
|
|
251
251
|
clan_name: string;
|
|
252
252
|
/** */
|
|
253
|
-
|
|
253
|
+
parent_id: string;
|
|
254
254
|
/** */
|
|
255
255
|
last_sent_message: ChannelMessageHeader | undefined;
|
|
256
256
|
}
|
|
@@ -637,8 +637,8 @@ export interface ChannelCreatedEvent {
|
|
|
637
637
|
category_id: string;
|
|
638
638
|
/** creator */
|
|
639
639
|
creator_id: string;
|
|
640
|
-
/**
|
|
641
|
-
|
|
640
|
+
/** parent id */
|
|
641
|
+
parent_id: string;
|
|
642
642
|
/** channel id */
|
|
643
643
|
channel_id: string;
|
|
644
644
|
/** channel label */
|
|
@@ -668,8 +668,8 @@ export interface ChannelDeletedEvent {
|
|
|
668
668
|
clan_id: string;
|
|
669
669
|
/** category */
|
|
670
670
|
category_id: string;
|
|
671
|
-
/**
|
|
672
|
-
|
|
671
|
+
/** parent id */
|
|
672
|
+
parent_id: string;
|
|
673
673
|
/** channel id */
|
|
674
674
|
channel_id: string;
|
|
675
675
|
/** deletor */
|
|
@@ -720,8 +720,8 @@ export interface ChannelUpdatedEvent {
|
|
|
720
720
|
category_id: string;
|
|
721
721
|
/** creator */
|
|
722
722
|
creator_id: string;
|
|
723
|
-
/**
|
|
724
|
-
|
|
723
|
+
/** parent id */
|
|
724
|
+
parent_id: string;
|
|
725
725
|
/** channel id */
|
|
726
726
|
channel_id: string;
|
|
727
727
|
/** channel label */
|
|
@@ -1240,7 +1240,7 @@ export declare const Envelope: {
|
|
|
1240
1240
|
avatar_url?: string | undefined;
|
|
1241
1241
|
channel?: {
|
|
1242
1242
|
clan_id?: string | undefined;
|
|
1243
|
-
|
|
1243
|
+
parent_id?: string | undefined;
|
|
1244
1244
|
channel_id?: string | undefined;
|
|
1245
1245
|
category_id?: string | undefined;
|
|
1246
1246
|
category_name?: string | undefined;
|
|
@@ -1447,7 +1447,7 @@ export declare const Envelope: {
|
|
|
1447
1447
|
clan_id?: string | undefined;
|
|
1448
1448
|
category_id?: string | undefined;
|
|
1449
1449
|
creator_id?: string | undefined;
|
|
1450
|
-
|
|
1450
|
+
parent_id?: string | undefined;
|
|
1451
1451
|
channel_id?: string | undefined;
|
|
1452
1452
|
channel_label?: string | undefined;
|
|
1453
1453
|
channel_private?: number | undefined;
|
|
@@ -1459,7 +1459,7 @@ export declare const Envelope: {
|
|
|
1459
1459
|
channel_deleted_event?: {
|
|
1460
1460
|
clan_id?: string | undefined;
|
|
1461
1461
|
category_id?: string | undefined;
|
|
1462
|
-
|
|
1462
|
+
parent_id?: string | undefined;
|
|
1463
1463
|
channel_id?: string | undefined;
|
|
1464
1464
|
deletor?: string | undefined;
|
|
1465
1465
|
} | undefined;
|
|
@@ -1467,7 +1467,7 @@ export declare const Envelope: {
|
|
|
1467
1467
|
clan_id?: string | undefined;
|
|
1468
1468
|
category_id?: string | undefined;
|
|
1469
1469
|
creator_id?: string | undefined;
|
|
1470
|
-
|
|
1470
|
+
parent_id?: string | undefined;
|
|
1471
1471
|
channel_id?: string | undefined;
|
|
1472
1472
|
channel_label?: string | undefined;
|
|
1473
1473
|
channel_type?: number | undefined;
|
|
@@ -1501,7 +1501,7 @@ export declare const Envelope: {
|
|
|
1501
1501
|
user_channel_added_event?: {
|
|
1502
1502
|
channel_desc?: {
|
|
1503
1503
|
clan_id?: string | undefined;
|
|
1504
|
-
|
|
1504
|
+
parent_id?: string | undefined;
|
|
1505
1505
|
channel_id?: string | undefined;
|
|
1506
1506
|
category_id?: string | undefined;
|
|
1507
1507
|
category_name?: string | undefined;
|
|
@@ -2525,7 +2525,7 @@ export declare const Envelope: {
|
|
|
2525
2525
|
avatar_url?: string | undefined;
|
|
2526
2526
|
channel?: {
|
|
2527
2527
|
clan_id?: string | undefined;
|
|
2528
|
-
|
|
2528
|
+
parent_id?: string | undefined;
|
|
2529
2529
|
channel_id?: string | undefined;
|
|
2530
2530
|
category_id?: string | undefined;
|
|
2531
2531
|
category_name?: string | undefined;
|
|
@@ -2592,7 +2592,7 @@ export declare const Envelope: {
|
|
|
2592
2592
|
avatar_url?: string | undefined;
|
|
2593
2593
|
channel?: {
|
|
2594
2594
|
clan_id?: string | undefined;
|
|
2595
|
-
|
|
2595
|
+
parent_id?: string | undefined;
|
|
2596
2596
|
channel_id?: string | undefined;
|
|
2597
2597
|
category_id?: string | undefined;
|
|
2598
2598
|
category_name?: string | undefined;
|
|
@@ -2657,7 +2657,7 @@ export declare const Envelope: {
|
|
|
2657
2657
|
avatar_url?: string | undefined;
|
|
2658
2658
|
channel?: {
|
|
2659
2659
|
clan_id?: string | undefined;
|
|
2660
|
-
|
|
2660
|
+
parent_id?: string | undefined;
|
|
2661
2661
|
channel_id?: string | undefined;
|
|
2662
2662
|
category_id?: string | undefined;
|
|
2663
2663
|
category_name?: string | undefined;
|
|
@@ -2722,7 +2722,7 @@ export declare const Envelope: {
|
|
|
2722
2722
|
avatar_url?: string | undefined;
|
|
2723
2723
|
channel?: ({
|
|
2724
2724
|
clan_id?: string | undefined;
|
|
2725
|
-
|
|
2725
|
+
parent_id?: string | undefined;
|
|
2726
2726
|
channel_id?: string | undefined;
|
|
2727
2727
|
category_id?: string | undefined;
|
|
2728
2728
|
category_name?: string | undefined;
|
|
@@ -2774,7 +2774,7 @@ export declare const Envelope: {
|
|
|
2774
2774
|
display_names?: string[] | undefined;
|
|
2775
2775
|
} & {
|
|
2776
2776
|
clan_id?: string | undefined;
|
|
2777
|
-
|
|
2777
|
+
parent_id?: string | undefined;
|
|
2778
2778
|
channel_id?: string | undefined;
|
|
2779
2779
|
category_id?: string | undefined;
|
|
2780
2780
|
category_name?: string | undefined;
|
|
@@ -2859,7 +2859,7 @@ export declare const Envelope: {
|
|
|
2859
2859
|
avatar_url?: string | undefined;
|
|
2860
2860
|
channel?: {
|
|
2861
2861
|
clan_id?: string | undefined;
|
|
2862
|
-
|
|
2862
|
+
parent_id?: string | undefined;
|
|
2863
2863
|
channel_id?: string | undefined;
|
|
2864
2864
|
category_id?: string | undefined;
|
|
2865
2865
|
category_name?: string | undefined;
|
|
@@ -3337,7 +3337,7 @@ export declare const Envelope: {
|
|
|
3337
3337
|
clan_id?: string | undefined;
|
|
3338
3338
|
category_id?: string | undefined;
|
|
3339
3339
|
creator_id?: string | undefined;
|
|
3340
|
-
|
|
3340
|
+
parent_id?: string | undefined;
|
|
3341
3341
|
channel_id?: string | undefined;
|
|
3342
3342
|
channel_label?: string | undefined;
|
|
3343
3343
|
channel_private?: number | undefined;
|
|
@@ -3349,7 +3349,7 @@ export declare const Envelope: {
|
|
|
3349
3349
|
clan_id?: string | undefined;
|
|
3350
3350
|
category_id?: string | undefined;
|
|
3351
3351
|
creator_id?: string | undefined;
|
|
3352
|
-
|
|
3352
|
+
parent_id?: string | undefined;
|
|
3353
3353
|
channel_id?: string | undefined;
|
|
3354
3354
|
channel_label?: string | undefined;
|
|
3355
3355
|
channel_private?: number | undefined;
|
|
@@ -3361,13 +3361,13 @@ export declare const Envelope: {
|
|
|
3361
3361
|
channel_deleted_event?: ({
|
|
3362
3362
|
clan_id?: string | undefined;
|
|
3363
3363
|
category_id?: string | undefined;
|
|
3364
|
-
|
|
3364
|
+
parent_id?: string | undefined;
|
|
3365
3365
|
channel_id?: string | undefined;
|
|
3366
3366
|
deletor?: string | undefined;
|
|
3367
3367
|
} & {
|
|
3368
3368
|
clan_id?: string | undefined;
|
|
3369
3369
|
category_id?: string | undefined;
|
|
3370
|
-
|
|
3370
|
+
parent_id?: string | undefined;
|
|
3371
3371
|
channel_id?: string | undefined;
|
|
3372
3372
|
deletor?: string | undefined;
|
|
3373
3373
|
} & { [K_78 in Exclude<keyof I["channel_deleted_event"], keyof ChannelDeletedEvent>]: never; }) | undefined;
|
|
@@ -3375,7 +3375,7 @@ export declare const Envelope: {
|
|
|
3375
3375
|
clan_id?: string | undefined;
|
|
3376
3376
|
category_id?: string | undefined;
|
|
3377
3377
|
creator_id?: string | undefined;
|
|
3378
|
-
|
|
3378
|
+
parent_id?: string | undefined;
|
|
3379
3379
|
channel_id?: string | undefined;
|
|
3380
3380
|
channel_label?: string | undefined;
|
|
3381
3381
|
channel_type?: number | undefined;
|
|
@@ -3391,7 +3391,7 @@ export declare const Envelope: {
|
|
|
3391
3391
|
clan_id?: string | undefined;
|
|
3392
3392
|
category_id?: string | undefined;
|
|
3393
3393
|
creator_id?: string | undefined;
|
|
3394
|
-
|
|
3394
|
+
parent_id?: string | undefined;
|
|
3395
3395
|
channel_id?: string | undefined;
|
|
3396
3396
|
channel_label?: string | undefined;
|
|
3397
3397
|
channel_type?: number | undefined;
|
|
@@ -3441,7 +3441,7 @@ export declare const Envelope: {
|
|
|
3441
3441
|
user_channel_added_event?: ({
|
|
3442
3442
|
channel_desc?: {
|
|
3443
3443
|
clan_id?: string | undefined;
|
|
3444
|
-
|
|
3444
|
+
parent_id?: string | undefined;
|
|
3445
3445
|
channel_id?: string | undefined;
|
|
3446
3446
|
category_id?: string | undefined;
|
|
3447
3447
|
category_name?: string | undefined;
|
|
@@ -3533,7 +3533,7 @@ export declare const Envelope: {
|
|
|
3533
3533
|
} & {
|
|
3534
3534
|
channel_desc?: ({
|
|
3535
3535
|
clan_id?: string | undefined;
|
|
3536
|
-
|
|
3536
|
+
parent_id?: string | undefined;
|
|
3537
3537
|
channel_id?: string | undefined;
|
|
3538
3538
|
category_id?: string | undefined;
|
|
3539
3539
|
category_name?: string | undefined;
|
|
@@ -3585,7 +3585,7 @@ export declare const Envelope: {
|
|
|
3585
3585
|
display_names?: string[] | undefined;
|
|
3586
3586
|
} & {
|
|
3587
3587
|
clan_id?: string | undefined;
|
|
3588
|
-
|
|
3588
|
+
parent_id?: string | undefined;
|
|
3589
3589
|
channel_id?: string | undefined;
|
|
3590
3590
|
category_id?: string | undefined;
|
|
3591
3591
|
category_name?: string | undefined;
|
|
@@ -4839,7 +4839,7 @@ export declare const Envelope: {
|
|
|
4839
4839
|
avatar_url?: string | undefined;
|
|
4840
4840
|
channel?: {
|
|
4841
4841
|
clan_id?: string | undefined;
|
|
4842
|
-
|
|
4842
|
+
parent_id?: string | undefined;
|
|
4843
4843
|
channel_id?: string | undefined;
|
|
4844
4844
|
category_id?: string | undefined;
|
|
4845
4845
|
category_name?: string | undefined;
|
|
@@ -5046,7 +5046,7 @@ export declare const Envelope: {
|
|
|
5046
5046
|
clan_id?: string | undefined;
|
|
5047
5047
|
category_id?: string | undefined;
|
|
5048
5048
|
creator_id?: string | undefined;
|
|
5049
|
-
|
|
5049
|
+
parent_id?: string | undefined;
|
|
5050
5050
|
channel_id?: string | undefined;
|
|
5051
5051
|
channel_label?: string | undefined;
|
|
5052
5052
|
channel_private?: number | undefined;
|
|
@@ -5058,7 +5058,7 @@ export declare const Envelope: {
|
|
|
5058
5058
|
channel_deleted_event?: {
|
|
5059
5059
|
clan_id?: string | undefined;
|
|
5060
5060
|
category_id?: string | undefined;
|
|
5061
|
-
|
|
5061
|
+
parent_id?: string | undefined;
|
|
5062
5062
|
channel_id?: string | undefined;
|
|
5063
5063
|
deletor?: string | undefined;
|
|
5064
5064
|
} | undefined;
|
|
@@ -5066,7 +5066,7 @@ export declare const Envelope: {
|
|
|
5066
5066
|
clan_id?: string | undefined;
|
|
5067
5067
|
category_id?: string | undefined;
|
|
5068
5068
|
creator_id?: string | undefined;
|
|
5069
|
-
|
|
5069
|
+
parent_id?: string | undefined;
|
|
5070
5070
|
channel_id?: string | undefined;
|
|
5071
5071
|
channel_label?: string | undefined;
|
|
5072
5072
|
channel_type?: number | undefined;
|
|
@@ -5100,7 +5100,7 @@ export declare const Envelope: {
|
|
|
5100
5100
|
user_channel_added_event?: {
|
|
5101
5101
|
channel_desc?: {
|
|
5102
5102
|
clan_id?: string | undefined;
|
|
5103
|
-
|
|
5103
|
+
parent_id?: string | undefined;
|
|
5104
5104
|
channel_id?: string | undefined;
|
|
5105
5105
|
category_id?: string | undefined;
|
|
5106
5106
|
category_name?: string | undefined;
|
|
@@ -6124,7 +6124,7 @@ export declare const Envelope: {
|
|
|
6124
6124
|
avatar_url?: string | undefined;
|
|
6125
6125
|
channel?: {
|
|
6126
6126
|
clan_id?: string | undefined;
|
|
6127
|
-
|
|
6127
|
+
parent_id?: string | undefined;
|
|
6128
6128
|
channel_id?: string | undefined;
|
|
6129
6129
|
category_id?: string | undefined;
|
|
6130
6130
|
category_name?: string | undefined;
|
|
@@ -6191,7 +6191,7 @@ export declare const Envelope: {
|
|
|
6191
6191
|
avatar_url?: string | undefined;
|
|
6192
6192
|
channel?: {
|
|
6193
6193
|
clan_id?: string | undefined;
|
|
6194
|
-
|
|
6194
|
+
parent_id?: string | undefined;
|
|
6195
6195
|
channel_id?: string | undefined;
|
|
6196
6196
|
category_id?: string | undefined;
|
|
6197
6197
|
category_name?: string | undefined;
|
|
@@ -6256,7 +6256,7 @@ export declare const Envelope: {
|
|
|
6256
6256
|
avatar_url?: string | undefined;
|
|
6257
6257
|
channel?: {
|
|
6258
6258
|
clan_id?: string | undefined;
|
|
6259
|
-
|
|
6259
|
+
parent_id?: string | undefined;
|
|
6260
6260
|
channel_id?: string | undefined;
|
|
6261
6261
|
category_id?: string | undefined;
|
|
6262
6262
|
category_name?: string | undefined;
|
|
@@ -6321,7 +6321,7 @@ export declare const Envelope: {
|
|
|
6321
6321
|
avatar_url?: string | undefined;
|
|
6322
6322
|
channel?: ({
|
|
6323
6323
|
clan_id?: string | undefined;
|
|
6324
|
-
|
|
6324
|
+
parent_id?: string | undefined;
|
|
6325
6325
|
channel_id?: string | undefined;
|
|
6326
6326
|
category_id?: string | undefined;
|
|
6327
6327
|
category_name?: string | undefined;
|
|
@@ -6373,7 +6373,7 @@ export declare const Envelope: {
|
|
|
6373
6373
|
display_names?: string[] | undefined;
|
|
6374
6374
|
} & {
|
|
6375
6375
|
clan_id?: string | undefined;
|
|
6376
|
-
|
|
6376
|
+
parent_id?: string | undefined;
|
|
6377
6377
|
channel_id?: string | undefined;
|
|
6378
6378
|
category_id?: string | undefined;
|
|
6379
6379
|
category_name?: string | undefined;
|
|
@@ -6458,7 +6458,7 @@ export declare const Envelope: {
|
|
|
6458
6458
|
avatar_url?: string | undefined;
|
|
6459
6459
|
channel?: {
|
|
6460
6460
|
clan_id?: string | undefined;
|
|
6461
|
-
|
|
6461
|
+
parent_id?: string | undefined;
|
|
6462
6462
|
channel_id?: string | undefined;
|
|
6463
6463
|
category_id?: string | undefined;
|
|
6464
6464
|
category_name?: string | undefined;
|
|
@@ -6936,7 +6936,7 @@ export declare const Envelope: {
|
|
|
6936
6936
|
clan_id?: string | undefined;
|
|
6937
6937
|
category_id?: string | undefined;
|
|
6938
6938
|
creator_id?: string | undefined;
|
|
6939
|
-
|
|
6939
|
+
parent_id?: string | undefined;
|
|
6940
6940
|
channel_id?: string | undefined;
|
|
6941
6941
|
channel_label?: string | undefined;
|
|
6942
6942
|
channel_private?: number | undefined;
|
|
@@ -6948,7 +6948,7 @@ export declare const Envelope: {
|
|
|
6948
6948
|
clan_id?: string | undefined;
|
|
6949
6949
|
category_id?: string | undefined;
|
|
6950
6950
|
creator_id?: string | undefined;
|
|
6951
|
-
|
|
6951
|
+
parent_id?: string | undefined;
|
|
6952
6952
|
channel_id?: string | undefined;
|
|
6953
6953
|
channel_label?: string | undefined;
|
|
6954
6954
|
channel_private?: number | undefined;
|
|
@@ -6960,13 +6960,13 @@ export declare const Envelope: {
|
|
|
6960
6960
|
channel_deleted_event?: ({
|
|
6961
6961
|
clan_id?: string | undefined;
|
|
6962
6962
|
category_id?: string | undefined;
|
|
6963
|
-
|
|
6963
|
+
parent_id?: string | undefined;
|
|
6964
6964
|
channel_id?: string | undefined;
|
|
6965
6965
|
deletor?: string | undefined;
|
|
6966
6966
|
} & {
|
|
6967
6967
|
clan_id?: string | undefined;
|
|
6968
6968
|
category_id?: string | undefined;
|
|
6969
|
-
|
|
6969
|
+
parent_id?: string | undefined;
|
|
6970
6970
|
channel_id?: string | undefined;
|
|
6971
6971
|
deletor?: string | undefined;
|
|
6972
6972
|
} & { [K_249 in Exclude<keyof I_1["channel_deleted_event"], keyof ChannelDeletedEvent>]: never; }) | undefined;
|
|
@@ -6974,7 +6974,7 @@ export declare const Envelope: {
|
|
|
6974
6974
|
clan_id?: string | undefined;
|
|
6975
6975
|
category_id?: string | undefined;
|
|
6976
6976
|
creator_id?: string | undefined;
|
|
6977
|
-
|
|
6977
|
+
parent_id?: string | undefined;
|
|
6978
6978
|
channel_id?: string | undefined;
|
|
6979
6979
|
channel_label?: string | undefined;
|
|
6980
6980
|
channel_type?: number | undefined;
|
|
@@ -6990,7 +6990,7 @@ export declare const Envelope: {
|
|
|
6990
6990
|
clan_id?: string | undefined;
|
|
6991
6991
|
category_id?: string | undefined;
|
|
6992
6992
|
creator_id?: string | undefined;
|
|
6993
|
-
|
|
6993
|
+
parent_id?: string | undefined;
|
|
6994
6994
|
channel_id?: string | undefined;
|
|
6995
6995
|
channel_label?: string | undefined;
|
|
6996
6996
|
channel_type?: number | undefined;
|
|
@@ -7040,7 +7040,7 @@ export declare const Envelope: {
|
|
|
7040
7040
|
user_channel_added_event?: ({
|
|
7041
7041
|
channel_desc?: {
|
|
7042
7042
|
clan_id?: string | undefined;
|
|
7043
|
-
|
|
7043
|
+
parent_id?: string | undefined;
|
|
7044
7044
|
channel_id?: string | undefined;
|
|
7045
7045
|
category_id?: string | undefined;
|
|
7046
7046
|
category_name?: string | undefined;
|
|
@@ -7132,7 +7132,7 @@ export declare const Envelope: {
|
|
|
7132
7132
|
} & {
|
|
7133
7133
|
channel_desc?: ({
|
|
7134
7134
|
clan_id?: string | undefined;
|
|
7135
|
-
|
|
7135
|
+
parent_id?: string | undefined;
|
|
7136
7136
|
channel_id?: string | undefined;
|
|
7137
7137
|
category_id?: string | undefined;
|
|
7138
7138
|
category_name?: string | undefined;
|
|
@@ -7184,7 +7184,7 @@ export declare const Envelope: {
|
|
|
7184
7184
|
display_names?: string[] | undefined;
|
|
7185
7185
|
} & {
|
|
7186
7186
|
clan_id?: string | undefined;
|
|
7187
|
-
|
|
7187
|
+
parent_id?: string | undefined;
|
|
7188
7188
|
channel_id?: string | undefined;
|
|
7189
7189
|
category_id?: string | undefined;
|
|
7190
7190
|
category_name?: string | undefined;
|
|
@@ -8577,7 +8577,7 @@ export declare const HashtagDm: {
|
|
|
8577
8577
|
meeting_code?: string | undefined;
|
|
8578
8578
|
type?: number | undefined;
|
|
8579
8579
|
channel_private?: number | undefined;
|
|
8580
|
-
|
|
8580
|
+
parent_id?: string | undefined;
|
|
8581
8581
|
} & {
|
|
8582
8582
|
channel_id?: string | undefined;
|
|
8583
8583
|
channel_label?: string | undefined;
|
|
@@ -8586,7 +8586,7 @@ export declare const HashtagDm: {
|
|
|
8586
8586
|
meeting_code?: string | undefined;
|
|
8587
8587
|
type?: number | undefined;
|
|
8588
8588
|
channel_private?: number | undefined;
|
|
8589
|
-
|
|
8589
|
+
parent_id?: string | undefined;
|
|
8590
8590
|
} & { [K in Exclude<keyof I, keyof HashtagDm>]: never; }>(base?: I | undefined): HashtagDm;
|
|
8591
8591
|
fromPartial<I_1 extends {
|
|
8592
8592
|
channel_id?: string | undefined;
|
|
@@ -8596,7 +8596,7 @@ export declare const HashtagDm: {
|
|
|
8596
8596
|
meeting_code?: string | undefined;
|
|
8597
8597
|
type?: number | undefined;
|
|
8598
8598
|
channel_private?: number | undefined;
|
|
8599
|
-
|
|
8599
|
+
parent_id?: string | undefined;
|
|
8600
8600
|
} & {
|
|
8601
8601
|
channel_id?: string | undefined;
|
|
8602
8602
|
channel_label?: string | undefined;
|
|
@@ -8605,7 +8605,7 @@ export declare const HashtagDm: {
|
|
|
8605
8605
|
meeting_code?: string | undefined;
|
|
8606
8606
|
type?: number | undefined;
|
|
8607
8607
|
channel_private?: number | undefined;
|
|
8608
|
-
|
|
8608
|
+
parent_id?: string | undefined;
|
|
8609
8609
|
} & { [K_1 in Exclude<keyof I_1, keyof HashtagDm>]: never; }>(object: I_1): HashtagDm;
|
|
8610
8610
|
};
|
|
8611
8611
|
export declare const ChannelDescription: {
|
|
@@ -8621,7 +8621,7 @@ export declare const ChannelDescription: {
|
|
|
8621
8621
|
channel_private?: number | undefined;
|
|
8622
8622
|
meeting_code?: string | undefined;
|
|
8623
8623
|
clan_name?: string | undefined;
|
|
8624
|
-
|
|
8624
|
+
parent_id?: string | undefined;
|
|
8625
8625
|
last_sent_message?: {
|
|
8626
8626
|
id?: string | undefined;
|
|
8627
8627
|
timestamp_seconds?: number | undefined;
|
|
@@ -8641,7 +8641,7 @@ export declare const ChannelDescription: {
|
|
|
8641
8641
|
channel_private?: number | undefined;
|
|
8642
8642
|
meeting_code?: string | undefined;
|
|
8643
8643
|
clan_name?: string | undefined;
|
|
8644
|
-
|
|
8644
|
+
parent_id?: string | undefined;
|
|
8645
8645
|
last_sent_message?: ({
|
|
8646
8646
|
id?: string | undefined;
|
|
8647
8647
|
timestamp_seconds?: number | undefined;
|
|
@@ -8672,7 +8672,7 @@ export declare const ChannelDescription: {
|
|
|
8672
8672
|
channel_private?: number | undefined;
|
|
8673
8673
|
meeting_code?: string | undefined;
|
|
8674
8674
|
clan_name?: string | undefined;
|
|
8675
|
-
|
|
8675
|
+
parent_id?: string | undefined;
|
|
8676
8676
|
last_sent_message?: {
|
|
8677
8677
|
id?: string | undefined;
|
|
8678
8678
|
timestamp_seconds?: number | undefined;
|
|
@@ -8692,7 +8692,7 @@ export declare const ChannelDescription: {
|
|
|
8692
8692
|
channel_private?: number | undefined;
|
|
8693
8693
|
meeting_code?: string | undefined;
|
|
8694
8694
|
clan_name?: string | undefined;
|
|
8695
|
-
|
|
8695
|
+
parent_id?: string | undefined;
|
|
8696
8696
|
last_sent_message?: ({
|
|
8697
8697
|
id?: string | undefined;
|
|
8698
8698
|
timestamp_seconds?: number | undefined;
|
|
@@ -9906,7 +9906,7 @@ export declare const Notifications: {
|
|
|
9906
9906
|
avatar_url?: string | undefined;
|
|
9907
9907
|
channel?: {
|
|
9908
9908
|
clan_id?: string | undefined;
|
|
9909
|
-
|
|
9909
|
+
parent_id?: string | undefined;
|
|
9910
9910
|
channel_id?: string | undefined;
|
|
9911
9911
|
category_id?: string | undefined;
|
|
9912
9912
|
category_name?: string | undefined;
|
|
@@ -9973,7 +9973,7 @@ export declare const Notifications: {
|
|
|
9973
9973
|
avatar_url?: string | undefined;
|
|
9974
9974
|
channel?: {
|
|
9975
9975
|
clan_id?: string | undefined;
|
|
9976
|
-
|
|
9976
|
+
parent_id?: string | undefined;
|
|
9977
9977
|
channel_id?: string | undefined;
|
|
9978
9978
|
category_id?: string | undefined;
|
|
9979
9979
|
category_name?: string | undefined;
|
|
@@ -10038,7 +10038,7 @@ export declare const Notifications: {
|
|
|
10038
10038
|
avatar_url?: string | undefined;
|
|
10039
10039
|
channel?: {
|
|
10040
10040
|
clan_id?: string | undefined;
|
|
10041
|
-
|
|
10041
|
+
parent_id?: string | undefined;
|
|
10042
10042
|
channel_id?: string | undefined;
|
|
10043
10043
|
category_id?: string | undefined;
|
|
10044
10044
|
category_name?: string | undefined;
|
|
@@ -10103,7 +10103,7 @@ export declare const Notifications: {
|
|
|
10103
10103
|
avatar_url?: string | undefined;
|
|
10104
10104
|
channel?: ({
|
|
10105
10105
|
clan_id?: string | undefined;
|
|
10106
|
-
|
|
10106
|
+
parent_id?: string | undefined;
|
|
10107
10107
|
channel_id?: string | undefined;
|
|
10108
10108
|
category_id?: string | undefined;
|
|
10109
10109
|
category_name?: string | undefined;
|
|
@@ -10155,7 +10155,7 @@ export declare const Notifications: {
|
|
|
10155
10155
|
display_names?: string[] | undefined;
|
|
10156
10156
|
} & {
|
|
10157
10157
|
clan_id?: string | undefined;
|
|
10158
|
-
|
|
10158
|
+
parent_id?: string | undefined;
|
|
10159
10159
|
channel_id?: string | undefined;
|
|
10160
10160
|
category_id?: string | undefined;
|
|
10161
10161
|
category_name?: string | undefined;
|
|
@@ -10240,7 +10240,7 @@ export declare const Notifications: {
|
|
|
10240
10240
|
avatar_url?: string | undefined;
|
|
10241
10241
|
channel?: {
|
|
10242
10242
|
clan_id?: string | undefined;
|
|
10243
|
-
|
|
10243
|
+
parent_id?: string | undefined;
|
|
10244
10244
|
channel_id?: string | undefined;
|
|
10245
10245
|
category_id?: string | undefined;
|
|
10246
10246
|
category_name?: string | undefined;
|
|
@@ -10308,7 +10308,7 @@ export declare const Notifications: {
|
|
|
10308
10308
|
avatar_url?: string | undefined;
|
|
10309
10309
|
channel?: {
|
|
10310
10310
|
clan_id?: string | undefined;
|
|
10311
|
-
|
|
10311
|
+
parent_id?: string | undefined;
|
|
10312
10312
|
channel_id?: string | undefined;
|
|
10313
10313
|
category_id?: string | undefined;
|
|
10314
10314
|
category_name?: string | undefined;
|
|
@@ -10375,7 +10375,7 @@ export declare const Notifications: {
|
|
|
10375
10375
|
avatar_url?: string | undefined;
|
|
10376
10376
|
channel?: {
|
|
10377
10377
|
clan_id?: string | undefined;
|
|
10378
|
-
|
|
10378
|
+
parent_id?: string | undefined;
|
|
10379
10379
|
channel_id?: string | undefined;
|
|
10380
10380
|
category_id?: string | undefined;
|
|
10381
10381
|
category_name?: string | undefined;
|
|
@@ -10440,7 +10440,7 @@ export declare const Notifications: {
|
|
|
10440
10440
|
avatar_url?: string | undefined;
|
|
10441
10441
|
channel?: {
|
|
10442
10442
|
clan_id?: string | undefined;
|
|
10443
|
-
|
|
10443
|
+
parent_id?: string | undefined;
|
|
10444
10444
|
channel_id?: string | undefined;
|
|
10445
10445
|
category_id?: string | undefined;
|
|
10446
10446
|
category_name?: string | undefined;
|
|
@@ -10505,7 +10505,7 @@ export declare const Notifications: {
|
|
|
10505
10505
|
avatar_url?: string | undefined;
|
|
10506
10506
|
channel?: ({
|
|
10507
10507
|
clan_id?: string | undefined;
|
|
10508
|
-
|
|
10508
|
+
parent_id?: string | undefined;
|
|
10509
10509
|
channel_id?: string | undefined;
|
|
10510
10510
|
category_id?: string | undefined;
|
|
10511
10511
|
category_name?: string | undefined;
|
|
@@ -10557,7 +10557,7 @@ export declare const Notifications: {
|
|
|
10557
10557
|
display_names?: string[] | undefined;
|
|
10558
10558
|
} & {
|
|
10559
10559
|
clan_id?: string | undefined;
|
|
10560
|
-
|
|
10560
|
+
parent_id?: string | undefined;
|
|
10561
10561
|
channel_id?: string | undefined;
|
|
10562
10562
|
category_id?: string | undefined;
|
|
10563
10563
|
category_name?: string | undefined;
|
|
@@ -10642,7 +10642,7 @@ export declare const Notifications: {
|
|
|
10642
10642
|
avatar_url?: string | undefined;
|
|
10643
10643
|
channel?: {
|
|
10644
10644
|
clan_id?: string | undefined;
|
|
10645
|
-
|
|
10645
|
+
parent_id?: string | undefined;
|
|
10646
10646
|
channel_id?: string | undefined;
|
|
10647
10647
|
category_id?: string | undefined;
|
|
10648
10648
|
category_name?: string | undefined;
|
|
@@ -11377,7 +11377,7 @@ export declare const ChannelCreatedEvent: {
|
|
|
11377
11377
|
clan_id?: string | undefined;
|
|
11378
11378
|
category_id?: string | undefined;
|
|
11379
11379
|
creator_id?: string | undefined;
|
|
11380
|
-
|
|
11380
|
+
parent_id?: string | undefined;
|
|
11381
11381
|
channel_id?: string | undefined;
|
|
11382
11382
|
channel_label?: string | undefined;
|
|
11383
11383
|
channel_private?: number | undefined;
|
|
@@ -11389,7 +11389,7 @@ export declare const ChannelCreatedEvent: {
|
|
|
11389
11389
|
clan_id?: string | undefined;
|
|
11390
11390
|
category_id?: string | undefined;
|
|
11391
11391
|
creator_id?: string | undefined;
|
|
11392
|
-
|
|
11392
|
+
parent_id?: string | undefined;
|
|
11393
11393
|
channel_id?: string | undefined;
|
|
11394
11394
|
channel_label?: string | undefined;
|
|
11395
11395
|
channel_private?: number | undefined;
|
|
@@ -11402,7 +11402,7 @@ export declare const ChannelCreatedEvent: {
|
|
|
11402
11402
|
clan_id?: string | undefined;
|
|
11403
11403
|
category_id?: string | undefined;
|
|
11404
11404
|
creator_id?: string | undefined;
|
|
11405
|
-
|
|
11405
|
+
parent_id?: string | undefined;
|
|
11406
11406
|
channel_id?: string | undefined;
|
|
11407
11407
|
channel_label?: string | undefined;
|
|
11408
11408
|
channel_private?: number | undefined;
|
|
@@ -11414,7 +11414,7 @@ export declare const ChannelCreatedEvent: {
|
|
|
11414
11414
|
clan_id?: string | undefined;
|
|
11415
11415
|
category_id?: string | undefined;
|
|
11416
11416
|
creator_id?: string | undefined;
|
|
11417
|
-
|
|
11417
|
+
parent_id?: string | undefined;
|
|
11418
11418
|
channel_id?: string | undefined;
|
|
11419
11419
|
channel_label?: string | undefined;
|
|
11420
11420
|
channel_private?: number | undefined;
|
|
@@ -11846,26 +11846,26 @@ export declare const ChannelDeletedEvent: {
|
|
|
11846
11846
|
create<I extends {
|
|
11847
11847
|
clan_id?: string | undefined;
|
|
11848
11848
|
category_id?: string | undefined;
|
|
11849
|
-
|
|
11849
|
+
parent_id?: string | undefined;
|
|
11850
11850
|
channel_id?: string | undefined;
|
|
11851
11851
|
deletor?: string | undefined;
|
|
11852
11852
|
} & {
|
|
11853
11853
|
clan_id?: string | undefined;
|
|
11854
11854
|
category_id?: string | undefined;
|
|
11855
|
-
|
|
11855
|
+
parent_id?: string | undefined;
|
|
11856
11856
|
channel_id?: string | undefined;
|
|
11857
11857
|
deletor?: string | undefined;
|
|
11858
11858
|
} & { [K in Exclude<keyof I, keyof ChannelDeletedEvent>]: never; }>(base?: I | undefined): ChannelDeletedEvent;
|
|
11859
11859
|
fromPartial<I_1 extends {
|
|
11860
11860
|
clan_id?: string | undefined;
|
|
11861
11861
|
category_id?: string | undefined;
|
|
11862
|
-
|
|
11862
|
+
parent_id?: string | undefined;
|
|
11863
11863
|
channel_id?: string | undefined;
|
|
11864
11864
|
deletor?: string | undefined;
|
|
11865
11865
|
} & {
|
|
11866
11866
|
clan_id?: string | undefined;
|
|
11867
11867
|
category_id?: string | undefined;
|
|
11868
|
-
|
|
11868
|
+
parent_id?: string | undefined;
|
|
11869
11869
|
channel_id?: string | undefined;
|
|
11870
11870
|
deletor?: string | undefined;
|
|
11871
11871
|
} & { [K_1 in Exclude<keyof I_1, keyof ChannelDeletedEvent>]: never; }>(object: I_1): ChannelDeletedEvent;
|
|
@@ -11987,7 +11987,7 @@ export declare const ChannelUpdatedEvent: {
|
|
|
11987
11987
|
clan_id?: string | undefined;
|
|
11988
11988
|
category_id?: string | undefined;
|
|
11989
11989
|
creator_id?: string | undefined;
|
|
11990
|
-
|
|
11990
|
+
parent_id?: string | undefined;
|
|
11991
11991
|
channel_id?: string | undefined;
|
|
11992
11992
|
channel_label?: string | undefined;
|
|
11993
11993
|
channel_type?: number | undefined;
|
|
@@ -12003,7 +12003,7 @@ export declare const ChannelUpdatedEvent: {
|
|
|
12003
12003
|
clan_id?: string | undefined;
|
|
12004
12004
|
category_id?: string | undefined;
|
|
12005
12005
|
creator_id?: string | undefined;
|
|
12006
|
-
|
|
12006
|
+
parent_id?: string | undefined;
|
|
12007
12007
|
channel_id?: string | undefined;
|
|
12008
12008
|
channel_label?: string | undefined;
|
|
12009
12009
|
channel_type?: number | undefined;
|
|
@@ -12020,7 +12020,7 @@ export declare const ChannelUpdatedEvent: {
|
|
|
12020
12020
|
clan_id?: string | undefined;
|
|
12021
12021
|
category_id?: string | undefined;
|
|
12022
12022
|
creator_id?: string | undefined;
|
|
12023
|
-
|
|
12023
|
+
parent_id?: string | undefined;
|
|
12024
12024
|
channel_id?: string | undefined;
|
|
12025
12025
|
channel_label?: string | undefined;
|
|
12026
12026
|
channel_type?: number | undefined;
|
|
@@ -12036,7 +12036,7 @@ export declare const ChannelUpdatedEvent: {
|
|
|
12036
12036
|
clan_id?: string | undefined;
|
|
12037
12037
|
category_id?: string | undefined;
|
|
12038
12038
|
creator_id?: string | undefined;
|
|
12039
|
-
|
|
12039
|
+
parent_id?: string | undefined;
|
|
12040
12040
|
channel_id?: string | undefined;
|
|
12041
12041
|
channel_label?: string | undefined;
|
|
12042
12042
|
channel_type?: number | undefined;
|
|
@@ -12514,7 +12514,7 @@ export declare const UserChannelAdded: {
|
|
|
12514
12514
|
create<I extends {
|
|
12515
12515
|
channel_desc?: {
|
|
12516
12516
|
clan_id?: string | undefined;
|
|
12517
|
-
|
|
12517
|
+
parent_id?: string | undefined;
|
|
12518
12518
|
channel_id?: string | undefined;
|
|
12519
12519
|
category_id?: string | undefined;
|
|
12520
12520
|
category_name?: string | undefined;
|
|
@@ -12606,7 +12606,7 @@ export declare const UserChannelAdded: {
|
|
|
12606
12606
|
} & {
|
|
12607
12607
|
channel_desc?: ({
|
|
12608
12608
|
clan_id?: string | undefined;
|
|
12609
|
-
|
|
12609
|
+
parent_id?: string | undefined;
|
|
12610
12610
|
channel_id?: string | undefined;
|
|
12611
12611
|
category_id?: string | undefined;
|
|
12612
12612
|
category_name?: string | undefined;
|
|
@@ -12658,7 +12658,7 @@ export declare const UserChannelAdded: {
|
|
|
12658
12658
|
display_names?: string[] | undefined;
|
|
12659
12659
|
} & {
|
|
12660
12660
|
clan_id?: string | undefined;
|
|
12661
|
-
|
|
12661
|
+
parent_id?: string | undefined;
|
|
12662
12662
|
channel_id?: string | undefined;
|
|
12663
12663
|
category_id?: string | undefined;
|
|
12664
12664
|
category_name?: string | undefined;
|
|
@@ -12859,7 +12859,7 @@ export declare const UserChannelAdded: {
|
|
|
12859
12859
|
fromPartial<I_1 extends {
|
|
12860
12860
|
channel_desc?: {
|
|
12861
12861
|
clan_id?: string | undefined;
|
|
12862
|
-
|
|
12862
|
+
parent_id?: string | undefined;
|
|
12863
12863
|
channel_id?: string | undefined;
|
|
12864
12864
|
category_id?: string | undefined;
|
|
12865
12865
|
category_name?: string | undefined;
|
|
@@ -12951,7 +12951,7 @@ export declare const UserChannelAdded: {
|
|
|
12951
12951
|
} & {
|
|
12952
12952
|
channel_desc?: ({
|
|
12953
12953
|
clan_id?: string | undefined;
|
|
12954
|
-
|
|
12954
|
+
parent_id?: string | undefined;
|
|
12955
12955
|
channel_id?: string | undefined;
|
|
12956
12956
|
category_id?: string | undefined;
|
|
12957
12957
|
category_name?: string | undefined;
|
|
@@ -13003,7 +13003,7 @@ export declare const UserChannelAdded: {
|
|
|
13003
13003
|
display_names?: string[] | undefined;
|
|
13004
13004
|
} & {
|
|
13005
13005
|
clan_id?: string | undefined;
|
|
13006
|
-
|
|
13006
|
+
parent_id?: string | undefined;
|
|
13007
13007
|
channel_id?: string | undefined;
|
|
13008
13008
|
category_id?: string | undefined;
|
|
13009
13009
|
category_name?: string | undefined;
|