mezon-js-protobuf 1.5.9 → 1.5.11
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/mezon-js-protobuf/rtapi/realtime.d.ts +691 -230
- package/dist/mezon-js-protobuf.cjs.js +505 -70
- package/dist/mezon-js-protobuf.esm.mjs +505 -70
- package/package.json +1 -1
- package/rtapi/realtime.ts +686 -74
|
@@ -95,6 +95,14 @@ export interface Envelope {
|
|
|
95
95
|
channel_desc_list_event?: ChannelDescListEvent | undefined;
|
|
96
96
|
/** list channel hastag */
|
|
97
97
|
hashtag_dm_list_event?: HashtagDmListEvent | undefined;
|
|
98
|
+
/** set notification user channel. */
|
|
99
|
+
notification_channel_setting_event?: NotificationChannelSettingEvent | undefined;
|
|
100
|
+
/** notification selected */
|
|
101
|
+
notification_category_setting_event?: NotificationCategorySettingEvent | undefined;
|
|
102
|
+
/** notification selected */
|
|
103
|
+
notification_clan_setting_event?: NotificationClanSettingEvent | undefined;
|
|
104
|
+
/** */
|
|
105
|
+
notifi_react_message_event?: NotifiReactMessageEvent | undefined;
|
|
98
106
|
}
|
|
99
107
|
/** A list of Channel */
|
|
100
108
|
export interface HashtagDmListEvent {
|
|
@@ -121,6 +129,8 @@ export interface HashtagDm {
|
|
|
121
129
|
type: number;
|
|
122
130
|
/** */
|
|
123
131
|
channel_private: number;
|
|
132
|
+
/** */
|
|
133
|
+
parrent_id: string;
|
|
124
134
|
}
|
|
125
135
|
export interface ChannelDescListEvent {
|
|
126
136
|
/** A list of channel. */
|
|
@@ -138,20 +148,12 @@ export interface ChannelDescription {
|
|
|
138
148
|
channel_label: string;
|
|
139
149
|
/** The channel private */
|
|
140
150
|
channel_private: number;
|
|
141
|
-
/** The channel avatar */
|
|
142
|
-
channel_avatar: string[];
|
|
143
|
-
/** The user id */
|
|
144
|
-
user_id: string[];
|
|
145
|
-
/** status */
|
|
146
|
-
status: number;
|
|
147
151
|
/** meeting code */
|
|
148
152
|
meeting_code: string;
|
|
149
|
-
/** the usernames */
|
|
150
|
-
usernames: string;
|
|
151
153
|
/** */
|
|
152
154
|
clan_name: string;
|
|
153
155
|
/** */
|
|
154
|
-
|
|
156
|
+
parrent_id: string;
|
|
155
157
|
}
|
|
156
158
|
export interface StrickerListedEvent {
|
|
157
159
|
clan_id: string;
|
|
@@ -789,7 +791,56 @@ export interface FCMTokens {
|
|
|
789
791
|
token_id: string;
|
|
790
792
|
}
|
|
791
793
|
export interface ClanNameExistedEvent {
|
|
794
|
+
/** clan name */
|
|
792
795
|
clan_name: string;
|
|
796
|
+
/** is exist */
|
|
797
|
+
exist: boolean;
|
|
798
|
+
}
|
|
799
|
+
export interface NotificationChannelSettingEvent {
|
|
800
|
+
channel_id: string;
|
|
801
|
+
notification_user_channel: NotificationUserChannel | undefined;
|
|
802
|
+
}
|
|
803
|
+
/** Notification channel */
|
|
804
|
+
export interface NotificationUserChannel {
|
|
805
|
+
/** Notification id */
|
|
806
|
+
id: string;
|
|
807
|
+
/** */
|
|
808
|
+
notification_setting_type: number;
|
|
809
|
+
/** */
|
|
810
|
+
time_mute: Date | undefined;
|
|
811
|
+
/** */
|
|
812
|
+
active: number;
|
|
813
|
+
}
|
|
814
|
+
/** Notification channel */
|
|
815
|
+
export interface NotificationCategorySettingEvent {
|
|
816
|
+
category_id: string;
|
|
817
|
+
notification_user_channel: NotificationUserChannel | undefined;
|
|
818
|
+
}
|
|
819
|
+
/** Notification setting record */
|
|
820
|
+
export interface NotificationClanSettingEvent {
|
|
821
|
+
clan_id: string;
|
|
822
|
+
notification_setting: NotificationSetting | undefined;
|
|
823
|
+
}
|
|
824
|
+
/** Notification setting record */
|
|
825
|
+
export interface NotificationSetting {
|
|
826
|
+
/** Notification id */
|
|
827
|
+
id: string;
|
|
828
|
+
/** Notification title */
|
|
829
|
+
notification_setting_type: number;
|
|
830
|
+
}
|
|
831
|
+
/** Notification channel */
|
|
832
|
+
export interface NotifiReactMessageEvent {
|
|
833
|
+
channel_id: string;
|
|
834
|
+
notifi_react_message: NotifiReactMessage | undefined;
|
|
835
|
+
}
|
|
836
|
+
/** Notification channel */
|
|
837
|
+
export interface NotifiReactMessage {
|
|
838
|
+
/** Notification id */
|
|
839
|
+
id: string;
|
|
840
|
+
/** */
|
|
841
|
+
user_id: string;
|
|
842
|
+
/** */
|
|
843
|
+
channel_id: string;
|
|
793
844
|
}
|
|
794
845
|
export declare const Envelope: {
|
|
795
846
|
encode(message: Envelope, writer?: _m0.Writer): _m0.Writer;
|
|
@@ -1184,6 +1235,7 @@ export declare const Envelope: {
|
|
|
1184
1235
|
} | undefined;
|
|
1185
1236
|
clan_name_existed_event?: {
|
|
1186
1237
|
clan_name?: string | undefined;
|
|
1238
|
+
exist?: boolean | undefined;
|
|
1187
1239
|
} | undefined;
|
|
1188
1240
|
user_profile_updated_event?: {
|
|
1189
1241
|
user_id?: string | undefined;
|
|
@@ -1222,13 +1274,9 @@ export declare const Envelope: {
|
|
|
1222
1274
|
type?: number | undefined;
|
|
1223
1275
|
channel_label?: string | undefined;
|
|
1224
1276
|
channel_private?: number | undefined;
|
|
1225
|
-
channel_avatar?: string[] | undefined;
|
|
1226
|
-
user_id?: string[] | undefined;
|
|
1227
|
-
status?: number | undefined;
|
|
1228
1277
|
meeting_code?: string | undefined;
|
|
1229
|
-
usernames?: string | undefined;
|
|
1230
1278
|
clan_name?: string | undefined;
|
|
1231
|
-
|
|
1279
|
+
parrent_id?: string | undefined;
|
|
1232
1280
|
}[] | undefined;
|
|
1233
1281
|
} | undefined;
|
|
1234
1282
|
hashtag_dm_list_event?: {
|
|
@@ -1242,8 +1290,42 @@ export declare const Envelope: {
|
|
|
1242
1290
|
meeting_code?: string | undefined;
|
|
1243
1291
|
type?: number | undefined;
|
|
1244
1292
|
channel_private?: number | undefined;
|
|
1293
|
+
parrent_id?: string | undefined;
|
|
1245
1294
|
}[] | undefined;
|
|
1246
1295
|
} | undefined;
|
|
1296
|
+
notification_channel_setting_event?: {
|
|
1297
|
+
channel_id?: string | undefined;
|
|
1298
|
+
notification_user_channel?: {
|
|
1299
|
+
id?: string | undefined;
|
|
1300
|
+
notification_setting_type?: number | undefined;
|
|
1301
|
+
time_mute?: Date | undefined;
|
|
1302
|
+
active?: number | undefined;
|
|
1303
|
+
} | undefined;
|
|
1304
|
+
} | undefined;
|
|
1305
|
+
notification_category_setting_event?: {
|
|
1306
|
+
category_id?: string | undefined;
|
|
1307
|
+
notification_user_channel?: {
|
|
1308
|
+
id?: string | undefined;
|
|
1309
|
+
notification_setting_type?: number | undefined;
|
|
1310
|
+
time_mute?: Date | undefined;
|
|
1311
|
+
active?: number | undefined;
|
|
1312
|
+
} | undefined;
|
|
1313
|
+
} | undefined;
|
|
1314
|
+
notification_clan_setting_event?: {
|
|
1315
|
+
clan_id?: string | undefined;
|
|
1316
|
+
notification_setting?: {
|
|
1317
|
+
id?: string | undefined;
|
|
1318
|
+
notification_setting_type?: number | undefined;
|
|
1319
|
+
} | undefined;
|
|
1320
|
+
} | undefined;
|
|
1321
|
+
notifi_react_message_event?: {
|
|
1322
|
+
channel_id?: string | undefined;
|
|
1323
|
+
notifi_react_message?: {
|
|
1324
|
+
id?: string | undefined;
|
|
1325
|
+
user_id?: string | undefined;
|
|
1326
|
+
channel_id?: string | undefined;
|
|
1327
|
+
} | undefined;
|
|
1328
|
+
} | undefined;
|
|
1247
1329
|
} & {
|
|
1248
1330
|
cid?: string | undefined;
|
|
1249
1331
|
channel?: ({
|
|
@@ -2310,9 +2392,11 @@ export declare const Envelope: {
|
|
|
2310
2392
|
} & { [K_78 in Exclude<keyof I["clan_profile_updated_event"], keyof ClanProfileUpdatedEvent>]: never; }) | undefined;
|
|
2311
2393
|
clan_name_existed_event?: ({
|
|
2312
2394
|
clan_name?: string | undefined;
|
|
2395
|
+
exist?: boolean | undefined;
|
|
2313
2396
|
} & {
|
|
2314
2397
|
clan_name?: string | undefined;
|
|
2315
|
-
|
|
2398
|
+
exist?: boolean | undefined;
|
|
2399
|
+
} & { [K_79 in Exclude<keyof I["clan_name_existed_event"], keyof ClanNameExistedEvent>]: never; }) | undefined;
|
|
2316
2400
|
user_profile_updated_event?: ({
|
|
2317
2401
|
user_id?: string | undefined;
|
|
2318
2402
|
display_name?: string | undefined;
|
|
@@ -2419,13 +2503,9 @@ export declare const Envelope: {
|
|
|
2419
2503
|
type?: number | undefined;
|
|
2420
2504
|
channel_label?: string | undefined;
|
|
2421
2505
|
channel_private?: number | undefined;
|
|
2422
|
-
channel_avatar?: string[] | undefined;
|
|
2423
|
-
user_id?: string[] | undefined;
|
|
2424
|
-
status?: number | undefined;
|
|
2425
2506
|
meeting_code?: string | undefined;
|
|
2426
|
-
usernames?: string | undefined;
|
|
2427
2507
|
clan_name?: string | undefined;
|
|
2428
|
-
|
|
2508
|
+
parrent_id?: string | undefined;
|
|
2429
2509
|
}[] | undefined;
|
|
2430
2510
|
} & {
|
|
2431
2511
|
channeldesc?: ({
|
|
@@ -2434,54 +2514,38 @@ export declare const Envelope: {
|
|
|
2434
2514
|
type?: number | undefined;
|
|
2435
2515
|
channel_label?: string | undefined;
|
|
2436
2516
|
channel_private?: number | undefined;
|
|
2437
|
-
channel_avatar?: string[] | undefined;
|
|
2438
|
-
user_id?: string[] | undefined;
|
|
2439
|
-
status?: number | undefined;
|
|
2440
2517
|
meeting_code?: string | undefined;
|
|
2441
|
-
usernames?: string | undefined;
|
|
2442
2518
|
clan_name?: string | undefined;
|
|
2443
|
-
|
|
2519
|
+
parrent_id?: string | undefined;
|
|
2444
2520
|
}[] & ({
|
|
2445
2521
|
clan_id?: string | undefined;
|
|
2446
2522
|
channel_id?: string | undefined;
|
|
2447
2523
|
type?: number | undefined;
|
|
2448
2524
|
channel_label?: string | undefined;
|
|
2449
2525
|
channel_private?: number | undefined;
|
|
2450
|
-
channel_avatar?: string[] | undefined;
|
|
2451
|
-
user_id?: string[] | undefined;
|
|
2452
|
-
status?: number | undefined;
|
|
2453
2526
|
meeting_code?: string | undefined;
|
|
2454
|
-
usernames?: string | undefined;
|
|
2455
2527
|
clan_name?: string | undefined;
|
|
2456
|
-
|
|
2528
|
+
parrent_id?: string | undefined;
|
|
2457
2529
|
} & {
|
|
2458
2530
|
clan_id?: string | undefined;
|
|
2459
2531
|
channel_id?: string | undefined;
|
|
2460
2532
|
type?: number | undefined;
|
|
2461
2533
|
channel_label?: string | undefined;
|
|
2462
2534
|
channel_private?: number | undefined;
|
|
2463
|
-
channel_avatar?: (string[] & string[] & { [K_87 in Exclude<keyof I["channel_desc_list_event"]["channeldesc"][number]["channel_avatar"], keyof string[]>]: never; }) | undefined;
|
|
2464
|
-
user_id?: (string[] & string[] & { [K_88 in Exclude<keyof I["channel_desc_list_event"]["channeldesc"][number]["user_id"], keyof string[]>]: never; }) | undefined;
|
|
2465
|
-
status?: number | undefined;
|
|
2466
2535
|
meeting_code?: string | undefined;
|
|
2467
|
-
usernames?: string | undefined;
|
|
2468
2536
|
clan_name?: string | undefined;
|
|
2469
|
-
|
|
2470
|
-
} & { [
|
|
2537
|
+
parrent_id?: string | undefined;
|
|
2538
|
+
} & { [K_87 in Exclude<keyof I["channel_desc_list_event"]["channeldesc"][number], keyof ChannelDescription>]: never; })[] & { [K_88 in Exclude<keyof I["channel_desc_list_event"]["channeldesc"], keyof {
|
|
2471
2539
|
clan_id?: string | undefined;
|
|
2472
2540
|
channel_id?: string | undefined;
|
|
2473
2541
|
type?: number | undefined;
|
|
2474
2542
|
channel_label?: string | undefined;
|
|
2475
2543
|
channel_private?: number | undefined;
|
|
2476
|
-
channel_avatar?: string[] | undefined;
|
|
2477
|
-
user_id?: string[] | undefined;
|
|
2478
|
-
status?: number | undefined;
|
|
2479
2544
|
meeting_code?: string | undefined;
|
|
2480
|
-
usernames?: string | undefined;
|
|
2481
2545
|
clan_name?: string | undefined;
|
|
2482
|
-
|
|
2546
|
+
parrent_id?: string | undefined;
|
|
2483
2547
|
}[]>]: never; }) | undefined;
|
|
2484
|
-
} & { [
|
|
2548
|
+
} & { [K_89 in Exclude<keyof I["channel_desc_list_event"], "channeldesc">]: never; }) | undefined;
|
|
2485
2549
|
hashtag_dm_list_event?: ({
|
|
2486
2550
|
user_id?: string[] | undefined;
|
|
2487
2551
|
limit?: number | undefined;
|
|
@@ -2493,9 +2557,10 @@ export declare const Envelope: {
|
|
|
2493
2557
|
meeting_code?: string | undefined;
|
|
2494
2558
|
type?: number | undefined;
|
|
2495
2559
|
channel_private?: number | undefined;
|
|
2560
|
+
parrent_id?: string | undefined;
|
|
2496
2561
|
}[] | undefined;
|
|
2497
2562
|
} & {
|
|
2498
|
-
user_id?: (string[] & string[] & { [
|
|
2563
|
+
user_id?: (string[] & string[] & { [K_90 in Exclude<keyof I["hashtag_dm_list_event"]["user_id"], keyof string[]>]: never; }) | undefined;
|
|
2499
2564
|
limit?: number | undefined;
|
|
2500
2565
|
hashtag_dm?: ({
|
|
2501
2566
|
channel_id?: string | undefined;
|
|
@@ -2505,6 +2570,7 @@ export declare const Envelope: {
|
|
|
2505
2570
|
meeting_code?: string | undefined;
|
|
2506
2571
|
type?: number | undefined;
|
|
2507
2572
|
channel_private?: number | undefined;
|
|
2573
|
+
parrent_id?: string | undefined;
|
|
2508
2574
|
}[] & ({
|
|
2509
2575
|
channel_id?: string | undefined;
|
|
2510
2576
|
channel_label?: string | undefined;
|
|
@@ -2513,6 +2579,7 @@ export declare const Envelope: {
|
|
|
2513
2579
|
meeting_code?: string | undefined;
|
|
2514
2580
|
type?: number | undefined;
|
|
2515
2581
|
channel_private?: number | undefined;
|
|
2582
|
+
parrent_id?: string | undefined;
|
|
2516
2583
|
} & {
|
|
2517
2584
|
channel_id?: string | undefined;
|
|
2518
2585
|
channel_label?: string | undefined;
|
|
@@ -2521,7 +2588,8 @@ export declare const Envelope: {
|
|
|
2521
2588
|
meeting_code?: string | undefined;
|
|
2522
2589
|
type?: number | undefined;
|
|
2523
2590
|
channel_private?: number | undefined;
|
|
2524
|
-
|
|
2591
|
+
parrent_id?: string | undefined;
|
|
2592
|
+
} & { [K_91 in Exclude<keyof I["hashtag_dm_list_event"]["hashtag_dm"][number], keyof HashtagDm>]: never; })[] & { [K_92 in Exclude<keyof I["hashtag_dm_list_event"]["hashtag_dm"], keyof {
|
|
2525
2593
|
channel_id?: string | undefined;
|
|
2526
2594
|
channel_label?: string | undefined;
|
|
2527
2595
|
clan_id?: string | undefined;
|
|
@@ -2529,9 +2597,89 @@ export declare const Envelope: {
|
|
|
2529
2597
|
meeting_code?: string | undefined;
|
|
2530
2598
|
type?: number | undefined;
|
|
2531
2599
|
channel_private?: number | undefined;
|
|
2600
|
+
parrent_id?: string | undefined;
|
|
2532
2601
|
}[]>]: never; }) | undefined;
|
|
2533
|
-
} & { [
|
|
2534
|
-
|
|
2602
|
+
} & { [K_93 in Exclude<keyof I["hashtag_dm_list_event"], keyof HashtagDmListEvent>]: never; }) | undefined;
|
|
2603
|
+
notification_channel_setting_event?: ({
|
|
2604
|
+
channel_id?: string | undefined;
|
|
2605
|
+
notification_user_channel?: {
|
|
2606
|
+
id?: string | undefined;
|
|
2607
|
+
notification_setting_type?: number | undefined;
|
|
2608
|
+
time_mute?: Date | undefined;
|
|
2609
|
+
active?: number | undefined;
|
|
2610
|
+
} | undefined;
|
|
2611
|
+
} & {
|
|
2612
|
+
channel_id?: string | undefined;
|
|
2613
|
+
notification_user_channel?: ({
|
|
2614
|
+
id?: string | undefined;
|
|
2615
|
+
notification_setting_type?: number | undefined;
|
|
2616
|
+
time_mute?: Date | undefined;
|
|
2617
|
+
active?: number | undefined;
|
|
2618
|
+
} & {
|
|
2619
|
+
id?: string | undefined;
|
|
2620
|
+
notification_setting_type?: number | undefined;
|
|
2621
|
+
time_mute?: Date | undefined;
|
|
2622
|
+
active?: number | undefined;
|
|
2623
|
+
} & { [K_94 in Exclude<keyof I["notification_channel_setting_event"]["notification_user_channel"], keyof NotificationUserChannel>]: never; }) | undefined;
|
|
2624
|
+
} & { [K_95 in Exclude<keyof I["notification_channel_setting_event"], keyof NotificationChannelSettingEvent>]: never; }) | undefined;
|
|
2625
|
+
notification_category_setting_event?: ({
|
|
2626
|
+
category_id?: string | undefined;
|
|
2627
|
+
notification_user_channel?: {
|
|
2628
|
+
id?: string | undefined;
|
|
2629
|
+
notification_setting_type?: number | undefined;
|
|
2630
|
+
time_mute?: Date | undefined;
|
|
2631
|
+
active?: number | undefined;
|
|
2632
|
+
} | undefined;
|
|
2633
|
+
} & {
|
|
2634
|
+
category_id?: string | undefined;
|
|
2635
|
+
notification_user_channel?: ({
|
|
2636
|
+
id?: string | undefined;
|
|
2637
|
+
notification_setting_type?: number | undefined;
|
|
2638
|
+
time_mute?: Date | undefined;
|
|
2639
|
+
active?: number | undefined;
|
|
2640
|
+
} & {
|
|
2641
|
+
id?: string | undefined;
|
|
2642
|
+
notification_setting_type?: number | undefined;
|
|
2643
|
+
time_mute?: Date | undefined;
|
|
2644
|
+
active?: number | undefined;
|
|
2645
|
+
} & { [K_96 in Exclude<keyof I["notification_category_setting_event"]["notification_user_channel"], keyof NotificationUserChannel>]: never; }) | undefined;
|
|
2646
|
+
} & { [K_97 in Exclude<keyof I["notification_category_setting_event"], keyof NotificationCategorySettingEvent>]: never; }) | undefined;
|
|
2647
|
+
notification_clan_setting_event?: ({
|
|
2648
|
+
clan_id?: string | undefined;
|
|
2649
|
+
notification_setting?: {
|
|
2650
|
+
id?: string | undefined;
|
|
2651
|
+
notification_setting_type?: number | undefined;
|
|
2652
|
+
} | undefined;
|
|
2653
|
+
} & {
|
|
2654
|
+
clan_id?: string | undefined;
|
|
2655
|
+
notification_setting?: ({
|
|
2656
|
+
id?: string | undefined;
|
|
2657
|
+
notification_setting_type?: number | undefined;
|
|
2658
|
+
} & {
|
|
2659
|
+
id?: string | undefined;
|
|
2660
|
+
notification_setting_type?: number | undefined;
|
|
2661
|
+
} & { [K_98 in Exclude<keyof I["notification_clan_setting_event"]["notification_setting"], keyof NotificationSetting>]: never; }) | undefined;
|
|
2662
|
+
} & { [K_99 in Exclude<keyof I["notification_clan_setting_event"], keyof NotificationClanSettingEvent>]: never; }) | undefined;
|
|
2663
|
+
notifi_react_message_event?: ({
|
|
2664
|
+
channel_id?: string | undefined;
|
|
2665
|
+
notifi_react_message?: {
|
|
2666
|
+
id?: string | undefined;
|
|
2667
|
+
user_id?: string | undefined;
|
|
2668
|
+
channel_id?: string | undefined;
|
|
2669
|
+
} | undefined;
|
|
2670
|
+
} & {
|
|
2671
|
+
channel_id?: string | undefined;
|
|
2672
|
+
notifi_react_message?: ({
|
|
2673
|
+
id?: string | undefined;
|
|
2674
|
+
user_id?: string | undefined;
|
|
2675
|
+
channel_id?: string | undefined;
|
|
2676
|
+
} & {
|
|
2677
|
+
id?: string | undefined;
|
|
2678
|
+
user_id?: string | undefined;
|
|
2679
|
+
channel_id?: string | undefined;
|
|
2680
|
+
} & { [K_100 in Exclude<keyof I["notifi_react_message_event"]["notifi_react_message"], keyof NotifiReactMessage>]: never; }) | undefined;
|
|
2681
|
+
} & { [K_101 in Exclude<keyof I["notifi_react_message_event"], keyof NotifiReactMessageEvent>]: never; }) | undefined;
|
|
2682
|
+
} & { [K_102 in Exclude<keyof I, keyof Envelope>]: never; }>(base?: I | undefined): Envelope;
|
|
2535
2683
|
fromPartial<I_1 extends {
|
|
2536
2684
|
cid?: string | undefined;
|
|
2537
2685
|
channel?: {
|
|
@@ -2920,6 +3068,7 @@ export declare const Envelope: {
|
|
|
2920
3068
|
} | undefined;
|
|
2921
3069
|
clan_name_existed_event?: {
|
|
2922
3070
|
clan_name?: string | undefined;
|
|
3071
|
+
exist?: boolean | undefined;
|
|
2923
3072
|
} | undefined;
|
|
2924
3073
|
user_profile_updated_event?: {
|
|
2925
3074
|
user_id?: string | undefined;
|
|
@@ -2958,13 +3107,9 @@ export declare const Envelope: {
|
|
|
2958
3107
|
type?: number | undefined;
|
|
2959
3108
|
channel_label?: string | undefined;
|
|
2960
3109
|
channel_private?: number | undefined;
|
|
2961
|
-
channel_avatar?: string[] | undefined;
|
|
2962
|
-
user_id?: string[] | undefined;
|
|
2963
|
-
status?: number | undefined;
|
|
2964
3110
|
meeting_code?: string | undefined;
|
|
2965
|
-
usernames?: string | undefined;
|
|
2966
3111
|
clan_name?: string | undefined;
|
|
2967
|
-
|
|
3112
|
+
parrent_id?: string | undefined;
|
|
2968
3113
|
}[] | undefined;
|
|
2969
3114
|
} | undefined;
|
|
2970
3115
|
hashtag_dm_list_event?: {
|
|
@@ -2978,8 +3123,42 @@ export declare const Envelope: {
|
|
|
2978
3123
|
meeting_code?: string | undefined;
|
|
2979
3124
|
type?: number | undefined;
|
|
2980
3125
|
channel_private?: number | undefined;
|
|
3126
|
+
parrent_id?: string | undefined;
|
|
2981
3127
|
}[] | undefined;
|
|
2982
3128
|
} | undefined;
|
|
3129
|
+
notification_channel_setting_event?: {
|
|
3130
|
+
channel_id?: string | undefined;
|
|
3131
|
+
notification_user_channel?: {
|
|
3132
|
+
id?: string | undefined;
|
|
3133
|
+
notification_setting_type?: number | undefined;
|
|
3134
|
+
time_mute?: Date | undefined;
|
|
3135
|
+
active?: number | undefined;
|
|
3136
|
+
} | undefined;
|
|
3137
|
+
} | undefined;
|
|
3138
|
+
notification_category_setting_event?: {
|
|
3139
|
+
category_id?: string | undefined;
|
|
3140
|
+
notification_user_channel?: {
|
|
3141
|
+
id?: string | undefined;
|
|
3142
|
+
notification_setting_type?: number | undefined;
|
|
3143
|
+
time_mute?: Date | undefined;
|
|
3144
|
+
active?: number | undefined;
|
|
3145
|
+
} | undefined;
|
|
3146
|
+
} | undefined;
|
|
3147
|
+
notification_clan_setting_event?: {
|
|
3148
|
+
clan_id?: string | undefined;
|
|
3149
|
+
notification_setting?: {
|
|
3150
|
+
id?: string | undefined;
|
|
3151
|
+
notification_setting_type?: number | undefined;
|
|
3152
|
+
} | undefined;
|
|
3153
|
+
} | undefined;
|
|
3154
|
+
notifi_react_message_event?: {
|
|
3155
|
+
channel_id?: string | undefined;
|
|
3156
|
+
notifi_react_message?: {
|
|
3157
|
+
id?: string | undefined;
|
|
3158
|
+
user_id?: string | undefined;
|
|
3159
|
+
channel_id?: string | undefined;
|
|
3160
|
+
} | undefined;
|
|
3161
|
+
} | undefined;
|
|
2983
3162
|
} & {
|
|
2984
3163
|
cid?: string | undefined;
|
|
2985
3164
|
channel?: ({
|
|
@@ -3021,7 +3200,7 @@ export declare const Envelope: {
|
|
|
3021
3200
|
username?: string | undefined;
|
|
3022
3201
|
persistence?: boolean | undefined;
|
|
3023
3202
|
status?: string | undefined;
|
|
3024
|
-
} & { [
|
|
3203
|
+
} & { [K_103 in Exclude<keyof I_1["channel"]["presences"][number], keyof UserPresence>]: never; })[] & { [K_104 in Exclude<keyof I_1["channel"]["presences"], keyof {
|
|
3025
3204
|
user_id?: string | undefined;
|
|
3026
3205
|
session_id?: string | undefined;
|
|
3027
3206
|
username?: string | undefined;
|
|
@@ -3040,16 +3219,16 @@ export declare const Envelope: {
|
|
|
3040
3219
|
username?: string | undefined;
|
|
3041
3220
|
persistence?: boolean | undefined;
|
|
3042
3221
|
status?: string | undefined;
|
|
3043
|
-
} & { [
|
|
3222
|
+
} & { [K_105 in Exclude<keyof I_1["channel"]["self"], keyof UserPresence>]: never; }) | undefined;
|
|
3044
3223
|
chanel_label?: string | undefined;
|
|
3045
3224
|
clan_logo?: string | undefined;
|
|
3046
3225
|
category_name?: string | undefined;
|
|
3047
|
-
} & { [
|
|
3226
|
+
} & { [K_106 in Exclude<keyof I_1["channel"], keyof Channel>]: never; }) | undefined;
|
|
3048
3227
|
clan_join?: ({
|
|
3049
3228
|
clan_id?: string | undefined;
|
|
3050
3229
|
} & {
|
|
3051
3230
|
clan_id?: string | undefined;
|
|
3052
|
-
} & { [
|
|
3231
|
+
} & { [K_107 in Exclude<keyof I_1["clan_join"], "clan_id">]: never; }) | undefined;
|
|
3053
3232
|
channel_join?: ({
|
|
3054
3233
|
clan_id?: string | undefined;
|
|
3055
3234
|
channel_id?: string | undefined;
|
|
@@ -3058,7 +3237,7 @@ export declare const Envelope: {
|
|
|
3058
3237
|
clan_id?: string | undefined;
|
|
3059
3238
|
channel_id?: string | undefined;
|
|
3060
3239
|
channel_type?: number | undefined;
|
|
3061
|
-
} & { [
|
|
3240
|
+
} & { [K_108 in Exclude<keyof I_1["channel_join"], keyof ChannelJoin>]: never; }) | undefined;
|
|
3062
3241
|
channel_leave?: ({
|
|
3063
3242
|
clan_id?: string | undefined;
|
|
3064
3243
|
channel_id?: string | undefined;
|
|
@@ -3067,7 +3246,7 @@ export declare const Envelope: {
|
|
|
3067
3246
|
clan_id?: string | undefined;
|
|
3068
3247
|
channel_id?: string | undefined;
|
|
3069
3248
|
channel_type?: number | undefined;
|
|
3070
|
-
} & { [
|
|
3249
|
+
} & { [K_109 in Exclude<keyof I_1["channel_leave"], keyof ChannelLeave>]: never; }) | undefined;
|
|
3071
3250
|
channel_message?: ({
|
|
3072
3251
|
clan_id?: string | undefined;
|
|
3073
3252
|
channel_id?: string | undefined;
|
|
@@ -3116,7 +3295,7 @@ export declare const Envelope: {
|
|
|
3116
3295
|
referenced_message?: string | undefined;
|
|
3117
3296
|
create_time_ms?: number | undefined;
|
|
3118
3297
|
update_time_ms?: number | undefined;
|
|
3119
|
-
} & { [
|
|
3298
|
+
} & { [K_110 in Exclude<keyof I_1["channel_message"], keyof ChannelMessage>]: never; }) | undefined;
|
|
3120
3299
|
channel_message_ack?: ({
|
|
3121
3300
|
channel_id?: string | undefined;
|
|
3122
3301
|
message_id?: string | undefined;
|
|
@@ -3137,7 +3316,7 @@ export declare const Envelope: {
|
|
|
3137
3316
|
persistent?: boolean | undefined;
|
|
3138
3317
|
clan_logo?: string | undefined;
|
|
3139
3318
|
category_name?: string | undefined;
|
|
3140
|
-
} & { [
|
|
3319
|
+
} & { [K_111 in Exclude<keyof I_1["channel_message_ack"], keyof ChannelMessageAck>]: never; }) | undefined;
|
|
3141
3320
|
channel_message_send?: ({
|
|
3142
3321
|
clan_id?: string | undefined;
|
|
3143
3322
|
channel_id?: string | undefined;
|
|
@@ -3199,7 +3378,7 @@ export declare const Envelope: {
|
|
|
3199
3378
|
rolename?: string | undefined;
|
|
3200
3379
|
s?: number | undefined;
|
|
3201
3380
|
e?: number | undefined;
|
|
3202
|
-
} & { [
|
|
3381
|
+
} & { [K_112 in Exclude<keyof I_1["channel_message_send"]["mentions"][number], keyof MessageMention>]: never; })[] & { [K_113 in Exclude<keyof I_1["channel_message_send"]["mentions"], keyof {
|
|
3203
3382
|
user_id?: string | undefined;
|
|
3204
3383
|
username?: string | undefined;
|
|
3205
3384
|
role_id?: string | undefined;
|
|
@@ -3228,7 +3407,7 @@ export declare const Envelope: {
|
|
|
3228
3407
|
filetype?: string | undefined;
|
|
3229
3408
|
width?: number | undefined;
|
|
3230
3409
|
height?: number | undefined;
|
|
3231
|
-
} & { [
|
|
3410
|
+
} & { [K_114 in Exclude<keyof I_1["channel_message_send"]["attachments"][number], keyof MessageAttachment>]: never; })[] & { [K_115 in Exclude<keyof I_1["channel_message_send"]["attachments"], keyof {
|
|
3232
3411
|
filename?: string | undefined;
|
|
3233
3412
|
size?: number | undefined;
|
|
3234
3413
|
url?: string | undefined;
|
|
@@ -3269,7 +3448,7 @@ export declare const Envelope: {
|
|
|
3269
3448
|
content?: string | undefined;
|
|
3270
3449
|
has_attachment?: boolean | undefined;
|
|
3271
3450
|
ref_type?: number | undefined;
|
|
3272
|
-
} & { [
|
|
3451
|
+
} & { [K_116 in Exclude<keyof I_1["channel_message_send"]["references"][number], keyof MessageRef>]: never; })[] & { [K_117 in Exclude<keyof I_1["channel_message_send"]["references"], keyof {
|
|
3273
3452
|
message_id?: string | undefined;
|
|
3274
3453
|
message_ref_id?: string | undefined;
|
|
3275
3454
|
message_sender_id?: string | undefined;
|
|
@@ -3285,7 +3464,7 @@ export declare const Envelope: {
|
|
|
3285
3464
|
anonymous_message?: boolean | undefined;
|
|
3286
3465
|
mention_everyone?: boolean | undefined;
|
|
3287
3466
|
avatar?: string | undefined;
|
|
3288
|
-
} & { [
|
|
3467
|
+
} & { [K_118 in Exclude<keyof I_1["channel_message_send"], keyof ChannelMessageSend>]: never; }) | undefined;
|
|
3289
3468
|
channel_message_update?: ({
|
|
3290
3469
|
clan_id?: string | undefined;
|
|
3291
3470
|
channel_id?: string | undefined;
|
|
@@ -3334,7 +3513,7 @@ export declare const Envelope: {
|
|
|
3334
3513
|
rolename?: string | undefined;
|
|
3335
3514
|
s?: number | undefined;
|
|
3336
3515
|
e?: number | undefined;
|
|
3337
|
-
} & { [
|
|
3516
|
+
} & { [K_119 in Exclude<keyof I_1["channel_message_update"]["mentions"][number], keyof MessageMention>]: never; })[] & { [K_120 in Exclude<keyof I_1["channel_message_update"]["mentions"], keyof {
|
|
3338
3517
|
user_id?: string | undefined;
|
|
3339
3518
|
username?: string | undefined;
|
|
3340
3519
|
role_id?: string | undefined;
|
|
@@ -3363,7 +3542,7 @@ export declare const Envelope: {
|
|
|
3363
3542
|
filetype?: string | undefined;
|
|
3364
3543
|
width?: number | undefined;
|
|
3365
3544
|
height?: number | undefined;
|
|
3366
|
-
} & { [
|
|
3545
|
+
} & { [K_121 in Exclude<keyof I_1["channel_message_update"]["attachments"][number], keyof MessageAttachment>]: never; })[] & { [K_122 in Exclude<keyof I_1["channel_message_update"]["attachments"], keyof {
|
|
3367
3546
|
filename?: string | undefined;
|
|
3368
3547
|
size?: number | undefined;
|
|
3369
3548
|
url?: string | undefined;
|
|
@@ -3372,7 +3551,7 @@ export declare const Envelope: {
|
|
|
3372
3551
|
height?: number | undefined;
|
|
3373
3552
|
}[]>]: never; }) | undefined;
|
|
3374
3553
|
mode?: number | undefined;
|
|
3375
|
-
} & { [
|
|
3554
|
+
} & { [K_123 in Exclude<keyof I_1["channel_message_update"], keyof ChannelMessageUpdate>]: never; }) | undefined;
|
|
3376
3555
|
channel_message_remove?: ({
|
|
3377
3556
|
clan_id?: string | undefined;
|
|
3378
3557
|
channel_id?: string | undefined;
|
|
@@ -3383,7 +3562,7 @@ export declare const Envelope: {
|
|
|
3383
3562
|
channel_id?: string | undefined;
|
|
3384
3563
|
message_id?: string | undefined;
|
|
3385
3564
|
mode?: number | undefined;
|
|
3386
|
-
} & { [
|
|
3565
|
+
} & { [K_124 in Exclude<keyof I_1["channel_message_remove"], keyof ChannelMessageRemove>]: never; }) | undefined;
|
|
3387
3566
|
channel_presence_event?: ({
|
|
3388
3567
|
channel_id?: string | undefined;
|
|
3389
3568
|
joins?: {
|
|
@@ -3423,7 +3602,7 @@ export declare const Envelope: {
|
|
|
3423
3602
|
username?: string | undefined;
|
|
3424
3603
|
persistence?: boolean | undefined;
|
|
3425
3604
|
status?: string | undefined;
|
|
3426
|
-
} & { [
|
|
3605
|
+
} & { [K_125 in Exclude<keyof I_1["channel_presence_event"]["joins"][number], keyof UserPresence>]: never; })[] & { [K_126 in Exclude<keyof I_1["channel_presence_event"]["joins"], keyof {
|
|
3427
3606
|
user_id?: string | undefined;
|
|
3428
3607
|
session_id?: string | undefined;
|
|
3429
3608
|
username?: string | undefined;
|
|
@@ -3448,7 +3627,7 @@ export declare const Envelope: {
|
|
|
3448
3627
|
username?: string | undefined;
|
|
3449
3628
|
persistence?: boolean | undefined;
|
|
3450
3629
|
status?: string | undefined;
|
|
3451
|
-
} & { [
|
|
3630
|
+
} & { [K_127 in Exclude<keyof I_1["channel_presence_event"]["leaves"][number], keyof UserPresence>]: never; })[] & { [K_128 in Exclude<keyof I_1["channel_presence_event"]["leaves"], keyof {
|
|
3452
3631
|
user_id?: string | undefined;
|
|
3453
3632
|
session_id?: string | undefined;
|
|
3454
3633
|
username?: string | undefined;
|
|
@@ -3458,7 +3637,7 @@ export declare const Envelope: {
|
|
|
3458
3637
|
clan_logo?: string | undefined;
|
|
3459
3638
|
category_name?: string | undefined;
|
|
3460
3639
|
mode?: number | undefined;
|
|
3461
|
-
} & { [
|
|
3640
|
+
} & { [K_129 in Exclude<keyof I_1["channel_presence_event"], keyof ChannelPresenceEvent>]: never; }) | undefined;
|
|
3462
3641
|
error?: ({
|
|
3463
3642
|
code?: number | undefined;
|
|
3464
3643
|
message?: string | undefined;
|
|
@@ -3472,8 +3651,8 @@ export declare const Envelope: {
|
|
|
3472
3651
|
[x: string]: string | undefined;
|
|
3473
3652
|
} & {
|
|
3474
3653
|
[x: string]: string | undefined;
|
|
3475
|
-
} & { [
|
|
3476
|
-
} & { [
|
|
3654
|
+
} & { [K_130 in Exclude<keyof I_1["error"]["context"], string | number>]: never; }) | undefined;
|
|
3655
|
+
} & { [K_131 in Exclude<keyof I_1["error"], keyof Error>]: never; }) | undefined;
|
|
3477
3656
|
notifications?: ({
|
|
3478
3657
|
notifications?: {
|
|
3479
3658
|
id?: string | undefined;
|
|
@@ -3525,7 +3704,7 @@ export declare const Envelope: {
|
|
|
3525
3704
|
channel_id?: string | undefined;
|
|
3526
3705
|
channel_type?: number | undefined;
|
|
3527
3706
|
avatar_url?: string | undefined;
|
|
3528
|
-
} & { [
|
|
3707
|
+
} & { [K_132 in Exclude<keyof I_1["notifications"]["notifications"][number], keyof Notification>]: never; })[] & { [K_133 in Exclude<keyof I_1["notifications"]["notifications"], keyof {
|
|
3529
3708
|
id?: string | undefined;
|
|
3530
3709
|
subject?: string | undefined;
|
|
3531
3710
|
content?: string | undefined;
|
|
@@ -3538,7 +3717,7 @@ export declare const Envelope: {
|
|
|
3538
3717
|
channel_type?: number | undefined;
|
|
3539
3718
|
avatar_url?: string | undefined;
|
|
3540
3719
|
}[]>]: never; }) | undefined;
|
|
3541
|
-
} & { [
|
|
3720
|
+
} & { [K_134 in Exclude<keyof I_1["notifications"], "notifications">]: never; }) | undefined;
|
|
3542
3721
|
rpc?: ({
|
|
3543
3722
|
id?: string | undefined;
|
|
3544
3723
|
payload?: string | undefined;
|
|
@@ -3547,7 +3726,7 @@ export declare const Envelope: {
|
|
|
3547
3726
|
id?: string | undefined;
|
|
3548
3727
|
payload?: string | undefined;
|
|
3549
3728
|
http_key?: string | undefined;
|
|
3550
|
-
} & { [
|
|
3729
|
+
} & { [K_135 in Exclude<keyof I_1["rpc"], keyof Rpc>]: never; }) | undefined;
|
|
3551
3730
|
status?: ({
|
|
3552
3731
|
presences?: {
|
|
3553
3732
|
user_id?: string | undefined;
|
|
@@ -3575,21 +3754,21 @@ export declare const Envelope: {
|
|
|
3575
3754
|
username?: string | undefined;
|
|
3576
3755
|
persistence?: boolean | undefined;
|
|
3577
3756
|
status?: string | undefined;
|
|
3578
|
-
} & { [
|
|
3757
|
+
} & { [K_136 in Exclude<keyof I_1["status"]["presences"][number], keyof UserPresence>]: never; })[] & { [K_137 in Exclude<keyof I_1["status"]["presences"], keyof {
|
|
3579
3758
|
user_id?: string | undefined;
|
|
3580
3759
|
session_id?: string | undefined;
|
|
3581
3760
|
username?: string | undefined;
|
|
3582
3761
|
persistence?: boolean | undefined;
|
|
3583
3762
|
status?: string | undefined;
|
|
3584
3763
|
}[]>]: never; }) | undefined;
|
|
3585
|
-
} & { [
|
|
3764
|
+
} & { [K_138 in Exclude<keyof I_1["status"], "presences">]: never; }) | undefined;
|
|
3586
3765
|
status_follow?: ({
|
|
3587
3766
|
user_ids?: string[] | undefined;
|
|
3588
3767
|
usernames?: string[] | undefined;
|
|
3589
3768
|
} & {
|
|
3590
|
-
user_ids?: (string[] & string[] & { [
|
|
3591
|
-
usernames?: (string[] & string[] & { [
|
|
3592
|
-
} & { [
|
|
3769
|
+
user_ids?: (string[] & string[] & { [K_139 in Exclude<keyof I_1["status_follow"]["user_ids"], keyof string[]>]: never; }) | undefined;
|
|
3770
|
+
usernames?: (string[] & string[] & { [K_140 in Exclude<keyof I_1["status_follow"]["usernames"], keyof string[]>]: never; }) | undefined;
|
|
3771
|
+
} & { [K_141 in Exclude<keyof I_1["status_follow"], keyof StatusFollow>]: never; }) | undefined;
|
|
3593
3772
|
status_presence_event?: ({
|
|
3594
3773
|
joins?: {
|
|
3595
3774
|
user_id?: string | undefined;
|
|
@@ -3624,7 +3803,7 @@ export declare const Envelope: {
|
|
|
3624
3803
|
username?: string | undefined;
|
|
3625
3804
|
persistence?: boolean | undefined;
|
|
3626
3805
|
status?: string | undefined;
|
|
3627
|
-
} & { [
|
|
3806
|
+
} & { [K_142 in Exclude<keyof I_1["status_presence_event"]["joins"][number], keyof UserPresence>]: never; })[] & { [K_143 in Exclude<keyof I_1["status_presence_event"]["joins"], keyof {
|
|
3628
3807
|
user_id?: string | undefined;
|
|
3629
3808
|
session_id?: string | undefined;
|
|
3630
3809
|
username?: string | undefined;
|
|
@@ -3649,24 +3828,24 @@ export declare const Envelope: {
|
|
|
3649
3828
|
username?: string | undefined;
|
|
3650
3829
|
persistence?: boolean | undefined;
|
|
3651
3830
|
status?: string | undefined;
|
|
3652
|
-
} & { [
|
|
3831
|
+
} & { [K_144 in Exclude<keyof I_1["status_presence_event"]["leaves"][number], keyof UserPresence>]: never; })[] & { [K_145 in Exclude<keyof I_1["status_presence_event"]["leaves"], keyof {
|
|
3653
3832
|
user_id?: string | undefined;
|
|
3654
3833
|
session_id?: string | undefined;
|
|
3655
3834
|
username?: string | undefined;
|
|
3656
3835
|
persistence?: boolean | undefined;
|
|
3657
3836
|
status?: string | undefined;
|
|
3658
3837
|
}[]>]: never; }) | undefined;
|
|
3659
|
-
} & { [
|
|
3838
|
+
} & { [K_146 in Exclude<keyof I_1["status_presence_event"], keyof StatusPresenceEvent>]: never; }) | undefined;
|
|
3660
3839
|
status_unfollow?: ({
|
|
3661
3840
|
user_ids?: string[] | undefined;
|
|
3662
3841
|
} & {
|
|
3663
|
-
user_ids?: (string[] & string[] & { [
|
|
3664
|
-
} & { [
|
|
3842
|
+
user_ids?: (string[] & string[] & { [K_147 in Exclude<keyof I_1["status_unfollow"]["user_ids"], keyof string[]>]: never; }) | undefined;
|
|
3843
|
+
} & { [K_148 in Exclude<keyof I_1["status_unfollow"], "user_ids">]: never; }) | undefined;
|
|
3665
3844
|
status_update?: ({
|
|
3666
3845
|
status?: string | undefined;
|
|
3667
3846
|
} & {
|
|
3668
3847
|
status?: string | undefined;
|
|
3669
|
-
} & { [
|
|
3848
|
+
} & { [K_149 in Exclude<keyof I_1["status_update"], "status">]: never; }) | undefined;
|
|
3670
3849
|
stream_data?: ({
|
|
3671
3850
|
stream?: {
|
|
3672
3851
|
mode?: number | undefined;
|
|
@@ -3694,7 +3873,7 @@ export declare const Envelope: {
|
|
|
3694
3873
|
channel_id?: string | undefined;
|
|
3695
3874
|
clan_id?: string | undefined;
|
|
3696
3875
|
label?: string | undefined;
|
|
3697
|
-
} & { [
|
|
3876
|
+
} & { [K_150 in Exclude<keyof I_1["stream_data"]["stream"], keyof Stream>]: never; }) | undefined;
|
|
3698
3877
|
sender?: ({
|
|
3699
3878
|
user_id?: string | undefined;
|
|
3700
3879
|
session_id?: string | undefined;
|
|
@@ -3707,10 +3886,10 @@ export declare const Envelope: {
|
|
|
3707
3886
|
username?: string | undefined;
|
|
3708
3887
|
persistence?: boolean | undefined;
|
|
3709
3888
|
status?: string | undefined;
|
|
3710
|
-
} & { [
|
|
3889
|
+
} & { [K_151 in Exclude<keyof I_1["stream_data"]["sender"], keyof UserPresence>]: never; }) | undefined;
|
|
3711
3890
|
data?: string | undefined;
|
|
3712
3891
|
reliable?: boolean | undefined;
|
|
3713
|
-
} & { [
|
|
3892
|
+
} & { [K_152 in Exclude<keyof I_1["stream_data"], keyof StreamData>]: never; }) | undefined;
|
|
3714
3893
|
stream_presence_event?: ({
|
|
3715
3894
|
stream?: {
|
|
3716
3895
|
mode?: number | undefined;
|
|
@@ -3743,7 +3922,7 @@ export declare const Envelope: {
|
|
|
3743
3922
|
channel_id?: string | undefined;
|
|
3744
3923
|
clan_id?: string | undefined;
|
|
3745
3924
|
label?: string | undefined;
|
|
3746
|
-
} & { [
|
|
3925
|
+
} & { [K_153 in Exclude<keyof I_1["stream_presence_event"]["stream"], keyof Stream>]: never; }) | undefined;
|
|
3747
3926
|
joins?: ({
|
|
3748
3927
|
user_id?: string | undefined;
|
|
3749
3928
|
session_id?: string | undefined;
|
|
@@ -3762,7 +3941,7 @@ export declare const Envelope: {
|
|
|
3762
3941
|
username?: string | undefined;
|
|
3763
3942
|
persistence?: boolean | undefined;
|
|
3764
3943
|
status?: string | undefined;
|
|
3765
|
-
} & { [
|
|
3944
|
+
} & { [K_154 in Exclude<keyof I_1["stream_presence_event"]["joins"][number], keyof UserPresence>]: never; })[] & { [K_155 in Exclude<keyof I_1["stream_presence_event"]["joins"], keyof {
|
|
3766
3945
|
user_id?: string | undefined;
|
|
3767
3946
|
session_id?: string | undefined;
|
|
3768
3947
|
username?: string | undefined;
|
|
@@ -3787,16 +3966,16 @@ export declare const Envelope: {
|
|
|
3787
3966
|
username?: string | undefined;
|
|
3788
3967
|
persistence?: boolean | undefined;
|
|
3789
3968
|
status?: string | undefined;
|
|
3790
|
-
} & { [
|
|
3969
|
+
} & { [K_156 in Exclude<keyof I_1["stream_presence_event"]["leaves"][number], keyof UserPresence>]: never; })[] & { [K_157 in Exclude<keyof I_1["stream_presence_event"]["leaves"], keyof {
|
|
3791
3970
|
user_id?: string | undefined;
|
|
3792
3971
|
session_id?: string | undefined;
|
|
3793
3972
|
username?: string | undefined;
|
|
3794
3973
|
persistence?: boolean | undefined;
|
|
3795
3974
|
status?: string | undefined;
|
|
3796
3975
|
}[]>]: never; }) | undefined;
|
|
3797
|
-
} & { [
|
|
3798
|
-
ping?: ({} & {} & { [
|
|
3799
|
-
pong?: ({} & {} & { [
|
|
3976
|
+
} & { [K_158 in Exclude<keyof I_1["stream_presence_event"], keyof StreamPresenceEvent>]: never; }) | undefined;
|
|
3977
|
+
ping?: ({} & {} & { [K_159 in Exclude<keyof I_1["ping"], never>]: never; }) | undefined;
|
|
3978
|
+
pong?: ({} & {} & { [K_160 in Exclude<keyof I_1["pong"], never>]: never; }) | undefined;
|
|
3800
3979
|
message_typing_event?: ({
|
|
3801
3980
|
clan_id?: string | undefined;
|
|
3802
3981
|
channel_id?: string | undefined;
|
|
@@ -3807,7 +3986,7 @@ export declare const Envelope: {
|
|
|
3807
3986
|
channel_id?: string | undefined;
|
|
3808
3987
|
sender_id?: string | undefined;
|
|
3809
3988
|
mode?: number | undefined;
|
|
3810
|
-
} & { [
|
|
3989
|
+
} & { [K_161 in Exclude<keyof I_1["message_typing_event"], keyof MessageTypingEvent>]: never; }) | undefined;
|
|
3811
3990
|
last_seen_message_event?: ({
|
|
3812
3991
|
channel_id?: string | undefined;
|
|
3813
3992
|
message_id?: string | undefined;
|
|
@@ -3818,7 +3997,7 @@ export declare const Envelope: {
|
|
|
3818
3997
|
message_id?: string | undefined;
|
|
3819
3998
|
mode?: number | undefined;
|
|
3820
3999
|
timestamp?: string | undefined;
|
|
3821
|
-
} & { [
|
|
4000
|
+
} & { [K_162 in Exclude<keyof I_1["last_seen_message_event"], keyof LastSeenMessageEvent>]: never; }) | undefined;
|
|
3822
4001
|
message_reaction_event?: ({
|
|
3823
4002
|
id?: string | undefined;
|
|
3824
4003
|
clan_id?: string | undefined;
|
|
@@ -3847,7 +4026,7 @@ export declare const Envelope: {
|
|
|
3847
4026
|
message_sender_id?: string | undefined;
|
|
3848
4027
|
count?: number | undefined;
|
|
3849
4028
|
mode?: number | undefined;
|
|
3850
|
-
} & { [
|
|
4029
|
+
} & { [K_163 in Exclude<keyof I_1["message_reaction_event"], keyof MessageReactionEvent>]: never; }) | undefined;
|
|
3851
4030
|
voice_joined_event?: ({
|
|
3852
4031
|
clan_id?: string | undefined;
|
|
3853
4032
|
clan_name?: string | undefined;
|
|
@@ -3866,7 +4045,7 @@ export declare const Envelope: {
|
|
|
3866
4045
|
voice_channel_label?: string | undefined;
|
|
3867
4046
|
voice_channel_id?: string | undefined;
|
|
3868
4047
|
last_screenshot?: string | undefined;
|
|
3869
|
-
} & { [
|
|
4048
|
+
} & { [K_164 in Exclude<keyof I_1["voice_joined_event"], keyof VoiceJoinedEvent>]: never; }) | undefined;
|
|
3870
4049
|
voice_leaved_event?: ({
|
|
3871
4050
|
id?: string | undefined;
|
|
3872
4051
|
clan_id?: string | undefined;
|
|
@@ -3877,7 +4056,7 @@ export declare const Envelope: {
|
|
|
3877
4056
|
clan_id?: string | undefined;
|
|
3878
4057
|
voice_channel_id?: string | undefined;
|
|
3879
4058
|
voice_user_id?: string | undefined;
|
|
3880
|
-
} & { [
|
|
4059
|
+
} & { [K_165 in Exclude<keyof I_1["voice_leaved_event"], keyof VoiceLeavedEvent>]: never; }) | undefined;
|
|
3881
4060
|
voice_started_event?: ({
|
|
3882
4061
|
id?: string | undefined;
|
|
3883
4062
|
clan_id?: string | undefined;
|
|
@@ -3886,7 +4065,7 @@ export declare const Envelope: {
|
|
|
3886
4065
|
id?: string | undefined;
|
|
3887
4066
|
clan_id?: string | undefined;
|
|
3888
4067
|
voice_channel_id?: string | undefined;
|
|
3889
|
-
} & { [
|
|
4068
|
+
} & { [K_166 in Exclude<keyof I_1["voice_started_event"], keyof VoiceStartedEvent>]: never; }) | undefined;
|
|
3890
4069
|
voice_ended_event?: ({
|
|
3891
4070
|
id?: string | undefined;
|
|
3892
4071
|
clan_id?: string | undefined;
|
|
@@ -3895,7 +4074,7 @@ export declare const Envelope: {
|
|
|
3895
4074
|
id?: string | undefined;
|
|
3896
4075
|
clan_id?: string | undefined;
|
|
3897
4076
|
voice_channel_id?: string | undefined;
|
|
3898
|
-
} & { [
|
|
4077
|
+
} & { [K_167 in Exclude<keyof I_1["voice_ended_event"], keyof VoiceEndedEvent>]: never; }) | undefined;
|
|
3899
4078
|
channel_created_event?: ({
|
|
3900
4079
|
clan_id?: string | undefined;
|
|
3901
4080
|
category_id?: string | undefined;
|
|
@@ -3916,7 +4095,7 @@ export declare const Envelope: {
|
|
|
3916
4095
|
channel_private?: number | undefined;
|
|
3917
4096
|
channel_type?: number | undefined;
|
|
3918
4097
|
status?: number | undefined;
|
|
3919
|
-
} & { [
|
|
4098
|
+
} & { [K_168 in Exclude<keyof I_1["channel_created_event"], keyof ChannelCreatedEvent>]: never; }) | undefined;
|
|
3920
4099
|
channel_deleted_event?: ({
|
|
3921
4100
|
clan_id?: string | undefined;
|
|
3922
4101
|
category_id?: string | undefined;
|
|
@@ -3929,7 +4108,7 @@ export declare const Envelope: {
|
|
|
3929
4108
|
parrent_id?: string | undefined;
|
|
3930
4109
|
channel_id?: string | undefined;
|
|
3931
4110
|
deletor?: string | undefined;
|
|
3932
|
-
} & { [
|
|
4111
|
+
} & { [K_169 in Exclude<keyof I_1["channel_deleted_event"], keyof ChannelDeletedEvent>]: never; }) | undefined;
|
|
3933
4112
|
channel_updated_event?: ({
|
|
3934
4113
|
clan_id?: string | undefined;
|
|
3935
4114
|
category_id?: string | undefined;
|
|
@@ -3948,7 +4127,7 @@ export declare const Envelope: {
|
|
|
3948
4127
|
channel_label?: string | undefined;
|
|
3949
4128
|
channel_type?: number | undefined;
|
|
3950
4129
|
status?: number | undefined;
|
|
3951
|
-
} & { [
|
|
4130
|
+
} & { [K_170 in Exclude<keyof I_1["channel_updated_event"], keyof ChannelUpdatedEvent>]: never; }) | undefined;
|
|
3952
4131
|
last_pin_message_event?: ({
|
|
3953
4132
|
clan_id?: string | undefined;
|
|
3954
4133
|
channel_id?: string | undefined;
|
|
@@ -3965,7 +4144,7 @@ export declare const Envelope: {
|
|
|
3965
4144
|
user_id?: string | undefined;
|
|
3966
4145
|
timestamp?: string | undefined;
|
|
3967
4146
|
operation?: number | undefined;
|
|
3968
|
-
} & { [
|
|
4147
|
+
} & { [K_171 in Exclude<keyof I_1["last_pin_message_event"], keyof LastPinMessageEvent>]: never; }) | undefined;
|
|
3969
4148
|
custom_status_event?: ({
|
|
3970
4149
|
clan_id?: string | undefined;
|
|
3971
4150
|
user_id?: string | undefined;
|
|
@@ -3976,7 +4155,7 @@ export declare const Envelope: {
|
|
|
3976
4155
|
user_id?: string | undefined;
|
|
3977
4156
|
username?: string | undefined;
|
|
3978
4157
|
status?: string | undefined;
|
|
3979
|
-
} & { [
|
|
4158
|
+
} & { [K_172 in Exclude<keyof I_1["custom_status_event"], keyof CustomStatusEvent>]: never; }) | undefined;
|
|
3980
4159
|
user_channel_added_event?: ({
|
|
3981
4160
|
channel_id?: string | undefined;
|
|
3982
4161
|
users?: {
|
|
@@ -4001,7 +4180,7 @@ export declare const Envelope: {
|
|
|
4001
4180
|
user_id?: string | undefined;
|
|
4002
4181
|
avatar?: string | undefined;
|
|
4003
4182
|
username?: string | undefined;
|
|
4004
|
-
} & { [
|
|
4183
|
+
} & { [K_173 in Exclude<keyof I_1["user_channel_added_event"]["users"][number], keyof AddUsers>]: never; })[] & { [K_174 in Exclude<keyof I_1["user_channel_added_event"]["users"], keyof {
|
|
4005
4184
|
user_id?: string | undefined;
|
|
4006
4185
|
avatar?: string | undefined;
|
|
4007
4186
|
username?: string | undefined;
|
|
@@ -4009,21 +4188,21 @@ export declare const Envelope: {
|
|
|
4009
4188
|
status?: string | undefined;
|
|
4010
4189
|
clan_id?: string | undefined;
|
|
4011
4190
|
channel_type?: number | undefined;
|
|
4012
|
-
} & { [
|
|
4191
|
+
} & { [K_175 in Exclude<keyof I_1["user_channel_added_event"], keyof UserChannelAdded>]: never; }) | undefined;
|
|
4013
4192
|
user_channel_removed_event?: ({
|
|
4014
4193
|
channel_id?: string | undefined;
|
|
4015
4194
|
user_ids?: string[] | undefined;
|
|
4016
4195
|
} & {
|
|
4017
4196
|
channel_id?: string | undefined;
|
|
4018
|
-
user_ids?: (string[] & string[] & { [
|
|
4019
|
-
} & { [
|
|
4197
|
+
user_ids?: (string[] & string[] & { [K_176 in Exclude<keyof I_1["user_channel_removed_event"]["user_ids"], keyof string[]>]: never; }) | undefined;
|
|
4198
|
+
} & { [K_177 in Exclude<keyof I_1["user_channel_removed_event"], keyof UserChannelRemoved>]: never; }) | undefined;
|
|
4020
4199
|
user_clan_removed_event?: ({
|
|
4021
4200
|
clan_id?: string | undefined;
|
|
4022
4201
|
user_ids?: string[] | undefined;
|
|
4023
4202
|
} & {
|
|
4024
4203
|
clan_id?: string | undefined;
|
|
4025
|
-
user_ids?: (string[] & string[] & { [
|
|
4026
|
-
} & { [
|
|
4204
|
+
user_ids?: (string[] & string[] & { [K_178 in Exclude<keyof I_1["user_clan_removed_event"]["user_ids"], keyof string[]>]: never; }) | undefined;
|
|
4205
|
+
} & { [K_179 in Exclude<keyof I_1["user_clan_removed_event"], keyof UserClanRemoved>]: never; }) | undefined;
|
|
4027
4206
|
clan_updated_event?: ({
|
|
4028
4207
|
clan_id?: string | undefined;
|
|
4029
4208
|
clan_name?: string | undefined;
|
|
@@ -4032,7 +4211,7 @@ export declare const Envelope: {
|
|
|
4032
4211
|
clan_id?: string | undefined;
|
|
4033
4212
|
clan_name?: string | undefined;
|
|
4034
4213
|
clan_logo?: string | undefined;
|
|
4035
|
-
} & { [
|
|
4214
|
+
} & { [K_180 in Exclude<keyof I_1["clan_updated_event"], keyof ClanUpdatedEvent>]: never; }) | undefined;
|
|
4036
4215
|
clan_profile_updated_event?: ({
|
|
4037
4216
|
user_id?: string | undefined;
|
|
4038
4217
|
clan_nick?: string | undefined;
|
|
@@ -4043,12 +4222,14 @@ export declare const Envelope: {
|
|
|
4043
4222
|
clan_nick?: string | undefined;
|
|
4044
4223
|
clan_avatar?: string | undefined;
|
|
4045
4224
|
clan_id?: string | undefined;
|
|
4046
|
-
} & { [
|
|
4225
|
+
} & { [K_181 in Exclude<keyof I_1["clan_profile_updated_event"], keyof ClanProfileUpdatedEvent>]: never; }) | undefined;
|
|
4047
4226
|
clan_name_existed_event?: ({
|
|
4048
4227
|
clan_name?: string | undefined;
|
|
4228
|
+
exist?: boolean | undefined;
|
|
4049
4229
|
} & {
|
|
4050
4230
|
clan_name?: string | undefined;
|
|
4051
|
-
|
|
4231
|
+
exist?: boolean | undefined;
|
|
4232
|
+
} & { [K_182 in Exclude<keyof I_1["clan_name_existed_event"], keyof ClanNameExistedEvent>]: never; }) | undefined;
|
|
4052
4233
|
user_profile_updated_event?: ({
|
|
4053
4234
|
user_id?: string | undefined;
|
|
4054
4235
|
display_name?: string | undefined;
|
|
@@ -4063,7 +4244,7 @@ export declare const Envelope: {
|
|
|
4063
4244
|
about_me?: string | undefined;
|
|
4064
4245
|
channel_id?: string | undefined;
|
|
4065
4246
|
clan_id?: string | undefined;
|
|
4066
|
-
} & { [
|
|
4247
|
+
} & { [K_183 in Exclude<keyof I_1["user_profile_updated_event"], keyof UserProfileUpdatedEvent>]: never; }) | undefined;
|
|
4067
4248
|
emojis_listed_event?: ({
|
|
4068
4249
|
clan_id?: string | undefined;
|
|
4069
4250
|
emoji_list?: {
|
|
@@ -4093,14 +4274,14 @@ export declare const Envelope: {
|
|
|
4093
4274
|
shortname?: string | undefined;
|
|
4094
4275
|
category?: string | undefined;
|
|
4095
4276
|
creator_id?: string | undefined;
|
|
4096
|
-
} & { [
|
|
4277
|
+
} & { [K_184 in Exclude<keyof I_1["emojis_listed_event"]["emoji_list"][number], keyof ClanEmoji>]: never; })[] & { [K_185 in Exclude<keyof I_1["emojis_listed_event"]["emoji_list"], keyof {
|
|
4097
4278
|
id?: string | undefined;
|
|
4098
4279
|
src?: string | undefined;
|
|
4099
4280
|
shortname?: string | undefined;
|
|
4100
4281
|
category?: string | undefined;
|
|
4101
4282
|
creator_id?: string | undefined;
|
|
4102
4283
|
}[]>]: never; }) | undefined;
|
|
4103
|
-
} & { [
|
|
4284
|
+
} & { [K_186 in Exclude<keyof I_1["emojis_listed_event"], keyof EmojiListedEvent>]: never; }) | undefined;
|
|
4104
4285
|
sticker_listed_event?: ({
|
|
4105
4286
|
clan_id?: string | undefined;
|
|
4106
4287
|
stickers?: {
|
|
@@ -4138,7 +4319,7 @@ export declare const Envelope: {
|
|
|
4138
4319
|
creator_id?: string | undefined;
|
|
4139
4320
|
create_time?: Date | undefined;
|
|
4140
4321
|
clan_id?: string | undefined;
|
|
4141
|
-
} & { [
|
|
4322
|
+
} & { [K_187 in Exclude<keyof I_1["sticker_listed_event"]["stickers"][number], keyof ClanSticker>]: never; })[] & { [K_188 in Exclude<keyof I_1["sticker_listed_event"]["stickers"], keyof {
|
|
4142
4323
|
id?: string | undefined;
|
|
4143
4324
|
source?: string | undefined;
|
|
4144
4325
|
shortname?: string | undefined;
|
|
@@ -4147,7 +4328,7 @@ export declare const Envelope: {
|
|
|
4147
4328
|
create_time?: Date | undefined;
|
|
4148
4329
|
clan_id?: string | undefined;
|
|
4149
4330
|
}[]>]: never; }) | undefined;
|
|
4150
|
-
} & { [
|
|
4331
|
+
} & { [K_189 in Exclude<keyof I_1["sticker_listed_event"], keyof StrickerListedEvent>]: never; }) | undefined;
|
|
4151
4332
|
channel_desc_list_event?: ({
|
|
4152
4333
|
channeldesc?: {
|
|
4153
4334
|
clan_id?: string | undefined;
|
|
@@ -4155,13 +4336,9 @@ export declare const Envelope: {
|
|
|
4155
4336
|
type?: number | undefined;
|
|
4156
4337
|
channel_label?: string | undefined;
|
|
4157
4338
|
channel_private?: number | undefined;
|
|
4158
|
-
channel_avatar?: string[] | undefined;
|
|
4159
|
-
user_id?: string[] | undefined;
|
|
4160
|
-
status?: number | undefined;
|
|
4161
4339
|
meeting_code?: string | undefined;
|
|
4162
|
-
usernames?: string | undefined;
|
|
4163
4340
|
clan_name?: string | undefined;
|
|
4164
|
-
|
|
4341
|
+
parrent_id?: string | undefined;
|
|
4165
4342
|
}[] | undefined;
|
|
4166
4343
|
} & {
|
|
4167
4344
|
channeldesc?: ({
|
|
@@ -4170,54 +4347,38 @@ export declare const Envelope: {
|
|
|
4170
4347
|
type?: number | undefined;
|
|
4171
4348
|
channel_label?: string | undefined;
|
|
4172
4349
|
channel_private?: number | undefined;
|
|
4173
|
-
channel_avatar?: string[] | undefined;
|
|
4174
|
-
user_id?: string[] | undefined;
|
|
4175
|
-
status?: number | undefined;
|
|
4176
4350
|
meeting_code?: string | undefined;
|
|
4177
|
-
usernames?: string | undefined;
|
|
4178
4351
|
clan_name?: string | undefined;
|
|
4179
|
-
|
|
4352
|
+
parrent_id?: string | undefined;
|
|
4180
4353
|
}[] & ({
|
|
4181
4354
|
clan_id?: string | undefined;
|
|
4182
4355
|
channel_id?: string | undefined;
|
|
4183
4356
|
type?: number | undefined;
|
|
4184
4357
|
channel_label?: string | undefined;
|
|
4185
4358
|
channel_private?: number | undefined;
|
|
4186
|
-
channel_avatar?: string[] | undefined;
|
|
4187
|
-
user_id?: string[] | undefined;
|
|
4188
|
-
status?: number | undefined;
|
|
4189
4359
|
meeting_code?: string | undefined;
|
|
4190
|
-
usernames?: string | undefined;
|
|
4191
4360
|
clan_name?: string | undefined;
|
|
4192
|
-
|
|
4361
|
+
parrent_id?: string | undefined;
|
|
4193
4362
|
} & {
|
|
4194
4363
|
clan_id?: string | undefined;
|
|
4195
4364
|
channel_id?: string | undefined;
|
|
4196
4365
|
type?: number | undefined;
|
|
4197
4366
|
channel_label?: string | undefined;
|
|
4198
4367
|
channel_private?: number | undefined;
|
|
4199
|
-
channel_avatar?: (string[] & string[] & { [K_184 in Exclude<keyof I_1["channel_desc_list_event"]["channeldesc"][number]["channel_avatar"], keyof string[]>]: never; }) | undefined;
|
|
4200
|
-
user_id?: (string[] & string[] & { [K_185 in Exclude<keyof I_1["channel_desc_list_event"]["channeldesc"][number]["user_id"], keyof string[]>]: never; }) | undefined;
|
|
4201
|
-
status?: number | undefined;
|
|
4202
4368
|
meeting_code?: string | undefined;
|
|
4203
|
-
usernames?: string | undefined;
|
|
4204
4369
|
clan_name?: string | undefined;
|
|
4205
|
-
|
|
4206
|
-
} & { [
|
|
4370
|
+
parrent_id?: string | undefined;
|
|
4371
|
+
} & { [K_190 in Exclude<keyof I_1["channel_desc_list_event"]["channeldesc"][number], keyof ChannelDescription>]: never; })[] & { [K_191 in Exclude<keyof I_1["channel_desc_list_event"]["channeldesc"], keyof {
|
|
4207
4372
|
clan_id?: string | undefined;
|
|
4208
4373
|
channel_id?: string | undefined;
|
|
4209
4374
|
type?: number | undefined;
|
|
4210
4375
|
channel_label?: string | undefined;
|
|
4211
4376
|
channel_private?: number | undefined;
|
|
4212
|
-
channel_avatar?: string[] | undefined;
|
|
4213
|
-
user_id?: string[] | undefined;
|
|
4214
|
-
status?: number | undefined;
|
|
4215
4377
|
meeting_code?: string | undefined;
|
|
4216
|
-
usernames?: string | undefined;
|
|
4217
4378
|
clan_name?: string | undefined;
|
|
4218
|
-
|
|
4379
|
+
parrent_id?: string | undefined;
|
|
4219
4380
|
}[]>]: never; }) | undefined;
|
|
4220
|
-
} & { [
|
|
4381
|
+
} & { [K_192 in Exclude<keyof I_1["channel_desc_list_event"], "channeldesc">]: never; }) | undefined;
|
|
4221
4382
|
hashtag_dm_list_event?: ({
|
|
4222
4383
|
user_id?: string[] | undefined;
|
|
4223
4384
|
limit?: number | undefined;
|
|
@@ -4229,9 +4390,10 @@ export declare const Envelope: {
|
|
|
4229
4390
|
meeting_code?: string | undefined;
|
|
4230
4391
|
type?: number | undefined;
|
|
4231
4392
|
channel_private?: number | undefined;
|
|
4393
|
+
parrent_id?: string | undefined;
|
|
4232
4394
|
}[] | undefined;
|
|
4233
4395
|
} & {
|
|
4234
|
-
user_id?: (string[] & string[] & { [
|
|
4396
|
+
user_id?: (string[] & string[] & { [K_193 in Exclude<keyof I_1["hashtag_dm_list_event"]["user_id"], keyof string[]>]: never; }) | undefined;
|
|
4235
4397
|
limit?: number | undefined;
|
|
4236
4398
|
hashtag_dm?: ({
|
|
4237
4399
|
channel_id?: string | undefined;
|
|
@@ -4241,6 +4403,7 @@ export declare const Envelope: {
|
|
|
4241
4403
|
meeting_code?: string | undefined;
|
|
4242
4404
|
type?: number | undefined;
|
|
4243
4405
|
channel_private?: number | undefined;
|
|
4406
|
+
parrent_id?: string | undefined;
|
|
4244
4407
|
}[] & ({
|
|
4245
4408
|
channel_id?: string | undefined;
|
|
4246
4409
|
channel_label?: string | undefined;
|
|
@@ -4249,6 +4412,7 @@ export declare const Envelope: {
|
|
|
4249
4412
|
meeting_code?: string | undefined;
|
|
4250
4413
|
type?: number | undefined;
|
|
4251
4414
|
channel_private?: number | undefined;
|
|
4415
|
+
parrent_id?: string | undefined;
|
|
4252
4416
|
} & {
|
|
4253
4417
|
channel_id?: string | undefined;
|
|
4254
4418
|
channel_label?: string | undefined;
|
|
@@ -4257,7 +4421,8 @@ export declare const Envelope: {
|
|
|
4257
4421
|
meeting_code?: string | undefined;
|
|
4258
4422
|
type?: number | undefined;
|
|
4259
4423
|
channel_private?: number | undefined;
|
|
4260
|
-
|
|
4424
|
+
parrent_id?: string | undefined;
|
|
4425
|
+
} & { [K_194 in Exclude<keyof I_1["hashtag_dm_list_event"]["hashtag_dm"][number], keyof HashtagDm>]: never; })[] & { [K_195 in Exclude<keyof I_1["hashtag_dm_list_event"]["hashtag_dm"], keyof {
|
|
4261
4426
|
channel_id?: string | undefined;
|
|
4262
4427
|
channel_label?: string | undefined;
|
|
4263
4428
|
clan_id?: string | undefined;
|
|
@@ -4265,9 +4430,89 @@ export declare const Envelope: {
|
|
|
4265
4430
|
meeting_code?: string | undefined;
|
|
4266
4431
|
type?: number | undefined;
|
|
4267
4432
|
channel_private?: number | undefined;
|
|
4433
|
+
parrent_id?: string | undefined;
|
|
4268
4434
|
}[]>]: never; }) | undefined;
|
|
4269
|
-
} & { [
|
|
4270
|
-
|
|
4435
|
+
} & { [K_196 in Exclude<keyof I_1["hashtag_dm_list_event"], keyof HashtagDmListEvent>]: never; }) | undefined;
|
|
4436
|
+
notification_channel_setting_event?: ({
|
|
4437
|
+
channel_id?: string | undefined;
|
|
4438
|
+
notification_user_channel?: {
|
|
4439
|
+
id?: string | undefined;
|
|
4440
|
+
notification_setting_type?: number | undefined;
|
|
4441
|
+
time_mute?: Date | undefined;
|
|
4442
|
+
active?: number | undefined;
|
|
4443
|
+
} | undefined;
|
|
4444
|
+
} & {
|
|
4445
|
+
channel_id?: string | undefined;
|
|
4446
|
+
notification_user_channel?: ({
|
|
4447
|
+
id?: string | undefined;
|
|
4448
|
+
notification_setting_type?: number | undefined;
|
|
4449
|
+
time_mute?: Date | undefined;
|
|
4450
|
+
active?: number | undefined;
|
|
4451
|
+
} & {
|
|
4452
|
+
id?: string | undefined;
|
|
4453
|
+
notification_setting_type?: number | undefined;
|
|
4454
|
+
time_mute?: Date | undefined;
|
|
4455
|
+
active?: number | undefined;
|
|
4456
|
+
} & { [K_197 in Exclude<keyof I_1["notification_channel_setting_event"]["notification_user_channel"], keyof NotificationUserChannel>]: never; }) | undefined;
|
|
4457
|
+
} & { [K_198 in Exclude<keyof I_1["notification_channel_setting_event"], keyof NotificationChannelSettingEvent>]: never; }) | undefined;
|
|
4458
|
+
notification_category_setting_event?: ({
|
|
4459
|
+
category_id?: string | undefined;
|
|
4460
|
+
notification_user_channel?: {
|
|
4461
|
+
id?: string | undefined;
|
|
4462
|
+
notification_setting_type?: number | undefined;
|
|
4463
|
+
time_mute?: Date | undefined;
|
|
4464
|
+
active?: number | undefined;
|
|
4465
|
+
} | undefined;
|
|
4466
|
+
} & {
|
|
4467
|
+
category_id?: string | undefined;
|
|
4468
|
+
notification_user_channel?: ({
|
|
4469
|
+
id?: string | undefined;
|
|
4470
|
+
notification_setting_type?: number | undefined;
|
|
4471
|
+
time_mute?: Date | undefined;
|
|
4472
|
+
active?: number | undefined;
|
|
4473
|
+
} & {
|
|
4474
|
+
id?: string | undefined;
|
|
4475
|
+
notification_setting_type?: number | undefined;
|
|
4476
|
+
time_mute?: Date | undefined;
|
|
4477
|
+
active?: number | undefined;
|
|
4478
|
+
} & { [K_199 in Exclude<keyof I_1["notification_category_setting_event"]["notification_user_channel"], keyof NotificationUserChannel>]: never; }) | undefined;
|
|
4479
|
+
} & { [K_200 in Exclude<keyof I_1["notification_category_setting_event"], keyof NotificationCategorySettingEvent>]: never; }) | undefined;
|
|
4480
|
+
notification_clan_setting_event?: ({
|
|
4481
|
+
clan_id?: string | undefined;
|
|
4482
|
+
notification_setting?: {
|
|
4483
|
+
id?: string | undefined;
|
|
4484
|
+
notification_setting_type?: number | undefined;
|
|
4485
|
+
} | undefined;
|
|
4486
|
+
} & {
|
|
4487
|
+
clan_id?: string | undefined;
|
|
4488
|
+
notification_setting?: ({
|
|
4489
|
+
id?: string | undefined;
|
|
4490
|
+
notification_setting_type?: number | undefined;
|
|
4491
|
+
} & {
|
|
4492
|
+
id?: string | undefined;
|
|
4493
|
+
notification_setting_type?: number | undefined;
|
|
4494
|
+
} & { [K_201 in Exclude<keyof I_1["notification_clan_setting_event"]["notification_setting"], keyof NotificationSetting>]: never; }) | undefined;
|
|
4495
|
+
} & { [K_202 in Exclude<keyof I_1["notification_clan_setting_event"], keyof NotificationClanSettingEvent>]: never; }) | undefined;
|
|
4496
|
+
notifi_react_message_event?: ({
|
|
4497
|
+
channel_id?: string | undefined;
|
|
4498
|
+
notifi_react_message?: {
|
|
4499
|
+
id?: string | undefined;
|
|
4500
|
+
user_id?: string | undefined;
|
|
4501
|
+
channel_id?: string | undefined;
|
|
4502
|
+
} | undefined;
|
|
4503
|
+
} & {
|
|
4504
|
+
channel_id?: string | undefined;
|
|
4505
|
+
notifi_react_message?: ({
|
|
4506
|
+
id?: string | undefined;
|
|
4507
|
+
user_id?: string | undefined;
|
|
4508
|
+
channel_id?: string | undefined;
|
|
4509
|
+
} & {
|
|
4510
|
+
id?: string | undefined;
|
|
4511
|
+
user_id?: string | undefined;
|
|
4512
|
+
channel_id?: string | undefined;
|
|
4513
|
+
} & { [K_203 in Exclude<keyof I_1["notifi_react_message_event"]["notifi_react_message"], keyof NotifiReactMessage>]: never; }) | undefined;
|
|
4514
|
+
} & { [K_204 in Exclude<keyof I_1["notifi_react_message_event"], keyof NotifiReactMessageEvent>]: never; }) | undefined;
|
|
4515
|
+
} & { [K_205 in Exclude<keyof I_1, keyof Envelope>]: never; }>(object: I_1): Envelope;
|
|
4271
4516
|
};
|
|
4272
4517
|
export declare const HashtagDmListEvent: {
|
|
4273
4518
|
encode(message: HashtagDmListEvent, writer?: _m0.Writer): _m0.Writer;
|
|
@@ -4285,6 +4530,7 @@ export declare const HashtagDmListEvent: {
|
|
|
4285
4530
|
meeting_code?: string | undefined;
|
|
4286
4531
|
type?: number | undefined;
|
|
4287
4532
|
channel_private?: number | undefined;
|
|
4533
|
+
parrent_id?: string | undefined;
|
|
4288
4534
|
}[] | undefined;
|
|
4289
4535
|
} & {
|
|
4290
4536
|
user_id?: (string[] & string[] & { [K in Exclude<keyof I["user_id"], keyof string[]>]: never; }) | undefined;
|
|
@@ -4297,6 +4543,7 @@ export declare const HashtagDmListEvent: {
|
|
|
4297
4543
|
meeting_code?: string | undefined;
|
|
4298
4544
|
type?: number | undefined;
|
|
4299
4545
|
channel_private?: number | undefined;
|
|
4546
|
+
parrent_id?: string | undefined;
|
|
4300
4547
|
}[] & ({
|
|
4301
4548
|
channel_id?: string | undefined;
|
|
4302
4549
|
channel_label?: string | undefined;
|
|
@@ -4305,6 +4552,7 @@ export declare const HashtagDmListEvent: {
|
|
|
4305
4552
|
meeting_code?: string | undefined;
|
|
4306
4553
|
type?: number | undefined;
|
|
4307
4554
|
channel_private?: number | undefined;
|
|
4555
|
+
parrent_id?: string | undefined;
|
|
4308
4556
|
} & {
|
|
4309
4557
|
channel_id?: string | undefined;
|
|
4310
4558
|
channel_label?: string | undefined;
|
|
@@ -4313,6 +4561,7 @@ export declare const HashtagDmListEvent: {
|
|
|
4313
4561
|
meeting_code?: string | undefined;
|
|
4314
4562
|
type?: number | undefined;
|
|
4315
4563
|
channel_private?: number | undefined;
|
|
4564
|
+
parrent_id?: string | undefined;
|
|
4316
4565
|
} & { [K_1 in Exclude<keyof I["hashtag_dm"][number], keyof HashtagDm>]: never; })[] & { [K_2 in Exclude<keyof I["hashtag_dm"], keyof {
|
|
4317
4566
|
channel_id?: string | undefined;
|
|
4318
4567
|
channel_label?: string | undefined;
|
|
@@ -4321,6 +4570,7 @@ export declare const HashtagDmListEvent: {
|
|
|
4321
4570
|
meeting_code?: string | undefined;
|
|
4322
4571
|
type?: number | undefined;
|
|
4323
4572
|
channel_private?: number | undefined;
|
|
4573
|
+
parrent_id?: string | undefined;
|
|
4324
4574
|
}[]>]: never; }) | undefined;
|
|
4325
4575
|
} & { [K_3 in Exclude<keyof I, keyof HashtagDmListEvent>]: never; }>(base?: I | undefined): HashtagDmListEvent;
|
|
4326
4576
|
fromPartial<I_1 extends {
|
|
@@ -4334,6 +4584,7 @@ export declare const HashtagDmListEvent: {
|
|
|
4334
4584
|
meeting_code?: string | undefined;
|
|
4335
4585
|
type?: number | undefined;
|
|
4336
4586
|
channel_private?: number | undefined;
|
|
4587
|
+
parrent_id?: string | undefined;
|
|
4337
4588
|
}[] | undefined;
|
|
4338
4589
|
} & {
|
|
4339
4590
|
user_id?: (string[] & string[] & { [K_4 in Exclude<keyof I_1["user_id"], keyof string[]>]: never; }) | undefined;
|
|
@@ -4346,6 +4597,7 @@ export declare const HashtagDmListEvent: {
|
|
|
4346
4597
|
meeting_code?: string | undefined;
|
|
4347
4598
|
type?: number | undefined;
|
|
4348
4599
|
channel_private?: number | undefined;
|
|
4600
|
+
parrent_id?: string | undefined;
|
|
4349
4601
|
}[] & ({
|
|
4350
4602
|
channel_id?: string | undefined;
|
|
4351
4603
|
channel_label?: string | undefined;
|
|
@@ -4354,6 +4606,7 @@ export declare const HashtagDmListEvent: {
|
|
|
4354
4606
|
meeting_code?: string | undefined;
|
|
4355
4607
|
type?: number | undefined;
|
|
4356
4608
|
channel_private?: number | undefined;
|
|
4609
|
+
parrent_id?: string | undefined;
|
|
4357
4610
|
} & {
|
|
4358
4611
|
channel_id?: string | undefined;
|
|
4359
4612
|
channel_label?: string | undefined;
|
|
@@ -4362,6 +4615,7 @@ export declare const HashtagDmListEvent: {
|
|
|
4362
4615
|
meeting_code?: string | undefined;
|
|
4363
4616
|
type?: number | undefined;
|
|
4364
4617
|
channel_private?: number | undefined;
|
|
4618
|
+
parrent_id?: string | undefined;
|
|
4365
4619
|
} & { [K_5 in Exclude<keyof I_1["hashtag_dm"][number], keyof HashtagDm>]: never; })[] & { [K_6 in Exclude<keyof I_1["hashtag_dm"], keyof {
|
|
4366
4620
|
channel_id?: string | undefined;
|
|
4367
4621
|
channel_label?: string | undefined;
|
|
@@ -4370,6 +4624,7 @@ export declare const HashtagDmListEvent: {
|
|
|
4370
4624
|
meeting_code?: string | undefined;
|
|
4371
4625
|
type?: number | undefined;
|
|
4372
4626
|
channel_private?: number | undefined;
|
|
4627
|
+
parrent_id?: string | undefined;
|
|
4373
4628
|
}[]>]: never; }) | undefined;
|
|
4374
4629
|
} & { [K_7 in Exclude<keyof I_1, keyof HashtagDmListEvent>]: never; }>(object: I_1): HashtagDmListEvent;
|
|
4375
4630
|
};
|
|
@@ -4386,6 +4641,7 @@ export declare const HashtagDm: {
|
|
|
4386
4641
|
meeting_code?: string | undefined;
|
|
4387
4642
|
type?: number | undefined;
|
|
4388
4643
|
channel_private?: number | undefined;
|
|
4644
|
+
parrent_id?: string | undefined;
|
|
4389
4645
|
} & {
|
|
4390
4646
|
channel_id?: string | undefined;
|
|
4391
4647
|
channel_label?: string | undefined;
|
|
@@ -4394,6 +4650,7 @@ export declare const HashtagDm: {
|
|
|
4394
4650
|
meeting_code?: string | undefined;
|
|
4395
4651
|
type?: number | undefined;
|
|
4396
4652
|
channel_private?: number | undefined;
|
|
4653
|
+
parrent_id?: string | undefined;
|
|
4397
4654
|
} & { [K in Exclude<keyof I, keyof HashtagDm>]: never; }>(base?: I | undefined): HashtagDm;
|
|
4398
4655
|
fromPartial<I_1 extends {
|
|
4399
4656
|
channel_id?: string | undefined;
|
|
@@ -4403,6 +4660,7 @@ export declare const HashtagDm: {
|
|
|
4403
4660
|
meeting_code?: string | undefined;
|
|
4404
4661
|
type?: number | undefined;
|
|
4405
4662
|
channel_private?: number | undefined;
|
|
4663
|
+
parrent_id?: string | undefined;
|
|
4406
4664
|
} & {
|
|
4407
4665
|
channel_id?: string | undefined;
|
|
4408
4666
|
channel_label?: string | undefined;
|
|
@@ -4411,6 +4669,7 @@ export declare const HashtagDm: {
|
|
|
4411
4669
|
meeting_code?: string | undefined;
|
|
4412
4670
|
type?: number | undefined;
|
|
4413
4671
|
channel_private?: number | undefined;
|
|
4672
|
+
parrent_id?: string | undefined;
|
|
4414
4673
|
} & { [K_1 in Exclude<keyof I_1, keyof HashtagDm>]: never; }>(object: I_1): HashtagDm;
|
|
4415
4674
|
};
|
|
4416
4675
|
export declare const ChannelDescListEvent: {
|
|
@@ -4425,13 +4684,9 @@ export declare const ChannelDescListEvent: {
|
|
|
4425
4684
|
type?: number | undefined;
|
|
4426
4685
|
channel_label?: string | undefined;
|
|
4427
4686
|
channel_private?: number | undefined;
|
|
4428
|
-
channel_avatar?: string[] | undefined;
|
|
4429
|
-
user_id?: string[] | undefined;
|
|
4430
|
-
status?: number | undefined;
|
|
4431
4687
|
meeting_code?: string | undefined;
|
|
4432
|
-
usernames?: string | undefined;
|
|
4433
4688
|
clan_name?: string | undefined;
|
|
4434
|
-
|
|
4689
|
+
parrent_id?: string | undefined;
|
|
4435
4690
|
}[] | undefined;
|
|
4436
4691
|
} & {
|
|
4437
4692
|
channeldesc?: ({
|
|
@@ -4440,54 +4695,38 @@ export declare const ChannelDescListEvent: {
|
|
|
4440
4695
|
type?: number | undefined;
|
|
4441
4696
|
channel_label?: string | undefined;
|
|
4442
4697
|
channel_private?: number | undefined;
|
|
4443
|
-
channel_avatar?: string[] | undefined;
|
|
4444
|
-
user_id?: string[] | undefined;
|
|
4445
|
-
status?: number | undefined;
|
|
4446
4698
|
meeting_code?: string | undefined;
|
|
4447
|
-
usernames?: string | undefined;
|
|
4448
4699
|
clan_name?: string | undefined;
|
|
4449
|
-
|
|
4700
|
+
parrent_id?: string | undefined;
|
|
4450
4701
|
}[] & ({
|
|
4451
4702
|
clan_id?: string | undefined;
|
|
4452
4703
|
channel_id?: string | undefined;
|
|
4453
4704
|
type?: number | undefined;
|
|
4454
4705
|
channel_label?: string | undefined;
|
|
4455
4706
|
channel_private?: number | undefined;
|
|
4456
|
-
channel_avatar?: string[] | undefined;
|
|
4457
|
-
user_id?: string[] | undefined;
|
|
4458
|
-
status?: number | undefined;
|
|
4459
4707
|
meeting_code?: string | undefined;
|
|
4460
|
-
usernames?: string | undefined;
|
|
4461
4708
|
clan_name?: string | undefined;
|
|
4462
|
-
|
|
4709
|
+
parrent_id?: string | undefined;
|
|
4463
4710
|
} & {
|
|
4464
4711
|
clan_id?: string | undefined;
|
|
4465
4712
|
channel_id?: string | undefined;
|
|
4466
4713
|
type?: number | undefined;
|
|
4467
4714
|
channel_label?: string | undefined;
|
|
4468
4715
|
channel_private?: number | undefined;
|
|
4469
|
-
channel_avatar?: (string[] & string[] & { [K in Exclude<keyof I["channeldesc"][number]["channel_avatar"], keyof string[]>]: never; }) | undefined;
|
|
4470
|
-
user_id?: (string[] & string[] & { [K_1 in Exclude<keyof I["channeldesc"][number]["user_id"], keyof string[]>]: never; }) | undefined;
|
|
4471
|
-
status?: number | undefined;
|
|
4472
4716
|
meeting_code?: string | undefined;
|
|
4473
|
-
usernames?: string | undefined;
|
|
4474
4717
|
clan_name?: string | undefined;
|
|
4475
|
-
|
|
4476
|
-
} & { [
|
|
4718
|
+
parrent_id?: string | undefined;
|
|
4719
|
+
} & { [K in Exclude<keyof I["channeldesc"][number], keyof ChannelDescription>]: never; })[] & { [K_1 in Exclude<keyof I["channeldesc"], keyof {
|
|
4477
4720
|
clan_id?: string | undefined;
|
|
4478
4721
|
channel_id?: string | undefined;
|
|
4479
4722
|
type?: number | undefined;
|
|
4480
4723
|
channel_label?: string | undefined;
|
|
4481
4724
|
channel_private?: number | undefined;
|
|
4482
|
-
channel_avatar?: string[] | undefined;
|
|
4483
|
-
user_id?: string[] | undefined;
|
|
4484
|
-
status?: number | undefined;
|
|
4485
4725
|
meeting_code?: string | undefined;
|
|
4486
|
-
usernames?: string | undefined;
|
|
4487
4726
|
clan_name?: string | undefined;
|
|
4488
|
-
|
|
4727
|
+
parrent_id?: string | undefined;
|
|
4489
4728
|
}[]>]: never; }) | undefined;
|
|
4490
|
-
} & { [
|
|
4729
|
+
} & { [K_2 in Exclude<keyof I, "channeldesc">]: never; }>(base?: I | undefined): ChannelDescListEvent;
|
|
4491
4730
|
fromPartial<I_1 extends {
|
|
4492
4731
|
channeldesc?: {
|
|
4493
4732
|
clan_id?: string | undefined;
|
|
@@ -4495,13 +4734,9 @@ export declare const ChannelDescListEvent: {
|
|
|
4495
4734
|
type?: number | undefined;
|
|
4496
4735
|
channel_label?: string | undefined;
|
|
4497
4736
|
channel_private?: number | undefined;
|
|
4498
|
-
channel_avatar?: string[] | undefined;
|
|
4499
|
-
user_id?: string[] | undefined;
|
|
4500
|
-
status?: number | undefined;
|
|
4501
4737
|
meeting_code?: string | undefined;
|
|
4502
|
-
usernames?: string | undefined;
|
|
4503
4738
|
clan_name?: string | undefined;
|
|
4504
|
-
|
|
4739
|
+
parrent_id?: string | undefined;
|
|
4505
4740
|
}[] | undefined;
|
|
4506
4741
|
} & {
|
|
4507
4742
|
channeldesc?: ({
|
|
@@ -4510,54 +4745,38 @@ export declare const ChannelDescListEvent: {
|
|
|
4510
4745
|
type?: number | undefined;
|
|
4511
4746
|
channel_label?: string | undefined;
|
|
4512
4747
|
channel_private?: number | undefined;
|
|
4513
|
-
channel_avatar?: string[] | undefined;
|
|
4514
|
-
user_id?: string[] | undefined;
|
|
4515
|
-
status?: number | undefined;
|
|
4516
4748
|
meeting_code?: string | undefined;
|
|
4517
|
-
usernames?: string | undefined;
|
|
4518
4749
|
clan_name?: string | undefined;
|
|
4519
|
-
|
|
4750
|
+
parrent_id?: string | undefined;
|
|
4520
4751
|
}[] & ({
|
|
4521
4752
|
clan_id?: string | undefined;
|
|
4522
4753
|
channel_id?: string | undefined;
|
|
4523
4754
|
type?: number | undefined;
|
|
4524
4755
|
channel_label?: string | undefined;
|
|
4525
4756
|
channel_private?: number | undefined;
|
|
4526
|
-
channel_avatar?: string[] | undefined;
|
|
4527
|
-
user_id?: string[] | undefined;
|
|
4528
|
-
status?: number | undefined;
|
|
4529
4757
|
meeting_code?: string | undefined;
|
|
4530
|
-
usernames?: string | undefined;
|
|
4531
4758
|
clan_name?: string | undefined;
|
|
4532
|
-
|
|
4759
|
+
parrent_id?: string | undefined;
|
|
4533
4760
|
} & {
|
|
4534
4761
|
clan_id?: string | undefined;
|
|
4535
4762
|
channel_id?: string | undefined;
|
|
4536
4763
|
type?: number | undefined;
|
|
4537
4764
|
channel_label?: string | undefined;
|
|
4538
4765
|
channel_private?: number | undefined;
|
|
4539
|
-
channel_avatar?: (string[] & string[] & { [K_5 in Exclude<keyof I_1["channeldesc"][number]["channel_avatar"], keyof string[]>]: never; }) | undefined;
|
|
4540
|
-
user_id?: (string[] & string[] & { [K_6 in Exclude<keyof I_1["channeldesc"][number]["user_id"], keyof string[]>]: never; }) | undefined;
|
|
4541
|
-
status?: number | undefined;
|
|
4542
4766
|
meeting_code?: string | undefined;
|
|
4543
|
-
usernames?: string | undefined;
|
|
4544
4767
|
clan_name?: string | undefined;
|
|
4545
|
-
|
|
4546
|
-
} & { [
|
|
4768
|
+
parrent_id?: string | undefined;
|
|
4769
|
+
} & { [K_3 in Exclude<keyof I_1["channeldesc"][number], keyof ChannelDescription>]: never; })[] & { [K_4 in Exclude<keyof I_1["channeldesc"], keyof {
|
|
4547
4770
|
clan_id?: string | undefined;
|
|
4548
4771
|
channel_id?: string | undefined;
|
|
4549
4772
|
type?: number | undefined;
|
|
4550
4773
|
channel_label?: string | undefined;
|
|
4551
4774
|
channel_private?: number | undefined;
|
|
4552
|
-
channel_avatar?: string[] | undefined;
|
|
4553
|
-
user_id?: string[] | undefined;
|
|
4554
|
-
status?: number | undefined;
|
|
4555
4775
|
meeting_code?: string | undefined;
|
|
4556
|
-
usernames?: string | undefined;
|
|
4557
4776
|
clan_name?: string | undefined;
|
|
4558
|
-
|
|
4777
|
+
parrent_id?: string | undefined;
|
|
4559
4778
|
}[]>]: never; }) | undefined;
|
|
4560
|
-
} & { [
|
|
4779
|
+
} & { [K_5 in Exclude<keyof I_1, "channeldesc">]: never; }>(object: I_1): ChannelDescListEvent;
|
|
4561
4780
|
};
|
|
4562
4781
|
export declare const ChannelDescription: {
|
|
4563
4782
|
encode(message: ChannelDescription, writer?: _m0.Writer): _m0.Writer;
|
|
@@ -4570,54 +4789,38 @@ export declare const ChannelDescription: {
|
|
|
4570
4789
|
type?: number | undefined;
|
|
4571
4790
|
channel_label?: string | undefined;
|
|
4572
4791
|
channel_private?: number | undefined;
|
|
4573
|
-
channel_avatar?: string[] | undefined;
|
|
4574
|
-
user_id?: string[] | undefined;
|
|
4575
|
-
status?: number | undefined;
|
|
4576
4792
|
meeting_code?: string | undefined;
|
|
4577
|
-
usernames?: string | undefined;
|
|
4578
4793
|
clan_name?: string | undefined;
|
|
4579
|
-
|
|
4794
|
+
parrent_id?: string | undefined;
|
|
4580
4795
|
} & {
|
|
4581
4796
|
clan_id?: string | undefined;
|
|
4582
4797
|
channel_id?: string | undefined;
|
|
4583
4798
|
type?: number | undefined;
|
|
4584
4799
|
channel_label?: string | undefined;
|
|
4585
4800
|
channel_private?: number | undefined;
|
|
4586
|
-
channel_avatar?: (string[] & string[] & { [K in Exclude<keyof I["channel_avatar"], keyof string[]>]: never; }) | undefined;
|
|
4587
|
-
user_id?: (string[] & string[] & { [K_1 in Exclude<keyof I["user_id"], keyof string[]>]: never; }) | undefined;
|
|
4588
|
-
status?: number | undefined;
|
|
4589
4801
|
meeting_code?: string | undefined;
|
|
4590
|
-
usernames?: string | undefined;
|
|
4591
4802
|
clan_name?: string | undefined;
|
|
4592
|
-
|
|
4593
|
-
} & { [
|
|
4803
|
+
parrent_id?: string | undefined;
|
|
4804
|
+
} & { [K in Exclude<keyof I, keyof ChannelDescription>]: never; }>(base?: I | undefined): ChannelDescription;
|
|
4594
4805
|
fromPartial<I_1 extends {
|
|
4595
4806
|
clan_id?: string | undefined;
|
|
4596
4807
|
channel_id?: string | undefined;
|
|
4597
4808
|
type?: number | undefined;
|
|
4598
4809
|
channel_label?: string | undefined;
|
|
4599
4810
|
channel_private?: number | undefined;
|
|
4600
|
-
channel_avatar?: string[] | undefined;
|
|
4601
|
-
user_id?: string[] | undefined;
|
|
4602
|
-
status?: number | undefined;
|
|
4603
4811
|
meeting_code?: string | undefined;
|
|
4604
|
-
usernames?: string | undefined;
|
|
4605
4812
|
clan_name?: string | undefined;
|
|
4606
|
-
|
|
4813
|
+
parrent_id?: string | undefined;
|
|
4607
4814
|
} & {
|
|
4608
4815
|
clan_id?: string | undefined;
|
|
4609
4816
|
channel_id?: string | undefined;
|
|
4610
4817
|
type?: number | undefined;
|
|
4611
4818
|
channel_label?: string | undefined;
|
|
4612
4819
|
channel_private?: number | undefined;
|
|
4613
|
-
channel_avatar?: (string[] & string[] & { [K_3 in Exclude<keyof I_1["channel_avatar"], keyof string[]>]: never; }) | undefined;
|
|
4614
|
-
user_id?: (string[] & string[] & { [K_4 in Exclude<keyof I_1["user_id"], keyof string[]>]: never; }) | undefined;
|
|
4615
|
-
status?: number | undefined;
|
|
4616
4820
|
meeting_code?: string | undefined;
|
|
4617
|
-
usernames?: string | undefined;
|
|
4618
4821
|
clan_name?: string | undefined;
|
|
4619
|
-
|
|
4620
|
-
} & { [
|
|
4822
|
+
parrent_id?: string | undefined;
|
|
4823
|
+
} & { [K_1 in Exclude<keyof I_1, keyof ChannelDescription>]: never; }>(object: I_1): ChannelDescription;
|
|
4621
4824
|
};
|
|
4622
4825
|
export declare const StrickerListedEvent: {
|
|
4623
4826
|
encode(message: StrickerListedEvent, writer?: _m0.Writer): _m0.Writer;
|
|
@@ -7550,14 +7753,272 @@ export declare const ClanNameExistedEvent: {
|
|
|
7550
7753
|
toJSON(message: ClanNameExistedEvent): unknown;
|
|
7551
7754
|
create<I extends {
|
|
7552
7755
|
clan_name?: string | undefined;
|
|
7756
|
+
exist?: boolean | undefined;
|
|
7553
7757
|
} & {
|
|
7554
7758
|
clan_name?: string | undefined;
|
|
7555
|
-
|
|
7759
|
+
exist?: boolean | undefined;
|
|
7760
|
+
} & { [K in Exclude<keyof I, keyof ClanNameExistedEvent>]: never; }>(base?: I | undefined): ClanNameExistedEvent;
|
|
7556
7761
|
fromPartial<I_1 extends {
|
|
7557
7762
|
clan_name?: string | undefined;
|
|
7763
|
+
exist?: boolean | undefined;
|
|
7558
7764
|
} & {
|
|
7559
7765
|
clan_name?: string | undefined;
|
|
7560
|
-
|
|
7766
|
+
exist?: boolean | undefined;
|
|
7767
|
+
} & { [K_1 in Exclude<keyof I_1, keyof ClanNameExistedEvent>]: never; }>(object: I_1): ClanNameExistedEvent;
|
|
7768
|
+
};
|
|
7769
|
+
export declare const NotificationChannelSettingEvent: {
|
|
7770
|
+
encode(message: NotificationChannelSettingEvent, writer?: _m0.Writer): _m0.Writer;
|
|
7771
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): NotificationChannelSettingEvent;
|
|
7772
|
+
fromJSON(object: any): NotificationChannelSettingEvent;
|
|
7773
|
+
toJSON(message: NotificationChannelSettingEvent): unknown;
|
|
7774
|
+
create<I extends {
|
|
7775
|
+
channel_id?: string | undefined;
|
|
7776
|
+
notification_user_channel?: {
|
|
7777
|
+
id?: string | undefined;
|
|
7778
|
+
notification_setting_type?: number | undefined;
|
|
7779
|
+
time_mute?: Date | undefined;
|
|
7780
|
+
active?: number | undefined;
|
|
7781
|
+
} | undefined;
|
|
7782
|
+
} & {
|
|
7783
|
+
channel_id?: string | undefined;
|
|
7784
|
+
notification_user_channel?: ({
|
|
7785
|
+
id?: string | undefined;
|
|
7786
|
+
notification_setting_type?: number | undefined;
|
|
7787
|
+
time_mute?: Date | undefined;
|
|
7788
|
+
active?: number | undefined;
|
|
7789
|
+
} & {
|
|
7790
|
+
id?: string | undefined;
|
|
7791
|
+
notification_setting_type?: number | undefined;
|
|
7792
|
+
time_mute?: Date | undefined;
|
|
7793
|
+
active?: number | undefined;
|
|
7794
|
+
} & { [K in Exclude<keyof I["notification_user_channel"], keyof NotificationUserChannel>]: never; }) | undefined;
|
|
7795
|
+
} & { [K_1 in Exclude<keyof I, keyof NotificationChannelSettingEvent>]: never; }>(base?: I | undefined): NotificationChannelSettingEvent;
|
|
7796
|
+
fromPartial<I_1 extends {
|
|
7797
|
+
channel_id?: string | undefined;
|
|
7798
|
+
notification_user_channel?: {
|
|
7799
|
+
id?: string | undefined;
|
|
7800
|
+
notification_setting_type?: number | undefined;
|
|
7801
|
+
time_mute?: Date | undefined;
|
|
7802
|
+
active?: number | undefined;
|
|
7803
|
+
} | undefined;
|
|
7804
|
+
} & {
|
|
7805
|
+
channel_id?: string | undefined;
|
|
7806
|
+
notification_user_channel?: ({
|
|
7807
|
+
id?: string | undefined;
|
|
7808
|
+
notification_setting_type?: number | undefined;
|
|
7809
|
+
time_mute?: Date | undefined;
|
|
7810
|
+
active?: number | undefined;
|
|
7811
|
+
} & {
|
|
7812
|
+
id?: string | undefined;
|
|
7813
|
+
notification_setting_type?: number | undefined;
|
|
7814
|
+
time_mute?: Date | undefined;
|
|
7815
|
+
active?: number | undefined;
|
|
7816
|
+
} & { [K_2 in Exclude<keyof I_1["notification_user_channel"], keyof NotificationUserChannel>]: never; }) | undefined;
|
|
7817
|
+
} & { [K_3 in Exclude<keyof I_1, keyof NotificationChannelSettingEvent>]: never; }>(object: I_1): NotificationChannelSettingEvent;
|
|
7818
|
+
};
|
|
7819
|
+
export declare const NotificationUserChannel: {
|
|
7820
|
+
encode(message: NotificationUserChannel, writer?: _m0.Writer): _m0.Writer;
|
|
7821
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): NotificationUserChannel;
|
|
7822
|
+
fromJSON(object: any): NotificationUserChannel;
|
|
7823
|
+
toJSON(message: NotificationUserChannel): unknown;
|
|
7824
|
+
create<I extends {
|
|
7825
|
+
id?: string | undefined;
|
|
7826
|
+
notification_setting_type?: number | undefined;
|
|
7827
|
+
time_mute?: Date | undefined;
|
|
7828
|
+
active?: number | undefined;
|
|
7829
|
+
} & {
|
|
7830
|
+
id?: string | undefined;
|
|
7831
|
+
notification_setting_type?: number | undefined;
|
|
7832
|
+
time_mute?: Date | undefined;
|
|
7833
|
+
active?: number | undefined;
|
|
7834
|
+
} & { [K in Exclude<keyof I, keyof NotificationUserChannel>]: never; }>(base?: I | undefined): NotificationUserChannel;
|
|
7835
|
+
fromPartial<I_1 extends {
|
|
7836
|
+
id?: string | undefined;
|
|
7837
|
+
notification_setting_type?: number | undefined;
|
|
7838
|
+
time_mute?: Date | undefined;
|
|
7839
|
+
active?: number | undefined;
|
|
7840
|
+
} & {
|
|
7841
|
+
id?: string | undefined;
|
|
7842
|
+
notification_setting_type?: number | undefined;
|
|
7843
|
+
time_mute?: Date | undefined;
|
|
7844
|
+
active?: number | undefined;
|
|
7845
|
+
} & { [K_1 in Exclude<keyof I_1, keyof NotificationUserChannel>]: never; }>(object: I_1): NotificationUserChannel;
|
|
7846
|
+
};
|
|
7847
|
+
export declare const NotificationCategorySettingEvent: {
|
|
7848
|
+
encode(message: NotificationCategorySettingEvent, writer?: _m0.Writer): _m0.Writer;
|
|
7849
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): NotificationCategorySettingEvent;
|
|
7850
|
+
fromJSON(object: any): NotificationCategorySettingEvent;
|
|
7851
|
+
toJSON(message: NotificationCategorySettingEvent): unknown;
|
|
7852
|
+
create<I extends {
|
|
7853
|
+
category_id?: string | undefined;
|
|
7854
|
+
notification_user_channel?: {
|
|
7855
|
+
id?: string | undefined;
|
|
7856
|
+
notification_setting_type?: number | undefined;
|
|
7857
|
+
time_mute?: Date | undefined;
|
|
7858
|
+
active?: number | undefined;
|
|
7859
|
+
} | undefined;
|
|
7860
|
+
} & {
|
|
7861
|
+
category_id?: string | undefined;
|
|
7862
|
+
notification_user_channel?: ({
|
|
7863
|
+
id?: string | undefined;
|
|
7864
|
+
notification_setting_type?: number | undefined;
|
|
7865
|
+
time_mute?: Date | undefined;
|
|
7866
|
+
active?: number | undefined;
|
|
7867
|
+
} & {
|
|
7868
|
+
id?: string | undefined;
|
|
7869
|
+
notification_setting_type?: number | undefined;
|
|
7870
|
+
time_mute?: Date | undefined;
|
|
7871
|
+
active?: number | undefined;
|
|
7872
|
+
} & { [K in Exclude<keyof I["notification_user_channel"], keyof NotificationUserChannel>]: never; }) | undefined;
|
|
7873
|
+
} & { [K_1 in Exclude<keyof I, keyof NotificationCategorySettingEvent>]: never; }>(base?: I | undefined): NotificationCategorySettingEvent;
|
|
7874
|
+
fromPartial<I_1 extends {
|
|
7875
|
+
category_id?: string | undefined;
|
|
7876
|
+
notification_user_channel?: {
|
|
7877
|
+
id?: string | undefined;
|
|
7878
|
+
notification_setting_type?: number | undefined;
|
|
7879
|
+
time_mute?: Date | undefined;
|
|
7880
|
+
active?: number | undefined;
|
|
7881
|
+
} | undefined;
|
|
7882
|
+
} & {
|
|
7883
|
+
category_id?: string | undefined;
|
|
7884
|
+
notification_user_channel?: ({
|
|
7885
|
+
id?: string | undefined;
|
|
7886
|
+
notification_setting_type?: number | undefined;
|
|
7887
|
+
time_mute?: Date | undefined;
|
|
7888
|
+
active?: number | undefined;
|
|
7889
|
+
} & {
|
|
7890
|
+
id?: string | undefined;
|
|
7891
|
+
notification_setting_type?: number | undefined;
|
|
7892
|
+
time_mute?: Date | undefined;
|
|
7893
|
+
active?: number | undefined;
|
|
7894
|
+
} & { [K_2 in Exclude<keyof I_1["notification_user_channel"], keyof NotificationUserChannel>]: never; }) | undefined;
|
|
7895
|
+
} & { [K_3 in Exclude<keyof I_1, keyof NotificationCategorySettingEvent>]: never; }>(object: I_1): NotificationCategorySettingEvent;
|
|
7896
|
+
};
|
|
7897
|
+
export declare const NotificationClanSettingEvent: {
|
|
7898
|
+
encode(message: NotificationClanSettingEvent, writer?: _m0.Writer): _m0.Writer;
|
|
7899
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): NotificationClanSettingEvent;
|
|
7900
|
+
fromJSON(object: any): NotificationClanSettingEvent;
|
|
7901
|
+
toJSON(message: NotificationClanSettingEvent): unknown;
|
|
7902
|
+
create<I extends {
|
|
7903
|
+
clan_id?: string | undefined;
|
|
7904
|
+
notification_setting?: {
|
|
7905
|
+
id?: string | undefined;
|
|
7906
|
+
notification_setting_type?: number | undefined;
|
|
7907
|
+
} | undefined;
|
|
7908
|
+
} & {
|
|
7909
|
+
clan_id?: string | undefined;
|
|
7910
|
+
notification_setting?: ({
|
|
7911
|
+
id?: string | undefined;
|
|
7912
|
+
notification_setting_type?: number | undefined;
|
|
7913
|
+
} & {
|
|
7914
|
+
id?: string | undefined;
|
|
7915
|
+
notification_setting_type?: number | undefined;
|
|
7916
|
+
} & { [K in Exclude<keyof I["notification_setting"], keyof NotificationSetting>]: never; }) | undefined;
|
|
7917
|
+
} & { [K_1 in Exclude<keyof I, keyof NotificationClanSettingEvent>]: never; }>(base?: I | undefined): NotificationClanSettingEvent;
|
|
7918
|
+
fromPartial<I_1 extends {
|
|
7919
|
+
clan_id?: string | undefined;
|
|
7920
|
+
notification_setting?: {
|
|
7921
|
+
id?: string | undefined;
|
|
7922
|
+
notification_setting_type?: number | undefined;
|
|
7923
|
+
} | undefined;
|
|
7924
|
+
} & {
|
|
7925
|
+
clan_id?: string | undefined;
|
|
7926
|
+
notification_setting?: ({
|
|
7927
|
+
id?: string | undefined;
|
|
7928
|
+
notification_setting_type?: number | undefined;
|
|
7929
|
+
} & {
|
|
7930
|
+
id?: string | undefined;
|
|
7931
|
+
notification_setting_type?: number | undefined;
|
|
7932
|
+
} & { [K_2 in Exclude<keyof I_1["notification_setting"], keyof NotificationSetting>]: never; }) | undefined;
|
|
7933
|
+
} & { [K_3 in Exclude<keyof I_1, keyof NotificationClanSettingEvent>]: never; }>(object: I_1): NotificationClanSettingEvent;
|
|
7934
|
+
};
|
|
7935
|
+
export declare const NotificationSetting: {
|
|
7936
|
+
encode(message: NotificationSetting, writer?: _m0.Writer): _m0.Writer;
|
|
7937
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): NotificationSetting;
|
|
7938
|
+
fromJSON(object: any): NotificationSetting;
|
|
7939
|
+
toJSON(message: NotificationSetting): unknown;
|
|
7940
|
+
create<I extends {
|
|
7941
|
+
id?: string | undefined;
|
|
7942
|
+
notification_setting_type?: number | undefined;
|
|
7943
|
+
} & {
|
|
7944
|
+
id?: string | undefined;
|
|
7945
|
+
notification_setting_type?: number | undefined;
|
|
7946
|
+
} & { [K in Exclude<keyof I, keyof NotificationSetting>]: never; }>(base?: I | undefined): NotificationSetting;
|
|
7947
|
+
fromPartial<I_1 extends {
|
|
7948
|
+
id?: string | undefined;
|
|
7949
|
+
notification_setting_type?: number | undefined;
|
|
7950
|
+
} & {
|
|
7951
|
+
id?: string | undefined;
|
|
7952
|
+
notification_setting_type?: number | undefined;
|
|
7953
|
+
} & { [K_1 in Exclude<keyof I_1, keyof NotificationSetting>]: never; }>(object: I_1): NotificationSetting;
|
|
7954
|
+
};
|
|
7955
|
+
export declare const NotifiReactMessageEvent: {
|
|
7956
|
+
encode(message: NotifiReactMessageEvent, writer?: _m0.Writer): _m0.Writer;
|
|
7957
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): NotifiReactMessageEvent;
|
|
7958
|
+
fromJSON(object: any): NotifiReactMessageEvent;
|
|
7959
|
+
toJSON(message: NotifiReactMessageEvent): unknown;
|
|
7960
|
+
create<I extends {
|
|
7961
|
+
channel_id?: string | undefined;
|
|
7962
|
+
notifi_react_message?: {
|
|
7963
|
+
id?: string | undefined;
|
|
7964
|
+
user_id?: string | undefined;
|
|
7965
|
+
channel_id?: string | undefined;
|
|
7966
|
+
} | undefined;
|
|
7967
|
+
} & {
|
|
7968
|
+
channel_id?: string | undefined;
|
|
7969
|
+
notifi_react_message?: ({
|
|
7970
|
+
id?: string | undefined;
|
|
7971
|
+
user_id?: string | undefined;
|
|
7972
|
+
channel_id?: string | undefined;
|
|
7973
|
+
} & {
|
|
7974
|
+
id?: string | undefined;
|
|
7975
|
+
user_id?: string | undefined;
|
|
7976
|
+
channel_id?: string | undefined;
|
|
7977
|
+
} & { [K in Exclude<keyof I["notifi_react_message"], keyof NotifiReactMessage>]: never; }) | undefined;
|
|
7978
|
+
} & { [K_1 in Exclude<keyof I, keyof NotifiReactMessageEvent>]: never; }>(base?: I | undefined): NotifiReactMessageEvent;
|
|
7979
|
+
fromPartial<I_1 extends {
|
|
7980
|
+
channel_id?: string | undefined;
|
|
7981
|
+
notifi_react_message?: {
|
|
7982
|
+
id?: string | undefined;
|
|
7983
|
+
user_id?: string | undefined;
|
|
7984
|
+
channel_id?: string | undefined;
|
|
7985
|
+
} | undefined;
|
|
7986
|
+
} & {
|
|
7987
|
+
channel_id?: string | undefined;
|
|
7988
|
+
notifi_react_message?: ({
|
|
7989
|
+
id?: string | undefined;
|
|
7990
|
+
user_id?: string | undefined;
|
|
7991
|
+
channel_id?: string | undefined;
|
|
7992
|
+
} & {
|
|
7993
|
+
id?: string | undefined;
|
|
7994
|
+
user_id?: string | undefined;
|
|
7995
|
+
channel_id?: string | undefined;
|
|
7996
|
+
} & { [K_2 in Exclude<keyof I_1["notifi_react_message"], keyof NotifiReactMessage>]: never; }) | undefined;
|
|
7997
|
+
} & { [K_3 in Exclude<keyof I_1, keyof NotifiReactMessageEvent>]: never; }>(object: I_1): NotifiReactMessageEvent;
|
|
7998
|
+
};
|
|
7999
|
+
export declare const NotifiReactMessage: {
|
|
8000
|
+
encode(message: NotifiReactMessage, writer?: _m0.Writer): _m0.Writer;
|
|
8001
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): NotifiReactMessage;
|
|
8002
|
+
fromJSON(object: any): NotifiReactMessage;
|
|
8003
|
+
toJSON(message: NotifiReactMessage): unknown;
|
|
8004
|
+
create<I extends {
|
|
8005
|
+
id?: string | undefined;
|
|
8006
|
+
user_id?: string | undefined;
|
|
8007
|
+
channel_id?: string | undefined;
|
|
8008
|
+
} & {
|
|
8009
|
+
id?: string | undefined;
|
|
8010
|
+
user_id?: string | undefined;
|
|
8011
|
+
channel_id?: string | undefined;
|
|
8012
|
+
} & { [K in Exclude<keyof I, keyof NotifiReactMessage>]: never; }>(base?: I | undefined): NotifiReactMessage;
|
|
8013
|
+
fromPartial<I_1 extends {
|
|
8014
|
+
id?: string | undefined;
|
|
8015
|
+
user_id?: string | undefined;
|
|
8016
|
+
channel_id?: string | undefined;
|
|
8017
|
+
} & {
|
|
8018
|
+
id?: string | undefined;
|
|
8019
|
+
user_id?: string | undefined;
|
|
8020
|
+
channel_id?: string | undefined;
|
|
8021
|
+
} & { [K_1 in Exclude<keyof I_1, keyof NotifiReactMessage>]: never; }>(object: I_1): NotifiReactMessage;
|
|
7561
8022
|
};
|
|
7562
8023
|
type Builtin = Date | Function | Uint8Array | string | number | boolean | undefined;
|
|
7563
8024
|
export type DeepPartial<T> = T extends Builtin ? T : T extends Array<infer U> ? Array<DeepPartial<U>> : T extends ReadonlyArray<infer U> ? ReadonlyArray<DeepPartial<U>> : T extends {} ? {
|