mezon-js-protobuf 1.5.9 → 1.5.10
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 +675 -227
- package/dist/mezon-js-protobuf.cjs.js +491 -67
- package/dist/mezon-js-protobuf.esm.mjs +491 -67
- package/package.json +1 -1
- package/rtapi/realtime.ts +670 -72
|
@@ -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;
|
|
@@ -791,6 +793,52 @@ export interface FCMTokens {
|
|
|
791
793
|
export interface ClanNameExistedEvent {
|
|
792
794
|
clan_name: string;
|
|
793
795
|
}
|
|
796
|
+
export interface NotificationChannelSettingEvent {
|
|
797
|
+
channel_id: string;
|
|
798
|
+
notification_user_channel: NotificationUserChannel | undefined;
|
|
799
|
+
}
|
|
800
|
+
/** Notification channel */
|
|
801
|
+
export interface NotificationUserChannel {
|
|
802
|
+
/** Notification id */
|
|
803
|
+
id: string;
|
|
804
|
+
/** */
|
|
805
|
+
notification_setting_type: number;
|
|
806
|
+
/** */
|
|
807
|
+
time_mute: Date | undefined;
|
|
808
|
+
/** */
|
|
809
|
+
active: number;
|
|
810
|
+
}
|
|
811
|
+
/** Notification channel */
|
|
812
|
+
export interface NotificationCategorySettingEvent {
|
|
813
|
+
category_id: string;
|
|
814
|
+
notification_user_channel: NotificationUserChannel | undefined;
|
|
815
|
+
}
|
|
816
|
+
/** Notification setting record */
|
|
817
|
+
export interface NotificationClanSettingEvent {
|
|
818
|
+
clan_id: string;
|
|
819
|
+
notification_setting: NotificationSetting | undefined;
|
|
820
|
+
}
|
|
821
|
+
/** Notification setting record */
|
|
822
|
+
export interface NotificationSetting {
|
|
823
|
+
/** Notification id */
|
|
824
|
+
id: string;
|
|
825
|
+
/** Notification title */
|
|
826
|
+
notification_setting_type: number;
|
|
827
|
+
}
|
|
828
|
+
/** Notification channel */
|
|
829
|
+
export interface NotifiReactMessageEvent {
|
|
830
|
+
channel_id: string;
|
|
831
|
+
notifi_react_message: NotifiReactMessage | undefined;
|
|
832
|
+
}
|
|
833
|
+
/** Notification channel */
|
|
834
|
+
export interface NotifiReactMessage {
|
|
835
|
+
/** Notification id */
|
|
836
|
+
id: string;
|
|
837
|
+
/** */
|
|
838
|
+
user_id: string;
|
|
839
|
+
/** */
|
|
840
|
+
channel_id: string;
|
|
841
|
+
}
|
|
794
842
|
export declare const Envelope: {
|
|
795
843
|
encode(message: Envelope, writer?: _m0.Writer): _m0.Writer;
|
|
796
844
|
decode(input: _m0.Reader | Uint8Array, length?: number): Envelope;
|
|
@@ -1222,13 +1270,9 @@ export declare const Envelope: {
|
|
|
1222
1270
|
type?: number | undefined;
|
|
1223
1271
|
channel_label?: string | undefined;
|
|
1224
1272
|
channel_private?: number | undefined;
|
|
1225
|
-
channel_avatar?: string[] | undefined;
|
|
1226
|
-
user_id?: string[] | undefined;
|
|
1227
|
-
status?: number | undefined;
|
|
1228
1273
|
meeting_code?: string | undefined;
|
|
1229
|
-
usernames?: string | undefined;
|
|
1230
1274
|
clan_name?: string | undefined;
|
|
1231
|
-
|
|
1275
|
+
parrent_id?: string | undefined;
|
|
1232
1276
|
}[] | undefined;
|
|
1233
1277
|
} | undefined;
|
|
1234
1278
|
hashtag_dm_list_event?: {
|
|
@@ -1242,8 +1286,42 @@ export declare const Envelope: {
|
|
|
1242
1286
|
meeting_code?: string | undefined;
|
|
1243
1287
|
type?: number | undefined;
|
|
1244
1288
|
channel_private?: number | undefined;
|
|
1289
|
+
parrent_id?: string | undefined;
|
|
1245
1290
|
}[] | undefined;
|
|
1246
1291
|
} | undefined;
|
|
1292
|
+
notification_channel_setting_event?: {
|
|
1293
|
+
channel_id?: string | undefined;
|
|
1294
|
+
notification_user_channel?: {
|
|
1295
|
+
id?: string | undefined;
|
|
1296
|
+
notification_setting_type?: number | undefined;
|
|
1297
|
+
time_mute?: Date | undefined;
|
|
1298
|
+
active?: number | undefined;
|
|
1299
|
+
} | undefined;
|
|
1300
|
+
} | undefined;
|
|
1301
|
+
notification_category_setting_event?: {
|
|
1302
|
+
category_id?: string | undefined;
|
|
1303
|
+
notification_user_channel?: {
|
|
1304
|
+
id?: string | undefined;
|
|
1305
|
+
notification_setting_type?: number | undefined;
|
|
1306
|
+
time_mute?: Date | undefined;
|
|
1307
|
+
active?: number | undefined;
|
|
1308
|
+
} | undefined;
|
|
1309
|
+
} | undefined;
|
|
1310
|
+
notification_clan_setting_event?: {
|
|
1311
|
+
clan_id?: string | undefined;
|
|
1312
|
+
notification_setting?: {
|
|
1313
|
+
id?: string | undefined;
|
|
1314
|
+
notification_setting_type?: number | undefined;
|
|
1315
|
+
} | undefined;
|
|
1316
|
+
} | undefined;
|
|
1317
|
+
notifi_react_message_event?: {
|
|
1318
|
+
channel_id?: string | undefined;
|
|
1319
|
+
notifi_react_message?: {
|
|
1320
|
+
id?: string | undefined;
|
|
1321
|
+
user_id?: string | undefined;
|
|
1322
|
+
channel_id?: string | undefined;
|
|
1323
|
+
} | undefined;
|
|
1324
|
+
} | undefined;
|
|
1247
1325
|
} & {
|
|
1248
1326
|
cid?: string | undefined;
|
|
1249
1327
|
channel?: ({
|
|
@@ -2419,13 +2497,9 @@ export declare const Envelope: {
|
|
|
2419
2497
|
type?: number | undefined;
|
|
2420
2498
|
channel_label?: string | undefined;
|
|
2421
2499
|
channel_private?: number | undefined;
|
|
2422
|
-
channel_avatar?: string[] | undefined;
|
|
2423
|
-
user_id?: string[] | undefined;
|
|
2424
|
-
status?: number | undefined;
|
|
2425
2500
|
meeting_code?: string | undefined;
|
|
2426
|
-
usernames?: string | undefined;
|
|
2427
2501
|
clan_name?: string | undefined;
|
|
2428
|
-
|
|
2502
|
+
parrent_id?: string | undefined;
|
|
2429
2503
|
}[] | undefined;
|
|
2430
2504
|
} & {
|
|
2431
2505
|
channeldesc?: ({
|
|
@@ -2434,54 +2508,38 @@ export declare const Envelope: {
|
|
|
2434
2508
|
type?: number | undefined;
|
|
2435
2509
|
channel_label?: string | undefined;
|
|
2436
2510
|
channel_private?: number | undefined;
|
|
2437
|
-
channel_avatar?: string[] | undefined;
|
|
2438
|
-
user_id?: string[] | undefined;
|
|
2439
|
-
status?: number | undefined;
|
|
2440
2511
|
meeting_code?: string | undefined;
|
|
2441
|
-
usernames?: string | undefined;
|
|
2442
2512
|
clan_name?: string | undefined;
|
|
2443
|
-
|
|
2513
|
+
parrent_id?: string | undefined;
|
|
2444
2514
|
}[] & ({
|
|
2445
2515
|
clan_id?: string | undefined;
|
|
2446
2516
|
channel_id?: string | undefined;
|
|
2447
2517
|
type?: number | undefined;
|
|
2448
2518
|
channel_label?: string | undefined;
|
|
2449
2519
|
channel_private?: number | undefined;
|
|
2450
|
-
channel_avatar?: string[] | undefined;
|
|
2451
|
-
user_id?: string[] | undefined;
|
|
2452
|
-
status?: number | undefined;
|
|
2453
2520
|
meeting_code?: string | undefined;
|
|
2454
|
-
usernames?: string | undefined;
|
|
2455
2521
|
clan_name?: string | undefined;
|
|
2456
|
-
|
|
2522
|
+
parrent_id?: string | undefined;
|
|
2457
2523
|
} & {
|
|
2458
2524
|
clan_id?: string | undefined;
|
|
2459
2525
|
channel_id?: string | undefined;
|
|
2460
2526
|
type?: number | undefined;
|
|
2461
2527
|
channel_label?: string | undefined;
|
|
2462
2528
|
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
2529
|
meeting_code?: string | undefined;
|
|
2467
|
-
usernames?: string | undefined;
|
|
2468
2530
|
clan_name?: string | undefined;
|
|
2469
|
-
|
|
2470
|
-
} & { [
|
|
2531
|
+
parrent_id?: string | undefined;
|
|
2532
|
+
} & { [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
2533
|
clan_id?: string | undefined;
|
|
2472
2534
|
channel_id?: string | undefined;
|
|
2473
2535
|
type?: number | undefined;
|
|
2474
2536
|
channel_label?: string | undefined;
|
|
2475
2537
|
channel_private?: number | undefined;
|
|
2476
|
-
channel_avatar?: string[] | undefined;
|
|
2477
|
-
user_id?: string[] | undefined;
|
|
2478
|
-
status?: number | undefined;
|
|
2479
2538
|
meeting_code?: string | undefined;
|
|
2480
|
-
usernames?: string | undefined;
|
|
2481
2539
|
clan_name?: string | undefined;
|
|
2482
|
-
|
|
2540
|
+
parrent_id?: string | undefined;
|
|
2483
2541
|
}[]>]: never; }) | undefined;
|
|
2484
|
-
} & { [
|
|
2542
|
+
} & { [K_89 in Exclude<keyof I["channel_desc_list_event"], "channeldesc">]: never; }) | undefined;
|
|
2485
2543
|
hashtag_dm_list_event?: ({
|
|
2486
2544
|
user_id?: string[] | undefined;
|
|
2487
2545
|
limit?: number | undefined;
|
|
@@ -2493,9 +2551,10 @@ export declare const Envelope: {
|
|
|
2493
2551
|
meeting_code?: string | undefined;
|
|
2494
2552
|
type?: number | undefined;
|
|
2495
2553
|
channel_private?: number | undefined;
|
|
2554
|
+
parrent_id?: string | undefined;
|
|
2496
2555
|
}[] | undefined;
|
|
2497
2556
|
} & {
|
|
2498
|
-
user_id?: (string[] & string[] & { [
|
|
2557
|
+
user_id?: (string[] & string[] & { [K_90 in Exclude<keyof I["hashtag_dm_list_event"]["user_id"], keyof string[]>]: never; }) | undefined;
|
|
2499
2558
|
limit?: number | undefined;
|
|
2500
2559
|
hashtag_dm?: ({
|
|
2501
2560
|
channel_id?: string | undefined;
|
|
@@ -2505,6 +2564,7 @@ export declare const Envelope: {
|
|
|
2505
2564
|
meeting_code?: string | undefined;
|
|
2506
2565
|
type?: number | undefined;
|
|
2507
2566
|
channel_private?: number | undefined;
|
|
2567
|
+
parrent_id?: string | undefined;
|
|
2508
2568
|
}[] & ({
|
|
2509
2569
|
channel_id?: string | undefined;
|
|
2510
2570
|
channel_label?: string | undefined;
|
|
@@ -2513,6 +2573,7 @@ export declare const Envelope: {
|
|
|
2513
2573
|
meeting_code?: string | undefined;
|
|
2514
2574
|
type?: number | undefined;
|
|
2515
2575
|
channel_private?: number | undefined;
|
|
2576
|
+
parrent_id?: string | undefined;
|
|
2516
2577
|
} & {
|
|
2517
2578
|
channel_id?: string | undefined;
|
|
2518
2579
|
channel_label?: string | undefined;
|
|
@@ -2521,7 +2582,8 @@ export declare const Envelope: {
|
|
|
2521
2582
|
meeting_code?: string | undefined;
|
|
2522
2583
|
type?: number | undefined;
|
|
2523
2584
|
channel_private?: number | undefined;
|
|
2524
|
-
|
|
2585
|
+
parrent_id?: string | undefined;
|
|
2586
|
+
} & { [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
2587
|
channel_id?: string | undefined;
|
|
2526
2588
|
channel_label?: string | undefined;
|
|
2527
2589
|
clan_id?: string | undefined;
|
|
@@ -2529,9 +2591,89 @@ export declare const Envelope: {
|
|
|
2529
2591
|
meeting_code?: string | undefined;
|
|
2530
2592
|
type?: number | undefined;
|
|
2531
2593
|
channel_private?: number | undefined;
|
|
2594
|
+
parrent_id?: string | undefined;
|
|
2532
2595
|
}[]>]: never; }) | undefined;
|
|
2533
|
-
} & { [
|
|
2534
|
-
|
|
2596
|
+
} & { [K_93 in Exclude<keyof I["hashtag_dm_list_event"], keyof HashtagDmListEvent>]: never; }) | undefined;
|
|
2597
|
+
notification_channel_setting_event?: ({
|
|
2598
|
+
channel_id?: string | undefined;
|
|
2599
|
+
notification_user_channel?: {
|
|
2600
|
+
id?: string | undefined;
|
|
2601
|
+
notification_setting_type?: number | undefined;
|
|
2602
|
+
time_mute?: Date | undefined;
|
|
2603
|
+
active?: number | undefined;
|
|
2604
|
+
} | undefined;
|
|
2605
|
+
} & {
|
|
2606
|
+
channel_id?: string | undefined;
|
|
2607
|
+
notification_user_channel?: ({
|
|
2608
|
+
id?: string | undefined;
|
|
2609
|
+
notification_setting_type?: number | undefined;
|
|
2610
|
+
time_mute?: Date | undefined;
|
|
2611
|
+
active?: number | undefined;
|
|
2612
|
+
} & {
|
|
2613
|
+
id?: string | undefined;
|
|
2614
|
+
notification_setting_type?: number | undefined;
|
|
2615
|
+
time_mute?: Date | undefined;
|
|
2616
|
+
active?: number | undefined;
|
|
2617
|
+
} & { [K_94 in Exclude<keyof I["notification_channel_setting_event"]["notification_user_channel"], keyof NotificationUserChannel>]: never; }) | undefined;
|
|
2618
|
+
} & { [K_95 in Exclude<keyof I["notification_channel_setting_event"], keyof NotificationChannelSettingEvent>]: never; }) | undefined;
|
|
2619
|
+
notification_category_setting_event?: ({
|
|
2620
|
+
category_id?: string | undefined;
|
|
2621
|
+
notification_user_channel?: {
|
|
2622
|
+
id?: string | undefined;
|
|
2623
|
+
notification_setting_type?: number | undefined;
|
|
2624
|
+
time_mute?: Date | undefined;
|
|
2625
|
+
active?: number | undefined;
|
|
2626
|
+
} | undefined;
|
|
2627
|
+
} & {
|
|
2628
|
+
category_id?: string | undefined;
|
|
2629
|
+
notification_user_channel?: ({
|
|
2630
|
+
id?: string | undefined;
|
|
2631
|
+
notification_setting_type?: number | undefined;
|
|
2632
|
+
time_mute?: Date | undefined;
|
|
2633
|
+
active?: number | undefined;
|
|
2634
|
+
} & {
|
|
2635
|
+
id?: string | undefined;
|
|
2636
|
+
notification_setting_type?: number | undefined;
|
|
2637
|
+
time_mute?: Date | undefined;
|
|
2638
|
+
active?: number | undefined;
|
|
2639
|
+
} & { [K_96 in Exclude<keyof I["notification_category_setting_event"]["notification_user_channel"], keyof NotificationUserChannel>]: never; }) | undefined;
|
|
2640
|
+
} & { [K_97 in Exclude<keyof I["notification_category_setting_event"], keyof NotificationCategorySettingEvent>]: never; }) | undefined;
|
|
2641
|
+
notification_clan_setting_event?: ({
|
|
2642
|
+
clan_id?: string | undefined;
|
|
2643
|
+
notification_setting?: {
|
|
2644
|
+
id?: string | undefined;
|
|
2645
|
+
notification_setting_type?: number | undefined;
|
|
2646
|
+
} | undefined;
|
|
2647
|
+
} & {
|
|
2648
|
+
clan_id?: string | undefined;
|
|
2649
|
+
notification_setting?: ({
|
|
2650
|
+
id?: string | undefined;
|
|
2651
|
+
notification_setting_type?: number | undefined;
|
|
2652
|
+
} & {
|
|
2653
|
+
id?: string | undefined;
|
|
2654
|
+
notification_setting_type?: number | undefined;
|
|
2655
|
+
} & { [K_98 in Exclude<keyof I["notification_clan_setting_event"]["notification_setting"], keyof NotificationSetting>]: never; }) | undefined;
|
|
2656
|
+
} & { [K_99 in Exclude<keyof I["notification_clan_setting_event"], keyof NotificationClanSettingEvent>]: never; }) | undefined;
|
|
2657
|
+
notifi_react_message_event?: ({
|
|
2658
|
+
channel_id?: string | undefined;
|
|
2659
|
+
notifi_react_message?: {
|
|
2660
|
+
id?: string | undefined;
|
|
2661
|
+
user_id?: string | undefined;
|
|
2662
|
+
channel_id?: string | undefined;
|
|
2663
|
+
} | undefined;
|
|
2664
|
+
} & {
|
|
2665
|
+
channel_id?: string | undefined;
|
|
2666
|
+
notifi_react_message?: ({
|
|
2667
|
+
id?: string | undefined;
|
|
2668
|
+
user_id?: string | undefined;
|
|
2669
|
+
channel_id?: string | undefined;
|
|
2670
|
+
} & {
|
|
2671
|
+
id?: string | undefined;
|
|
2672
|
+
user_id?: string | undefined;
|
|
2673
|
+
channel_id?: string | undefined;
|
|
2674
|
+
} & { [K_100 in Exclude<keyof I["notifi_react_message_event"]["notifi_react_message"], keyof NotifiReactMessage>]: never; }) | undefined;
|
|
2675
|
+
} & { [K_101 in Exclude<keyof I["notifi_react_message_event"], keyof NotifiReactMessageEvent>]: never; }) | undefined;
|
|
2676
|
+
} & { [K_102 in Exclude<keyof I, keyof Envelope>]: never; }>(base?: I | undefined): Envelope;
|
|
2535
2677
|
fromPartial<I_1 extends {
|
|
2536
2678
|
cid?: string | undefined;
|
|
2537
2679
|
channel?: {
|
|
@@ -2958,13 +3100,9 @@ export declare const Envelope: {
|
|
|
2958
3100
|
type?: number | undefined;
|
|
2959
3101
|
channel_label?: string | undefined;
|
|
2960
3102
|
channel_private?: number | undefined;
|
|
2961
|
-
channel_avatar?: string[] | undefined;
|
|
2962
|
-
user_id?: string[] | undefined;
|
|
2963
|
-
status?: number | undefined;
|
|
2964
3103
|
meeting_code?: string | undefined;
|
|
2965
|
-
usernames?: string | undefined;
|
|
2966
3104
|
clan_name?: string | undefined;
|
|
2967
|
-
|
|
3105
|
+
parrent_id?: string | undefined;
|
|
2968
3106
|
}[] | undefined;
|
|
2969
3107
|
} | undefined;
|
|
2970
3108
|
hashtag_dm_list_event?: {
|
|
@@ -2978,8 +3116,42 @@ export declare const Envelope: {
|
|
|
2978
3116
|
meeting_code?: string | undefined;
|
|
2979
3117
|
type?: number | undefined;
|
|
2980
3118
|
channel_private?: number | undefined;
|
|
3119
|
+
parrent_id?: string | undefined;
|
|
2981
3120
|
}[] | undefined;
|
|
2982
3121
|
} | undefined;
|
|
3122
|
+
notification_channel_setting_event?: {
|
|
3123
|
+
channel_id?: string | undefined;
|
|
3124
|
+
notification_user_channel?: {
|
|
3125
|
+
id?: string | undefined;
|
|
3126
|
+
notification_setting_type?: number | undefined;
|
|
3127
|
+
time_mute?: Date | undefined;
|
|
3128
|
+
active?: number | undefined;
|
|
3129
|
+
} | undefined;
|
|
3130
|
+
} | undefined;
|
|
3131
|
+
notification_category_setting_event?: {
|
|
3132
|
+
category_id?: string | undefined;
|
|
3133
|
+
notification_user_channel?: {
|
|
3134
|
+
id?: string | undefined;
|
|
3135
|
+
notification_setting_type?: number | undefined;
|
|
3136
|
+
time_mute?: Date | undefined;
|
|
3137
|
+
active?: number | undefined;
|
|
3138
|
+
} | undefined;
|
|
3139
|
+
} | undefined;
|
|
3140
|
+
notification_clan_setting_event?: {
|
|
3141
|
+
clan_id?: string | undefined;
|
|
3142
|
+
notification_setting?: {
|
|
3143
|
+
id?: string | undefined;
|
|
3144
|
+
notification_setting_type?: number | undefined;
|
|
3145
|
+
} | undefined;
|
|
3146
|
+
} | undefined;
|
|
3147
|
+
notifi_react_message_event?: {
|
|
3148
|
+
channel_id?: string | undefined;
|
|
3149
|
+
notifi_react_message?: {
|
|
3150
|
+
id?: string | undefined;
|
|
3151
|
+
user_id?: string | undefined;
|
|
3152
|
+
channel_id?: string | undefined;
|
|
3153
|
+
} | undefined;
|
|
3154
|
+
} | undefined;
|
|
2983
3155
|
} & {
|
|
2984
3156
|
cid?: string | undefined;
|
|
2985
3157
|
channel?: ({
|
|
@@ -3021,7 +3193,7 @@ export declare const Envelope: {
|
|
|
3021
3193
|
username?: string | undefined;
|
|
3022
3194
|
persistence?: boolean | undefined;
|
|
3023
3195
|
status?: string | undefined;
|
|
3024
|
-
} & { [
|
|
3196
|
+
} & { [K_103 in Exclude<keyof I_1["channel"]["presences"][number], keyof UserPresence>]: never; })[] & { [K_104 in Exclude<keyof I_1["channel"]["presences"], keyof {
|
|
3025
3197
|
user_id?: string | undefined;
|
|
3026
3198
|
session_id?: string | undefined;
|
|
3027
3199
|
username?: string | undefined;
|
|
@@ -3040,16 +3212,16 @@ export declare const Envelope: {
|
|
|
3040
3212
|
username?: string | undefined;
|
|
3041
3213
|
persistence?: boolean | undefined;
|
|
3042
3214
|
status?: string | undefined;
|
|
3043
|
-
} & { [
|
|
3215
|
+
} & { [K_105 in Exclude<keyof I_1["channel"]["self"], keyof UserPresence>]: never; }) | undefined;
|
|
3044
3216
|
chanel_label?: string | undefined;
|
|
3045
3217
|
clan_logo?: string | undefined;
|
|
3046
3218
|
category_name?: string | undefined;
|
|
3047
|
-
} & { [
|
|
3219
|
+
} & { [K_106 in Exclude<keyof I_1["channel"], keyof Channel>]: never; }) | undefined;
|
|
3048
3220
|
clan_join?: ({
|
|
3049
3221
|
clan_id?: string | undefined;
|
|
3050
3222
|
} & {
|
|
3051
3223
|
clan_id?: string | undefined;
|
|
3052
|
-
} & { [
|
|
3224
|
+
} & { [K_107 in Exclude<keyof I_1["clan_join"], "clan_id">]: never; }) | undefined;
|
|
3053
3225
|
channel_join?: ({
|
|
3054
3226
|
clan_id?: string | undefined;
|
|
3055
3227
|
channel_id?: string | undefined;
|
|
@@ -3058,7 +3230,7 @@ export declare const Envelope: {
|
|
|
3058
3230
|
clan_id?: string | undefined;
|
|
3059
3231
|
channel_id?: string | undefined;
|
|
3060
3232
|
channel_type?: number | undefined;
|
|
3061
|
-
} & { [
|
|
3233
|
+
} & { [K_108 in Exclude<keyof I_1["channel_join"], keyof ChannelJoin>]: never; }) | undefined;
|
|
3062
3234
|
channel_leave?: ({
|
|
3063
3235
|
clan_id?: string | undefined;
|
|
3064
3236
|
channel_id?: string | undefined;
|
|
@@ -3067,7 +3239,7 @@ export declare const Envelope: {
|
|
|
3067
3239
|
clan_id?: string | undefined;
|
|
3068
3240
|
channel_id?: string | undefined;
|
|
3069
3241
|
channel_type?: number | undefined;
|
|
3070
|
-
} & { [
|
|
3242
|
+
} & { [K_109 in Exclude<keyof I_1["channel_leave"], keyof ChannelLeave>]: never; }) | undefined;
|
|
3071
3243
|
channel_message?: ({
|
|
3072
3244
|
clan_id?: string | undefined;
|
|
3073
3245
|
channel_id?: string | undefined;
|
|
@@ -3116,7 +3288,7 @@ export declare const Envelope: {
|
|
|
3116
3288
|
referenced_message?: string | undefined;
|
|
3117
3289
|
create_time_ms?: number | undefined;
|
|
3118
3290
|
update_time_ms?: number | undefined;
|
|
3119
|
-
} & { [
|
|
3291
|
+
} & { [K_110 in Exclude<keyof I_1["channel_message"], keyof ChannelMessage>]: never; }) | undefined;
|
|
3120
3292
|
channel_message_ack?: ({
|
|
3121
3293
|
channel_id?: string | undefined;
|
|
3122
3294
|
message_id?: string | undefined;
|
|
@@ -3137,7 +3309,7 @@ export declare const Envelope: {
|
|
|
3137
3309
|
persistent?: boolean | undefined;
|
|
3138
3310
|
clan_logo?: string | undefined;
|
|
3139
3311
|
category_name?: string | undefined;
|
|
3140
|
-
} & { [
|
|
3312
|
+
} & { [K_111 in Exclude<keyof I_1["channel_message_ack"], keyof ChannelMessageAck>]: never; }) | undefined;
|
|
3141
3313
|
channel_message_send?: ({
|
|
3142
3314
|
clan_id?: string | undefined;
|
|
3143
3315
|
channel_id?: string | undefined;
|
|
@@ -3199,7 +3371,7 @@ export declare const Envelope: {
|
|
|
3199
3371
|
rolename?: string | undefined;
|
|
3200
3372
|
s?: number | undefined;
|
|
3201
3373
|
e?: number | undefined;
|
|
3202
|
-
} & { [
|
|
3374
|
+
} & { [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
3375
|
user_id?: string | undefined;
|
|
3204
3376
|
username?: string | undefined;
|
|
3205
3377
|
role_id?: string | undefined;
|
|
@@ -3228,7 +3400,7 @@ export declare const Envelope: {
|
|
|
3228
3400
|
filetype?: string | undefined;
|
|
3229
3401
|
width?: number | undefined;
|
|
3230
3402
|
height?: number | undefined;
|
|
3231
|
-
} & { [
|
|
3403
|
+
} & { [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
3404
|
filename?: string | undefined;
|
|
3233
3405
|
size?: number | undefined;
|
|
3234
3406
|
url?: string | undefined;
|
|
@@ -3269,7 +3441,7 @@ export declare const Envelope: {
|
|
|
3269
3441
|
content?: string | undefined;
|
|
3270
3442
|
has_attachment?: boolean | undefined;
|
|
3271
3443
|
ref_type?: number | undefined;
|
|
3272
|
-
} & { [
|
|
3444
|
+
} & { [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
3445
|
message_id?: string | undefined;
|
|
3274
3446
|
message_ref_id?: string | undefined;
|
|
3275
3447
|
message_sender_id?: string | undefined;
|
|
@@ -3285,7 +3457,7 @@ export declare const Envelope: {
|
|
|
3285
3457
|
anonymous_message?: boolean | undefined;
|
|
3286
3458
|
mention_everyone?: boolean | undefined;
|
|
3287
3459
|
avatar?: string | undefined;
|
|
3288
|
-
} & { [
|
|
3460
|
+
} & { [K_118 in Exclude<keyof I_1["channel_message_send"], keyof ChannelMessageSend>]: never; }) | undefined;
|
|
3289
3461
|
channel_message_update?: ({
|
|
3290
3462
|
clan_id?: string | undefined;
|
|
3291
3463
|
channel_id?: string | undefined;
|
|
@@ -3334,7 +3506,7 @@ export declare const Envelope: {
|
|
|
3334
3506
|
rolename?: string | undefined;
|
|
3335
3507
|
s?: number | undefined;
|
|
3336
3508
|
e?: number | undefined;
|
|
3337
|
-
} & { [
|
|
3509
|
+
} & { [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
3510
|
user_id?: string | undefined;
|
|
3339
3511
|
username?: string | undefined;
|
|
3340
3512
|
role_id?: string | undefined;
|
|
@@ -3363,7 +3535,7 @@ export declare const Envelope: {
|
|
|
3363
3535
|
filetype?: string | undefined;
|
|
3364
3536
|
width?: number | undefined;
|
|
3365
3537
|
height?: number | undefined;
|
|
3366
|
-
} & { [
|
|
3538
|
+
} & { [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
3539
|
filename?: string | undefined;
|
|
3368
3540
|
size?: number | undefined;
|
|
3369
3541
|
url?: string | undefined;
|
|
@@ -3372,7 +3544,7 @@ export declare const Envelope: {
|
|
|
3372
3544
|
height?: number | undefined;
|
|
3373
3545
|
}[]>]: never; }) | undefined;
|
|
3374
3546
|
mode?: number | undefined;
|
|
3375
|
-
} & { [
|
|
3547
|
+
} & { [K_123 in Exclude<keyof I_1["channel_message_update"], keyof ChannelMessageUpdate>]: never; }) | undefined;
|
|
3376
3548
|
channel_message_remove?: ({
|
|
3377
3549
|
clan_id?: string | undefined;
|
|
3378
3550
|
channel_id?: string | undefined;
|
|
@@ -3383,7 +3555,7 @@ export declare const Envelope: {
|
|
|
3383
3555
|
channel_id?: string | undefined;
|
|
3384
3556
|
message_id?: string | undefined;
|
|
3385
3557
|
mode?: number | undefined;
|
|
3386
|
-
} & { [
|
|
3558
|
+
} & { [K_124 in Exclude<keyof I_1["channel_message_remove"], keyof ChannelMessageRemove>]: never; }) | undefined;
|
|
3387
3559
|
channel_presence_event?: ({
|
|
3388
3560
|
channel_id?: string | undefined;
|
|
3389
3561
|
joins?: {
|
|
@@ -3423,7 +3595,7 @@ export declare const Envelope: {
|
|
|
3423
3595
|
username?: string | undefined;
|
|
3424
3596
|
persistence?: boolean | undefined;
|
|
3425
3597
|
status?: string | undefined;
|
|
3426
|
-
} & { [
|
|
3598
|
+
} & { [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
3599
|
user_id?: string | undefined;
|
|
3428
3600
|
session_id?: string | undefined;
|
|
3429
3601
|
username?: string | undefined;
|
|
@@ -3448,7 +3620,7 @@ export declare const Envelope: {
|
|
|
3448
3620
|
username?: string | undefined;
|
|
3449
3621
|
persistence?: boolean | undefined;
|
|
3450
3622
|
status?: string | undefined;
|
|
3451
|
-
} & { [
|
|
3623
|
+
} & { [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
3624
|
user_id?: string | undefined;
|
|
3453
3625
|
session_id?: string | undefined;
|
|
3454
3626
|
username?: string | undefined;
|
|
@@ -3458,7 +3630,7 @@ export declare const Envelope: {
|
|
|
3458
3630
|
clan_logo?: string | undefined;
|
|
3459
3631
|
category_name?: string | undefined;
|
|
3460
3632
|
mode?: number | undefined;
|
|
3461
|
-
} & { [
|
|
3633
|
+
} & { [K_129 in Exclude<keyof I_1["channel_presence_event"], keyof ChannelPresenceEvent>]: never; }) | undefined;
|
|
3462
3634
|
error?: ({
|
|
3463
3635
|
code?: number | undefined;
|
|
3464
3636
|
message?: string | undefined;
|
|
@@ -3472,8 +3644,8 @@ export declare const Envelope: {
|
|
|
3472
3644
|
[x: string]: string | undefined;
|
|
3473
3645
|
} & {
|
|
3474
3646
|
[x: string]: string | undefined;
|
|
3475
|
-
} & { [
|
|
3476
|
-
} & { [
|
|
3647
|
+
} & { [K_130 in Exclude<keyof I_1["error"]["context"], string | number>]: never; }) | undefined;
|
|
3648
|
+
} & { [K_131 in Exclude<keyof I_1["error"], keyof Error>]: never; }) | undefined;
|
|
3477
3649
|
notifications?: ({
|
|
3478
3650
|
notifications?: {
|
|
3479
3651
|
id?: string | undefined;
|
|
@@ -3525,7 +3697,7 @@ export declare const Envelope: {
|
|
|
3525
3697
|
channel_id?: string | undefined;
|
|
3526
3698
|
channel_type?: number | undefined;
|
|
3527
3699
|
avatar_url?: string | undefined;
|
|
3528
|
-
} & { [
|
|
3700
|
+
} & { [K_132 in Exclude<keyof I_1["notifications"]["notifications"][number], keyof Notification>]: never; })[] & { [K_133 in Exclude<keyof I_1["notifications"]["notifications"], keyof {
|
|
3529
3701
|
id?: string | undefined;
|
|
3530
3702
|
subject?: string | undefined;
|
|
3531
3703
|
content?: string | undefined;
|
|
@@ -3538,7 +3710,7 @@ export declare const Envelope: {
|
|
|
3538
3710
|
channel_type?: number | undefined;
|
|
3539
3711
|
avatar_url?: string | undefined;
|
|
3540
3712
|
}[]>]: never; }) | undefined;
|
|
3541
|
-
} & { [
|
|
3713
|
+
} & { [K_134 in Exclude<keyof I_1["notifications"], "notifications">]: never; }) | undefined;
|
|
3542
3714
|
rpc?: ({
|
|
3543
3715
|
id?: string | undefined;
|
|
3544
3716
|
payload?: string | undefined;
|
|
@@ -3547,7 +3719,7 @@ export declare const Envelope: {
|
|
|
3547
3719
|
id?: string | undefined;
|
|
3548
3720
|
payload?: string | undefined;
|
|
3549
3721
|
http_key?: string | undefined;
|
|
3550
|
-
} & { [
|
|
3722
|
+
} & { [K_135 in Exclude<keyof I_1["rpc"], keyof Rpc>]: never; }) | undefined;
|
|
3551
3723
|
status?: ({
|
|
3552
3724
|
presences?: {
|
|
3553
3725
|
user_id?: string | undefined;
|
|
@@ -3575,21 +3747,21 @@ export declare const Envelope: {
|
|
|
3575
3747
|
username?: string | undefined;
|
|
3576
3748
|
persistence?: boolean | undefined;
|
|
3577
3749
|
status?: string | undefined;
|
|
3578
|
-
} & { [
|
|
3750
|
+
} & { [K_136 in Exclude<keyof I_1["status"]["presences"][number], keyof UserPresence>]: never; })[] & { [K_137 in Exclude<keyof I_1["status"]["presences"], keyof {
|
|
3579
3751
|
user_id?: string | undefined;
|
|
3580
3752
|
session_id?: string | undefined;
|
|
3581
3753
|
username?: string | undefined;
|
|
3582
3754
|
persistence?: boolean | undefined;
|
|
3583
3755
|
status?: string | undefined;
|
|
3584
3756
|
}[]>]: never; }) | undefined;
|
|
3585
|
-
} & { [
|
|
3757
|
+
} & { [K_138 in Exclude<keyof I_1["status"], "presences">]: never; }) | undefined;
|
|
3586
3758
|
status_follow?: ({
|
|
3587
3759
|
user_ids?: string[] | undefined;
|
|
3588
3760
|
usernames?: string[] | undefined;
|
|
3589
3761
|
} & {
|
|
3590
|
-
user_ids?: (string[] & string[] & { [
|
|
3591
|
-
usernames?: (string[] & string[] & { [
|
|
3592
|
-
} & { [
|
|
3762
|
+
user_ids?: (string[] & string[] & { [K_139 in Exclude<keyof I_1["status_follow"]["user_ids"], keyof string[]>]: never; }) | undefined;
|
|
3763
|
+
usernames?: (string[] & string[] & { [K_140 in Exclude<keyof I_1["status_follow"]["usernames"], keyof string[]>]: never; }) | undefined;
|
|
3764
|
+
} & { [K_141 in Exclude<keyof I_1["status_follow"], keyof StatusFollow>]: never; }) | undefined;
|
|
3593
3765
|
status_presence_event?: ({
|
|
3594
3766
|
joins?: {
|
|
3595
3767
|
user_id?: string | undefined;
|
|
@@ -3624,7 +3796,7 @@ export declare const Envelope: {
|
|
|
3624
3796
|
username?: string | undefined;
|
|
3625
3797
|
persistence?: boolean | undefined;
|
|
3626
3798
|
status?: string | undefined;
|
|
3627
|
-
} & { [
|
|
3799
|
+
} & { [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
3800
|
user_id?: string | undefined;
|
|
3629
3801
|
session_id?: string | undefined;
|
|
3630
3802
|
username?: string | undefined;
|
|
@@ -3649,24 +3821,24 @@ export declare const Envelope: {
|
|
|
3649
3821
|
username?: string | undefined;
|
|
3650
3822
|
persistence?: boolean | undefined;
|
|
3651
3823
|
status?: string | undefined;
|
|
3652
|
-
} & { [
|
|
3824
|
+
} & { [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
3825
|
user_id?: string | undefined;
|
|
3654
3826
|
session_id?: string | undefined;
|
|
3655
3827
|
username?: string | undefined;
|
|
3656
3828
|
persistence?: boolean | undefined;
|
|
3657
3829
|
status?: string | undefined;
|
|
3658
3830
|
}[]>]: never; }) | undefined;
|
|
3659
|
-
} & { [
|
|
3831
|
+
} & { [K_146 in Exclude<keyof I_1["status_presence_event"], keyof StatusPresenceEvent>]: never; }) | undefined;
|
|
3660
3832
|
status_unfollow?: ({
|
|
3661
3833
|
user_ids?: string[] | undefined;
|
|
3662
3834
|
} & {
|
|
3663
|
-
user_ids?: (string[] & string[] & { [
|
|
3664
|
-
} & { [
|
|
3835
|
+
user_ids?: (string[] & string[] & { [K_147 in Exclude<keyof I_1["status_unfollow"]["user_ids"], keyof string[]>]: never; }) | undefined;
|
|
3836
|
+
} & { [K_148 in Exclude<keyof I_1["status_unfollow"], "user_ids">]: never; }) | undefined;
|
|
3665
3837
|
status_update?: ({
|
|
3666
3838
|
status?: string | undefined;
|
|
3667
3839
|
} & {
|
|
3668
3840
|
status?: string | undefined;
|
|
3669
|
-
} & { [
|
|
3841
|
+
} & { [K_149 in Exclude<keyof I_1["status_update"], "status">]: never; }) | undefined;
|
|
3670
3842
|
stream_data?: ({
|
|
3671
3843
|
stream?: {
|
|
3672
3844
|
mode?: number | undefined;
|
|
@@ -3694,7 +3866,7 @@ export declare const Envelope: {
|
|
|
3694
3866
|
channel_id?: string | undefined;
|
|
3695
3867
|
clan_id?: string | undefined;
|
|
3696
3868
|
label?: string | undefined;
|
|
3697
|
-
} & { [
|
|
3869
|
+
} & { [K_150 in Exclude<keyof I_1["stream_data"]["stream"], keyof Stream>]: never; }) | undefined;
|
|
3698
3870
|
sender?: ({
|
|
3699
3871
|
user_id?: string | undefined;
|
|
3700
3872
|
session_id?: string | undefined;
|
|
@@ -3707,10 +3879,10 @@ export declare const Envelope: {
|
|
|
3707
3879
|
username?: string | undefined;
|
|
3708
3880
|
persistence?: boolean | undefined;
|
|
3709
3881
|
status?: string | undefined;
|
|
3710
|
-
} & { [
|
|
3882
|
+
} & { [K_151 in Exclude<keyof I_1["stream_data"]["sender"], keyof UserPresence>]: never; }) | undefined;
|
|
3711
3883
|
data?: string | undefined;
|
|
3712
3884
|
reliable?: boolean | undefined;
|
|
3713
|
-
} & { [
|
|
3885
|
+
} & { [K_152 in Exclude<keyof I_1["stream_data"], keyof StreamData>]: never; }) | undefined;
|
|
3714
3886
|
stream_presence_event?: ({
|
|
3715
3887
|
stream?: {
|
|
3716
3888
|
mode?: number | undefined;
|
|
@@ -3743,7 +3915,7 @@ export declare const Envelope: {
|
|
|
3743
3915
|
channel_id?: string | undefined;
|
|
3744
3916
|
clan_id?: string | undefined;
|
|
3745
3917
|
label?: string | undefined;
|
|
3746
|
-
} & { [
|
|
3918
|
+
} & { [K_153 in Exclude<keyof I_1["stream_presence_event"]["stream"], keyof Stream>]: never; }) | undefined;
|
|
3747
3919
|
joins?: ({
|
|
3748
3920
|
user_id?: string | undefined;
|
|
3749
3921
|
session_id?: string | undefined;
|
|
@@ -3762,7 +3934,7 @@ export declare const Envelope: {
|
|
|
3762
3934
|
username?: string | undefined;
|
|
3763
3935
|
persistence?: boolean | undefined;
|
|
3764
3936
|
status?: string | undefined;
|
|
3765
|
-
} & { [
|
|
3937
|
+
} & { [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
3938
|
user_id?: string | undefined;
|
|
3767
3939
|
session_id?: string | undefined;
|
|
3768
3940
|
username?: string | undefined;
|
|
@@ -3787,16 +3959,16 @@ export declare const Envelope: {
|
|
|
3787
3959
|
username?: string | undefined;
|
|
3788
3960
|
persistence?: boolean | undefined;
|
|
3789
3961
|
status?: string | undefined;
|
|
3790
|
-
} & { [
|
|
3962
|
+
} & { [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
3963
|
user_id?: string | undefined;
|
|
3792
3964
|
session_id?: string | undefined;
|
|
3793
3965
|
username?: string | undefined;
|
|
3794
3966
|
persistence?: boolean | undefined;
|
|
3795
3967
|
status?: string | undefined;
|
|
3796
3968
|
}[]>]: never; }) | undefined;
|
|
3797
|
-
} & { [
|
|
3798
|
-
ping?: ({} & {} & { [
|
|
3799
|
-
pong?: ({} & {} & { [
|
|
3969
|
+
} & { [K_158 in Exclude<keyof I_1["stream_presence_event"], keyof StreamPresenceEvent>]: never; }) | undefined;
|
|
3970
|
+
ping?: ({} & {} & { [K_159 in Exclude<keyof I_1["ping"], never>]: never; }) | undefined;
|
|
3971
|
+
pong?: ({} & {} & { [K_160 in Exclude<keyof I_1["pong"], never>]: never; }) | undefined;
|
|
3800
3972
|
message_typing_event?: ({
|
|
3801
3973
|
clan_id?: string | undefined;
|
|
3802
3974
|
channel_id?: string | undefined;
|
|
@@ -3807,7 +3979,7 @@ export declare const Envelope: {
|
|
|
3807
3979
|
channel_id?: string | undefined;
|
|
3808
3980
|
sender_id?: string | undefined;
|
|
3809
3981
|
mode?: number | undefined;
|
|
3810
|
-
} & { [
|
|
3982
|
+
} & { [K_161 in Exclude<keyof I_1["message_typing_event"], keyof MessageTypingEvent>]: never; }) | undefined;
|
|
3811
3983
|
last_seen_message_event?: ({
|
|
3812
3984
|
channel_id?: string | undefined;
|
|
3813
3985
|
message_id?: string | undefined;
|
|
@@ -3818,7 +3990,7 @@ export declare const Envelope: {
|
|
|
3818
3990
|
message_id?: string | undefined;
|
|
3819
3991
|
mode?: number | undefined;
|
|
3820
3992
|
timestamp?: string | undefined;
|
|
3821
|
-
} & { [
|
|
3993
|
+
} & { [K_162 in Exclude<keyof I_1["last_seen_message_event"], keyof LastSeenMessageEvent>]: never; }) | undefined;
|
|
3822
3994
|
message_reaction_event?: ({
|
|
3823
3995
|
id?: string | undefined;
|
|
3824
3996
|
clan_id?: string | undefined;
|
|
@@ -3847,7 +4019,7 @@ export declare const Envelope: {
|
|
|
3847
4019
|
message_sender_id?: string | undefined;
|
|
3848
4020
|
count?: number | undefined;
|
|
3849
4021
|
mode?: number | undefined;
|
|
3850
|
-
} & { [
|
|
4022
|
+
} & { [K_163 in Exclude<keyof I_1["message_reaction_event"], keyof MessageReactionEvent>]: never; }) | undefined;
|
|
3851
4023
|
voice_joined_event?: ({
|
|
3852
4024
|
clan_id?: string | undefined;
|
|
3853
4025
|
clan_name?: string | undefined;
|
|
@@ -3866,7 +4038,7 @@ export declare const Envelope: {
|
|
|
3866
4038
|
voice_channel_label?: string | undefined;
|
|
3867
4039
|
voice_channel_id?: string | undefined;
|
|
3868
4040
|
last_screenshot?: string | undefined;
|
|
3869
|
-
} & { [
|
|
4041
|
+
} & { [K_164 in Exclude<keyof I_1["voice_joined_event"], keyof VoiceJoinedEvent>]: never; }) | undefined;
|
|
3870
4042
|
voice_leaved_event?: ({
|
|
3871
4043
|
id?: string | undefined;
|
|
3872
4044
|
clan_id?: string | undefined;
|
|
@@ -3877,7 +4049,7 @@ export declare const Envelope: {
|
|
|
3877
4049
|
clan_id?: string | undefined;
|
|
3878
4050
|
voice_channel_id?: string | undefined;
|
|
3879
4051
|
voice_user_id?: string | undefined;
|
|
3880
|
-
} & { [
|
|
4052
|
+
} & { [K_165 in Exclude<keyof I_1["voice_leaved_event"], keyof VoiceLeavedEvent>]: never; }) | undefined;
|
|
3881
4053
|
voice_started_event?: ({
|
|
3882
4054
|
id?: string | undefined;
|
|
3883
4055
|
clan_id?: string | undefined;
|
|
@@ -3886,7 +4058,7 @@ export declare const Envelope: {
|
|
|
3886
4058
|
id?: string | undefined;
|
|
3887
4059
|
clan_id?: string | undefined;
|
|
3888
4060
|
voice_channel_id?: string | undefined;
|
|
3889
|
-
} & { [
|
|
4061
|
+
} & { [K_166 in Exclude<keyof I_1["voice_started_event"], keyof VoiceStartedEvent>]: never; }) | undefined;
|
|
3890
4062
|
voice_ended_event?: ({
|
|
3891
4063
|
id?: string | undefined;
|
|
3892
4064
|
clan_id?: string | undefined;
|
|
@@ -3895,7 +4067,7 @@ export declare const Envelope: {
|
|
|
3895
4067
|
id?: string | undefined;
|
|
3896
4068
|
clan_id?: string | undefined;
|
|
3897
4069
|
voice_channel_id?: string | undefined;
|
|
3898
|
-
} & { [
|
|
4070
|
+
} & { [K_167 in Exclude<keyof I_1["voice_ended_event"], keyof VoiceEndedEvent>]: never; }) | undefined;
|
|
3899
4071
|
channel_created_event?: ({
|
|
3900
4072
|
clan_id?: string | undefined;
|
|
3901
4073
|
category_id?: string | undefined;
|
|
@@ -3916,7 +4088,7 @@ export declare const Envelope: {
|
|
|
3916
4088
|
channel_private?: number | undefined;
|
|
3917
4089
|
channel_type?: number | undefined;
|
|
3918
4090
|
status?: number | undefined;
|
|
3919
|
-
} & { [
|
|
4091
|
+
} & { [K_168 in Exclude<keyof I_1["channel_created_event"], keyof ChannelCreatedEvent>]: never; }) | undefined;
|
|
3920
4092
|
channel_deleted_event?: ({
|
|
3921
4093
|
clan_id?: string | undefined;
|
|
3922
4094
|
category_id?: string | undefined;
|
|
@@ -3929,7 +4101,7 @@ export declare const Envelope: {
|
|
|
3929
4101
|
parrent_id?: string | undefined;
|
|
3930
4102
|
channel_id?: string | undefined;
|
|
3931
4103
|
deletor?: string | undefined;
|
|
3932
|
-
} & { [
|
|
4104
|
+
} & { [K_169 in Exclude<keyof I_1["channel_deleted_event"], keyof ChannelDeletedEvent>]: never; }) | undefined;
|
|
3933
4105
|
channel_updated_event?: ({
|
|
3934
4106
|
clan_id?: string | undefined;
|
|
3935
4107
|
category_id?: string | undefined;
|
|
@@ -3948,7 +4120,7 @@ export declare const Envelope: {
|
|
|
3948
4120
|
channel_label?: string | undefined;
|
|
3949
4121
|
channel_type?: number | undefined;
|
|
3950
4122
|
status?: number | undefined;
|
|
3951
|
-
} & { [
|
|
4123
|
+
} & { [K_170 in Exclude<keyof I_1["channel_updated_event"], keyof ChannelUpdatedEvent>]: never; }) | undefined;
|
|
3952
4124
|
last_pin_message_event?: ({
|
|
3953
4125
|
clan_id?: string | undefined;
|
|
3954
4126
|
channel_id?: string | undefined;
|
|
@@ -3965,7 +4137,7 @@ export declare const Envelope: {
|
|
|
3965
4137
|
user_id?: string | undefined;
|
|
3966
4138
|
timestamp?: string | undefined;
|
|
3967
4139
|
operation?: number | undefined;
|
|
3968
|
-
} & { [
|
|
4140
|
+
} & { [K_171 in Exclude<keyof I_1["last_pin_message_event"], keyof LastPinMessageEvent>]: never; }) | undefined;
|
|
3969
4141
|
custom_status_event?: ({
|
|
3970
4142
|
clan_id?: string | undefined;
|
|
3971
4143
|
user_id?: string | undefined;
|
|
@@ -3976,7 +4148,7 @@ export declare const Envelope: {
|
|
|
3976
4148
|
user_id?: string | undefined;
|
|
3977
4149
|
username?: string | undefined;
|
|
3978
4150
|
status?: string | undefined;
|
|
3979
|
-
} & { [
|
|
4151
|
+
} & { [K_172 in Exclude<keyof I_1["custom_status_event"], keyof CustomStatusEvent>]: never; }) | undefined;
|
|
3980
4152
|
user_channel_added_event?: ({
|
|
3981
4153
|
channel_id?: string | undefined;
|
|
3982
4154
|
users?: {
|
|
@@ -4001,7 +4173,7 @@ export declare const Envelope: {
|
|
|
4001
4173
|
user_id?: string | undefined;
|
|
4002
4174
|
avatar?: string | undefined;
|
|
4003
4175
|
username?: string | undefined;
|
|
4004
|
-
} & { [
|
|
4176
|
+
} & { [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
4177
|
user_id?: string | undefined;
|
|
4006
4178
|
avatar?: string | undefined;
|
|
4007
4179
|
username?: string | undefined;
|
|
@@ -4009,21 +4181,21 @@ export declare const Envelope: {
|
|
|
4009
4181
|
status?: string | undefined;
|
|
4010
4182
|
clan_id?: string | undefined;
|
|
4011
4183
|
channel_type?: number | undefined;
|
|
4012
|
-
} & { [
|
|
4184
|
+
} & { [K_175 in Exclude<keyof I_1["user_channel_added_event"], keyof UserChannelAdded>]: never; }) | undefined;
|
|
4013
4185
|
user_channel_removed_event?: ({
|
|
4014
4186
|
channel_id?: string | undefined;
|
|
4015
4187
|
user_ids?: string[] | undefined;
|
|
4016
4188
|
} & {
|
|
4017
4189
|
channel_id?: string | undefined;
|
|
4018
|
-
user_ids?: (string[] & string[] & { [
|
|
4019
|
-
} & { [
|
|
4190
|
+
user_ids?: (string[] & string[] & { [K_176 in Exclude<keyof I_1["user_channel_removed_event"]["user_ids"], keyof string[]>]: never; }) | undefined;
|
|
4191
|
+
} & { [K_177 in Exclude<keyof I_1["user_channel_removed_event"], keyof UserChannelRemoved>]: never; }) | undefined;
|
|
4020
4192
|
user_clan_removed_event?: ({
|
|
4021
4193
|
clan_id?: string | undefined;
|
|
4022
4194
|
user_ids?: string[] | undefined;
|
|
4023
4195
|
} & {
|
|
4024
4196
|
clan_id?: string | undefined;
|
|
4025
|
-
user_ids?: (string[] & string[] & { [
|
|
4026
|
-
} & { [
|
|
4197
|
+
user_ids?: (string[] & string[] & { [K_178 in Exclude<keyof I_1["user_clan_removed_event"]["user_ids"], keyof string[]>]: never; }) | undefined;
|
|
4198
|
+
} & { [K_179 in Exclude<keyof I_1["user_clan_removed_event"], keyof UserClanRemoved>]: never; }) | undefined;
|
|
4027
4199
|
clan_updated_event?: ({
|
|
4028
4200
|
clan_id?: string | undefined;
|
|
4029
4201
|
clan_name?: string | undefined;
|
|
@@ -4032,7 +4204,7 @@ export declare const Envelope: {
|
|
|
4032
4204
|
clan_id?: string | undefined;
|
|
4033
4205
|
clan_name?: string | undefined;
|
|
4034
4206
|
clan_logo?: string | undefined;
|
|
4035
|
-
} & { [
|
|
4207
|
+
} & { [K_180 in Exclude<keyof I_1["clan_updated_event"], keyof ClanUpdatedEvent>]: never; }) | undefined;
|
|
4036
4208
|
clan_profile_updated_event?: ({
|
|
4037
4209
|
user_id?: string | undefined;
|
|
4038
4210
|
clan_nick?: string | undefined;
|
|
@@ -4043,12 +4215,12 @@ export declare const Envelope: {
|
|
|
4043
4215
|
clan_nick?: string | undefined;
|
|
4044
4216
|
clan_avatar?: string | undefined;
|
|
4045
4217
|
clan_id?: string | undefined;
|
|
4046
|
-
} & { [
|
|
4218
|
+
} & { [K_181 in Exclude<keyof I_1["clan_profile_updated_event"], keyof ClanProfileUpdatedEvent>]: never; }) | undefined;
|
|
4047
4219
|
clan_name_existed_event?: ({
|
|
4048
4220
|
clan_name?: string | undefined;
|
|
4049
4221
|
} & {
|
|
4050
4222
|
clan_name?: string | undefined;
|
|
4051
|
-
} & { [
|
|
4223
|
+
} & { [K_182 in Exclude<keyof I_1["clan_name_existed_event"], "clan_name">]: never; }) | undefined;
|
|
4052
4224
|
user_profile_updated_event?: ({
|
|
4053
4225
|
user_id?: string | undefined;
|
|
4054
4226
|
display_name?: string | undefined;
|
|
@@ -4063,7 +4235,7 @@ export declare const Envelope: {
|
|
|
4063
4235
|
about_me?: string | undefined;
|
|
4064
4236
|
channel_id?: string | undefined;
|
|
4065
4237
|
clan_id?: string | undefined;
|
|
4066
|
-
} & { [
|
|
4238
|
+
} & { [K_183 in Exclude<keyof I_1["user_profile_updated_event"], keyof UserProfileUpdatedEvent>]: never; }) | undefined;
|
|
4067
4239
|
emojis_listed_event?: ({
|
|
4068
4240
|
clan_id?: string | undefined;
|
|
4069
4241
|
emoji_list?: {
|
|
@@ -4093,14 +4265,14 @@ export declare const Envelope: {
|
|
|
4093
4265
|
shortname?: string | undefined;
|
|
4094
4266
|
category?: string | undefined;
|
|
4095
4267
|
creator_id?: string | undefined;
|
|
4096
|
-
} & { [
|
|
4268
|
+
} & { [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
4269
|
id?: string | undefined;
|
|
4098
4270
|
src?: string | undefined;
|
|
4099
4271
|
shortname?: string | undefined;
|
|
4100
4272
|
category?: string | undefined;
|
|
4101
4273
|
creator_id?: string | undefined;
|
|
4102
4274
|
}[]>]: never; }) | undefined;
|
|
4103
|
-
} & { [
|
|
4275
|
+
} & { [K_186 in Exclude<keyof I_1["emojis_listed_event"], keyof EmojiListedEvent>]: never; }) | undefined;
|
|
4104
4276
|
sticker_listed_event?: ({
|
|
4105
4277
|
clan_id?: string | undefined;
|
|
4106
4278
|
stickers?: {
|
|
@@ -4138,7 +4310,7 @@ export declare const Envelope: {
|
|
|
4138
4310
|
creator_id?: string | undefined;
|
|
4139
4311
|
create_time?: Date | undefined;
|
|
4140
4312
|
clan_id?: string | undefined;
|
|
4141
|
-
} & { [
|
|
4313
|
+
} & { [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
4314
|
id?: string | undefined;
|
|
4143
4315
|
source?: string | undefined;
|
|
4144
4316
|
shortname?: string | undefined;
|
|
@@ -4147,7 +4319,7 @@ export declare const Envelope: {
|
|
|
4147
4319
|
create_time?: Date | undefined;
|
|
4148
4320
|
clan_id?: string | undefined;
|
|
4149
4321
|
}[]>]: never; }) | undefined;
|
|
4150
|
-
} & { [
|
|
4322
|
+
} & { [K_189 in Exclude<keyof I_1["sticker_listed_event"], keyof StrickerListedEvent>]: never; }) | undefined;
|
|
4151
4323
|
channel_desc_list_event?: ({
|
|
4152
4324
|
channeldesc?: {
|
|
4153
4325
|
clan_id?: string | undefined;
|
|
@@ -4155,13 +4327,9 @@ export declare const Envelope: {
|
|
|
4155
4327
|
type?: number | undefined;
|
|
4156
4328
|
channel_label?: string | undefined;
|
|
4157
4329
|
channel_private?: number | undefined;
|
|
4158
|
-
channel_avatar?: string[] | undefined;
|
|
4159
|
-
user_id?: string[] | undefined;
|
|
4160
|
-
status?: number | undefined;
|
|
4161
4330
|
meeting_code?: string | undefined;
|
|
4162
|
-
usernames?: string | undefined;
|
|
4163
4331
|
clan_name?: string | undefined;
|
|
4164
|
-
|
|
4332
|
+
parrent_id?: string | undefined;
|
|
4165
4333
|
}[] | undefined;
|
|
4166
4334
|
} & {
|
|
4167
4335
|
channeldesc?: ({
|
|
@@ -4170,54 +4338,38 @@ export declare const Envelope: {
|
|
|
4170
4338
|
type?: number | undefined;
|
|
4171
4339
|
channel_label?: string | undefined;
|
|
4172
4340
|
channel_private?: number | undefined;
|
|
4173
|
-
channel_avatar?: string[] | undefined;
|
|
4174
|
-
user_id?: string[] | undefined;
|
|
4175
|
-
status?: number | undefined;
|
|
4176
4341
|
meeting_code?: string | undefined;
|
|
4177
|
-
usernames?: string | undefined;
|
|
4178
4342
|
clan_name?: string | undefined;
|
|
4179
|
-
|
|
4343
|
+
parrent_id?: string | undefined;
|
|
4180
4344
|
}[] & ({
|
|
4181
4345
|
clan_id?: string | undefined;
|
|
4182
4346
|
channel_id?: string | undefined;
|
|
4183
4347
|
type?: number | undefined;
|
|
4184
4348
|
channel_label?: string | undefined;
|
|
4185
4349
|
channel_private?: number | undefined;
|
|
4186
|
-
channel_avatar?: string[] | undefined;
|
|
4187
|
-
user_id?: string[] | undefined;
|
|
4188
|
-
status?: number | undefined;
|
|
4189
4350
|
meeting_code?: string | undefined;
|
|
4190
|
-
usernames?: string | undefined;
|
|
4191
4351
|
clan_name?: string | undefined;
|
|
4192
|
-
|
|
4352
|
+
parrent_id?: string | undefined;
|
|
4193
4353
|
} & {
|
|
4194
4354
|
clan_id?: string | undefined;
|
|
4195
4355
|
channel_id?: string | undefined;
|
|
4196
4356
|
type?: number | undefined;
|
|
4197
4357
|
channel_label?: string | undefined;
|
|
4198
4358
|
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
4359
|
meeting_code?: string | undefined;
|
|
4203
|
-
usernames?: string | undefined;
|
|
4204
4360
|
clan_name?: string | undefined;
|
|
4205
|
-
|
|
4206
|
-
} & { [
|
|
4361
|
+
parrent_id?: string | undefined;
|
|
4362
|
+
} & { [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
4363
|
clan_id?: string | undefined;
|
|
4208
4364
|
channel_id?: string | undefined;
|
|
4209
4365
|
type?: number | undefined;
|
|
4210
4366
|
channel_label?: string | undefined;
|
|
4211
4367
|
channel_private?: number | undefined;
|
|
4212
|
-
channel_avatar?: string[] | undefined;
|
|
4213
|
-
user_id?: string[] | undefined;
|
|
4214
|
-
status?: number | undefined;
|
|
4215
4368
|
meeting_code?: string | undefined;
|
|
4216
|
-
usernames?: string | undefined;
|
|
4217
4369
|
clan_name?: string | undefined;
|
|
4218
|
-
|
|
4370
|
+
parrent_id?: string | undefined;
|
|
4219
4371
|
}[]>]: never; }) | undefined;
|
|
4220
|
-
} & { [
|
|
4372
|
+
} & { [K_192 in Exclude<keyof I_1["channel_desc_list_event"], "channeldesc">]: never; }) | undefined;
|
|
4221
4373
|
hashtag_dm_list_event?: ({
|
|
4222
4374
|
user_id?: string[] | undefined;
|
|
4223
4375
|
limit?: number | undefined;
|
|
@@ -4229,9 +4381,10 @@ export declare const Envelope: {
|
|
|
4229
4381
|
meeting_code?: string | undefined;
|
|
4230
4382
|
type?: number | undefined;
|
|
4231
4383
|
channel_private?: number | undefined;
|
|
4384
|
+
parrent_id?: string | undefined;
|
|
4232
4385
|
}[] | undefined;
|
|
4233
4386
|
} & {
|
|
4234
|
-
user_id?: (string[] & string[] & { [
|
|
4387
|
+
user_id?: (string[] & string[] & { [K_193 in Exclude<keyof I_1["hashtag_dm_list_event"]["user_id"], keyof string[]>]: never; }) | undefined;
|
|
4235
4388
|
limit?: number | undefined;
|
|
4236
4389
|
hashtag_dm?: ({
|
|
4237
4390
|
channel_id?: string | undefined;
|
|
@@ -4241,6 +4394,7 @@ export declare const Envelope: {
|
|
|
4241
4394
|
meeting_code?: string | undefined;
|
|
4242
4395
|
type?: number | undefined;
|
|
4243
4396
|
channel_private?: number | undefined;
|
|
4397
|
+
parrent_id?: string | undefined;
|
|
4244
4398
|
}[] & ({
|
|
4245
4399
|
channel_id?: string | undefined;
|
|
4246
4400
|
channel_label?: string | undefined;
|
|
@@ -4249,6 +4403,7 @@ export declare const Envelope: {
|
|
|
4249
4403
|
meeting_code?: string | undefined;
|
|
4250
4404
|
type?: number | undefined;
|
|
4251
4405
|
channel_private?: number | undefined;
|
|
4406
|
+
parrent_id?: string | undefined;
|
|
4252
4407
|
} & {
|
|
4253
4408
|
channel_id?: string | undefined;
|
|
4254
4409
|
channel_label?: string | undefined;
|
|
@@ -4257,7 +4412,8 @@ export declare const Envelope: {
|
|
|
4257
4412
|
meeting_code?: string | undefined;
|
|
4258
4413
|
type?: number | undefined;
|
|
4259
4414
|
channel_private?: number | undefined;
|
|
4260
|
-
|
|
4415
|
+
parrent_id?: string | undefined;
|
|
4416
|
+
} & { [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
4417
|
channel_id?: string | undefined;
|
|
4262
4418
|
channel_label?: string | undefined;
|
|
4263
4419
|
clan_id?: string | undefined;
|
|
@@ -4265,9 +4421,89 @@ export declare const Envelope: {
|
|
|
4265
4421
|
meeting_code?: string | undefined;
|
|
4266
4422
|
type?: number | undefined;
|
|
4267
4423
|
channel_private?: number | undefined;
|
|
4424
|
+
parrent_id?: string | undefined;
|
|
4268
4425
|
}[]>]: never; }) | undefined;
|
|
4269
|
-
} & { [
|
|
4270
|
-
|
|
4426
|
+
} & { [K_196 in Exclude<keyof I_1["hashtag_dm_list_event"], keyof HashtagDmListEvent>]: never; }) | undefined;
|
|
4427
|
+
notification_channel_setting_event?: ({
|
|
4428
|
+
channel_id?: string | undefined;
|
|
4429
|
+
notification_user_channel?: {
|
|
4430
|
+
id?: string | undefined;
|
|
4431
|
+
notification_setting_type?: number | undefined;
|
|
4432
|
+
time_mute?: Date | undefined;
|
|
4433
|
+
active?: number | undefined;
|
|
4434
|
+
} | undefined;
|
|
4435
|
+
} & {
|
|
4436
|
+
channel_id?: string | undefined;
|
|
4437
|
+
notification_user_channel?: ({
|
|
4438
|
+
id?: string | undefined;
|
|
4439
|
+
notification_setting_type?: number | undefined;
|
|
4440
|
+
time_mute?: Date | undefined;
|
|
4441
|
+
active?: number | undefined;
|
|
4442
|
+
} & {
|
|
4443
|
+
id?: string | undefined;
|
|
4444
|
+
notification_setting_type?: number | undefined;
|
|
4445
|
+
time_mute?: Date | undefined;
|
|
4446
|
+
active?: number | undefined;
|
|
4447
|
+
} & { [K_197 in Exclude<keyof I_1["notification_channel_setting_event"]["notification_user_channel"], keyof NotificationUserChannel>]: never; }) | undefined;
|
|
4448
|
+
} & { [K_198 in Exclude<keyof I_1["notification_channel_setting_event"], keyof NotificationChannelSettingEvent>]: never; }) | undefined;
|
|
4449
|
+
notification_category_setting_event?: ({
|
|
4450
|
+
category_id?: string | undefined;
|
|
4451
|
+
notification_user_channel?: {
|
|
4452
|
+
id?: string | undefined;
|
|
4453
|
+
notification_setting_type?: number | undefined;
|
|
4454
|
+
time_mute?: Date | undefined;
|
|
4455
|
+
active?: number | undefined;
|
|
4456
|
+
} | undefined;
|
|
4457
|
+
} & {
|
|
4458
|
+
category_id?: string | undefined;
|
|
4459
|
+
notification_user_channel?: ({
|
|
4460
|
+
id?: string | undefined;
|
|
4461
|
+
notification_setting_type?: number | undefined;
|
|
4462
|
+
time_mute?: Date | undefined;
|
|
4463
|
+
active?: number | undefined;
|
|
4464
|
+
} & {
|
|
4465
|
+
id?: string | undefined;
|
|
4466
|
+
notification_setting_type?: number | undefined;
|
|
4467
|
+
time_mute?: Date | undefined;
|
|
4468
|
+
active?: number | undefined;
|
|
4469
|
+
} & { [K_199 in Exclude<keyof I_1["notification_category_setting_event"]["notification_user_channel"], keyof NotificationUserChannel>]: never; }) | undefined;
|
|
4470
|
+
} & { [K_200 in Exclude<keyof I_1["notification_category_setting_event"], keyof NotificationCategorySettingEvent>]: never; }) | undefined;
|
|
4471
|
+
notification_clan_setting_event?: ({
|
|
4472
|
+
clan_id?: string | undefined;
|
|
4473
|
+
notification_setting?: {
|
|
4474
|
+
id?: string | undefined;
|
|
4475
|
+
notification_setting_type?: number | undefined;
|
|
4476
|
+
} | undefined;
|
|
4477
|
+
} & {
|
|
4478
|
+
clan_id?: string | undefined;
|
|
4479
|
+
notification_setting?: ({
|
|
4480
|
+
id?: string | undefined;
|
|
4481
|
+
notification_setting_type?: number | undefined;
|
|
4482
|
+
} & {
|
|
4483
|
+
id?: string | undefined;
|
|
4484
|
+
notification_setting_type?: number | undefined;
|
|
4485
|
+
} & { [K_201 in Exclude<keyof I_1["notification_clan_setting_event"]["notification_setting"], keyof NotificationSetting>]: never; }) | undefined;
|
|
4486
|
+
} & { [K_202 in Exclude<keyof I_1["notification_clan_setting_event"], keyof NotificationClanSettingEvent>]: never; }) | undefined;
|
|
4487
|
+
notifi_react_message_event?: ({
|
|
4488
|
+
channel_id?: string | undefined;
|
|
4489
|
+
notifi_react_message?: {
|
|
4490
|
+
id?: string | undefined;
|
|
4491
|
+
user_id?: string | undefined;
|
|
4492
|
+
channel_id?: string | undefined;
|
|
4493
|
+
} | undefined;
|
|
4494
|
+
} & {
|
|
4495
|
+
channel_id?: string | undefined;
|
|
4496
|
+
notifi_react_message?: ({
|
|
4497
|
+
id?: string | undefined;
|
|
4498
|
+
user_id?: string | undefined;
|
|
4499
|
+
channel_id?: string | undefined;
|
|
4500
|
+
} & {
|
|
4501
|
+
id?: string | undefined;
|
|
4502
|
+
user_id?: string | undefined;
|
|
4503
|
+
channel_id?: string | undefined;
|
|
4504
|
+
} & { [K_203 in Exclude<keyof I_1["notifi_react_message_event"]["notifi_react_message"], keyof NotifiReactMessage>]: never; }) | undefined;
|
|
4505
|
+
} & { [K_204 in Exclude<keyof I_1["notifi_react_message_event"], keyof NotifiReactMessageEvent>]: never; }) | undefined;
|
|
4506
|
+
} & { [K_205 in Exclude<keyof I_1, keyof Envelope>]: never; }>(object: I_1): Envelope;
|
|
4271
4507
|
};
|
|
4272
4508
|
export declare const HashtagDmListEvent: {
|
|
4273
4509
|
encode(message: HashtagDmListEvent, writer?: _m0.Writer): _m0.Writer;
|
|
@@ -4285,6 +4521,7 @@ export declare const HashtagDmListEvent: {
|
|
|
4285
4521
|
meeting_code?: string | undefined;
|
|
4286
4522
|
type?: number | undefined;
|
|
4287
4523
|
channel_private?: number | undefined;
|
|
4524
|
+
parrent_id?: string | undefined;
|
|
4288
4525
|
}[] | undefined;
|
|
4289
4526
|
} & {
|
|
4290
4527
|
user_id?: (string[] & string[] & { [K in Exclude<keyof I["user_id"], keyof string[]>]: never; }) | undefined;
|
|
@@ -4297,6 +4534,7 @@ export declare const HashtagDmListEvent: {
|
|
|
4297
4534
|
meeting_code?: string | undefined;
|
|
4298
4535
|
type?: number | undefined;
|
|
4299
4536
|
channel_private?: number | undefined;
|
|
4537
|
+
parrent_id?: string | undefined;
|
|
4300
4538
|
}[] & ({
|
|
4301
4539
|
channel_id?: string | undefined;
|
|
4302
4540
|
channel_label?: string | undefined;
|
|
@@ -4305,6 +4543,7 @@ export declare const HashtagDmListEvent: {
|
|
|
4305
4543
|
meeting_code?: string | undefined;
|
|
4306
4544
|
type?: number | undefined;
|
|
4307
4545
|
channel_private?: number | undefined;
|
|
4546
|
+
parrent_id?: string | undefined;
|
|
4308
4547
|
} & {
|
|
4309
4548
|
channel_id?: string | undefined;
|
|
4310
4549
|
channel_label?: string | undefined;
|
|
@@ -4313,6 +4552,7 @@ export declare const HashtagDmListEvent: {
|
|
|
4313
4552
|
meeting_code?: string | undefined;
|
|
4314
4553
|
type?: number | undefined;
|
|
4315
4554
|
channel_private?: number | undefined;
|
|
4555
|
+
parrent_id?: string | undefined;
|
|
4316
4556
|
} & { [K_1 in Exclude<keyof I["hashtag_dm"][number], keyof HashtagDm>]: never; })[] & { [K_2 in Exclude<keyof I["hashtag_dm"], keyof {
|
|
4317
4557
|
channel_id?: string | undefined;
|
|
4318
4558
|
channel_label?: string | undefined;
|
|
@@ -4321,6 +4561,7 @@ export declare const HashtagDmListEvent: {
|
|
|
4321
4561
|
meeting_code?: string | undefined;
|
|
4322
4562
|
type?: number | undefined;
|
|
4323
4563
|
channel_private?: number | undefined;
|
|
4564
|
+
parrent_id?: string | undefined;
|
|
4324
4565
|
}[]>]: never; }) | undefined;
|
|
4325
4566
|
} & { [K_3 in Exclude<keyof I, keyof HashtagDmListEvent>]: never; }>(base?: I | undefined): HashtagDmListEvent;
|
|
4326
4567
|
fromPartial<I_1 extends {
|
|
@@ -4334,6 +4575,7 @@ export declare const HashtagDmListEvent: {
|
|
|
4334
4575
|
meeting_code?: string | undefined;
|
|
4335
4576
|
type?: number | undefined;
|
|
4336
4577
|
channel_private?: number | undefined;
|
|
4578
|
+
parrent_id?: string | undefined;
|
|
4337
4579
|
}[] | undefined;
|
|
4338
4580
|
} & {
|
|
4339
4581
|
user_id?: (string[] & string[] & { [K_4 in Exclude<keyof I_1["user_id"], keyof string[]>]: never; }) | undefined;
|
|
@@ -4346,6 +4588,7 @@ export declare const HashtagDmListEvent: {
|
|
|
4346
4588
|
meeting_code?: string | undefined;
|
|
4347
4589
|
type?: number | undefined;
|
|
4348
4590
|
channel_private?: number | undefined;
|
|
4591
|
+
parrent_id?: string | undefined;
|
|
4349
4592
|
}[] & ({
|
|
4350
4593
|
channel_id?: string | undefined;
|
|
4351
4594
|
channel_label?: string | undefined;
|
|
@@ -4354,6 +4597,7 @@ export declare const HashtagDmListEvent: {
|
|
|
4354
4597
|
meeting_code?: string | undefined;
|
|
4355
4598
|
type?: number | undefined;
|
|
4356
4599
|
channel_private?: number | undefined;
|
|
4600
|
+
parrent_id?: string | undefined;
|
|
4357
4601
|
} & {
|
|
4358
4602
|
channel_id?: string | undefined;
|
|
4359
4603
|
channel_label?: string | undefined;
|
|
@@ -4362,6 +4606,7 @@ export declare const HashtagDmListEvent: {
|
|
|
4362
4606
|
meeting_code?: string | undefined;
|
|
4363
4607
|
type?: number | undefined;
|
|
4364
4608
|
channel_private?: number | undefined;
|
|
4609
|
+
parrent_id?: string | undefined;
|
|
4365
4610
|
} & { [K_5 in Exclude<keyof I_1["hashtag_dm"][number], keyof HashtagDm>]: never; })[] & { [K_6 in Exclude<keyof I_1["hashtag_dm"], keyof {
|
|
4366
4611
|
channel_id?: string | undefined;
|
|
4367
4612
|
channel_label?: string | undefined;
|
|
@@ -4370,6 +4615,7 @@ export declare const HashtagDmListEvent: {
|
|
|
4370
4615
|
meeting_code?: string | undefined;
|
|
4371
4616
|
type?: number | undefined;
|
|
4372
4617
|
channel_private?: number | undefined;
|
|
4618
|
+
parrent_id?: string | undefined;
|
|
4373
4619
|
}[]>]: never; }) | undefined;
|
|
4374
4620
|
} & { [K_7 in Exclude<keyof I_1, keyof HashtagDmListEvent>]: never; }>(object: I_1): HashtagDmListEvent;
|
|
4375
4621
|
};
|
|
@@ -4386,6 +4632,7 @@ export declare const HashtagDm: {
|
|
|
4386
4632
|
meeting_code?: string | undefined;
|
|
4387
4633
|
type?: number | undefined;
|
|
4388
4634
|
channel_private?: number | undefined;
|
|
4635
|
+
parrent_id?: string | undefined;
|
|
4389
4636
|
} & {
|
|
4390
4637
|
channel_id?: string | undefined;
|
|
4391
4638
|
channel_label?: string | undefined;
|
|
@@ -4394,6 +4641,7 @@ export declare const HashtagDm: {
|
|
|
4394
4641
|
meeting_code?: string | undefined;
|
|
4395
4642
|
type?: number | undefined;
|
|
4396
4643
|
channel_private?: number | undefined;
|
|
4644
|
+
parrent_id?: string | undefined;
|
|
4397
4645
|
} & { [K in Exclude<keyof I, keyof HashtagDm>]: never; }>(base?: I | undefined): HashtagDm;
|
|
4398
4646
|
fromPartial<I_1 extends {
|
|
4399
4647
|
channel_id?: string | undefined;
|
|
@@ -4403,6 +4651,7 @@ export declare const HashtagDm: {
|
|
|
4403
4651
|
meeting_code?: string | undefined;
|
|
4404
4652
|
type?: number | undefined;
|
|
4405
4653
|
channel_private?: number | undefined;
|
|
4654
|
+
parrent_id?: string | undefined;
|
|
4406
4655
|
} & {
|
|
4407
4656
|
channel_id?: string | undefined;
|
|
4408
4657
|
channel_label?: string | undefined;
|
|
@@ -4411,6 +4660,7 @@ export declare const HashtagDm: {
|
|
|
4411
4660
|
meeting_code?: string | undefined;
|
|
4412
4661
|
type?: number | undefined;
|
|
4413
4662
|
channel_private?: number | undefined;
|
|
4663
|
+
parrent_id?: string | undefined;
|
|
4414
4664
|
} & { [K_1 in Exclude<keyof I_1, keyof HashtagDm>]: never; }>(object: I_1): HashtagDm;
|
|
4415
4665
|
};
|
|
4416
4666
|
export declare const ChannelDescListEvent: {
|
|
@@ -4425,13 +4675,9 @@ export declare const ChannelDescListEvent: {
|
|
|
4425
4675
|
type?: number | undefined;
|
|
4426
4676
|
channel_label?: string | undefined;
|
|
4427
4677
|
channel_private?: number | undefined;
|
|
4428
|
-
channel_avatar?: string[] | undefined;
|
|
4429
|
-
user_id?: string[] | undefined;
|
|
4430
|
-
status?: number | undefined;
|
|
4431
4678
|
meeting_code?: string | undefined;
|
|
4432
|
-
usernames?: string | undefined;
|
|
4433
4679
|
clan_name?: string | undefined;
|
|
4434
|
-
|
|
4680
|
+
parrent_id?: string | undefined;
|
|
4435
4681
|
}[] | undefined;
|
|
4436
4682
|
} & {
|
|
4437
4683
|
channeldesc?: ({
|
|
@@ -4440,54 +4686,38 @@ export declare const ChannelDescListEvent: {
|
|
|
4440
4686
|
type?: number | undefined;
|
|
4441
4687
|
channel_label?: string | undefined;
|
|
4442
4688
|
channel_private?: number | undefined;
|
|
4443
|
-
channel_avatar?: string[] | undefined;
|
|
4444
|
-
user_id?: string[] | undefined;
|
|
4445
|
-
status?: number | undefined;
|
|
4446
4689
|
meeting_code?: string | undefined;
|
|
4447
|
-
usernames?: string | undefined;
|
|
4448
4690
|
clan_name?: string | undefined;
|
|
4449
|
-
|
|
4691
|
+
parrent_id?: string | undefined;
|
|
4450
4692
|
}[] & ({
|
|
4451
4693
|
clan_id?: string | undefined;
|
|
4452
4694
|
channel_id?: string | undefined;
|
|
4453
4695
|
type?: number | undefined;
|
|
4454
4696
|
channel_label?: string | undefined;
|
|
4455
4697
|
channel_private?: number | undefined;
|
|
4456
|
-
channel_avatar?: string[] | undefined;
|
|
4457
|
-
user_id?: string[] | undefined;
|
|
4458
|
-
status?: number | undefined;
|
|
4459
4698
|
meeting_code?: string | undefined;
|
|
4460
|
-
usernames?: string | undefined;
|
|
4461
4699
|
clan_name?: string | undefined;
|
|
4462
|
-
|
|
4700
|
+
parrent_id?: string | undefined;
|
|
4463
4701
|
} & {
|
|
4464
4702
|
clan_id?: string | undefined;
|
|
4465
4703
|
channel_id?: string | undefined;
|
|
4466
4704
|
type?: number | undefined;
|
|
4467
4705
|
channel_label?: string | undefined;
|
|
4468
4706
|
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
4707
|
meeting_code?: string | undefined;
|
|
4473
|
-
usernames?: string | undefined;
|
|
4474
4708
|
clan_name?: string | undefined;
|
|
4475
|
-
|
|
4476
|
-
} & { [
|
|
4709
|
+
parrent_id?: string | undefined;
|
|
4710
|
+
} & { [K in Exclude<keyof I["channeldesc"][number], keyof ChannelDescription>]: never; })[] & { [K_1 in Exclude<keyof I["channeldesc"], keyof {
|
|
4477
4711
|
clan_id?: string | undefined;
|
|
4478
4712
|
channel_id?: string | undefined;
|
|
4479
4713
|
type?: number | undefined;
|
|
4480
4714
|
channel_label?: string | undefined;
|
|
4481
4715
|
channel_private?: number | undefined;
|
|
4482
|
-
channel_avatar?: string[] | undefined;
|
|
4483
|
-
user_id?: string[] | undefined;
|
|
4484
|
-
status?: number | undefined;
|
|
4485
4716
|
meeting_code?: string | undefined;
|
|
4486
|
-
usernames?: string | undefined;
|
|
4487
4717
|
clan_name?: string | undefined;
|
|
4488
|
-
|
|
4718
|
+
parrent_id?: string | undefined;
|
|
4489
4719
|
}[]>]: never; }) | undefined;
|
|
4490
|
-
} & { [
|
|
4720
|
+
} & { [K_2 in Exclude<keyof I, "channeldesc">]: never; }>(base?: I | undefined): ChannelDescListEvent;
|
|
4491
4721
|
fromPartial<I_1 extends {
|
|
4492
4722
|
channeldesc?: {
|
|
4493
4723
|
clan_id?: string | undefined;
|
|
@@ -4495,13 +4725,9 @@ export declare const ChannelDescListEvent: {
|
|
|
4495
4725
|
type?: number | undefined;
|
|
4496
4726
|
channel_label?: string | undefined;
|
|
4497
4727
|
channel_private?: number | undefined;
|
|
4498
|
-
channel_avatar?: string[] | undefined;
|
|
4499
|
-
user_id?: string[] | undefined;
|
|
4500
|
-
status?: number | undefined;
|
|
4501
4728
|
meeting_code?: string | undefined;
|
|
4502
|
-
usernames?: string | undefined;
|
|
4503
4729
|
clan_name?: string | undefined;
|
|
4504
|
-
|
|
4730
|
+
parrent_id?: string | undefined;
|
|
4505
4731
|
}[] | undefined;
|
|
4506
4732
|
} & {
|
|
4507
4733
|
channeldesc?: ({
|
|
@@ -4510,54 +4736,38 @@ export declare const ChannelDescListEvent: {
|
|
|
4510
4736
|
type?: number | undefined;
|
|
4511
4737
|
channel_label?: string | undefined;
|
|
4512
4738
|
channel_private?: number | undefined;
|
|
4513
|
-
channel_avatar?: string[] | undefined;
|
|
4514
|
-
user_id?: string[] | undefined;
|
|
4515
|
-
status?: number | undefined;
|
|
4516
4739
|
meeting_code?: string | undefined;
|
|
4517
|
-
usernames?: string | undefined;
|
|
4518
4740
|
clan_name?: string | undefined;
|
|
4519
|
-
|
|
4741
|
+
parrent_id?: string | undefined;
|
|
4520
4742
|
}[] & ({
|
|
4521
4743
|
clan_id?: string | undefined;
|
|
4522
4744
|
channel_id?: string | undefined;
|
|
4523
4745
|
type?: number | undefined;
|
|
4524
4746
|
channel_label?: string | undefined;
|
|
4525
4747
|
channel_private?: number | undefined;
|
|
4526
|
-
channel_avatar?: string[] | undefined;
|
|
4527
|
-
user_id?: string[] | undefined;
|
|
4528
|
-
status?: number | undefined;
|
|
4529
4748
|
meeting_code?: string | undefined;
|
|
4530
|
-
usernames?: string | undefined;
|
|
4531
4749
|
clan_name?: string | undefined;
|
|
4532
|
-
|
|
4750
|
+
parrent_id?: string | undefined;
|
|
4533
4751
|
} & {
|
|
4534
4752
|
clan_id?: string | undefined;
|
|
4535
4753
|
channel_id?: string | undefined;
|
|
4536
4754
|
type?: number | undefined;
|
|
4537
4755
|
channel_label?: string | undefined;
|
|
4538
4756
|
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
4757
|
meeting_code?: string | undefined;
|
|
4543
|
-
usernames?: string | undefined;
|
|
4544
4758
|
clan_name?: string | undefined;
|
|
4545
|
-
|
|
4546
|
-
} & { [
|
|
4759
|
+
parrent_id?: string | undefined;
|
|
4760
|
+
} & { [K_3 in Exclude<keyof I_1["channeldesc"][number], keyof ChannelDescription>]: never; })[] & { [K_4 in Exclude<keyof I_1["channeldesc"], keyof {
|
|
4547
4761
|
clan_id?: string | undefined;
|
|
4548
4762
|
channel_id?: string | undefined;
|
|
4549
4763
|
type?: number | undefined;
|
|
4550
4764
|
channel_label?: string | undefined;
|
|
4551
4765
|
channel_private?: number | undefined;
|
|
4552
|
-
channel_avatar?: string[] | undefined;
|
|
4553
|
-
user_id?: string[] | undefined;
|
|
4554
|
-
status?: number | undefined;
|
|
4555
4766
|
meeting_code?: string | undefined;
|
|
4556
|
-
usernames?: string | undefined;
|
|
4557
4767
|
clan_name?: string | undefined;
|
|
4558
|
-
|
|
4768
|
+
parrent_id?: string | undefined;
|
|
4559
4769
|
}[]>]: never; }) | undefined;
|
|
4560
|
-
} & { [
|
|
4770
|
+
} & { [K_5 in Exclude<keyof I_1, "channeldesc">]: never; }>(object: I_1): ChannelDescListEvent;
|
|
4561
4771
|
};
|
|
4562
4772
|
export declare const ChannelDescription: {
|
|
4563
4773
|
encode(message: ChannelDescription, writer?: _m0.Writer): _m0.Writer;
|
|
@@ -4570,54 +4780,38 @@ export declare const ChannelDescription: {
|
|
|
4570
4780
|
type?: number | undefined;
|
|
4571
4781
|
channel_label?: string | undefined;
|
|
4572
4782
|
channel_private?: number | undefined;
|
|
4573
|
-
channel_avatar?: string[] | undefined;
|
|
4574
|
-
user_id?: string[] | undefined;
|
|
4575
|
-
status?: number | undefined;
|
|
4576
4783
|
meeting_code?: string | undefined;
|
|
4577
|
-
usernames?: string | undefined;
|
|
4578
4784
|
clan_name?: string | undefined;
|
|
4579
|
-
|
|
4785
|
+
parrent_id?: string | undefined;
|
|
4580
4786
|
} & {
|
|
4581
4787
|
clan_id?: string | undefined;
|
|
4582
4788
|
channel_id?: string | undefined;
|
|
4583
4789
|
type?: number | undefined;
|
|
4584
4790
|
channel_label?: string | undefined;
|
|
4585
4791
|
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
4792
|
meeting_code?: string | undefined;
|
|
4590
|
-
usernames?: string | undefined;
|
|
4591
4793
|
clan_name?: string | undefined;
|
|
4592
|
-
|
|
4593
|
-
} & { [
|
|
4794
|
+
parrent_id?: string | undefined;
|
|
4795
|
+
} & { [K in Exclude<keyof I, keyof ChannelDescription>]: never; }>(base?: I | undefined): ChannelDescription;
|
|
4594
4796
|
fromPartial<I_1 extends {
|
|
4595
4797
|
clan_id?: string | undefined;
|
|
4596
4798
|
channel_id?: string | undefined;
|
|
4597
4799
|
type?: number | undefined;
|
|
4598
4800
|
channel_label?: string | undefined;
|
|
4599
4801
|
channel_private?: number | undefined;
|
|
4600
|
-
channel_avatar?: string[] | undefined;
|
|
4601
|
-
user_id?: string[] | undefined;
|
|
4602
|
-
status?: number | undefined;
|
|
4603
4802
|
meeting_code?: string | undefined;
|
|
4604
|
-
usernames?: string | undefined;
|
|
4605
4803
|
clan_name?: string | undefined;
|
|
4606
|
-
|
|
4804
|
+
parrent_id?: string | undefined;
|
|
4607
4805
|
} & {
|
|
4608
4806
|
clan_id?: string | undefined;
|
|
4609
4807
|
channel_id?: string | undefined;
|
|
4610
4808
|
type?: number | undefined;
|
|
4611
4809
|
channel_label?: string | undefined;
|
|
4612
4810
|
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
4811
|
meeting_code?: string | undefined;
|
|
4617
|
-
usernames?: string | undefined;
|
|
4618
4812
|
clan_name?: string | undefined;
|
|
4619
|
-
|
|
4620
|
-
} & { [
|
|
4813
|
+
parrent_id?: string | undefined;
|
|
4814
|
+
} & { [K_1 in Exclude<keyof I_1, keyof ChannelDescription>]: never; }>(object: I_1): ChannelDescription;
|
|
4621
4815
|
};
|
|
4622
4816
|
export declare const StrickerListedEvent: {
|
|
4623
4817
|
encode(message: StrickerListedEvent, writer?: _m0.Writer): _m0.Writer;
|
|
@@ -7559,6 +7753,260 @@ export declare const ClanNameExistedEvent: {
|
|
|
7559
7753
|
clan_name?: string | undefined;
|
|
7560
7754
|
} & { [K_1 in Exclude<keyof I_1, "clan_name">]: never; }>(object: I_1): ClanNameExistedEvent;
|
|
7561
7755
|
};
|
|
7756
|
+
export declare const NotificationChannelSettingEvent: {
|
|
7757
|
+
encode(message: NotificationChannelSettingEvent, writer?: _m0.Writer): _m0.Writer;
|
|
7758
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): NotificationChannelSettingEvent;
|
|
7759
|
+
fromJSON(object: any): NotificationChannelSettingEvent;
|
|
7760
|
+
toJSON(message: NotificationChannelSettingEvent): unknown;
|
|
7761
|
+
create<I extends {
|
|
7762
|
+
channel_id?: string | undefined;
|
|
7763
|
+
notification_user_channel?: {
|
|
7764
|
+
id?: string | undefined;
|
|
7765
|
+
notification_setting_type?: number | undefined;
|
|
7766
|
+
time_mute?: Date | undefined;
|
|
7767
|
+
active?: number | undefined;
|
|
7768
|
+
} | undefined;
|
|
7769
|
+
} & {
|
|
7770
|
+
channel_id?: string | undefined;
|
|
7771
|
+
notification_user_channel?: ({
|
|
7772
|
+
id?: string | undefined;
|
|
7773
|
+
notification_setting_type?: number | undefined;
|
|
7774
|
+
time_mute?: Date | undefined;
|
|
7775
|
+
active?: number | undefined;
|
|
7776
|
+
} & {
|
|
7777
|
+
id?: string | undefined;
|
|
7778
|
+
notification_setting_type?: number | undefined;
|
|
7779
|
+
time_mute?: Date | undefined;
|
|
7780
|
+
active?: number | undefined;
|
|
7781
|
+
} & { [K in Exclude<keyof I["notification_user_channel"], keyof NotificationUserChannel>]: never; }) | undefined;
|
|
7782
|
+
} & { [K_1 in Exclude<keyof I, keyof NotificationChannelSettingEvent>]: never; }>(base?: I | undefined): NotificationChannelSettingEvent;
|
|
7783
|
+
fromPartial<I_1 extends {
|
|
7784
|
+
channel_id?: string | undefined;
|
|
7785
|
+
notification_user_channel?: {
|
|
7786
|
+
id?: string | undefined;
|
|
7787
|
+
notification_setting_type?: number | undefined;
|
|
7788
|
+
time_mute?: Date | undefined;
|
|
7789
|
+
active?: number | undefined;
|
|
7790
|
+
} | undefined;
|
|
7791
|
+
} & {
|
|
7792
|
+
channel_id?: string | undefined;
|
|
7793
|
+
notification_user_channel?: ({
|
|
7794
|
+
id?: string | undefined;
|
|
7795
|
+
notification_setting_type?: number | undefined;
|
|
7796
|
+
time_mute?: Date | undefined;
|
|
7797
|
+
active?: number | undefined;
|
|
7798
|
+
} & {
|
|
7799
|
+
id?: string | undefined;
|
|
7800
|
+
notification_setting_type?: number | undefined;
|
|
7801
|
+
time_mute?: Date | undefined;
|
|
7802
|
+
active?: number | undefined;
|
|
7803
|
+
} & { [K_2 in Exclude<keyof I_1["notification_user_channel"], keyof NotificationUserChannel>]: never; }) | undefined;
|
|
7804
|
+
} & { [K_3 in Exclude<keyof I_1, keyof NotificationChannelSettingEvent>]: never; }>(object: I_1): NotificationChannelSettingEvent;
|
|
7805
|
+
};
|
|
7806
|
+
export declare const NotificationUserChannel: {
|
|
7807
|
+
encode(message: NotificationUserChannel, writer?: _m0.Writer): _m0.Writer;
|
|
7808
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): NotificationUserChannel;
|
|
7809
|
+
fromJSON(object: any): NotificationUserChannel;
|
|
7810
|
+
toJSON(message: NotificationUserChannel): unknown;
|
|
7811
|
+
create<I extends {
|
|
7812
|
+
id?: string | undefined;
|
|
7813
|
+
notification_setting_type?: number | undefined;
|
|
7814
|
+
time_mute?: Date | undefined;
|
|
7815
|
+
active?: number | undefined;
|
|
7816
|
+
} & {
|
|
7817
|
+
id?: string | undefined;
|
|
7818
|
+
notification_setting_type?: number | undefined;
|
|
7819
|
+
time_mute?: Date | undefined;
|
|
7820
|
+
active?: number | undefined;
|
|
7821
|
+
} & { [K in Exclude<keyof I, keyof NotificationUserChannel>]: never; }>(base?: I | undefined): NotificationUserChannel;
|
|
7822
|
+
fromPartial<I_1 extends {
|
|
7823
|
+
id?: string | undefined;
|
|
7824
|
+
notification_setting_type?: number | undefined;
|
|
7825
|
+
time_mute?: Date | undefined;
|
|
7826
|
+
active?: number | undefined;
|
|
7827
|
+
} & {
|
|
7828
|
+
id?: string | undefined;
|
|
7829
|
+
notification_setting_type?: number | undefined;
|
|
7830
|
+
time_mute?: Date | undefined;
|
|
7831
|
+
active?: number | undefined;
|
|
7832
|
+
} & { [K_1 in Exclude<keyof I_1, keyof NotificationUserChannel>]: never; }>(object: I_1): NotificationUserChannel;
|
|
7833
|
+
};
|
|
7834
|
+
export declare const NotificationCategorySettingEvent: {
|
|
7835
|
+
encode(message: NotificationCategorySettingEvent, writer?: _m0.Writer): _m0.Writer;
|
|
7836
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): NotificationCategorySettingEvent;
|
|
7837
|
+
fromJSON(object: any): NotificationCategorySettingEvent;
|
|
7838
|
+
toJSON(message: NotificationCategorySettingEvent): unknown;
|
|
7839
|
+
create<I extends {
|
|
7840
|
+
category_id?: string | undefined;
|
|
7841
|
+
notification_user_channel?: {
|
|
7842
|
+
id?: string | undefined;
|
|
7843
|
+
notification_setting_type?: number | undefined;
|
|
7844
|
+
time_mute?: Date | undefined;
|
|
7845
|
+
active?: number | undefined;
|
|
7846
|
+
} | undefined;
|
|
7847
|
+
} & {
|
|
7848
|
+
category_id?: string | undefined;
|
|
7849
|
+
notification_user_channel?: ({
|
|
7850
|
+
id?: string | undefined;
|
|
7851
|
+
notification_setting_type?: number | undefined;
|
|
7852
|
+
time_mute?: Date | undefined;
|
|
7853
|
+
active?: number | undefined;
|
|
7854
|
+
} & {
|
|
7855
|
+
id?: string | undefined;
|
|
7856
|
+
notification_setting_type?: number | undefined;
|
|
7857
|
+
time_mute?: Date | undefined;
|
|
7858
|
+
active?: number | undefined;
|
|
7859
|
+
} & { [K in Exclude<keyof I["notification_user_channel"], keyof NotificationUserChannel>]: never; }) | undefined;
|
|
7860
|
+
} & { [K_1 in Exclude<keyof I, keyof NotificationCategorySettingEvent>]: never; }>(base?: I | undefined): NotificationCategorySettingEvent;
|
|
7861
|
+
fromPartial<I_1 extends {
|
|
7862
|
+
category_id?: string | undefined;
|
|
7863
|
+
notification_user_channel?: {
|
|
7864
|
+
id?: string | undefined;
|
|
7865
|
+
notification_setting_type?: number | undefined;
|
|
7866
|
+
time_mute?: Date | undefined;
|
|
7867
|
+
active?: number | undefined;
|
|
7868
|
+
} | undefined;
|
|
7869
|
+
} & {
|
|
7870
|
+
category_id?: string | undefined;
|
|
7871
|
+
notification_user_channel?: ({
|
|
7872
|
+
id?: string | undefined;
|
|
7873
|
+
notification_setting_type?: number | undefined;
|
|
7874
|
+
time_mute?: Date | undefined;
|
|
7875
|
+
active?: number | undefined;
|
|
7876
|
+
} & {
|
|
7877
|
+
id?: string | undefined;
|
|
7878
|
+
notification_setting_type?: number | undefined;
|
|
7879
|
+
time_mute?: Date | undefined;
|
|
7880
|
+
active?: number | undefined;
|
|
7881
|
+
} & { [K_2 in Exclude<keyof I_1["notification_user_channel"], keyof NotificationUserChannel>]: never; }) | undefined;
|
|
7882
|
+
} & { [K_3 in Exclude<keyof I_1, keyof NotificationCategorySettingEvent>]: never; }>(object: I_1): NotificationCategorySettingEvent;
|
|
7883
|
+
};
|
|
7884
|
+
export declare const NotificationClanSettingEvent: {
|
|
7885
|
+
encode(message: NotificationClanSettingEvent, writer?: _m0.Writer): _m0.Writer;
|
|
7886
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): NotificationClanSettingEvent;
|
|
7887
|
+
fromJSON(object: any): NotificationClanSettingEvent;
|
|
7888
|
+
toJSON(message: NotificationClanSettingEvent): unknown;
|
|
7889
|
+
create<I extends {
|
|
7890
|
+
clan_id?: string | undefined;
|
|
7891
|
+
notification_setting?: {
|
|
7892
|
+
id?: string | undefined;
|
|
7893
|
+
notification_setting_type?: number | undefined;
|
|
7894
|
+
} | undefined;
|
|
7895
|
+
} & {
|
|
7896
|
+
clan_id?: string | undefined;
|
|
7897
|
+
notification_setting?: ({
|
|
7898
|
+
id?: string | undefined;
|
|
7899
|
+
notification_setting_type?: number | undefined;
|
|
7900
|
+
} & {
|
|
7901
|
+
id?: string | undefined;
|
|
7902
|
+
notification_setting_type?: number | undefined;
|
|
7903
|
+
} & { [K in Exclude<keyof I["notification_setting"], keyof NotificationSetting>]: never; }) | undefined;
|
|
7904
|
+
} & { [K_1 in Exclude<keyof I, keyof NotificationClanSettingEvent>]: never; }>(base?: I | undefined): NotificationClanSettingEvent;
|
|
7905
|
+
fromPartial<I_1 extends {
|
|
7906
|
+
clan_id?: string | undefined;
|
|
7907
|
+
notification_setting?: {
|
|
7908
|
+
id?: string | undefined;
|
|
7909
|
+
notification_setting_type?: number | undefined;
|
|
7910
|
+
} | undefined;
|
|
7911
|
+
} & {
|
|
7912
|
+
clan_id?: string | undefined;
|
|
7913
|
+
notification_setting?: ({
|
|
7914
|
+
id?: string | undefined;
|
|
7915
|
+
notification_setting_type?: number | undefined;
|
|
7916
|
+
} & {
|
|
7917
|
+
id?: string | undefined;
|
|
7918
|
+
notification_setting_type?: number | undefined;
|
|
7919
|
+
} & { [K_2 in Exclude<keyof I_1["notification_setting"], keyof NotificationSetting>]: never; }) | undefined;
|
|
7920
|
+
} & { [K_3 in Exclude<keyof I_1, keyof NotificationClanSettingEvent>]: never; }>(object: I_1): NotificationClanSettingEvent;
|
|
7921
|
+
};
|
|
7922
|
+
export declare const NotificationSetting: {
|
|
7923
|
+
encode(message: NotificationSetting, writer?: _m0.Writer): _m0.Writer;
|
|
7924
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): NotificationSetting;
|
|
7925
|
+
fromJSON(object: any): NotificationSetting;
|
|
7926
|
+
toJSON(message: NotificationSetting): unknown;
|
|
7927
|
+
create<I extends {
|
|
7928
|
+
id?: string | undefined;
|
|
7929
|
+
notification_setting_type?: number | undefined;
|
|
7930
|
+
} & {
|
|
7931
|
+
id?: string | undefined;
|
|
7932
|
+
notification_setting_type?: number | undefined;
|
|
7933
|
+
} & { [K in Exclude<keyof I, keyof NotificationSetting>]: never; }>(base?: I | undefined): NotificationSetting;
|
|
7934
|
+
fromPartial<I_1 extends {
|
|
7935
|
+
id?: string | undefined;
|
|
7936
|
+
notification_setting_type?: number | undefined;
|
|
7937
|
+
} & {
|
|
7938
|
+
id?: string | undefined;
|
|
7939
|
+
notification_setting_type?: number | undefined;
|
|
7940
|
+
} & { [K_1 in Exclude<keyof I_1, keyof NotificationSetting>]: never; }>(object: I_1): NotificationSetting;
|
|
7941
|
+
};
|
|
7942
|
+
export declare const NotifiReactMessageEvent: {
|
|
7943
|
+
encode(message: NotifiReactMessageEvent, writer?: _m0.Writer): _m0.Writer;
|
|
7944
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): NotifiReactMessageEvent;
|
|
7945
|
+
fromJSON(object: any): NotifiReactMessageEvent;
|
|
7946
|
+
toJSON(message: NotifiReactMessageEvent): unknown;
|
|
7947
|
+
create<I extends {
|
|
7948
|
+
channel_id?: string | undefined;
|
|
7949
|
+
notifi_react_message?: {
|
|
7950
|
+
id?: string | undefined;
|
|
7951
|
+
user_id?: string | undefined;
|
|
7952
|
+
channel_id?: string | undefined;
|
|
7953
|
+
} | undefined;
|
|
7954
|
+
} & {
|
|
7955
|
+
channel_id?: string | undefined;
|
|
7956
|
+
notifi_react_message?: ({
|
|
7957
|
+
id?: string | undefined;
|
|
7958
|
+
user_id?: string | undefined;
|
|
7959
|
+
channel_id?: string | undefined;
|
|
7960
|
+
} & {
|
|
7961
|
+
id?: string | undefined;
|
|
7962
|
+
user_id?: string | undefined;
|
|
7963
|
+
channel_id?: string | undefined;
|
|
7964
|
+
} & { [K in Exclude<keyof I["notifi_react_message"], keyof NotifiReactMessage>]: never; }) | undefined;
|
|
7965
|
+
} & { [K_1 in Exclude<keyof I, keyof NotifiReactMessageEvent>]: never; }>(base?: I | undefined): NotifiReactMessageEvent;
|
|
7966
|
+
fromPartial<I_1 extends {
|
|
7967
|
+
channel_id?: string | undefined;
|
|
7968
|
+
notifi_react_message?: {
|
|
7969
|
+
id?: string | undefined;
|
|
7970
|
+
user_id?: string | undefined;
|
|
7971
|
+
channel_id?: string | undefined;
|
|
7972
|
+
} | undefined;
|
|
7973
|
+
} & {
|
|
7974
|
+
channel_id?: string | undefined;
|
|
7975
|
+
notifi_react_message?: ({
|
|
7976
|
+
id?: string | undefined;
|
|
7977
|
+
user_id?: string | undefined;
|
|
7978
|
+
channel_id?: string | undefined;
|
|
7979
|
+
} & {
|
|
7980
|
+
id?: string | undefined;
|
|
7981
|
+
user_id?: string | undefined;
|
|
7982
|
+
channel_id?: string | undefined;
|
|
7983
|
+
} & { [K_2 in Exclude<keyof I_1["notifi_react_message"], keyof NotifiReactMessage>]: never; }) | undefined;
|
|
7984
|
+
} & { [K_3 in Exclude<keyof I_1, keyof NotifiReactMessageEvent>]: never; }>(object: I_1): NotifiReactMessageEvent;
|
|
7985
|
+
};
|
|
7986
|
+
export declare const NotifiReactMessage: {
|
|
7987
|
+
encode(message: NotifiReactMessage, writer?: _m0.Writer): _m0.Writer;
|
|
7988
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): NotifiReactMessage;
|
|
7989
|
+
fromJSON(object: any): NotifiReactMessage;
|
|
7990
|
+
toJSON(message: NotifiReactMessage): unknown;
|
|
7991
|
+
create<I extends {
|
|
7992
|
+
id?: string | undefined;
|
|
7993
|
+
user_id?: string | undefined;
|
|
7994
|
+
channel_id?: string | undefined;
|
|
7995
|
+
} & {
|
|
7996
|
+
id?: string | undefined;
|
|
7997
|
+
user_id?: string | undefined;
|
|
7998
|
+
channel_id?: string | undefined;
|
|
7999
|
+
} & { [K in Exclude<keyof I, keyof NotifiReactMessage>]: never; }>(base?: I | undefined): NotifiReactMessage;
|
|
8000
|
+
fromPartial<I_1 extends {
|
|
8001
|
+
id?: string | undefined;
|
|
8002
|
+
user_id?: string | undefined;
|
|
8003
|
+
channel_id?: string | undefined;
|
|
8004
|
+
} & {
|
|
8005
|
+
id?: string | undefined;
|
|
8006
|
+
user_id?: string | undefined;
|
|
8007
|
+
channel_id?: string | undefined;
|
|
8008
|
+
} & { [K_1 in Exclude<keyof I_1, keyof NotifiReactMessage>]: never; }>(object: I_1): NotifiReactMessage;
|
|
8009
|
+
};
|
|
7562
8010
|
type Builtin = Date | Function | Uint8Array | string | number | boolean | undefined;
|
|
7563
8011
|
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 {} ? {
|
|
7564
8012
|
[K in keyof T]?: DeepPartial<T[K]>;
|